fantasy-ngzorro 1.3.49 → 1.3.51
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/bundles/fantasy-ngzorro.umd.js +102 -28
- package/bundles/fantasy-ngzorro.umd.js.map +1 -1
- package/bundles/fantasy-ngzorro.umd.min.js +1 -1
- package/bundles/fantasy-ngzorro.umd.min.js.map +1 -1
- package/esm2015/hd-filter/hd-filter.component.js +70 -7
- package/esm2015/hd-filter/hd-filter.service.js +5 -1
- package/esm2015/hd-form-lines/hd-form-lines.component.js +13 -19
- package/esm2015/hd-status/hd-status.service.js +5 -5
- package/esm5/hd-filter/hd-filter.component.js +85 -7
- package/esm5/hd-filter/hd-filter.service.js +5 -1
- package/esm5/hd-form-lines/hd-form-lines.component.js +13 -19
- package/esm5/hd-status/hd-status.service.js +5 -5
- package/fantasy-ngzorro.metadata.json +1 -1
- package/fesm2015/fantasy-ngzorro.js +88 -29
- package/fesm2015/fantasy-ngzorro.js.map +1 -1
- package/fesm5/fantasy-ngzorro.js +103 -29
- package/fesm5/fantasy-ngzorro.js.map +1 -1
- package/hd-filter/hd-filter.component.d.ts +4 -0
- package/hd-filter/hd-filter.service.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1021,13 +1021,13 @@
|
|
|
1021
1021
|
// 黄色
|
|
1022
1022
|
'#FAB13B': ['partshipped', 'committed', 'partValid', 'confirm', 'picking'],
|
|
1023
1023
|
// 灰色
|
|
1024
|
-
'#9FA4A2': ['initial', 'uncommitted', 'OFF_LINE', 'UN_PRINTED', 'unpublish', 'pastpublish'],
|
|
1024
|
+
'#9FA4A2': ['initial', 'uncommitted', 'OFF_LINE', 'UN_PRINTED', 'unpublish', 'pastpublish', 'TO_COMMIT'],
|
|
1025
1025
|
// 红色
|
|
1026
|
-
'#F5222D': ['delete', 'deleted', 'aborted', 'rejected', '停用', '禁用', 'unpicked'],
|
|
1026
|
+
'#F5222D': ['delete', 'deleted', 'aborted', 'rejected', '停用', '禁用', 'unpicked', 'DELETED', 'AUDIT_REJECT'],
|
|
1027
1027
|
// 蓝色
|
|
1028
|
-
'#3B77E3': ['audited', 'adjusted', 'invoiced', 'audit', 'submitted'],
|
|
1028
|
+
'#3B77E3': ['audited', 'adjusted', 'invoiced', 'audit', 'submitted', 'TO_AUDIT'],
|
|
1029
1029
|
// 绿色
|
|
1030
|
-
'#12A34F': ['shipped', 'received', 'checked', 'using', 'reverse', 'valid', 'approved', 'ON_LINE', 'finished', 'opened', 'PRINTED', '启用', 'picked', 'published'],
|
|
1030
|
+
'#12A34F': ['shipped', 'received', 'checked', 'using', 'reverse', 'valid', 'approved', 'ON_LINE', 'finished', 'opened', 'PRINTED', '启用', 'picked', 'published', 'AUDITED'],
|
|
1031
1031
|
// 橙色
|
|
1032
1032
|
'#F05B24': ['partialReceived', 'partDelete', 'tender', 'MODIFIED_AFTER_PRINTED']
|
|
1033
1033
|
};
|
|
@@ -1142,12 +1142,23 @@
|
|
|
1142
1142
|
*/
|
|
1143
1143
|
var HdFilterComponent = /** @class */ (function () {
|
|
1144
1144
|
function HdFilterComponent(fb) {
|
|
1145
|
+
var _this = this;
|
|
1145
1146
|
this.fb = fb;
|
|
1146
1147
|
this.searchEvent = new core.EventEmitter();
|
|
1147
1148
|
this.resetEvent = new core.EventEmitter();
|
|
1148
1149
|
this.isShowMore = true;
|
|
1149
1150
|
// 对filterList取模运算
|
|
1150
1151
|
this.filterListModular = 0;
|
|
1152
|
+
this.searchSubject = new rxjs.Subject();
|
|
1153
|
+
this.debounceTimeout = 0; // 默认防抖时间
|
|
1154
|
+
this.searchSubscription = this.searchSubject.pipe(operators.debounceTime(this.debounceTimeout)).subscribe((/**
|
|
1155
|
+
* @param {?} __0
|
|
1156
|
+
* @return {?}
|
|
1157
|
+
*/
|
|
1158
|
+
function (_a) {
|
|
1159
|
+
var fn = _a.fn, event = _a.event, selectOption = _a.selectOption;
|
|
1160
|
+
return _this.triggerEvent(fn, event, selectOption);
|
|
1161
|
+
}));
|
|
1151
1162
|
}
|
|
1152
1163
|
/**
|
|
1153
1164
|
* @return {?}
|
|
@@ -1203,14 +1214,64 @@
|
|
|
1203
1214
|
*/
|
|
1204
1215
|
function (item) {
|
|
1205
1216
|
if (item.onChangeEvent) {
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1217
|
+
if (item.onChangeEventDebounceTime) {
|
|
1218
|
+
_this.validateFilterForm.get(item.name).valueChanges
|
|
1219
|
+
.pipe(operators.debounceTime(item.onChangeEventDebounceTime))
|
|
1220
|
+
.subscribe((/**
|
|
1221
|
+
* @param {?} value
|
|
1222
|
+
* @return {?}
|
|
1223
|
+
*/
|
|
1224
|
+
function (value) { return _this.triggerEvent(item.onChangeEvent, value); }));
|
|
1225
|
+
}
|
|
1226
|
+
else {
|
|
1227
|
+
_this.validateFilterForm.get(item.name).valueChanges.subscribe((/**
|
|
1228
|
+
* @param {?} value
|
|
1229
|
+
* @return {?}
|
|
1230
|
+
*/
|
|
1231
|
+
function (value) { return _this.triggerEvent(item.onChangeEvent, value); }));
|
|
1232
|
+
}
|
|
1211
1233
|
}
|
|
1212
1234
|
}));
|
|
1213
1235
|
};
|
|
1236
|
+
/**
|
|
1237
|
+
* @param {?} fn
|
|
1238
|
+
* @param {?} event
|
|
1239
|
+
* @param {?} onSearchEventDebounceTime
|
|
1240
|
+
* @param {?=} selectOption
|
|
1241
|
+
* @return {?}
|
|
1242
|
+
*/
|
|
1243
|
+
HdFilterComponent.prototype.onSearchEvent = /**
|
|
1244
|
+
* @param {?} fn
|
|
1245
|
+
* @param {?} event
|
|
1246
|
+
* @param {?} onSearchEventDebounceTime
|
|
1247
|
+
* @param {?=} selectOption
|
|
1248
|
+
* @return {?}
|
|
1249
|
+
*/
|
|
1250
|
+
function (fn, event, onSearchEventDebounceTime, selectOption) {
|
|
1251
|
+
var _this = this;
|
|
1252
|
+
if (onSearchEventDebounceTime) {
|
|
1253
|
+
// 更新防抖时间
|
|
1254
|
+
this.debounceTimeout = onSearchEventDebounceTime;
|
|
1255
|
+
// 取消之前的订阅
|
|
1256
|
+
if (this.searchSubscription) {
|
|
1257
|
+
this.searchSubscription.unsubscribe();
|
|
1258
|
+
}
|
|
1259
|
+
// 创建新的订阅
|
|
1260
|
+
this.searchSubscription = this.searchSubject.pipe(operators.debounceTime(this.debounceTimeout)).subscribe((/**
|
|
1261
|
+
* @param {?} __0
|
|
1262
|
+
* @return {?}
|
|
1263
|
+
*/
|
|
1264
|
+
function (_a) {
|
|
1265
|
+
var fn = _a.fn, event = _a.event, selectOption = _a.selectOption;
|
|
1266
|
+
return _this.triggerEvent(fn, event, selectOption);
|
|
1267
|
+
}));
|
|
1268
|
+
// 发送事件
|
|
1269
|
+
this.searchSubject.next({ fn: fn, event: event, selectOption: selectOption });
|
|
1270
|
+
}
|
|
1271
|
+
else {
|
|
1272
|
+
this.triggerEvent(fn, event, selectOption);
|
|
1273
|
+
}
|
|
1274
|
+
};
|
|
1214
1275
|
/**
|
|
1215
1276
|
* @param {?} fn
|
|
1216
1277
|
* @param {?} event
|
|
@@ -1379,7 +1440,7 @@
|
|
|
1379
1440
|
HdFilterComponent.decorators = [
|
|
1380
1441
|
{ type: core.Component, args: [{
|
|
1381
1442
|
selector: 'hd-filter',
|
|
1382
|
-
template: "<form nz-form [formGroup]=\"validateFilterForm\" class=\"ant-advanced-search-form hd-filter-container\">\n <!-- \u6574\u4F53\u7ED3\u6784 -->\n <div nz-row [nzGutter]=\"24\">\n <!-- \u5BF9\u7EC4\u4EF6\u5217\u8868\u5FAA\u73AF\u5904\u7406 -->\n <ng-container *ngFor=\"let filter of filterList\">\n <div nz-col [nzSpan]=\"6\" [hidden]=\"!filter.show\">\n <nz-form-item nzFlex>\n <nz-form-label class=\"hd-filter-label\"><span class=\"hd-red\" *ngIf=\"filter.require\">*</span>{{ filter.label }}\n </nz-form-label>\n <nz-form-control class=\"hd-filter-control\">\n <ng-container [ngSwitch]=\"filter.type\">\n <!-- \u8FD9\u91CC\u6570\u5B57\u5BF9\u5E94\u679A\u4E3E\u7C7B\u578B\uFF0C\u53EF\u5728hd-filter.service.ts\u6587\u4EF6\u4E2D\u67E5\u770B\u5BF9\u5E94\u5173\u7CFB -->\n <ng-container *ngSwitchCase=\"0\">\n <nz-input-group [nzSuffix]=\"inputCleanTemplate\">\n <input nz-input [placeholder]=\"filter.placeholder ? filter.placeholder : '\u8BF7\u8F93\u5165' + filter.label\"\n [formControlName]=\"filter.name\"\n (blur)=\"triggerEvent(filter.onBlurEvent || null, validateFilterForm.get(filter.name).value)\"/>\n </nz-input-group>\n <ng-template #inputCleanTemplate><i nz-icon nz-tooltip class=\"ant-input-clear-icon\" nzTheme=\"fill\"\n nzType=\"close-circle\" *ngIf=\"validateFilterForm.get(filter.name).value\"\n (click)=\"inputClean(filter)\"></i></ng-template>\n </ng-container>\n <ng-container *ngSwitchCase=\"1\">\n <nz-select\n [nzShowSearch]=\"filter.selectOption.hdShowSearch != null ? filter.selectOption.hdShowSearch : true\"\n [nzAllowClear]=\"filter.selectOption.hdAllowClear != null ? filter.selectOption.hdAllowClear : true\"\n [nzServerSearch]=\"filter.selectOption.hdServerSearch || false\"\n [nzDropdownMatchSelectWidth]=\"filter.selectOption.hdDropdownMatchSelectWidth ? filter.selectOption.hdDropdownMatchSelectWidth : false\"\n (nzOnSearch)=\"
|
|
1443
|
+
template: "<form nz-form [formGroup]=\"validateFilterForm\" class=\"ant-advanced-search-form hd-filter-container\">\n <!-- \u6574\u4F53\u7ED3\u6784 -->\n <div nz-row [nzGutter]=\"24\">\n <!-- \u5BF9\u7EC4\u4EF6\u5217\u8868\u5FAA\u73AF\u5904\u7406 -->\n <ng-container *ngFor=\"let filter of filterList\">\n <div nz-col [nzSpan]=\"6\" [hidden]=\"!filter.show\">\n <nz-form-item nzFlex>\n <nz-form-label class=\"hd-filter-label\"><span class=\"hd-red\" *ngIf=\"filter.require\">*</span>{{ filter.label }}\n </nz-form-label>\n <nz-form-control class=\"hd-filter-control\">\n <ng-container [ngSwitch]=\"filter.type\">\n <!-- \u8FD9\u91CC\u6570\u5B57\u5BF9\u5E94\u679A\u4E3E\u7C7B\u578B\uFF0C\u53EF\u5728hd-filter.service.ts\u6587\u4EF6\u4E2D\u67E5\u770B\u5BF9\u5E94\u5173\u7CFB -->\n <ng-container *ngSwitchCase=\"0\">\n <nz-input-group [nzSuffix]=\"inputCleanTemplate\">\n <input nz-input [placeholder]=\"filter.placeholder ? filter.placeholder : '\u8BF7\u8F93\u5165' + filter.label\"\n [formControlName]=\"filter.name\"\n (blur)=\"triggerEvent(filter.onBlurEvent || null, validateFilterForm.get(filter.name).value)\"/>\n </nz-input-group>\n <ng-template #inputCleanTemplate><i nz-icon nz-tooltip class=\"ant-input-clear-icon\" nzTheme=\"fill\"\n nzType=\"close-circle\" *ngIf=\"validateFilterForm.get(filter.name).value\"\n (click)=\"inputClean(filter)\"></i></ng-template>\n </ng-container>\n <ng-container *ngSwitchCase=\"1\">\n <nz-select\n [nzShowSearch]=\"filter.selectOption.hdShowSearch != null ? filter.selectOption.hdShowSearch : true\"\n [nzAllowClear]=\"filter.selectOption.hdAllowClear != null ? filter.selectOption.hdAllowClear : true\"\n [nzServerSearch]=\"filter.selectOption.hdServerSearch || false\"\n [nzDropdownMatchSelectWidth]=\"filter.selectOption.hdDropdownMatchSelectWidth ? filter.selectOption.hdDropdownMatchSelectWidth : false\"\n (nzOnSearch)=\"onSearchEvent(filter.onSearchEvent || null, $event, filter.onSearchEventEventDebounceTime, filter.selectOption)\"\n [nzPlaceHolder]=\"filter.placeholder ? filter.placeholder : '\u8BF7\u9009\u62E9' + filter.label\"\n [formControlName]=\"filter.name\">\n <nz-option *ngFor=\"let selectItem of filter.selectOption.selectList\"\n [nzValue]=\"selectItem[filter.selectOption.value]\" [nzLabel]=\"filter.selectOption.showLabelAndValue ? '['+ selectItem[filter.selectOption.value] +']' +\n selectItem[filter.selectOption.label] : selectItem[filter.selectOption.label]\"></nz-option>\n </nz-select>\n </ng-container>\n <ng-container *ngSwitchCase=\"2\">\n <nz-date-picker *ngIf=\"filter.showTime\"\n [nzPlaceHolder]=\"filter.placeholder ? filter.placeholder : '\u8BF7\u9009\u62E9' + filter.label\"\n [formControlName]=\"filter.name\" [nzDisabledDate]=\"filter.hdDisabledDate\"\n nzShowTime nzFormat=\"yyyy-MM-dd HH:mm:ss\">\n </nz-date-picker>\n <nz-date-picker *ngIf=\"!filter.showTime\"\n [nzPlaceHolder]=\"filter.placeholder ? filter.placeholder : '\u8BF7\u9009\u62E9' + filter.label\"\n [formControlName]=\"filter.name\" [nzDisabledDate]=\"filter.hdDisabledDate\">\n </nz-date-picker>\n </ng-container>\n <ng-container *ngSwitchCase=\"3\">\n <nz-range-picker [nzPlaceHolder]=\"['\u5F00\u59CB\u65E5\u671F','\u7ED3\u675F\u65E5\u671F']\" [formControlName]=\"filter.name\">\n </nz-range-picker>\n </ng-container>\n <!-- \u591A\u9879\u9009\u62E9\u5668 -->\n <ng-container *ngSwitchCase=\"4\">\n <nz-select\n [nzDropdownMatchSelectWidth]=\"filter.selectOption.hdDropdownMatchSelectWidth ? filter.selectOption.hdDropdownMatchSelectWidth : false\"\n nzMode=\"multiple\"\n [nzShowSearch]=\"filter.selectOption.hdShowSearch != null ? filter.selectOption.hdShowSearch : true\"\n [nzAllowClear]=\"filter.selectOption.hdAllowClear != null ? filter.selectOption.hdAllowClear : true\"\n [nzPlaceHolder]=\"filter.placeholder ? filter.placeholder : '\u8BF7\u9009\u62E9' + filter.label\"\n [formControlName]=\"filter.name\" [nzServerSearch]=\"filter.selectOption.hdServerSearch || false\"\n (nzOnSearch)=\"onSearchEvent(filter.onSearchEvent || null, $event, filter.onSearchEventEventDebounceTime, filter.selectOption)\">\n <nz-option *ngFor=\"let selectItem of filter.selectOption.selectList\"\n [nzValue]=\"selectItem[filter.selectOption.value]\" [nzLabel]=\"filter.selectOption.showLabelAndValue ? '['+ selectItem[filter.selectOption.value] +']' +\n selectItem[filter.selectOption.label] : selectItem[filter.selectOption.label]\"></nz-option>\n </nz-select>\n </ng-container>\n <ng-container *ngSwitchCase=\"5\">\n <nz-cascader [nzOptions]=\"filter.cascaderOption.options\" [formControlName]=\"filter.name\"\n [nzPlaceHolder]=\"filter.placeholder ? filter.placeholder : '\u8BF7\u9009\u62E9' + filter.label\">\n </nz-cascader>\n </ng-container>\n <ng-container *ngSwitchCase=\"6\">\n <nz-month-picker [formControlName]=\"filter.name\"\n [nzPlaceHolder]=\"filter.placeholder ? filter.placeholder : '\u8BF7\u9009\u62E9' + filter.label\"></nz-month-picker>\n </ng-container>\n <ng-container *ngSwitchCase=\"7\">\n <nz-input-number [formControlName]=\"filter.name\" [nzMin]=\"filter?.inputNumber?.min || 0\"\n [nzMax]=\"filter?.inputNumber?.max || 99999999\" [nzStep]=\"filter?.inputNumber?.step || 1\"\n [nzPlaceHolder]=\"'\u8BF7\u8F93\u5165' + filter.label\"\n [nzPrecision]=\"filter?.inputNumber?.precision != null ? filter.inputNumber.precision : 4\"\n (nzBlur)=\"triggerEvent(filter.onBlurEvent || null, validateFilterForm.get(filter.name).value)\">\n </nz-input-number>\n </ng-container>\n </ng-container>\n </nz-form-control>\n </nz-form-item>\n </div>\n </ng-container>\n\n <div class=\"hd-filter-btn\" nz-col [nzSpan]=\"6\" [nzOffset]=\"computeOffset()\">\n <a *ngIf=\"filterList.length > 7\" class=\"hd-filter-more\" (click)=\"showMore()\">\n {{ isShowMore ? '\u5C55\u5F00' : '\u6536\u8D77' }}\n <i nz-icon [nzType]=\"isShowMore ? 'down' : 'up'\"></i>\n </a>\n <hd-button type=\"primary\" (click)=\"submitForm()\">\u67E5\u8BE2</hd-button>\n <hd-button type=\"reset\" (click)=\"resetForm()\">\u91CD\u7F6E</hd-button>\n </div>\n </div>\n</form>\n",
|
|
1383
1444
|
styles: ["::ng-deep .common-btn-group>a{font-size:12px;font-weight:400;color:#12a34f!important;white-space:nowrap}::ng-deep .common-btn-group .common-danger-btn:hover{color:#f05b24!important}::ng-deep .common-btn-group>a:hover{color:#20bd62!important}::ng-deep .common-btn-group>a:not(:last-child)::after{content:'';margin:0 2px}::ng-deep .common-billNumber>a{color:#3b77e3}button{box-shadow:unset;text-shadow:unset}::ng-deep .ant-form-item-label>label{color:#4b504e}::ng-deep .ant-input-number-input{height:28px}::ng-deep .ant-input-number{height:28px}textarea.ant-input{height:auto;min-height:28px}::ng-deep .ant-select-selection--multiple{min-height:28px}::ng-deep .ant-select-selection__rendered>ul>li{height:22px!important;margin-top:3px!important;line-height:22px!important}::ng-deep .ant-advanced-search-form .ant-form-item{margin-bottom:0!important}::ng-deep .ant-select-selection--single{height:28px!important}::ng-deep .ant-input{height:28px}::ng-deep .ant-input[disabled]:hover{border-color:#d9d9d9!important}::ng-deep .ant-select-selection__rendered{line-height:28px!important}::ng-deep .ant-calendar-range-picker-input{text-align:left!important}::ng-deep .ant-calendar-picker{width:100%!important}::ng-deep .ant-row{margin-right:0!important;margin-left:0!important}::ng-deep .ant-col-6{padding-left:12px;padding-right:12px}::ng-deep .ant-col-12{padding-left:12px;padding-right:12px}::ng-deep .ant-col-18{padding-left:12px;padding-right:12px}::ng-deep .ant-col-24{padding-left:12px;padding-right:12px}::ng-deep .ant-alert-info{background-color:#f5f8f6;border:1px solid #cfe3d4}:host ::ng-deep th{background:#f5f8f6!important;font-weight:700!important;white-space:nowrap;font-size:12px;font-family:PingFangSC-Medium,PingFang SC;color:#2a3634;padding:8px!important;box-sizing:border-box}:host ::ng-deep td{font-weight:400;font-style:normal;font-size:12px;color:#2a3634;text-align:left;white-space:nowrap;padding:8px!important;box-sizing:border-box}::ng-deep .ant-pagination-options{display:inline-flex;align-items:center}::ng-deep .ant-time-picker{width:100%}.ant-input-number-disabled,.ant-input[disabled],.ant-select-disabled{color:#4b504e}.hd-filter-container{padding:20px 23px;background:#fff;box-shadow:0 0 12px 0 rgba(93,114,103,.08);border-radius:4px;margin-bottom:8px!important;font-size:12px}.hd-filter-container .ant-row{margin-right:0!important;margin-left:0!important}.hd-filter-container .ant-col-6{padding-left:0!important;padding-right:0!important}.hd-filter-container .hd-filter-label{width:108px;word-break:break-all}.hd-filter-container .hd-filter-control{width:calc(100% - 108px)}.hd-filter-container ::ng-deep .ant-calendar-picker{width:100%}.hd-filter-container .hd-filter-more{color:#12a34f}.hd-filter-container .hd-filter-btn{height:40px;display:inline-flex;align-items:center;justify-content:flex-end}.hd-filter-container hd-button{margin-left:12px}.hd-filter-container ::ng-deep .ant-advanced-search-form .ant-form-item{margin-bottom:0!important}.hd-filter-container ::ng-deep .ant-select-selection--single{height:28px!important}.hd-filter-container ::ng-deep .ant-input{height:28px!important}.hd-filter-container ::ng-deep .ant-calendar-range-picker-input{text-align:left!important}.hd-filter-container .ant-input-number{width:100%}.hd-filter-container .hd-red{color:red}"]
|
|
1384
1445
|
}] }
|
|
1385
1446
|
];
|
|
@@ -1407,6 +1468,21 @@
|
|
|
1407
1468
|
HdFilterComponent.prototype.isShowMore;
|
|
1408
1469
|
/** @type {?} */
|
|
1409
1470
|
HdFilterComponent.prototype.filterListModular;
|
|
1471
|
+
/**
|
|
1472
|
+
* @type {?}
|
|
1473
|
+
* @private
|
|
1474
|
+
*/
|
|
1475
|
+
HdFilterComponent.prototype.searchSubject;
|
|
1476
|
+
/**
|
|
1477
|
+
* @type {?}
|
|
1478
|
+
* @private
|
|
1479
|
+
*/
|
|
1480
|
+
HdFilterComponent.prototype.debounceTimeout;
|
|
1481
|
+
/**
|
|
1482
|
+
* @type {?}
|
|
1483
|
+
* @private
|
|
1484
|
+
*/
|
|
1485
|
+
HdFilterComponent.prototype.searchSubscription;
|
|
1410
1486
|
/**
|
|
1411
1487
|
* @type {?}
|
|
1412
1488
|
* @private
|
|
@@ -1866,25 +1942,19 @@
|
|
|
1866
1942
|
for (var i = 0; i < pageLinesLength; i++) {
|
|
1867
1943
|
this.collectDomList.push(pageDomList.splice(0, interval));
|
|
1868
1944
|
}
|
|
1945
|
+
// TODO: 这里不能直接关掉,先注释
|
|
1869
1946
|
// 关闭所有NzInputNumberComponent的键盘上下箭头触发+-的功能
|
|
1870
|
-
for (
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
* @return {?}
|
|
1882
|
-
*/
|
|
1883
|
-
function () {
|
|
1884
|
-
});
|
|
1885
|
-
}
|
|
1886
|
-
}
|
|
1887
|
-
}
|
|
1947
|
+
// for (let i = 0; i < this.collectDomList.length; i++) {
|
|
1948
|
+
// for (let j = 0; j < this.collectDomList[i].length; j++) {
|
|
1949
|
+
// const dom = this.collectDomList[i][j];
|
|
1950
|
+
// if (dom instanceof NzInputNumberComponent) {
|
|
1951
|
+
// dom.down = () => {
|
|
1952
|
+
// };
|
|
1953
|
+
// dom.up = () => {
|
|
1954
|
+
// };
|
|
1955
|
+
// }
|
|
1956
|
+
// }
|
|
1957
|
+
// }
|
|
1888
1958
|
};
|
|
1889
1959
|
// 聚焦下一个dom
|
|
1890
1960
|
// 聚焦下一个dom
|
|
@@ -6139,6 +6209,10 @@
|
|
|
6139
6209
|
Filter.prototype.require;
|
|
6140
6210
|
/** @type {?} */
|
|
6141
6211
|
Filter.prototype.cascaderOption;
|
|
6212
|
+
/** @type {?} */
|
|
6213
|
+
Filter.prototype.onChangeEventDebounceTime;
|
|
6214
|
+
/** @type {?} */
|
|
6215
|
+
Filter.prototype.onSearchEventEventDebounceTime;
|
|
6142
6216
|
}
|
|
6143
6217
|
/** @enum {number} */
|
|
6144
6218
|
var FilterListType = {
|