impaktapps-ui-builder 1.0.280 → 1.0.285

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.
@@ -10900,6 +10900,21 @@ var service = (funcParams) => {
10900
10900
  const response = await this.callExecuteEvents(param, apiBody, "onLoad");
10901
10901
  return response == null ? void 0 : response.data;
10902
10902
  },
10903
+ onNodeSearchChange: async function(param) {
10904
+ const apiBody = [
10905
+ { key: "searchTerm", value: param.searchTerm }
10906
+ ];
10907
+ const response = await this.callExecuteEvents(param, apiBody, "onLoad");
10908
+ return response == null ? void 0 : response.data;
10909
+ },
10910
+ onSearchNodeSelect: async function(param) {
10911
+ const apiBody = [
10912
+ { key: "selectedNodeId", value: param.selectedNodeId },
10913
+ { key: "uncollapsedIds", value: param.uncollapsedIds }
10914
+ ];
10915
+ const response = await this.callExecuteEvents(param, apiBody, "onLoad");
10916
+ return response == null ? void 0 : response.data;
10917
+ },
10903
10918
  getSelectOptions: async function(param) {
10904
10919
  if (param.serachValue !== "" && param.serachValue !== void 0) {
10905
10920
  const apiBody = [