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

25 lines 862 B
import React from 'react'; import { ForwardFocusRef } from '../../internal/hooks/forward-focus'; import { TableProps } from '../../table/interfaces'; import { S3ResourceSelectorProps } from '../interfaces'; interface VersionsTableProps { forwardFocusRef: React.Ref<ForwardFocusRef>; pathSegments: ReadonlyArray<string>; visibleColumns: ReadonlyArray<string>; isItemDisabled: TableProps.IsItemDisabled<S3ResourceSelectorProps.Version> | undefined; fetchData: S3ResourceSelectorProps['fetchVersions']; i18nStrings: S3ResourceSelectorProps.I18nStrings | undefined; isVisualRefresh?: boolean; onSelect: (versionId: string) => void; } export declare function VersionsTable({ forwardFocusRef, pathSegments, i18nStrings, isVisualRefresh, isItemDisabled, fetchData, visibleColumns, onSelect }: VersionsTableProps): JSX.Element; export {};