123456789101112131415 |
- import { strings as tooltipStrings } from '../tooltip/constants';
- import { BASE_CLASS_PREFIX, VALIDATE_STATUS } from '../base/constants';
- const cssClasses = {
- PREFIX: `${BASE_CLASS_PREFIX}-autocomplete`,
- };
- const strings = {
- SIZE: ['small', 'large', 'default'],
- POSITION: tooltipStrings.POSITION_SET,
- OPTIONS: ['children', 'value'],
- STATUS: VALIDATE_STATUS,
- } as const;
- export { cssClasses, strings };
|