impaktapps-ui-builder 1.0.57 → 1.0.58
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 +5 -8
- 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/dist/src/impaktapps-ui-builder/runtime/services/service.d.ts +1 -2
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.ts +4 -2
- package/src/impaktapps-ui-builder/runtime/services/service.ts +2 -5
|
@@ -12,8 +12,7 @@ declare const _default: (funcParams: funcParamsProps) => {
|
|
|
12
12
|
onCellRenderer: (cellParams: any) => {};
|
|
13
13
|
onClick: () => void;
|
|
14
14
|
onKeyDown: () => void;
|
|
15
|
-
|
|
16
|
-
onDeletePopupYes: () => void;
|
|
15
|
+
onFileDelete: () => void;
|
|
17
16
|
onMount: () => void;
|
|
18
17
|
onFileDownload: () => void;
|
|
19
18
|
onFileUpload: () => void;
|
package/package.json
CHANGED
|
@@ -46,14 +46,16 @@ export const EventSchema = {
|
|
|
46
46
|
{ title: "Start", const: "onStart" },
|
|
47
47
|
{ title: "Cell Render", const: "onCellRenderer" },
|
|
48
48
|
{ title: "Upload", const: "onUpload" },
|
|
49
|
+
{ title: "FileDelete", const: "onFileDelete" },
|
|
50
|
+
{ title: "Download", const: "onDownload" },
|
|
49
51
|
{ title: "Back", const: "onBack" },
|
|
50
52
|
{ title: "Next", const: "onNext" },
|
|
51
53
|
{ title: "Row Movement", const: "onRowMovement" },
|
|
52
54
|
{ title: "Download", const: "onDownload" },
|
|
53
55
|
{ title: "Fail", const: "Fail" },
|
|
54
56
|
{ title: "Key Down", const: "onKeyDown" },
|
|
55
|
-
|
|
56
|
-
|
|
57
|
+
|
|
58
|
+
|
|
57
59
|
]
|
|
58
60
|
},
|
|
59
61
|
Handler: {
|
|
@@ -236,11 +236,8 @@ export default (funcParams: funcParamsProps) => {
|
|
|
236
236
|
onKeyDown: function () {
|
|
237
237
|
this.callHandler("onKeyDown")
|
|
238
238
|
},
|
|
239
|
-
|
|
240
|
-
this.callHandler("
|
|
241
|
-
},
|
|
242
|
-
onDeletePopupYes: function () {
|
|
243
|
-
this.callHandler("onDeletePopupYes")
|
|
239
|
+
onFileDelete: function () {
|
|
240
|
+
this.callHandler("onFileDelete")
|
|
244
241
|
},
|
|
245
242
|
onMount: function () {
|
|
246
243
|
this.callHandler("onMount")
|