UNPKG

@procore/core-react

Version:
12 lines (11 loc) 880 B
import React from 'react'; import type { FileTokenListProps } from './FileToken.types'; /** * Renders a list of file tokens with optional remove and keyboard navigation. * * @deprecated Use `ConnectedFileSelect` from `@procore/labs-file-select` for file/token UX; it provides token list behavior as the default attachment view. The package does not export a standalone FileTokenList. * @deprecatedSince 12.40.0 * @see [File Select Storybook](https://stories.other-libraries.procore.com/?path=%2Fstory%2Fconnected-file-select_demos-fileselect--demo) * @see [File Select package (file-select-js-monorepo)](https://github.com/procore/file-select-js-monorepo/tree/main/packages/file-select) */ export declare const FileTokenList: React.ForwardRefExoticComponent<FileTokenListProps & Omit<React.HTMLAttributes<HTMLDivElement>, "onClick"> & React.RefAttributes<HTMLDivElement>>;