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
package/lib/table/index.d.ts
CHANGED
@@ -49,10 +49,10 @@ declare const BkTable: {
|
|
49
49
|
class?: unknown;
|
50
50
|
style?: unknown;
|
51
51
|
onSelect?: (_args: {
|
52
|
-
row:
|
52
|
+
row: any;
|
53
53
|
index: Number;
|
54
54
|
checked: string;
|
55
|
-
data:
|
55
|
+
data: any[];
|
56
56
|
}) => any;
|
57
57
|
ref?: import("vue").VNodeRef;
|
58
58
|
key?: string | number | symbol;
|
@@ -116,19 +116,19 @@ declare const BkTable: {
|
|
116
116
|
}) => any;
|
117
117
|
onColFilterSave?: (_args: {
|
118
118
|
column: import("./props").Column;
|
119
|
-
values:
|
119
|
+
values: any[];
|
120
120
|
}) => any;
|
121
|
-
onRowClick?: (_e: MouseEvent, _row:
|
122
|
-
onRowDblclick?: (_e: MouseEvent, _row:
|
121
|
+
onRowClick?: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => any;
|
122
|
+
onRowDblclick?: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => any;
|
123
123
|
onRowExpand?: (_args: {
|
124
|
-
row:
|
124
|
+
row: any;
|
125
125
|
column: import("./props").Column;
|
126
126
|
index: Number;
|
127
|
-
rows:
|
127
|
+
rows: any[];
|
128
128
|
e: MouseEvent;
|
129
129
|
}) => any;
|
130
|
-
onRowMouseEnter?: (_e: MouseEvent, _row:
|
131
|
-
onRowMouseLeave?: (_e: MouseEvent, _row:
|
130
|
+
onRowMouseEnter?: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => any;
|
131
|
+
onRowMouseLeave?: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => any;
|
132
132
|
onPageLimitChange?: (_arg: number) => any;
|
133
133
|
onPageValueChange?: (_arg: number) => any;
|
134
134
|
onSettingChange?: (_args: {
|
@@ -146,18 +146,18 @@ declare const BkTable: {
|
|
146
146
|
}) => any;
|
147
147
|
onSelectAll?: (_args: {
|
148
148
|
checked: string;
|
149
|
-
data:
|
149
|
+
data: any[];
|
150
150
|
}) => any;
|
151
151
|
onSelectionChange?: (_args: {
|
152
|
-
row:
|
152
|
+
row: any;
|
153
153
|
index: Number;
|
154
154
|
checked: string;
|
155
|
-
data:
|
155
|
+
data: any[];
|
156
156
|
isAll: boolean;
|
157
157
|
}) => any;
|
158
158
|
onCellClick?: (_args: {
|
159
159
|
event: MouseEvent;
|
160
|
-
row:
|
160
|
+
row: any;
|
161
161
|
column: import("./props").Column;
|
162
162
|
cell: {
|
163
163
|
getValue: () => string;
|
@@ -167,7 +167,7 @@ declare const BkTable: {
|
|
167
167
|
}) => any;
|
168
168
|
onCellDblclick?: (_args: {
|
169
169
|
event: MouseEvent;
|
170
|
-
row:
|
170
|
+
row: any;
|
171
171
|
column: import("./props").Column;
|
172
172
|
cell: {
|
173
173
|
getValue: () => string;
|
@@ -197,14 +197,14 @@ declare const BkTable: {
|
|
197
197
|
index: number;
|
198
198
|
}) => void) & ((event: import("./events").EMIT_EVENTS.COLUMN_FILTER_SAVE, _args: {
|
199
199
|
column: import("./props").Column;
|
200
|
-
values:
|
201
|
-
}) => void) & ((event: import("./events").EMIT_EVENTS.ROW_CLICK, _e: MouseEvent, _row:
|
202
|
-
row:
|
200
|
+
values: any[];
|
201
|
+
}) => void) & ((event: import("./events").EMIT_EVENTS.ROW_CLICK, _e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => void) & ((event: import("./events").EMIT_EVENTS.ROW_DBL_CLICK, _e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => void) & ((event: import("./events").EMIT_EVENTS.ROW_EXPAND_CLICK, _args: {
|
202
|
+
row: any;
|
203
203
|
column: import("./props").Column;
|
204
204
|
index: Number;
|
205
|
-
rows:
|
205
|
+
rows: any[];
|
206
206
|
e: MouseEvent;
|
207
|
-
}) => void) & ((event: import("./events").EMIT_EVENTS.ROW_MOUSE_ENTER, _e: MouseEvent, _row:
|
207
|
+
}) => void) & ((event: import("./events").EMIT_EVENTS.ROW_MOUSE_ENTER, _e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => void) & ((event: import("./events").EMIT_EVENTS.ROW_MOUSE_LEAVE, _e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => void) & ((event: import("./events").EMIT_EVENTS.PAGE_LIMIT_CHANGE, _arg: number) => void) & ((event: import("./events").EMIT_EVENTS.PAGE_VALUE_CHANGE, _arg: number) => void) & ((event: import("./events").EMIT_EVENTS.SETTING_CHANGE, _args: {
|
208
208
|
checked: string[];
|
209
209
|
size: string;
|
210
210
|
height: number;
|
@@ -216,22 +216,22 @@ declare const BkTable: {
|
|
216
216
|
scrollLeft: number;
|
217
217
|
bottom: number;
|
218
218
|
}) => void) & ((event: import("./events").EMIT_EVENTS.ROW_SELECT, _args: {
|
219
|
-
row:
|
219
|
+
row: any;
|
220
220
|
index: Number;
|
221
221
|
checked: string;
|
222
|
-
data:
|
222
|
+
data: any[];
|
223
223
|
}) => void) & ((event: import("./events").EMIT_EVENTS.ROW_SELECT_ALL, _args: {
|
224
224
|
checked: string;
|
225
|
-
data:
|
225
|
+
data: any[];
|
226
226
|
}) => void) & ((event: import("./events").EMIT_EVENTS.ROW_SELECT_CHANGE, _args: {
|
227
|
-
row:
|
227
|
+
row: any;
|
228
228
|
index: Number;
|
229
229
|
checked: string;
|
230
|
-
data:
|
230
|
+
data: any[];
|
231
231
|
isAll: boolean;
|
232
232
|
}) => void) & ((event: import("./events").EMIT_EVENTS.CELL_CLICK, _args: {
|
233
233
|
event: MouseEvent;
|
234
|
-
row:
|
234
|
+
row: any;
|
235
235
|
column: import("./props").Column;
|
236
236
|
cell: {
|
237
237
|
getValue: () => string;
|
@@ -240,7 +240,7 @@ declare const BkTable: {
|
|
240
240
|
columnIndex: number;
|
241
241
|
}) => void) & ((event: import("./events").EMIT_EVENTS.CELL_DBL_CLICK, _args: {
|
242
242
|
event: MouseEvent;
|
243
|
-
row:
|
243
|
+
row: any;
|
244
244
|
column: import("./props").Column;
|
245
245
|
cell: {
|
246
246
|
getValue: () => string;
|
@@ -393,10 +393,10 @@ declare const BkTable: {
|
|
393
393
|
};
|
394
394
|
}>> & {
|
395
395
|
onSelect?: (_args: {
|
396
|
-
row:
|
396
|
+
row: any;
|
397
397
|
index: Number;
|
398
398
|
checked: string;
|
399
|
-
data:
|
399
|
+
data: any[];
|
400
400
|
}) => any;
|
401
401
|
onColumnPick?: (_cols: import("./props").IColumnActive[]) => any;
|
402
402
|
onColumnSort?: (_args: {
|
@@ -411,19 +411,19 @@ declare const BkTable: {
|
|
411
411
|
}) => any;
|
412
412
|
onColFilterSave?: (_args: {
|
413
413
|
column: import("./props").Column;
|
414
|
-
values:
|
414
|
+
values: any[];
|
415
415
|
}) => any;
|
416
|
-
onRowClick?: (_e: MouseEvent, _row:
|
417
|
-
onRowDblclick?: (_e: MouseEvent, _row:
|
416
|
+
onRowClick?: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => any;
|
417
|
+
onRowDblclick?: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => any;
|
418
418
|
onRowExpand?: (_args: {
|
419
|
-
row:
|
419
|
+
row: any;
|
420
420
|
column: import("./props").Column;
|
421
421
|
index: Number;
|
422
|
-
rows:
|
422
|
+
rows: any[];
|
423
423
|
e: MouseEvent;
|
424
424
|
}) => any;
|
425
|
-
onRowMouseEnter?: (_e: MouseEvent, _row:
|
426
|
-
onRowMouseLeave?: (_e: MouseEvent, _row:
|
425
|
+
onRowMouseEnter?: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => any;
|
426
|
+
onRowMouseLeave?: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => any;
|
427
427
|
onPageLimitChange?: (_arg: number) => any;
|
428
428
|
onPageValueChange?: (_arg: number) => any;
|
429
429
|
onSettingChange?: (_args: {
|
@@ -441,18 +441,18 @@ declare const BkTable: {
|
|
441
441
|
}) => any;
|
442
442
|
onSelectAll?: (_args: {
|
443
443
|
checked: string;
|
444
|
-
data:
|
444
|
+
data: any[];
|
445
445
|
}) => any;
|
446
446
|
onSelectionChange?: (_args: {
|
447
|
-
row:
|
447
|
+
row: any;
|
448
448
|
index: Number;
|
449
449
|
checked: string;
|
450
|
-
data:
|
450
|
+
data: any[];
|
451
451
|
isAll: boolean;
|
452
452
|
}) => any;
|
453
453
|
onCellClick?: (_args: {
|
454
454
|
event: MouseEvent;
|
455
|
-
row:
|
455
|
+
row: any;
|
456
456
|
column: import("./props").Column;
|
457
457
|
cell: {
|
458
458
|
getValue: () => string;
|
@@ -462,7 +462,7 @@ declare const BkTable: {
|
|
462
462
|
}) => any;
|
463
463
|
onCellDblclick?: (_args: {
|
464
464
|
event: MouseEvent;
|
465
|
-
row:
|
465
|
+
row: any;
|
466
466
|
column: import("./props").Column;
|
467
467
|
cell: {
|
468
468
|
getValue: () => string;
|
@@ -484,32 +484,32 @@ declare const BkTable: {
|
|
484
484
|
}) => boolean;
|
485
485
|
colFilterSave: (_args: {
|
486
486
|
column: import("./props").Column;
|
487
|
-
values:
|
487
|
+
values: any[];
|
488
488
|
}) => boolean;
|
489
|
-
rowClick: (_e: MouseEvent, _row:
|
490
|
-
rowDblclick: (_e: MouseEvent, _row:
|
489
|
+
rowClick: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => boolean;
|
490
|
+
rowDblclick: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => boolean;
|
491
491
|
rowExpand: (_args: {
|
492
|
-
row:
|
492
|
+
row: any;
|
493
493
|
column: import("./props").Column;
|
494
494
|
index: Number;
|
495
|
-
rows:
|
495
|
+
rows: any[];
|
496
496
|
e: MouseEvent;
|
497
497
|
}) => boolean;
|
498
498
|
select: (_args: {
|
499
|
-
row:
|
499
|
+
row: any;
|
500
500
|
index: Number;
|
501
501
|
checked: string;
|
502
|
-
data:
|
502
|
+
data: any[];
|
503
503
|
}) => boolean;
|
504
504
|
selectAll: (_args: {
|
505
505
|
checked: string;
|
506
|
-
data:
|
506
|
+
data: any[];
|
507
507
|
}) => boolean;
|
508
508
|
selectionChange: (_args: {
|
509
|
-
row:
|
509
|
+
row: any;
|
510
510
|
index: Number;
|
511
511
|
checked: string;
|
512
|
-
data:
|
512
|
+
data: any[];
|
513
513
|
isAll: boolean;
|
514
514
|
}) => boolean;
|
515
515
|
pageLimitChange: (_arg: number) => boolean;
|
@@ -529,7 +529,7 @@ declare const BkTable: {
|
|
529
529
|
}) => boolean;
|
530
530
|
cellClick: (_args: {
|
531
531
|
event: MouseEvent;
|
532
|
-
row:
|
532
|
+
row: any;
|
533
533
|
column: import("./props").Column;
|
534
534
|
cell: {
|
535
535
|
getValue: () => string;
|
@@ -539,7 +539,7 @@ declare const BkTable: {
|
|
539
539
|
}) => boolean;
|
540
540
|
cellDblclick: (_args: {
|
541
541
|
event: MouseEvent;
|
542
|
-
row:
|
542
|
+
row: any;
|
543
543
|
column: import("./props").Column;
|
544
544
|
cell: {
|
545
545
|
getValue: () => string;
|
@@ -547,8 +547,8 @@ declare const BkTable: {
|
|
547
547
|
rowIndex: number;
|
548
548
|
columnIndex: number;
|
549
549
|
}) => boolean;
|
550
|
-
rowMouseEnter: (_e: MouseEvent, _row:
|
551
|
-
rowMouseLeave: (_e: MouseEvent, _row:
|
550
|
+
rowMouseEnter: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => boolean;
|
551
|
+
rowMouseLeave: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => boolean;
|
552
552
|
}, string, {
|
553
553
|
data: any[];
|
554
554
|
thead: import("./props").Thead;
|
@@ -752,10 +752,10 @@ declare const BkTable: {
|
|
752
752
|
};
|
753
753
|
}>> & {
|
754
754
|
onSelect?: (_args: {
|
755
|
-
row:
|
755
|
+
row: any;
|
756
756
|
index: Number;
|
757
757
|
checked: string;
|
758
|
-
data:
|
758
|
+
data: any[];
|
759
759
|
}) => any;
|
760
760
|
onColumnPick?: (_cols: import("./props").IColumnActive[]) => any;
|
761
761
|
onColumnSort?: (_args: {
|
@@ -770,19 +770,19 @@ declare const BkTable: {
|
|
770
770
|
}) => any;
|
771
771
|
onColFilterSave?: (_args: {
|
772
772
|
column: import("./props").Column;
|
773
|
-
values:
|
773
|
+
values: any[];
|
774
774
|
}) => any;
|
775
|
-
onRowClick?: (_e: MouseEvent, _row:
|
776
|
-
onRowDblclick?: (_e: MouseEvent, _row:
|
775
|
+
onRowClick?: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => any;
|
776
|
+
onRowDblclick?: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => any;
|
777
777
|
onRowExpand?: (_args: {
|
778
|
-
row:
|
778
|
+
row: any;
|
779
779
|
column: import("./props").Column;
|
780
780
|
index: Number;
|
781
|
-
rows:
|
781
|
+
rows: any[];
|
782
782
|
e: MouseEvent;
|
783
783
|
}) => any;
|
784
|
-
onRowMouseEnter?: (_e: MouseEvent, _row:
|
785
|
-
onRowMouseLeave?: (_e: MouseEvent, _row:
|
784
|
+
onRowMouseEnter?: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => any;
|
785
|
+
onRowMouseLeave?: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => any;
|
786
786
|
onPageLimitChange?: (_arg: number) => any;
|
787
787
|
onPageValueChange?: (_arg: number) => any;
|
788
788
|
onSettingChange?: (_args: {
|
@@ -800,18 +800,18 @@ declare const BkTable: {
|
|
800
800
|
}) => any;
|
801
801
|
onSelectAll?: (_args: {
|
802
802
|
checked: string;
|
803
|
-
data:
|
803
|
+
data: any[];
|
804
804
|
}) => any;
|
805
805
|
onSelectionChange?: (_args: {
|
806
|
-
row:
|
806
|
+
row: any;
|
807
807
|
index: Number;
|
808
808
|
checked: string;
|
809
|
-
data:
|
809
|
+
data: any[];
|
810
810
|
isAll: boolean;
|
811
811
|
}) => any;
|
812
812
|
onCellClick?: (_args: {
|
813
813
|
event: MouseEvent;
|
814
|
-
row:
|
814
|
+
row: any;
|
815
815
|
column: import("./props").Column;
|
816
816
|
cell: {
|
817
817
|
getValue: () => string;
|
@@ -821,7 +821,7 @@ declare const BkTable: {
|
|
821
821
|
}) => any;
|
822
822
|
onCellDblclick?: (_args: {
|
823
823
|
event: MouseEvent;
|
824
|
-
row:
|
824
|
+
row: any;
|
825
825
|
column: import("./props").Column;
|
826
826
|
cell: {
|
827
827
|
getValue: () => string;
|
@@ -977,10 +977,10 @@ declare const BkTable: {
|
|
977
977
|
};
|
978
978
|
}>> & {
|
979
979
|
onSelect?: (_args: {
|
980
|
-
row:
|
980
|
+
row: any;
|
981
981
|
index: Number;
|
982
982
|
checked: string;
|
983
|
-
data:
|
983
|
+
data: any[];
|
984
984
|
}) => any;
|
985
985
|
onColumnPick?: (_cols: import("./props").IColumnActive[]) => any;
|
986
986
|
onColumnSort?: (_args: {
|
@@ -995,19 +995,19 @@ declare const BkTable: {
|
|
995
995
|
}) => any;
|
996
996
|
onColFilterSave?: (_args: {
|
997
997
|
column: import("./props").Column;
|
998
|
-
values:
|
998
|
+
values: any[];
|
999
999
|
}) => any;
|
1000
|
-
onRowClick?: (_e: MouseEvent, _row:
|
1001
|
-
onRowDblclick?: (_e: MouseEvent, _row:
|
1000
|
+
onRowClick?: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => any;
|
1001
|
+
onRowDblclick?: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => any;
|
1002
1002
|
onRowExpand?: (_args: {
|
1003
|
-
row:
|
1003
|
+
row: any;
|
1004
1004
|
column: import("./props").Column;
|
1005
1005
|
index: Number;
|
1006
|
-
rows:
|
1006
|
+
rows: any[];
|
1007
1007
|
e: MouseEvent;
|
1008
1008
|
}) => any;
|
1009
|
-
onRowMouseEnter?: (_e: MouseEvent, _row:
|
1010
|
-
onRowMouseLeave?: (_e: MouseEvent, _row:
|
1009
|
+
onRowMouseEnter?: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => any;
|
1010
|
+
onRowMouseLeave?: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => any;
|
1011
1011
|
onPageLimitChange?: (_arg: number) => any;
|
1012
1012
|
onPageValueChange?: (_arg: number) => any;
|
1013
1013
|
onSettingChange?: (_args: {
|
@@ -1025,18 +1025,18 @@ declare const BkTable: {
|
|
1025
1025
|
}) => any;
|
1026
1026
|
onSelectAll?: (_args: {
|
1027
1027
|
checked: string;
|
1028
|
-
data:
|
1028
|
+
data: any[];
|
1029
1029
|
}) => any;
|
1030
1030
|
onSelectionChange?: (_args: {
|
1031
|
-
row:
|
1031
|
+
row: any;
|
1032
1032
|
index: Number;
|
1033
1033
|
checked: string;
|
1034
|
-
data:
|
1034
|
+
data: any[];
|
1035
1035
|
isAll: boolean;
|
1036
1036
|
}) => any;
|
1037
1037
|
onCellClick?: (_args: {
|
1038
1038
|
event: MouseEvent;
|
1039
|
-
row:
|
1039
|
+
row: any;
|
1040
1040
|
column: import("./props").Column;
|
1041
1041
|
cell: {
|
1042
1042
|
getValue: () => string;
|
@@ -1046,7 +1046,7 @@ declare const BkTable: {
|
|
1046
1046
|
}) => any;
|
1047
1047
|
onCellDblclick?: (_args: {
|
1048
1048
|
event: MouseEvent;
|
1049
|
-
row:
|
1049
|
+
row: any;
|
1050
1050
|
column: import("./props").Column;
|
1051
1051
|
cell: {
|
1052
1052
|
getValue: () => string;
|
@@ -1068,32 +1068,32 @@ declare const BkTable: {
|
|
1068
1068
|
}) => boolean;
|
1069
1069
|
colFilterSave: (_args: {
|
1070
1070
|
column: import("./props").Column;
|
1071
|
-
values:
|
1071
|
+
values: any[];
|
1072
1072
|
}) => boolean;
|
1073
|
-
rowClick: (_e: MouseEvent, _row:
|
1074
|
-
rowDblclick: (_e: MouseEvent, _row:
|
1073
|
+
rowClick: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => boolean;
|
1074
|
+
rowDblclick: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => boolean;
|
1075
1075
|
rowExpand: (_args: {
|
1076
|
-
row:
|
1076
|
+
row: any;
|
1077
1077
|
column: import("./props").Column;
|
1078
1078
|
index: Number;
|
1079
|
-
rows:
|
1079
|
+
rows: any[];
|
1080
1080
|
e: MouseEvent;
|
1081
1081
|
}) => boolean;
|
1082
1082
|
select: (_args: {
|
1083
|
-
row:
|
1083
|
+
row: any;
|
1084
1084
|
index: Number;
|
1085
1085
|
checked: string;
|
1086
|
-
data:
|
1086
|
+
data: any[];
|
1087
1087
|
}) => boolean;
|
1088
1088
|
selectAll: (_args: {
|
1089
1089
|
checked: string;
|
1090
|
-
data:
|
1090
|
+
data: any[];
|
1091
1091
|
}) => boolean;
|
1092
1092
|
selectionChange: (_args: {
|
1093
|
-
row:
|
1093
|
+
row: any;
|
1094
1094
|
index: Number;
|
1095
1095
|
checked: string;
|
1096
|
-
data:
|
1096
|
+
data: any[];
|
1097
1097
|
isAll: boolean;
|
1098
1098
|
}) => boolean;
|
1099
1099
|
pageLimitChange: (_arg: number) => boolean;
|
@@ -1113,7 +1113,7 @@ declare const BkTable: {
|
|
1113
1113
|
}) => boolean;
|
1114
1114
|
cellClick: (_args: {
|
1115
1115
|
event: MouseEvent;
|
1116
|
-
row:
|
1116
|
+
row: any;
|
1117
1117
|
column: import("./props").Column;
|
1118
1118
|
cell: {
|
1119
1119
|
getValue: () => string;
|
@@ -1123,7 +1123,7 @@ declare const BkTable: {
|
|
1123
1123
|
}) => boolean;
|
1124
1124
|
cellDblclick: (_args: {
|
1125
1125
|
event: MouseEvent;
|
1126
|
-
row:
|
1126
|
+
row: any;
|
1127
1127
|
column: import("./props").Column;
|
1128
1128
|
cell: {
|
1129
1129
|
getValue: () => string;
|
@@ -1131,8 +1131,8 @@ declare const BkTable: {
|
|
1131
1131
|
rowIndex: number;
|
1132
1132
|
columnIndex: number;
|
1133
1133
|
}) => boolean;
|
1134
|
-
rowMouseEnter: (_e: MouseEvent, _row:
|
1135
|
-
rowMouseLeave: (_e: MouseEvent, _row:
|
1134
|
+
rowMouseEnter: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => boolean;
|
1135
|
+
rowMouseLeave: (_e: MouseEvent, _row: any, _index: number, _rows: any[], _this: any) => boolean;
|
1136
1136
|
}, string, {
|
1137
1137
|
data: any[];
|
1138
1138
|
thead: import("./props").Thead;
|
@@ -1228,7 +1228,6 @@ declare const BkTable: {
|
|
1228
1228
|
queueStack: (_: any, fn: any) => any;
|
1229
1229
|
};
|
1230
1230
|
column: {
|
1231
|
-
field: import("./props").LabelFunctionString;
|
1232
1231
|
fixed?: boolean | "right" | "left";
|
1233
1232
|
minWidth?: string | number;
|
1234
1233
|
resizable?: boolean;
|
@@ -1294,6 +1293,7 @@ declare const BkTable: {
|
|
1294
1293
|
popoverOption?: any;
|
1295
1294
|
resizerWay?: import("./props").ResizerWay;
|
1296
1295
|
};
|
1296
|
+
field: import("./props").LabelFunctionString;
|
1297
1297
|
prop?: import("./props").LabelFunctionString;
|
1298
1298
|
};
|
1299
1299
|
}, unknown, {}, {
|