@ibiz-template/runtime 0.7.41-alpha.113 → 0.7.41-alpha.115

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 (65) hide show
  1. package/dist/index.esm.js +180 -19
  2. package/dist/index.system.min.js +1 -1
  3. package/out/config/global-config.d.ts.map +1 -1
  4. package/out/config/global-config.js +1 -0
  5. package/out/controller/common/control/md-control.controller.js +1 -1
  6. package/out/controller/control/form/form/form.controller.d.ts +9 -1
  7. package/out/controller/control/form/form/form.controller.d.ts.map +1 -1
  8. package/out/controller/control/form/form/form.controller.js +54 -5
  9. package/out/controller/control/form/form-detail/form-druipart/form-druipart.controller.d.ts.map +1 -1
  10. package/out/controller/control/form/form-detail/form-druipart/form-druipart.controller.js +5 -0
  11. package/out/controller/control/grid/grid/grid.controller.d.ts.map +1 -1
  12. package/out/controller/control/grid/grid/grid.controller.js +10 -2
  13. package/out/controller/control/md-ctrl/md-ctrl.controller.d.ts.map +1 -1
  14. package/out/controller/control/md-ctrl/md-ctrl.controller.js +10 -2
  15. package/out/controller/control/medit-view-panel/medit-view-panel.controller.d.ts +16 -1
  16. package/out/controller/control/medit-view-panel/medit-view-panel.controller.d.ts.map +1 -1
  17. package/out/controller/control/medit-view-panel/medit-view-panel.controller.js +31 -0
  18. package/out/interface/api/call/i-api-medit-view9.call.d.ts +20 -0
  19. package/out/interface/api/call/i-api-medit-view9.call.d.ts.map +1 -1
  20. package/out/interface/api/common/global-config/i-api-global-common-config.d.ts +9 -0
  21. package/out/interface/api/common/global-config/i-api-global-common-config.d.ts.map +1 -1
  22. package/out/interface/api/controller/control/i-api-medit-view-panel.controller.d.ts +9 -0
  23. package/out/interface/api/controller/control/i-api-medit-view-panel.controller.d.ts.map +1 -1
  24. package/out/interface/api/util/i-api-excel-util.d.ts +6 -6
  25. package/out/interface/api/util/i-api-excel-util.d.ts.map +1 -1
  26. package/out/interface/controller/state/control/i-tree.state.d.ts +12 -0
  27. package/out/interface/controller/state/control/i-tree.state.d.ts.map +1 -1
  28. package/out/locale/en/index.d.ts +3 -0
  29. package/out/locale/en/index.d.ts.map +1 -1
  30. package/out/locale/en/index.js +3 -0
  31. package/out/locale/zh-CN/index.d.ts +3 -0
  32. package/out/locale/zh-CN/index.d.ts.map +1 -1
  33. package/out/locale/zh-CN/index.js +3 -0
  34. package/out/service/vo/tree-node-data/tree-code-list-node-data.d.ts.map +1 -1
  35. package/out/service/vo/tree-node-data/tree-code-list-node-data.js +2 -0
  36. package/out/service/vo/tree-node-data/tree-data-set-node-data.d.ts +14 -0
  37. package/out/service/vo/tree-node-data/tree-data-set-node-data.d.ts.map +1 -1
  38. package/out/service/vo/tree-node-data/tree-data-set-node-data.js +33 -0
  39. package/out/service/vo/tree-node-data/tree-node-data.d.ts +16 -0
  40. package/out/service/vo/tree-node-data/tree-node-data.d.ts.map +1 -1
  41. package/out/service/vo/tree-node-data/tree-node-data.js +25 -0
  42. package/out/service/vo/tree-node-data/tree-static-node-data.d.ts.map +1 -1
  43. package/out/service/vo/tree-node-data/tree-static-node-data.js +2 -0
  44. package/out/ui-action/provider/front-ui-action-provider.d.ts.map +1 -1
  45. package/out/ui-action/provider/front-ui-action-provider.js +3 -1
  46. package/package.json +2 -2
  47. package/src/config/global-config.ts +1 -0
  48. package/src/controller/common/control/md-control.controller.ts +1 -1
  49. package/src/controller/control/form/form/form.controller.ts +58 -11
  50. package/src/controller/control/form/form-detail/form-druipart/form-druipart.controller.ts +3 -0
  51. package/src/controller/control/grid/grid/grid.controller.ts +12 -2
  52. package/src/controller/control/md-ctrl/md-ctrl.controller.ts +12 -2
  53. package/src/controller/control/medit-view-panel/medit-view-panel.controller.ts +39 -1
  54. package/src/interface/api/call/i-api-medit-view9.call.ts +21 -0
  55. package/src/interface/api/common/global-config/i-api-global-common-config.ts +10 -0
  56. package/src/interface/api/controller/control/i-api-medit-view-panel.controller.ts +10 -0
  57. package/src/interface/api/util/i-api-excel-util.ts +8 -3
  58. package/src/interface/controller/state/control/i-tree.state.ts +14 -0
  59. package/src/locale/en/index.ts +4 -0
  60. package/src/locale/zh-CN/index.ts +3 -0
  61. package/src/service/vo/tree-node-data/tree-code-list-node-data.ts +2 -0
  62. package/src/service/vo/tree-node-data/tree-data-set-node-data.ts +35 -0
  63. package/src/service/vo/tree-node-data/tree-node-data.ts +33 -0
  64. package/src/service/vo/tree-node-data/tree-static-node-data.ts +2 -0
  65. package/src/ui-action/provider/front-ui-action-provider.ts +3 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.