UNPKG

@public-ui/components

Version:

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

13 lines (12 loc) 500 B
/*! * KoliBri - The accessible HTML-Standard */ import { watchValidator } from "../utils"; export const inputTextTypeOptions = ['text', 'search', 'url', 'tel']; const isInputTextTypePropType = (value) => { return typeof value === 'string' && inputTextTypeOptions.includes(value); }; export const validateTypeInputText = (component, value) => { watchValidator(component, '_type', isInputTextTypePropType, new Set(inputTextTypeOptions), value); }; //# sourceMappingURL=type-input-text.js.map