ps-toolkit-ui 0.0.175 → 0.0.179
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 +5 -1
- 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 +6 -1
- package/esm2015/lib/components/table/row/table.row.component.js +1 -2
- package/fesm2015/ps-toolkit-ui.js +5 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -2741,7 +2741,6 @@
|
|
|
2741
2741
|
}
|
|
2742
2742
|
else if (option.InputAction === exports.PermissionInputActionEnum.OnClick) {
|
|
2743
2743
|
opt.onClick = function (btn) {
|
|
2744
|
-
console.log(btn, 11111111);
|
|
2745
2744
|
_this.table.optionsActions.find(function (x) { return x.name === option.Action; }).onClick(btn);
|
|
2746
2745
|
};
|
|
2747
2746
|
}
|
|
@@ -7278,6 +7277,11 @@
|
|
|
7278
7277
|
accessInp.url = '/Report' + p.getUrl();
|
|
7279
7278
|
accessInp.urlNewTab = true;
|
|
7280
7279
|
}
|
|
7280
|
+
else if (access.InputAction === exports.PermissionInputActionEnum.OnClick) {
|
|
7281
|
+
accessInp.onClick = function (btn) {
|
|
7282
|
+
_this.optionsActions.find(function (x) { return x.name === access.Action; }).onClick(btn);
|
|
7283
|
+
};
|
|
7284
|
+
}
|
|
7281
7285
|
this_1.buttons.push(accessInp);
|
|
7282
7286
|
};
|
|
7283
7287
|
var this_1 = this;
|