constants.ts 324 B

123456789101112131415161718
  1. import { BASE_CLASS_PREFIX } from '../base/constants';
  2. const cssClasses = {
  3. PREFIX: `${BASE_CLASS_PREFIX }-descriptions`,
  4. };
  5. const strings = {
  6. ALIGN_SET: ['left', 'justify', 'plain', 'center'],
  7. SIZE_SET: ['small', 'medium', 'large']
  8. };
  9. const numbers = {};
  10. export {
  11. cssClasses,
  12. strings,
  13. numbers
  14. };