impaktapps-ui-builder 0.0.101-alpha.3 → 0.0.101-alpha.5
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 +153 -202
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +9 -9
- 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 +203 -291
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +44 -25
|
@@ -91,7 +91,6 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
91
91
|
tabLabels: ["Page Components", "Page Events"],
|
|
92
92
|
},
|
|
93
93
|
style: {
|
|
94
|
-
marginTop: "-16px",
|
|
95
94
|
TabPanelStyle: {
|
|
96
95
|
padding: 0,
|
|
97
96
|
}
|
|
@@ -105,6 +104,9 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
105
104
|
bottom: "6px",
|
|
106
105
|
}
|
|
107
106
|
},
|
|
107
|
+
TabContainerStyle: {
|
|
108
|
+
marginTop: "-16px",
|
|
109
|
+
}
|
|
108
110
|
},
|
|
109
111
|
elements: [
|
|
110
112
|
{
|
|
@@ -425,7 +427,7 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
425
427
|
},
|
|
426
428
|
},
|
|
427
429
|
},
|
|
428
|
-
}
|
|
430
|
+
},
|
|
429
431
|
]
|
|
430
432
|
// }]
|
|
431
433
|
},
|
|
@@ -491,33 +493,50 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
491
493
|
// ]
|
|
492
494
|
// },
|
|
493
495
|
{
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
options: {
|
|
497
|
-
widget: "Button",
|
|
498
|
-
},
|
|
499
|
-
|
|
496
|
+
scope: "#/properties/Remarks Container",
|
|
497
|
+
type: "WrapperLayout",
|
|
500
498
|
config: {
|
|
501
|
-
layout:
|
|
499
|
+
layout: 12,
|
|
502
500
|
main: {
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
type: "text",
|
|
507
|
-
onClick: "saveHandler",
|
|
508
|
-
size: "medium",
|
|
501
|
+
divider: false,
|
|
502
|
+
rowSpacing: 0,
|
|
503
|
+
gap: 0
|
|
509
504
|
},
|
|
505
|
+
componentsBoxStyle: {
|
|
506
|
+
padding: "8px 8px 8px 24px",
|
|
507
|
+
}
|
|
510
508
|
},
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
509
|
+
elements: [
|
|
510
|
+
{
|
|
511
|
+
type: "Control",
|
|
512
|
+
scope: "#/properties/btn",
|
|
513
|
+
options: {
|
|
514
|
+
widget: "Button",
|
|
515
|
+
},
|
|
516
|
+
|
|
517
|
+
config: {
|
|
518
|
+
layout: { xs: 4, sm: 2.5, md: 2, lg: 1.5 },
|
|
519
|
+
main: {
|
|
520
|
+
name: "Save",
|
|
521
|
+
startIcon: "ApproveIcon",
|
|
522
|
+
variant: "contained",
|
|
523
|
+
type: "text",
|
|
524
|
+
onClick: "saveHandler",
|
|
525
|
+
size: "medium",
|
|
526
|
+
},
|
|
527
|
+
},
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
type: "Control",
|
|
531
|
+
scope: "#/properties/EmptyBox",
|
|
532
|
+
config: {
|
|
533
|
+
layout: { xs: 8, sm:9.5, md: 10, lg: 10.5 },
|
|
534
|
+
},
|
|
535
|
+
options: {
|
|
536
|
+
widget: "EmptyBox",
|
|
537
|
+
},
|
|
538
|
+
},
|
|
539
|
+
],
|
|
521
540
|
},
|
|
522
541
|
{
|
|
523
542
|
type: "Control",
|