@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
14 lines (13 loc) • 941 B
TypeScript
import type { Generic } from 'adopted-style-sheets';
import type { ButtonProps, MsgPropType, PropAccessKey, PropAlert, PropDisabled, PropHasCounter, PropHideError, PropHideLabel, PropHorizontalIcons, PropId, PropLabelWithExpertSlot, PropReadOnly, PropRequired, PropShortKey, PropSuggestions, PropSyncValueBySelector, PropTooltipAlign, PropTouched, Stringified } from '../../schema';
type RequiredProps = PropId & PropLabelWithExpertSlot;
type OptionalProps = {
currentLength: number;
hint: string;
maxLength: number;
msg: MsgPropType;
slotName: string;
smartButton: Stringified<ButtonProps>;
} & PropAccessKey & PropAlert & PropDisabled & PropHasCounter & PropHideError & PropHideLabel & PropHorizontalIcons & PropReadOnly & PropRequired & PropShortKey & PropSuggestions & PropSyncValueBySelector & PropTooltipAlign & PropTouched;
export type Props = Generic.Element.Members<RequiredProps, OptionalProps>;
export {};