impaktapps-ui-builder 0.0.345 → 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.
@@ -7335,9 +7335,8 @@ 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");
7339
- const actualConfig = JSON.parse(config);
7340
- const isSubmitted = await saveHandler(store2, service2, submitHandler, actualConfig);
7338
+ const config = JSON.parse(localStorage.getItem("pageFormdata"));
7339
+ const isSubmitted = await saveHandler(store2, service2, submitHandler, config);
7341
7340
  if (isSubmitted) {
7342
7341
  localStorage.removeItem("pageFormdata");
7343
7342
  store2.navigate(`/PageMaster?id=${id}`);
@@ -7485,9 +7484,8 @@ var pageMaster = (funcParams) => {
7485
7484
  },
7486
7485
  savePageHandler: async () => {
7487
7486
  saveFormdataInLocalStorage(store2.ctx.core.data);
7488
- const config2 = localStorage.getItem("pageFormdata");
7489
- const actualConfig = JSON.parse(config2);
7490
- const isSubmitted = await saveHandler(store2, service2, submitHandler, actualConfig);
7487
+ const config2 = JSON.parse(localStorage.getItem("pageFormdata"));
7488
+ const isSubmitted = await saveHandler(store2, service2, submitHandler, config2);
7491
7489
  if (isSubmitted) {
7492
7490
  localStorage.removeItem("pageFormdata");
7493
7491
  store2.navigate("/PageMasterRecords");
@@ -8141,9 +8139,8 @@ var event = (store2, dynamicData2, submitHandler, service2) => {
8141
8139
  const id = (_a = store2.searchParams) == null ? void 0 : _a.get("id");
8142
8140
  const path = (_b = store2.searchParams) == null ? void 0 : _b.get("path");
8143
8141
  saveFormdataInLocalStorage(store2.ctx.core.data, path);
8144
- const config = localStorage.getItem("pageFormdata");
8145
- const actualConfig = JSON.parse(config);
8146
- const isSubmitted = await saveHandler(store2, service2, submitHandler, actualConfig);
8142
+ const config = JSON.parse(localStorage.getItem("pageFormdata"));
8143
+ const isSubmitted = await saveHandler(store2, service2, submitHandler, config);
8147
8144
  if (isSubmitted) {
8148
8145
  localStorage.removeItem("pageFormdata");
8149
8146
  store2.navigate(`/PageMaster?id=${id}`);