@maif/react-forms 1.1.4 → 1.2.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/README.md +26 -14
- package/lib/esm/index.js +502 -113
- package/lib/index.css +6 -14
- package/lib/index.d.ts +25 -12
- package/lib/index.js +513 -122
- package/package.json +9 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maif/react-forms",
|
|
3
3
|
"description": "Build react safe forms as fast as possible",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.2.2",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib/esm/index.js",
|
|
7
7
|
"types": "lib/index.d.ts",
|
|
@@ -74,9 +74,9 @@
|
|
|
74
74
|
"@types/jest": "^26.0.24",
|
|
75
75
|
"@types/lodash.debounce": "4.0.7",
|
|
76
76
|
"@types/node": "^16.3.0",
|
|
77
|
+
"@types/object-hash": "^2.2.1",
|
|
77
78
|
"@types/react": "^17.0.14",
|
|
78
79
|
"@types/react-dom": "^17.0.9",
|
|
79
|
-
"@types/object-hash": "^2.2.1",
|
|
80
80
|
"@types/showdown": "^2.0.0",
|
|
81
81
|
"@types/uuid": "^8.3.4",
|
|
82
82
|
"@typescript-eslint/eslint-plugin": "^5.26.0",
|
|
@@ -91,6 +91,7 @@
|
|
|
91
91
|
"react": "^17.0.2",
|
|
92
92
|
"react-dom": "^17.0.2",
|
|
93
93
|
"rollup": "^2.70.1",
|
|
94
|
+
"rollup-plugin-analyzer": "^4.0.0",
|
|
94
95
|
"rollup-plugin-command": "1.1.3",
|
|
95
96
|
"rollup-plugin-commonjs": "^10.1.0",
|
|
96
97
|
"rollup-plugin-copy": "^3.4.0",
|
|
@@ -114,9 +115,15 @@
|
|
|
114
115
|
"@codemirror/lang-markdown": "^0.19.6",
|
|
115
116
|
"@codemirror/language-data": "^0.19.2",
|
|
116
117
|
"@codemirror/theme-one-dark": "^0.19.1",
|
|
118
|
+
"@emotion/react": "^11.9.3",
|
|
119
|
+
"@emotion/styled": "^11.9.3",
|
|
117
120
|
"@fortawesome/fontawesome-free": "^5.15.3",
|
|
118
121
|
"@hookform/resolvers": "2.4.0",
|
|
122
|
+
"@mui/material": "^5.8.7",
|
|
123
|
+
"@mui/system": "^5.8.7",
|
|
124
|
+
"@mui/x-date-pickers": "^5.0.0-alpha.7",
|
|
119
125
|
"classnames": "2.3.0",
|
|
126
|
+
"date-fns": "^2.28.0",
|
|
120
127
|
"fast-deep-equal": "^3.1.3",
|
|
121
128
|
"highlight.js": "^11.5.1",
|
|
122
129
|
"lodash.debounce": "4.0.8",
|
|
@@ -124,7 +131,6 @@
|
|
|
124
131
|
"object-hash": "3.0.0",
|
|
125
132
|
"react-feather": "2.0.9",
|
|
126
133
|
"react-hook-form": "7.32.1",
|
|
127
|
-
"react-rainbow-components": "1.26.0",
|
|
128
134
|
"react-select": "5.2.1",
|
|
129
135
|
"react-tooltip": "4.2.21",
|
|
130
136
|
"showdown": "1.9.1",
|