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
package/package.json
CHANGED
|
@@ -444,6 +444,14 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
444
444
|
},
|
|
445
445
|
main: {
|
|
446
446
|
},
|
|
447
|
+
style: {
|
|
448
|
+
"& .MuiPaper-root":{
|
|
449
|
+
width: '30%',
|
|
450
|
+
},
|
|
451
|
+
"& .MuiTypography-root":{
|
|
452
|
+
padding: 0
|
|
453
|
+
},
|
|
454
|
+
}
|
|
447
455
|
},
|
|
448
456
|
elements:
|
|
449
457
|
[
|
|
@@ -454,7 +462,7 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
454
462
|
widget: "Box",
|
|
455
463
|
},
|
|
456
464
|
config: {
|
|
457
|
-
layout:
|
|
465
|
+
layout: 12,
|
|
458
466
|
main: {
|
|
459
467
|
heading: "Are you sure you want to delete ?",
|
|
460
468
|
},
|
|
@@ -529,6 +537,15 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
529
537
|
},
|
|
530
538
|
main: {
|
|
531
539
|
},
|
|
540
|
+
|
|
541
|
+
style: {
|
|
542
|
+
"& .MuiPaper-root":{
|
|
543
|
+
width: '30%',
|
|
544
|
+
},
|
|
545
|
+
"& .MuiTypography-root":{
|
|
546
|
+
padding: 0
|
|
547
|
+
},
|
|
548
|
+
}
|
|
532
549
|
},
|
|
533
550
|
elements:
|
|
534
551
|
[
|
|
@@ -232,6 +232,17 @@ export const EventUiSchema: any = (theme) => {
|
|
|
232
232
|
},
|
|
233
233
|
main: {
|
|
234
234
|
},
|
|
235
|
+
style: {
|
|
236
|
+
"& .MuiPaper-root":{
|
|
237
|
+
width: '30%',
|
|
238
|
+
},
|
|
239
|
+
"& .MuiTypography-root":{
|
|
240
|
+
padding: 0
|
|
241
|
+
},
|
|
242
|
+
wrapperStyle: {
|
|
243
|
+
width: { xs: "100%", sm: "100%", md: "98%" },
|
|
244
|
+
}
|
|
245
|
+
}
|
|
235
246
|
},
|
|
236
247
|
elements:
|
|
237
248
|
[
|
|
@@ -91,7 +91,6 @@ export const navigateHandler = (store, isSubmitted, pageName?: string | boolean)
|
|
|
91
91
|
|
|
92
92
|
export function okHandler(store) {
|
|
93
93
|
const path = store.searchParams?.get("path");
|
|
94
|
-
console.log(store.ctx.core.errors)
|
|
95
94
|
if (_.isEmpty(store.ctx.core.errors)) {
|
|
96
95
|
saveFormdataInLocalStorage(store.ctx.core.data, path)
|
|
97
96
|
store.navigate(-1)
|