impaktapps-ui-builder 0.0.963-copyElement.1011 → 0.0.963-copyElement.1012
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 +3 -2
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +5 -5
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/services/component.ts +1 -1
- package/src/impaktapps-ui-builder/builder/services/pageMaster.ts +3 -1
|
@@ -8447,7 +8447,7 @@ var Component = (store2, dynamicData2, submitHandler, service2) => {
|
|
|
8447
8447
|
store2.setUiSchema(uiSchema);
|
|
8448
8448
|
}
|
|
8449
8449
|
},
|
|
8450
|
-
PasteComponent: function(paramStore = store2, setPage = this.setPage) {
|
|
8450
|
+
PasteComponent: function(paramStore = store2, setPage = this.setPage.bind(this)) {
|
|
8451
8451
|
var _a;
|
|
8452
8452
|
const path = (_a = store2.searchParams) == null ? void 0 : _a.get("path");
|
|
8453
8453
|
dynamicData2.path.split(".")[1];
|
|
@@ -8601,7 +8601,8 @@ var pageMaster = (funcParams) => {
|
|
|
8601
8601
|
Component(store2, dynamicData2, submitHandler, service2).CopyComponent(store2);
|
|
8602
8602
|
},
|
|
8603
8603
|
PasteComponent: function() {
|
|
8604
|
-
Component(store2, dynamicData2, submitHandler, service2)
|
|
8604
|
+
const component = Component(store2, dynamicData2, submitHandler, service2);
|
|
8605
|
+
component.PasteComponent(store2, this.setPage.bind(this));
|
|
8605
8606
|
},
|
|
8606
8607
|
RemoveItemButton: function() {
|
|
8607
8608
|
Component(store2, dynamicData2, submitHandler, service2).RemoveItemButton(store2);
|