@innoways/form-generator 6.3.4 → 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 CHANGED
@@ -1,5 +1,44 @@
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
+
17
+ ## 7.0.0
18
+
19
+ ### Major Changes
20
+
21
+ - feature: nested api key support and data fetch and post changes 6.3.4
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies
26
+ - @innoways/drip-form-theme-antd@7.0.0
27
+ - @innoways/drip-form@7.0.0
28
+ - @innoways/hooks@7.0.0
29
+ - @innoways/utils@7.0.0
30
+
31
+ ## 6.3.5
32
+
33
+ ### Patch Changes
34
+
35
+ - feature: nested api key support and data fetch and post changes 6.3.4
36
+ - Updated dependencies
37
+ - @innoways/drip-form-theme-antd@6.3.5
38
+ - @innoways/drip-form@6.3.5
39
+ - @innoways/hooks@6.3.5
40
+ - @innoways/utils@6.3.5
41
+
3
42
  ## 6.3.4
4
43
 
5
44
  ### Patch Changes
package/dist/index.js CHANGED
@@ -2074,6 +2074,30 @@ var footerUiSchema = [{
2074
2074
  theme: 'antd'
2075
2075
  },
2076
2076
  fieldKey: 'uniqueKey'
2077
+ }, {
2078
+ fieldKey: 'passApiJson',
2079
+ type: 'boolean',
2080
+ title: 'Pass API JSON to body',
2081
+ "default": false,
2082
+ ui: {
2083
+ type: 'switch',
2084
+ options: [{
2085
+ value: false,
2086
+ label: 'Do not pass'
2087
+ }, {
2088
+ value: true,
2089
+ label: 'pass'
2090
+ }]
2091
+ }
2092
+ }, {
2093
+ type: 'boolean',
2094
+ title: 'Show Loading',
2095
+ "default": false,
2096
+ ui: {
2097
+ type: 'switch',
2098
+ theme: 'antd'
2099
+ },
2100
+ fieldKey: 'showLoading'
2077
2101
  }];
2078
2102
  var unitedSchema = [{
2079
2103
  type: 'object',
@@ -2585,7 +2609,10 @@ var allPropertyConfigSchemaSelector = selector({
2585
2609
  fieldKey: 'hideOnViewMode',
2586
2610
  "default": false,
2587
2611
  ui: {
2588
- type: 'switch'
2612
+ type: 'switch',
2613
+ containerStyle: {
2614
+ padding: '0 0 0 16px'
2615
+ }
2589
2616
  }
2590
2617
  }, // 标题配置
2591
2618
  baseMap.title, // 提示配置
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@innoways/form-generator",
3
- "version": "6.3.4",
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": "^6.3.4",
41
- "@innoways/drip-form-theme-antd": "^6.3.4",
42
- "@innoways/hooks": "^6.3.4",
43
- "@innoways/utils": "^6.3.4",
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",