impaktapps-ui-builder 0.0.101-alpha.71 → 0.0.101-alpha.72
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/dist/impaktapps-ui-builder.es.js +6 -6
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +5 -5
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/services/component.ts +2 -2
- package/src/impaktapps-ui-builder/builder/services/event.ts +4 -4
|
@@ -8525,7 +8525,7 @@ var Component = (store2, dynamicData2, submitHandler, service2) => {
|
|
|
8525
8525
|
const config2 = JSON.parse(sessionStorage.getItem("pageFormdata"));
|
|
8526
8526
|
const path = (_a = store2.searchParams) == null ? void 0 : _a.get("path");
|
|
8527
8527
|
const id = (_b = store2.searchParams) == null ? void 0 : _b.get("id");
|
|
8528
|
-
let pathArray = [{ label: config2.name, path: `/PageMaster?id=${id}` }];
|
|
8528
|
+
let pathArray = [{ label: config2.name, path: `/PageMaster${id ? `?id=${id}` : ""}` }];
|
|
8529
8529
|
if (path) {
|
|
8530
8530
|
const pathArrayAll = path.split(".");
|
|
8531
8531
|
const arr = [];
|
|
@@ -8540,7 +8540,7 @@ var Component = (store2, dynamicData2, submitHandler, service2) => {
|
|
|
8540
8540
|
const data = _.get(config2, e);
|
|
8541
8541
|
pathArray.push({
|
|
8542
8542
|
label: (data == null ? void 0 : data.name) || (data == null ? void 0 : data.eventType) || "NewComponent",
|
|
8543
|
-
path: `/Component?path=${e}
|
|
8543
|
+
path: `/Component?path=${e}${id ? `&id=${id}` : ""}`
|
|
8544
8544
|
});
|
|
8545
8545
|
});
|
|
8546
8546
|
}
|
|
@@ -9724,7 +9724,7 @@ var event = (store2, dynamicData2, submitHandler, service2, functionsName) => {
|
|
|
9724
9724
|
const config2 = JSON.parse(sessionStorage.getItem("pageFormdata"));
|
|
9725
9725
|
const path = (_a = store22.searchParams) == null ? void 0 : _a.get("path");
|
|
9726
9726
|
const id = (_b = store22.searchParams) == null ? void 0 : _b.get("id");
|
|
9727
|
-
let pathArray = [{ label: config2.name, path: `/PageMaster?id=${id}` }];
|
|
9727
|
+
let pathArray = [{ label: config2.name, path: `/PageMaster${id ? `?id=${id}` : ""}` }];
|
|
9728
9728
|
if (path) {
|
|
9729
9729
|
const pathArrayAll = path.split(".");
|
|
9730
9730
|
const arr = [];
|
|
@@ -9739,7 +9739,7 @@ var event = (store2, dynamicData2, submitHandler, service2, functionsName) => {
|
|
|
9739
9739
|
const data = _.get(config2, e);
|
|
9740
9740
|
pathArray.push({
|
|
9741
9741
|
label: (data == null ? void 0 : data.name) || (data == null ? void 0 : data.eventType) || "NewComponent",
|
|
9742
|
-
path: (data == null ? void 0 : data.eventType) ? `/ComponentEvents?path=${e}
|
|
9742
|
+
path: (data == null ? void 0 : data.eventType) ? `/ComponentEvents?path=${e}${id ? `&id=${id}` : ""}` : `/Component?path=${e}${id ? `&id=${id}` : ""}`
|
|
9743
9743
|
});
|
|
9744
9744
|
});
|
|
9745
9745
|
}
|
|
@@ -9761,7 +9761,7 @@ var event = (store2, dynamicData2, submitHandler, service2, functionsName) => {
|
|
|
9761
9761
|
const config2 = JSON.parse(sessionStorage.getItem("pageFormdata"));
|
|
9762
9762
|
const path = (_a = store2.searchParams) == null ? void 0 : _a.get("path");
|
|
9763
9763
|
const id = (_b = store2.searchParams) == null ? void 0 : _b.get("id");
|
|
9764
|
-
let pathArray = [{ label: config2.name, path: `/PageMaster?id=${id}` }];
|
|
9764
|
+
let pathArray = [{ label: config2.name, path: `/PageMaster${id ? `?id=${id}` : ""}` }];
|
|
9765
9765
|
if (path) {
|
|
9766
9766
|
const pathArrayAll = path.split(".");
|
|
9767
9767
|
const arr = [];
|
|
@@ -9776,7 +9776,7 @@ var event = (store2, dynamicData2, submitHandler, service2, functionsName) => {
|
|
|
9776
9776
|
const data = _.get(config2, e);
|
|
9777
9777
|
pathArray.push({
|
|
9778
9778
|
label: (data == null ? void 0 : data.name) || (data == null ? void 0 : data.eventType) || "NewComponent",
|
|
9779
|
-
path: (data == null ? void 0 : data.eventType) ? `/ComponentEvents?path=${e}
|
|
9779
|
+
path: (data == null ? void 0 : data.eventType) ? `/ComponentEvents?path=${e}${id ? `&id=${id}` : ""}` : `/Component?path=${e}${id ? `&id=${id}` : ""}`
|
|
9780
9780
|
});
|
|
9781
9781
|
});
|
|
9782
9782
|
}
|