impaktapps-ui-builder 1.0.456 → 1.0.470

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.456",
3
+ "version": "1.0.470",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -56,7 +56,7 @@ export const EventSchema = {
56
56
  { title: "onClose", const: "onClose" },
57
57
  { title: "Key Down", const: "onKeyDown" },
58
58
  { title: "Set Style", const: "setStyle" },
59
-
59
+ { title: "Expand Node", const: "onNodeExpandChange" },
60
60
  ]
61
61
  },
62
62
  Handler: {
@@ -200,7 +200,7 @@ export default (funcParams: funcParamsProps) => {
200
200
  const apiBody = [
201
201
  { key: "expandedNodeId", value: param.expandedNodeId }
202
202
  ]
203
- const response = await this.callExecuteEvents(param, apiBody, "onLoad");
203
+ const response = await this.callExecuteEvents(param, apiBody, "onNodeExpandChange");
204
204
  return response?.data;
205
205
  },
206
206
  getSelectOptions: async function (param) {