cnhis-design-vue 3.1.22 → 3.1.23-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/components/big-table/index.d.ts +8 -0
- package/es/components/big-table/src/BigTable.vue.d.ts +8 -0
- package/es/components/big-table/src/components/edit-form/edit-separate.js +4 -1
- package/es/components/big-table/src/hooks/useSeparateRow2.js +1 -41
- package/es/components/field-set/src/FieldSet.js +5 -1
- package/es/components/form-render/src/hooks/useFormContext2.js +2 -1
- package/es/components/form-render/src/utils/index.d.ts +0 -1
- package/es/components/form-render/src/utils/index.js +1 -10
- package/es/components/iho-table/index.d.ts +141 -277
- package/es/components/iho-table/index.js +1 -1
- package/es/components/iho-table/src/IhoTable.js +52 -31
- package/es/components/iho-table/src/IhoTable.vue.d.ts +142 -278
- package/es/components/iho-table/src/constants/index.d.ts +5 -2
- package/es/components/iho-table/src/constants/index.js +1 -1
- package/es/components/iho-table/src/constants/index2.js +8 -5
- package/es/components/iho-table/src/hooks/tapHooks/index.d.ts +10 -3
- package/es/components/iho-table/src/hooks/tapHooks/index2.js +32 -21
- package/es/components/iho-table/src/hooks/tapHooks/useDataHooks.d.ts +5 -3
- package/es/components/iho-table/src/hooks/tapHooks/useDataHooks2.js +3 -3
- package/es/components/iho-table/src/hooks/tapHooks/useEventHooks.d.ts +177 -60
- package/es/components/iho-table/src/hooks/tapHooks/useEventHooks2.js +223 -59
- package/es/components/iho-table/src/hooks/tapHooks/useSetupHooks.d.ts +10 -0
- package/es/components/iho-table/src/hooks/tapHooks/useSetupHooks.js +1 -0
- package/es/components/iho-table/src/hooks/tapHooks/useSetupHooks2.js +27 -0
- package/es/components/iho-table/src/plugins/index.js +2 -1
- package/es/components/iho-table/src/plugins/index2.js +2 -1
- package/es/components/iho-table/src/plugins/lowCodeFieldAdaptorPlugin/index2.js +2 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/index.d.ts +2 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/index.js +2 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/{inputs → editableWidgets}/inputRendererPlugins.d.ts +0 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/{inputs → editableWidgets}/inputRendererPlugins.js +0 -5
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/edit-separate.js +110 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/edit-separate.vue.d.ts +107 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/index.d.ts +1 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/index.js +158 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/separate-utils.d.ts +14 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/separate-utils.js +1 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/separate-utils2.js +54 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/index.d.ts +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/index.js +2 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/pictureRendererPlugin.js +2 -1
- package/es/components/iho-table/src/types/index.d.ts +8 -3
- package/es/components/iho-table/src/types/index.js +1 -1
- package/es/components/iho-table/src/types/pluginType.d.ts +97 -83
- package/es/components/iho-table/src/types/pluginType.js +1 -1
- package/es/components/iho-table/src/types/pluginType2.js +3 -1
- package/es/components/iho-table/src/utils/index2.js +1 -1
- package/es/components/index.js +1 -1
- package/es/components/info-header/index.d.ts +2 -0
- package/es/components/info-header/src/InfoHeader.js +3 -1
- package/es/components/info-header/src/InfoHeader.vue.d.ts +2 -0
- package/es/shared/utils/index.d.ts +4 -0
- package/es/shared/utils/index.js +1 -1
- package/es/shared/utils/index2.js +60 -2
- package/es/shared/utils/tapable/AsyncSeriesHook.js +17 -2
- package/package.json +2 -2
- package/es/components/iho-table/src/plugins/rendererPlugins/inputs/index.d.ts +0 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/inputs/index.js +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Nullable } from '../../../../../es/shared/types';
|
|
2
2
|
import { InjectionKey, Ref } from 'vue';
|
|
3
3
|
import { VxeTableEventProps } from 'vxe-table/types/table';
|
|
4
|
-
import { IhoTableConfig, UnionToTuple } from '../../../../../es/components/iho-table';
|
|
4
|
+
import { IhoTableConfig, IhoTableHandler, UnionToTuple } from '../../../../../es/components/iho-table';
|
|
5
5
|
export declare enum WIDGET_TYPE {
|
|
6
6
|
DEFAULT = "DEFAULT",
|
|
7
7
|
PICTURE = "PICTURE",
|
|
@@ -41,7 +41,10 @@ export declare const VxeEventListenerNameList: Readonly<UnionToTuple<keyof VxeTa
|
|
|
41
41
|
export declare const IhoTableRowGroupSequence: readonly ["firstRowGroup", "secondRowGroup", "thirdRowGroup", "fourthRowGroup", "fifthRowGroup", "sixthRowGroup", "seventhRowGroup", "eighthRowGroup", "ninthRowGroup", "tenthRowGroup"];
|
|
42
42
|
export declare const HIGHEST_PRIORITY: number;
|
|
43
43
|
export declare enum INPUT_TYPE {
|
|
44
|
-
INPUT = "INPUT"
|
|
44
|
+
INPUT = "INPUT",
|
|
45
|
+
SEPARATE = "SEPARATE"
|
|
45
46
|
}
|
|
46
47
|
export declare const InjectionIhoTableConfig: InjectionKey<Ref<Nullable<IhoTableConfig>>>;
|
|
47
48
|
export declare const InjectionIhoTableEmits: InjectionKey<(event: string, ...args: unknown[]) => void>;
|
|
49
|
+
export declare const InjectionIhoTableUUID: InjectionKey<Ref<string>>;
|
|
50
|
+
export declare const InjectionIhoTableHandler: InjectionKey<IhoTableHandler>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { HIGHEST_PRIORITY, INPUT_TYPE, IhoTableRowGroupSequence, InjectionIhoTableConfig, InjectionIhoTableEmits, VxeEventListenerNameList, WIDGET_TYPE } from './index2.js';
|
|
1
|
+
export { HIGHEST_PRIORITY, INPUT_TYPE, IhoTableRowGroupSequence, InjectionIhoTableConfig, InjectionIhoTableEmits, InjectionIhoTableHandler, InjectionIhoTableUUID, VxeEventListenerNameList, WIDGET_TYPE } from './index2.js';
|
|
@@ -95,7 +95,7 @@ const VxeEventListenerNameList = Object.freeze([
|
|
|
95
95
|
"onActiveCellChangeStart",
|
|
96
96
|
"onActiveCellChangeEnd"
|
|
97
97
|
]);
|
|
98
|
-
const IhoTableRowGroupSequence = [
|
|
98
|
+
const IhoTableRowGroupSequence = Object.freeze([
|
|
99
99
|
"firstRowGroup",
|
|
100
100
|
"secondRowGroup",
|
|
101
101
|
"thirdRowGroup",
|
|
@@ -106,13 +106,16 @@ const IhoTableRowGroupSequence = [
|
|
|
106
106
|
"eighthRowGroup",
|
|
107
107
|
"ninthRowGroup",
|
|
108
108
|
"tenthRowGroup"
|
|
109
|
-
];
|
|
109
|
+
]);
|
|
110
110
|
const HIGHEST_PRIORITY = -Infinity;
|
|
111
111
|
var INPUT_TYPE = /* @__PURE__ */ ((INPUT_TYPE2) => {
|
|
112
112
|
INPUT_TYPE2["INPUT"] = "INPUT";
|
|
113
|
+
INPUT_TYPE2["SEPARATE"] = "SEPARATE";
|
|
113
114
|
return INPUT_TYPE2;
|
|
114
115
|
})(INPUT_TYPE || {});
|
|
115
|
-
const InjectionIhoTableConfig = Symbol("injectionIhoTableConfig
|
|
116
|
-
const InjectionIhoTableEmits = Symbol("InjectionIhoTableEmits
|
|
116
|
+
const InjectionIhoTableConfig = Symbol("injectionIhoTableConfig");
|
|
117
|
+
const InjectionIhoTableEmits = Symbol("InjectionIhoTableEmits");
|
|
118
|
+
const InjectionIhoTableUUID = Symbol("InjectionIhoTableUUID");
|
|
119
|
+
const InjectionIhoTableHandler = Symbol("InjectionIhoTableHandler");
|
|
117
120
|
|
|
118
|
-
export { HIGHEST_PRIORITY, INPUT_TYPE, IhoTableRowGroupSequence, InjectionIhoTableConfig, InjectionIhoTableEmits, VxeEventListenerNameList, WIDGET_TYPE };
|
|
121
|
+
export { HIGHEST_PRIORITY, INPUT_TYPE, IhoTableRowGroupSequence, InjectionIhoTableConfig, InjectionIhoTableEmits, InjectionIhoTableHandler, InjectionIhoTableUUID, VxeEventListenerNameList, WIDGET_TYPE };
|
|
@@ -2,14 +2,21 @@ import { AnyObject, Func, Nullable } from '../../../../../../es/shared/types';
|
|
|
2
2
|
import { MaybeRef } from '@vueuse/core';
|
|
3
3
|
import { VxeTableInstance } from 'vxe-table';
|
|
4
4
|
import { VxeTableEventProps } from 'vxe-table/types/table';
|
|
5
|
-
import { IhoTableConfig, IhoTableFieldItem, TableHooks } from '../../../../../../es/components/iho-table/src/types';
|
|
5
|
+
import { IhoTableConfig, IhoTableEventContext, IhoTableFieldItem, TableHooks } from '../../../../../../es/components/iho-table/src/types';
|
|
6
6
|
export declare const createTableHooks: () => Readonly<{
|
|
7
7
|
configHooks: import("../../../../../../es/components/iho-table/src/types").AbstractConfigHooks;
|
|
8
8
|
fieldHooks: import("../../../../../../es/components/iho-table/src/types").AbstractFieldHooks;
|
|
9
9
|
eventHooks: import("../../../../../../es/components/iho-table/src/types").AbstractEventHooks;
|
|
10
10
|
dataHooks: import("../../../../../../es/components/iho-table/src/types").AbstractDataHooks;
|
|
11
|
+
setupHooks: import("../../../../../../es/components/iho-table/src/types").AbstractSetupHooks;
|
|
11
12
|
}>;
|
|
12
13
|
export declare function applyTableConfigHooks(hooks: TableHooks, config: IhoTableConfig): IhoTableConfig;
|
|
13
14
|
export declare function applyTableFieldHooks(hooks: TableHooks, fieldList: IhoTableFieldItem[], config: IhoTableConfig): IhoTableFieldItem[];
|
|
14
|
-
export declare function createTableEventHandlers(hooks
|
|
15
|
-
|
|
15
|
+
export declare function createTableEventHandlers({ hooks, config, $table, emits, context }: {
|
|
16
|
+
hooks: TableHooks;
|
|
17
|
+
config: MaybeRef<IhoTableConfig>;
|
|
18
|
+
$table: MaybeRef<Nullable<VxeTableInstance>>;
|
|
19
|
+
emits: Func;
|
|
20
|
+
context: IhoTableEventContext;
|
|
21
|
+
}): Record<keyof VxeTableEventProps, any>;
|
|
22
|
+
export declare function createDataTransfer(hooks: TableHooks, config: MaybeRef<IhoTableConfig>, $table: MaybeRef<Nullable<VxeTableInstance>>): (data: AnyObject[]) => Promise<AnyObject[]>;
|
|
@@ -4,6 +4,7 @@ import { cloneDeep, isArray } from 'lodash-es';
|
|
|
4
4
|
import { VxeEventListenerNameList } from '../../constants/index2.js';
|
|
5
5
|
import { useDataHooks } from './useDataHooks2.js';
|
|
6
6
|
import { useEventHooks } from './useEventHooks2.js';
|
|
7
|
+
import { useSetupHooks } from './useSetupHooks2.js';
|
|
7
8
|
import { getEventName } from '../../utils/index2.js';
|
|
8
9
|
import { useConfigHooks } from './useConfigHooks2.js';
|
|
9
10
|
import { useFieldHooks } from './useFieldHooks2.js';
|
|
@@ -15,7 +16,8 @@ const createTableHooks = (() => {
|
|
|
15
16
|
configHooks: useConfigHooks().create(),
|
|
16
17
|
fieldHooks: useFieldHooks().create(),
|
|
17
18
|
eventHooks: useEventHooks().create(),
|
|
18
|
-
dataHooks: useDataHooks().create()
|
|
19
|
+
dataHooks: useDataHooks().create(),
|
|
20
|
+
setupHooks: useSetupHooks().create()
|
|
19
21
|
});
|
|
20
22
|
}
|
|
21
23
|
return () => {
|
|
@@ -56,8 +58,8 @@ function applyTableFieldHooks(hooks, fieldList, config) {
|
|
|
56
58
|
return result;
|
|
57
59
|
function traverseFieldList(fieldList2) {
|
|
58
60
|
return fieldList2.reduce((finFieldList, field, index) => {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
+
const before = [];
|
|
62
|
+
const after = [];
|
|
61
63
|
let removed = false;
|
|
62
64
|
field = hooks.fieldHooks.field.call(field, {
|
|
63
65
|
index,
|
|
@@ -65,57 +67,66 @@ function applyTableFieldHooks(hooks, fieldList, config) {
|
|
|
65
67
|
removed = true;
|
|
66
68
|
},
|
|
67
69
|
insertAfter(field2) {
|
|
68
|
-
after
|
|
70
|
+
after.push(...arrayed(field2));
|
|
69
71
|
},
|
|
70
72
|
insertBefore(field2) {
|
|
71
|
-
before
|
|
73
|
+
before.push(...arrayed(field2));
|
|
72
74
|
}
|
|
73
75
|
}, config);
|
|
74
|
-
|
|
76
|
+
finFieldList.push(...before);
|
|
75
77
|
if (!removed) {
|
|
76
78
|
finFieldList.push(field);
|
|
77
79
|
if (isArray(field.children)) {
|
|
78
80
|
field.children = traverseFieldList(field.children);
|
|
79
81
|
}
|
|
80
82
|
}
|
|
81
|
-
|
|
83
|
+
finFieldList.push(...after);
|
|
82
84
|
return finFieldList;
|
|
83
85
|
}, []);
|
|
84
86
|
}
|
|
85
87
|
}
|
|
86
|
-
function createTableEventHandlers(
|
|
88
|
+
function createTableEventHandlers({
|
|
89
|
+
hooks,
|
|
90
|
+
config,
|
|
91
|
+
$table,
|
|
92
|
+
emits,
|
|
93
|
+
context
|
|
94
|
+
}) {
|
|
87
95
|
const handler = (eventListenerName, payload) => {
|
|
88
96
|
var _a;
|
|
89
97
|
if (VxeEventListenerNameList.includes(eventListenerName))
|
|
90
98
|
emits(getEventName(eventListenerName), payload);
|
|
91
|
-
(_a = hooks.eventHooks[eventListenerName]) == null ? void 0 : _a.promise(payload, unref(
|
|
99
|
+
(_a = hooks.eventHooks[eventListenerName]) == null ? void 0 : _a.promise(payload, { $table: unref($table), ...context }, unref(config));
|
|
92
100
|
};
|
|
93
101
|
return VxeEventListenerNameList.reduce((result, eventName) => {
|
|
94
102
|
result[eventName] = (payload) => handler(eventName, payload);
|
|
95
103
|
return result;
|
|
96
104
|
}, {});
|
|
97
105
|
}
|
|
98
|
-
function createDataTransfer(hooks, config) {
|
|
99
|
-
return (data) => data.reduce((res, rowData) => {
|
|
100
|
-
|
|
101
|
-
|
|
106
|
+
function createDataTransfer(hooks, config, $table) {
|
|
107
|
+
return async (data) => await data.reduce(async (res, rowData, index) => {
|
|
108
|
+
const before = [];
|
|
109
|
+
const after = [];
|
|
102
110
|
let removed = false;
|
|
103
|
-
hooks.dataHooks.data.
|
|
111
|
+
await hooks.dataHooks.data.promise(rowData, {
|
|
112
|
+
index,
|
|
113
|
+
$table,
|
|
104
114
|
insertBefore(data2) {
|
|
105
|
-
before
|
|
115
|
+
before.push(...arrayed(data2));
|
|
106
116
|
},
|
|
107
117
|
insertAfter(data2) {
|
|
108
|
-
after
|
|
118
|
+
after.push(...arrayed(data2));
|
|
109
119
|
},
|
|
110
120
|
remove() {
|
|
111
121
|
removed = true;
|
|
112
122
|
}
|
|
113
123
|
}, unref(config));
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
124
|
+
const nextRes = await res;
|
|
125
|
+
nextRes.push(...before);
|
|
126
|
+
!removed && nextRes.push(rowData);
|
|
127
|
+
nextRes.push(...after);
|
|
128
|
+
return nextRes;
|
|
129
|
+
}, Promise.resolve([]));
|
|
119
130
|
}
|
|
120
131
|
|
|
121
132
|
export { applyTableConfigHooks, applyTableFieldHooks, createDataTransfer, createTableEventHandlers, createTableHooks };
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import { AnyObject } from '../../../../../../es/shared/types';
|
|
2
|
-
import {
|
|
2
|
+
import { AsyncSeriesHook } from '../../../../../../es/shared/utils/tapable';
|
|
3
3
|
import { AbstractDataHooks } from '../../../../../../es/components/iho-table/src/types';
|
|
4
4
|
declare class TableDataHooks extends AbstractDataHooks {
|
|
5
|
-
readonly data:
|
|
5
|
+
readonly data: AsyncSeriesHook<[AnyObject, {
|
|
6
6
|
remove(): void;
|
|
7
|
+
$table: import("@vueuse/shared").MaybeRef<import("../../../../../../es/shared/types").Nullable<import("vxe-table").VxeTableInstance>>;
|
|
8
|
+
index: number;
|
|
7
9
|
insertBefore(data: import("../../../../../../es/shared/types").ArrayAble<AnyObject>): void;
|
|
8
10
|
insertAfter(data: import("../../../../../../es/shared/types").ArrayAble<AnyObject>): void;
|
|
9
|
-
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig],
|
|
11
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
10
12
|
}
|
|
11
13
|
export declare function useDataHooks(): {
|
|
12
14
|
create: () => TableDataHooks;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import
|
|
1
|
+
import '../../../../../shared/utils/tapable/SyncHook.js';
|
|
2
2
|
import '../../../../../shared/utils/tapable/SyncBailHook.js';
|
|
3
3
|
import '../../../../../shared/utils/tapable/SyncWaterfallHook.js';
|
|
4
4
|
import '../../../../../shared/utils/tapable/SyncLoopHook.js';
|
|
5
5
|
import '../../../../../shared/utils/tapable/AsyncParallelHook.js';
|
|
6
6
|
import '../../../../../shared/utils/tapable/AsyncParallelBailHook.js';
|
|
7
|
-
import '../../../../../shared/utils/tapable/AsyncSeriesHook.js';
|
|
7
|
+
import AsyncSeriesHook from '../../../../../shared/utils/tapable/AsyncSeriesHook.js';
|
|
8
8
|
import '../../../../../shared/utils/tapable/AsyncSeriesBailHook.js';
|
|
9
9
|
import '../../../../../shared/utils/tapable/AsyncSeriesLoopHook.js';
|
|
10
10
|
import '../../../../../shared/utils/tapable/AsyncSeriesWaterfallHook.js';
|
|
@@ -13,7 +13,7 @@ import { AbstractDataHooks } from '../../types/pluginType2.js';
|
|
|
13
13
|
class TableDataHooks extends AbstractDataHooks {
|
|
14
14
|
constructor() {
|
|
15
15
|
super(...arguments);
|
|
16
|
-
this.data = new
|
|
16
|
+
this.data = new AsyncSeriesHook(["rowData", "context", "config"]);
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
function useDataHooks() {
|
|
@@ -1,66 +1,183 @@
|
|
|
1
1
|
import { AsyncParallelHook } from '../../../../../../es/shared/utils/tapable';
|
|
2
|
-
import { VxeTableEvents } from 'vxe-table/types/table';
|
|
3
2
|
import { AbstractEventHooks } from '../../../../../../es/components/iho-table/src/types';
|
|
4
3
|
declare class EventHooks extends AbstractEventHooks {
|
|
5
|
-
readonly onKeydownStart: AsyncParallelHook<[
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
readonly
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
readonly
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
readonly
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
readonly
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
readonly
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
readonly
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
readonly
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
readonly
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
readonly
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
readonly
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
readonly
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
readonly
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
readonly
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
readonly
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
readonly
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
readonly
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
readonly
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
readonly
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
readonly
|
|
63
|
-
|
|
4
|
+
readonly onKeydownStart: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.KeydownStartEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
5
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
6
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
7
|
+
readonly onKeydown: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.KeydownEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
8
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
9
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
10
|
+
readonly onKeydownEnd: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.KeydownEndEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
11
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
12
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
13
|
+
readonly onPaste: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.PasteEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
14
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
15
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
16
|
+
readonly onCopy: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CopyEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
17
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
18
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
19
|
+
readonly onCut: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CutEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
20
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
21
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
22
|
+
readonly onCurrentChange: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CurrentChangeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
23
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
24
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
25
|
+
readonly onRadioChange: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.RadioChangeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
26
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
27
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
28
|
+
readonly onCheckboxChange: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CheckboxChangeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
29
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
30
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
31
|
+
readonly onCheckboxAll: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CheckboxAllEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
32
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
33
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
34
|
+
readonly onCheckboxRangeStart: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CheckboxRangeStartEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
35
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
36
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
37
|
+
readonly onCheckboxRangeChange: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CheckboxRangeChangeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
38
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
39
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
40
|
+
readonly onCheckboxRangeEnd: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CheckboxRangeEndEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
41
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
42
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
43
|
+
readonly onCellClick: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CellClickEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
44
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
45
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
46
|
+
readonly onCellDblclick: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CellDblclickEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
47
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
48
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
49
|
+
readonly onCellMenu: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CellMenuEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
50
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
51
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
52
|
+
readonly onCellMouseenter: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CellMouseenterEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
53
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
54
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
55
|
+
readonly onCellMouseleave: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CellMouseleaveEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
56
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
57
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
58
|
+
readonly onHeaderCellClick: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.HeaderCellClickEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
59
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
60
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
61
|
+
readonly onHeaderCellDblclick: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.HeaderCellDblclickEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
62
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
63
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
64
|
+
readonly onHeaderCellMenu: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.HeaderCellMenuEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
65
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
66
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
67
|
+
readonly onFooterCellClick: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.FooterCellClickEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
68
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
69
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
70
|
+
readonly onFooterCellDblclick: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.FooterCellDblclickEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
71
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
72
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
73
|
+
readonly onFooterCellMenu: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.FooterCellMenuEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
74
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
75
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
76
|
+
readonly onSortChange: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.SortChangeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
77
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
78
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
79
|
+
readonly onFilterChange: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.FilterChangeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
80
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
81
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
82
|
+
readonly onFilterVisible: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.FilterVisibleEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
83
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
84
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
85
|
+
readonly onResizableChange: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.ResizableChangeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
86
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
87
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
88
|
+
readonly onToggleRowExpand: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.ToggleRowExpandEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
89
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
90
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
91
|
+
readonly onToggleTreeExpand: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.ToggleTreeExpandEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
92
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
93
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
94
|
+
readonly onMenuClick: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.MenuClickEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
95
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
96
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
97
|
+
readonly onEditClosed: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.EditClosedEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
98
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
99
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
100
|
+
readonly onEditActived: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.EditActivedEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
101
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
102
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
103
|
+
readonly onEditDisabled: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.EditDisabledEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
104
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
105
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
106
|
+
readonly onValidError: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.ValidErrorEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
107
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
108
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
109
|
+
readonly onScroll: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.ScrollEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
110
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
111
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
112
|
+
readonly onCustom: AsyncParallelHook<[import("vxe-table/types/table").VxeTableDefines.CustomEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
113
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
114
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
115
|
+
readonly onOpenFnr: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.OpenFnrParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
116
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
117
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
118
|
+
readonly onFnrChange: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.FnrChangeParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
119
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
120
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
121
|
+
readonly onFnrFind: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.FnrFindParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
122
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
123
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
124
|
+
readonly onFnrFindAll: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.FnrFindAllParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
125
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
126
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
127
|
+
readonly onFnrReplace: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.FnrReplaceParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
128
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
129
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
130
|
+
readonly onFnrReplaceAll: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.FnrReplaceAllParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
131
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
132
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
133
|
+
readonly onCellAreaCopy: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaCopyParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
134
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
135
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
136
|
+
readonly onCellAreaCut: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaCutParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
137
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
138
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
139
|
+
readonly onCellAreaPaste: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaPasteParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
140
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
141
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
142
|
+
readonly onCellAreaMerge: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaMergeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
143
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
144
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
145
|
+
readonly onClearCellAreaMerge: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.ClearCellAreaMergeEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
146
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
147
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
148
|
+
readonly onHeaderCellAreaSelection: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.HeaderCellAreaSelectionEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
149
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
150
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
151
|
+
readonly onCellAreaSelectionStart: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaSelectionStartEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
152
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
153
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
154
|
+
readonly onCellAreaSelectionDrag: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaSelectionDragEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
155
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
156
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
157
|
+
readonly onCellAreaSelectionEnd: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaSelectionEndEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
158
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
159
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
160
|
+
readonly onCellAreaExtensionStart: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaExtensionStartEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
161
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
162
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
163
|
+
readonly onCellAreaExtensionDrag: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaExtensionDragEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
164
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
165
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
166
|
+
readonly onCellAreaExtensionEnd: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaExtensionEndEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
167
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
168
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
169
|
+
readonly onCellAreaArrowsStart: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaArrowsStartEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
170
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
171
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
172
|
+
readonly onCellAreaArrowsEnd: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.CellAreaArrowsEndEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
173
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
174
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
175
|
+
readonly onActiveCellChangeStart: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.ActiveCellChangeStartEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
176
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
177
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
178
|
+
readonly onActiveCellChangeEnd: AsyncParallelHook<[import("vxe-table").VxeTableProDefines.ActiveCellChangeEndEventParams, import("../../../../../../es/components/iho-table/src/types").IhoTableHandler & {
|
|
179
|
+
$table: import("../../../../../shared/types").Nullable<import("vxe-table/types/table").VxeTableInstance>;
|
|
180
|
+
}, import("../../../../../../es/components/iho-table/src/types").IhoTableConfig], import("../../../../../../es/shared/utils/tapable").UnsetAdditionalOptions>;
|
|
64
181
|
}
|
|
65
182
|
export declare function useEventHooks(): {
|
|
66
183
|
create: () => EventHooks;
|