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

56 lines 1.27 kB
import { LabelIdentifier } from '@awsui/component-toolkit/internal/analytics-metadata'; export interface GeneratedAnalyticsMetadataTableSelect { action: 'select'; detail: { label?: string; position: string; item: string; }; } export interface GeneratedAnalyticsMetadataTableDeselect { action: 'deselect'; detail: { label?: string; position: string; item: string; }; } export interface GeneratedAnalyticsMetadataTableSelectAll { action: 'selectAll'; detail: { label: string; }; } export interface GeneratedAnalyticsMetadataTableDeselectAll { action: 'deselectAll'; detail: { label: string; }; } export interface GeneratedAnalyticsMetadataTableSort { action: 'sort'; detail: { label: string; position: string; columnId: string; sortingDescending: string; }; } export interface GeneratedAnalyticsMetadataTableComponent { name: 'awsui.Table'; label: string | LabelIdentifier; properties: { selectionType: string; itemsCount: string; selectedItemsCount: string; sortingColumnId?: string; sortingDescending?: string; variant: string; }; innerContext?: { position: string; columnId: string; columnLabel: string | LabelIdentifier; item: string; }; }