@ibiz-template/runtime 0.4.13 → 0.4.14

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.
Files changed (36) hide show
  1. package/dist/index.esm.js +139 -45
  2. package/dist/index.system.min.js +2 -2
  3. package/out/controller/control/form/form-detail/form-mdctrl/form-mdctrl-form.controller.d.ts +13 -0
  4. package/out/controller/control/form/form-detail/form-mdctrl/form-mdctrl-form.controller.d.ts.map +1 -1
  5. package/out/controller/control/form/form-detail/form-mdctrl/form-mdctrl-form.controller.js +24 -3
  6. package/out/controller/control/form/form-detail/form-mdctrl/form-mdctrl-md.controller.d.ts +13 -0
  7. package/out/controller/control/form/form-detail/form-mdctrl/form-mdctrl-md.controller.d.ts.map +1 -1
  8. package/out/controller/control/form/form-detail/form-mdctrl/form-mdctrl-md.controller.js +26 -2
  9. package/out/controller/control/form/form-detail/form-mdctrl/form-mdctrl-repeater.controller.d.ts +0 -8
  10. package/out/controller/control/form/form-detail/form-mdctrl/form-mdctrl-repeater.controller.d.ts.map +1 -1
  11. package/out/controller/control/form/form-detail/form-mdctrl/form-mdctrl-repeater.controller.js +0 -10
  12. package/out/controller/control/form/form-detail/form-mdctrl/form-mdctrl.controller.d.ts +8 -0
  13. package/out/controller/control/form/form-detail/form-mdctrl/form-mdctrl.controller.d.ts.map +1 -1
  14. package/out/controller/control/form/form-detail/form-mdctrl/form-mdctrl.controller.js +10 -0
  15. package/out/controller/control/tree/tree.controller.d.ts +15 -2
  16. package/out/controller/control/tree/tree.controller.d.ts.map +1 -1
  17. package/out/controller/control/tree/tree.controller.js +32 -2
  18. package/out/interface/controller/controller/control/i-tree.controller.d.ts +1 -1
  19. package/out/interface/controller/controller/control/i-tree.controller.d.ts.map +1 -1
  20. package/out/model/index.d.ts +1 -0
  21. package/out/model/index.d.ts.map +1 -1
  22. package/out/model/index.js +1 -0
  23. package/out/model/toolbar/toolbar.d.ts +12 -0
  24. package/out/model/toolbar/toolbar.d.ts.map +1 -0
  25. package/out/model/toolbar/toolbar.js +22 -0
  26. package/out/service/dto/method.dto.js +1 -1
  27. package/package.json +2 -2
  28. package/src/controller/control/form/form-detail/form-mdctrl/form-mdctrl-form.controller.ts +27 -3
  29. package/src/controller/control/form/form-detail/form-mdctrl/form-mdctrl-md.controller.ts +26 -2
  30. package/src/controller/control/form/form-detail/form-mdctrl/form-mdctrl-repeater.controller.ts +0 -11
  31. package/src/controller/control/form/form-detail/form-mdctrl/form-mdctrl.controller.ts +11 -0
  32. package/src/controller/control/tree/tree.controller.ts +46 -3
  33. package/src/interface/controller/controller/control/i-tree.controller.ts +1 -1
  34. package/src/model/index.ts +1 -0
  35. package/src/model/toolbar/toolbar.ts +35 -0
  36. package/src/service/dto/method.dto.ts +1 -1
package/dist/index.esm.js CHANGED
@@ -1032,6 +1032,25 @@ function getAllPanelField(model) {
1032
1032
  return _getAllPanelField(model);
1033
1033
  }
1034
1034
 
1035
+ // src/model/toolbar/toolbar.ts
1036
+ import { recursiveIterate } from "@ibiz-template/core";
1037
+ function getUIActionItemsByActionLevel(toolbar, actionLevel) {
1038
+ const result = [];
1039
+ recursiveIterate(
1040
+ toolbar,
1041
+ (item) => {
1042
+ if (item.itemType === "DEUIACTION") {
1043
+ const uiItem = item;
1044
+ if (uiItem.actionLevel === actionLevel) {
1045
+ result.push(uiItem);
1046
+ }
1047
+ }
1048
+ },
1049
+ { childrenFields: ["detoolbarItems"] }
1050
+ );
1051
+ return result;
1052
+ }
1053
+
1035
1054
  // src/utils/open-redirect-view/open-redirect-view.ts
