cnhis-design-vue 3.1.33-beta.21 → 3.1.33-beta.23

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 (64) hide show
  1. package/README.md +123 -123
  2. package/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
  3. package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +1 -0
  4. package/es/components/bpmn-workflow/types/ModelingModule.d.ts +1 -0
  5. package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +1 -0
  6. package/es/components/fabric-chart/src/utils/index.d.ts +6823 -0
  7. package/es/components/iho-table/index.d.ts +4 -3
  8. package/es/components/iho-table/src/IhoTable.vue.d.ts +4 -3
  9. package/es/components/iho-table/src/IhoTable.vue.js +6 -4
  10. package/es/components/iho-table/src/constants/index.d.ts +3 -3
  11. package/es/components/iho-table/src/constants/index.js +0 -1
  12. package/es/components/iho-table/src/hooks/tapHooks/index.d.ts +5 -1
  13. package/es/components/iho-table/src/hooks/tapHooks/index.js +10 -9
  14. package/es/components/iho-table/src/hooks/tapHooks/useDataHooks.d.ts +2 -2
  15. package/es/components/iho-table/src/hooks/tapHooks/useEventHooks.d.ts +119 -119
  16. package/es/components/iho-table/src/hooks/tapHooks/useExposeHooks.d.ts +5 -3
  17. package/es/components/iho-table/src/hooks/tapHooks/useExposeHooks.js +1 -1
  18. package/es/components/iho-table/src/hooks/tapHooks/useFieldHooks.d.ts +16 -4
  19. package/es/components/iho-table/src/hooks/tapHooks/useFieldHooks.js +9 -4
  20. package/es/components/iho-table/src/plugins/defaultConfigPlugin/index.js +1 -1
  21. package/es/components/iho-table/src/plugins/filterPlugin/filter.vue.d.ts +51 -24
  22. package/es/components/iho-table/src/plugins/filterPlugin/filter.vue.js +37 -51
  23. package/es/components/iho-table/src/plugins/filterPlugin/index.js +181 -20
  24. package/es/components/iho-table/src/plugins/filterPlugin/types.d.ts +2 -6
  25. package/es/components/iho-table/src/plugins/filterPlugin/types.js +0 -7
  26. package/es/components/iho-table/src/plugins/index.js +1 -1
  27. package/es/components/iho-table/src/plugins/keyboardEventPlugin/index.js +1 -1
  28. package/es/components/iho-table/src/plugins/lowCodeFieldAdaptorPlugin/index.js +6 -4
  29. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/editSeparate.vue.js +3 -1
  30. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/index.js +3 -3
  31. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/checkRendererPlugin.js +3 -5
  32. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/seqRendererPlugin.js +5 -2
  33. package/es/components/iho-table/src/plugins/virtualTreePlugin/index.js +1 -1
  34. package/es/components/iho-table/src/types/index.d.ts +7 -12
  35. package/es/components/iho-table/src/types/pluginType.d.ts +28 -12
  36. package/es/components/iho-table/style/index.css +1 -1
  37. package/es/components/index.css +1 -1
  38. package/es/shared/assets/img/failure.js +1 -1
  39. package/es/shared/assets/img/failure.png.js +1 -1
  40. package/es/shared/assets/img/icon-asc.js +1 -1
  41. package/es/shared/assets/img/icon-desc.js +1 -1
  42. package/es/shared/assets/img/no-permission.js +1 -1
  43. package/es/shared/assets/img/no-permission.png.js +1 -1
  44. package/es/shared/assets/img/nodata.js +1 -1
  45. package/es/shared/assets/img/nodata.png.js +1 -1
  46. package/es/shared/assets/img/notfound.js +1 -1
  47. package/es/shared/assets/img/notfound.png.js +1 -1
  48. package/es/shared/assets/img/qr.js +1 -1
  49. package/es/shared/assets/img/qr.png.js +1 -1
  50. package/es/shared/assets/img/success.js +1 -1
  51. package/es/shared/assets/img/success.png.js +1 -1
  52. package/es/shared/assets/img/video.js +1 -1
  53. package/es/shared/assets/img/video.png.js +1 -1
  54. package/es/shared/assets/img/video_default_cover.js +1 -1
  55. package/es/shared/assets/img/video_default_cover.png.js +1 -1
  56. package/es/shared/assets/img/video_hover.js +1 -1
  57. package/es/shared/assets/img/video_play_hover.js +1 -1
  58. package/es/shared/assets/img/xb_big.js +1 -1
  59. package/es/shared/assets/img/xb_big.png.js +1 -1
  60. package/es/shared/assets/img/xb_small.js +1 -1
  61. package/es/shared/assets/img/xb_small.png.js +1 -1
  62. package/es/shared/components/VueDraggable/src/vuedraggable.d.ts +86 -0
  63. package/es/shared/utils/tapable/index.d.ts +139 -0
  64. package/package.json +2 -2
