ps-toolkit-ui 1.16.26 → 1.16.27
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 +14 -5
- 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 +13 -5
- package/esm2015/lib/components/form/select/form.select.component.js +3 -2
- package/fesm2015/ps-toolkit-ui.js +14 -5
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -6210,7 +6210,8 @@
|
|
|
6210
6210
|
}
|
|
6211
6211
|
};
|
|
6212
6212
|
FormSelectComponent.prototype.clearRel = function (i, v) {
|
|
6213
|
-
|
|
6213
|
+
console.log(i.rel, 'i.reli.reli.reli.rel');
|
|
6214
|
+
while (i.rel != null) {
|
|
6214
6215
|
i.rel.value = null;
|
|
6215
6216
|
i.rel.search = '';
|
|
6216
6217
|
i.rel.options = [];
|
|
@@ -9375,10 +9376,18 @@
|
|
|
9375
9376
|
dAccess.AccessType = exports.PermissionAccessTypeEnum.Delete;
|
|
9376
9377
|
dAccess.Icon = 'fad fa-trash';
|
|
9377
9378
|
dAccess.Name = 'Delete';
|
|
9378
|
-
_this.
|
|
9379
|
-
|
|
9380
|
-
|
|
9381
|
-
|
|
9379
|
+
if (_this.sortType === 'DESC') {
|
|
9380
|
+
_this.rows.push({
|
|
9381
|
+
Data: data,
|
|
9382
|
+
Options: [uAccess, dAccess]
|
|
9383
|
+
});
|
|
9384
|
+
}
|
|
9385
|
+
else {
|
|
9386
|
+
_this.rows.unshift({
|
|
9387
|
+
Data: data,
|
|
9388
|
+
Options: [uAccess, dAccess]
|
|
9389
|
+
});
|
|
9390
|
+
}
|
|
9382
9391
|
}
|
|
9383
9392
|
if (changeRows) {
|
|
9384
9393
|
changeRows.emit(data);
|