@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
9 lines (8 loc) • 489 B
TypeScript
import type { Generic } from 'adopted-style-sheets';
declare const ariaCurrentValuePropTypeOptions: readonly ["date", "location", "page", "step", "time", "true", "false"];
export type AriaCurrentValuePropType = (typeof ariaCurrentValuePropTypeOptions)[number];
export type PropAriaCurrentValue = {
ariaCurrentValue: AriaCurrentValuePropType;
};
export declare const validateAriaCurrentValue: (component: Generic.Element.Component, value?: AriaCurrentValuePropType) => void;
export {};