@@ -2,248 +2,248 @@ import { Func } from '../../../../../../es/shared/types';
2
2
  import { AsyncParallelHook } from '../../../../../../es/shared/utils/tapable';
3
3
  import { AbstractEventHooks, IhoTableEmitPayload, IhoTableEventNameUnion } from '../../../../../../es/components/iho-table/src/types';
4
4
  declare class EventHooks extends AbstractEventHooks {
5
- readonly onKeydownStart: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.KeydownStartEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
5
+ readonly onKeydownStart: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.KeydownStartEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
6
6
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
7
7
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
8
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
9
- readonly onKeydown: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.KeydownEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
8
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
9
+ readonly onKeydown: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.KeydownEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
10
10
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
11
11
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
12
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
13
- readonly onKeydownEnd: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.KeydownEndEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
12
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
13
+ readonly onKeydownEnd: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.KeydownEndEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
14
14
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
15
15
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
16
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
17
- readonly onPaste: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.PasteEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
16
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
17
+ readonly onPaste: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.PasteEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
18
18
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
19
19
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
20
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
21
- readonly onCopy: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CopyEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
20
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
21
+ readonly onCopy: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CopyEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
22
22
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
23
23
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
24
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
25
- readonly onCut: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CutEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
24
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
25
+ readonly onCut: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CutEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
26
26
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
27
27
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
28
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
29
- readonly onCurrentChange: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CurrentChangeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
28
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
29
+ readonly onCurrentChange: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CurrentChangeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
30
30
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
31
31
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
32
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
33
- readonly onRadioChange: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.RadioChangeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
32
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
33
+ readonly onRadioChange: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.RadioChangeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
34
34
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
35
35
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
36
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
37
- readonly onCheckboxChange: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CheckboxChangeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
36
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
37
+ readonly onCheckboxChange: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CheckboxChangeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
38
38
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
39
39
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
40
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
41
- readonly onCheckboxAll: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CheckboxAllEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
40
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
41
+ readonly onCheckboxAll: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CheckboxAllEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
42
42
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
43
43
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
44
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
45
- readonly onCheckboxRangeStart: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CheckboxRangeStartEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
44
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
45
+ readonly onCheckboxRangeStart: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CheckboxRangeStartEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
46
46
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
47
47
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
48
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
49
- readonly onCheckboxRangeChange: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CheckboxRangeChangeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
48
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
49
+ readonly onCheckboxRangeChange: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CheckboxRangeChangeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
50
50
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
51
51
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
52
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
53
- readonly onCheckboxRangeEnd: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CheckboxRangeEndEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
52
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
53
+ readonly onCheckboxRangeEnd: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CheckboxRangeEndEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
54
54
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
55
55
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
56
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
57
- readonly onCellClick: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CellClickEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
56
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
57
+ readonly onCellClick: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CellClickEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
58
58
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
59
59
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
60
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
61
- readonly onCellDblclick: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CellDblclickEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
60
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
61
+ readonly onCellDblclick: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CellDblclickEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
62
62
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
63
63
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
64
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
65
- readonly onCellMenu: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CellMenuEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
64
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
65
+ readonly onCellMenu: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CellMenuEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
66
66
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
67
67
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
68
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
69
- readonly onCellMouseenter: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CellMouseenterEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
68
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
69
+ readonly onCellMouseenter: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CellMouseenterEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
70
70
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
71
71
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
72
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
73
- readonly onCellMouseleave: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CellMouseleaveEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
72
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
73
+ readonly onCellMouseleave: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CellMouseleaveEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
74
74
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
75
75
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
76
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
77
- readonly onHeaderCellClick: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.HeaderCellClickEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
76
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
77
+ readonly onHeaderCellClick: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.HeaderCellClickEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
78
78
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
79
79
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
80
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
81
- readonly onHeaderCellDblclick: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.HeaderCellDblclickEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
80
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
81
+ readonly onHeaderCellDblclick: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.HeaderCellDblclickEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
82
82
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
83
83
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
84
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
85
- readonly onHeaderCellMenu: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.HeaderCellMenuEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
84
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
85
+ readonly onHeaderCellMenu: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.HeaderCellMenuEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
86
86
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
87
87
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
88
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
89
- readonly onFooterCellClick: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.FooterCellClickEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
88
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
89
+ readonly onFooterCellClick: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.FooterCellClickEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
90
90
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
91
91
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
92
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
93
- readonly onFooterCellDblclick: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.FooterCellDblclickEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
92
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
93
+ readonly onFooterCellDblclick: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.FooterCellDblclickEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
94
94
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
95
95
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
96
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
97
- readonly onFooterCellMenu: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.FooterCellMenuEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
96
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
97
+ readonly onFooterCellMenu: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.FooterCellMenuEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
98
98
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
99
99
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
100
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
101
- readonly onSortChange: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.SortChangeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
100
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
101
+ readonly onSortChange: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.SortChangeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
102
102
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
103
103
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
104
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
105
- readonly onFilterChange: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.FilterChangeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
104
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
105
+ readonly onFilterChange: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.FilterChangeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
106
106
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
107
107
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
108
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
109
- readonly onFilterVisible: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.FilterVisibleEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
108
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
109
+ readonly onFilterVisible: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.FilterVisibleEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
110
110
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
111
111
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
112
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
113
- readonly onResizableChange: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.ResizableChangeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
112
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
113
+ readonly onResizableChange: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.ResizableChangeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
114
114
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
115
115
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
116
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
117
- readonly onToggleRowExpand: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.ToggleRowExpandEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
116
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
117
+ readonly onToggleRowExpand: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.ToggleRowExpandEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
118
118
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
119
119
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
120
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
121
- readonly onToggleTreeExpand: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.ToggleTreeExpandEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
120
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
121
+ readonly onToggleTreeExpand: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.ToggleTreeExpandEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
122
122
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
123
123
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
124
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
125
- readonly onMenuClick: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.MenuClickEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
124
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
125
+ readonly onMenuClick: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.MenuClickEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
126
126
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
127
127
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
128
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
129
- readonly onEditClosed: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.EditClosedEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
128
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
129
+ readonly onEditClosed: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.EditClosedEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
130
130
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
131
131
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
132
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
133
- readonly onEditActived: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.EditActivedEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
132
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
133
+ readonly onEditActived: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.EditActivedEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
134
134
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
135
135
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
136
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
137
- readonly onEditDisabled: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.EditDisabledEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
136
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
137
+ readonly onEditDisabled: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.EditDisabledEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
138
138
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
139
139
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
140
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
141
- readonly onValidError: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.ValidErrorEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
140
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
141
+ readonly onValidError: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.ValidErrorEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
142
142
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
143
143
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
144
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
145
- readonly onScroll: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.ScrollEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
144
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
145
+ readonly onScroll: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.ScrollEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
146
146
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
147
147
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
148
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
149
- readonly onCustom: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CustomEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
148
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
149
+ readonly onCustom: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CustomEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
150
150
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
151
151
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
152
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
153
- readonly onOpenFnr: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.OpenFnrParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
152
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
153
+ readonly onOpenFnr: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.OpenFnrParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
154
154
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
155
155
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
156
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
157
- readonly onFnrChange: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.FnrChangeParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
156
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
157
+ readonly onFnrChange: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.FnrChangeParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
158
158
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
159
159
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
160
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
161
- readonly onFnrFind: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.FnrFindParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
160
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
161
+ readonly onFnrFind: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.FnrFindParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
162
162
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
163
163
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
164
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
165
- readonly onFnrFindAll: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.FnrFindAllParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
164
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
165
+ readonly onFnrFindAll: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.FnrFindAllParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
166
166
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
167
167
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
168
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
169
- readonly onFnrReplace: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.FnrReplaceParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
168
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
169
+ readonly onFnrReplace: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.FnrReplaceParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
170
170
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
171
171
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
172
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
173
- readonly onFnrReplaceAll: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.FnrReplaceAllParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
172
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
173
+ readonly onFnrReplaceAll: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.FnrReplaceAllParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
174
174
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
175
175
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
176
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
177
- readonly onCellAreaCopy: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaCopyParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
176
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
177
+ readonly onCellAreaCopy: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaCopyParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
178
178
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
179
179
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
180
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
181
- readonly onCellAreaCut: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaCutParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
180
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
181
+ readonly onCellAreaCut: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaCutParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
182
182
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
183
183
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
184
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
185
- readonly onCellAreaPaste: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaPasteParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
184
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
185
+ readonly onCellAreaPaste: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaPasteParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
186
186
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
187
187
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
188
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
189
- readonly onCellAreaMerge: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaMergeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
188
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
189
+ readonly onCellAreaMerge: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaMergeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
190
190
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
191
191
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
192
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
193
- readonly onClearCellAreaMerge: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.ClearCellAreaMergeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
192
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
193
+ readonly onClearCellAreaMerge: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.ClearCellAreaMergeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
194
194
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
195
195
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
196
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
197
- readonly onHeaderCellAreaSelection: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.HeaderCellAreaSelectionEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
196
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
197
+ readonly onHeaderCellAreaSelection: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.HeaderCellAreaSelectionEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
198
198
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
199
199
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
200
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
201
- readonly onCellAreaSelectionStart: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaSelectionStartEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
200
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
201
+ readonly onCellAreaSelectionStart: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaSelectionStartEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
202
202
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
203
203
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
204
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
205
- readonly onCellAreaSelectionDrag: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaSelectionDragEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
204
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
205
+ readonly onCellAreaSelectionDrag: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaSelectionDragEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
206
206
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
207
207
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
208
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
209
- readonly onCellAreaSelectionEnd: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaSelectionEndEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
208
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
209
+ readonly onCellAreaSelectionEnd: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaSelectionEndEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
210
210
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
211
211
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
212
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
213
- readonly onCellAreaExtensionStart: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaExtensionStartEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
212
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
213
+ readonly onCellAreaExtensionStart: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaExtensionStartEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
214
214
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
215
215
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
216
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
217
- readonly onCellAreaExtensionDrag: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaExtensionDragEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
216
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
217
+ readonly onCellAreaExtensionDrag: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaExtensionDragEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
218
218
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
219
219
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
220
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
221
- readonly onCellAreaExtensionEnd: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaExtensionEndEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
220
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
221
+ readonly onCellAreaExtensionEnd: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaExtensionEndEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
222
222
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
223
223
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
224
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
225
- readonly onCellAreaArrowsStart: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaArrowsStartEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
224
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
225
+ readonly onCellAreaArrowsStart: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaArrowsStartEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
226
226
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
227
227
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
228
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
229
- readonly onCellAreaArrowsEnd: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaArrowsEndEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
228
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
229
+ readonly onCellAreaArrowsEnd: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaArrowsEndEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
230
230
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
231
231
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
232
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
233
- readonly onActiveCellChangeStart: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.ActiveCellChangeStartEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
232
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
233
+ readonly onActiveCellChangeStart: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.ActiveCellChangeStartEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
234
234
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
235
235
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
236
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
237
- readonly onActiveCellChangeEnd: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.ActiveCellChangeEndEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
236
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
237
+ readonly onActiveCellChangeEnd: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.ActiveCellChangeEndEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
238
238
  $table: import("../../../../../../es/shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
239
239
  emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
240
- }, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
240
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
241
241
  }
