bkui-vue 0.0.2-beta.56 → 0.0.2-beta.57
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/dist/index.cjs.js +18 -18
- package/dist/index.esm.js +1038 -1044
- package/dist/index.umd.js +19 -19
- package/lib/checkbox/checkbox.d.ts +4 -4
- package/lib/checkbox/index.d.ts +13 -13
- package/lib/radio/index.d.ts +21 -21
- package/lib/radio/radio-button.d.ts +4 -4
- package/lib/radio/radio-group.d.ts +4 -4
- package/lib/radio/radio.d.ts +4 -4
- package/lib/table/components/table-column.d.ts +1 -1
- package/lib/table/events.d.ts +26 -26
- package/lib/table/index.d.ts +97 -97
- package/lib/table/index.js +1 -1
- package/lib/table/table.d.ts +28 -28
- package/lib/table/utils.d.ts +1 -6
- package/lib/table-column/index.d.ts +3 -3
- package/lib/table-column/index.js +1 -1
- package/package.json +1 -1
@@ -79,8 +79,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
79
79
|
size: "default" | "small" | "large";
|
80
80
|
resolveClassName: (cls: string) => string;
|
81
81
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
82
|
-
'update:modelValue': (value:
|
83
|
-
change: (value:
|
82
|
+
'update:modelValue': (value: any) => boolean;
|
83
|
+
change: (value: any) => boolean;
|
84
84
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
85
85
|
modelValue: import("vue-types").VueTypeDef<string | number | boolean>;
|
86
86
|
label: import("vue-types").VueTypeDef<string | number | boolean>;
|
@@ -115,8 +115,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
115
115
|
default: boolean;
|
116
116
|
};
|
117
117
|
}>> & {
|
118
|
-
onChange?: (value:
|
119
|
-
"onUpdate:modelValue"?: (value:
|
118
|
+
onChange?: (value: any) => any;
|
119
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
120
120
|
}, {
|
121
121
|
disabled: boolean;
|
122
122
|
size: "default" | "small" | "large";
|
package/lib/checkbox/index.d.ts
CHANGED
@@ -16,7 +16,7 @@ declare const BkCheckbox: {
|
|
16
16
|
class?: unknown;
|
17
17
|
readonly label?: string | number | boolean;
|
18
18
|
style?: unknown;
|
19
|
-
onChange?: (value:
|
19
|
+
onChange?: (value: any) => any;
|
20
20
|
ref?: import("vue").VNodeRef;
|
21
21
|
key?: string | number | symbol;
|
22
22
|
ref_for?: boolean;
|
@@ -60,7 +60,7 @@ declare const BkCheckbox: {
|
|
60
60
|
[key: string]: any;
|
61
61
|
}>) => void)[];
|
62
62
|
readonly modelValue?: string | number | boolean;
|
63
|
-
"onUpdate:modelValue"?: (value:
|
63
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
64
64
|
};
|
65
65
|
$attrs: {
|
66
66
|
[x: string]: unknown;
|
@@ -73,7 +73,7 @@ declare const BkCheckbox: {
|
|
73
73
|
}>;
|
74
74
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
75
75
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
76
|
-
$emit: ((event: "change", value:
|
76
|
+
$emit: ((event: "change", value: any) => void) & ((event: "update:modelValue", value: any) => void);
|
77
77
|
$el: any;
|
78
78
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
79
79
|
modelValue: import("vue-types").VueTypeDef<string | number | boolean>;
|
@@ -109,8 +109,8 @@ declare const BkCheckbox: {
|
|
109
109
|
default: boolean;
|
110
110
|
};
|
111
111
|
}>> & {
|
112
|
-
onChange?: (value:
|
113
|
-
"onUpdate:modelValue"?: (value:
|
112
|
+
onChange?: (value: any) => any;
|
113
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
114
114
|
}, {
|
115
115
|
inputRef: import("vue").Ref<any>;
|
116
116
|
isFocus: import("vue").Ref<boolean>;
|
@@ -123,8 +123,8 @@ declare const BkCheckbox: {
|
|
123
123
|
size: "default" | "small" | "large";
|
124
124
|
resolveClassName: (cls: string) => string;
|
125
125
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
126
|
-
'update:modelValue': (value:
|
127
|
-
change: (value:
|
126
|
+
'update:modelValue': (value: any) => boolean;
|
127
|
+
change: (value: any) => boolean;
|
128
128
|
}, string, {
|
129
129
|
disabled: boolean;
|
130
130
|
size: "default" | "small" | "large";
|
@@ -188,8 +188,8 @@ declare const BkCheckbox: {
|
|
188
188
|
default: boolean;
|
189
189
|
};
|
190
190
|
}>> & {
|
191
|
-
onChange?: (value:
|
192
|
-
"onUpdate:modelValue"?: (value:
|
191
|
+
onChange?: (value: any) => any;
|
192
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
193
193
|
} & import("vue").ShallowUnwrapRef<{
|
194
194
|
inputRef: import("vue").Ref<any>;
|
195
195
|
isFocus: import("vue").Ref<boolean>;
|
@@ -239,8 +239,8 @@ declare const BkCheckbox: {
|
|
239
239
|
default: boolean;
|
240
240
|
};
|
241
241
|
}>> & {
|
242
|
-
onChange?: (value:
|
243
|
-
"onUpdate:modelValue"?: (value:
|
242
|
+
onChange?: (value: any) => any;
|
243
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
244
244
|
}, {
|
245
245
|
inputRef: import("vue").Ref<any>;
|
246
246
|
isFocus: import("vue").Ref<boolean>;
|
@@ -253,8 +253,8 @@ declare const BkCheckbox: {
|
|
253
253
|
size: "default" | "small" | "large";
|
254
254
|
resolveClassName: (cls: string) => string;
|
255
255
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
256
|
-
'update:modelValue': (value:
|
257
|
-
change: (value:
|
256
|
+
'update:modelValue': (value: any) => boolean;
|
257
|
+
change: (value: any) => boolean;
|
258
258
|
}, string, {
|
259
259
|
disabled: boolean;
|
260
260
|
size: "default" | "small" | "large";
|
package/lib/radio/index.d.ts
CHANGED
@@ -12,7 +12,7 @@ declare const BkRadio: {
|
|
12
12
|
class?: unknown;
|
13
13
|
readonly label: string | number | boolean;
|
14
14
|
style?: unknown;
|
15
|
-
onChange?: (value:
|
15
|
+
onChange?: (value: any) => any;
|
16
16
|
ref?: import("vue").VNodeRef;
|
17
17
|
key?: string | number | symbol;
|
18
18
|
ref_for?: boolean;
|
@@ -55,7 +55,7 @@ declare const BkRadio: {
|
|
55
55
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
56
56
|
[key: string]: any;
|
57
57
|
}>) => void)[];
|
58
|
-
"onUpdate:modelValue"?: (value:
|
58
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
59
59
|
};
|
60
60
|
$attrs: {
|
61
61
|
[x: string]: unknown;
|
@@ -68,7 +68,7 @@ declare const BkRadio: {
|
|
68
68
|
}>;
|
69
69
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
70
70
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
71
|
-
$emit: ((event: "change", value:
|
71
|
+
$emit: ((event: "change", value: any) => void) & ((event: "update:modelValue", value: any) => void);
|
72
72
|
$el: any;
|
73
73
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
74
74
|
name: import("vue-types").VueTypeValidableDef<string> & {
|
@@ -93,8 +93,8 @@ declare const BkRadio: {
|
|
93
93
|
default: boolean;
|
94
94
|
};
|
95
95
|
}>> & {
|
96
|
-
onChange?: (value:
|
97
|
-
"onUpdate:modelValue"?: (value:
|
96
|
+
onChange?: (value: any) => any;
|
97
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
98
98
|
}, {
|
99
99
|
isFocused: import("vue").Ref<boolean>;
|
100
100
|
isChecked: import("vue").Ref<boolean>;
|
@@ -105,8 +105,8 @@ declare const BkRadio: {
|
|
105
105
|
handleChange: (event: Event) => void;
|
106
106
|
resolveClassName: (cls: string) => string;
|
107
107
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
108
|
-
'update:modelValue': (value:
|
109
|
-
change: (value:
|
108
|
+
'update:modelValue': (value: any) => boolean;
|
109
|
+
change: (value: any) => boolean;
|
110
110
|
}, string, {
|
111
111
|
name: string;
|
112
112
|
disabled: boolean;
|
@@ -155,8 +155,8 @@ declare const BkRadio: {
|
|
155
155
|
default: boolean;
|
156
156
|
};
|
157
157
|
}>> & {
|
158
|
-
onChange?: (value:
|
159
|
-
"onUpdate:modelValue"?: (value:
|
158
|
+
onChange?: (value: any) => any;
|
159
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
160
160
|
} & import("vue").ShallowUnwrapRef<{
|
161
161
|
isFocused: import("vue").Ref<boolean>;
|
162
162
|
isChecked: import("vue").Ref<boolean>;
|
@@ -193,8 +193,8 @@ declare const BkRadio: {
|
|
193
193
|
default: boolean;
|
194
194
|
};
|
195
195
|
}>> & {
|
196
|
-
onChange?: (value:
|
197
|
-
"onUpdate:modelValue"?: (value:
|
196
|
+
onChange?: (value: any) => any;
|
197
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
198
198
|
}, {
|
199
199
|
isFocused: import("vue").Ref<boolean>;
|
200
200
|
isChecked: import("vue").Ref<boolean>;
|
@@ -205,8 +205,8 @@ declare const BkRadio: {
|
|
205
205
|
handleChange: (event: Event) => void;
|
206
206
|
resolveClassName: (cls: string) => string;
|
207
207
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
208
|
-
'update:modelValue': (value:
|
209
|
-
change: (value:
|
208
|
+
'update:modelValue': (value: any) => boolean;
|
209
|
+
change: (value: any) => boolean;
|
210
210
|
}, string, {
|
211
211
|
name: string;
|
212
212
|
disabled: boolean;
|
@@ -234,8 +234,8 @@ declare const BkRadio: {
|
|
234
234
|
}, {
|
235
235
|
resolveClassName: (cls: string) => string;
|
236
236
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
237
|
-
'update:modelValue': (value:
|
238
|
-
change: (value:
|
237
|
+
'update:modelValue': (value: any) => boolean;
|
238
|
+
change: (value: any) => boolean;
|
239
239
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
240
240
|
name: import("vue-types").VueTypeValidableDef<string> & {
|
241
241
|
default: string;
|
@@ -255,8 +255,8 @@ declare const BkRadio: {
|
|
255
255
|
default: string;
|
256
256
|
};
|
257
257
|
}>> & {
|
258
|
-
onChange?: (value:
|
259
|
-
"onUpdate:modelValue"?: (value:
|
258
|
+
onChange?: (value: any) => any;
|
259
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
260
260
|
}, {
|
261
261
|
name: string;
|
262
262
|
type: string;
|
@@ -296,8 +296,8 @@ declare const BkRadio: {
|
|
296
296
|
handleChange: (event: Event) => void;
|
297
297
|
resolveClassName: (cls: string) => string;
|
298
298
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
299
|
-
'update:modelValue': (value:
|
300
|
-
change: (value:
|
299
|
+
'update:modelValue': (value: any) => boolean;
|
300
|
+
change: (value: any) => boolean;
|
301
301
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
302
302
|
name: import("vue-types").VueTypeValidableDef<string> & {
|
303
303
|
default: string;
|
@@ -322,8 +322,8 @@ declare const BkRadio: {
|
|
322
322
|
};
|
323
323
|
size: import("vue-types").VueTypeDef<"default" | "small" | "large">;
|
324
324
|
}>> & {
|
325
|
-
onChange?: (value:
|
326
|
-
"onUpdate:modelValue"?: (value:
|
325
|
+
onChange?: (value: any) => any;
|
326
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
327
327
|
}, {
|
328
328
|
name: string;
|
329
329
|
disabled: boolean;
|
@@ -57,8 +57,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
57
57
|
handleChange: (event: Event) => void;
|
58
58
|
resolveClassName: (cls: string) => string;
|
59
59
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
60
|
-
'update:modelValue': (value:
|
61
|
-
change: (value:
|
60
|
+
'update:modelValue': (value: any) => boolean;
|
61
|
+
change: (value: any) => boolean;
|
62
62
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
63
63
|
name: import("vue-types").VueTypeValidableDef<string> & {
|
64
64
|
default: string;
|
@@ -83,8 +83,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
83
83
|
};
|
84
84
|
size: import("vue-types").VueTypeDef<"default" | "small" | "large">;
|
85
85
|
}>> & {
|
86
|
-
onChange?: (value:
|
87
|
-
"onUpdate:modelValue"?: (value:
|
86
|
+
onChange?: (value: any) => any;
|
87
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
88
88
|
}, {
|
89
89
|
name: string;
|
90
90
|
disabled: boolean;
|
@@ -40,8 +40,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
40
40
|
}, {
|
41
41
|
resolveClassName: (cls: string) => string;
|
42
42
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
43
|
-
'update:modelValue': (value:
|
44
|
-
change: (value:
|
43
|
+
'update:modelValue': (value: any) => boolean;
|
44
|
+
change: (value: any) => boolean;
|
45
45
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
46
46
|
name: import("vue-types").VueTypeValidableDef<string> & {
|
47
47
|
default: string;
|
@@ -61,8 +61,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
61
61
|
default: string;
|
62
62
|
};
|
63
63
|
}>> & {
|
64
|
-
onChange?: (value:
|
65
|
-
"onUpdate:modelValue"?: (value:
|
64
|
+
onChange?: (value: any) => any;
|
65
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
66
66
|
}, {
|
67
67
|
name: string;
|
68
68
|
type: string;
|
package/lib/radio/radio.d.ts
CHANGED
@@ -55,8 +55,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
55
55
|
handleChange: (event: Event) => void;
|
56
56
|
resolveClassName: (cls: string) => string;
|
57
57
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
58
|
-
'update:modelValue': (value:
|
59
|
-
change: (value:
|
58
|
+
'update:modelValue': (value: any) => boolean;
|
59
|
+
change: (value: any) => boolean;
|
60
60
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
61
61
|
name: import("vue-types").VueTypeValidableDef<string> & {
|
62
62
|
default: string;
|
@@ -80,8 +80,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
80
80
|
default: boolean;
|
81
81
|
};
|
82
82
|
}>> & {
|
83
|
-
onChange?: (value:
|
84
|
-
"onUpdate:modelValue"?: (value:
|
83
|
+
onChange?: (value: any) => any;
|
84
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
85
85
|
}, {
|
86
86
|
name: string;
|
87
87
|
disabled: boolean;
|
@@ -106,7 +106,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
106
106
|
queueStack: (_: any, fn: any) => any;
|
107
107
|
};
|
108
108
|
column: {
|
109
|
-
field: import("../props").LabelFunctionString;
|
110
109
|
fixed?: boolean | "right" | "left";
|
111
110
|
minWidth?: string | number;
|
112
111
|
resizable?: boolean;
|
@@ -172,6 +171,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
172
171
|
popoverOption?: any;
|
173
172
|
resizerWay?: import("../props").ResizerWay;
|
174
173
|
};
|
174
|
+
field: import("../props").LabelFunctionString;
|
175
175
|
prop?: import("../props").LabelFunctionString;
|
176
176
|
};
|
177
177
|
}, unknown, {}, {
|
package/lib/table/events.d.ts
CHANGED
@@ -38,36 +38,36 @@ export declare const EVENT_COL_FILTER: (_args: {
|
|
38
38
|
}) => boolean;
|
39
39
|
export declare const EVENT_COL_FILTER_SAVE: (_args: {
|
40
40
|
column: Column;
|
41
|
-
values:
|
41
|
+
values: any[];
|
42
42
|
}) => boolean;
|
43
43
|
export declare const EVENT_COL_SORT: (_args: {
|
44
44
|
column: Column;
|
45
45
|
index: number;
|
46
46
|
type: SORT_OPTION;
|
47
47
|
}) => boolean;
|
48
|
-
export declare const EVENT_MOUSE_FN: (_e: MouseEvent, _row:
|
48
|
+
export declare const EVENT_MOUSE_FN: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => boolean;
|
49
49
|
export declare const EVENT_EXPAND_FN: (_args: {
|
50
|
-
row:
|
50
|
+
row: any;
|
51
51
|
column: Column;
|
52
52
|
index: Number;
|
53
|
-
rows:
|
53
|
+
rows: any[];
|
54
54
|
e: MouseEvent;
|
55
55
|
}) => boolean;
|
56
56
|
export declare const EVENT_ROW_SELECT_FN: (_args: {
|
57
|
-
row:
|
57
|
+
row: any;
|
58
58
|
index: Number;
|
59
59
|
checked: string;
|
60
|
-
data:
|
60
|
+
data: any[];
|
61
61
|
}) => boolean;
|
62
62
|
export declare const EVENT_ROW_SELECT_ALL_FN: (_args: {
|
63
63
|
checked: string;
|
64
|
-
data:
|
64
|
+
data: any[];
|
65
65
|
}) => boolean;
|
66
66
|
export declare const EVENT_ROW_SELECT_CHANGE_FN: (_args: {
|
67
|
-
row:
|
67
|
+
row: any;
|
68
68
|
index: Number;
|
69
69
|
checked: string;
|
70
|
-
data:
|
70
|
+
data: any[];
|
71
71
|
isAll: boolean;
|
72
72
|
}) => boolean;
|
73
73
|
export declare const EVENT_PAGE_FN: (_arg: number) => boolean;
|
@@ -79,7 +79,7 @@ export declare const EVENT_SETTING_FN: (_args: {
|
|
79
79
|
}) => boolean;
|
80
80
|
export declare const EVENT_CELL_FN: (_args: {
|
81
81
|
event: MouseEvent;
|
82
|
-
row:
|
82
|
+
row: any;
|
83
83
|
column: Column;
|
84
84
|
cell: {
|
85
85
|
getValue: () => string;
|
@@ -108,32 +108,32 @@ export declare const EMIT_EVENT_TYPES: {
|
|
108
108
|
}) => boolean;
|
109
109
|
colFilterSave: (_args: {
|
110
110
|
column: Column;
|
111
|
-
values:
|
111
|
+
values: any[];
|
112
112
|
}) => boolean;
|
113
|
-
rowClick: (_e: MouseEvent, _row:
|
114
|
-
rowDblclick: (_e: MouseEvent, _row:
|
113
|
+
rowClick: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => boolean;
|
114
|
+
rowDblclick: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => boolean;
|
115
115
|
rowExpand: (_args: {
|
116
|
-
row:
|
116
|
+
row: any;
|
117
117
|
column: Column;
|
118
118
|
index: Number;
|
119
|
-
rows:
|
119
|
+
rows: any[];
|
120
120
|
e: MouseEvent;
|
121
121
|
}) => boolean;
|
122
122
|
select: (_args: {
|
123
|
-
row:
|
123
|
+
row: any;
|
124
124
|
index: Number;
|
125
125
|
checked: string;
|
126
|
-
data:
|
126
|
+
data: any[];
|
127
127
|
}) => boolean;
|
128
128
|
selectAll: (_args: {
|
129
129
|
checked: string;
|
130
|
-
data:
|
130
|
+
data: any[];
|
131
131
|
}) => boolean;
|
132
132
|
selectionChange: (_args: {
|
133
|
-
row:
|
133
|
+
row: any;
|
134
134
|
index: Number;
|
135
135
|
checked: string;
|
136
|
-
data:
|
136
|
+
data: any[];
|
137
137
|
isAll: boolean;
|
138
138
|
}) => boolean;
|
139
139
|
pageLimitChange: (_arg: number) => boolean;
|
@@ -153,7 +153,7 @@ export declare const EMIT_EVENT_TYPES: {
|
|
153
153
|
}) => boolean;
|
154
154
|
cellClick: (_args: {
|
155
155
|
event: MouseEvent;
|
156
|
-
row:
|
156
|
+
row: any;
|
157
157
|
column: Column;
|
158
158
|
cell: {
|
159
159
|
getValue: () => string;
|
@@ -163,7 +163,7 @@ export declare const EMIT_EVENT_TYPES: {
|
|
163
163
|
}) => boolean;
|
164
164
|
cellDblclick: (_args: {
|
165
165
|
event: MouseEvent;
|
166
|
-
row:
|
166
|
+
row: any;
|
167
167
|
column: Column;
|
168
168
|
cell: {
|
169
169
|
getValue: () => string;
|
@@ -171,10 +171,10 @@ export declare const EMIT_EVENT_TYPES: {
|
|
171
171
|
rowIndex: number;
|
172
172
|
columnIndex: number;
|
173
173
|
}) => boolean;
|
174
|
-
rowMouseEnter: (_e: MouseEvent, _row:
|
175
|
-
rowMouseLeave: (_e: MouseEvent, _row:
|
174
|
+
rowMouseEnter: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => boolean;
|
175
|
+
rowMouseLeave: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => boolean;
|
176
176
|
};
|
177
177
|
export declare const CELL_EVENT_TYPES: {
|
178
|
-
click: (_e: MouseEvent, _row:
|
179
|
-
dblclick: (_e: MouseEvent, _row:
|
178
|
+
click: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => boolean;
|
179
|
+
dblclick: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => boolean;
|
180
180
|
};
|