@innoways/form-generator 7.0.0 → 8.0.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 +14 -0
- package/dist/index.js +9 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 8.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- console.log(showCurrentDate, 'showCurrentDate', fieldData)
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @innoways/drip-form-theme-antd@8.0.0
|
|
13
|
+
- @innoways/drip-form@8.0.0
|
|
14
|
+
- @innoways/hooks@8.0.0
|
|
15
|
+
- @innoways/utils@8.0.0
|
|
16
|
+
|
|
3
17
|
## 7.0.0
|
|
4
18
|
|
|
5
19
|
### Major Changes
|
package/dist/index.js
CHANGED
|
@@ -2089,6 +2089,15 @@ var footerUiSchema = [{
|
|
|
2089
2089
|
label: 'pass'
|
|
2090
2090
|
}]
|
|
2091
2091
|
}
|
|
2092
|
+
}, {
|
|
2093
|
+
type: 'boolean',
|
|
2094
|
+
title: 'Show Loading',
|
|
2095
|
+
"default": false,
|
|
2096
|
+
ui: {
|
|
2097
|
+
type: 'switch',
|
|
2098
|
+
theme: 'antd'
|
|
2099
|
+
},
|
|
2100
|
+
fieldKey: 'showLoading'
|
|
2092
2101
|
}];
|
|
2093
2102
|
var unitedSchema = [{
|
|
2094
2103
|
type: 'object',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@innoways/form-generator",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0",
|
|
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": "^
|
|
41
|
-
"@innoways/drip-form-theme-antd": "^
|
|
42
|
-
"@innoways/hooks": "^
|
|
43
|
-
"@innoways/utils": "^
|
|
40
|
+
"@innoways/drip-form": "^8.0.0",
|
|
41
|
+
"@innoways/drip-form-theme-antd": "^8.0.0",
|
|
42
|
+
"@innoways/hooks": "^8.0.0",
|
|
43
|
+
"@innoways/utils": "^8.0.0",
|
|
44
44
|
"@monaco-editor/react": "^4.2.2",
|
|
45
45
|
"antd": "^4.16.13",
|
|
46
46
|
"classnames": "^2.3.1",
|