UNPKG

@awsui/components-react

Version:

On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en

34 lines 820 B
import { LabelIdentifier } from '@awsui/component-toolkit/internal/analytics-metadata'; export interface GeneratedAnalyticsMetadataButtonDropdownClick { action: 'click'; detail: { label: string; position?: string; id?: string; href?: string; }; } export interface GeneratedAnalyticsMetadataButtonDropdownExpand { action: 'expand'; detail: { label: string | LabelIdentifier; position?: string; id?: string; }; } export interface GeneratedAnalyticsMetadataButtonDropdownCollapse { action: 'collapse'; detail: { label: string | LabelIdentifier; position?: string; id?: string; }; } export interface GeneratedAnalyticsMetadataButtonDropdownComponent { name: 'awsui.ButtonDropdown'; label: string; properties: { variant: string; disabled: string; }; }