impaktapps-ui-builder 0.0.101-alpha.3 → 0.0.101-alpha.4
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 +42 -23
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +44 -25
|
@@ -116,7 +116,6 @@ const PageMasterUiSchema = (theme) => {
|
|
|
116
116
|
tabLabels: ["Page Components", "Page Events"]
|
|
117
117
|
},
|
|
118
118
|
style: {
|
|
119
|
-
marginTop: "-16px",
|
|
120
119
|
TabPanelStyle: {
|
|
121
120
|
padding: 0
|
|
122
121
|
}
|
|
@@ -129,6 +128,9 @@ const PageMasterUiSchema = (theme) => {
|
|
|
129
128
|
"& .MuiTabs-indicator": {
|
|
130
129
|
bottom: "6px"
|
|
131
130
|
}
|
|
131
|
+
},
|
|
132
|
+
TabContainerStyle: {
|
|
133
|
+
marginTop: "-16px"
|
|
132
134
|
}
|
|
133
135
|
},
|
|
134
136
|
elements: [
|
|
@@ -448,32 +450,49 @@ const PageMasterUiSchema = (theme) => {
|
|
|
448
450
|
]
|
|
449
451
|
},
|
|
450
452
|
{
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
options: {
|
|
454
|
-
widget: "Button"
|
|
455
|
-
},
|
|
453
|
+
scope: "#/properties/Remarks Container",
|
|
454
|
+
type: "WrapperLayout",
|
|
456
455
|
config: {
|
|
457
|
-
layout:
|
|
456
|
+
layout: 12,
|
|
458
457
|
main: {
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
458
|
+
divider: false,
|
|
459
|
+
rowSpacing: 0,
|
|
460
|
+
gap: 0
|
|
461
|
+
},
|
|
462
|
+
componentsBoxStyle: {
|
|
463
|
+
padding: "8px 8px 8px 24px"
|
|
465
464
|
}
|
|
466
|
-
}
|
|
467
|
-
},
|
|
468
|
-
{
|
|
469
|
-
type: "Control",
|
|
470
|
-
scope: "#/properties/EmptyBox",
|
|
471
|
-
config: {
|
|
472
|
-
layout: { xs: 8, sm: 9.5, md: 10, lg: 10.5 }
|
|
473
465
|
},
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
466
|
+
elements: [
|
|
467
|
+
{
|
|
468
|
+
type: "Control",
|
|
469
|
+
scope: "#/properties/btn",
|
|
470
|
+
options: {
|
|
471
|
+
widget: "Button"
|
|
472
|
+
},
|
|
473
|
+
config: {
|
|
474
|
+
layout: { xs: 4, sm: 2.5, md: 2, lg: 1.5 },
|
|
475
|
+
main: {
|
|
476
|
+
name: "Save",
|
|
477
|
+
startIcon: "ApproveIcon",
|
|
478
|
+
variant: "contained",
|
|
479
|
+
type: "text",
|
|
480
|
+
onClick: "saveHandler",
|
|
481
|
+
size: "medium"
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
type: "Control",
|
|
487
|
+
scope: "#/properties/EmptyBox",
|
|
488
|
+
config: {
|
|
489
|
+
layout: { xs: 8, sm: 9.5, md: 10, lg: 10.5 }
|
|
490
|
+
},
|
|
491
|
+
options: {
|
|
492
|
+
widget: "EmptyBox"
|
|
493
|
+
}
|
|
494
|
+
}
|
|
495
|
+
]
|
|
477
496
|
},
|
|
478
497
|
{
|
|
479
498
|
type: "Control",
|