impaktapps-ui-builder 0.0.412-mtreemap.32 → 0.0.412-mtreemap.34
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 +19 -10
- 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 +8 -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
|
{
|
|
@@ -6541,7 +6546,15 @@ const componentBasicUiSchema = (theme) => {
|
|
|
6541
6546
|
md: 12,
|
|
6542
6547
|
lg: 12
|
|
6543
6548
|
},
|
|
6544
|
-
main: {}
|
|
6549
|
+
main: {},
|
|
6550
|
+
style: {
|
|
6551
|
+
"& .MuiPaper-root": {
|
|
6552
|
+
width: "30%"
|
|
6553
|
+
},
|
|
6554
|
+
"& .MuiTypography-root": {
|
|
6555
|
+
padding: 0
|
|
6556
|
+
}
|
|
6557
|
+
}
|
|
6545
6558
|
},
|
|
6546
6559
|
elements: [
|
|
6547
6560
|
{
|
|
@@ -6631,9 +6644,6 @@ const componentBasicUiSchema = (theme) => {
|
|
|
6631
6644
|
},
|
|
6632
6645
|
"& .MuiTypography-root": {
|
|
6633
6646
|
padding: 0
|
|
6634
|
-
},
|
|
6635
|
-
wrapperStyle: {
|
|
6636
|
-
width: { xs: "100%", sm: "100%", md: "98%" }
|
|
6637
6647
|
}
|
|
6638
6648
|
}
|
|
6639
6649
|
},
|
|
@@ -7864,7 +7874,6 @@ const navigateHandler = (store2, isSubmitted, pageName) => {
|
|
|
7864
7874
|
function okHandler(store2) {
|
|
7865
7875
|
var _a;
|
|
7866
7876
|
const path = (_a = store2.searchParams) == null ? void 0 : _a.get("path");
|
|
7867
|
-
console.log(store2.ctx.core.errors);
|
|
7868
7877
|
if (_.isEmpty(store2.ctx.core.errors)) {
|
|
7869
7878
|
saveFormdataInLocalStorage(store2.ctx.core.data, path);
|
|
7870
7879
|
store2.navigate(-1);
|