cnhis-design-vue 3.1.22-beta.4 → 3.1.22-beta.6

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 (37) hide show
  1. package/README.md +123 -123
  2. package/es/components/big-table/index.d.ts +8 -0
  3. package/es/components/big-table/src/BigTable.vue.d.ts +8 -0
  4. package/es/components/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.js +16 -27
  5. package/es/components/big-table/style/index.css +1 -1
  6. package/es/components/fabric-chart/index.d.ts +1 -0
  7. package/es/components/fabric-chart/src/FabricChart.js +3 -2
  8. package/es/components/fabric-chart/src/FabricChart.vue.d.ts +1 -0
  9. package/es/components/fabric-chart/src/hooks/useCenter.d.ts +1 -0
  10. package/es/components/fabric-chart/src/hooks/useCenter2.js +15 -3
  11. package/es/components/fabric-chart/src/hooks/useLeft.d.ts +1 -1
  12. package/es/components/fabric-chart/src/hooks/useLeft2.js +7 -5
  13. package/es/components/fabric-chart/src/interface.d.ts +2 -0
  14. package/es/components/iho-table/index.d.ts +473 -348
  15. package/es/components/iho-table/index2.js +1 -0
  16. package/es/components/iho-table/src/IhoTable.js +23 -8
  17. package/es/components/iho-table/src/IhoTable.vue.d.ts +474 -348
  18. package/es/components/iho-table/src/components/IhoTableColumn.d.ts +2 -2
  19. package/es/components/iho-table/src/components/IhoTableColumn.js +22 -3
  20. package/es/components/iho-table/src/hooks/tapHooks/index.d.ts +4 -1
  21. package/es/components/iho-table/src/hooks/tapHooks/index2.js +3 -2
  22. package/es/components/iho-table/src/hooks/tapHooks/useEventHooks.d.ts +59 -59
  23. package/es/components/iho-table/src/hooks/tapHooks/useEventHooks2.js +59 -59
  24. package/es/components/iho-table/src/plugins/rendererPlugins/inputs/inputRendererPlugins.js +5 -0
  25. package/es/components/iho-table/src/types/index.d.ts +4 -2
  26. package/es/components/iho-table/src/types/pluginType.d.ts +63 -62
  27. package/es/components/index.css +1 -1
  28. package/package.json +2 -2
  29. package/es/components/big-table/src/components/edit-form/useCommon.d.ts +0 -4
  30. package/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
  31. package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +0 -1
  32. package/es/components/bpmn-workflow/types/ModelingModule.d.ts +0 -1
  33. package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +0 -1
  34. package/es/components/fabric-chart/src/utils/index.d.ts +0 -6823
  35. package/es/components/form-render/src/components/index.d.ts +0 -0
  36. package/es/components/form-render/src/components/index.js +0 -1
  37. package/es/shared/utils/tapable/index.d.ts +0 -139
@@ -1,6 +1,6 @@
1
1
  import { PropType } from 'vue';
2
2
  import { IhoTableFieldItem } from '../../../../../es/components/iho-table/src/types';
