@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
31 lines (30 loc) • 1.32 kB
TypeScript
import type { JSX } from '../../stencil-public-runtime';
import type { FocusableElement, IconsHorizontalPropType, IdPropType, InputTypeOnDefault, LabelWithExpertSlotPropType, MsgPropType, NamePropType, OptionsWithOptgroupPropType, RowsPropType, SelectProps, ShortKeyPropType, StencilUnknown, Stringified, SyncValueBySelectorPropType, TooltipAlignPropType } from '../../schema';
export declare class KolSelect implements SelectProps, FocusableElement {
private selectWcRef?;
private readonly catchRef;
getValue(): Promise<StencilUnknown[] | StencilUnknown>;
kolFocus(): Promise<void>;
render(): JSX.Element;
_accessKey?: string;
_disabled?: boolean;
_hideMsg?: boolean;
_hideLabel?: boolean;
_hint?: string;
_icons?: IconsHorizontalPropType;
_id?: IdPropType;
_label: LabelWithExpertSlotPropType;
_msg?: Stringified<MsgPropType>;
_multiple?: boolean;
_name?: NamePropType;
_on?: InputTypeOnDefault;
_options: OptionsWithOptgroupPropType;
_required?: boolean;
_shortKey?: ShortKeyPropType;
_rows?: RowsPropType;
_syncValueBySelector?: SyncValueBySelectorPropType;
_tabIndex?: number;
_tooltipAlign?: TooltipAlignPropType;
_touched?: boolean;
_value?: Stringified<StencilUnknown[]> | Stringified<StencilUnknown>;
}