ps-toolkit-ui 1.11.54 → 1.11.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 +3 -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/request.class.js +2 -1
- package/esm2015/lib/classes/steps.class.js +3 -2
- package/fesm2015/ps-toolkit-ui.js +3 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/lib/classes/steps.class.d.ts +2 -1
- package/package.json +1 -1
- package/ps-toolkit-ui.metadata.json +1 -1
|
@@ -1357,6 +1357,7 @@
|
|
|
1357
1357
|
}
|
|
1358
1358
|
return;
|
|
1359
1359
|
}
|
|
1360
|
+
console.log(form.url, form.method, data);
|
|
1360
1361
|
this.getClient(form.url, form.method, data, function (res) {
|
|
1361
1362
|
var e_3, _a;
|
|
1362
1363
|
if (res.status === exports.ResultStatusEnum.Success) {
|
|
@@ -8087,10 +8088,11 @@
|
|
|
8087
8088
|
return StepsClass;
|
|
8088
8089
|
}());
|
|
8089
8090
|
var StepsItemClass = /** @class */ (function () {
|
|
8090
|
-
function StepsItemClass(name, icon, url, active) {
|
|
8091
|
+
function StepsItemClass(id, name, icon, url, active) {
|
|
8091
8092
|
if (icon === void 0) { icon = null; }
|
|
8092
8093
|
if (url === void 0) { url = null; }
|
|
8093
8094
|
if (active === void 0) { active = false; }
|
|
8095
|
+
this.id = id;
|
|
8094
8096
|
this.name = name;
|
|
8095
8097
|
this.icon = icon;
|
|
8096
8098
|
this.url = url;
|