2024-05-08 11:40:44 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Knob is a form component to define number inputs with a dial.
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/knob/)
|
|
|
|
*
|
|
|
|
* @module knobstyle
|
|
|
|
*
|
|
|
|
*/
|
2023-10-02 13:15:41 +00:00
|
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
|
2024-05-08 11:40:44 +00:00
|
|
|
export enum KnobClasses {
|
|
|
|
root = 'p-knob',
|
|
|
|
range = 'p-knob-range',
|
|
|
|
value = 'p-knob-value',
|
|
|
|
text = 'p-knob-text'
|
|
|
|
}
|
|
|
|
|
2023-10-02 13:15:41 +00:00
|
|
|
export interface KnobStyle extends BaseStyle {}
|