cnhis-design-vue 3.1.22-beta.1 → 3.1.22-beta.11

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 (110) hide show
  1. package/README.md +123 -123
  2. package/es/components/big-table/index.d.ts +0 -8
  3. package/es/components/big-table/index2.js +0 -2
  4. package/es/components/big-table/src/BigTable.vue.d.ts +0 -8
  5. package/es/components/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.js +22 -30
  6. package/es/components/big-table/src/components/edit-form/edit-date.js +81 -10
  7. package/es/components/big-table/src/components/edit-form/edit-input.js +1 -0
  8. package/es/components/big-table/src/components/edit-form/useCommon.d.ts +4 -0
  9. package/es/components/big-table/src/hooks/useEdit2.js +2 -2
  10. package/es/components/big-table/style/index.css +1 -1
  11. package/es/components/{form-render/src/components/index.d.ts → bpmn-workflow/src/BpmnWorkflow.d.ts} +0 -0
  12. package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +1 -0
  13. package/es/components/bpmn-workflow/types/ModelingModule.d.ts +1 -0
  14. package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +1 -0
  15. package/es/components/fabric-chart/index.d.ts +1 -0
  16. package/es/components/fabric-chart/src/FabricChart.js +3 -2
  17. package/es/components/fabric-chart/src/FabricChart.vue.d.ts +1 -0
  18. package/es/components/fabric-chart/src/hooks/useCenter.d.ts +1 -0
  19. package/es/components/fabric-chart/src/hooks/useCenter2.js +15 -3
  20. package/es/components/fabric-chart/src/hooks/useLeft.d.ts +1 -1
  21. package/es/components/fabric-chart/src/hooks/useLeft2.js +7 -5
  22. package/es/components/fabric-chart/src/interface.d.ts +2 -0
  23. package/es/components/fabric-chart/src/utils/index.d.ts +6823 -0
  24. package/es/components/form-render/src/components/renderer/cascader.js +10 -7
  25. package/es/components/form-render/src/components/renderer/combination.d.ts +7 -0
  26. package/es/components/form-render/src/components/renderer/combination.js +4 -1
  27. package/es/components/form-render/src/components/renderer/date.js +11 -4
  28. package/es/components/form-render/src/components/renderer/input.js +2 -2
  29. package/es/components/form-render/src/components/renderer/inputNumber.js +2 -2
  30. package/es/components/form-render/src/components/renderer/search.js +3 -3
  31. package/es/components/form-render/src/components/renderer/select.js +3 -3
  32. package/es/components/form-render/src/components/renderer/textarea.js +2 -2
  33. package/es/components/form-render/src/hooks/useCommonInjection2.js +6 -2
  34. package/es/components/form-render/src/utils/schema.d.ts +4 -1
  35. package/es/components/form-render/src/utils/schema.js +1 -1
  36. package/es/components/form-render/src/utils/schema2.js +9 -2
  37. package/es/components/grid/index2.js +0 -2
  38. package/es/components/iho-table/index.d.ts +4248 -337
  39. package/es/components/iho-table/index.js +2 -2
  40. package/es/components/iho-table/index2.js +9 -4
  41. package/es/components/iho-table/src/IhoTable.js +39 -13
  42. package/es/components/iho-table/src/IhoTable.vue.d.ts +4236 -326
  43. package/es/components/iho-table/src/components/IhoTableColumn.d.ts +2 -2
  44. package/es/components/iho-table/src/components/IhoTableColumn.js +25 -5
  45. package/es/components/iho-table/src/constants/index.d.ts +8 -1
  46. package/es/components/iho-table/src/constants/index.js +1 -1
  47. package/es/components/iho-table/src/constants/index2.js +79 -1
  48. package/es/components/iho-table/src/hooks/index.js +1 -1
  49. package/es/components/iho-table/src/hooks/tapHooks/index.d.ts +7 -0
  50. package/es/components/iho-table/src/hooks/tapHooks/index.js +1 -1
  51. package/es/components/iho-table/src/hooks/tapHooks/index2.js +92 -21
  52. package/es/components/iho-table/src/hooks/tapHooks/useConfigHooks.d.ts +14 -0
  53. package/es/components/iho-table/src/hooks/tapHooks/useConfigHooks2.js +39 -1
  54. package/es/components/iho-table/src/hooks/tapHooks/useDataHooks.d.ts +14 -0
  55. package/es/components/iho-table/src/hooks/tapHooks/useDataHooks.js +1 -0
  56. package/es/components/iho-table/src/hooks/tapHooks/useDataHooks2.js +26 -0
  57. package/es/components/iho-table/src/hooks/tapHooks/useEventHooks.d.ts +61 -60
  58. package/es/components/iho-table/src/hooks/tapHooks/useEventHooks2.js +62 -60
  59. package/es/components/iho-table/src/hooks/tapHooks/useFieldHooks.d.ts +4 -1
  60. package/es/components/iho-table/src/hooks/tapHooks/useFieldHooks2.js +4 -1
  61. package/es/components/iho-table/src/hooks/useTablePlugin.d.ts +2 -2
  62. package/es/components/iho-table/src/hooks/useTablePlugin2.js +2 -3
  63. package/es/components/iho-table/src/plugins/defaultConfigPlugin/index2.js +3 -2
  64. package/es/components/iho-table/src/plugins/index.d.ts +1 -0
  65. package/es/components/iho-table/src/plugins/index.js +8 -5
  66. package/es/components/iho-table/src/plugins/index2.js +8 -5
  67. package/es/components/iho-table/src/plugins/lowCodeFieldAdaptorPlugin/index2.js +10 -4
  68. package/es/components/iho-table/src/plugins/rendererPlugins/index.d.ts +2 -5
  69. package/es/components/iho-table/src/plugins/rendererPlugins/index.js +7 -5
  70. package/es/components/iho-table/src/plugins/rendererPlugins/inputs/index.d.ts +1 -0
  71. package/es/components/iho-table/src/plugins/rendererPlugins/inputs/index.js +1 -0
  72. package/es/components/iho-table/src/plugins/rendererPlugins/inputs/inputRendererPlugins.d.ts +1 -0
  73. package/es/components/iho-table/src/plugins/rendererPlugins/inputs/inputRendererPlugins.js +49 -0
  74. package/es/components/iho-table/src/plugins/rendererPlugins/{checkRendererPlugin.d.ts → widgets/checkRendererPlugin.d.ts} +1 -1
  75. package/es/components/iho-table/src/plugins/rendererPlugins/{checkRendererPlugin.js → widgets/checkRendererPlugin.js} +2 -2
  76. package/es/components/iho-table/src/plugins/rendererPlugins/{colorRendererPlugin.d.ts → widgets/colorRendererPlugin.d.ts} +1 -1
  77. package/es/components/iho-table/src/plugins/rendererPlugins/{colorRendererPlugin.js → widgets/colorRendererPlugin.js} +6 -8
  78. package/es/components/iho-table/src/plugins/rendererPlugins/{defaultRendererPlugin.d.ts → widgets/defaultRendererPlugin.d.ts} +1 -1
  79. package/es/components/iho-table/src/plugins/rendererPlugins/{defaultRendererPlugin.js → widgets/defaultRendererPlugin.js} +4 -4
  80. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/index.d.ts +6 -0
  81. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/index.js +6 -0
  82. package/es/components/iho-table/src/plugins/rendererPlugins/{labelRendererPlugin.d.ts → widgets/labelRendererPlugin.d.ts} +1 -1
  83. package/es/components/iho-table/src/plugins/rendererPlugins/{labelRendererPlugin.js → widgets/labelRendererPlugin.js} +3 -3
  84. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/pictureRendererPlugin.d.ts +2 -0
  85. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/pictureRendererPlugin.js +89 -0
  86. package/es/components/iho-table/src/plugins/rendererPlugins/{seqRendererPlugin.d.ts → widgets/seqRendererPlugin.d.ts} +1 -1
  87. package/es/components/iho-table/src/plugins/rendererPlugins/{seqRendererPlugin.js → widgets/seqRendererPlugin.js} +3 -3
  88. package/es/components/iho-table/src/plugins/rowGroupSettingPlugin/index.d.ts +1 -0
  89. package/es/components/iho-table/src/plugins/rowGroupSettingPlugin/index.js +1 -0
  90. package/es/components/iho-table/src/plugins/rowGroupSettingPlugin/index2.js +72 -0
  91. package/es/components/iho-table/src/types/index.d.ts +31 -8
  92. package/es/components/iho-table/src/types/index.js +1 -1
  93. package/es/components/iho-table/src/types/pluginType.d.ts +102 -65
  94. package/es/components/iho-table/src/types/pluginType.js +1 -1
  95. package/es/components/iho-table/src/types/pluginType2.js +3 -1
  96. package/es/components/iho-table/src/utils/index.d.ts +3 -0
  97. package/es/components/iho-table/src/utils/index.js +1 -1
  98. package/es/components/iho-table/src/utils/index2.js +16 -1
  99. package/es/components/index.css +1 -1
  100. package/es/components/index.js +2 -2
  101. package/es/components/index2.js +1 -1
  102. package/es/components/info-header/style/iconfont.ttf +0 -0
  103. package/es/components/info-header/style/index.css +1 -1
  104. package/es/shared/utils/tapable/SyncHook.js +23 -2
  105. package/es/shared/utils/tapable/index.d.ts +139 -0
  106. package/package.json +4 -4
  107. package/es/components/form-render/src/components/index.js +0 -1
  108. package/es/shared/utils/loadVxe.d.ts +0 -2
  109. package/es/shared/utils/loadVxe.js +0 -1
  110. package/es/shared/utils/loadVxe2.js +0 -12
