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