impaktapps-ui-builder 1.0.51 → 1.0.52
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 +9 -1
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/runtime/services/service.d.ts +2 -0
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.ts +7 -4
- package/src/impaktapps-ui-builder/runtime/services/service.ts +7 -1
|
@@ -8934,7 +8934,9 @@ const EventSchema = {
|
|
|
8934
8934
|
{ title: "Next", const: "onNext" },
|
|
8935
8935
|
{ title: "Row Movement", const: "onRowMovement" },
|
|
8936
8936
|
{ title: "Download", const: "onDownload" },
|
|
8937
|
-
{ title: "Fail", const: "Fail" }
|
|
8937
|
+
{ title: "Fail", const: "Fail" },
|
|
8938
|
+
{ title: "PopUP NO Event", const: "onDeletePopupNo" },
|
|
8939
|
+
{ title: "PopUP Yes Event", const: "onDeletePopupYes" }
|
|
8938
8940
|
]
|
|
8939
8941
|
},
|
|
8940
8942
|
Handler: {
|
|
@@ -10458,6 +10460,12 @@ var service = (funcParams) => {
|
|
|
10458
10460
|
onClick: function() {
|
|
10459
10461
|
this.callHandler("onClick");
|
|
10460
10462
|
},
|
|
10463
|
+
onDeletePopupNo: function() {
|
|
10464
|
+
this.callHandler("onDeletePopupNo");
|
|
10465
|
+
},
|
|
10466
|
+
onDeletePopupYes: function() {
|
|
10467
|
+
this.callHandler("onDeletePopupYes");
|
|
10468
|
+
},
|
|
10461
10469
|
onMount: function() {
|
|
10462
10470
|
this.callHandler("onMount");
|
|
10463
10471
|
},
|