@ibiz-template/runtime 0.7.41-alpha.112 → 0.7.41-alpha.114

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