@innoways/form-generator 8.0.2 → 8.0.4
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 +22 -0
- package/dist/index.js +9 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 8.0.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fixed null field issues 8.0.4
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @innoways/drip-form-theme-antd@8.0.4
|
|
10
|
+
- @innoways/drip-form@8.0.4
|
|
11
|
+
- @innoways/hooks@8.0.4
|
|
12
|
+
- @innoways/utils@8.0.4
|
|
13
|
+
|
|
14
|
+
## 8.0.3
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- fixed select field issues 8.0.3
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
- @innoways/drip-form-theme-antd@8.0.3
|
|
21
|
+
- @innoways/drip-form@8.0.3
|
|
22
|
+
- @innoways/hooks@8.0.3
|
|
23
|
+
- @innoways/utils@8.0.3
|
|
24
|
+
|
|
3
25
|
## 8.0.2
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -2333,6 +2333,15 @@ var unitedSchema = [{
|
|
|
2333
2333
|
type: 'text',
|
|
2334
2334
|
placeholder: '0 10px 0 10px | 0 10px'
|
|
2335
2335
|
}
|
|
2336
|
+
}, {
|
|
2337
|
+
fieldKey: 'breakpoint',
|
|
2338
|
+
type: 'number',
|
|
2339
|
+
title: 'Breakpoint',
|
|
2340
|
+
"default": 768,
|
|
2341
|
+
ui: {
|
|
2342
|
+
type: 'number',
|
|
2343
|
+
placeholder: 'enter number'
|
|
2344
|
+
}
|
|
2336
2345
|
}, {
|
|
2337
2346
|
type: 'string',
|
|
2338
2347
|
title: 'Button background color',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@innoways/form-generator",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.4",
|
|
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": "^8.0.
|
|
41
|
-
"@innoways/drip-form-theme-antd": "^8.0.
|
|
42
|
-
"@innoways/hooks": "^8.0.
|
|
43
|
-
"@innoways/utils": "^8.0.
|
|
40
|
+
"@innoways/drip-form": "^8.0.4",
|
|
41
|
+
"@innoways/drip-form-theme-antd": "^8.0.4",
|
|
42
|
+
"@innoways/hooks": "^8.0.4",
|
|
43
|
+
"@innoways/utils": "^8.0.4",
|
|
44
44
|
"@monaco-editor/react": "^4.2.2",
|
|
45
45
|
"antd": "^4.16.13",
|
|
46
46
|
"classnames": "^2.3.1",
|