cloudmr-ux 1.8.5 → 1.8.6

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/package.json +1 -2
package/dist/index.d.ts CHANGED
@@ -115,7 +115,7 @@ interface CMRUploadProps extends React__default.HTMLAttributes<HTMLDivElement> {
115
115
  onUploaded: (res: AxiosResponse, file: File) => Promise<void> | void;
116
116
  sx?: SxProps<Theme> | undefined;
117
117
  rest?: any;
118
- fileExtension?: string;
118
+ fileExtension?: string | string[];
119
119
  uploadStarted?: () => void;
120
120
  uploadEnded?: () => void;
121
121
  uploadFailed?: () => void;
package/package.json CHANGED
@@ -1,13 +1,12 @@
1
1
  {
2
2
  "name": "cloudmr-ux",
3
- "version": "1.8.5",
3
+ "version": "1.8.6",
4
4
  "author": "erosmontin@gmail.com",
5
5
  "license": "MIT",
6
6
  "repository": "erosmontin/cloudmr-ux",
7
7
  "main": "dist/index.js",
8
8
  "module": "dist/index.esm.js",
9
9
  "types": "dist/index.d.ts",
10
- "style": "dist/index.css",
11
10
  "files": [
12
11
  "dist"
13
12
  ],