3
- declare const _default: import("vue").DefineComponent<{
3
+ declare const ColumnComponent: import("vue").DefineComponent<{
4
4
  field: {
5
5
  type: PropType<IhoTableFieldItem>;
6
6
  required: true;
@@ -11,4 +11,4 @@ declare const _default: import("vue").DefineComponent<{
11
11
  required: true;
12
12
  };
13
13
  }>>, {}>;
14
- export default _default;
14
+ export default ColumnComponent;
@@ -1,6 +1,6 @@
1
1
  import { defineComponent, resolveComponent, createVNode } from 'vue';
2
2
 
3
- var IhoTableColumn = defineComponent({
3
+ const ColumnComponent = defineComponent({
4
4
  name: "IhoTableColumn",
5
5
  props: {
6
6
  field: {
@@ -10,8 +10,27 @@ var IhoTableColumn = defineComponent({
10
10
  },
11
11
  setup(props) {
12
12
  const VxeColumn = resolveComponent("vxe-column");
13
- return () => createVNode(VxeColumn, props.field, null);
13
+ const VxeColumnGroup = resolveComponent("vxe-colgroup");
14
+ function renderColumn(field) {
15
+ return createVNode(VxeColumn, field, null);
16
+ }
17
+ function renderColumnGroup(group, children) {
18
+ return createVNode(VxeColumnGroup, group, {
19
+ default: () => children.map((child) => createVNode(ColumnComponent, {
20
+ "field": child
21
+ }, null))
22
+ });
23
+ }
24
+ return () => {
25
+ return Array.isArray(children()) && children().length ? renderColumnGroup(field(), children()) : renderColumn(field());
26
+ function field() {
27
+ return props.field;
28
+ }
29
+ function children() {
30
+ return props.field.children;
31
+ }
32
+ };
14
33
  }
15
34
  });
16
35
 
17
- export { IhoTableColumn as default };
36
+ export { ColumnComponent as default };
@@ -1,3 +1,6 @@
1
+ import { Nullable } from '../../../../../../es/shared/types';
2
+ import { MaybeRef } from '@vueuse/core';
3
+ import { VxeTableInstance } from 'vxe-table';
1
4
  import { VxeTableEventProps } from 'vxe-table/types/table';
2
5
  import { IhoTableConfig, IhoTableFieldItem, TableHooks } from '../../../../../../es/components/iho-table/src/types';
3
6
  export declare const createTableHooks: () => Readonly<{
@@ -7,4 +10,4 @@ export declare const createTableHooks: () => Readonly<{
7
10
  }>;
8
11
  export declare function applyTableConfigHooks(hooks: TableHooks, config: IhoTableConfig): IhoTableConfig;
9
12
  export declare function applyTableFieldHooks(hooks: TableHooks, fieldList: IhoTableFieldItem[], config: IhoTableConfig): IhoTableFieldItem[];
10
- export declare function applyTableEventHooks(hooks: TableHooks, config: IhoTableConfig): Record<keyof VxeTableEventProps, any>;
13
+ export declare function applyTableEventHooks(hooks: TableHooks, config: MaybeRef<IhoTableConfig>, $table: MaybeRef<Nullable<VxeTableInstance>>): Record<keyof VxeTableEventProps, any>;
@@ -1,4 +1,5 @@
1
1
  import { arrayed } from '../../../../../shared/utils/index2.js';
2
+ import { unref } from 'vue';
2
3
  import { cloneDeep } from 'lodash-es';
3
4
  import { IhoEventNameList } from '../../constants/index2.js';
4
5
  import { useEventHooks } from './useEventHooks2.js';
@@ -67,10 +68,10 @@ function applyTableFieldHooks(hooks, fieldList, config) {
67
68
  return finFieldList;
68
69
  }, []);
69
70
  }
70
- function applyTableEventHooks(hooks, config) {
71
+ function applyTableEventHooks(hooks, config, $table) {
71
72
  const handler = (eventName, payload) => {
72
73
  var _a;
73
- (_a = hooks.eventHooks[eventName]) == null ? void 0 : _a.promise(payload, config);
74
+ (_a = hooks.eventHooks[eventName]) == null ? void 0 : _a.promise(payload, unref(config), unref($table));
74
75
  };
75
76
  return IhoEventNameList.reduce((result, eventName) => {
76
77
  result[eventName] = (payload) => handler(eventName, payload);
@@ -2,65 +2,65 @@ import { AsyncParallelHook } from '../../../../../../es/shared/utils/tapable';
2
2
  import { VxeTableEvents } from 'vxe-table/types/table';
3
3
  import { AbstractEventHooks } from '../../../../../../es/components/iho-table/src/types';
4
4
  declare class EventHooks extends AbstractEventHooks {
5
- readonly onKeydownStart: AsyncParallelHook<[VxeTableEvents.KeydownStart, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
6
- readonly onKeydown: AsyncParallelHook<[VxeTableEvents.Keydown, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
7
- readonly onKeydownEnd: AsyncParallelHook<[VxeTableEvents.KeydownEnd, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
8
- readonly onPaste: AsyncParallelHook<[VxeTableEvents.Paste, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
9
- readonly onCopy: AsyncParallelHook<[VxeTableEvents.Copy, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
10
- readonly onCut: AsyncParallelHook<[VxeTableEvents.Cut, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
11
- readonly onCurrentChange: AsyncParallelHook<[VxeTableEvents.CurrentChange, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
12
- readonly onRadioChange: AsyncParallelHook<[VxeTableEvents.RadioChange, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
13
- readonly onCheckboxChange: AsyncParallelHook<[VxeTableEvents.CheckboxChange, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
14
- readonly onCheckboxAll: AsyncParallelHook<[VxeTableEvents.CheckboxAll, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
15
- readonly onCheckboxRangeStart: AsyncParallelHook<[VxeTableEvents.CheckboxRangeStart, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
16
- readonly onCheckboxRangeChange: AsyncParallelHook<[VxeTableEvents.CheckboxRangeChange, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
17
- readonly onCheckboxRangeEnd: AsyncParallelHook<[VxeTableEvents.CheckboxRangeEnd, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
18
- readonly onCellClick: AsyncParallelHook<[VxeTableEvents.CellClick, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
19
- readonly onCellDblclick: AsyncParallelHook<[VxeTableEvents.CellDblclick, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
20
- readonly onCellMenu: AsyncParallelHook<[VxeTableEvents.CellMenu, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
21
- readonly onCellMouseenter: AsyncParallelHook<[VxeTableEvents.CellMouseenter, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
22
- readonly onCellMouseleave: AsyncParallelHook<[VxeTableEvents.CellMouseleave, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
23
- readonly onHeaderCellClick: AsyncParallelHook<[VxeTableEvents.HeaderCellClick, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
24
- readonly onHeaderCellDblclick: AsyncParallelHook<[VxeTableEvents.HeaderCellDblclick, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
25
- readonly onHeaderCellMenu: AsyncParallelHook<[VxeTableEvents.HeaderCellMenu, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
26
- readonly onFooterCellClick: AsyncParallelHook<[VxeTableEvents.FooterCellClick, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
27
- readonly onFooterCellDblclick: AsyncParallelHook<[VxeTableEvents.FooterCellDblclick, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
28
- readonly onFooterCellMenu: AsyncParallelHook<[VxeTableEvents.FooterCellMenu, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
29
- readonly onSortChange: AsyncParallelHook<[VxeTableEvents.SortChange, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
30
- readonly onFilterChange: AsyncParallelHook<[VxeTableEvents.FilterChange, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
31
- readonly onFilterVisible: AsyncParallelHook<[VxeTableEvents.FilterVisible, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
32
- readonly onResizableChange: AsyncParallelHook<[VxeTableEvents.ResizableChange, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
33
- readonly onToggleRowExpand: AsyncParallelHook<[VxeTableEvents.ToggleRowExpand, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
34
- readonly onToggleTreeExpand: AsyncParallelHook<[VxeTableEvents.ToggleTreeExpand, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
35
- readonly onMenuClick: AsyncParallelHook<[VxeTableEvents.MenuClick, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
36
- readonly onEditClosed: AsyncParallelHook<[VxeTableEvents.EditClosed, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
37
- readonly onEditActived: AsyncParallelHook<[VxeTableEvents.EditActived, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
38
- readonly onEditDisabled: AsyncParallelHook<[VxeTableEvents.EditDisabled, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
39
- readonly onValidError: AsyncParallelHook<[VxeTableEvents.ValidError, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
40
- readonly onScroll: AsyncParallelHook<[VxeTableEvents.Scroll, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
41
- readonly onCustom: AsyncParallelHook<[VxeTableEvents.Custom, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
42
- readonly onOpenFnr: AsyncParallelHook<[VxeTableEvents.OpenFnr, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
43
- readonly onFnrChange: AsyncParallelHook<[VxeTableEvents.FnrChange, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
44
- readonly onFnrFind: AsyncParallelHook<[VxeTableEvents.FnrFind, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
45
- readonly onFnrFindAll: AsyncParallelHook<[VxeTableEvents.FnrFindAll, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
46
- readonly onFnrReplace: AsyncParallelHook<[VxeTableEvents.FnrReplace, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
47
- readonly onFnrReplaceAll: AsyncParallelHook<[VxeTableEvents.FnrReplaceAll, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
48
- readonly onCellAreaCopy: AsyncParallelHook<[VxeTableEvents.CellAreaCopy, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
49
- readonly onCellAreaCut: AsyncParallelHook<[VxeTableEvents.CellAreaCut, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
50
- readonly onCellAreaPaste: AsyncParallelHook<[VxeTableEvents.CellAreaPaste, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
51
- readonly onCellAreaMerge: AsyncParallelHook<[VxeTableEvents.CellAreaMerge, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
52
- readonly onClearCellAreaMerge: AsyncParallelHook<[VxeTableEvents.ClearCellAreaMerge, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
53
- readonly onHeaderCellAreaSelection: AsyncParallelHook<[VxeTableEvents.HeaderCellAreaSelection, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
54
- readonly onCellAreaSelectionStart: AsyncParallelHook<[VxeTableEvents.CellAreaSelectionStart, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
55
- readonly onCellAreaSelectionDrag: AsyncParallelHook<[VxeTableEvents.CellAreaSelectionDrag, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
56
- readonly onCellAreaSelectionEnd: AsyncParallelHook<[VxeTableEvents.CellAreaSelectionEnd, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
57
- readonly onCellAreaExtensionStart: AsyncParallelHook<[VxeTableEvents.CellAreaExtensionStart, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
58
- readonly onCellAreaExtensionDrag: AsyncParallelHook<[VxeTableEvents.CellAreaExtensionDrag, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
59
- readonly onCellAreaExtensionEnd: AsyncParallelHook<[VxeTableEvents.CellAreaExtensionEnd, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
60
- readonly onCellAreaArrowsStart: AsyncParallelHook<[VxeTableEvents.CellAreaArrowsStart, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
61
- readonly onCellAreaArrowsEnd: AsyncParallelHook<[VxeTableEvents.CellAreaArrowsEnd, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
62
- readonly onActiveCellChangeStart: AsyncParallelHook<[VxeTableEvents.ActiveCellChangeStart, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
63
- readonly onActiveCellChangeEnd: AsyncParallelHook<[VxeTableEvents.ActiveCellChangeEnd, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
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>;
64
64
  }
65
65
  export declare function useEventHooks(): {
66
66
  create: () => EventHooks;
@@ -13,65 +13,65 @@ import { AbstractEventHooks } from '../../types/pluginType2.js';
13
13
  class EventHooks extends AbstractEventHooks {
14
14
  constructor() {
15
15
  super(...arguments);
16
- this.onKeydownStart = new AsyncParallelHook(["event", "config"]);
17
- this.onKeydown = new AsyncParallelHook(["event", "config"]);
18
- this.onKeydownEnd = new AsyncParallelHook(["event", "config"]);
19
- this.onPaste = new AsyncParallelHook(["event", "config"]);
20
- this.onCopy = new AsyncParallelHook(["event", "config"]);
21
- this.onCut = new AsyncParallelHook(["event", "config"]);
22
- this.onCurrentChange = new AsyncParallelHook(["event", "config"]);
23
- this.onRadioChange = new AsyncParallelHook(["event", "config"]);
24
- this.onCheckboxChange = new AsyncParallelHook(["event", "config"]);
25
- this.onCheckboxAll = new AsyncParallelHook(["event", "config"]);
26
- this.onCheckboxRangeStart = new AsyncParallelHook(["event", "config"]);
27
- this.onCheckboxRangeChange = new AsyncParallelHook(["event", "config"]);
28
- this.onCheckboxRangeEnd = new AsyncParallelHook(["event", "config"]);
29
- this.onCellClick = new AsyncParallelHook(["event", "config"]);
30
- this.onCellDblclick = new AsyncParallelHook(["event", "config"]);
31
- this.onCellMenu = new AsyncParallelHook(["event", "config"]);
32
- this.onCellMouseenter = new AsyncParallelHook(["event", "config"]);
33
- this.onCellMouseleave = new AsyncParallelHook(["event", "config"]);
34
- this.onHeaderCellClick = new AsyncParallelHook(["event", "config"]);
35
- this.onHeaderCellDblclick = new AsyncParallelHook(["event", "config"]);
36
- this.onHeaderCellMenu = new AsyncParallelHook(["event", "config"]);
37
- this.onFooterCellClick = new AsyncParallelHook(["event", "config"]);
38
- this.onFooterCellDblclick = new AsyncParallelHook(["event", "config"]);
39
- this.onFooterCellMenu = new AsyncParallelHook(["event", "config"]);
40
- this.onSortChange = new AsyncParallelHook(["event", "config"]);
41
- this.onFilterChange = new AsyncParallelHook(["event", "config"]);
42
- this.onFilterVisible = new AsyncParallelHook(["event", "config"]);
43
- this.onResizableChange = new AsyncParallelHook(["event", "config"]);
44
- this.onToggleRowExpand = new AsyncParallelHook(["event", "config"]);
45
- this.onToggleTreeExpand = new AsyncParallelHook(["event", "config"]);
46
- this.onMenuClick = new AsyncParallelHook(["event", "config"]);
47
- this.onEditClosed = new AsyncParallelHook(["event", "config"]);
48
- this.onEditActived = new AsyncParallelHook(["event", "config"]);
49
- this.onEditDisabled = new AsyncParallelHook(["event", "config"]);
50
- this.onValidError = new AsyncParallelHook(["event", "config"]);
51
- this.onScroll = new AsyncParallelHook(["event", "config"]);
52
- this.onCustom = new AsyncParallelHook(["event", "config"]);
53
- this.onOpenFnr = new AsyncParallelHook(["event", "config"]);
54
- this.onFnrChange = new AsyncParallelHook(["event", "config"]);
55
- this.onFnrFind = new AsyncParallelHook(["event", "config"]);
56
- this.onFnrFindAll = new AsyncParallelHook(["event", "config"]);
57
- this.onFnrReplace = new AsyncParallelHook(["event", "config"]);
58
- this.onFnrReplaceAll = new AsyncParallelHook(["event", "config"]);
59
- this.onCellAreaCopy = new AsyncParallelHook(["event", "config"]);
60
- this.onCellAreaCut = new AsyncParallelHook(["event", "config"]);
61
- this.onCellAreaPaste = new AsyncParallelHook(["event", "config"]);
62
- this.onCellAreaMerge = new AsyncParallelHook(["event", "config"]);
63
- this.onClearCellAreaMerge = new AsyncParallelHook(["event", "config"]);
64
- this.onHeaderCellAreaSelection = new AsyncParallelHook(["event", "config"]);
65
- this.onCellAreaSelectionStart = new AsyncParallelHook(["event", "config"]);
66
- this.onCellAreaSelectionDrag = new AsyncParallelHook(["event", "config"]);
67
- this.onCellAreaSelectionEnd = new AsyncParallelHook(["event", "config"]);
68
- this.onCellAreaExtensionStart = new AsyncParallelHook(["event", "config"]);
69
- this.onCellAreaExtensionDrag = new AsyncParallelHook(["event", "config"]);
70
- this.onCellAreaExtensionEnd = new AsyncParallelHook(["event", "config"]);
71
- this.onCellAreaArrowsStart = new AsyncParallelHook(["event", "config"]);
72
- this.onCellAreaArrowsEnd = new AsyncParallelHook(["event", "config"]);
73
- this.onActiveCellChangeStart = new AsyncParallelHook(["event", "config"]);
74
- this.onActiveCellChangeEnd = new AsyncParallelHook(["event", "config"]);
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"]);
75
75
  }
76
76
  }
77
77
  function useEventHooks() {
@@ -37,6 +37,11 @@ function inputRendererPlugins() {
37
37
  }, null)];
38
38
  }
39
39
  });
40
+ },
41
+ apply(hooks) {
42
+ hooks.eventHooks.onCellClick.tap("test", (payload, config, $table) => {
43
+ console.log($table.getData());
44
+ });
40
45
  }
41
46
  });
42
47
  }
@@ -4,11 +4,13 @@ export * from './pluginType';
4
4
  export interface IhoTableConfig extends VxeTableProps {
5
5
  showSeq?: boolean;
6
6
  selectType?: Exclude<VxeTableDefines.ColumnInfo['type'], 'seq' | 'expand' | 'html'>;
7
+ groupSetting?: {};
7
8
  [K: string]: unknown;
8
9
  }
9
- export interface IhoTableFieldItem extends Partial<VxeTableDefines.ColumnInfo> {
10
+ export declare type IhoTableFieldItem = Partial<VxeTableDefines.ColumnInfo> & {
11
+ children?: IhoTableFieldItem[];
10
12
  [K: string]: unknown;
11
- }
13
+ };
12
14
  interface LowCodeTableSettingObj {
13
15
  attr: string;
14
16
  [K: string]: unknown;