constants.ts 627 B

123456789101112131415161718192021222324252627282930
  1. import { BASE_CLASS_PREFIX } from '../base/constants';
  2. const cssClasses = {
  3. PREFIX: `${BASE_CLASS_PREFIX}-anchor`,
  4. };
  5. const strings = {
  6. SIZE: ['small', 'default'],
  7. SLIDE_COLOR: ['primary', 'tertiary', 'muted'],
  8. MAX_WIDTH: '200px',
  9. MAX_HEIGHT: '750px',
  10. POSITION_SET: [
  11. 'top',
  12. 'topLeft',
  13. 'topRight',
  14. 'left',
  15. 'leftTop',
  16. 'leftBottom',
  17. 'right',
  18. 'rightTop',
  19. 'rightBottom',
  20. 'bottom',
  21. 'bottomLeft',
  22. 'bottomRight',
  23. 'leftTopOver',
  24. 'rightTopOver',
  25. ],
  26. } as const;
  27. export { cssClasses, strings };