impaktapps-ui-builder 0.0.101-alpha.84 → 0.0.101-alpha.85
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 +58 -1
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +7 -7
- 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 +57 -56
package/package.json
CHANGED
|
@@ -161,6 +161,7 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
161
161
|
icon: "TablePaste",
|
|
162
162
|
iconLabel: "Paste",
|
|
163
163
|
styleDefault: true,
|
|
164
|
+
title: ""
|
|
164
165
|
},
|
|
165
166
|
style: {
|
|
166
167
|
mt: "6px",
|
|
@@ -436,64 +437,64 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
436
437
|
|
|
437
438
|
],
|
|
438
439
|
},
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
440
|
+
{
|
|
441
|
+
type: "HorizontalLayout",
|
|
442
|
+
config: {
|
|
443
|
+
layout:{xs:12,sm: 9}
|
|
444
|
+
},
|
|
445
|
+
elements: [
|
|
446
|
+
{
|
|
447
|
+
type: "Control",
|
|
448
|
+
scope: "#/properties/RemoveItemButton",
|
|
449
|
+
options: {
|
|
450
|
+
widget: "IconButton",
|
|
451
|
+
},
|
|
452
|
+
config: {
|
|
453
|
+
layout: { xs: 1, sm: 1 },
|
|
454
|
+
main: {
|
|
455
|
+
onClick: "RemoveItemButton",
|
|
456
|
+
size: "large",
|
|
457
|
+
icon: "RejectIcon",
|
|
458
|
+
styleDefault: true,
|
|
459
|
+
},
|
|
460
|
+
style:{
|
|
461
|
+
marginLeft: "-5px"
|
|
462
|
+
}
|
|
463
|
+
},
|
|
464
|
+
},
|
|
464
465
|
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
466
|
+
{
|
|
467
|
+
type: "Control",
|
|
468
|
+
scope: "#/properties/copiedElementDetails",
|
|
468
469
|
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
470
|
+
options: {
|
|
471
|
+
widget: "Box",
|
|
472
|
+
},
|
|
473
|
+
config: {
|
|
474
|
+
layout: { xs: 6, sm: 6 },
|
|
475
|
+
main: {
|
|
476
|
+
heading: "No element copied",
|
|
477
|
+
},
|
|
478
|
+
style: {
|
|
479
|
+
color: "#535557",
|
|
480
|
+
marginLeft: "-30px",
|
|
481
|
+
fontSize: "12px",
|
|
482
|
+
marginTop: "4px"
|
|
483
|
+
},
|
|
484
|
+
},
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
type: "Control",
|
|
488
|
+
scope: "#/properties/EmptyBox",
|
|
489
|
+
options: {
|
|
490
|
+
widget: "EmptyBox",
|
|
491
|
+
},
|
|
492
|
+
config: {
|
|
493
|
+
layout: { xs: 1, sm: 5 },
|
|
494
|
+
},
|
|
495
|
+
},
|
|
496
|
+
]
|
|
497
|
+
},
|
|
497
498
|
{
|
|
498
499
|
scope: "#/properties/Remarks Container",
|
|
499
500
|
type: "WrapperLayout",
|