UNPKG

@public-ui/components

Version:

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

36 lines (35 loc) 1.59 kB
import type { JSX } from '../../stencil-public-runtime'; import type { AccessKeyPropType, AlternativeButtonLinkRolePropType, AriaDescriptionPropType, ButtonCallbacksPropType, ButtonTypePropType, ButtonVariantPropType, CustomClassPropType, IconsPropType, LabelWithExpertSlotPropType, ShortKeyPropType, SplitButtonProps, SplitButtonStates, StencilUnknown, SyncValueBySelectorPropType, TooltipAlignPropType } from '../../schema'; export declare class KolSplitButton implements SplitButtonProps { private primaryButtonWcRef?; private readonly catchPrimaryRef; getValue(): Promise<StencilUnknown>; focus(): Promise<void | undefined>; private readonly clickButtonHandler; private readonly clickToggleHandler; private readonly toggleDropdown; private readonly handleOnClose; render(): JSX.Element; closePopup(): Promise<void>; _accessKey?: AccessKeyPropType; _ariaControls?: string; _ariaDescription?: AriaDescriptionPropType; _ariaExpanded?: boolean; _ariaSelected?: boolean; _customClass?: CustomClassPropType; _disabled?: boolean; _hideLabel?: boolean; _icons?: IconsPropType; _id?: string; _label: LabelWithExpertSlotPropType; _name?: string; _on?: ButtonCallbacksPropType<StencilUnknown>; _role?: AlternativeButtonLinkRolePropType; _shortKey?: ShortKeyPropType; _syncValueBySelector?: SyncValueBySelectorPropType; _tooltipAlign?: TooltipAlignPropType; _type?: ButtonTypePropType; _value?: StencilUnknown; _variant?: ButtonVariantPropType; state: SplitButtonStates; }