@innoways/drip-form-theme-antd 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 CHANGED
@@ -1,5 +1,23 @@
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/hooks@8.0.4
10
+ - @innoways/utils@8.0.4
11
+
12
+ ## 8.0.3
13
+
14
+ ### Patch Changes
15
+
16
+ - fixed select field issues 8.0.3
17
+ - Updated dependencies
18
+ - @innoways/hooks@8.0.3
19
+ - @innoways/utils@8.0.3
20
+
3
21
  ## 8.0.2
4
22
 
5
23
  ### Patch Changes
package/dist/index.js CHANGED
@@ -20738,7 +20738,10 @@ var SelectField$1 = function SelectField(props) {
20738
20738
  disabled: disabled,
20739
20739
  value: value,
20740
20740
  onChange: handleChange,
20741
- options: options
20741
+ options: options,
20742
+ getPopupContainer: function getPopupContainer(trigger) {
20743
+ return trigger.parentNode;
20744
+ }
20742
20745
  }, restProps));
20743
20746
  };
20744
20747
 
@@ -21210,7 +21213,7 @@ var NullField = function NullField(_ref) {
21210
21213
  }, style), styleTypeMap[styleType]), {}, {
21211
21214
  width: columnsWidth
21212
21215
  })
21213
- }, (_text$split = text.split('|')) === null || _text$split === void 0 ? void 0 : _text$split[i]));
21216
+ }, (text === null || text === void 0 ? void 0 : (_text$split = text.split('|')) === null || _text$split === void 0 ? void 0 : _text$split[i]) || ''));
21214
21217
  }
21215
21218
 
21216
21219
  return headings;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@innoways/drip-form-theme-antd",
3
- "version": "8.0.2",
3
+ "version": "8.0.4",
4
4
  "author": "JDFED",
5
5
  "description": "drip-form antd主题包",
6
6
  "main": "dist/index.js",
@@ -31,8 +31,8 @@
31
31
  "dependencies": {
32
32
  "@ant-design/icons": "^4.7.0",
33
33
  "@babel/runtime": "^7.10.2",
34
- "@innoways/hooks": "^8.0.2",
35
- "@innoways/utils": "^8.0.2",
34
+ "@innoways/hooks": "^8.0.4",
35
+ "@innoways/utils": "^8.0.4",
36
36
  "antd": "^4.16.13",
37
37
  "flatpickr": "^4.6.13",
38
38
  "moment": "^2.26.0",