UNPKG

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.

35 lines (32 loc) 816 B
import { style } from '@primeuix/styles/slider'; import BaseStyle from '@primevue/core/base/style'; var inlineStyles = { handle: { position: 'absolute' }, range: { position: 'absolute' } }; var classes = { root: function root(_ref) { var instance = _ref.instance, props = _ref.props; return ['p-slider p-component', { 'p-disabled': props.disabled, 'p-invalid': instance.$invalid, 'p-slider-horizontal': props.orientation === 'horizontal', 'p-slider-vertical': props.orientation === 'vertical' }]; }, range: 'p-slider-range', handle: 'p-slider-handle' }; var SliderStyle = BaseStyle.extend({ name: 'slider', style: style, classes: classes, inlineStyles: inlineStyles }); export { SliderStyle as default }; //# sourceMappingURL=index.mjs.map