impaktapps-ui-builder 0.0.101-alpha.216 → 0.0.101-alpha.217
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 +21 -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/dist/src/impaktapps-ui-builder/builder/services/event.d.ts +2 -0
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +2 -0
- package/src/impaktapps-ui-builder/builder/services/component.ts +2 -0
- package/src/impaktapps-ui-builder/builder/services/event.ts +16 -0
|
@@ -98,5 +98,7 @@ declare const _default: (store: any, dynamicData: any, submitHandler: any, servi
|
|
|
98
98
|
deletePopUpEvent: () => void;
|
|
99
99
|
copyPasteElement: () => void;
|
|
100
100
|
RemoveItemButton: () => void;
|
|
101
|
+
onNavigatePopupYes: () => void;
|
|
102
|
+
onNavigatePopupNo: () => void;
|
|
101
103
|
};
|
|
102
104
|
export default _default;
|
package/package.json
CHANGED
|
@@ -392,8 +392,10 @@ export default (store: any, dynamicData: any, submitHandler: any, service: any)
|
|
|
392
392
|
onNavigatePopupYes: function() {
|
|
393
393
|
try{
|
|
394
394
|
store.navigate(sessionStorage.getItem("pendingNavigatePath"))
|
|
395
|
+
store.updateDialog(`pageNamepopup`)
|
|
395
396
|
}
|
|
396
397
|
catch(e){
|
|
398
|
+
store.updateDialog(`pageNamepopup`)
|
|
397
399
|
store.setNotify({
|
|
398
400
|
FailMessage: "Couldn't navigate page",
|
|
399
401
|
Fail: true,
|
|
@@ -254,5 +254,21 @@ export default (
|
|
|
254
254
|
store
|
|
255
255
|
);
|
|
256
256
|
},
|
|
257
|
+
onNavigatePopupYes: function() {
|
|
258
|
+
try{
|
|
259
|
+
store.navigate(sessionStorage.getItem("pendingNavigatePath"))
|
|
260
|
+
store.updateDialog(`pageNamepopup`)
|
|
261
|
+
}
|
|
262
|
+
catch(e){
|
|
263
|
+
store.updateDialog(`pageNamepopup`)
|
|
264
|
+
store.setNotify({
|
|
265
|
+
FailMessage: "Couldn't navigate page",
|
|
266
|
+
Fail: true,
|
|
267
|
+
})
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
onNavigatePopupNo: function() {
|
|
271
|
+
store.updateDialog(`pageNamepopup`)
|
|
272
|
+
}
|
|
257
273
|
};
|
|
258
274
|
};
|