antd-management-fast-framework 1.11.5 → 1.11.6

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.
@@ -81,6 +81,7 @@ export const convertCollection: {
81
81
  string: string;
82
82
  moment: string;
83
83
  money: string;
84
+ array: string;
84
85
  };
85
86
  export namespace formatCollection {
86
87
  export const money: string;
@@ -110,7 +110,8 @@ var convertCollection = {
110
110
  datetime: 'datetime',
111
111
  string: 'string',
112
112
  moment: 'moment',
113
- money: 'money'
113
+ money: 'money',
114
+ array: 'array'
114
115
  };
115
116
  exports.convertCollection = convertCollection;
116
117
  var formatCollection = {
package/es/utils/tools.js CHANGED
@@ -1049,6 +1049,10 @@ function getValueByKey(_ref14) {
1049
1049
  result = toMoney(v);
1050
1050
  break;
1051
1051
 
1052
+ case _constants.convertCollection.array:
1053
+ result = isArray(v) ? v : [v];
1054
+ break;
1055
+
1052
1056
  default:
1053
1057
  result = v;
1054
1058
  break;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "antd-management-fast-framework",
3
- "version": "1.11.5",
3
+ "version": "1.11.6",
4
4
  "description": "antd-management-fast-framework",
5
5
  "keywords": [
6
6
  "antd-management-fast-framework"
@@ -40,7 +40,7 @@
40
40
  "classnames": "^2.3.1",
41
41
  "copy-to-clipboard": "^3.3.1",
42
42
  "enquire-js": "^0.2.1",
43
- "html-react-parser": "^1.4.0",
43
+ "html-react-parser": "^1.4.1",
44
44
  "lodash": "^4.17.21",
45
45
  "lodash-decorators": "^6.0.1",
46
46
  "lodash.debounce": "^4.0.8",
@@ -124,10 +124,10 @@
124
124
  "lint-staged": "^12.1.2",
125
125
  "npm-run-all": "^4.1.5",
126
126
  "pify": "^5.0.0",
127
- "postcss": "^8.4.3",
127
+ "postcss": "^8.4.4",
128
128
  "postcss-less": "^5.0.0",
129
129
  "prettier": "^2.5.0",
130
- "puppeteer": "^11.0.0",
130
+ "puppeteer": "^12.0.0",
131
131
  "query-string": "^7.0.1",
132
132
  "react": "^17.0.2",
133
133
  "react-dom": "^17.0.2",
@@ -167,5 +167,5 @@
167
167
  "bugs": {
168
168
  "url": "https://github.com/kityandhero/antd-management-fast-framework/issues"
169
169
  },
170
- "gitHead": "aa387c8a9a319bb8141de51b028950207cb027b3"
170
+ "gitHead": "a6b32e72d6e49f8792def13f4706f03868172d0b"
171
171
  }