@availity/mui-controlled-form 1.3.9 → 1.4.0
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 +15 -0
- package/package.json +3 -3
- package/src/lib/Types.tsx +5 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [1.4.0](https://github.com/Availity/element/compare/@availity/mui-controlled-form@1.3.10...@availity/mui-controlled-form@1.4.0) (2025-06-23)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `mui-datepicker` updated to version `1.3.10`
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **mui-datepicker:** allow clearable ([60a645f](https://github.com/Availity/element/commit/60a645f8205da1bf886e3de277b3167cef54991c))
|
|
14
|
+
|
|
15
|
+
## [1.3.10](https://github.com/Availity/element/compare/@availity/mui-controlled-form@1.3.9...@availity/mui-controlled-form@1.3.10) (2025-06-18)
|
|
16
|
+
|
|
17
|
+
### Dependency Updates
|
|
18
|
+
|
|
19
|
+
* `mui-autocomplete` updated to version `1.3.9`
|
|
5
20
|
## [1.3.9](https://github.com/Availity/element/compare/@availity/mui-controlled-form@1.3.8...@availity/mui-controlled-form@1.3.9) (2025-06-13)
|
|
6
21
|
|
|
7
22
|
### Dependency Updates
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/mui-controlled-form",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "Availity MUI/react-hook-form controlled form components - part of the @availity/element design system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"publish:canary": "yarn npm publish --access public --tag canary"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@availity/mui-autocomplete": "^1.2.
|
|
43
|
+
"@availity/mui-autocomplete": "^1.2.4",
|
|
44
44
|
"@availity/mui-checkbox": "^1.0.3",
|
|
45
|
-
"@availity/mui-datepicker": "^1.
|
|
45
|
+
"@availity/mui-datepicker": "^1.2.0",
|
|
46
46
|
"@availity/mui-form-utils": "^1.3.2",
|
|
47
47
|
"@availity/mui-textfield": "^1.3.1",
|
|
48
48
|
"react-hook-form": "^7.55.0"
|
package/src/lib/Types.tsx
CHANGED
|
@@ -414,6 +414,11 @@ export const DatepickerPropsCategorized: DatepickerPropsObject = {
|
|
|
414
414
|
closeOnSelect: { table: { category: 'Input Props' } },
|
|
415
415
|
disableOpenPicker: { table: { category: 'Input Props' } },
|
|
416
416
|
placement: { table: { category: 'Input Props' } },
|
|
417
|
+
clearable: {
|
|
418
|
+
table: {
|
|
419
|
+
category: 'Input Props',
|
|
420
|
+
},
|
|
421
|
+
},
|
|
417
422
|
};
|
|
418
423
|
|
|
419
424
|
export const CodesAutocompletePropsCategorized: CodesAutocompletePropsObject = {
|