impaktapps-ui-builder 0.0.101-alpha.85 → 0.0.101-alpha.87
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 +2 -57
- 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 +56 -56
- package/src/impaktapps-ui-builder/builder/services/component.ts +1 -1
|
@@ -453,62 +453,6 @@ const PageMasterUiSchema = (theme) => {
|
|
|
453
453
|
}
|
|
454
454
|
]
|
|
455
455
|
},
|
|
456
|
-
{
|
|
457
|
-
type: "HorizontalLayout",
|
|
458
|
-
config: {
|
|
459
|
-
layout: { xs: 12, sm: 9 }
|
|
460
|
-
},
|
|
461
|
-
elements: [
|
|
462
|
-
{
|
|
463
|
-
type: "Control",
|
|
464
|
-
scope: "#/properties/RemoveItemButton",
|
|
465
|
-
options: {
|
|
466
|
-
widget: "IconButton"
|
|
467
|
-
},
|
|
468
|
-
config: {
|
|
469
|
-
layout: { xs: 1, sm: 1 },
|
|
470
|
-
main: {
|
|
471
|
-
onClick: "RemoveItemButton",
|
|
472
|
-
size: "large",
|
|
473
|
-
icon: "RejectIcon",
|
|
474
|
-
styleDefault: true
|
|
475
|
-
},
|
|
476
|
-
style: {
|
|
477
|
-
marginLeft: "-5px"
|
|
478
|
-
}
|
|
479
|
-
}
|
|
480
|
-
},
|
|
481
|
-
{
|
|
482
|
-
type: "Control",
|
|
483
|
-
scope: "#/properties/copiedElementDetails",
|
|
484
|
-
options: {
|
|
485
|
-
widget: "Box"
|
|
486
|
-
},
|
|
487
|
-
config: {
|
|
488
|
-
layout: { xs: 6, sm: 6 },
|
|
489
|
-
main: {
|
|
490
|
-
heading: "No element copied"
|
|
491
|
-
},
|
|
492
|
-
style: {
|
|
493
|
-
color: "#535557",
|
|
494
|
-
marginLeft: "-30px",
|
|
495
|
-
fontSize: "12px",
|
|
496
|
-
marginTop: "4px"
|
|
497
|
-
}
|
|
498
|
-
}
|
|
499
|
-
},
|
|
500
|
-
{
|
|
501
|
-
type: "Control",
|
|
502
|
-
scope: "#/properties/EmptyBox",
|
|
503
|
-
options: {
|
|
504
|
-
widget: "EmptyBox"
|
|
505
|
-
},
|
|
506
|
-
config: {
|
|
507
|
-
layout: { xs: 1, sm: 5 }
|
|
508
|
-
}
|
|
509
|
-
}
|
|
510
|
-
]
|
|
511
|
-
},
|
|
512
456
|
{
|
|
513
457
|
scope: "#/properties/Remarks Container",
|
|
514
458
|
type: "WrapperLayout",
|
|
@@ -8803,7 +8747,8 @@ var Component = (store2, dynamicData2, submitHandler, service2) => {
|
|
|
8803
8747
|
return parentPath ? `${parentPath}.events[${rowId}]` : `events[${rowId}]`;
|
|
8804
8748
|
},
|
|
8805
8749
|
ElementPathSetter: function(uiSchema, copiedFormData) {
|
|
8806
|
-
copiedFormData || JSON.parse(sessionStorage.getItem("copiedConfig"));
|
|
8750
|
+
const formData = copiedFormData || JSON.parse(sessionStorage.getItem("copiedConfig"));
|
|
8751
|
+
uiSchema.elements[1].elements[0].config.main.headerIcons.elements[1].comfig.main.title = `Copied Path: ${formData.name}`;
|
|
8807
8752
|
}
|
|
8808
8753
|
};
|
|
8809
8754
|
};
|