constants.ts 425 B

123456789101112131415
  1. import { strings as tooltipStrings } from '../tooltip/constants';
  2. import { BASE_CLASS_PREFIX, VALIDATE_STATUS } from '../base/constants';
  3. const cssClasses = {
  4. PREFIX: `${BASE_CLASS_PREFIX}-autocomplete`,
  5. };
  6. const strings = {
  7. SIZE: ['small', 'large', 'default'],
  8. POSITION: tooltipStrings.POSITION_SET,
  9. OPTIONS: ['children', 'value'],
  10. STATUS: VALIDATE_STATUS,
  11. } as const;
  12. export { cssClasses, strings };