antd-management-fast-framework 1.11.17 → 1.11.21
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/es/customComponents/FlexText/index.d.ts +2 -0
- package/es/customComponents/FlexText/index.js +6 -1
- package/es/framework/DataModal/Base/index.js +17 -16
- package/es/utils/authority.js +1 -1
- package/es/utils/constants.d.ts +22 -0
- package/es/utils/constants.js +48 -1
- package/es/utils/tools.d.ts +8 -0
- package/es/utils/tools.js +110 -66
- package/package.json +2 -2
- package/License.txt +0 -21
|
@@ -5,9 +5,11 @@ declare class FlexText extends React.PureComponent<any, any, any> {
|
|
|
5
5
|
}
|
|
6
6
|
declare namespace FlexText {
|
|
7
7
|
export namespace defaultProps {
|
|
8
|
+
export const flexAuto: string;
|
|
8
9
|
export const icon: null;
|
|
9
10
|
export const textPrefix: null;
|
|
10
11
|
export const text: string;
|
|
12
|
+
export const ellipsis: boolean;
|
|
11
13
|
export const textEllipsisMaxWidth: number;
|
|
12
14
|
export const subText: string;
|
|
13
15
|
export const subTextStyle: null;
|
|
@@ -60,9 +60,11 @@ var FlexText = /*#__PURE__*/function (_PureComponent) {
|
|
|
60
60
|
key: "render",
|
|
61
61
|
value: function render() {
|
|
62
62
|
var _this$props = this.props,
|
|
63
|
+
flexAutoSource = _this$props.flexAuto,
|
|
63
64
|
icon = _this$props.icon,
|
|
64
65
|
textPrefix = _this$props.textPrefix,
|
|
65
66
|
text = _this$props.text,
|
|
67
|
+
ellipsis = _this$props.ellipsis,
|
|
66
68
|
textEllipsisMaxWidth = _this$props.textEllipsisMaxWidth,
|
|
67
69
|
subText = _this$props.subText,
|
|
68
70
|
subTextStyle = _this$props.subTextStyle,
|
|
@@ -72,11 +74,12 @@ var FlexText = /*#__PURE__*/function (_PureComponent) {
|
|
|
72
74
|
style = _this$props.style;
|
|
73
75
|
return /*#__PURE__*/_react.default.createElement(_FlexBox.default, {
|
|
74
76
|
style: style,
|
|
77
|
+
flexAuto: flexAutoSource,
|
|
75
78
|
left: /*#__PURE__*/_react.default.createElement(_space.default, null, (addonBefore || null) == null ? null : addonBefore, /*#__PURE__*/_react.default.createElement(_IconInfo.default, {
|
|
76
79
|
icon: icon,
|
|
77
80
|
textPrefix: textPrefix,
|
|
78
81
|
text: text,
|
|
79
|
-
ellipsis:
|
|
82
|
+
ellipsis: ellipsis,
|
|
80
83
|
ellipsisMaxWidth: textEllipsisMaxWidth
|
|
81
84
|
}), (subText || null) == null ? null : /*#__PURE__*/_react.default.createElement("span", {
|
|
82
85
|
className: _index.default.subText,
|
|
@@ -91,9 +94,11 @@ var FlexText = /*#__PURE__*/function (_PureComponent) {
|
|
|
91
94
|
}(_react.PureComponent);
|
|
92
95
|
|
|
93
96
|
FlexText.defaultProps = {
|
|
97
|
+
flexAuto: 'left',
|
|
94
98
|
icon: null,
|
|
95
99
|
textPrefix: null,
|
|
96
100
|
text: '',
|
|
101
|
+
ellipsis: true,
|
|
97
102
|
textEllipsisMaxWidth: 0,
|
|
98
103
|
subText: '',
|
|
99
104
|
subTextStyle: null,
|
|
@@ -19,14 +19,6 @@ require("antd/es/form/style");
|
|
|
19
19
|
|
|
20
20
|
var _form = _interopRequireDefault(require("antd/es/form"));
|
|
21
21
|
|
|
22
|
-
require("antd/es/row/style");
|
|
23
|
-
|
|
24
|
-
var _row = _interopRequireDefault(require("antd/es/row"));
|
|
25
|
-
|
|
26
|
-
require("antd/es/col/style");
|
|
27
|
-
|
|
28
|
-
var _col = _interopRequireDefault(require("antd/es/col"));
|
|
29
|
-
|
|
30
22
|
var _react = _interopRequireDefault(require("react"));
|
|
31
23
|
|
|
32
24
|
var _icons = require("@ant-design/icons");
|
|
@@ -35,6 +27,10 @@ var _tools = require("../../../utils/tools");
|
|
|
35
27
|
|
|
36
28
|
var _constants = require("../../../utils/constants");
|
|
37
29
|
|
|
30
|
+
var _IconInfo = _interopRequireDefault(require("../../../customComponents/IconInfo"));
|
|
31
|
+
|
|
32
|
+
var _FlexText = _interopRequireDefault(require("../../../customComponents/FlexText"));
|
|
33
|
+
|
|
38
34
|
var _BaseWindow2 = _interopRequireDefault(require("../../DataOperation/BaseWindow"));
|
|
39
35
|
|
|
40
36
|
var _index = _interopRequireDefault(require("./index.less"));
|
|
@@ -192,16 +188,21 @@ var Base = /*#__PURE__*/function (_BaseWindow) {
|
|
|
192
188
|
};
|
|
193
189
|
|
|
194
190
|
_this.buildTitle = function () {
|
|
195
|
-
var prevText = _this.buildTitlePrevText();
|
|
196
|
-
|
|
197
191
|
var subText = _this.buildTitleSubText();
|
|
198
192
|
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
}
|
|
193
|
+
var subInfo = (0, _tools.stringIsNullOrWhiteSpace)(subText) ? null : /*#__PURE__*/_react.default.createElement(_FlexText.default, {
|
|
194
|
+
flexAuto: "right",
|
|
195
|
+
addonBefore: '【',
|
|
196
|
+
text: subText,
|
|
197
|
+
addonAfter: '】'
|
|
198
|
+
});
|
|
199
|
+
return /*#__PURE__*/_react.default.createElement(_FlexText.default, {
|
|
200
|
+
flexAuto: "right",
|
|
201
|
+
icon: _this.buildTitleIcon(),
|
|
202
|
+
textPrefix: _this.buildTitlePrevText(),
|
|
203
|
+
text: _this.buildTitleText(),
|
|
204
|
+
extra: subInfo
|
|
205
|
+
});
|
|
205
206
|
};
|
|
206
207
|
|
|
207
208
|
_this.formContent = function () {
|
package/es/utils/authority.js
CHANGED
package/es/utils/constants.d.ts
CHANGED
|
@@ -75,18 +75,40 @@ export namespace formNameCollection {
|
|
|
75
75
|
export { helper_1 as helper };
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
|
+
/**
|
|
79
|
+
* 转换集合
|
|
80
|
+
*/
|
|
78
81
|
export const convertCollection: {
|
|
82
|
+
/**
|
|
83
|
+
* 数字
|
|
84
|
+
*/
|
|
79
85
|
number: string;
|
|
86
|
+
/**
|
|
87
|
+
* 日期 date
|
|
88
|
+
*/
|
|
80
89
|
datetime: string;
|
|
90
|
+
/**
|
|
91
|
+
* 字符串
|
|
92
|
+
*/
|
|
81
93
|
string: string;
|
|
94
|
+
/**
|
|
95
|
+
* moment日期
|
|
96
|
+
*/
|
|
82
97
|
moment: string;
|
|
98
|
+
/**
|
|
99
|
+
* 金额
|
|
100
|
+
*/
|
|
83
101
|
money: string;
|
|
102
|
+
/**
|
|
103
|
+
* 数组
|
|
104
|
+
*/
|
|
84
105
|
array: string;
|
|
85
106
|
};
|
|
86
107
|
export namespace formatCollection {
|
|
87
108
|
export const money: string;
|
|
88
109
|
export const datetime: string;
|
|
89
110
|
export const chineseMoney: string;
|
|
111
|
+
export const percentage: string;
|
|
90
112
|
}
|
|
91
113
|
export namespace menuType {
|
|
92
114
|
export const divider: string;
|
package/es/utils/constants.js
CHANGED
|
@@ -104,20 +104,67 @@ var formNameCollection = {
|
|
|
104
104
|
helper: ''
|
|
105
105
|
}
|
|
106
106
|
};
|
|
107
|
+
/**
|
|
108
|
+
* 转换集合
|
|
109
|
+
*/
|
|
110
|
+
|
|
107
111
|
exports.formNameCollection = formNameCollection;
|
|
108
112
|
var convertCollection = {
|
|
113
|
+
/**
|
|
114
|
+
* 数字
|
|
115
|
+
*/
|
|
109
116
|
number: 'number',
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* 日期 date
|
|
120
|
+
*/
|
|
110
121
|
datetime: 'datetime',
|
|
122
|
+
|
|
123
|
+
/**
|
|
124
|
+
* 字符串
|
|
125
|
+
*/
|
|
111
126
|
string: 'string',
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* moment日期
|
|
130
|
+
*/
|
|
112
131
|
moment: 'moment',
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* 金额
|
|
135
|
+
*/
|
|
113
136
|
money: 'money',
|
|
137
|
+
|
|
138
|
+
/**
|
|
139
|
+
* 数组
|
|
140
|
+
*/
|
|
114
141
|
array: 'array'
|
|
115
142
|
};
|
|
143
|
+
/**
|
|
144
|
+
* 格式化集合
|
|
145
|
+
*/
|
|
146
|
+
|
|
116
147
|
exports.convertCollection = convertCollection;
|
|
117
148
|
var formatCollection = {
|
|
149
|
+
/**
|
|
150
|
+
* 金额 ¥ 0.00
|
|
151
|
+
*/
|
|
118
152
|
money: 'money',
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* 格式化日期 YYYY-MM-DD hh:mm:ss
|
|
156
|
+
*/
|
|
119
157
|
datetime: 'datetime',
|
|
120
|
-
|
|
158
|
+
|
|
159
|
+
/**
|
|
160
|
+
* 中文金额
|
|
161
|
+
*/
|
|
162
|
+
chineseMoney: 'chineseMoney',
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* 百分比
|
|
166
|
+
*/
|
|
167
|
+
percentage: 'percentage'
|
|
121
168
|
};
|
|
122
169
|
exports.formatCollection = formatCollection;
|
|
123
170
|
var menuType = {
|
package/es/utils/tools.d.ts
CHANGED
|
@@ -408,6 +408,14 @@ export function getValueByKey({ data, key, defaultValue, convert, convertBuilder
|
|
|
408
408
|
format?: any;
|
|
409
409
|
formatBuilder?: any;
|
|
410
410
|
}): any;
|
|
411
|
+
export function convertTarget({ target, convert }: {
|
|
412
|
+
target: any;
|
|
413
|
+
convert: any;
|
|
414
|
+
}): any;
|
|
415
|
+
export function formatTarget({ target, format }: {
|
|
416
|
+
target: any;
|
|
417
|
+
format: any;
|
|
418
|
+
}): any;
|
|
411
419
|
/**
|
|
412
420
|
* 通过 path 获取对应得值
|
|
413
421
|
*/
|
package/es/utils/tools.js
CHANGED
|
@@ -14,6 +14,7 @@ exports.checkLocalhost = checkLocalhost;
|
|
|
14
14
|
exports.clearLocalStorage = clearLocalStorage;
|
|
15
15
|
exports.clearSessionStorage = clearSessionStorage;
|
|
16
16
|
exports.cloneWithoutMethod = cloneWithoutMethod;
|
|
17
|
+
exports.convertTarget = convertTarget;
|
|
17
18
|
exports.copyToClipboard = copyToClipboard;
|
|
18
19
|
exports.corsTarget = corsTarget;
|
|
19
20
|
exports.dateToMoment = dateToMoment;
|
|
@@ -38,6 +39,7 @@ exports.formatDatetime = formatDatetime;
|
|
|
38
39
|
exports.formatDecimal = formatDecimal;
|
|
39
40
|
exports.formatMoney = formatMoney;
|
|
40
41
|
exports.formatMoneyToChinese = formatMoneyToChinese;
|
|
42
|
+
exports.formatTarget = formatTarget;
|
|
41
43
|
exports.getAppInitConfigData = getAppInitConfigData;
|
|
42
44
|
exports.getBrowserInfo = getBrowserInfo;
|
|
43
45
|
exports.getDerivedStateFromPropsForUrlParams = getDerivedStateFromPropsForUrlParams;
|
|
@@ -963,8 +965,12 @@ function sortedUnique(array) {
|
|
|
963
965
|
|
|
964
966
|
|
|
965
967
|
function roundToTarget(v, len) {
|
|
968
|
+
if (!isMoney(v)) {
|
|
969
|
+
return 0;
|
|
970
|
+
}
|
|
971
|
+
|
|
966
972
|
var temp = Math.pow(10, len);
|
|
967
|
-
return Math.round(v * temp) / temp;
|
|
973
|
+
return Math.round(toMoney(v) * temp) / temp;
|
|
968
974
|
}
|
|
969
975
|
/**
|
|
970
976
|
* 判断是否是数字字符串
|
|
@@ -1023,67 +1029,105 @@ function getValueByKey(_ref14) {
|
|
|
1023
1029
|
var v = getPathValue(data, key, defaultValue);
|
|
1024
1030
|
var result = v;
|
|
1025
1031
|
|
|
1026
|
-
if (
|
|
1027
|
-
|
|
1028
|
-
|
|
1032
|
+
if ((convertBuilder || null) != null || (convert || null) != null) {
|
|
1033
|
+
if (isFunction(convertBuilder)) {
|
|
1034
|
+
result = convertTarget({
|
|
1035
|
+
target: v,
|
|
1036
|
+
convert: convertBuilder
|
|
1037
|
+
});
|
|
1038
|
+
} else {
|
|
1039
|
+
result = convertTarget({
|
|
1040
|
+
target: v,
|
|
1041
|
+
convert: convert
|
|
1042
|
+
});
|
|
1043
|
+
}
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
if ((formatBuilder || null) != null || (format || null) != null) {
|
|
1047
|
+
if (isFunction(formatBuilder)) {
|
|
1048
|
+
result = formatTarget({
|
|
1049
|
+
target: v,
|
|
1050
|
+
format: formatBuilder
|
|
1051
|
+
});
|
|
1052
|
+
} else {
|
|
1053
|
+
result = formatTarget({
|
|
1054
|
+
target: v,
|
|
1055
|
+
format: format
|
|
1056
|
+
});
|
|
1057
|
+
}
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
return result;
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
function convertTarget(_ref15) {
|
|
1064
|
+
var target = _ref15.target,
|
|
1065
|
+
convert = _ref15.convert;
|
|
1066
|
+
|
|
1067
|
+
if (isFunction(convert)) {
|
|
1068
|
+
return convert(target);
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
if (isString(convert)) {
|
|
1029
1072
|
switch (convert) {
|
|
1030
1073
|
case _constants.convertCollection.number:
|
|
1031
|
-
|
|
1032
|
-
break;
|
|
1074
|
+
return toNumber(target);
|
|
1033
1075
|
|
|
1034
1076
|
case _constants.convertCollection.datetime:
|
|
1035
|
-
|
|
1036
|
-
break;
|
|
1077
|
+
return toDatetime(target);
|
|
1037
1078
|
|
|
1038
1079
|
case _constants.convertCollection.string:
|
|
1039
|
-
|
|
1040
|
-
break;
|
|
1080
|
+
return toString(target);
|
|
1041
1081
|
|
|
1042
1082
|
case _constants.convertCollection.moment:
|
|
1043
|
-
|
|
1044
|
-
data: toString(
|
|
1083
|
+
return toMoment({
|
|
1084
|
+
data: toString(target)
|
|
1045
1085
|
});
|
|
1046
|
-
break;
|
|
1047
1086
|
|
|
1048
1087
|
case _constants.convertCollection.money:
|
|
1049
|
-
|
|
1050
|
-
break;
|
|
1088
|
+
return toMoney(target);
|
|
1051
1089
|
|
|
1052
1090
|
case _constants.convertCollection.array:
|
|
1053
|
-
|
|
1054
|
-
break;
|
|
1091
|
+
return (target || null) == null ? [] : isArray(target) ? target : [target];
|
|
1055
1092
|
|
|
1056
1093
|
default:
|
|
1057
|
-
|
|
1058
|
-
break;
|
|
1094
|
+
return target;
|
|
1059
1095
|
}
|
|
1060
1096
|
}
|
|
1061
1097
|
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1098
|
+
return target;
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
function formatTarget(_ref16) {
|
|
1102
|
+
var target = _ref16.target,
|
|
1103
|
+
format = _ref16.format;
|
|
1104
|
+
|
|
1105
|
+
if (isFunction(format)) {
|
|
1106
|
+
return format(target);
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
if (isString(format)) {
|
|
1065
1110
|
switch (format) {
|
|
1066
1111
|
case _constants.formatCollection.money:
|
|
1067
|
-
|
|
1068
|
-
break;
|
|
1112
|
+
return formatMoney(target);
|
|
1069
1113
|
|
|
1070
1114
|
case _constants.formatCollection.datetime:
|
|
1071
|
-
|
|
1072
|
-
data:
|
|
1115
|
+
return formatDatetime({
|
|
1116
|
+
data: target
|
|
1073
1117
|
});
|
|
1074
|
-
break;
|
|
1075
1118
|
|
|
1076
1119
|
case _constants.formatCollection.chineseMoney:
|
|
1077
|
-
|
|
1078
|
-
|
|
1120
|
+
return formatMoneyToChinese(target);
|
|
1121
|
+
|
|
1122
|
+
case _constants.formatCollection.percentage:
|
|
1123
|
+
return "".concat(roundToTarget(target * 100, 1), "%");
|
|
1079
1124
|
|
|
1080
1125
|
default:
|
|
1081
|
-
|
|
1082
|
-
break;
|
|
1126
|
+
return target;
|
|
1083
1127
|
}
|
|
1084
1128
|
}
|
|
1085
1129
|
|
|
1086
|
-
return
|
|
1130
|
+
return target;
|
|
1087
1131
|
}
|
|
1088
1132
|
/**
|
|
1089
1133
|
* 通过 path 获取对应得值
|
|
@@ -1333,10 +1377,10 @@ function formatMoneyToChinese(v) {
|
|
|
1333
1377
|
return ChineseString;
|
|
1334
1378
|
}
|
|
1335
1379
|
|
|
1336
|
-
function seededRandom(
|
|
1337
|
-
var seed =
|
|
1338
|
-
min =
|
|
1339
|
-
max =
|
|
1380
|
+
function seededRandom(_ref17) {
|
|
1381
|
+
var seed = _ref17.seed,
|
|
1382
|
+
min = _ref17.min,
|
|
1383
|
+
max = _ref17.max;
|
|
1340
1384
|
var maxValue = max || 1;
|
|
1341
1385
|
var minValue = min || 0;
|
|
1342
1386
|
var seedValue = (seed * 9301 + 49297) % 233280;
|
|
@@ -1352,18 +1396,18 @@ function seededRandom(_ref15) {
|
|
|
1352
1396
|
*/
|
|
1353
1397
|
|
|
1354
1398
|
|
|
1355
|
-
function getRandomColor(
|
|
1356
|
-
var seed =
|
|
1357
|
-
|
|
1358
|
-
hue =
|
|
1359
|
-
|
|
1360
|
-
luminosity =
|
|
1361
|
-
|
|
1362
|
-
count =
|
|
1363
|
-
|
|
1364
|
-
format =
|
|
1365
|
-
|
|
1366
|
-
alpha =
|
|
1399
|
+
function getRandomColor(_ref18) {
|
|
1400
|
+
var seed = _ref18.seed,
|
|
1401
|
+
_ref18$hue = _ref18.hue,
|
|
1402
|
+
hue = _ref18$hue === void 0 ? null : _ref18$hue,
|
|
1403
|
+
_ref18$luminosity = _ref18.luminosity,
|
|
1404
|
+
luminosity = _ref18$luminosity === void 0 ? null : _ref18$luminosity,
|
|
1405
|
+
_ref18$count = _ref18.count,
|
|
1406
|
+
count = _ref18$count === void 0 ? null : _ref18$count,
|
|
1407
|
+
_ref18$format = _ref18.format,
|
|
1408
|
+
format = _ref18$format === void 0 ? null : _ref18$format,
|
|
1409
|
+
_ref18$alpha = _ref18.alpha,
|
|
1410
|
+
alpha = _ref18$alpha === void 0 ? null : _ref18$alpha;
|
|
1367
1411
|
return (0, _randomcolor.default)({
|
|
1368
1412
|
seed: seed,
|
|
1369
1413
|
hue: hue,
|
|
@@ -2066,8 +2110,8 @@ function removeNearestLocalhostNotifyCache() {
|
|
|
2066
2110
|
*/
|
|
2067
2111
|
|
|
2068
2112
|
|
|
2069
|
-
function trySendNearestLocalhostNotify(
|
|
2070
|
-
var text =
|
|
2113
|
+
function trySendNearestLocalhostNotify(_ref19) {
|
|
2114
|
+
var text = _ref19.text;
|
|
2071
2115
|
var needSend = false;
|
|
2072
2116
|
var nearestTime = 0;
|
|
2073
2117
|
|
|
@@ -2128,11 +2172,11 @@ function notifySuccess(text) {
|
|
|
2128
2172
|
*/
|
|
2129
2173
|
|
|
2130
2174
|
|
|
2131
|
-
function notify(
|
|
2132
|
-
var type =
|
|
2133
|
-
placementValue =
|
|
2134
|
-
messageValue =
|
|
2135
|
-
descriptionValue =
|
|
2175
|
+
function notify(_ref20) {
|
|
2176
|
+
var type = _ref20.type,
|
|
2177
|
+
placementValue = _ref20.placement,
|
|
2178
|
+
messageValue = _ref20.message,
|
|
2179
|
+
descriptionValue = _ref20.description;
|
|
2136
2180
|
|
|
2137
2181
|
var _placement$message$de = _objectSpread(_objectSpread({}, {
|
|
2138
2182
|
placement: 'bottomRight',
|
|
@@ -2206,10 +2250,10 @@ function notify(_ref18) {
|
|
|
2206
2250
|
}, 600);
|
|
2207
2251
|
}
|
|
2208
2252
|
|
|
2209
|
-
function checkFromConfig(
|
|
2210
|
-
var label =
|
|
2211
|
-
name =
|
|
2212
|
-
helper =
|
|
2253
|
+
function checkFromConfig(_ref21) {
|
|
2254
|
+
var label = _ref21.label,
|
|
2255
|
+
name = _ref21.name,
|
|
2256
|
+
helper = _ref21.helper;
|
|
2213
2257
|
var labelText = 'object';
|
|
2214
2258
|
var nameText = 'object';
|
|
2215
2259
|
var helperText = 'object';
|
|
@@ -2268,13 +2312,13 @@ var requestAnimFrame = requestAnimFrameCustom;
|
|
|
2268
2312
|
|
|
2269
2313
|
exports.requestAnimFrame = requestAnimFrame;
|
|
2270
2314
|
|
|
2271
|
-
function sortCollectionByKey(
|
|
2272
|
-
var operate =
|
|
2273
|
-
item =
|
|
2274
|
-
list =
|
|
2275
|
-
sortKey =
|
|
2276
|
-
|
|
2277
|
-
sortMin =
|
|
2315
|
+
function sortCollectionByKey(_ref22) {
|
|
2316
|
+
var operate = _ref22.operate,
|
|
2317
|
+
item = _ref22.item,
|
|
2318
|
+
list = _ref22.list,
|
|
2319
|
+
sortKey = _ref22.sortKey,
|
|
2320
|
+
_ref22$sortMin = _ref22.sortMin,
|
|
2321
|
+
sortMin = _ref22$sortMin === void 0 ? 0 : _ref22$sortMin;
|
|
2278
2322
|
|
|
2279
2323
|
if ((item || null) == null) {
|
|
2280
2324
|
return list;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "antd-management-fast-framework",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.21",
|
|
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": "
|
|
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.
|