@innoways/form-generator 6.3.3 → 7.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,41 @@
1
1
  # Change Log
2
2
 
3
+ ## 7.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - feature: nested api key support and data fetch and post changes 6.3.4
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @innoways/drip-form-theme-antd@7.0.0
13
+ - @innoways/drip-form@7.0.0
14
+ - @innoways/hooks@7.0.0
15
+ - @innoways/utils@7.0.0
16
+
17
+ ## 6.3.5
18
+
19
+ ### Patch Changes
20
+
21
+ - feature: nested api key support and data fetch and post changes 6.3.4
22
+ - Updated dependencies
23
+ - @innoways/drip-form-theme-antd@6.3.5
24
+ - @innoways/drip-form@6.3.5
25
+ - @innoways/hooks@6.3.5
26
+ - @innoways/utils@6.3.5
27
+
28
+ ## 6.3.4
29
+
30
+ ### Patch Changes
31
+
32
+ - feature: place auto complete search feature added, version 6.3.3
33
+ - Updated dependencies
34
+ - @innoways/drip-form-theme-antd@6.3.4
35
+ - @innoways/drip-form@6.3.4
36
+ - @innoways/hooks@6.3.4
37
+ - @innoways/utils@6.3.4
38
+
3
39
  ## 6.3.3
4
40
 
5
41
  ### Patch Changes
package/dist/index.js CHANGED
@@ -2074,6 +2074,21 @@ 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
+ }
2077
2092
  }];
2078
2093
  var unitedSchema = [{
2079
2094
  type: 'object',
@@ -2585,7 +2600,10 @@ var allPropertyConfigSchemaSelector = selector({
2585
2600
  fieldKey: 'hideOnViewMode',
2586
2601
  "default": false,
2587
2602
  ui: {
2588
- type: 'switch'
2603
+ type: 'switch',
2604
+ containerStyle: {
2605
+ padding: '0 0 0 16px'
2606
+ }
2589
2607
  }
2590
2608
  }, // 标题配置
2591
2609
  baseMap.title, // 提示配置
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@innoways/form-generator",
3
- "version": "6.3.3",
3
+ "version": "7.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.3",
41
- "@innoways/drip-form-theme-antd": "^6.3.3",
42
- "@innoways/hooks": "^6.3.3",
43
- "@innoways/utils": "^6.3.3",
40
+ "@innoways/drip-form": "^7.0.0",
41
+ "@innoways/drip-form-theme-antd": "^7.0.0",
42
+ "@innoways/hooks": "^7.0.0",
43
+ "@innoways/utils": "^7.0.0",
44
44
  "@monaco-editor/react": "^4.2.2",
45
45
  "antd": "^4.16.13",
46
46
  "classnames": "^2.3.1",