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
package/package.json
CHANGED
|
@@ -248,6 +248,14 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
248
248
|
},
|
|
249
249
|
main: {
|
|
250
250
|
},
|
|
251
|
+
style: {
|
|
252
|
+
"& .MuiPaper-root":{
|
|
253
|
+
width: '30%',
|
|
254
|
+
},
|
|
255
|
+
"& .MuiTypography-root":{
|
|
256
|
+
padding: 0
|
|
257
|
+
},
|
|
258
|
+
}
|
|
251
259
|
},
|
|
252
260
|
elements:
|
|
253
261
|
[
|
|
@@ -340,9 +348,6 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
340
348
|
"& .MuiTypography-root":{
|
|
341
349
|
padding: 0
|
|
342
350
|
},
|
|
343
|
-
wrapperStyle: {
|
|
344
|
-
width: { xs: "100%", sm: "100%", md: "98%" },
|
|
345
|
-
}
|
|
346
351
|
}
|
|
347
352
|
},
|
|
348
353
|
elements:
|
|
@@ -451,9 +451,6 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
451
451
|
"& .MuiTypography-root":{
|
|
452
452
|
padding: 0
|
|
453
453
|
},
|
|
454
|
-
wrapperStyle: {
|
|
455
|
-
width: { xs: "100%", sm: "100%", md: "98%" },
|
|
456
|
-
}
|
|
457
454
|
}
|
|
458
455
|
},
|
|
459
456
|
elements:
|
|
@@ -465,7 +462,7 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
465
462
|
widget: "Box",
|
|
466
463
|
},
|
|
467
464
|
config: {
|
|
468
|
-
layout:
|
|
465
|
+
layout: 12,
|
|
469
466
|
main: {
|
|
470
467
|
heading: "Are you sure you want to delete ?",
|
|
471
468
|
},
|
|
@@ -540,6 +537,15 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
540
537
|
},
|
|
541
538
|
main: {
|
|
542
539
|
},
|
|
540
|
+
|
|
541
|
+
style: {
|
|
542
|
+
"& .MuiPaper-root":{
|
|
543
|
+
width: '30%',
|
|
544
|
+
},
|
|
545
|
+
"& .MuiTypography-root":{
|
|
546
|
+
padding: 0
|
|
547
|
+
},
|
|
548
|
+
}
|
|
543
549
|
},
|
|
544
550
|
elements:
|
|
545
551
|
[
|
|
@@ -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)
|