primevue
Version:
PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc
35 lines (32 loc) • 816 B
JavaScript
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