react-declarative 2.7.107 → 2.7.109
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/dist/index.d.ts +474 -679
- package/dist/index.esm.js +1 -15
- package/dist/index.js +1 -1
- package/package.json +11 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-declarative",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.109",
|
|
4
4
|
"readme": "README.md",
|
|
5
5
|
"description": "A React form builder which interacts with a JSON endpoint to generate nested 12-column grids with input fields and automatic state management in a declarative style. Endpoint is typed by TypeScript guards (IntelliSense available). This tool is based on material-ui components, so your application will look beautiful on any device...",
|
|
6
6
|
"private": false,
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"react": "^17.0.0 || ^18.0.0",
|
|
84
84
|
"react-dom": "^17.0.0 || ^18.0.0",
|
|
85
85
|
"tss-react": ">=4.3.4",
|
|
86
|
-
"xlsx": "
|
|
86
|
+
"xlsx": "^0.18.5"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
89
|
"@prettier/sync": "0.5.1",
|
|
@@ -102,17 +102,19 @@
|
|
|
102
102
|
"jest-environment-jsdom": "29.5.0",
|
|
103
103
|
"million": "3.1.11",
|
|
104
104
|
"prettier": "3.2.5",
|
|
105
|
-
"rollup": "2.79.
|
|
105
|
+
"rollup": "2.79.2",
|
|
106
106
|
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
107
107
|
"rollup-plugin-terser": "7.0.2",
|
|
108
108
|
"ts-jest": "29.0.3",
|
|
109
|
-
"typescript": "
|
|
109
|
+
"typescript": "^5.9.2"
|
|
110
110
|
},
|
|
111
111
|
"dependencies": {
|
|
112
112
|
"dayjs": "1.11.5",
|
|
113
|
+
"form-data": "^4.0.4",
|
|
113
114
|
"history": "5.3.0",
|
|
114
|
-
"path-to-regexp": "6.2.
|
|
115
|
+
"path-to-regexp": "^6.2.3",
|
|
115
116
|
"rimraf": "3.0.2",
|
|
117
|
+
"tslib": "^2.8.1",
|
|
116
118
|
"uuid": "9.0.0"
|
|
117
119
|
},
|
|
118
120
|
"licenses": [
|
|
@@ -120,5 +122,8 @@
|
|
|
120
122
|
"type": "MIT",
|
|
121
123
|
"url": "https://github.com/react-declarative/react-declarative#license"
|
|
122
124
|
}
|
|
123
|
-
]
|
|
125
|
+
],
|
|
126
|
+
"overrides": {
|
|
127
|
+
"minimist": "1.2.8"
|
|
128
|
+
}
|
|
124
129
|
}
|