constants.ts 589 B

12345678910111213141516171819
  1. import { BASE_CLASS_PREFIX } from '../base/constants';
  2. const cssClasses = {
  3. PREFIX: `${BASE_CLASS_PREFIX}-slider`,
  4. DISABLED: `${BASE_CLASS_PREFIX}-slider-disabled`,
  5. VERTICAL: `${BASE_CLASS_PREFIX}-slider-vertical`,
  6. TRACK: `${BASE_CLASS_PREFIX}-slider-track`,
  7. DOTS: `${BASE_CLASS_PREFIX}-slider-dots`,
  8. MARKS: `${BASE_CLASS_PREFIX}-slider-marks`,
  9. HANDLE: `${BASE_CLASS_PREFIX}-slider-handle`,
  10. };
  11. const strings = {
  12. SIZE: ['small', 'large', 'default'],
  13. POSITION: ['top', 'bottom'],
  14. OPTIONS: ['children', 'option'],
  15. };
  16. export { cssClasses, strings };