ps-toolkit-ui 1.9.92 → 1.9.93
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/ps-toolkit-ui.umd.js +2 -2
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/classes/table.class.js +3 -1
- package/esm2015/lib/components/table/table.component.js +1 -3
- package/fesm2015/ps-toolkit-ui.js +2 -2
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/lib/components/table/table.component.d.ts +0 -2
- package/package.json +1 -1
- package/ps-toolkit-ui.metadata.json +1 -1
|
@@ -3212,8 +3212,6 @@
|
|
|
3212
3212
|
TableComponent.prototype.ngOnInit = function () {
|
|
3213
3213
|
var e_1, _a;
|
|
3214
3214
|
var _this = this;
|
|
3215
|
-
this.loadIcon = new InputClass(this.table.environment, null, 'LoadIcon');
|
|
3216
|
-
this.sizeIcon = new InputClass(this.table.environment, null, 'SizeIcon');
|
|
3217
3215
|
if (this.table.hasChildren) {
|
|
3218
3216
|
this.table.cols.forEach(function (x) { return x.sort = false; });
|
|
3219
3217
|
}
|
|
@@ -8115,6 +8113,7 @@
|
|
|
8115
8113
|
for (var _c = __values(this.cols.filter(function (x) { return x.withSearch && x.search != null && x.search.data() != null && x.search.data() !== ''; })), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
8116
8114
|
var c = _d.value;
|
|
8117
8115
|
var vl = c.search.data();
|
|
8116
|
+
console.log(c.name, vl);
|
|
8118
8117
|
if (typeof vl === 'object' && !(vl instanceof Array)) {
|
|
8119
8118
|
try {
|
|
8120
8119
|
for (var _e = (e_2 = void 0, __values(Object.entries(vl))), _f = _e.next(); !_f.done; _f = _e.next()) {
|
|
@@ -8142,6 +8141,7 @@
|
|
|
8142
8141
|
}
|
|
8143
8142
|
finally { if (e_1) throw e_1.error; }
|
|
8144
8143
|
}
|
|
8144
|
+
console.log(d);
|
|
8145
8145
|
return this.searchForm ? this.searchForm.data(d) : d;
|
|
8146
8146
|
};
|
|
8147
8147
|
TableClass.prototype.getUrl = function (url) {
|