@maif/react-forms 1.1.2 → 1.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/README.md +26 -14
- package/lib/index.css +28 -26
- package/lib/index.d.ts +41 -25
- package/lib/index.js +542 -135
- package/package.json +11 -3
- package/lib/esm/index.js +0 -28472
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.0",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib/esm/index.js",
|
|
7
7
|
"types": "lib/index.d.ts",
|
|
@@ -72,10 +72,11 @@
|
|
|
72
72
|
"@testing-library/react": "^11.1.0",
|
|
73
73
|
"@testing-library/user-event": "^12.1.10",
|
|
74
74
|
"@types/jest": "^26.0.24",
|
|
75
|
+
"@types/lodash.debounce": "4.0.7",
|
|
75
76
|
"@types/node": "^16.3.0",
|
|
77
|
+
"@types/object-hash": "^2.2.1",
|
|
76
78
|
"@types/react": "^17.0.14",
|
|
77
79
|
"@types/react-dom": "^17.0.9",
|
|
78
|
-
"@types/object-hash": "^2.2.1",
|
|
79
80
|
"@types/showdown": "^2.0.0",
|
|
80
81
|
"@types/uuid": "^8.3.4",
|
|
81
82
|
"@typescript-eslint/eslint-plugin": "^5.26.0",
|
|
@@ -90,6 +91,7 @@
|
|
|
90
91
|
"react": "^17.0.2",
|
|
91
92
|
"react-dom": "^17.0.2",
|
|
92
93
|
"rollup": "^2.70.1",
|
|
94
|
+
"rollup-plugin-analyzer": "^4.0.0",
|
|
93
95
|
"rollup-plugin-command": "1.1.3",
|
|
94
96
|
"rollup-plugin-commonjs": "^10.1.0",
|
|
95
97
|
"rollup-plugin-copy": "^3.4.0",
|
|
@@ -113,16 +115,22 @@
|
|
|
113
115
|
"@codemirror/lang-markdown": "^0.19.6",
|
|
114
116
|
"@codemirror/language-data": "^0.19.2",
|
|
115
117
|
"@codemirror/theme-one-dark": "^0.19.1",
|
|
118
|
+
"@emotion/react": "^11.9.3",
|
|
119
|
+
"@emotion/styled": "^11.9.3",
|
|
116
120
|
"@fortawesome/fontawesome-free": "^5.15.3",
|
|
117
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",
|
|
118
125
|
"classnames": "2.3.0",
|
|
126
|
+
"date-fns": "^2.28.0",
|
|
119
127
|
"fast-deep-equal": "^3.1.3",
|
|
120
128
|
"highlight.js": "^11.5.1",
|
|
129
|
+
"lodash.debounce": "4.0.8",
|
|
121
130
|
"moment": "2.29.1",
|
|
122
131
|
"object-hash": "3.0.0",
|
|
123
132
|
"react-feather": "2.0.9",
|
|
124
133
|
"react-hook-form": "7.32.1",
|
|
125
|
-
"react-rainbow-components": "1.26.0",
|
|
126
134
|
"react-select": "5.2.1",
|
|
127
135
|
"react-tooltip": "4.2.21",
|
|
128
136
|
"showdown": "1.9.1",
|