242
242
  export declare function useEventHooks(): {
243
243
  create: () => EventHooks;
244
244
  };
245
245
  export declare class IhoTableEventListener {
246
- eventMap: Map<"toggleRowExpand" | "toggleTreeExpand" | "copy" | "scroll" | "formChange" | "settingClick" | "formClick" | "sortChange" | "keyboard" | "cut" | "paste" | "keydown" | "keydownStart" | "keydownEnd" | "currentChange" | "radioChange" | "checkboxChange" | "checkboxAll" | "checkboxRangeStart" | "checkboxRangeChange" | "checkboxRangeEnd" | "cellClick" | "cellDblclick" | "cellMenu" | "cellMouseenter" | "cellMouseleave" | "headerCellClick" | "headerCellDblclick" | "headerCellMenu" | "footerCellClick" | "footerCellDblclick" | "footerCellMenu" | "filterChange" | "filterVisible" | "resizableChange" | "menuClick" | "editClosed" | "editActived" | "editDisabled" | "validError" | "custom" | "openFnr" | "fnrChange" | "fnrFind" | "fnrFindAll" | "fnrReplace" | "fnrReplaceAll" | "cellAreaCopy" | "cellAreaCut" | "cellAreaPaste" | "cellAreaMerge" | "clearCellAreaMerge" | "headerCellAreaSelection" | "cellAreaSelectionStart" | "cellAreaSelectionDrag" | "cellAreaSelectionEnd" | "cellAreaExtensionStart" | "cellAreaExtensionDrag" | "cellAreaExtensionEnd" | "cellAreaArrowsStart" | "cellAreaArrowsEnd" | "activeCellChangeStart" | "activeCellChangeEnd", Set<Func<any[], any>>>;
246
+ eventMap: Map<"toggleRowExpand" | "toggleTreeExpand" | "copy" | "scroll" | "formChange" | "settingClick" | "formClick" | "keyboard" | "cut" | "paste" | "keydown" | "keydownStart" | "keydownEnd" | "currentChange" | "radioChange" | "checkboxChange" | "checkboxAll" | "checkboxRangeStart" | "checkboxRangeChange" | "checkboxRangeEnd" | "cellClick" | "cellDblclick" | "cellMenu" | "cellMouseenter" | "cellMouseleave" | "headerCellClick" | "headerCellDblclick" | "headerCellMenu" | "footerCellClick" | "footerCellDblclick" | "footerCellMenu" | "sortChange" | "filterChange" | "filterVisible" | "resizableChange" | "menuClick" | "editClosed" | "editActived" | "editDisabled" | "validError" | "custom" | "openFnr" | "fnrChange" | "fnrFind" | "fnrFindAll" | "fnrReplace" | "fnrReplaceAll" | "cellAreaCopy" | "cellAreaCut" | "cellAreaPaste" | "cellAreaMerge" | "clearCellAreaMerge" | "headerCellAreaSelection" | "cellAreaSelectionStart" | "cellAreaSelectionDrag" | "cellAreaSelectionEnd" | "cellAreaExtensionStart" | "cellAreaExtensionDrag" | "cellAreaExtensionEnd" | "cellAreaArrowsStart" | "cellAreaArrowsEnd" | "activeCellChangeStart" | "activeCellChangeEnd", Set<Func<any[], any>>>;
247
247
  addEventListener<T extends IhoTableEventNameUnion>(key: T, handler: (...payload: IhoTableEmitPayload<T>) => void): void;
248
248
  trigger<T extends IhoTableEventNameUnion>(key: T, payload: IhoTableEmitPayload<T>): void;
249
249
  }
