UNPKG

@public-ui/components

Version:

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

10 lines (9 loc) 372 B
/*! * KoliBri - The accessible HTML-Standard */ import { watchValidator } from "../utils"; const loadingOptions = ['eager', 'lazy']; export function validateLoading(component, value) { watchValidator(component, '_loading', (value) => typeof value === 'string' && loadingOptions.includes(value), new Set(loadingOptions), value); } //# sourceMappingURL=loading.js.map