impaktapps-ui-builder 1.0.280 → 1.0.286

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.
@@ -9443,7 +9443,8 @@ const EventSchema = {
9443
9443
  { title: "Row Movement", const: "onRowMovement" },
9444
9444
  { title: "Download", const: "onDownload" },
9445
9445
  { title: "Fail", const: "Fail" },
9446
- { title: "Key Down", const: "onKeyDown" }
9446
+ { title: "Key Down", const: "onKeyDown" },
9447
+ { title: "Search Select", const: "onSearchNodeSelect" }
9447
9448
  ]
9448
9449
  },
9449
9450
  Handler: {
@@ -10900,6 +10901,21 @@ var service = (funcParams) => {
10900
10901
  const response = await this.callExecuteEvents(param, apiBody, "onLoad");
10901
10902
  return response == null ? void 0 : response.data;
10902
10903
  },
10904
+ onNodeSearchChange: async function(param) {
10905
+ const apiBody = [
10906
+ { key: "searchTerm", value: param.searchTerm }
10907
+ ];
10908
+ const response = await this.callExecuteEvents(param, apiBody, "onLoad");
10909
+ return response == null ? void 0 : response.data;
10910
+ },
10911
+ onSearchNodeSelect: async function(param) {
10912
+ const apiBody = [
10913
+ { key: "selectedNodeId", value: param.selectedNodeId },
10914
+ { key: "uncollapsedIds", value: param.uncollapsedIds }
10915
+ ];
10916
+ const response = await this.callExecuteEvents(param, apiBody, "onSearchNodeSelect");
10917
+ return response == null ? void 0 : response.data;
10918
+ },
10903
10919
  getSelectOptions: async function(param) {
10904
10920
  if (param.serachValue !== "" && param.serachValue !== void 0) {
10905
10921
  const apiBody = [