claude-web/node_modules/primevue/knob/style/index.d.ts

32 lines
611 B
TypeScript
Raw Permalink Normal View History

2026-02-23 02:23:38 +00:00
/**
*
* Knob is a form component to define number inputs with a dial.
*
* [Live Demo](https://www.primevue.org/knob/)
*
* @module knobstyle
*
*/
import type { BaseStyle } from '@primevue/core/base/style';
export enum KnobClasses {
/**
* Class name of the root element
*/
root = 'p-knob',
/**
* Class name of the range element
*/
range = 'p-knob-range',
/**
* Class name of the value element
*/
value = 'p-knob-value',
/**
* Class name of the text element
*/
text = 'p-knob-text'
}
export interface KnobStyle extends BaseStyle {}