UNPKG

@public-ui/components

Version:

Contains all web components that belong to KoliBri - The accessible HTML-Standard.

12 lines (11 loc) 470 B
/*! * KoliBri - The accessible HTML-Standard */ import { watchValidator } from "../utils"; export const autoCompleteOptions = ['on', 'off']; export const validateAutoComplete = (component, value) => { watchValidator(component, '_autoComplete', (value) => autoCompleteOptions.includes(value) || (typeof value === 'string' && value.length > 0), new Set(autoCompleteOptions), value, { defaultValue: 'off', }); }; //# sourceMappingURL=auto-complete.js.map