@@ -1,65 +1,66 @@
1
1
  import { AsyncParallelHook } from '../../../../../../es/shared/utils/tapable';
2
2
  import { VxeTableEvents } from 'vxe-table/types/table';
3
- declare class EventHooks {
4
- readonly onKeydownStart: AsyncParallelHook<[VxeTableEvents.KeydownStart, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
5
- readonly onKeydown: AsyncParallelHook<[VxeTableEvents.Keydown, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
6
- readonly onKeydownEnd: AsyncParallelHook<[VxeTableEvents.KeydownEnd, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
7
- readonly onPaste: AsyncParallelHook<[VxeTableEvents.Paste, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
8
- readonly onCopy: AsyncParallelHook<[VxeTableEvents.Copy, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
9
- readonly onCut: AsyncParallelHook<[VxeTableEvents.Cut, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
10
- readonly onCurrentChange: AsyncParallelHook<[VxeTableEvents.CurrentChange, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
11
- readonly onRadioChange: AsyncParallelHook<[VxeTableEvents.RadioChange, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
12
- readonly onCheckboxChange: AsyncParallelHook<[VxeTableEvents.CheckboxChange, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
13
- readonly onCheckboxAll: AsyncParallelHook<[VxeTableEvents.CheckboxAll, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
14
- readonly onCheckboxRangeStart: AsyncParallelHook<[VxeTableEvents.CheckboxRangeStart, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
15
- readonly onCheckboxRangeChange: AsyncParallelHook<[VxeTableEvents.CheckboxRangeChange, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
16
- readonly onCheckboxRangeEnd: AsyncParallelHook<[VxeTableEvents.CheckboxRangeEnd, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
17
- readonly onCellClick: AsyncParallelHook<[VxeTableEvents.CellClick, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
18
- readonly onCellDblclick: AsyncParallelHook<[VxeTableEvents.CellDblclick, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
19
- readonly onCellMenu: AsyncParallelHook<[VxeTableEvents.CellMenu, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
20
- readonly onCellMouseenter: AsyncParallelHook<[VxeTableEvents.CellMouseenter, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
21
- readonly onCellMouseleave: AsyncParallelHook<[VxeTableEvents.CellMouseleave, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
22
- readonly onHeaderCellClick: AsyncParallelHook<[VxeTableEvents.HeaderCellClick, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
23
- readonly onHeaderCellDblclick: AsyncParallelHook<[VxeTableEvents.HeaderCellDblclick, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
24
- readonly onHeaderCellMenu: AsyncParallelHook<[VxeTableEvents.HeaderCellMenu, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
25
- readonly onFooterCellClick: AsyncParallelHook<[VxeTableEvents.FooterCellClick, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
26
- readonly onFooterCellDblclick: AsyncParallelHook<[VxeTableEvents.FooterCellDblclick, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
27
- readonly onFooterCellMenu: AsyncParallelHook<[VxeTableEvents.FooterCellMenu, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
28
- readonly onSortChange: AsyncParallelHook<[VxeTableEvents.SortChange, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
29
- readonly onFilterChange: AsyncParallelHook<[VxeTableEvents.FilterChange, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
30
- readonly onFilterVisible: AsyncParallelHook<[VxeTableEvents.FilterVisible, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
31
- readonly onResizableChange: AsyncParallelHook<[VxeTableEvents.ResizableChange, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
32
- readonly onToggleRowExpand: AsyncParallelHook<[VxeTableEvents.ToggleRowExpand, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
33
- readonly onToggleTreeExpand: AsyncParallelHook<[VxeTableEvents.ToggleTreeExpand, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
34
- readonly onMenuClick: AsyncParallelHook<[VxeTableEvents.MenuClick, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
35
- readonly onEditClosed: AsyncParallelHook<[VxeTableEvents.EditClosed, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
36
- readonly onEditActived: AsyncParallelHook<[VxeTableEvents.EditActived, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
37
- readonly onEditDisabled: AsyncParallelHook<[VxeTableEvents.EditDisabled, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
38
- readonly onValidError: AsyncParallelHook<[VxeTableEvents.ValidError, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
39
- readonly onScroll: AsyncParallelHook<[VxeTableEvents.Scroll, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
40
- readonly onCustom: AsyncParallelHook<[VxeTableEvents.Custom, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
41
- readonly onOpenFnr: AsyncParallelHook<[VxeTableEvents.OpenFnr, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
42
- readonly onFnrChange: AsyncParallelHook<[VxeTableEvents.FnrChange, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
43
- readonly onFnrFind: AsyncParallelHook<[VxeTableEvents.FnrFind, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
44
- readonly onFnrFindAll: AsyncParallelHook<[VxeTableEvents.FnrFindAll, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
45
- readonly onFnrReplace: AsyncParallelHook<[VxeTableEvents.FnrReplace, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
46
- readonly onFnrReplaceAll: AsyncParallelHook<[VxeTableEvents.FnrReplaceAll, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
47
- readonly onCellAreaCopy: AsyncParallelHook<[VxeTableEvents.CellAreaCopy, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
48
- readonly onCellAreaCut: AsyncParallelHook<[VxeTableEvents.CellAreaCut, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
49
- readonly onCellAreaPaste: AsyncParallelHook<[VxeTableEvents.CellAreaPaste, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
50
- readonly onCellAreaMerge: AsyncParallelHook<[VxeTableEvents.CellAreaMerge, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
51
- readonly onClearCellAreaMerge: AsyncParallelHook<[VxeTableEvents.ClearCellAreaMerge, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
52
- readonly onHeaderCellAreaSelection: AsyncParallelHook<[VxeTableEvents.HeaderCellAreaSelection, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
53
- readonly onCellAreaSelectionStart: AsyncParallelHook<[VxeTableEvents.CellAreaSelectionStart, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
54
- readonly onCellAreaSelectionDrag: AsyncParallelHook<[VxeTableEvents.CellAreaSelectionDrag, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
55
- readonly onCellAreaSelectionEnd: AsyncParallelHook<[VxeTableEvents.CellAreaSelectionEnd, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
56
- readonly onCellAreaExtensionStart: AsyncParallelHook<[VxeTableEvents.CellAreaExtensionStart, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
57
- readonly onCellAreaExtensionDrag: AsyncParallelHook<[VxeTableEvents.CellAreaExtensionDrag, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
58
- readonly onCellAreaExtensionEnd: AsyncParallelHook<[VxeTableEvents.CellAreaExtensionEnd, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
59
- readonly onCellAreaArrowsStart: AsyncParallelHook<[VxeTableEvents.CellAreaArrowsStart, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
60
- readonly onCellAreaArrowsEnd: AsyncParallelHook<[VxeTableEvents.CellAreaArrowsEnd, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
61
- readonly onActiveCellChangeStart: AsyncParallelHook<[VxeTableEvents.ActiveCellChangeStart, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
62
- readonly onActiveCellChangeEnd: AsyncParallelHook<[VxeTableEvents.ActiveCellChangeEnd, import("../../../../../../es/components/iho-table").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
3
+ import { AbstractEventHooks } from '../../../../../../es/components/iho-table/src/types';
4
+ declare class EventHooks extends AbstractEventHooks {
5
+ readonly onKeydownStart: AsyncParallelHook<[VxeTableEvents.KeydownStart, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
6
+ readonly onKeydown: AsyncParallelHook<[VxeTableEvents.Keydown, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
7
+ readonly onKeydownEnd: AsyncParallelHook<[VxeTableEvents.KeydownEnd, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
8
+ readonly onPaste: AsyncParallelHook<[VxeTableEvents.Paste, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
9
+ readonly onCopy: AsyncParallelHook<[VxeTableEvents.Copy, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
10
+ readonly onCut: AsyncParallelHook<[VxeTableEvents.Cut, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
11
+ readonly onCurrentChange: AsyncParallelHook<[VxeTableEvents.CurrentChange, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
12
+ readonly onRadioChange: AsyncParallelHook<[VxeTableEvents.RadioChange, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
13
+ readonly onCheckboxChange: AsyncParallelHook<[VxeTableEvents.CheckboxChange, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
14
+ readonly onCheckboxAll: AsyncParallelHook<[VxeTableEvents.CheckboxAll, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
15
+ readonly onCheckboxRangeStart: AsyncParallelHook<[VxeTableEvents.CheckboxRangeStart, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
16
+ readonly onCheckboxRangeChange: AsyncParallelHook<[VxeTableEvents.CheckboxRangeChange, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
17
+ readonly onCheckboxRangeEnd: AsyncParallelHook<[VxeTableEvents.CheckboxRangeEnd, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
18
+ readonly onCellClick: AsyncParallelHook<[VxeTableEvents.CellClick, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
19
+ readonly onCellDblclick: AsyncParallelHook<[VxeTableEvents.CellDblclick, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
20
+ readonly onCellMenu: AsyncParallelHook<[VxeTableEvents.CellMenu, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
21
+ readonly onCellMouseenter: AsyncParallelHook<[VxeTableEvents.CellMouseenter, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
22
+ readonly onCellMouseleave: AsyncParallelHook<[VxeTableEvents.CellMouseleave, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
23
+ readonly onHeaderCellClick: AsyncParallelHook<[VxeTableEvents.HeaderCellClick, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
24
+ readonly onHeaderCellDblclick: AsyncParallelHook<[VxeTableEvents.HeaderCellDblclick, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
25
+ readonly onHeaderCellMenu: AsyncParallelHook<[VxeTableEvents.HeaderCellMenu, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
26
+ readonly onFooterCellClick: AsyncParallelHook<[VxeTableEvents.FooterCellClick, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
27
+ readonly onFooterCellDblclick: AsyncParallelHook<[VxeTableEvents.FooterCellDblclick, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
28
+ readonly onFooterCellMenu: AsyncParallelHook<[VxeTableEvents.FooterCellMenu, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
29
+ readonly onSortChange: AsyncParallelHook<[VxeTableEvents.SortChange, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
30
+ readonly onFilterChange: AsyncParallelHook<[VxeTableEvents.FilterChange, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
31
+ readonly onFilterVisible: AsyncParallelHook<[VxeTableEvents.FilterVisible, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
32
+ readonly onResizableChange: AsyncParallelHook<[VxeTableEvents.ResizableChange, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
33
+ readonly onToggleRowExpand: AsyncParallelHook<[VxeTableEvents.ToggleRowExpand, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
34
+ readonly onToggleTreeExpand: AsyncParallelHook<[VxeTableEvents.ToggleTreeExpand, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
35
+ readonly onMenuClick: AsyncParallelHook<[VxeTableEvents.MenuClick, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
36
+ readonly onEditClosed: AsyncParallelHook<[VxeTableEvents.EditClosed, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
37
+ readonly onEditActived: AsyncParallelHook<[VxeTableEvents.EditActived, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
38
+ readonly onEditDisabled: AsyncParallelHook<[VxeTableEvents.EditDisabled, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
39
+ readonly onValidError: AsyncParallelHook<[VxeTableEvents.ValidError, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
40
+ readonly onScroll: AsyncParallelHook<[VxeTableEvents.Scroll, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
41
+ readonly onCustom: AsyncParallelHook<[VxeTableEvents.Custom, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
42
+ readonly onOpenFnr: AsyncParallelHook<[VxeTableEvents.OpenFnr, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
43
+ readonly onFnrChange: AsyncParallelHook<[VxeTableEvents.FnrChange, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
44
+ readonly onFnrFind: AsyncParallelHook<[VxeTableEvents.FnrFind, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
45
+ readonly onFnrFindAll: AsyncParallelHook<[VxeTableEvents.FnrFindAll, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
46
+ readonly onFnrReplace: AsyncParallelHook<[VxeTableEvents.FnrReplace, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
47
+ readonly onFnrReplaceAll: AsyncParallelHook<[VxeTableEvents.FnrReplaceAll, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
48
+ readonly onCellAreaCopy: AsyncParallelHook<[VxeTableEvents.CellAreaCopy, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
49
+ readonly onCellAreaCut: AsyncParallelHook<[VxeTableEvents.CellAreaCut, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
50
+ readonly onCellAreaPaste: AsyncParallelHook<[VxeTableEvents.CellAreaPaste, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
51
+ readonly onCellAreaMerge: AsyncParallelHook<[VxeTableEvents.CellAreaMerge, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
52
+ readonly onClearCellAreaMerge: AsyncParallelHook<[VxeTableEvents.ClearCellAreaMerge, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
53
+ readonly onHeaderCellAreaSelection: AsyncParallelHook<[VxeTableEvents.HeaderCellAreaSelection, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
54
+ readonly onCellAreaSelectionStart: AsyncParallelHook<[VxeTableEvents.CellAreaSelectionStart, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
55
+ readonly onCellAreaSelectionDrag: AsyncParallelHook<[VxeTableEvents.CellAreaSelectionDrag, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
56
+ readonly onCellAreaSelectionEnd: AsyncParallelHook<[VxeTableEvents.CellAreaSelectionEnd, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
57
+ readonly onCellAreaExtensionStart: AsyncParallelHook<[VxeTableEvents.CellAreaExtensionStart, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
58
+ readonly onCellAreaExtensionDrag: AsyncParallelHook<[VxeTableEvents.CellAreaExtensionDrag, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
59
+ readonly onCellAreaExtensionEnd: AsyncParallelHook<[VxeTableEvents.CellAreaExtensionEnd, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
60
+ readonly onCellAreaArrowsStart: AsyncParallelHook<[VxeTableEvents.CellAreaArrowsStart, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
61
+ readonly onCellAreaArrowsEnd: AsyncParallelHook<[VxeTableEvents.CellAreaArrowsEnd, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
62
+ readonly onActiveCellChangeStart: AsyncParallelHook<[VxeTableEvents.ActiveCellChangeStart, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
63
+ readonly onActiveCellChangeEnd: AsyncParallelHook<[VxeTableEvents.ActiveCellChangeEnd, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
63
64
  }
64
65
  export declare function useEventHooks(): {
65
66
  create: () => EventHooks;
@@ -8,68 +8,70 @@ import '../../../../../shared/utils/tapable/AsyncSeriesHook.js';
8
8
  import '../../../../../shared/utils/tapable/AsyncSeriesBailHook.js';
9
9
  import '../../../../../shared/utils/tapable/AsyncSeriesLoopHook.js';
10
10
  import '../../../../../shared/utils/tapable/AsyncSeriesWaterfallHook.js';
11
+ import { AbstractEventHooks } from '../../types/pluginType2.js';
11
12
 
12
- class EventHooks {
13
+ class EventHooks extends AbstractEventHooks {
13
14
  constructor() {
14
- this.onKeydownStart = new AsyncParallelHook(["event", "config"]);
15
- this.onKeydown = new AsyncParallelHook(["event", "config"]);
16
- this.onKeydownEnd = new AsyncParallelHook(["event", "config"]);
17
- this.onPaste = new AsyncParallelHook(["event", "config"]);
18
- this.onCopy = new AsyncParallelHook(["event", "config"]);
19
- this.onCut = new AsyncParallelHook(["event", "config"]);
20
- this.onCurrentChange = new AsyncParallelHook(["event", "config"]);
21
- this.onRadioChange = new AsyncParallelHook(["event", "config"]);
22
- this.onCheckboxChange = new AsyncParallelHook(["event", "config"]);
23
- this.onCheckboxAll = new AsyncParallelHook(["event", "config"]);
24
- this.onCheckboxRangeStart = new AsyncParallelHook(["event", "config"]);
25
- this.onCheckboxRangeChange = new AsyncParallelHook(["event", "config"]);
26
- this.onCheckboxRangeEnd = new AsyncParallelHook(["event", "config"]);
27
- this.onCellClick = new AsyncParallelHook(["event", "config"]);
28
- this.onCellDblclick = new AsyncParallelHook(["event", "config"]);
29
- this.onCellMenu = new AsyncParallelHook(["event", "config"]);
30
- this.onCellMouseenter = new AsyncParallelHook(["event", "config"]);
31
- this.onCellMouseleave = new AsyncParallelHook(["event", "config"]);
32
- this.onHeaderCellClick = new AsyncParallelHook(["event", "config"]);
33
- this.onHeaderCellDblclick = new AsyncParallelHook(["event", "config"]);
34
- this.onHeaderCellMenu = new AsyncParallelHook(["event", "config"]);
35
- this.onFooterCellClick = new AsyncParallelHook(["event", "config"]);
36
- this.onFooterCellDblclick = new AsyncParallelHook(["event", "config"]);
37
- this.onFooterCellMenu = new AsyncParallelHook(["event", "config"]);
38
- this.onSortChange = new AsyncParallelHook(["event", "config"]);
39
- this.onFilterChange = new AsyncParallelHook(["event", "config"]);
40
- this.onFilterVisible = new AsyncParallelHook(["event", "config"]);
41
- this.onResizableChange = new AsyncParallelHook(["event", "config"]);
42
- this.onToggleRowExpand = new AsyncParallelHook(["event", "config"]);
43
- this.onToggleTreeExpand = new AsyncParallelHook(["event", "config"]);
44
- this.onMenuClick = new AsyncParallelHook(["event", "config"]);
45
- this.onEditClosed = new AsyncParallelHook(["event", "config"]);
46
- this.onEditActived = new AsyncParallelHook(["event", "config"]);
47
- this.onEditDisabled = new AsyncParallelHook(["event", "config"]);
48
- this.onValidError = new AsyncParallelHook(["event", "config"]);
49
- this.onScroll = new AsyncParallelHook(["event", "config"]);
50
- this.onCustom = new AsyncParallelHook(["event", "config"]);
51
- this.onOpenFnr = new AsyncParallelHook(["event", "config"]);
52
- this.onFnrChange = new AsyncParallelHook(["event", "config"]);
53
- this.onFnrFind = new AsyncParallelHook(["event", "config"]);
54
- this.onFnrFindAll = new AsyncParallelHook(["event", "config"]);
55
- this.onFnrReplace = new AsyncParallelHook(["event", "config"]);
56
- this.onFnrReplaceAll = new AsyncParallelHook(["event", "config"]);
57
- this.onCellAreaCopy = new AsyncParallelHook(["event", "config"]);
58
- this.onCellAreaCut = new AsyncParallelHook(["event", "config"]);
59
- this.onCellAreaPaste = new AsyncParallelHook(["event", "config"]);
60
- this.onCellAreaMerge = new AsyncParallelHook(["event", "config"]);
61
- this.onClearCellAreaMerge = new AsyncParallelHook(["event", "config"]);
62
- this.onHeaderCellAreaSelection = new AsyncParallelHook(["event", "config"]);
63
- this.onCellAreaSelectionStart = new AsyncParallelHook(["event", "config"]);
64
- this.onCellAreaSelectionDrag = new AsyncParallelHook(["event", "config"]);
65
- this.onCellAreaSelectionEnd = new AsyncParallelHook(["event", "config"]);
66
- this.onCellAreaExtensionStart = new AsyncParallelHook(["event", "config"]);
67
- this.onCellAreaExtensionDrag = new AsyncParallelHook(["event", "config"]);
68
- this.onCellAreaExtensionEnd = new AsyncParallelHook(["event", "config"]);
69
- this.onCellAreaArrowsStart = new AsyncParallelHook(["event", "config"]);
70
- this.onCellAreaArrowsEnd = new AsyncParallelHook(["event", "config"]);
71
- this.onActiveCellChangeStart = new AsyncParallelHook(["event", "config"]);
72
- this.onActiveCellChangeEnd = new AsyncParallelHook(["event", "config"]);
15
+ super(...arguments);
16
+ this.onKeydownStart = new AsyncParallelHook(["event", "config", "$table"]);
17
+ this.onKeydown = new AsyncParallelHook(["event", "config", "$table"]);
18
+ this.onKeydownEnd = new AsyncParallelHook(["event", "config", "$table"]);
19
+ this.onPaste = new AsyncParallelHook(["event", "config", "$table"]);
20
+ this.onCopy = new AsyncParallelHook(["event", "config", "$table"]);
21
+ this.onCut = new AsyncParallelHook(["event", "config", "$table"]);
22
+ this.onCurrentChange = new AsyncParallelHook(["event", "config", "$table"]);
23
+ this.onRadioChange = new AsyncParallelHook(["event", "config", "$table"]);
24
+ this.onCheckboxChange = new AsyncParallelHook(["event", "config", "$table"]);
25
+ this.onCheckboxAll = new AsyncParallelHook(["event", "config", "$table"]);
26
+ this.onCheckboxRangeStart = new AsyncParallelHook(["event", "config", "$table"]);
27
+ this.onCheckboxRangeChange = new AsyncParallelHook(["event", "config", "$table"]);
28
+ this.onCheckboxRangeEnd = new AsyncParallelHook(["event", "config", "$table"]);
29
+ this.onCellClick = new AsyncParallelHook(["event", "config", "$table"]);
30
+ this.onCellDblclick = new AsyncParallelHook(["event", "config", "$table"]);
31
+ this.onCellMenu = new AsyncParallelHook(["event", "config", "$table"]);
32
+ this.onCellMouseenter = new AsyncParallelHook(["event", "config", "$table"]);
33
+ this.onCellMouseleave = new AsyncParallelHook(["event", "config", "$table"]);
34
+ this.onHeaderCellClick = new AsyncParallelHook(["event", "config", "$table"]);
35
+ this.onHeaderCellDblclick = new AsyncParallelHook(["event", "config", "$table"]);
36
+ this.onHeaderCellMenu = new AsyncParallelHook(["event", "config", "$table"]);
37
+ this.onFooterCellClick = new AsyncParallelHook(["event", "config", "$table"]);
38
+ this.onFooterCellDblclick = new AsyncParallelHook(["event", "config", "$table"]);
39
+ this.onFooterCellMenu = new AsyncParallelHook(["event", "config", "$table"]);
40
+ this.onSortChange = new AsyncParallelHook(["event", "config", "$table"]);
41
+ this.onFilterChange = new AsyncParallelHook(["event", "config", "$table"]);
42
+ this.onFilterVisible = new AsyncParallelHook(["event", "config", "$table"]);
43
+ this.onResizableChange = new AsyncParallelHook(["event", "config", "$table"]);
44
+ this.onToggleRowExpand = new AsyncParallelHook(["event", "config", "$table"]);
45
+ this.onToggleTreeExpand = new AsyncParallelHook(["event", "config", "$table"]);
46
+ this.onMenuClick = new AsyncParallelHook(["event", "config", "$table"]);
47
+ this.onEditClosed = new AsyncParallelHook(["event", "config", "$table"]);
48
+ this.onEditActived = new AsyncParallelHook(["event", "config", "$table"]);
49
+ this.onEditDisabled = new AsyncParallelHook(["event", "config", "$table"]);
50
+ this.onValidError = new AsyncParallelHook(["event", "config", "$table"]);
51
+ this.onScroll = new AsyncParallelHook(["event", "config", "$table"]);
52
+ this.onCustom = new AsyncParallelHook(["event", "config", "$table"]);
53
+ this.onOpenFnr = new AsyncParallelHook(["event", "config", "$table"]);
54
+ this.onFnrChange = new AsyncParallelHook(["event", "config", "$table"]);
55
+ this.onFnrFind = new AsyncParallelHook(["event", "config", "$table"]);
56
+ this.onFnrFindAll = new AsyncParallelHook(["event", "config", "$table"]);
57
+ this.onFnrReplace = new AsyncParallelHook(["event", "config", "$table"]);
58
+ this.onFnrReplaceAll = new AsyncParallelHook(["event", "config", "$table"]);
59
+ this.onCellAreaCopy = new AsyncParallelHook(["event", "config", "$table"]);
60
+ this.onCellAreaCut = new AsyncParallelHook(["event", "config", "$table"]);
61
+ this.onCellAreaPaste = new AsyncParallelHook(["event", "config", "$table"]);
62
+ this.onCellAreaMerge = new AsyncParallelHook(["event", "config", "$table"]);
63
+ this.onClearCellAreaMerge = new AsyncParallelHook(["event", "config", "$table"]);
64
+ this.onHeaderCellAreaSelection = new AsyncParallelHook(["event", "config", "$table"]);
65
+ this.onCellAreaSelectionStart = new AsyncParallelHook(["event", "config", "$table"]);
66
+ this.onCellAreaSelectionDrag = new AsyncParallelHook(["event", "config", "$table"]);
67
+ this.onCellAreaSelectionEnd = new AsyncParallelHook(["event", "config", "$table"]);
68
+ this.onCellAreaExtensionStart = new AsyncParallelHook(["event", "config", "$table"]);
69
+ this.onCellAreaExtensionDrag = new AsyncParallelHook(["event", "config", "$table"]);
70
+ this.onCellAreaExtensionEnd = new AsyncParallelHook(["event", "config", "$table"]);
71
+ this.onCellAreaArrowsStart = new AsyncParallelHook(["event", "config", "$table"]);
72
+ this.onCellAreaArrowsEnd = new AsyncParallelHook(["event", "config", "$table"]);
73
+ this.onActiveCellChangeStart = new AsyncParallelHook(["event", "config", "$table"]);
74
+ this.onActiveCellChangeEnd = new AsyncParallelHook(["event", "config", "$table"]);
73
75
  }
74
76
  }
75
77
  function useEventHooks() {
@@ -1,8 +1,11 @@
1
- import { SyncWaterfallHook } from '../../../../../../es/shared/utils/tapable';
1
+ import { AsyncParallelHook, SyncWaterfallHook } from '../../../../../../es/shared/utils/tapable';
2
2
  import { FieldHookContext, IhoTableFieldItem } from '../../../../../../es/components/iho-table/src/types';
3
3
  import { AbstractFieldHooks } from '../../../../../../es/components/iho-table/src/types';
4
4
  declare class FieldHooks extends AbstractFieldHooks {
5
+ readonly fieldStart: AsyncParallelHook<[import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
5
6
  readonly field: SyncWaterfallHook<[IhoTableFieldItem, FieldHookContext, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
7
+ readonly fieldList: SyncWaterfallHook<[IhoTableFieldItem[], import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
8
+ readonly fieldEnd: AsyncParallelHook<[import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
6
9
  }
7
10
  export declare function useFieldHooks(): {
8
11
  create: () => FieldHooks;
@@ -2,7 +2,7 @@ import '../../../../../shared/utils/tapable/SyncHook.js';
2
2
  import '../../../../../shared/utils/tapable/SyncBailHook.js';
3
3
  import SyncWaterfallHook from '../../../../../shared/utils/tapable/SyncWaterfallHook.js';
4
4
  import '../../../../../shared/utils/tapable/SyncLoopHook.js';
5
- import '../../../../../shared/utils/tapable/AsyncParallelHook.js';
5
+ import AsyncParallelHook from '../../../../../shared/utils/tapable/AsyncParallelHook.js';
6
6
  import '../../../../../shared/utils/tapable/AsyncParallelBailHook.js';
7
7
  import '../../../../../shared/utils/tapable/AsyncSeriesHook.js';
8
8
  import '../../../../../shared/utils/tapable/AsyncSeriesBailHook.js';
@@ -13,11 +13,14 @@ import { AbstractFieldHooks } from '../../types/pluginType2.js';
13
13
  class FieldHooks extends AbstractFieldHooks {
14
14
  constructor() {
15
15
  super(...arguments);
16
+ this.fieldStart = new AsyncParallelHook(["config"]);
16
17
  this.field = new SyncWaterfallHook([
17
18
  "fieldItem",
18
19
  "context",
19
20
  "config"
20
21
  ]);
22
+ this.fieldList = new SyncWaterfallHook(["fieldList", "config"]);
23
+ this.fieldEnd = new AsyncParallelHook(["config"]);
21
24
  }
22
25
  }
23
26
  function useFieldHooks() {
@@ -1,7 +1,7 @@
1
1
  import { ArrayAble } from '../../../../../es/shared/types';
2
- import { TablePlugin } from '../../../../../es/components/iho-table/src/types';
2
+ import { IhoTableInstance, TablePlugin } from '../../../../../es/components/iho-table/src/types';
3
3
  export declare function useTablePlugin(): {
4
- use: (plugin: ArrayAble<TablePlugin>) => {
4
+ use: (plugin: ArrayAble<TablePlugin>, instance: IhoTableInstance) => {
5
5
  use: any;
6
6
  };
7
7
  };
@@ -1,13 +1,12 @@
1
1
  import { arrayed } from '../../../../shared/utils/index2.js';
2
2
  import { isFunction } from 'lodash-es';
3
- import VXETable from 'vxe-table';
4
3
  import { createTableHooks } from './tapHooks/index2.js';
5
4
 
6
5
  function useTablePlugin() {
7
6
  const hooks = createTableHooks();
8
- function use(plugin) {
7
+ function use(plugin, instance) {
9
8
  arrayed(plugin).forEach(({ vxe, apply }) => {
10
- isFunction(vxe) && vxe(VXETable);
9
+ isFunction(vxe) && vxe(instance);
11
10
  isFunction(apply) && apply(hooks);
12
11
  });
13
12
  return { use };
@@ -1,4 +1,5 @@
1
1
  import { mergeWith } from 'lodash-es';
2
+ import { HIGHEST_PRIORITY } from '../../constants/index2.js';
2
3
  import { defineTablePlugin } from '../../hooks/useTablePlugin2.js';
3
4
 
4
5
  function defaultConfigPlugin() {
@@ -6,7 +7,7 @@ function defaultConfigPlugin() {
6
7
  return defineTablePlugin({
7
8
  name: pluginName,
8
9
  apply(hooks) {
9
- hooks.configHooks.config.tap({ name: pluginName, stage: 9999 }, (config) => {
10
+ hooks.configHooks.config.tap({ name: pluginName, stage: HIGHEST_PRIORITY }, (config) => {
10
11
  return mergeWith({
11
12
  height: "100%",
12
13
  border: true,
@@ -15,7 +16,7 @@ function defaultConfigPlugin() {
15
16
  columnConfig: { resizable: true },
16
17
  rowConfig: { height: 32, isHover: true, isCurrent: true, keyField: "theUniqueKey" },
17
18
  editConfig: {
18
- trigger: "manual",
19
+ trigger: "click",
19
20
  mode: "cell",
20
21
  autoClear: false,
21
22
  showIcon: false
@@ -1,3 +1,4 @@
1
1
  export * from './defaultConfigPlugin';
2
2
  export * from './lowCodeFieldAdaptorPlugin';
3
3
  export * from './rendererPlugins';
4
+ export * from './rowGroupSettingPlugin';
@@ -1,7 +1,10 @@
1
1
  export { defaultConfigPlugin } from './defaultConfigPlugin/index2.js';
2
2
  export { lowCodeFieldAdaptorPlugin } from './lowCodeFieldAdaptorPlugin/index2.js';
3
- export { labelRendererPlugin } from './rendererPlugins/labelRendererPlugin.js';
4
- export { defaultRendererPlugin } from './rendererPlugins/defaultRendererPlugin.js';
5
- export { colorRendererPlugin } from './rendererPlugins/colorRendererPlugin.js';
6
- export { seqRendererPlugin } from './rendererPlugins/seqRendererPlugin.js';
7
- export { checkRendererPlugin } from './rendererPlugins/checkRendererPlugin.js';
3
+ export { labelRendererPlugin } from './rendererPlugins/widgets/labelRendererPlugin.js';
4
+ export { defaultRendererPlugin } from './rendererPlugins/widgets/defaultRendererPlugin.js';
5
+ export { colorRendererPlugin } from './rendererPlugins/widgets/colorRendererPlugin.js';
6
+ export { seqRendererPlugin } from './rendererPlugins/widgets/seqRendererPlugin.js';
7
+ export { checkRendererPlugin } from './rendererPlugins/widgets/checkRendererPlugin.js';
8
+ export { pictureRendererPlugin } from './rendererPlugins/widgets/pictureRendererPlugin.js';
9
+ export { inputRendererPlugins } from './rendererPlugins/inputs/inputRendererPlugins.js';
10
+ export { rowGroupSettingPlugin } from './rowGroupSettingPlugin/index2.js';
@@ -1,7 +1,10 @@
1
1
  export { defaultConfigPlugin } from './defaultConfigPlugin/index2.js';
2
2
  export { lowCodeFieldAdaptorPlugin } from './lowCodeFieldAdaptorPlugin/index2.js';
3
- export { labelRendererPlugin } from './rendererPlugins/labelRendererPlugin.js';
4
- export { defaultRendererPlugin } from './rendererPlugins/defaultRendererPlugin.js';
5
- export { colorRendererPlugin } from './rendererPlugins/colorRendererPlugin.js';
6
- export { seqRendererPlugin } from './rendererPlugins/seqRendererPlugin.js';
7
- export { checkRendererPlugin } from './rendererPlugins/checkRendererPlugin.js';
3
+ export { labelRendererPlugin } from './rendererPlugins/widgets/labelRendererPlugin.js';
4
+ export { defaultRendererPlugin } from './rendererPlugins/widgets/defaultRendererPlugin.js';
5
+ export { colorRendererPlugin } from './rendererPlugins/widgets/colorRendererPlugin.js';
6
+ export { seqRendererPlugin } from './rendererPlugins/widgets/seqRendererPlugin.js';
7
+ export { checkRendererPlugin } from './rendererPlugins/widgets/checkRendererPlugin.js';
8
+ export { pictureRendererPlugin } from './rendererPlugins/widgets/pictureRendererPlugin.js';
9
+ export { inputRendererPlugins } from './rendererPlugins/inputs/inputRendererPlugins.js';
10
+ export { rowGroupSettingPlugin } from './rowGroupSettingPlugin/index2.js';
@@ -1,4 +1,5 @@
1
1
  import { pick } from 'lodash-es';
2
+ import { HIGHEST_PRIORITY, WIDGET_TYPE } from '../../constants/index2.js';
2
3
  import { defineTablePlugin } from '../../hooks/useTablePlugin2.js';
3
4
 
4
5
  function lowCodeFieldAdaptorPlugin() {
@@ -6,7 +7,7 @@ function lowCodeFieldAdaptorPlugin() {
6
7
  return defineTablePlugin({
7
8
  name: pluginName,
8
9
  apply(hooks) {
9
- hooks.fieldHooks.field.tap({ name: pluginName, stage: -9999 }, (field) => {
10
+ hooks.fieldHooks.field.tap({ name: pluginName, stage: HIGHEST_PRIORITY }, (field) => {
10
11
  const _field = field;
11
12
  const result = {
12
13
  field: _field.columnName,
@@ -14,13 +15,18 @@ function lowCodeFieldAdaptorPlugin() {
14
15
  showOverflow: "tooltip",
15
16
  ...pick(_field, ["title"])
16
17
  };
17
- if (_field.settingObj) {
18
- result.editRender = { name: _field.settingObj.attr || "DEFAULT" };
19
- }
18
+ settingObjAdaptor(_field.settingObj, result);
20
19
  return result;
21
20
  });
22
21
  }
23
22
  });
24
23
  }
24
+ function settingObjAdaptor(settingObj, fieldItem) {
25
+ if (!settingObj)
26
+ return;
27
+ fieldItem.editRender = { name: settingObj.attr || "DEFAULT" };
28
+ fieldItem.editRender.enabled = !Reflect.get(WIDGET_TYPE, fieldItem.editRender.name);
29
+ fieldItem.visible = settingObj.isHide !== "1";
30
+ }
25
31
 
26
32
  export { lowCodeFieldAdaptorPlugin };
@@ -1,5 +1,2 @@
1
- export * from './labelRendererPlugin';
2
- export * from './defaultRendererPlugin';
3
- export * from './colorRendererPlugin';
4
- export * from './seqRendererPlugin';
5
- export * from './checkRendererPlugin';
1
+ export * from './widgets';
2
+ export * from './inputs';
@@ -1,5 +1,7 @@
1
- export { labelRendererPlugin } from './labelRendererPlugin.js';
2
- export { defaultRendererPlugin } from './defaultRendererPlugin.js';
3
- export { colorRendererPlugin } from './colorRendererPlugin.js';
4
- export { seqRendererPlugin } from './seqRendererPlugin.js';
5
- export { checkRendererPlugin } from './checkRendererPlugin.js';
1
+ export { labelRendererPlugin } from './widgets/labelRendererPlugin.js';
2
+ export { defaultRendererPlugin } from './widgets/defaultRendererPlugin.js';
3
+ export { colorRendererPlugin } from './widgets/colorRendererPlugin.js';
4
+ export { seqRendererPlugin } from './widgets/seqRendererPlugin.js';
5
+ export { checkRendererPlugin } from './widgets/checkRendererPlugin.js';
6
+ export { pictureRendererPlugin } from './widgets/pictureRendererPlugin.js';
7
+ export { inputRendererPlugins } from './inputs/inputRendererPlugins.js';
@@ -0,0 +1 @@
1
+ export * from './inputRendererPlugins';
@@ -0,0 +1 @@
1
+ export { inputRendererPlugins } from './inputRendererPlugins.js';
@@ -0,0 +1 @@
1
+ export declare function inputRendererPlugins(): import("../../../../../../../es/components/iho-table").TablePlugin;