UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

16 lines (15 loc) 836 B
'use client'; import { withWebComponent } from '../../internal/withWebComponent.js'; /** * This component allows you to represent files before uploading them to a server, with the help of `UploadCollectionItem`. * It also allows you to show already uploaded files. * * * * `import "@ui5/webcomponents-fiori/dist/UploadCollectionItem.js";` (for `UploadCollectionItem`) * * __Note__: This is a UI5 Web Component! [Repository](https://github.com/SAP/ui5-webcomponents) | [Documentation](https://sap.github.io/ui5-webcomponents/) */ const UploadCollection = withWebComponent('ui5-upload-collection', ['accessibleName', 'noDataDescription', 'noDataText', 'selectionMode'], ['hideDragOverlay'], ['header'], ['drop', 'item-delete', 'selection-change']); UploadCollection.displayName = 'UploadCollection'; export { UploadCollection };