baked-recipe-admin
Version:
Baked is an opinionated framework for .NET in backend and Nuxt in frontend. This is a recipe package that brings together all the components one needs for an Admin UI.
28 lines (25 loc) • 545 B
TypeScript
/**
*
* Slider is a component to provide input with a drag handle.
*
* [Live Demo](https://www.primevue.org/slider/)
*
* @module sliderstyle
*
*/
import type { BaseStyle } from '@primevue/core/base/style';
export enum SliderClasses {
/**
* Class name of the root element
*/
root = 'p-slider',
/**
* Class name of the range element
*/
range = 'p-slider-range',
/**
* Class name of the handle element
*/
handle = 'p-slider-handle'
}
export interface SliderStyle extends BaseStyle {}