@@ -1,9 +1,11 @@
1
1
  import { Func } from '../../../../../../es/shared/types';
2
2
  import { SyncWaterfallHook } from '../../../../../../es/shared/utils/tapable';
3
- import { Ref } from 'vue';
4
- import { AbstractExposeHooks, IhoTableConfig } from '../../../../../../es/components/iho-table/src/types';
3
+ import { AbstractExposeHooks } from '../../../../../../es/components/iho-table/src/types';
5
4
  declare class ExposeHooks extends AbstractExposeHooks {
6
- readonly expose: SyncWaterfallHook<[Record<string, Func<any[], any>>, Ref<IhoTableConfig>], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
5
+ readonly expose: SyncWaterfallHook<[Record<string, Func<any[], any>>, import("vue").Ref<import("../../../../../../es/components/iho-table/src/types").IhoTableConfig>, {
6
+ $table: import("vue").Ref<import("../../../../../../es/shared/types").Nullable<import("vxe-table").VxeTableInstance>>;
7
+ emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
8
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
7
9
  }
8
10
  export declare function useExposeHooks(): {
9
11
  create: () => ExposeHooks;
@@ -13,7 +13,7 @@ import { AbstractExposeHooks } from '../../types/pluginType.js';
13
13
  class ExposeHooks extends AbstractExposeHooks {
14
14
  constructor() {
15
15
  super(...arguments);
16
- this.expose = new SyncWaterfallHook(["expose", "config"]);
16
+ this.expose = new SyncWaterfallHook(["expose", "config", "context"]);
17
17
  }
18
18
  }
19
19
  function useExposeHooks() {
@@ -2,10 +2,22 @@ import { AsyncParallelHook, SyncWaterfallHook } from '../../../../../../es/share
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>;
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>;
5
+ readonly fieldStart: AsyncParallelHook<[import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, {
6
+ $table: import("vue").Ref<import("../../../../../shared/types").Nullable<import("vxe-table").VxeTableInstance>>;
7
+ emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
8
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
9
+ readonly field: SyncWaterfallHook<[IhoTableFieldItem, FieldHookContext, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, {
10
+ $table: import("vue").Ref<import("../../../../../shared/types").Nullable<import("vxe-table").VxeTableInstance>>;
11
+ emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
12
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
13
+ readonly fieldList: SyncWaterfallHook<[IhoTableFieldItem[], import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, {
14
+ $table: import("vue").Ref<import("../../../../../shared/types").Nullable<import("vxe-table").VxeTableInstance>>;
15
+ emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
16
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
17
+ readonly fieldEnd: AsyncParallelHook<[import("../../../../../../es/components/iho-table/src/types").IhoTableConfig, {
18
+ $table: import("vue").Ref<import("../../../../../shared/types").Nullable<import("vxe-table").VxeTableInstance>>;
19
+ emits: import("../../../../../../es/components/iho-table/src/types").IhoTableEmits;
20
+ }], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
9
21
  }
10
22
  export declare function useFieldHooks(): {
11
23
  create: () => FieldHooks;
@@ -13,14 +13,19 @@ import { AbstractFieldHooks } from '../../types/pluginType.js';
13
13
  class FieldHooks extends AbstractFieldHooks {
14
14
  constructor() {
15
15
  super(...arguments);
16
- this.fieldStart = new AsyncParallelHook(["config"]);
16
+ this.fieldStart = new AsyncParallelHook(["config", "context"]);
17
17
  this.field = new SyncWaterfallHook([
18
18
  "fieldItem",
19
19
  "context",
20
- "config"
20
+ "config",
21
+ "tableContext"
21
22
  ]);
22
- this.fieldList = new SyncWaterfallHook(["fieldList", "config"]);
23
- this.fieldEnd = new AsyncParallelHook(["config"]);
23
+ this.fieldList = new SyncWaterfallHook([
24
+ "fieldList",
25
+ "config",
26
+ "context"
27
+ ]);
28
+ this.fieldEnd = new AsyncParallelHook(["config", "context"]);
24
29
  }
25
30
  }
26
31
  function useFieldHooks() {
@@ -15,7 +15,7 @@ function defaultConfigPlugin() {
15
15
  showSeq: true,
16
16
  selectType: "checkbox",
17
17
  columnConfig: { resizable: true },
18
- rowConfig: { height: 48, isHover: true, isCurrent: true, keyField: "theUniqueKey" },
18
+ rowConfig: { height: 36, isHover: true, isCurrent: true, keyField: "theUniqueKey" },
19
19
  mouseConfig: { selected: true },
20
20
  showOverflow: "tooltip",
21
21
  editConfig: {