impaktapps-ui-builder 0.0.409-q → 0.0.409-r
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 +2 -2
- 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/pageMaster.ts +1 -1
- package/src/impaktapps-ui-builder/runtime/services/service.ts +1 -1
|
@@ -7689,7 +7689,7 @@ var pageMaster = (funcParams) => {
|
|
|
7689
7689
|
getFormdata: async function() {
|
|
7690
7690
|
var _a;
|
|
7691
7691
|
(_a = store2.searchParams) == null ? void 0 : _a.get("id");
|
|
7692
|
-
|
|
7692
|
+
const config = await funcParams.pageConfigProvider();
|
|
7693
7693
|
const formData = getFormdataFromLocalStorage();
|
|
7694
7694
|
if (formData) {
|
|
7695
7695
|
return formData;
|
|
@@ -8760,7 +8760,7 @@ var service = (funcParams) => {
|
|
|
8760
8760
|
if (pageBasicDetailString) {
|
|
8761
8761
|
pageData = JSON.parse(pageBasicDetailString);
|
|
8762
8762
|
} else {
|
|
8763
|
-
pageData = funcParams.pageDataProvider();
|
|
8763
|
+
pageData = await funcParams.pageDataProvider();
|
|
8764
8764
|
localStorage.setItem("pagemasterMetaData", JSON.stringify({
|
|
8765
8765
|
schema: pageData == null ? void 0 : pageData.schema,
|
|
8766
8766
|
uiSchema: pageData == null ? void 0 : pageData.uiSchema,
|