@visactor/vue-vtable 1.18.7 → 1.19.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/cjs/index.d.ts +1 -1
- package/cjs/index.js +1 -1
- package/cjs/tables/base-table.vue.d.ts +110 -165
- package/cjs/tables/base-table.vue.js +55 -55
- package/dist/vue-vtable.js +56 -56
- package/dist/vue-vtable.min.js +1 -1
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/tables/base-table.vue.d.ts +110 -165
- package/es/tables/base-table.vue.js +55 -55
- package/package.json +5 -5
package/cjs/index.d.ts
CHANGED
package/cjs/index.js
CHANGED
|
@@ -40,7 +40,7 @@ function _interopNamespaceDefault(e) {
|
|
|
40
40
|
|
|
41
41
|
var VTable__namespace = /*#__PURE__*/_interopNamespaceDefault(VTable);
|
|
42
42
|
|
|
43
|
-
const version = "1.
|
|
43
|
+
const version = "1.19.0";
|
|
44
44
|
|
|
45
45
|
exports.VTable = VTable__namespace;
|
|
46
46
|
Object.defineProperty(exports, 'register', {
|
|
@@ -48,223 +48,223 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
48
48
|
required: false;
|
|
49
49
|
};
|
|
50
50
|
onClickCell: {
|
|
51
|
-
type:
|
|
51
|
+
type: FunctionConstructor;
|
|
52
52
|
required: false;
|
|
53
53
|
};
|
|
54
54
|
onDblClickCell: {
|
|
55
|
-
type:
|
|
55
|
+
type: FunctionConstructor;
|
|
56
56
|
required: false;
|
|
57
57
|
};
|
|
58
58
|
onMouseDownCell: {
|
|
59
|
-
type:
|
|
59
|
+
type: FunctionConstructor;
|
|
60
60
|
required: false;
|
|
61
61
|
};
|
|
62
62
|
onMouseUpCell: {
|
|
63
|
-
type:
|
|
63
|
+
type: FunctionConstructor;
|
|
64
64
|
required: false;
|
|
65
65
|
};
|
|
66
66
|
onSelectedCell: {
|
|
67
|
-
type:
|
|
67
|
+
type: FunctionConstructor;
|
|
68
68
|
required: false;
|
|
69
69
|
};
|
|
70
70
|
onKeyDown: {
|
|
71
|
-
type:
|
|
71
|
+
type: FunctionConstructor;
|
|
72
72
|
required: false;
|
|
73
73
|
};
|
|
74
74
|
onMouseEnterTable: {
|
|
75
|
-
type:
|
|
75
|
+
type: FunctionConstructor;
|
|
76
76
|
required: false;
|
|
77
77
|
};
|
|
78
78
|
onMouseLeaveTable: {
|
|
79
|
-
type:
|
|
79
|
+
type: FunctionConstructor;
|
|
80
80
|
required: false;
|
|
81
81
|
};
|
|
82
82
|
onMouseDownTable: {
|
|
83
|
-
type:
|
|
83
|
+
type: FunctionConstructor;
|
|
84
84
|
required: false;
|
|
85
85
|
};
|
|
86
86
|
onMouseMoveCell: {
|
|
87
|
-
type:
|
|
87
|
+
type: FunctionConstructor;
|
|
88
88
|
required: false;
|
|
89
89
|
};
|
|
90
90
|
onMouseEnterCell: {
|
|
91
|
-
type:
|
|
91
|
+
type: FunctionConstructor;
|
|
92
92
|
required: false;
|
|
93
93
|
};
|
|
94
94
|
onMouseLeaveCell: {
|
|
95
|
-
type:
|
|
95
|
+
type: FunctionConstructor;
|
|
96
96
|
required: false;
|
|
97
97
|
};
|
|
98
98
|
onContextMenuCell: {
|
|
99
|
-
type:
|
|
99
|
+
type: FunctionConstructor;
|
|
100
100
|
required: false;
|
|
101
101
|
};
|
|
102
102
|
onResizeColumn: {
|
|
103
|
-
type:
|
|
103
|
+
type: FunctionConstructor;
|
|
104
104
|
required: false;
|
|
105
105
|
};
|
|
106
106
|
onResizeColumnEnd: {
|
|
107
|
-
type:
|
|
107
|
+
type: FunctionConstructor;
|
|
108
108
|
required: false;
|
|
109
109
|
};
|
|
110
110
|
onChangeHeaderPosition: {
|
|
111
|
-
type:
|
|
111
|
+
type: FunctionConstructor;
|
|
112
112
|
required: false;
|
|
113
113
|
};
|
|
114
114
|
onChangeHeaderPositionStart: {
|
|
115
|
-
type:
|
|
115
|
+
type: FunctionConstructor;
|
|
116
116
|
required: false;
|
|
117
117
|
};
|
|
118
118
|
onChangeHeaderPositionFail: {
|
|
119
|
-
type:
|
|
119
|
+
type: FunctionConstructor;
|
|
120
120
|
required: false;
|
|
121
121
|
};
|
|
122
122
|
onSortClick: {
|
|
123
|
-
type:
|
|
123
|
+
type: FunctionConstructor;
|
|
124
124
|
required: false;
|
|
125
125
|
};
|
|
126
126
|
onFreezeClick: {
|
|
127
|
-
type:
|
|
127
|
+
type: FunctionConstructor;
|
|
128
128
|
required: false;
|
|
129
129
|
};
|
|
130
130
|
onScroll: {
|
|
131
|
-
type:
|
|
131
|
+
type: FunctionConstructor;
|
|
132
132
|
required: false;
|
|
133
133
|
};
|
|
134
134
|
onDropdownMenuClick: {
|
|
135
|
-
type:
|
|
135
|
+
type: FunctionConstructor;
|
|
136
136
|
required: false;
|
|
137
137
|
};
|
|
138
138
|
onMouseOverChartSymbol: {
|
|
139
|
-
type:
|
|
139
|
+
type: FunctionConstructor;
|
|
140
140
|
required: false;
|
|
141
141
|
};
|
|
142
142
|
onDragSelectEnd: {
|
|
143
|
-
type:
|
|
143
|
+
type: FunctionConstructor;
|
|
144
144
|
required: false;
|
|
145
145
|
};
|
|
146
146
|
onDropdownIconClick: {
|
|
147
|
-
type:
|
|
147
|
+
type: FunctionConstructor;
|
|
148
148
|
required: false;
|
|
149
149
|
};
|
|
150
150
|
onDropdownMenuClear: {
|
|
151
|
-
type:
|
|
151
|
+
type: FunctionConstructor;
|
|
152
152
|
required: false;
|
|
153
153
|
};
|
|
154
154
|
onTreeHierarchyStateChange: {
|
|
155
|
-
type:
|
|
155
|
+
type: FunctionConstructor;
|
|
156
156
|
required: false;
|
|
157
157
|
};
|
|
158
158
|
onShowMenu: {
|
|
159
|
-
type:
|
|
159
|
+
type: FunctionConstructor;
|
|
160
160
|
required: false;
|
|
161
161
|
};
|
|
162
162
|
onHideMenu: {
|
|
163
|
-
type:
|
|
163
|
+
type: FunctionConstructor;
|
|
164
164
|
required: false;
|
|
165
165
|
};
|
|
166
166
|
onIconClick: {
|
|
167
|
-
type:
|
|
167
|
+
type: FunctionConstructor;
|
|
168
168
|
required: false;
|
|
169
169
|
};
|
|
170
170
|
onLegendItemClick: {
|
|
171
|
-
type:
|
|
171
|
+
type: FunctionConstructor;
|
|
172
172
|
required: false;
|
|
173
173
|
};
|
|
174
174
|
onLegendItemHover: {
|
|
175
|
-
type:
|
|
175
|
+
type: FunctionConstructor;
|
|
176
176
|
required: false;
|
|
177
177
|
};
|
|
178
178
|
onLegendItemUnHover: {
|
|
179
|
-
type:
|
|
179
|
+
type: FunctionConstructor;
|
|
180
180
|
required: false;
|
|
181
181
|
};
|
|
182
182
|
onLegendChange: {
|
|
183
|
-
type:
|
|
183
|
+
type: FunctionConstructor;
|
|
184
184
|
required: false;
|
|
185
185
|
};
|
|
186
186
|
onMouseEnterAxis: {
|
|
187
|
-
type:
|
|
187
|
+
type: FunctionConstructor;
|
|
188
188
|
required: false;
|
|
189
189
|
};
|
|
190
190
|
onMouseLeaveAxis: {
|
|
191
|
-
type:
|
|
191
|
+
type: FunctionConstructor;
|
|
192
192
|
required: false;
|
|
193
193
|
};
|
|
194
194
|
onCheckboxStateChange: {
|
|
195
|
-
type:
|
|
195
|
+
type: FunctionConstructor;
|
|
196
196
|
required: false;
|
|
197
197
|
};
|
|
198
198
|
onRadioStateChange: {
|
|
199
|
-
type:
|
|
199
|
+
type: FunctionConstructor;
|
|
200
200
|
required: false;
|
|
201
201
|
};
|
|
202
202
|
onAfterRender: {
|
|
203
|
-
type:
|
|
203
|
+
type: FunctionConstructor;
|
|
204
204
|
required: false;
|
|
205
205
|
};
|
|
206
206
|
onInitialized: {
|
|
207
|
-
type:
|
|
207
|
+
type: FunctionConstructor;
|
|
208
208
|
required: false;
|
|
209
209
|
};
|
|
210
210
|
onPivotSortClick: {
|
|
211
|
-
type:
|
|
211
|
+
type: FunctionConstructor;
|
|
212
212
|
required: false;
|
|
213
213
|
};
|
|
214
214
|
onDrillMenuClick: {
|
|
215
|
-
type:
|
|
215
|
+
type: FunctionConstructor;
|
|
216
216
|
required: false;
|
|
217
217
|
};
|
|
218
218
|
onVChartEventType: {
|
|
219
|
-
type:
|
|
219
|
+
type: FunctionConstructor;
|
|
220
220
|
required: false;
|
|
221
221
|
};
|
|
222
222
|
onChangeCellValue: {
|
|
223
|
-
type:
|
|
223
|
+
type: FunctionConstructor;
|
|
224
224
|
required: false;
|
|
225
225
|
};
|
|
226
226
|
onMousedownFillHandle: {
|
|
227
|
-
type:
|
|
227
|
+
type: FunctionConstructor;
|
|
228
228
|
required: false;
|
|
229
229
|
};
|
|
230
230
|
onDragFillHandleEnd: {
|
|
231
|
-
type:
|
|
231
|
+
type: FunctionConstructor;
|
|
232
232
|
required: false;
|
|
233
233
|
};
|
|
234
234
|
onDblclickFillHandle: {
|
|
235
|
-
type:
|
|
235
|
+
type: FunctionConstructor;
|
|
236
236
|
required: false;
|
|
237
237
|
};
|
|
238
238
|
onScrollVerticalEnd: {
|
|
239
|
-
type:
|
|
239
|
+
type: FunctionConstructor;
|
|
240
240
|
required: false;
|
|
241
241
|
};
|
|
242
242
|
onScrollHorizontalEnd: {
|
|
243
|
-
type:
|
|
243
|
+
type: FunctionConstructor;
|
|
244
244
|
required: false;
|
|
245
245
|
};
|
|
246
246
|
onChangCellValue: {
|
|
247
|
-
type:
|
|
247
|
+
type: FunctionConstructor;
|
|
248
248
|
required: false;
|
|
249
249
|
};
|
|
250
250
|
onEmptyTipClick: {
|
|
251
|
-
type:
|
|
251
|
+
type: FunctionConstructor;
|
|
252
252
|
required: false;
|
|
253
253
|
};
|
|
254
254
|
onEmptyTipDblClick: {
|
|
255
|
-
type:
|
|
255
|
+
type: FunctionConstructor;
|
|
256
256
|
required: false;
|
|
257
257
|
};
|
|
258
258
|
onButtonClick: {
|
|
259
|
-
type:
|
|
259
|
+
type: FunctionConstructor;
|
|
260
260
|
required: false;
|
|
261
261
|
};
|
|
262
262
|
onBeforeCacheChartImage: {
|
|
263
|
-
type:
|
|
263
|
+
type: FunctionConstructor;
|
|
264
264
|
required: false;
|
|
265
265
|
};
|
|
266
266
|
onPastedData: {
|
|
267
|
-
type:
|
|
267
|
+
type: FunctionConstructor;
|
|
268
268
|
required: false;
|
|
269
269
|
};
|
|
270
270
|
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
@@ -305,223 +305,223 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
305
305
|
required: false;
|
|
306
306
|
};
|
|
307
307
|
onClickCell: {
|
|
308
|
-
type:
|
|
308
|
+
type: FunctionConstructor;
|
|
309
309
|
required: false;
|
|
310
310
|
};
|
|
311
311
|
onDblClickCell: {
|
|
312
|
-
type:
|
|
312
|
+
type: FunctionConstructor;
|
|
313
313
|
required: false;
|
|
314
314
|
};
|
|
315
315
|
onMouseDownCell: {
|
|
316
|
-
type:
|
|
316
|
+
type: FunctionConstructor;
|
|
317
317
|
required: false;
|
|
318
318
|
};
|
|
319
319
|
onMouseUpCell: {
|
|
320
|
-
type:
|
|
320
|
+
type: FunctionConstructor;
|
|
321
321
|
required: false;
|
|
322
322
|
};
|
|
323
323
|
onSelectedCell: {
|
|
324
|
-
type:
|
|
324
|
+
type: FunctionConstructor;
|
|
325
325
|
required: false;
|
|
326
326
|
};
|
|
327
327
|
onKeyDown: {
|
|
328
|
-
type:
|
|
328
|
+
type: FunctionConstructor;
|
|
329
329
|
required: false;
|
|
330
330
|
};
|
|
331
331
|
onMouseEnterTable: {
|
|
332
|
-
type:
|
|
332
|
+
type: FunctionConstructor;
|
|
333
333
|
required: false;
|
|
334
334
|
};
|
|
335
335
|
onMouseLeaveTable: {
|
|
336
|
-
type:
|
|
336
|
+
type: FunctionConstructor;
|
|
337
337
|
required: false;
|
|
338
338
|
};
|
|
339
339
|
onMouseDownTable: {
|
|
340
|
-
type:
|
|
340
|
+
type: FunctionConstructor;
|
|
341
341
|
required: false;
|
|
342
342
|
};
|
|
343
343
|
onMouseMoveCell: {
|
|
344
|
-
type:
|
|
344
|
+
type: FunctionConstructor;
|
|
345
345
|
required: false;
|
|
346
346
|
};
|
|
347
347
|
onMouseEnterCell: {
|
|
348
|
-
type:
|
|
348
|
+
type: FunctionConstructor;
|
|
349
349
|
required: false;
|
|
350
350
|
};
|
|
351
351
|
onMouseLeaveCell: {
|
|
352
|
-
type:
|
|
352
|
+
type: FunctionConstructor;
|
|
353
353
|
required: false;
|
|
354
354
|
};
|
|
355
355
|
onContextMenuCell: {
|
|
356
|
-
type:
|
|
356
|
+
type: FunctionConstructor;
|
|
357
357
|
required: false;
|
|
358
358
|
};
|
|
359
359
|
onResizeColumn: {
|
|
360
|
-
type:
|
|
360
|
+
type: FunctionConstructor;
|
|
361
361
|
required: false;
|
|
362
362
|
};
|
|
363
363
|
onResizeColumnEnd: {
|
|
364
|
-
type:
|
|
364
|
+
type: FunctionConstructor;
|
|
365
365
|
required: false;
|
|
366
366
|
};
|
|
367
367
|
onChangeHeaderPosition: {
|
|
368
|
-
type:
|
|
368
|
+
type: FunctionConstructor;
|
|
369
369
|
required: false;
|
|
370
370
|
};
|
|
371
371
|
onChangeHeaderPositionStart: {
|
|
372
|
-
type:
|
|
372
|
+
type: FunctionConstructor;
|
|
373
373
|
required: false;
|
|
374
374
|
};
|
|
375
375
|
onChangeHeaderPositionFail: {
|
|
376
|
-
type:
|
|
376
|
+
type: FunctionConstructor;
|
|
377
377
|
required: false;
|
|
378
378
|
};
|
|
379
379
|
onSortClick: {
|
|
380
|
-
type:
|
|
380
|
+
type: FunctionConstructor;
|
|
381
381
|
required: false;
|
|
382
382
|
};
|
|
383
383
|
onFreezeClick: {
|
|
384
|
-
type:
|
|
384
|
+
type: FunctionConstructor;
|
|
385
385
|
required: false;
|
|
386
386
|
};
|
|
387
387
|
onScroll: {
|
|
388
|
-
type:
|
|
388
|
+
type: FunctionConstructor;
|
|
389
389
|
required: false;
|
|
390
390
|
};
|
|
391
391
|
onDropdownMenuClick: {
|
|
392
|
-
type:
|
|
392
|
+
type: FunctionConstructor;
|
|
393
393
|
required: false;
|
|
394
394
|
};
|
|
395
395
|
onMouseOverChartSymbol: {
|
|
396
|
-
type:
|
|
396
|
+
type: FunctionConstructor;
|
|
397
397
|
required: false;
|
|
398
398
|
};
|
|
399
399
|
onDragSelectEnd: {
|
|
400
|
-
type:
|
|
400
|
+
type: FunctionConstructor;
|
|
401
401
|
required: false;
|
|
402
402
|
};
|
|
403
403
|
onDropdownIconClick: {
|
|
404
|
-
type:
|
|
404
|
+
type: FunctionConstructor;
|
|
405
405
|
required: false;
|
|
406
406
|
};
|
|
407
407
|
onDropdownMenuClear: {
|
|
408
|
-
type:
|
|
408
|
+
type: FunctionConstructor;
|
|
409
409
|
required: false;
|
|
410
410
|
};
|
|
411
411
|
onTreeHierarchyStateChange: {
|
|
412
|
-
type:
|
|
412
|
+
type: FunctionConstructor;
|
|
413
413
|
required: false;
|
|
414
414
|
};
|
|
415
415
|
onShowMenu: {
|
|
416
|
-
type:
|
|
416
|
+
type: FunctionConstructor;
|
|
417
417
|
required: false;
|
|
418
418
|
};
|
|
419
419
|
onHideMenu: {
|
|
420
|
-
type:
|
|
420
|
+
type: FunctionConstructor;
|
|
421
421
|
required: false;
|
|
422
422
|
};
|
|
423
423
|
onIconClick: {
|
|
424
|
-
type:
|
|
424
|
+
type: FunctionConstructor;
|
|
425
425
|
required: false;
|
|
426
426
|
};
|
|
427
427
|
onLegendItemClick: {
|
|
428
|
-
type:
|
|
428
|
+
type: FunctionConstructor;
|
|
429
429
|
required: false;
|
|
430
430
|
};
|
|
431
431
|
onLegendItemHover: {
|
|
432
|
-
type:
|
|
432
|
+
type: FunctionConstructor;
|
|
433
433
|
required: false;
|
|
434
434
|
};
|
|
435
435
|
onLegendItemUnHover: {
|
|
436
|
-
type:
|
|
436
|
+
type: FunctionConstructor;
|
|
437
437
|
required: false;
|
|
438
438
|
};
|
|
439
439
|
onLegendChange: {
|
|
440
|
-
type:
|
|
440
|
+
type: FunctionConstructor;
|
|
441
441
|
required: false;
|
|
442
442
|
};
|
|
443
443
|
onMouseEnterAxis: {
|
|
444
|
-
type:
|
|
444
|
+
type: FunctionConstructor;
|
|
445
445
|
required: false;
|
|
446
446
|
};
|
|
447
447
|
onMouseLeaveAxis: {
|
|
448
|
-
type:
|
|
448
|
+
type: FunctionConstructor;
|
|
449
449
|
required: false;
|
|
450
450
|
};
|
|
451
451
|
onCheckboxStateChange: {
|
|
452
|
-
type:
|
|
452
|
+
type: FunctionConstructor;
|
|
453
453
|
required: false;
|
|
454
454
|
};
|
|
455
455
|
onRadioStateChange: {
|
|
456
|
-
type:
|
|
456
|
+
type: FunctionConstructor;
|
|
457
457
|
required: false;
|
|
458
458
|
};
|
|
459
459
|
onAfterRender: {
|
|
460
|
-
type:
|
|
460
|
+
type: FunctionConstructor;
|
|
461
461
|
required: false;
|
|
462
462
|
};
|
|
463
463
|
onInitialized: {
|
|
464
|
-
type:
|
|
464
|
+
type: FunctionConstructor;
|
|
465
465
|
required: false;
|
|
466
466
|
};
|
|
467
467
|
onPivotSortClick: {
|
|
468
|
-
type:
|
|
468
|
+
type: FunctionConstructor;
|
|
469
469
|
required: false;
|
|
470
470
|
};
|
|
471
471
|
onDrillMenuClick: {
|
|
472
|
-
type:
|
|
472
|
+
type: FunctionConstructor;
|
|
473
473
|
required: false;
|
|
474
474
|
};
|
|
475
475
|
onVChartEventType: {
|
|
476
|
-
type:
|
|
476
|
+
type: FunctionConstructor;
|
|
477
477
|
required: false;
|
|
478
478
|
};
|
|
479
479
|
onChangeCellValue: {
|
|
480
|
-
type:
|
|
480
|
+
type: FunctionConstructor;
|
|
481
481
|
required: false;
|
|
482
482
|
};
|
|
483
483
|
onMousedownFillHandle: {
|
|
484
|
-
type:
|
|
484
|
+
type: FunctionConstructor;
|
|
485
485
|
required: false;
|
|
486
486
|
};
|
|
487
487
|
onDragFillHandleEnd: {
|
|
488
|
-
type:
|
|
488
|
+
type: FunctionConstructor;
|
|
489
489
|
required: false;
|
|
490
490
|
};
|
|
491
491
|
onDblclickFillHandle: {
|
|
492
|
-
type:
|
|
492
|
+
type: FunctionConstructor;
|
|
493
493
|
required: false;
|
|
494
494
|
};
|
|
495
495
|
onScrollVerticalEnd: {
|
|
496
|
-
type:
|
|
496
|
+
type: FunctionConstructor;
|
|
497
497
|
required: false;
|
|
498
498
|
};
|
|
499
499
|
onScrollHorizontalEnd: {
|
|
500
|
-
type:
|
|
500
|
+
type: FunctionConstructor;
|
|
501
501
|
required: false;
|
|
502
502
|
};
|
|
503
503
|
onChangCellValue: {
|
|
504
|
-
type:
|
|
504
|
+
type: FunctionConstructor;
|
|
505
505
|
required: false;
|
|
506
506
|
};
|
|
507
507
|
onEmptyTipClick: {
|
|
508
|
-
type:
|
|
508
|
+
type: FunctionConstructor;
|
|
509
509
|
required: false;
|
|
510
510
|
};
|
|
511
511
|
onEmptyTipDblClick: {
|
|
512
|
-
type:
|
|
512
|
+
type: FunctionConstructor;
|
|
513
513
|
required: false;
|
|
514
514
|
};
|
|
515
515
|
onButtonClick: {
|
|
516
|
-
type:
|
|
516
|
+
type: FunctionConstructor;
|
|
517
517
|
required: false;
|
|
518
518
|
};
|
|
519
519
|
onBeforeCacheChartImage: {
|
|
520
|
-
type:
|
|
520
|
+
type: FunctionConstructor;
|
|
521
521
|
required: false;
|
|
522
522
|
};
|
|
523
523
|
onPastedData: {
|
|
524
|
-
type:
|
|
524
|
+
type: FunctionConstructor;
|
|
525
525
|
required: false;
|
|
526
526
|
};
|
|
527
527
|
}>> & Readonly<{
|
|
@@ -531,60 +531,5 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
531
531
|
width: string | number;
|
|
532
532
|
height: string | number;
|
|
533
533
|
keepColumnWidthChange: boolean;
|
|
534
|
-
onClickCell: any;
|
|
535
|
-
onDblClickCell: any;
|
|
536
|
-
onMouseDownCell: any;
|
|
537
|
-
onMouseUpCell: any;
|
|
538
|
-
onSelectedCell: any;
|
|
539
|
-
onKeyDown: any;
|
|
540
|
-
onMouseEnterTable: any;
|
|
541
|
-
onMouseLeaveTable: any;
|
|
542
|
-
onMouseDownTable: any;
|
|
543
|
-
onMouseMoveCell: any;
|
|
544
|
-
onMouseEnterCell: any;
|
|
545
|
-
onMouseLeaveCell: any;
|
|
546
|
-
onContextMenuCell: any;
|
|
547
|
-
onResizeColumn: any;
|
|
548
|
-
onResizeColumnEnd: any;
|
|
549
|
-
onChangeHeaderPosition: any;
|
|
550
|
-
onChangeHeaderPositionStart: any;
|
|
551
|
-
onChangeHeaderPositionFail: any;
|
|
552
|
-
onSortClick: any;
|
|
553
|
-
onFreezeClick: any;
|
|
554
|
-
onScroll: any;
|
|
555
|
-
onDropdownMenuClick: any;
|
|
556
|
-
onMouseOverChartSymbol: any;
|
|
557
|
-
onDragSelectEnd: any;
|
|
558
|
-
onDropdownIconClick: any;
|
|
559
|
-
onDropdownMenuClear: any;
|
|
560
|
-
onTreeHierarchyStateChange: any;
|
|
561
|
-
onShowMenu: any;
|
|
562
|
-
onHideMenu: any;
|
|
563
|
-
onIconClick: any;
|
|
564
|
-
onLegendItemClick: any;
|
|
565
|
-
onLegendItemHover: any;
|
|
566
|
-
onLegendItemUnHover: any;
|
|
567
|
-
onLegendChange: any;
|
|
568
|
-
onMouseEnterAxis: any;
|
|
569
|
-
onMouseLeaveAxis: any;
|
|
570
|
-
onCheckboxStateChange: any;
|
|
571
|
-
onRadioStateChange: any;
|
|
572
|
-
onAfterRender: any;
|
|
573
|
-
onInitialized: any;
|
|
574
|
-
onPivotSortClick: any;
|
|
575
|
-
onDrillMenuClick: any;
|
|
576
|
-
onVChartEventType: any;
|
|
577
|
-
onChangeCellValue: any;
|
|
578
|
-
onMousedownFillHandle: any;
|
|
579
|
-
onDragFillHandleEnd: any;
|
|
580
|
-
onDblclickFillHandle: any;
|
|
581
|
-
onScrollVerticalEnd: any;
|
|
582
|
-
onScrollHorizontalEnd: any;
|
|
583
|
-
onChangCellValue: any;
|
|
584
|
-
onEmptyTipClick: any;
|
|
585
|
-
onEmptyTipDblClick: any;
|
|
586
|
-
onButtonClick: any;
|
|
587
|
-
onBeforeCacheChartImage: any;
|
|
588
|
-
onPastedData: any;
|
|
589
534
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
590
535
|
export default _default;
|