constants.ts 728 B

1234567891011121314151617181920212223242526272829303132333435
  1. import { BASE_CLASS_PREFIX } from '../base/constants';
  2. const cssClasses = {
  3. PREFIX: `${BASE_CLASS_PREFIX}-userGuide`,
  4. PREFIX_MODAL: `${BASE_CLASS_PREFIX}-userGuide-modal`,
  5. };
  6. const strings = {
  7. MODE: ['popup', 'modal'],
  8. POSITION_SET: [
  9. 'top',
  10. 'topLeft',
  11. 'topRight',
  12. 'left',
  13. 'leftTop',
  14. 'leftBottom',
  15. 'right',
  16. 'rightTop',
  17. 'rightBottom',
  18. 'bottom',
  19. 'bottomLeft',
  20. 'bottomRight',
  21. 'leftTopOver',
  22. 'rightTopOver',
  23. ],
  24. THEME: ['default', 'primary'],
  25. };
  26. const numbers = {
  27. DEFAULT_CURRENT: 0,
  28. DEFAULT_SPOTLIGHT_PADDING: 5,
  29. DEFAULT_Z_INDEX: 1030,
  30. };
  31. export { cssClasses, strings, numbers };