impaktapps-ui-builder 0.0.412-mtreemap.32 → 0.0.412-mtreemap.33
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 +10 -9
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +2 -2
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildSchema.ts +0 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +0 -3
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +10 -4
- package/src/impaktapps-ui-builder/builder/services/utils.ts +0 -1
|
@@ -362,9 +362,6 @@ const PageMasterUiSchema = (theme) => {
|
|
|
362
362
|
},
|
|
363
363
|
"& .MuiTypography-root": {
|
|
364
364
|
padding: 0
|
|
365
|
-
},
|
|
366
|
-
wrapperStyle: {
|
|
367
|
-
width: { xs: "100%", sm: "100%", md: "98%" }
|
|
368
365
|
}
|
|
369
366
|
}
|
|
370
367
|
},
|
|
@@ -376,7 +373,7 @@ const PageMasterUiSchema = (theme) => {
|
|
|
376
373
|
widget: "Box"
|
|
377
374
|
},
|
|
378
375
|
config: {
|
|
379
|
-
layout:
|
|
376
|
+
layout: 12,
|
|
380
377
|
main: {
|
|
381
378
|
heading: "Are you sure you want to delete ?"
|
|
382
379
|
},
|
|
@@ -449,7 +446,15 @@ const PageMasterUiSchema = (theme) => {
|
|
|
449
446
|
md: 6,
|
|
450
447
|
lg: 6
|
|
451
448
|
},
|
|
452
|
-
main: {}
|
|
449
|
+
main: {},
|
|
450
|
+
style: {
|
|
451
|
+
"& .MuiPaper-root": {
|
|
452
|
+
width: "30%"
|
|
453
|
+
},
|
|
454
|
+
"& .MuiTypography-root": {
|
|
455
|
+
padding: 0
|
|
456
|
+
}
|
|
457
|
+
}
|
|
453
458
|
},
|
|
454
459
|
elements: [
|
|
455
460
|
{
|
|
@@ -6631,9 +6636,6 @@ const componentBasicUiSchema = (theme) => {
|
|
|
6631
6636
|
},
|
|
6632
6637
|
"& .MuiTypography-root": {
|
|
6633
6638
|
padding: 0
|
|
6634
|
-
},
|
|
6635
|
-
wrapperStyle: {
|
|
6636
|
-
width: { xs: "100%", sm: "100%", md: "98%" }
|
|
6637
6639
|
}
|
|
6638
6640
|
}
|
|
6639
6641
|
},
|
|
@@ -7864,7 +7866,6 @@ const navigateHandler = (store2, isSubmitted, pageName) => {
|
|
|
7864
7866
|
function okHandler(store2) {
|
|
7865
7867
|
var _a;
|
|
7866
7868
|
const path = (_a = store2.searchParams) == null ? void 0 : _a.get("path");
|
|
7867
|
-
console.log(store2.ctx.core.errors);
|
|
7868
7869
|
if (_.isEmpty(store2.ctx.core.errors)) {
|
|
7869
7870
|
saveFormdataInLocalStorage(store2.ctx.core.data, path);
|
|
7870
7871
|
store2.navigate(-1);
|