UNPKG

@public-ui/components

Version:

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

10 lines (9 loc) 462 B
/*! * KoliBri - The accessible HTML-Standard */ import { watchValidator } from "../utils"; const buttonTypePropTypeOptions = ['button', 'reset', 'submit']; export const validateButtonType = (component, value) => { watchValidator(component, `_type`, (value) => typeof value === 'string' && buttonTypePropTypeOptions.includes(value), new Set([`KoliBriButtonType {${buttonTypePropTypeOptions.join(', ')}`]), value); }; //# sourceMappingURL=button-type.js.map