Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

constants.any.ts 582B

12345678910111213141516171819202122232425262728293031
  1. /**
  2. * The types of the buttons.
  3. */
  4. export enum BUTTON_TYPES {
  5. DESTRUCTIVE = 'destructive',
  6. PRIMARY = 'primary',
  7. SECONDARY = 'secondary',
  8. TERTIARY = 'tertiary'
  9. }
  10. /**
  11. * Behaviour types for showing overflow text content.
  12. */
  13. export enum TEXT_OVERFLOW_TYPES {
  14. ELLIPSIS = 'ellipsis',
  15. SCROLL_ON_HOVER = 'scroll-on-hover'
  16. }
  17. /**
  18. * The modes of the buttons.
  19. */
  20. export const BUTTON_MODES: {
  21. CONTAINED: 'contained';
  22. TEXT: 'text';
  23. } = {
  24. CONTAINED: 'contained',
  25. TEXT: 'text'
  26. };
  27. export type TOOLTIP_POSITION = 'top' | 'bottom' | 'left' | 'right';