antd-management-fast-framework 1.11.6 → 1.11.8

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.
@@ -1661,7 +1661,10 @@ var Common = /*#__PURE__*/function (_Core) {
1661
1661
  }), contentItem.imageBoxProps || {});
1662
1662
 
1663
1663
  var imageBoxContainorStyle = _objectSpread(_objectSpread({}, {
1664
- width: '120px'
1664
+ width: '100px',
1665
+ border: '1px solid #d9d9d9',
1666
+ borderRadius: '4px',
1667
+ padding: '8px'
1665
1668
  }), contentItem.imageBoxContainorStyle || {});
1666
1669
 
1667
1670
  var imageBox = /*#__PURE__*/_react.default.createElement(_ImageBox.default, _extends({
@@ -1695,7 +1698,10 @@ var Common = /*#__PURE__*/function (_Core) {
1695
1698
  }
1696
1699
 
1697
1700
  var _imageBoxContainorStyle = _objectSpread(_objectSpread({}, {
1698
- width: '120px'
1701
+ width: '100px',
1702
+ border: '1px solid #d9d9d9',
1703
+ borderRadius: '4px',
1704
+ padding: '8px'
1699
1705
  }), contentItem.imageBoxContainorStyle || {});
1700
1706
 
1701
1707
  var imageItemShowList = [];
package/es/utils/tools.js CHANGED
@@ -1050,7 +1050,7 @@ function getValueByKey(_ref14) {
1050
1050
  break;
1051
1051
 
1052
1052
  case _constants.convertCollection.array:
1053
- result = isArray(v) ? v : [v];
1053
+ result = (v || null) == null ? [] : isArray(v) ? v : [v];
1054
1054
  break;
1055
1055
 
1056
1056
  default:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "antd-management-fast-framework",
3
- "version": "1.11.6",
3
+ "version": "1.11.8",
4
4
  "description": "antd-management-fast-framework",
5
5
  "keywords": [
6
6
  "antd-management-fast-framework"
@@ -167,5 +167,5 @@
167
167
  "bugs": {
168
168
  "url": "https://github.com/kityandhero/antd-management-fast-framework/issues"
169
169
  },
170
- "gitHead": "a6b32e72d6e49f8792def13f4706f03868172d0b"
170
+ "gitHead": "48e23cd378dbe7cda1566614180397fdc06e066d"
171
171
  }
package/License.txt DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2021 luzhitao
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.