@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
27 lines • 947 B
TypeScript
import React from 'react';
import { ForwardFocusRef } from '../../internal/hooks/forward-focus';
import { TableProps } from '../../table/interfaces';
import { S3ResourceSelectorProps } from '../interfaces';
interface BucketsTableProps {
forwardFocusRef: React.Ref<ForwardFocusRef>;
visibleColumns: ReadonlyArray<string>;
isItemDisabled: TableProps.IsItemDisabled<S3ResourceSelectorProps.Bucket> | undefined;
selectableItemsTypes: S3ResourceSelectorProps['selectableItemsTypes'];
fetchData: S3ResourceSelectorProps['fetchBuckets'];
i18nStrings: S3ResourceSelectorProps.I18nStrings | undefined;
isVisualRefresh?: boolean;
onDrilldown: (path: string) => void;
onSelect: (uri: string) => void;
}
export declare function BucketsTable({
forwardFocusRef,
i18nStrings,
isVisualRefresh,
isItemDisabled,
selectableItemsTypes,
fetchData,
visibleColumns,
onDrilldown,
onSelect
}: BucketsTableProps): JSX.Element;
export {};