impaktapps-ui-builder 0.0.344 → 0.0.346
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 +3 -3
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/services/component.ts +1 -1
- package/src/impaktapps-ui-builder/builder/services/event.ts +1 -1
- package/src/impaktapps-ui-builder/builder/services/pageMaster.ts +1 -1
|
@@ -7335,7 +7335,7 @@ var Component = (store2, dynamicData2, submitHandler, service2) => {
|
|
|
7335
7335
|
const id = (_a = store2.searchParams) == null ? void 0 : _a.get("id");
|
|
7336
7336
|
const path = (_b = store2.searchParams) == null ? void 0 : _b.get("path");
|
|
7337
7337
|
saveFormdataInLocalStorage(store2.ctx.core.data, path);
|
|
7338
|
-
const config = localStorage.getItem("pageFormdata");
|
|
7338
|
+
const config = JSON.parse(localStorage.getItem("pageFormdata"));
|
|
7339
7339
|
const isSubmitted = await saveHandler(store2, service2, submitHandler, config);
|
|
7340
7340
|
if (isSubmitted) {
|
|
7341
7341
|
localStorage.removeItem("pageFormdata");
|
|
@@ -7484,7 +7484,7 @@ var pageMaster = (funcParams) => {
|
|
|
7484
7484
|
},
|
|
7485
7485
|
savePageHandler: async () => {
|
|
7486
7486
|
saveFormdataInLocalStorage(store2.ctx.core.data);
|
|
7487
|
-
const config2 = localStorage.getItem("pageFormdata");
|
|
7487
|
+
const config2 = JSON.parse(localStorage.getItem("pageFormdata"));
|
|
7488
7488
|
const isSubmitted = await saveHandler(store2, service2, submitHandler, config2);
|
|
7489
7489
|
if (isSubmitted) {
|
|
7490
7490
|
localStorage.removeItem("pageFormdata");
|
|
@@ -8139,7 +8139,7 @@ var event = (store2, dynamicData2, submitHandler, service2) => {
|
|
|
8139
8139
|
const id = (_a = store2.searchParams) == null ? void 0 : _a.get("id");
|
|
8140
8140
|
const path = (_b = store2.searchParams) == null ? void 0 : _b.get("path");
|
|
8141
8141
|
saveFormdataInLocalStorage(store2.ctx.core.data, path);
|
|
8142
|
-
const config = localStorage.getItem("pageFormdata");
|
|
8142
|
+
const config = JSON.parse(localStorage.getItem("pageFormdata"));
|
|
8143
8143
|
const isSubmitted = await saveHandler(store2, service2, submitHandler, config);
|
|
8144
8144
|
if (isSubmitted) {
|
|
8145
8145
|
localStorage.removeItem("pageFormdata");
|