UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

13 lines (12 loc) 826 B
'use client'; import { withWebComponent } from '../../internal/withWebComponent.js'; /** * A component to be used within the `UploadCollection`. * * * * __Note__: This is a UI5 Web Component! [Repository](https://github.com/SAP/ui5-webcomponents) | [Documentation](https://sap.github.io/ui5-webcomponents/) */ const UploadCollectionItem = withWebComponent('ui5-upload-collection-item', ['accessibilityAttributes', 'file', 'fileName', 'highlight', 'progress', 'tooltip', 'type', 'uploadState'], ['disableDeleteButton', 'fileNameClickable', 'hideDeleteButton', 'hideRetryButton', 'hideTerminateButton', 'navigated', 'selected'], ['deleteButton', 'thumbnail'], ['detail-click', 'file-name-click', 'rename', 'retry', 'terminate']); UploadCollectionItem.displayName = 'UploadCollectionItem'; export { UploadCollectionItem };