@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
30 lines (29 loc) • 1.47 kB
TypeScript
import type { JSX } from '../../stencil-public-runtime';
import type { AccessKeyPropType, AriaDescriptionPropType, ButtonTypePropType, ButtonVariantPropType, CustomClassPropType, FocusableElement, IconsPropType, InlinePropType, LabelWithExpertSlotPropType, PopoverAlignPropType, ShortKeyPropType, StencilUnknown, SyncValueBySelectorPropType, TooltipAlignPropType } from '../../schema';
import type { PopoverButtonProps } from '../../schema/components/popover-button';
export declare class KolPopoverButton implements PopoverButtonProps, FocusableElement {
protected readonly host?: HTMLKolPopoverButtonElement;
protected readonly ctaRef: import("../../utils/element-interaction").CtaRef<HTMLKolPopoverButtonWcElement>;
hidePopover(): Promise<void>;
showPopover(): Promise<void>;
click(): Promise<void>;
focus(): Promise<void>;
render(): JSX.Element;
_accessKey?: AccessKeyPropType;
_ariaDescription?: AriaDescriptionPropType;
_customClass?: CustomClassPropType;
_disabled?: boolean;
_hideLabel?: boolean;
_icons?: IconsPropType;
_inline?: InlinePropType;
_label: LabelWithExpertSlotPropType;
_name?: string;
_popoverAlign?: PopoverAlignPropType;
_shortKey?: ShortKeyPropType;
_syncValueBySelector?: SyncValueBySelectorPropType;
_tabIndex?: number;
_tooltipAlign?: TooltipAlignPropType;
_type?: ButtonTypePropType;
_value?: StencilUnknown;
_variant?: ButtonVariantPropType;
}