impaktapps-ui-builder 0.0.388 → 0.0.390
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 +4 -0
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +6 -6
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/runtime/services/service.d.ts +1 -0
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.ts +1 -0
- package/src/impaktapps-ui-builder/runtime/services/service.ts +3 -0
|
@@ -7725,6 +7725,7 @@ const EventSchema = {
|
|
|
7725
7725
|
{ title: "Click Event", const: "onClick" },
|
|
7726
7726
|
{ title: "Load Event", const: "onLoad" },
|
|
7727
7727
|
{ title: "Change Event", const: "onChange" },
|
|
7728
|
+
{ title: "Lazy Load Event", const: "onLazyLoad" },
|
|
7728
7729
|
{ title: "Success", const: "Success" },
|
|
7729
7730
|
{ title: "onStart", const: "onStart" },
|
|
7730
7731
|
{ title: "File Upload Event", const: "onUpload" },
|
|
@@ -8664,6 +8665,9 @@ var service = (funcParams) => {
|
|
|
8664
8665
|
onClick: async function() {
|
|
8665
8666
|
await this.callHandler("onClick");
|
|
8666
8667
|
},
|
|
8668
|
+
onLazyLoad: async function() {
|
|
8669
|
+
await this.callHandler("onLazyLoad");
|
|
8670
|
+
},
|
|
8667
8671
|
onFileDownload: async function() {
|
|
8668
8672
|
await this.callHandler("onDownload");
|
|
8669
8673
|
},
|