@innoways/form-generator 6.2.0 → 6.2.1
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 +11 -0
- package/dist/index.js +8 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 6.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- modified feature to post data on submit
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @innoways/drip-form-theme-antd@6.2.1
|
|
10
|
+
- @innoways/drip-form@6.2.1
|
|
11
|
+
- @innoways/hooks@6.2.1
|
|
12
|
+
- @innoways/utils@6.2.1
|
|
13
|
+
|
|
3
14
|
## 6.2.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
package/dist/index.js
CHANGED
|
@@ -2050,6 +2050,14 @@ var footerUiSchema = [{
|
|
|
2050
2050
|
theme: 'antd'
|
|
2051
2051
|
},
|
|
2052
2052
|
fieldKey: 'token'
|
|
2053
|
+
}, {
|
|
2054
|
+
type: 'string',
|
|
2055
|
+
title: 'Unique key',
|
|
2056
|
+
ui: {
|
|
2057
|
+
type: 'text',
|
|
2058
|
+
theme: 'antd'
|
|
2059
|
+
},
|
|
2060
|
+
fieldKey: 'uniqueKey'
|
|
2053
2061
|
}];
|
|
2054
2062
|
var unitedSchema = [{
|
|
2055
2063
|
type: 'object',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@innoways/form-generator",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.1",
|
|
4
4
|
"description": "drip-form 生成器",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"hooks",
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
"@dnd-kit/modifiers": "^4.0.0",
|
|
38
38
|
"@dnd-kit/sortable": "^5.0.0",
|
|
39
39
|
"@dnd-kit/utilities": "^3.0.0",
|
|
40
|
-
"@innoways/drip-form": "^6.2.
|
|
41
|
-
"@innoways/drip-form-theme-antd": "^6.2.
|
|
42
|
-
"@innoways/hooks": "^6.2.
|
|
43
|
-
"@innoways/utils": "^6.2.
|
|
40
|
+
"@innoways/drip-form": "^6.2.1",
|
|
41
|
+
"@innoways/drip-form-theme-antd": "^6.2.1",
|
|
42
|
+
"@innoways/hooks": "^6.2.1",
|
|
43
|
+
"@innoways/utils": "^6.2.1",
|
|
44
44
|
"@monaco-editor/react": "^4.2.2",
|
|
45
45
|
"antd": "^4.16.13",
|
|
46
46
|
"classnames": "^2.3.1",
|