ps-toolkit-ui 0.2.72 → 0.2.75
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 +3 -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/components/table/row/table.row.component.js +4 -3
- package/fesm2015/ps-toolkit-ui.js +3 -2
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -2631,6 +2631,7 @@
|
|
|
2631
2631
|
var e_1, _a;
|
|
2632
2632
|
var _this = this;
|
|
2633
2633
|
var inps = [];
|
|
2634
|
+
console.log(this.row.Options.filter(function (x) { return x.Type === exports.PermissionTypeEnum.Option && x.InputAction === exports.PermissionInputActionEnum.Input; }));
|
|
2634
2635
|
var _loop_1 = function (option) {
|
|
2635
2636
|
var inp = new InputClass(this_1.table.environment, this_1.table.l, option.Name, option.Icon, exports.InputType.Check, 'h-25 m-h-5 d-ib va-m f-u');
|
|
2636
2637
|
inp.row = this_1.row;
|
|
@@ -2647,7 +2648,7 @@
|
|
|
2647
2648
|
};
|
|
2648
2649
|
var this_1 = this;
|
|
2649
2650
|
try {
|
|
2650
|
-
for (var _b = __values(this.row.Options.filter(function (x) { return x.Type === exports.PermissionTypeEnum.Option &&
|
|
2651
|
+
for (var _b = __values(this.row.Options.filter(function (x) { return x.Type === exports.PermissionTypeEnum.Option && x.InputAction === exports.PermissionInputActionEnum.Input; })), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
2651
2652
|
var option = _c.value;
|
|
2652
2653
|
_loop_1(option);
|
|
2653
2654
|
}
|
|
@@ -2825,7 +2826,7 @@
|
|
|
2825
2826
|
};
|
|
2826
2827
|
var this_2 = this;
|
|
2827
2828
|
try {
|
|
2828
|
-
for (var _b = __values(this.row.Options.filter(function (x) { return x.Type === exports.PermissionTypeEnum.Option &&
|
|
2829
|
+
for (var _b = __values(this.row.Options.filter(function (x) { return x.Type === exports.PermissionTypeEnum.Option && x.InputAction !== exports.PermissionInputActionEnum.Input; })), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
2829
2830
|
var option = _c.value;
|
|
2830
2831
|
_loop_2(option);
|
|
2831
2832
|
}
|