impaktapps-ui-builder 0.0.412-mtreemap.31 → 0.0.412-mtreemap.32
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 +36 -3
- 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/elements/UiSchema/Component/uiSchema.ts +11 -0
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +11 -0
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +11 -0
|
@@ -355,7 +355,18 @@ 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
|
+
wrapperStyle: {
|
|
367
|
+
width: { xs: "100%", sm: "100%", md: "98%" }
|
|
368
|
+
}
|
|
369
|
+
}
|
|
359
370
|
},
|
|
360
371
|
elements: [
|
|
361
372
|
{
|
|
@@ -6613,7 +6624,18 @@ const componentBasicUiSchema = (theme) => {
|
|
|
6613
6624
|
md: 12,
|
|
6614
6625
|
lg: 12
|
|
6615
6626
|
},
|
|
6616
|
-
main: {}
|
|
6627
|
+
main: {},
|
|
6628
|
+
style: {
|
|
6629
|
+
"& .MuiPaper-root": {
|
|
6630
|
+
width: "30%"
|
|
6631
|
+
},
|
|
6632
|
+
"& .MuiTypography-root": {
|
|
6633
|
+
padding: 0
|
|
6634
|
+
},
|
|
6635
|
+
wrapperStyle: {
|
|
6636
|
+
width: { xs: "100%", sm: "100%", md: "98%" }
|
|
6637
|
+
}
|
|
6638
|
+
}
|
|
6617
6639
|
},
|
|
6618
6640
|
elements: [
|
|
6619
6641
|
{
|
|
@@ -8417,7 +8439,18 @@ const EventUiSchema = (theme) => {
|
|
|
8417
8439
|
md: 6,
|
|
8418
8440
|
lg: 6
|
|
8419
8441
|
},
|
|
8420
|
-
main: {}
|
|
8442
|
+
main: {},
|
|
8443
|
+
style: {
|
|
8444
|
+
"& .MuiPaper-root": {
|
|
8445
|
+
width: "30%"
|
|
8446
|
+
},
|
|
8447
|
+
"& .MuiTypography-root": {
|
|
8448
|
+
padding: 0
|
|
8449
|
+
},
|
|
8450
|
+
wrapperStyle: {
|
|
8451
|
+
width: { xs: "100%", sm: "100%", md: "98%" }
|
|
8452
|
+
}
|
|
8453
|
+
}
|
|
8421
8454
|
},
|
|
8422
8455
|
elements: [
|
|
8423
8456
|
{
|