tnx-shared 5.0.43 → 5.0.44
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/tnx-shared.umd.js +6 -2
- package/bundles/tnx-shared.umd.js.map +1 -1
- package/bundles/tnx-shared.umd.min.js +1 -1
- package/bundles/tnx-shared.umd.min.js.map +1 -1
- package/classes/base/data-list-base.d.ts.map +1 -1
- package/esm2015/classes/base/data-list-base.js +6 -2
- package/fesm2015/tnx-shared.js +5 -1
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
|
@@ -11550,7 +11550,7 @@
|
|
|
11550
11550
|
arrPromiseDontNeedWait = [];
|
|
11551
11551
|
arrSchemaDontNeedWait = [];
|
|
11552
11552
|
_loop_1 = function (schema) {
|
|
11553
|
-
var field, arrValue_1, promise, result, funcGetLabel_1;
|
|
11553
|
+
var field, arrValue_1, promise, filters, result, funcGetLabel_1;
|
|
11554
11554
|
return __generator(this, function (_a) {
|
|
11555
11555
|
switch (_a.label) {
|
|
11556
11556
|
case 0:
|
|
@@ -11585,7 +11585,11 @@
|
|
|
11585
11585
|
promise = schema.baseService.getDataDropdown(schema.groupCode, arrValue_1, this_1.createDropdownOptions(schema));
|
|
11586
11586
|
}
|
|
11587
11587
|
else {
|
|
11588
|
-
|
|
11588
|
+
filters = [this_1.newFilter(schema.valueField, exports.Operator.in, arrValue_1)];
|
|
11589
|
+
if (schema.modifyFilter) {
|
|
11590
|
+
schema.modifyFilter(filters);
|
|
11591
|
+
}
|
|
11592
|
+
promise = schema.baseService.getDataDropdownByFilter(filters, this_1.createDropdownOptions(schema));
|
|
11589
11593
|
}
|
|
11590
11594
|
if (!(schema.order != null)) return [3 /*break*/, 2];
|
|
11591
11595
|
return [4 /*yield*/, promise];
|