impaktapps-ui-builder 0.0.412-mtreemap.31 → 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 +40 -6
- 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 -0
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +18 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +11 -0
- package/src/impaktapps-ui-builder/builder/services/utils.ts +0 -1
|
@@ -355,7 +355,15 @@ const PageMasterUiSchema = (theme) => {
|
|
|
355
355
|
md: 6,
|
|
356
356
|
lg: 6
|
|
357
357
|
},
|
|
358
|
-
main: {}
|
|
358
|
+
main: {},
|
|
359
|
+
style: {
|
|
360
|
+
"& .MuiPaper-root": {
|
|
361
|
+
width: "30%"
|
|
362
|
+
},
|
|
363
|
+
"& .MuiTypography-root": {
|
|
364
|
+
padding: 0
|
|
365
|
+
}
|
|
366
|
+
}
|
|
359
367
|
},
|
|
360
368
|
elements: [
|
|
361
369
|
{
|
|
@@ -365,7 +373,7 @@ const PageMasterUiSchema = (theme) => {
|
|
|
365
373
|
widget: "Box"
|
|
366
374
|
},
|
|
367
375
|
config: {
|
|
368
|
-
layout:
|
|
376
|
+
layout: 12,
|
|
369
377
|
main: {
|
|
370
378
|
heading: "Are you sure you want to delete ?"
|
|
371
379
|
},
|
|
@@ -438,7 +446,15 @@ const PageMasterUiSchema = (theme) => {
|
|
|
438
446
|
md: 6,
|
|
439
447
|
lg: 6
|
|
440
448
|
},
|
|
441
|
-
main: {}
|
|
449
|
+
main: {},
|
|
450
|
+
style: {
|
|
451
|
+
"& .MuiPaper-root": {
|
|
452
|
+
width: "30%"
|
|
453
|
+
},
|
|
454
|
+
"& .MuiTypography-root": {
|
|
455
|
+
padding: 0
|
|
456
|
+
}
|
|
457
|
+
}
|
|
442
458
|
},
|
|
443
459
|
elements: [
|
|
444
460
|
{
|
|
@@ -6613,7 +6629,15 @@ const componentBasicUiSchema = (theme) => {
|
|
|
6613
6629
|
md: 12,
|
|
6614
6630
|
lg: 12
|
|
6615
6631
|
},
|
|
6616
|
-
main: {}
|
|
6632
|
+
main: {},
|
|
6633
|
+
style: {
|
|
6634
|
+
"& .MuiPaper-root": {
|
|
6635
|
+
width: "30%"
|
|
6636
|
+
},
|
|
6637
|
+
"& .MuiTypography-root": {
|
|
6638
|
+
padding: 0
|
|
6639
|
+
}
|
|
6640
|
+
}
|
|
6617
6641
|
},
|
|
6618
6642
|
elements: [
|
|
6619
6643
|
{
|
|
@@ -7842,7 +7866,6 @@ const navigateHandler = (store2, isSubmitted, pageName) => {
|
|
|
7842
7866
|
function okHandler(store2) {
|
|
7843
7867
|
var _a;
|
|
7844
7868
|
const path = (_a = store2.searchParams) == null ? void 0 : _a.get("path");
|
|
7845
|
-
console.log(store2.ctx.core.errors);
|
|
7846
7869
|
if (_.isEmpty(store2.ctx.core.errors)) {
|
|
7847
7870
|
saveFormdataInLocalStorage(store2.ctx.core.data, path);
|
|
7848
7871
|
store2.navigate(-1);
|
|
@@ -8417,7 +8440,18 @@ const EventUiSchema = (theme) => {
|
|
|
8417
8440
|
md: 6,
|
|
8418
8441
|
lg: 6
|
|
8419
8442
|
},
|
|
8420
|
-
main: {}
|
|
8443
|
+
main: {},
|
|
8444
|
+
style: {
|
|
8445
|
+
"& .MuiPaper-root": {
|
|
8446
|
+
width: "30%"
|
|
8447
|
+
},
|
|
8448
|
+
"& .MuiTypography-root": {
|
|
8449
|
+
padding: 0
|
|
8450
|
+
},
|
|
8451
|
+
wrapperStyle: {
|
|
8452
|
+
width: { xs: "100%", sm: "100%", md: "98%" }
|
|
8453
|
+
}
|
|
8454
|
+
}
|
|
8421
8455
|
},
|
|
8422
8456
|
elements: [
|
|
8423
8457
|
{
|