@availity/mui-file-selector 1.6.0 → 1.6.2
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/CHANGELOG.md +17 -0
- package/package.json +5 -5
- package/src/lib/FileSelector.stories.tsx +9 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [1.6.2](https://github.com/Availity/element/compare/@availity/mui-file-selector@1.6.1...@availity/mui-file-selector@1.6.2) (2025-04-24)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `mui-form-utils` updated to version `1.6.1`
|
|
10
|
+
* `mui-dialog` updated to version `1.6.1`
|
|
11
|
+
* `mui-textfield` updated to version `1.6.1`
|
|
12
|
+
## [1.6.1](https://github.com/Availity/element/compare/@availity/mui-file-selector@1.6.0...@availity/mui-file-selector@1.6.1) (2025-04-21)
|
|
13
|
+
|
|
14
|
+
### Dependency Updates
|
|
15
|
+
|
|
16
|
+
* `mui-alert` updated to version `1.6.0`
|
|
17
|
+
* `mui-button` updated to version `1.6.0`
|
|
18
|
+
* `mui-form-utils` updated to version `1.6.0`
|
|
19
|
+
* `mui-list` updated to version `1.6.0`
|
|
20
|
+
* `mui-dialog` updated to version `1.6.0`
|
|
21
|
+
* `mui-textfield` updated to version `1.6.0`
|
|
5
22
|
## [1.6.0](https://github.com/Availity/element/compare/@availity/mui-file-selector@1.5.3...@availity/mui-file-selector@1.6.0) (2025-04-15)
|
|
6
23
|
|
|
7
24
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/mui-file-selector",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.2",
|
|
4
4
|
"description": "Availity MUI file-selector Component - part of the @availity/element design system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -41,13 +41,13 @@
|
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@availity/api-axios": "^10.0.3",
|
|
44
|
-
"@availity/mui-alert": "^1.0.
|
|
45
|
-
"@availity/mui-button": "^1.1.
|
|
44
|
+
"@availity/mui-alert": "^1.0.5",
|
|
45
|
+
"@availity/mui-button": "^1.1.3",
|
|
46
46
|
"@availity/mui-divider": "^1.0.2",
|
|
47
|
-
"@availity/mui-form-utils": "^1.2.
|
|
47
|
+
"@availity/mui-form-utils": "^1.2.2",
|
|
48
48
|
"@availity/mui-icon": "^1.0.2",
|
|
49
49
|
"@availity/mui-layout": "^1.0.2",
|
|
50
|
-
"@availity/mui-list": "^1.0.
|
|
50
|
+
"@availity/mui-list": "^1.0.5",
|
|
51
51
|
"@availity/mui-progress": "^1.0.2",
|
|
52
52
|
"@availity/mui-typography": "^1.0.2",
|
|
53
53
|
"@availity/upload-core": "^7.1.1",
|
|
@@ -48,6 +48,14 @@ const meta: Meta<typeof FileSelector> = {
|
|
|
48
48
|
isCloud: true,
|
|
49
49
|
multiple: true,
|
|
50
50
|
},
|
|
51
|
+
argTypes: {
|
|
52
|
+
customSizeMessage: {
|
|
53
|
+
control: 'text',
|
|
54
|
+
},
|
|
55
|
+
customTypesMessage: {
|
|
56
|
+
control: 'text',
|
|
57
|
+
},
|
|
58
|
+
},
|
|
51
59
|
};
|
|
52
60
|
|
|
53
61
|
export default meta;
|
|
@@ -299,6 +307,6 @@ export const _FileSelectorCustomSizeMessage: StoryObj<typeof FileSelector> = {
|
|
|
299
307
|
);
|
|
300
308
|
},
|
|
301
309
|
args: {
|
|
302
|
-
customSizeMessage:
|
|
310
|
+
customSizeMessage: 'Only huge files allowed. ',
|
|
303
311
|
},
|
|
304
312
|
};
|