cnhis-design-vue 3.1.33-beta.9 → 3.1.34-beta.0

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 (150) hide show
  1. package/README.md +123 -123
  2. package/es/components/big-table/index.d.ts +1 -1
  3. package/es/components/big-table/src/BigTable.vue.d.ts +1 -1
  4. package/es/components/big-table/src/BigTable.vue2.js +7 -9
  5. package/es/components/big-table/src/components/edit-form/edit-input.js +1 -1
  6. package/es/components/big-table/src/components/edit-form/edit-select.js +1 -1
  7. package/es/components/big-table/src/components/edit-form/edit-time.js +5 -3
  8. package/es/components/big-table/src/components/edit-form/useCommon.d.ts +2 -1
  9. package/es/components/big-table/src/components/edit-form/useCommon.js +7 -3
  10. package/es/components/big-table/src/hooks/useFormat.js +1 -1
  11. package/es/components/button-print/index.d.ts +13 -0
  12. package/es/components/button-print/src/ButtonPrint.vue.d.ts +13 -0
  13. package/es/components/button-print/src/ButtonPrint.vue2.js +8 -1
  14. package/es/components/button-print/src/utils/print.d.ts +2 -2
  15. package/es/components/button-print/src/utils/print.js +7 -4
  16. package/es/components/fabric-chart/index.d.ts +133 -2
  17. package/es/components/fabric-chart/src/BirthProcessChart.vue.d.ts +132 -0
  18. package/es/components/fabric-chart/src/BirthProcessChart.vue.js +62 -8
  19. package/es/components/fabric-chart/src/FabricChart.vue.d.ts +133 -2
  20. package/es/components/fabric-chart/src/FabricChart.vue.js +2 -2
  21. package/es/components/fabric-chart/src/TemperatureChart.vue.d.ts +1 -2
  22. package/es/components/fabric-chart/src/TemperatureChart.vue.js +17 -9
  23. package/es/components/fabric-chart/src/components/PopupMenu.js +2 -2
  24. package/es/components/fabric-chart/src/components/PopupTip.vue.d.ts +3 -2
  25. package/es/components/fabric-chart/src/hooks/index.d.ts +1 -0
  26. package/es/components/fabric-chart/src/hooks/index.js +1 -0
  27. package/es/components/fabric-chart/src/hooks/useBirthProcess.d.ts +23 -1
  28. package/es/components/fabric-chart/src/hooks/useBirthProcess.js +305 -9
  29. package/es/components/fabric-chart/src/hooks/useCenter.d.ts +0 -2
  30. package/es/components/fabric-chart/src/hooks/useCenter.js +27 -45
  31. package/es/components/fabric-chart/src/hooks/useCommon.d.ts +8 -0
  32. package/es/components/fabric-chart/src/hooks/useCommon.js +32 -0
  33. package/es/components/fabric-chart/src/hooks/useCumputedPoint.d.ts +5 -2
  34. package/es/components/fabric-chart/src/hooks/useCumputedPoint.js +27 -10
  35. package/es/components/fabric-chart/src/hooks/useLeft.d.ts +1 -1
  36. package/es/components/fabric-chart/src/hooks/useLeft.js +12 -7
  37. package/es/components/fabric-chart/src/interface.d.ts +1 -0
  38. package/es/components/fabric-chart/src/utils/utils.d.ts +11 -0
  39. package/es/components/fabric-chart/src/utils/utils.js +27 -0
  40. package/es/components/iho-table/index.d.ts +4 -3
  41. package/es/components/iho-table/src/IhoTable.vue.d.ts +4 -3
  42. package/es/components/iho-table/src/IhoTable.vue.js +6 -4
  43. package/es/components/iho-table/src/components/IhoTableColumn.js +1 -1
  44. package/es/components/iho-table/src/constants/index.d.ts +3 -3
  45. package/es/components/iho-table/src/constants/index.js +0 -1
  46. package/es/components/iho-table/src/hooks/tapHooks/index.d.ts +5 -1
  47. package/es/components/iho-table/src/hooks/tapHooks/index.js +10 -9
  48. package/es/components/iho-table/src/hooks/tapHooks/useDataHooks.d.ts +2 -2
  49. package/es/components/iho-table/src/hooks/tapHooks/useEventHooks.d.ts +119 -119
  50. package/es/components/iho-table/src/hooks/tapHooks/useExposeHooks.d.ts +5 -3
  51. package/es/components/iho-table/src/hooks/tapHooks/useExposeHooks.js +1 -1
  52. package/es/components/iho-table/src/hooks/tapHooks/useFieldHooks.d.ts +16 -4
  53. package/es/components/iho-table/src/hooks/tapHooks/useFieldHooks.js +9 -4
  54. package/es/components/iho-table/src/hooks/useColumnConfigAdaptor.js +6 -1
  55. package/es/components/iho-table/src/plugins/defaultConfigPlugin/index.js +1 -1
  56. package/es/components/iho-table/src/plugins/filterPlugin/filter.vue.d.ts +51 -24
  57. package/es/components/iho-table/src/plugins/filterPlugin/filter.vue.js +37 -51
  58. package/es/components/iho-table/src/plugins/filterPlugin/index.js +181 -20
  59. package/es/components/iho-table/src/plugins/filterPlugin/types.d.ts +2 -6
  60. package/es/components/iho-table/src/plugins/filterPlugin/types.js +0 -7
  61. package/es/components/iho-table/src/plugins/index.js +1 -1
  62. package/es/components/iho-table/src/plugins/keyboardEventPlugin/index.js +1 -1
  63. package/es/components/iho-table/src/plugins/lowCodeFieldAdaptorPlugin/index.js +7 -4
  64. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.d.ts +8 -8
  65. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.js +8 -12
  66. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/index.js +2 -2
  67. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/hooks/{useCommon.d.ts → useAutoFocus.d.ts} +2 -1
  68. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/hooks/{useCommon.js → useAutoFocus.js} +6 -2
  69. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/inputRendererPlugin.js +4 -2
  70. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/numberRendererPlugin.js +11 -5
  71. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/editSelect.d.ts +5 -5
  72. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/editSelect.js +14 -15
  73. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/index.js +2 -2
  74. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/editSeparate.vue.d.ts +9 -9
  75. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/editSeparate.vue.js +9 -10
  76. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/index.js +5 -5
  77. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/timeRendererPlugin.js +7 -1
  78. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/checkRendererPlugin.js +3 -5
  79. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/seqRendererPlugin.js +5 -2
  80. package/es/components/iho-table/src/plugins/rowGroupSettingPlugin/rowGroupUtils.js +7 -4
  81. package/es/components/iho-table/src/plugins/virtualTreePlugin/index.js +1 -1
  82. package/es/components/iho-table/src/types/index.d.ts +10 -12
  83. package/es/components/iho-table/src/types/pluginType.d.ts +28 -12
  84. package/es/components/iho-table/src/utils/index.d.ts +5 -10
  85. package/es/components/iho-table/src/utils/index.js +19 -26
  86. package/es/components/iho-table/style/index.css +1 -1
  87. package/es/components/index.css +1 -1
  88. package/es/components/info-header/src/InfoHeader.vue.js +1 -1
  89. package/es/components/info-header/style/index.css +1 -1
  90. package/es/components/keyboard/index.d.ts +62 -1
  91. package/es/components/keyboard/src/Keyboard.vue.d.ts +62 -1
  92. package/es/components/keyboard/src/Keyboard.vue.js +4 -1
  93. package/es/components/keyboard/src/components/NumberPanel.vue.d.ts +67 -5
  94. package/es/components/keyboard/src/components/NumberPanel.vue.js +48 -26
  95. package/es/components/keyboard/style/index.css +1 -1
  96. package/es/components/select-person/index.d.ts +1 -2
  97. package/es/components/select-person/src/SelectPerson.vue.d.ts +1 -2
  98. package/es/components/select-person/src/SelectPerson.vue2.js +20 -19
  99. package/es/components/select-person/src/utils/index.d.ts +1 -0
  100. package/es/components/select-person/src/utils/index.js +15 -1
  101. package/es/shared/assets/img/failure.js +1 -1
  102. package/es/shared/assets/img/failure.png.js +1 -1
  103. package/es/shared/assets/img/icon-asc.js +1 -1
  104. package/es/shared/assets/img/icon-desc.js +1 -1
  105. package/es/shared/assets/img/no-permission.js +1 -1
  106. package/es/shared/assets/img/no-permission.png.js +1 -1
  107. package/es/shared/assets/img/nodata.js +1 -1
  108. package/es/shared/assets/img/nodata.png.js +1 -1
  109. package/es/shared/assets/img/notfound.js +1 -1
  110. package/es/shared/assets/img/notfound.png.js +1 -1
  111. package/es/shared/assets/img/qr.js +1 -1
  112. package/es/shared/assets/img/qr.png.js +1 -1
  113. package/es/shared/assets/img/success.js +1 -1
  114. package/es/shared/assets/img/success.png.js +1 -1
  115. package/es/shared/assets/img/video.js +1 -1
  116. package/es/shared/assets/img/video.png.js +1 -1
  117. package/es/shared/assets/img/video_default_cover.js +1 -1
  118. package/es/shared/assets/img/video_default_cover.png.js +1 -1
  119. package/es/shared/assets/img/video_hover.js +1 -1
  120. package/es/shared/assets/img/video_play_hover.js +1 -1
  121. package/es/shared/assets/img/xb_big.js +1 -1
  122. package/es/shared/assets/img/xb_big.png.js +1 -1
  123. package/es/shared/assets/img/xb_small.js +1 -1
  124. package/es/shared/assets/img/xb_small.png.js +1 -1
  125. package/package.json +2 -2
  126. package/es/components/big-table/src/components/edit-form/dist/edit-date.d.ts +0 -36
  127. package/es/components/big-table/src/components/edit-form/dist/edit-select.d.ts +0 -37
  128. package/es/components/big-table/src/components/edit-form/dist/edit-time.d.ts +0 -45
  129. package/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
  130. package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +0 -1
  131. package/es/components/bpmn-workflow/types/ModelingModule.d.ts +0 -1
  132. package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +0 -1
  133. package/es/components/fabric-chart/src/constants/index.d.ts +0 -4
  134. package/es/components/fabric-chart/src/constants/index.js +0 -4
  135. package/es/components/fabric-chart/src/utils/index.d.ts +0 -6823
  136. package/es/components/form-render/src/components/renderer/dist/levelSearchCascader.d.ts +0 -65
  137. package/es/components/form-render/src/components/renderer/dist/radio.d.ts +0 -64
  138. package/es/components/form-render/src/components/renderer/dist/remoteSearch.d.ts +0 -46
  139. package/es/components/form-render/src/components/renderer/dist/search.d.ts +0 -56
  140. package/es/components/form-render/src/components/renderer/dist/select.d.ts +0 -55
  141. package/es/components/iho-table/src/components/dist/IhoTableColumn.d.ts +0 -20
  142. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/dist/index.d.ts +0 -3
  143. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dist/inputRendererPlugin.d.ts +0 -3
  144. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dist/numberRendererPlugin.d.ts +0 -3
  145. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dist/timeRendererPlugin.d.ts +0 -3
  146. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/dist/editSelect.d.ts +0 -42
  147. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/dist/index.d.ts +0 -3
  148. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/dist/index.d.ts +0 -3
  149. package/es/shared/components/VueDraggable/src/vuedraggable.d.ts +0 -86
  150. package/es/shared/utils/tapable/index.d.ts +0 -139

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.