UNPKG

@public-ui/components

Version:

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

14 lines (13 loc) 914 B
import type { Generic } from 'adopted-style-sheets'; import type { ButtonProps, MsgPropType, PropAccessKey, PropDisabled, PropHasCounter, PropHideLabel, PropHideMsg, 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 & PropDisabled & PropHasCounter & PropHideMsg & PropHideLabel & PropHorizontalIcons & PropReadOnly & PropRequired & PropShortKey & PropSuggestions & PropSyncValueBySelector & PropTooltipAlign & PropTouched; export type Props = Generic.Element.Members<RequiredProps, OptionalProps>; export {};