1036
1055
  async function openRedirectView(appView, context, params = {}, opts = {}) {
1037
1056
  return openDERedirectView(
@@ -6725,7 +6744,7 @@ var MethodDto = class _MethodDto {
6725
6744
  field.refAppDataEntityId
6726
6745
  );
6727
6746
  const items = await service.selectLocal(context, {
6728
- srfpkey: data[this.entity.keyAppDEFieldId]
6747
+ // srfpkey: data[this.entity.keyAppDEFieldId!],
6729
6748
  });
6730
6749
  if (items) {
6731
6750
  const arr = [];
@@ -14313,7 +14332,7 @@ var CaptionBarController = class extends ControlController {
14313
14332
  };
14314
14333
 
14315
14334
  // src/controller/control/toolbar/toolbar.controllerr.ts
14316
- import { recursiveIterate, RuntimeError as RuntimeError46 } from "@ibiz-template/core";
14335
+ import { recursiveIterate as recursiveIterate2, RuntimeError as RuntimeError46 } from "@ibiz-template/core";
14317
14336
 
14318
14337
  // src/ui-action/provider/backend-ui-action-provider.ts
14319
14338
  import { RuntimeModelError as RuntimeModelError47 } from "@ibiz-template/core";
@@ -16466,7 +16485,7 @@ var ToolbarController = class extends ControlController {
16466
16485
  async onCreated() {
16467
16486
  await super.onCreated();
16468
16487
  this.state.viewMode = this.ctx.view.modal.mode;
16469
- recursiveIterate(
16488
+ recursiveIterate2(
16470
16489
  this.model,
16471
16490
  (item) => {
16472
16491
  if (item.itemType === "DEUIACTION") {
@@ -16516,7 +16535,7 @@ var ToolbarController = class extends ControlController {
16516
16535
  if (_data) {
16517
16536
  logicParams.data = [_data];
16518
16537
  }
16519
- recursiveIterate(
16538
+ recursiveIterate2(
16520
16539
  this.model,
16521
16540
  (item) => {
16522
16541
  const itemState = this.state.buttonsState[item.id];
@@ -16561,7 +16580,7 @@ var ToolbarController = class extends ControlController {
16561
16580
  }
16562
16581
  initControlScheduler(logics = []) {
16563
16582
  const actualLogics = [...logics];
16564
- recursiveIterate(
16583
+ recursiveIterate2(
16565
16584
  this.model,
16566
16585
  (item) => {
16567
16586
  if (item.controlLogics) {
@@ -18243,7 +18262,7 @@ var ChartExpBarController = class extends ExpBarControlController {
18243
18262
  import { RuntimeError as RuntimeError49 } from "@ibiz-template/core";
18244
18263
 
18245
18264
  // src/controller/control/form/form/form.controller.ts
18246
- import { debounceAndAsyncMerge, recursiveIterate as recursiveIterate2 } from "@ibiz-template/core";
18265
+ import { debounceAndAsyncMerge, recursiveIterate as recursiveIterate3 } from "@ibiz-template/core";
18247
18266
  var FormController = class extends ControlController {
18248
18267
  constructor() {
18249
18268
  super(...arguments);
@@ -18455,7 +18474,7 @@ var FormController = class extends ControlController {
18455
18474
  */
18456
18475
  initControlScheduler(logics = []) {
18457
18476
  const actualLogics = [...logics];
18458
- recursiveIterate2(
18477
+ recursiveIterate3(
18459
18478
  this.model,
18460
18479
  (item) => {
18461
18480
  if (item.controlLogics) {
@@ -18471,10 +18490,10 @@ var FormController = class extends ControlController {
18471
18490
  };
18472
18491
 
18473
18492
  // src/controller/control/form/search-form/search-form.service.ts
18474
- import { recursiveIterate as recursiveIterate4 } from "@ibiz-template/core";
18493
+ import { recursiveIterate as recursiveIterate5 } from "@ibiz-template/core";
18475
18494
 
18476
18495
  // src/controller/control/form/form/form.service.ts
18477
- import { recursiveIterate as recursiveIterate3 } from "@ibiz-template/core";
18496
+ import { recursiveIterate as recursiveIterate4 } from "@ibiz-template/core";
18478
18497
  var FormService = class extends ControlService {
18479
18498
  /**
18480
18499
  * 设置表单项的默认值
@@ -18486,7 +18505,7 @@ var FormService = class extends ControlService {
18486
18505
  * @param {('create' | 'update')} type 新建还是更新
18487
18506
  */
18488
18507
  setDefault(data, context, params, type) {
18489
- recursiveIterate3(
18508
+ recursiveIterate4(
18490
18509
  this.model,
18491
18510
  (item) => {
18492
18511
  if (item.detailType === "FORMITEM") {
@@ -18542,7 +18561,7 @@ var SearchFormService = class extends FormService {
18542
18561
  * @date 2022-08-31 18:08:37
18543
18562
  */
18544
18563
  initUIDataMap() {
18545
- recursiveIterate4(
18564
+ recursiveIterate5(
18546
18565
  this.model,
18547
18566
  (item) => {
18548
18567
  if (item.detailType === "FORMITEM") {
@@ -19913,6 +19932,16 @@ var FormItemController = class extends FormDetailController {
19913
19932
  // src/controller/control/form/form-detail/form-mdctrl/form-mdctrl.controller.ts
19914
19933
  import { BitMask } from "@ibiz-template/core";
19915
19934
  var FormMDCtrlController = class extends FormDetailController {
19935
+ /**
19936
+ * 名称
19937
+ * @author lxm
19938
+ * @date 2023-11-22 03:31:02
19939
+ * @readonly
19940
+ * @type {string}
19941
+ */
19942
+ get name() {
19943
+ return this.model.id;
19944
+ }
19916
19945
  /**
19917
19946
  * 上下文
19918
19947
  *
@@ -20001,6 +20030,15 @@ import {
20001
20030
  RuntimeModelError as RuntimeModelError53
20002
20031
  } from "@ibiz-template/core";
20003
20032
  var FormMDCtrlMDController = class extends FormMDCtrlController {
20033
+ constructor() {
20034
+ super(...arguments);
20035
+ /**
20036
+ * 忽略下一次自身对应表单项数据变更
20037
+ * @author lxm
20038
+ * @date 2023-12-19 11:47:21
20039
+ */
20040
+ this.ignoreNextSelfChange = false;
20041
+ }
20004
20042
  /**
20005
20043
  * 表单项名称
20006
20044
  *
@@ -20037,10 +20075,10 @@ var FormMDCtrlMDController = class extends FormMDCtrlController {
20037
20075
  setMDControl(controller) {
20038
20076
  this.mdController = controller;
20039
20077
  controller.evt.on("onSaveSuccess", () => {
20040
- this.updateFormItem();
20078
+ this.notifyFormDataChange();
20041
20079
  });
20042
20080
  controller.evt.on("onRemoveSuccess", () => {
20043
- this.updateFormItem();
20081
+ this.notifyFormDataChange();
20044
20082
  });
20045
20083
  }
20046
20084
  updateFormItem() {
@@ -20089,11 +20127,26 @@ var FormMDCtrlMDController = class extends FormMDCtrlController {
20089
20127
  this.refresh();
20090
20128
  }
20091
20129
  async dataChangeNotify(names) {
20130
+ if (names.includes(this.model.id) && this.ignoreNextSelfChange) {
20131
+ this.ignoreNextSelfChange = false;
20132
+ return;
20133
+ }
20092
20134
  await super.dataChangeNotify(names);
20093
20135
  if (names.includes(this.model.id)) {
20094
20136
  this.refresh();
20095
20137
  }
20096
20138
  }
20139
+ /**
20140
+ * 通知表单多数据部件对应的表单项数据变更
20141
+ * @author lxm
20142
+ * @date 2023-12-19 11:46:13
20143
+ * @protected
20144
+ */
20145
+ notifyFormDataChange() {
20146
+ this.updateFormItem();
20147
+ this.ignoreNextSelfChange = true;
20148
+ this.form.dataChangeNotify([this.name]);
20149
+ }
20097
20150
  };
20098
20151
 
20099
20152
  // src/controller/control/form/form-detail/form-mdctrl/form-mdctrl-form.controller.ts
@@ -20108,6 +20161,12 @@ var FormMDCtrlFormState = class extends FormDetailState {
20108
20161
  var FormMDCtrlFormController = class extends FormMDCtrlController {
20109
20162
  constructor() {
20110
20163
  super(...arguments);
20164
+ /**
20165
+ * 忽略下一次自身对应表单项数据变更
20166
+ * @author lxm
20167
+ * @date 2023-12-19 11:47:21
20168
+ */
20169
+ this.ignoreNextSelfChange = false;
20111
20170
  /**
20112
20171
  * 表单控制器Map
20113
20172
  * @author lxm
@@ -20173,7 +20232,7 @@ var FormMDCtrlFormController = class extends FormMDCtrlController {
20173
20232
  */
20174
20233
  async formStateNotify(state) {
20175
20234
  await super.formStateNotify(state);
20176
- await this.fetchData();
20235
+ await this.refresh();
20177
20236
  }
20178
20237
  /**
20179
20238
  * 设置表单控制器
@@ -20192,10 +20251,10 @@ var FormMDCtrlFormController = class extends FormMDCtrlController {
20192
20251
  item.context[this.deName] = formData.srfkey;
20193
20252
  }
20194
20253
  }
20195
- this.updateFormItem();
20254
+ this.notifyFormDataChange();
20196
20255
  });
20197
20256
  controller.evt.on("onRemoveSuccess", () => {
20198
- this.updateFormItem();
20257
+ this.notifyFormDataChange();
20199
20258
  });
20200
20259
  }
20201
20260
  /**
@@ -20242,11 +20301,26 @@ var FormMDCtrlFormController = class extends FormMDCtrlController {
20242
20301
  this.fetchData();
20243
20302
  }
20244
20303
  async dataChangeNotify(names) {
20304
+ if (names.includes(this.model.id) && this.ignoreNextSelfChange) {
20305
+ this.ignoreNextSelfChange = false;
20306
+ return;
20307
+ }
20245
20308
  await super.dataChangeNotify(names);
20246
20309
  if (names.includes(this.model.id)) {
20247
20310
  this.refresh();
20248
20311
  }
20249
20312
  }
20313
+ /**
20314
+ * 通知表单多数据部件对应的表单项数据变更
20315
+ * @author lxm
20316
+ * @date 2023-12-19 11:46:13
20317
+ * @protected
20318
+ */
20319
+ notifyFormDataChange() {
20320
+ this.updateFormItem();
20321
+ this.ignoreNextSelfChange = true;
20322
+ this.form.dataChangeNotify([this.name]);
20323
+ }
20250
20324
  };
20251
20325
 
20252
20326
  // src/controller/control/form/form-detail/form-mdctrl/form-mdctrl-repeater.controller.ts
@@ -20270,16 +20344,6 @@ var FormMDCtrlRepeaterController = class extends FormMDCtrlController {
20270
20344
  */
20271
20345
  this.isSingleData = false;
20272
20346
  }
20273
- /**
20274
- * 名称
20275
- * @author lxm
20276
- * @date 2023-11-22 03:31:02
20277
- * @readonly
20278
- * @type {string}
20279
- */
20280
- get name() {
20281
- return this.model.id;
20282
- }
20283
20347
  /**
20284
20348
  * 多数据重复器对应的表单里的值
20285
20349
  *
@@ -20479,7 +20543,7 @@ import { clone as clone21 } from "ramda";
20479
20543
 
20480
20544
  // src/controller/control/form/edit-form/edit-form.service.ts
20481
20545
  import {
20482
- recursiveIterate as recursiveIterate5,
20546
+ recursiveIterate as recursiveIterate6,
20483
20547
  RuntimeModelError as RuntimeModelError55
20484
20548
  } from "@ibiz-template/core";
20485
20549
  var EditFormService = class extends FormService {
@@ -20701,7 +20765,7 @@ var EditFormService = class extends FormService {
20701
20765
  // 向导预置
20702
20766
  "srfnextform"
20703
20767
  ];
20704
- recursiveIterate5(
20768
+ recursiveIterate6(
20705
20769
  this.model,
20706
20770
  (item) => {
20707
20771
  if (item.detailType === "FORMITEM" || item.detailType === "MDCTRL") {
@@ -21419,7 +21483,7 @@ import {
21419
21483
  awaitTimeout as awaitTimeout2,
21420
21484
  debounceAndAsyncMerge as debounceAndAsyncMerge2,
21421
21485
  mergeDefaultInLeft,
21422
- recursiveIterate as recursiveIterate6,
21486
+ recursiveIterate as recursiveIterate7,
21423
21487
  RuntimeError as RuntimeError52,
21424
21488
  RuntimeModelError as RuntimeModelError57
21425
21489
  } from "@ibiz-template/core";
@@ -21950,7 +22014,7 @@ var GridController = class extends MDControlController {
21950
22014
  * @return {*} {Promise<void>}
21951
22015
  */
21952
22016
  initColumnStates() {
21953
- recursiveIterate6(
22017
+ recursiveIterate7(
21954
22018
  this.model,
21955
22019
  (column) => {
21956
22020
  if (column.columnType !== "GROUPGRIDCOLUMN") {
@@ -23305,7 +23369,7 @@ var ListController = class extends MDControlController {
23305
23369
  };
23306
23370
 
23307
23371
  // src/controller/control/panel/panel/panel.controller.ts
23308
- import { recursiveIterate as recursiveIterate7, RuntimeError as RuntimeError54 } from "@ibiz-template/core";
23372
+ import { recursiveIterate as recursiveIterate8, RuntimeError as RuntimeError54 } from "@ibiz-template/core";
23309
23373
  var PanelController = class extends ControlController {
23310
23374
  constructor(model, context, params, ctx, container) {
23311
23375
  super(model, context, params, ctx);
@@ -23514,7 +23578,7 @@ var PanelController = class extends ControlController {
23514
23578
  }
23515
23579
  initControlScheduler(logics = []) {
23516
23580
  const actualLogics = [...logics];
23517
- recursiveIterate7(
23581
+ recursiveIterate8(
23518
23582
  this.model,
23519
23583
  (item) => {
23520
23584
  if (item.controlLogics) {
@@ -24024,7 +24088,7 @@ var PickupViewPanelController = class extends ControlController {
24024
24088
  };
24025
24089
 
24026
24090
  // src/controller/control/search-bar/search-bar.controller.ts
24027
- import { recursiveIterate as recursiveIterate8 } from "@ibiz-template/core";
24091
+ import { recursiveIterate as recursiveIterate9 } from "@ibiz-template/core";
24028
24092
  import { isNil as isNil23 } from "ramda";
24029
24093
 
24030
24094
  // src/controller/control/search-bar/search-bar-filter.controller.ts
@@ -24231,7 +24295,7 @@ var SearchBarController = class extends ControlController {
24231
24295
  }
24232
24296
  let hasFilter = false;
24233
24297
  let hasError = false;
24234
- recursiveIterate8(this.state.filterNodes[0], (node) => {
24298
+ recursiveIterate9(this.state.filterNodes[0], (node) => {
24235
24299
  if (node.leaf) {
24236
24300
  if (node.field && node.valueOP && !isNil23(node.value)) {
24237
24301
  hasFilter = true;
@@ -24510,7 +24574,7 @@ var TabExpPanelController = class extends ControlController {
24510
24574
  import {
24511
24575
  RuntimeError as RuntimeError55,
24512
24576
  RuntimeModelError as RuntimeModelError60,
24513
- recursiveIterate as recursiveIterate9
24577
+ recursiveIterate as recursiveIterate10
24514
24578
  } from "@ibiz-template/core";
24515
24579
 
24516
24580
  // src/controller/control/tree/tree.service.ts
@@ -24813,6 +24877,12 @@ var TreeController = class extends MDControlController {
24813
24877
  * @date 2023-12-14 03:05:38
24814
24878
  */
24815
24879
  this.dropNodeRss = /* @__PURE__ */ new Map();
24880
+ /**
24881
+ * 节点对应的上下文菜单里第一个行为级别为常用操作的项
24882
+ * @author lxm
24883
+ * @date 2023-12-19 03:14:03
24884
+ */
24885
+ this.nodeClickTBUIActionItem = /* @__PURE__ */ new Map();
24816
24886
  }
24817
24887
  initState() {
24818
24888
  super.initState();
@@ -24851,6 +24921,7 @@ var TreeController = class extends MDControlController {
24851
24921
  }
24852
24922
  }
24853
24923
  this.initDropNodeRss();
24924
+ this.initNodeClickTBUIActionItem();
24854
24925
  this.service = new TreeService(this.model);
24855
24926
  await this.service.init(this.context);
24856
24927
  this.model.detreeNodes.forEach((node) => {
@@ -24903,6 +24974,24 @@ var TreeController = class extends MDControlController {
24903
24974
  }
24904
24975
  });
24905
24976
  }
24977
+ /**
24978
+ * 初始化节点点击后触发的第一个常用操作的上下文菜单项
24979
+ * @author lxm
24980
+ * @date 2023-12-19 03:18:43
24981
+ * @protected
24982
+ */
24983
+ initNodeClickTBUIActionItem() {
24984
+ var _a;
24985
+ (_a = this.model.detreeNodes) == null ? void 0 : _a.forEach((node) => {
24986
+ var _a2, _b;
24987
+ if ((_b = (_a2 = node.decontextMenu) == null ? void 0 : _a2.detoolbarItems) == null ? void 0 : _b.length) {
24988
+ const items = getUIActionItemsByActionLevel(node.decontextMenu, 200);
24989
+ if (items.length > 0) {
24990
+ this.nodeClickTBUIActionItem.set(node.id, items[0]);
24991
+ }
24992
+ }
24993
+ });
24994
+ }
24906
24995
  /**
24907
24996
  * 树部件加载,从根节点开始重新加载
24908
24997
  *
@@ -24964,7 +25053,7 @@ var TreeController = class extends MDControlController {
24964
25053
  this.state.rootNodes = nodes;
24965
25054
  }
24966
25055
  this.state.items = [];
24967
- recursiveIterate9(
25056
+ recursiveIterate10(
24968
25057
  { children: this.state.rootNodes },
24969
25058
  (node) => {
24970
25059
  this.state.items.push(node);
@@ -24980,7 +25069,11 @@ var TreeController = class extends MDControlController {
24980
25069
  * @returns {*} {Promise<void>}
24981
25070
  * @memberof TreeController
24982
25071
  */
24983
- async onTreeNodeClick(nodeData) {
25072
+ async onTreeNodeClick(nodeData, event) {
25073
+ if (this.nodeClickTBUIActionItem.has(nodeData.nodeId)) {
25074
+ const item = this.nodeClickTBUIActionItem.get(nodeData.nodeId);
25075
+ return this.doUIAction(item.uiactionId, nodeData, event, item.appId);
25076
+ }
24984
25077
  if (this.state.navigational) {
24985
25078
  const nodeModel = this.getNodeModel(nodeData.nodeId);
24986
25079
  if (!(nodeModel == null ? void 0 : nodeModel.navAppViewId)) {
@@ -25118,7 +25211,7 @@ var TreeController = class extends MDControlController {
25118
25211
  */
25119
25212
  calcExpandedKeys(nodes) {
25120
25213
  let expandedKeys = [...this.state.expandedKeys];
25121
- recursiveIterate9({ children: nodes }, (node) => {
25214
+ recursiveIterate10({ children: nodes }, (node) => {
25122
25215
  var _a;
25123
25216
  if ((_a = node.children) == null ? void 0 : _a.length) {
25124
25217
  expandedKeys.push(node.id);
@@ -26353,7 +26446,7 @@ var KanbanController = class extends DataViewControlController {
26353
26446
  };
26354
26447
 
26355
26448
  // src/controller/control/tree-grid-ex/tree-grid-ex.controller.ts
26356
- import { recursiveIterate as recursiveIterate10 } from "@ibiz-template/core";
26449
+ import { recursiveIterate as recursiveIterate11 } from "@ibiz-template/core";
26357
26450
 
26358
26451
  // src/controller/control/tree-grid-ex/tree-grid-ex.service.ts
26359
26452
  import { isArray as isArray10 } from "qx-util";
@@ -26593,7 +26686,7 @@ var TreeGridExController = class extends MDControlController {
26593
26686
  * @memberof TreeGridExController
26594
26687
  */
26595
26688
  initColumnStates() {
26596
- recursiveIterate10(
26689
+ recursiveIterate11(
26597
26690
  this.model,
26598
26691
  (column) => {
26599
26692
  if (column.columnType !== "GROUPGRIDCOLUMN") {
@@ -26681,7 +26774,7 @@ var TreeGridExController = class extends MDControlController {
26681
26774
  this.state.rootNodes = nodes;
26682
26775
  }
26683
26776
  this.state.items = [];
26684
- recursiveIterate10(
26777
+ recursiveIterate11(
26685
26778
  { children: this.state.rootNodes },
26686
26779
  (node) => {
26687
26780
  this.state.items.push(node);
@@ -26700,7 +26793,7 @@ var TreeGridExController = class extends MDControlController {
26700
26793
  */
26701
26794
  calcExpandedKeys(nodes) {
26702
26795
  let expandedKeys = [];
26703
- recursiveIterate10({ children: nodes }, (node) => {
26796
+ recursiveIterate11({ children: nodes }, (node) => {
26704
26797
  var _a;
26705
26798
  if ((_a = node.children) == null ? void 0 : _a.length) {
26706
26799
  expandedKeys.push(node.id);
@@ -27446,7 +27539,7 @@ var ReportPanelController = class extends ControlController {
27446
27539
  };
27447
27540
 
27448
27541
  // src/controller/control/gantt/gantt.controller.ts
27449
- import { recursiveIterate as recursiveIterate11 } from "@ibiz-template/core";
27542
+ import { recursiveIterate as recursiveIterate12 } from "@ibiz-template/core";
27450
27543
 
27451
27544
  // src/controller/control/gantt/gantt.service.ts
27452
27545
  import { ModelError as ModelError30 } from "@ibiz-template/core";
@@ -27835,7 +27928,7 @@ var GanttController = class extends MDControlController {
27835
27928
  * @memberof GanttController
27836
27929
  */
27837
27930
  initColumnStates() {
27838
- recursiveIterate11(
27931
+ recursiveIterate12(
27839
27932
  this.model,
27840
27933
  (column) => {
27841
27934
  if (column.columnType !== "GROUPGRIDCOLUMN") {
@@ -27953,7 +28046,7 @@ var GanttController = class extends MDControlController {
27953
28046
  this.state.rootNodes = nodes;
27954
28047
  }
27955
28048
  this.state.items = [];
27956
- recursiveIterate11(
28049
+ recursiveIterate12(
27957
28050
  { children: this.state.rootNodes },
27958
28051
  (node) => {
27959
28052
  this.state.items.push(node);
@@ -30563,6 +30656,7 @@ export {
30563
30656
  getRootNode,
30564
30657
  getTreeNode,
30565
30658
  getUIActionById,
30659
+ getUIActionItemsByActionLevel,
30566
30660
  getUIActionProvider,
30567
30661
  getUILogicNodeProvider,
30568
30662
  getViewEngines,