@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
17 lines (16 loc) • 439 B
JavaScript
/*!
* KoliBri - The accessible HTML-Standard
*/
import { a11yHintDisabled, watchBoolean } from "../utils";
export const validateDisabled = (component, value) => {
watchBoolean(component, '_disabled', value, {
hooks: {
afterPatch: (value) => {
if (value === true) {
a11yHintDisabled();
}
},
},
});
};
//# sourceMappingURL=disabled.js.map