@availity/mui-controlled-form 0.1.4 → 0.2.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 +20 -0
- package/package.json +19 -11
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.2.0](https://github.com/Availity/element/compare/@availity/mui-controlled-form@0.1.4...@availity/mui-controlled-form@0.2.0) (2025-02-04)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `mui-button` updated to version `0.1.4`
|
|
10
|
+
* `mui-layout` updated to version `0.1.4`
|
|
11
|
+
* `mui-menu` updated to version `0.1.4`
|
|
12
|
+
* `mui-paper` updated to version `0.1.4`
|
|
13
|
+
* `mui-typography` updated to version `0.1.4`
|
|
14
|
+
* `mui-autocomplete` updated to version `0.1.4`
|
|
15
|
+
* `mui-checkbox` updated to version `0.1.4`
|
|
16
|
+
* `mui-datepicker` updated to version `0.1.4`
|
|
17
|
+
* `mui-form-utils` updated to version `0.1.4`
|
|
18
|
+
* `mui-textfield` updated to version `0.1.4`
|
|
19
|
+
* `theme-provider` updated to version `0.1.4`
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
* configure package.json to allow esm to be used ([5a5393d](https://github.com/Availity/element/commit/5a5393de761f52608e714dd94a05106937dd95db))
|
|
24
|
+
|
|
5
25
|
## [0.1.4](https://github.com/Availity/element/compare/@availity/mui-controlled-form@0.1.3...@availity/mui-controlled-form@0.1.4) (2025-02-03)
|
|
6
26
|
|
|
7
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/mui-controlled-form",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Availity MUI ControlledForm Component - part of the @availity/element design system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -23,6 +23,14 @@
|
|
|
23
23
|
"main": "./dist/index.js",
|
|
24
24
|
"module": "./dist/index.mjs",
|
|
25
25
|
"types": "./dist/index.d.ts",
|
|
26
|
+
"exports": {
|
|
27
|
+
"./package.json": "./package.json",
|
|
28
|
+
".": {
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"import": "./dist/index.mjs",
|
|
31
|
+
"require": "./dist/index.js"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
26
34
|
"scripts": {
|
|
27
35
|
"build": "tsup src/index.ts --format esm,cjs --dts",
|
|
28
36
|
"dev": "tsup src/index.ts --format esm,cjs --watch --dts",
|
|
@@ -32,20 +40,20 @@
|
|
|
32
40
|
"publish:canary": "yarn npm publish --access public --tag canary"
|
|
33
41
|
},
|
|
34
42
|
"dependencies": {
|
|
35
|
-
"@availity/mui-autocomplete": "^0.
|
|
36
|
-
"@availity/mui-checkbox": "^0.
|
|
37
|
-
"@availity/mui-datepicker": "^0.
|
|
38
|
-
"@availity/mui-form-utils": "^0.
|
|
39
|
-
"@availity/mui-textfield": "^0.
|
|
43
|
+
"@availity/mui-autocomplete": "^0.10.0",
|
|
44
|
+
"@availity/mui-checkbox": "^0.3.0",
|
|
45
|
+
"@availity/mui-datepicker": "^0.6.0",
|
|
46
|
+
"@availity/mui-form-utils": "^0.17.0",
|
|
47
|
+
"@availity/mui-textfield": "^0.7.0",
|
|
40
48
|
"react-hook-form": "^7.51.3"
|
|
41
49
|
},
|
|
42
50
|
"devDependencies": {
|
|
43
51
|
"@availity/api-axios": "^9.0.6",
|
|
44
|
-
"@availity/mui-button": "^0.
|
|
45
|
-
"@availity/mui-layout": "^0.
|
|
46
|
-
"@availity/mui-menu": "^0.
|
|
47
|
-
"@availity/mui-paper": "^0.
|
|
48
|
-
"@availity/mui-typography": "^0.
|
|
52
|
+
"@availity/mui-button": "^0.7.0",
|
|
53
|
+
"@availity/mui-layout": "^0.3.0",
|
|
54
|
+
"@availity/mui-menu": "^0.3.0",
|
|
55
|
+
"@availity/mui-paper": "^0.2.0",
|
|
56
|
+
"@availity/mui-typography": "^0.3.0",
|
|
49
57
|
"@hookform/resolvers": "^3.10.0",
|
|
50
58
|
"@mui/material": "^5.15.15",
|
|
51
59
|
"@tanstack/react-query": "^4.36.1",
|