ps-toolkit-ui 1.16.15 → 1.16.17
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 -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/components/table/row/table.row.component.js +2 -1
- package/esm2015/lib/components/table/table.component.js +2 -2
- package/fesm2015/ps-toolkit-ui.js +2 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -3453,6 +3453,7 @@
|
|
|
3453
3453
|
else {
|
|
3454
3454
|
_this.confirmShow.emit({
|
|
3455
3455
|
action: option.Action,
|
|
3456
|
+
data: _this.table.hasChildren ? { Level: _this.level } : null,
|
|
3456
3457
|
url: _this.table.getOptionUrl(option.Url, _this.table.permissions.RelatedId, _this.row.Data.Id),
|
|
3457
3458
|
accept: function () {
|
|
3458
3459
|
if (_this.table.hasChildren && _this.table.childrenAutoLoad && _this.row.Data.ParentId != null) {
|
|
@@ -3991,7 +3992,7 @@
|
|
|
3991
3992
|
return this.changeRows.emit(e);
|
|
3992
3993
|
};
|
|
3993
3994
|
TableComponent.prototype.onConfirmShow = function (e) {
|
|
3994
|
-
this.confirm.show(this.table.l(e.action + 'Confirm'), e.url,
|
|
3995
|
+
this.confirm.show(this.table.l(e.action + 'Confirm'), e.url, e.data, e.accept);
|
|
3995
3996
|
};
|
|
3996
3997
|
TableComponent.prototype.changeSort = function (e, s) {
|
|
3997
3998
|
if ($__namespace(e.target).closest('.header-search').hasClass('header-search')) {
|