ps-toolkit-ui 1.20.56 → 1.20.57
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 -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/enum.class.js +5 -5
- package/esm2015/lib/components/table/table.component.js +2 -2
- package/fesm2015/ps-toolkit-ui.js +5 -5
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/lib/classes/enum.class.d.ts +4 -4
- package/package.json +1 -1
- package/ps-toolkit-ui.metadata.json +1 -1
|
@@ -1022,10 +1022,10 @@
|
|
|
1022
1022
|
TableCollType[TableCollType["Year"] = 19] = "Year";
|
|
1023
1023
|
})(exports.TableCollType || (exports.TableCollType = {}));
|
|
1024
1024
|
(function (TableExportType) {
|
|
1025
|
-
TableExportType[
|
|
1026
|
-
TableExportType[
|
|
1027
|
-
TableExportType[
|
|
1028
|
-
TableExportType[
|
|
1025
|
+
TableExportType["List"] = "list";
|
|
1026
|
+
TableExportType["Print"] = "print";
|
|
1027
|
+
TableExportType["Excel"] = "excel";
|
|
1028
|
+
TableExportType["Pdf"] = "pdf";
|
|
1029
1029
|
})(exports.TableExportType || (exports.TableExportType = {}));
|
|
1030
1030
|
(function (UserType) {
|
|
1031
1031
|
UserType[UserType["All"] = 0] = "All";
|
|
@@ -4011,7 +4011,7 @@
|
|
|
4011
4011
|
};
|
|
4012
4012
|
});
|
|
4013
4013
|
new RequestClass(this.table.environment, this.table.l).send(url, exports.Method.Post, data, this.print, function (result) {
|
|
4014
|
-
window.open(_this.table.environment.url + '/report/
|
|
4014
|
+
window.open(_this.table.environment.url + '/report/{}/{}'.replace('{}', type).replace('{}', result) + result, '_blank');
|
|
4015
4015
|
}, function () { });
|
|
4016
4016
|
};
|
|
4017
4017
|
TableComponent.prototype.allChecked = function () {
|