cecomponent 2.0.100 → 2.0.102
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ce-component-lib.js +48 -48
- package/dist/ce-component-lib.mjs +2281 -2247
- package/dist/components/Common/CEFileUpload/CEFileUploadDocument.d.ts +1 -0
- package/dist/components/Common/CEFileUpload/CEFileUploadDocument.stories.d.ts +1 -0
- package/dist/shared/utils.d.ts +1 -0
- package/package.json +1 -1
|
@@ -17,6 +17,7 @@ export interface CEFileUploadProps {
|
|
|
17
17
|
showType?: boolean;
|
|
18
18
|
onDelete?: (file: UploadedFile) => void;
|
|
19
19
|
onDownload?: (file: UploadedFile) => void;
|
|
20
|
+
showDownloadIcon?: boolean;
|
|
20
21
|
showPagination?: boolean;
|
|
21
22
|
pageSizeOptions?: Array<number>;
|
|
22
23
|
disabled?: boolean;
|
|
@@ -18,6 +18,7 @@ export declare const ImagesOnly: Story;
|
|
|
18
18
|
export declare const DocumentsOnly: Story;
|
|
19
19
|
export declare const Disabled: Story;
|
|
20
20
|
export declare const WithCallbacks: Story;
|
|
21
|
+
export declare const WithoutDownloadIcon: Story;
|
|
21
22
|
export declare const SingleFileEnabled: Story;
|
|
22
23
|
export declare const SingleFileDisabledDefault: Story;
|
|
23
24
|
export declare const SingleFilePickerDisablesMultipleSelection: Story;
|
package/dist/shared/utils.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cecomponent",
|
|
3
3
|
"description": "A React component library for building modern UIs for Cleanearth",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.102",
|
|
5
5
|
"main": "dist/ce-component-lib.js",
|
|
6
6
|
"module": "dist/ce-component-lib.mjs",
|
|
7
7
|
"types": "dist/idex.d.ts",
|