impaktapps-ui-builder 0.0.970 → 0.0.971
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 +11 -4
- 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/elements/UiSchema/Component/uiSchema.ts +3 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +3 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +3 -2
- package/src/impaktapps-ui-builder/builder/services/component.ts +1 -1
- package/src/impaktapps-ui-builder/builder/services/event.ts +1 -0
|
@@ -441,7 +441,9 @@ const PageMasterUiSchema = (theme) => {
|
|
|
441
441
|
},
|
|
442
442
|
style: {
|
|
443
443
|
color: "#535557",
|
|
444
|
-
marginLeft: "-30px"
|
|
444
|
+
marginLeft: "-30px",
|
|
445
|
+
fontSize: "12px",
|
|
446
|
+
marginTop: "5px"
|
|
445
447
|
}
|
|
446
448
|
}
|
|
447
449
|
},
|
|
@@ -6758,7 +6760,9 @@ const componentBasicUiSchema = (theme) => {
|
|
|
6758
6760
|
},
|
|
6759
6761
|
style: {
|
|
6760
6762
|
color: "#535557",
|
|
6761
|
-
marginLeft: "-10px"
|
|
6763
|
+
marginLeft: "-10px",
|
|
6764
|
+
fontSize: "12px",
|
|
6765
|
+
marginTop: "5px"
|
|
6762
6766
|
}
|
|
6763
6767
|
}
|
|
6764
6768
|
},
|
|
@@ -8498,7 +8502,7 @@ var Component = (store2, dynamicData2, submitHandler, service2) => {
|
|
|
8498
8502
|
},
|
|
8499
8503
|
ElementPathSetter: function(uiSchema, copiedFormData) {
|
|
8500
8504
|
const formData = copiedFormData || JSON.parse(sessionStorage.getItem("copiedConfig"));
|
|
8501
|
-
const elementHeading = formData.name ? `Copied
|
|
8505
|
+
const elementHeading = formData.name ? `Copied Path: ${formData.pageName}` : `Copied Path: ${formData.pageName}`;
|
|
8502
8506
|
uiSchema.elements[2].elements[1].config.main.heading = elementHeading;
|
|
8503
8507
|
}
|
|
8504
8508
|
};
|
|
@@ -8938,7 +8942,9 @@ const EventUiSchema = (theme) => {
|
|
|
8938
8942
|
},
|
|
8939
8943
|
style: {
|
|
8940
8944
|
color: "#535557",
|
|
8941
|
-
marginLeft: "-10px"
|
|
8945
|
+
marginLeft: "-10px",
|
|
8946
|
+
fontSize: "12px",
|
|
8947
|
+
marginTop: "5px"
|
|
8942
8948
|
}
|
|
8943
8949
|
}
|
|
8944
8950
|
},
|
|
@@ -9488,6 +9494,7 @@ var event = (store2, dynamicData2, submitHandler, service2, functionsName) => {
|
|
|
9488
9494
|
}
|
|
9489
9495
|
if (sessionStorage.getItem("copiedConfig")) {
|
|
9490
9496
|
Component(store22, dynamicData2, submitHandler, service2).ElementPathSetter(uiSchema);
|
|
9497
|
+
schema2.properties.RemoveItemButton.disabled = false;
|
|
9491
9498
|
}
|
|
9492
9499
|
store22.setSchema(schema2);
|
|
9493
9500
|
store22.setUiSchema(uiSchema);
|