constants.ts 418 B

12345678910111213141516171819202122
  1. import { BASE_CLASS_PREFIX } from '../base/constants';
  2. const cssClasses = {
  3. PREFIX: `${BASE_CLASS_PREFIX}-sidesheet`,
  4. DIALOG: `${BASE_CLASS_PREFIX}-modal`,
  5. };
  6. const strings = {
  7. PLACEMENT: ['top', 'right', 'bottom', 'left'],
  8. SIZE: ['small', 'medium', 'large'],
  9. WIDTH: {
  10. small: 448,
  11. medium: 684,
  12. large: 920
  13. },
  14. HEIGHT: 448,
  15. };
  16. export {
  17. cssClasses,
  18. strings
  19. };