@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
8 lines (7 loc) • 407 B
TypeScript
import type { Generic } from 'adopted-style-sheets';
export declare const inputTextTypeOptions: readonly ["text", "search", "url", "tel"];
export type InputTextTypePropType = (typeof inputTextTypeOptions)[number];
export type PropTypeInputText = {
type: InputTextTypePropType;
};
export declare const validateTypeInputText: (component: Generic.Element.Component, value?: InputTextTypePropType) => void;