@ecan-bi/datav 1.0.40 → 1.0.43
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.es.js +757 -201
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +755 -199
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +137 -74
- package/package.json +1 -1
- package/types/_utils/constant.d.ts +2 -1
- package/types/_utils/hooks/index.d.ts +2 -0
- package/types/_utils/hooks/useHrefParamsToGlobalVariables.d.ts +2 -0
- package/types/_utils/hooks/useIndicatorData.d.ts +4 -0
- package/types/common/echarts/Echarts.d.ts +418 -0
- package/types/common/echarts/index.d.ts +2 -2
- package/types/common/index.d.ts +1 -1
- package/types/common/skeleton/Skeleton.vue.d.ts +14 -0
- package/types/common/skeleton/index.d.ts +2 -0
- package/types/container/border/Border.vue.d.ts +54 -54
- package/types/container/border/props.d.ts +54 -54
- package/types/container/modal/Modal.vue.d.ts +1 -1
- package/types/container/modal/index.d.ts +1 -1
- package/types/control/button/Button.vue.d.ts +110 -0
- package/types/control/button/index.d.ts +111 -1
- package/types/control/button/props.d.ts +104 -44
- package/types/control/date-picker/props.d.ts +52 -52
- package/types/control/input/props.d.ts +48 -48
- package/types/control/range-picker/RangePicker.vue.d.ts +52 -52
- package/types/control/range-picker/props.d.ts +52 -52
- package/types/control/select/Select.vue.d.ts +50 -50
- package/types/control/select/props.d.ts +50 -50
- package/types/graph/bar/Bar.vue.d.ts +128 -128
- package/types/graph/bar/index.d.ts +128 -128
- package/types/graph/bar/props.d.ts +65 -65
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +155 -0
- package/types/graph/combo-graph/index.d.ts +155 -0
- package/types/graph/combo-graph/props.d.ts +72 -0
- package/types/graph/custom-graph/props.d.ts +48 -48
- package/types/graph/line/Line.vue.d.ts +155 -0
- package/types/graph/line/index.d.ts +155 -0
- package/types/graph/line/props.d.ts +72 -0
- package/types/graph/pie/Pie.vue.d.ts +155 -0
- package/types/graph/pie/index.d.ts +155 -0
- package/types/graph/pie/props.d.ts +72 -0
- package/types/graph/scatter/Scatter.vue.d.ts +155 -0
- package/types/graph/scatter/index.d.ts +155 -0
- package/types/graph/scatter/props.d.ts +72 -0
- package/types/map/map/props.d.ts +112 -112
- package/types/media/image/props.d.ts +52 -52
- package/types/table/table/Table.vue.d.ts +900 -79
- package/types/table/table/index.d.ts +899 -79
- package/types/table/table/props.d.ts +451 -39
- package/types/text/list/List.vue.d.ts +64 -64
- package/types/text/list/props.d.ts +64 -64
- package/types/text/proportion/Proportion.vue.d.ts +68 -68
- package/types/text/proportion/props.d.ts +68 -68
- package/types/text/text/Text.vue.d.ts +66 -66
- package/types/text/text/props.d.ts +66 -66
- package/types/text/time-display/props.d.ts +60 -60
|
@@ -18,7 +18,12 @@ export interface TableProps extends Props {
|
|
|
18
18
|
cellBackgroundColor: string;
|
|
19
19
|
borderColor: string;
|
|
20
20
|
paginationPageSize: number;
|
|
21
|
-
graphicConfig
|
|
21
|
+
graphicConfig: {
|
|
22
|
+
[key: string]: any;
|
|
23
|
+
chartType: 'table';
|
|
24
|
+
plugin: '1';
|
|
25
|
+
layer: '1';
|
|
26
|
+
};
|
|
22
27
|
}
|
|
23
28
|
export declare const tableProps: TableProps;
|
|
24
29
|
export declare const tableComponentProps: {
|
|
@@ -27,259 +32,666 @@ export declare const tableComponentProps: {
|
|
|
27
32
|
default?: undefined;
|
|
28
33
|
} | {
|
|
29
34
|
type: any;
|
|
30
|
-
default:
|
|
35
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
36
|
+
[key: string]: any;
|
|
37
|
+
} | import('../../_utils/props').RequestParams | {
|
|
38
|
+
[key: string]: any;
|
|
39
|
+
}[] | {
|
|
40
|
+
[key: string]: any;
|
|
41
|
+
chartType: 'table';
|
|
42
|
+
plugin: '1';
|
|
43
|
+
layer: '1';
|
|
44
|
+
} | {
|
|
45
|
+
[key: string]: any;
|
|
46
|
+
}[];
|
|
31
47
|
};
|
|
32
48
|
data: {
|
|
33
49
|
type?: undefined;
|
|
34
50
|
default?: undefined;
|
|
35
51
|
} | {
|
|
36
52
|
type: any;
|
|
37
|
-
default:
|
|
53
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
54
|
+
[key: string]: any;
|
|
55
|
+
} | import('../../_utils/props').RequestParams | {
|
|
56
|
+
[key: string]: any;
|
|
57
|
+
}[] | {
|
|
58
|
+
[key: string]: any;
|
|
59
|
+
chartType: 'table';
|
|
60
|
+
plugin: '1';
|
|
61
|
+
layer: '1';
|
|
62
|
+
} | {
|
|
63
|
+
[key: string]: any;
|
|
64
|
+
}[];
|
|
38
65
|
};
|
|
39
66
|
bordered: {
|
|
40
67
|
type?: undefined;
|
|
41
68
|
default?: undefined;
|
|
42
69
|
} | {
|
|
43
70
|
type: any;
|
|
44
|
-
default:
|
|
71
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
72
|
+
[key: string]: any;
|
|
73
|
+
} | import('../../_utils/props').RequestParams | {
|
|
74
|
+
[key: string]: any;
|
|
75
|
+
}[] | {
|
|
76
|
+
[key: string]: any;
|
|
77
|
+
chartType: 'table';
|
|
78
|
+
plugin: '1';
|
|
79
|
+
layer: '1';
|
|
80
|
+
} | {
|
|
81
|
+
[key: string]: any;
|
|
82
|
+
}[];
|
|
45
83
|
};
|
|
46
84
|
size: {
|
|
47
85
|
type?: undefined;
|
|
48
86
|
default?: undefined;
|
|
49
87
|
} | {
|
|
50
88
|
type: any;
|
|
51
|
-
default:
|
|
89
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
90
|
+
[key: string]: any;
|
|
91
|
+
} | import('../../_utils/props').RequestParams | {
|
|
92
|
+
[key: string]: any;
|
|
93
|
+
}[] | {
|
|
94
|
+
[key: string]: any;
|
|
95
|
+
chartType: 'table';
|
|
96
|
+
plugin: '1';
|
|
97
|
+
layer: '1';
|
|
98
|
+
} | {
|
|
99
|
+
[key: string]: any;
|
|
100
|
+
}[];
|
|
52
101
|
};
|
|
53
102
|
isUseSeq: {
|
|
54
103
|
type?: undefined;
|
|
55
104
|
default?: undefined;
|
|
56
105
|
} | {
|
|
57
106
|
type: any;
|
|
58
|
-
default:
|
|
107
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
108
|
+
[key: string]: any;
|
|
109
|
+
} | import('../../_utils/props').RequestParams | {
|
|
110
|
+
[key: string]: any;
|
|
111
|
+
}[] | {
|
|
112
|
+
[key: string]: any;
|
|
113
|
+
chartType: 'table';
|
|
114
|
+
plugin: '1';
|
|
115
|
+
layer: '1';
|
|
116
|
+
} | {
|
|
117
|
+
[key: string]: any;
|
|
118
|
+
}[];
|
|
59
119
|
};
|
|
60
120
|
columnsFixedNum: {
|
|
61
121
|
type?: undefined;
|
|
62
122
|
default?: undefined;
|
|
63
123
|
} | {
|
|
64
124
|
type: any;
|
|
65
|
-
default:
|
|
125
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
126
|
+
[key: string]: any;
|
|
127
|
+
} | import('../../_utils/props').RequestParams | {
|
|
128
|
+
[key: string]: any;
|
|
129
|
+
}[] | {
|
|
130
|
+
[key: string]: any;
|
|
131
|
+
chartType: 'table';
|
|
132
|
+
plugin: '1';
|
|
133
|
+
layer: '1';
|
|
134
|
+
} | {
|
|
135
|
+
[key: string]: any;
|
|
136
|
+
}[];
|
|
66
137
|
};
|
|
67
138
|
scrollX: {
|
|
68
139
|
type?: undefined;
|
|
69
140
|
default?: undefined;
|
|
70
141
|
} | {
|
|
71
142
|
type: any;
|
|
72
|
-
default:
|
|
143
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
144
|
+
[key: string]: any;
|
|
145
|
+
} | import('../../_utils/props').RequestParams | {
|
|
146
|
+
[key: string]: any;
|
|
147
|
+
}[] | {
|
|
148
|
+
[key: string]: any;
|
|
149
|
+
chartType: 'table';
|
|
150
|
+
plugin: '1';
|
|
151
|
+
layer: '1';
|
|
152
|
+
} | {
|
|
153
|
+
[key: string]: any;
|
|
154
|
+
}[];
|
|
73
155
|
};
|
|
74
156
|
paginationShow: {
|
|
75
157
|
type?: undefined;
|
|
76
158
|
default?: undefined;
|
|
77
159
|
} | {
|
|
78
160
|
type: any;
|
|
79
|
-
default:
|
|
161
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
162
|
+
[key: string]: any;
|
|
163
|
+
} | import('../../_utils/props').RequestParams | {
|
|
164
|
+
[key: string]: any;
|
|
165
|
+
}[] | {
|
|
166
|
+
[key: string]: any;
|
|
167
|
+
chartType: 'table';
|
|
168
|
+
plugin: '1';
|
|
169
|
+
layer: '1';
|
|
170
|
+
} | {
|
|
171
|
+
[key: string]: any;
|
|
172
|
+
}[];
|
|
80
173
|
};
|
|
81
174
|
paginationPosition: {
|
|
82
175
|
type?: undefined;
|
|
83
176
|
default?: undefined;
|
|
84
177
|
} | {
|
|
85
178
|
type: any;
|
|
86
|
-
default:
|
|
179
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
180
|
+
[key: string]: any;
|
|
181
|
+
} | import('../../_utils/props').RequestParams | {
|
|
182
|
+
[key: string]: any;
|
|
183
|
+
}[] | {
|
|
184
|
+
[key: string]: any;
|
|
185
|
+
chartType: 'table';
|
|
186
|
+
plugin: '1';
|
|
187
|
+
layer: '1';
|
|
188
|
+
} | {
|
|
189
|
+
[key: string]: any;
|
|
190
|
+
}[];
|
|
87
191
|
};
|
|
88
192
|
simple: {
|
|
89
193
|
type?: undefined;
|
|
90
194
|
default?: undefined;
|
|
91
195
|
} | {
|
|
92
196
|
type: any;
|
|
93
|
-
default:
|
|
197
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
198
|
+
[key: string]: any;
|
|
199
|
+
} | import('../../_utils/props').RequestParams | {
|
|
200
|
+
[key: string]: any;
|
|
201
|
+
}[] | {
|
|
202
|
+
[key: string]: any;
|
|
203
|
+
chartType: 'table';
|
|
204
|
+
plugin: '1';
|
|
205
|
+
layer: '1';
|
|
206
|
+
} | {
|
|
207
|
+
[key: string]: any;
|
|
208
|
+
}[];
|
|
94
209
|
};
|
|
95
210
|
headerCellBackgroundColor: {
|
|
96
211
|
type?: undefined;
|
|
97
212
|
default?: undefined;
|
|
98
213
|
} | {
|
|
99
214
|
type: any;
|
|
100
|
-
default:
|
|
215
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
216
|
+
[key: string]: any;
|
|
217
|
+
} | import('../../_utils/props').RequestParams | {
|
|
218
|
+
[key: string]: any;
|
|
219
|
+
}[] | {
|
|
220
|
+
[key: string]: any;
|
|
221
|
+
chartType: 'table';
|
|
222
|
+
plugin: '1';
|
|
223
|
+
layer: '1';
|
|
224
|
+
} | {
|
|
225
|
+
[key: string]: any;
|
|
226
|
+
}[];
|
|
101
227
|
};
|
|
102
228
|
cellBackgroundColor: {
|
|
103
229
|
type?: undefined;
|
|
104
230
|
default?: undefined;
|
|
105
231
|
} | {
|
|
106
232
|
type: any;
|
|
107
|
-
default:
|
|
233
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
234
|
+
[key: string]: any;
|
|
235
|
+
} | import('../../_utils/props').RequestParams | {
|
|
236
|
+
[key: string]: any;
|
|
237
|
+
}[] | {
|
|
238
|
+
[key: string]: any;
|
|
239
|
+
chartType: 'table';
|
|
240
|
+
plugin: '1';
|
|
241
|
+
layer: '1';
|
|
242
|
+
} | {
|
|
243
|
+
[key: string]: any;
|
|
244
|
+
}[];
|
|
108
245
|
};
|
|
109
246
|
borderColor: {
|
|
110
247
|
type?: undefined;
|
|
111
248
|
default?: undefined;
|
|
112
249
|
} | {
|
|
113
250
|
type: any;
|
|
114
|
-
default:
|
|
251
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
252
|
+
[key: string]: any;
|
|
253
|
+
} | import('../../_utils/props').RequestParams | {
|
|
254
|
+
[key: string]: any;
|
|
255
|
+
}[] | {
|
|
256
|
+
[key: string]: any;
|
|
257
|
+
chartType: 'table';
|
|
258
|
+
plugin: '1';
|
|
259
|
+
layer: '1';
|
|
260
|
+
} | {
|
|
261
|
+
[key: string]: any;
|
|
262
|
+
}[];
|
|
115
263
|
};
|
|
116
264
|
paginationPageSize: {
|
|
117
265
|
type?: undefined;
|
|
118
266
|
default?: undefined;
|
|
119
267
|
} | {
|
|
120
268
|
type: any;
|
|
121
|
-
default:
|
|
269
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
270
|
+
[key: string]: any;
|
|
271
|
+
} | import('../../_utils/props').RequestParams | {
|
|
272
|
+
[key: string]: any;
|
|
273
|
+
}[] | {
|
|
274
|
+
[key: string]: any;
|
|
275
|
+
chartType: 'table';
|
|
276
|
+
plugin: '1';
|
|
277
|
+
layer: '1';
|
|
278
|
+
} | {
|
|
279
|
+
[key: string]: any;
|
|
280
|
+
}[];
|
|
122
281
|
};
|
|
123
|
-
graphicConfig
|
|
282
|
+
graphicConfig: {
|
|
124
283
|
type?: undefined;
|
|
125
284
|
default?: undefined;
|
|
126
285
|
} | {
|
|
127
286
|
type: any;
|
|
128
|
-
default:
|
|
287
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
288
|
+
[key: string]: any;
|
|
289
|
+
} | import('../../_utils/props').RequestParams | {
|
|
290
|
+
[key: string]: any;
|
|
291
|
+
}[] | {
|
|
292
|
+
[key: string]: any;
|
|
293
|
+
chartType: 'table';
|
|
294
|
+
plugin: '1';
|
|
295
|
+
layer: '1';
|
|
296
|
+
} | {
|
|
297
|
+
[key: string]: any;
|
|
298
|
+
}[];
|
|
129
299
|
};
|
|
130
300
|
id: {
|
|
131
301
|
type?: undefined;
|
|
132
302
|
default?: undefined;
|
|
133
303
|
} | {
|
|
134
304
|
type: any;
|
|
135
|
-
default:
|
|
305
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
306
|
+
[key: string]: any;
|
|
307
|
+
} | import('../../_utils/props').RequestParams | {
|
|
308
|
+
[key: string]: any;
|
|
309
|
+
}[] | {
|
|
310
|
+
[key: string]: any;
|
|
311
|
+
chartType: 'table';
|
|
312
|
+
plugin: '1';
|
|
313
|
+
layer: '1';
|
|
314
|
+
} | {
|
|
315
|
+
[key: string]: any;
|
|
316
|
+
}[];
|
|
136
317
|
};
|
|
137
318
|
name: {
|
|
138
319
|
type?: undefined;
|
|
139
320
|
default?: undefined;
|
|
140
321
|
} | {
|
|
141
322
|
type: any;
|
|
142
|
-
default:
|
|
323
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
324
|
+
[key: string]: any;
|
|
325
|
+
} | import('../../_utils/props').RequestParams | {
|
|
326
|
+
[key: string]: any;
|
|
327
|
+
}[] | {
|
|
328
|
+
[key: string]: any;
|
|
329
|
+
chartType: 'table';
|
|
330
|
+
plugin: '1';
|
|
331
|
+
layer: '1';
|
|
332
|
+
} | {
|
|
333
|
+
[key: string]: any;
|
|
334
|
+
}[];
|
|
143
335
|
};
|
|
144
336
|
keyName: {
|
|
145
337
|
type?: undefined;
|
|
146
338
|
default?: undefined;
|
|
147
339
|
} | {
|
|
148
340
|
type: any;
|
|
149
|
-
default:
|
|
341
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
342
|
+
[key: string]: any;
|
|
343
|
+
} | import('../../_utils/props').RequestParams | {
|
|
344
|
+
[key: string]: any;
|
|
345
|
+
}[] | {
|
|
346
|
+
[key: string]: any;
|
|
347
|
+
chartType: 'table';
|
|
348
|
+
plugin: '1';
|
|
349
|
+
layer: '1';
|
|
350
|
+
} | {
|
|
351
|
+
[key: string]: any;
|
|
352
|
+
}[];
|
|
150
353
|
};
|
|
151
354
|
type: {
|
|
152
355
|
type?: undefined;
|
|
153
356
|
default?: undefined;
|
|
154
357
|
} | {
|
|
155
358
|
type: any;
|
|
156
|
-
default:
|
|
359
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
360
|
+
[key: string]: any;
|
|
361
|
+
} | import('../../_utils/props').RequestParams | {
|
|
362
|
+
[key: string]: any;
|
|
363
|
+
}[] | {
|
|
364
|
+
[key: string]: any;
|
|
365
|
+
chartType: 'table';
|
|
366
|
+
plugin: '1';
|
|
367
|
+
layer: '1';
|
|
368
|
+
} | {
|
|
369
|
+
[key: string]: any;
|
|
370
|
+
}[];
|
|
157
371
|
};
|
|
158
372
|
width: {
|
|
159
373
|
type?: undefined;
|
|
160
374
|
default?: undefined;
|
|
161
375
|
} | {
|
|
162
376
|
type: any;
|
|
163
|
-
default:
|
|
377
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
378
|
+
[key: string]: any;
|
|
379
|
+
} | import('../../_utils/props').RequestParams | {
|
|
380
|
+
[key: string]: any;
|
|
381
|
+
}[] | {
|
|
382
|
+
[key: string]: any;
|
|
383
|
+
chartType: 'table';
|
|
384
|
+
plugin: '1';
|
|
385
|
+
layer: '1';
|
|
386
|
+
} | {
|
|
387
|
+
[key: string]: any;
|
|
388
|
+
}[];
|
|
164
389
|
};
|
|
165
390
|
height: {
|
|
166
391
|
type?: undefined;
|
|
167
392
|
default?: undefined;
|
|
168
393
|
} | {
|
|
169
394
|
type: any;
|
|
170
|
-
default:
|
|
395
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
396
|
+
[key: string]: any;
|
|
397
|
+
} | import('../../_utils/props').RequestParams | {
|
|
398
|
+
[key: string]: any;
|
|
399
|
+
}[] | {
|
|
400
|
+
[key: string]: any;
|
|
401
|
+
chartType: 'table';
|
|
402
|
+
plugin: '1';
|
|
403
|
+
layer: '1';
|
|
404
|
+
} | {
|
|
405
|
+
[key: string]: any;
|
|
406
|
+
}[];
|
|
171
407
|
};
|
|
172
408
|
position: {
|
|
173
409
|
type?: undefined;
|
|
174
410
|
default?: undefined;
|
|
175
411
|
} | {
|
|
176
412
|
type: any;
|
|
177
|
-
default:
|
|
413
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
414
|
+
[key: string]: any;
|
|
415
|
+
} | import('../../_utils/props').RequestParams | {
|
|
416
|
+
[key: string]: any;
|
|
417
|
+
}[] | {
|
|
418
|
+
[key: string]: any;
|
|
419
|
+
chartType: 'table';
|
|
420
|
+
plugin: '1';
|
|
421
|
+
layer: '1';
|
|
422
|
+
} | {
|
|
423
|
+
[key: string]: any;
|
|
424
|
+
}[];
|
|
178
425
|
};
|
|
179
426
|
top: {
|
|
180
427
|
type?: undefined;
|
|
181
428
|
default?: undefined;
|
|
182
429
|
} | {
|
|
183
430
|
type: any;
|
|
184
|
-
default:
|
|
431
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
432
|
+
[key: string]: any;
|
|
433
|
+
} | import('../../_utils/props').RequestParams | {
|
|
434
|
+
[key: string]: any;
|
|
435
|
+
}[] | {
|
|
436
|
+
[key: string]: any;
|
|
437
|
+
chartType: 'table';
|
|
438
|
+
plugin: '1';
|
|
439
|
+
layer: '1';
|
|
440
|
+
} | {
|
|
441
|
+
[key: string]: any;
|
|
442
|
+
}[];
|
|
185
443
|
};
|
|
186
444
|
left: {
|
|
187
445
|
type?: undefined;
|
|
188
446
|
default?: undefined;
|
|
189
447
|
} | {
|
|
190
448
|
type: any;
|
|
191
|
-
default:
|
|
449
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
450
|
+
[key: string]: any;
|
|
451
|
+
} | import('../../_utils/props').RequestParams | {
|
|
452
|
+
[key: string]: any;
|
|
453
|
+
}[] | {
|
|
454
|
+
[key: string]: any;
|
|
455
|
+
chartType: 'table';
|
|
456
|
+
plugin: '1';
|
|
457
|
+
layer: '1';
|
|
458
|
+
} | {
|
|
459
|
+
[key: string]: any;
|
|
460
|
+
}[];
|
|
192
461
|
};
|
|
193
462
|
zIndex: {
|
|
194
463
|
type?: undefined;
|
|
195
464
|
default?: undefined;
|
|
196
465
|
} | {
|
|
197
466
|
type: any;
|
|
198
|
-
default:
|
|
467
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
468
|
+
[key: string]: any;
|
|
469
|
+
} | import('../../_utils/props').RequestParams | {
|
|
470
|
+
[key: string]: any;
|
|
471
|
+
}[] | {
|
|
472
|
+
[key: string]: any;
|
|
473
|
+
chartType: 'table';
|
|
474
|
+
plugin: '1';
|
|
475
|
+
layer: '1';
|
|
476
|
+
} | {
|
|
477
|
+
[key: string]: any;
|
|
478
|
+
}[];
|
|
199
479
|
};
|
|
200
480
|
rotate: {
|
|
201
481
|
type?: undefined;
|
|
202
482
|
default?: undefined;
|
|
203
483
|
} | {
|
|
204
484
|
type: any;
|
|
205
|
-
default:
|
|
485
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
486
|
+
[key: string]: any;
|
|
487
|
+
} | import('../../_utils/props').RequestParams | {
|
|
488
|
+
[key: string]: any;
|
|
489
|
+
}[] | {
|
|
490
|
+
[key: string]: any;
|
|
491
|
+
chartType: 'table';
|
|
492
|
+
plugin: '1';
|
|
493
|
+
layer: '1';
|
|
494
|
+
} | {
|
|
495
|
+
[key: string]: any;
|
|
496
|
+
}[];
|
|
206
497
|
};
|
|
207
498
|
isShow: {
|
|
208
499
|
type?: undefined;
|
|
209
500
|
default?: undefined;
|
|
210
501
|
} | {
|
|
211
502
|
type: any;
|
|
212
|
-
default:
|
|
503
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
504
|
+
[key: string]: any;
|
|
505
|
+
} | import('../../_utils/props').RequestParams | {
|
|
506
|
+
[key: string]: any;
|
|
507
|
+
}[] | {
|
|
508
|
+
[key: string]: any;
|
|
509
|
+
chartType: 'table';
|
|
510
|
+
plugin: '1';
|
|
511
|
+
layer: '1';
|
|
512
|
+
} | {
|
|
513
|
+
[key: string]: any;
|
|
514
|
+
}[];
|
|
213
515
|
};
|
|
214
516
|
isRender: {
|
|
215
517
|
type?: undefined;
|
|
216
518
|
default?: undefined;
|
|
217
519
|
} | {
|
|
218
520
|
type: any;
|
|
219
|
-
default:
|
|
521
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
522
|
+
[key: string]: any;
|
|
523
|
+
} | import('../../_utils/props').RequestParams | {
|
|
524
|
+
[key: string]: any;
|
|
525
|
+
}[] | {
|
|
526
|
+
[key: string]: any;
|
|
527
|
+
chartType: 'table';
|
|
528
|
+
plugin: '1';
|
|
529
|
+
layer: '1';
|
|
530
|
+
} | {
|
|
531
|
+
[key: string]: any;
|
|
532
|
+
}[];
|
|
220
533
|
};
|
|
221
534
|
events: {
|
|
222
535
|
type?: undefined;
|
|
223
536
|
default?: undefined;
|
|
224
537
|
} | {
|
|
225
538
|
type: any;
|
|
226
|
-
default:
|
|
539
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
540
|
+
[key: string]: any;
|
|
541
|
+
} | import('../../_utils/props').RequestParams | {
|
|
542
|
+
[key: string]: any;
|
|
543
|
+
}[] | {
|
|
544
|
+
[key: string]: any;
|
|
545
|
+
chartType: 'table';
|
|
546
|
+
plugin: '1';
|
|
547
|
+
layer: '1';
|
|
548
|
+
} | {
|
|
549
|
+
[key: string]: any;
|
|
550
|
+
}[];
|
|
227
551
|
};
|
|
228
552
|
requestUrl: {
|
|
229
553
|
type?: undefined;
|
|
230
554
|
default?: undefined;
|
|
231
555
|
} | {
|
|
232
556
|
type: any;
|
|
233
|
-
default:
|
|
557
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
558
|
+
[key: string]: any;
|
|
559
|
+
} | import('../../_utils/props').RequestParams | {
|
|
560
|
+
[key: string]: any;
|
|
561
|
+
}[] | {
|
|
562
|
+
[key: string]: any;
|
|
563
|
+
chartType: 'table';
|
|
564
|
+
plugin: '1';
|
|
565
|
+
layer: '1';
|
|
566
|
+
} | {
|
|
567
|
+
[key: string]: any;
|
|
568
|
+
}[];
|
|
234
569
|
};
|
|
235
570
|
requestMethod: {
|
|
236
571
|
type?: undefined;
|
|
237
572
|
default?: undefined;
|
|
238
573
|
} | {
|
|
239
574
|
type: any;
|
|
240
|
-
default:
|
|
575
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
576
|
+
[key: string]: any;
|
|
577
|
+
} | import('../../_utils/props').RequestParams | {
|
|
578
|
+
[key: string]: any;
|
|
579
|
+
}[] | {
|
|
580
|
+
[key: string]: any;
|
|
581
|
+
chartType: 'table';
|
|
582
|
+
plugin: '1';
|
|
583
|
+
layer: '1';
|
|
584
|
+
} | {
|
|
585
|
+
[key: string]: any;
|
|
586
|
+
}[];
|
|
241
587
|
};
|
|
242
588
|
requestHeaders: {
|
|
243
589
|
type?: undefined;
|
|
244
590
|
default?: undefined;
|
|
245
591
|
} | {
|
|
246
592
|
type: any;
|
|
247
|
-
default:
|
|
593
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
594
|
+
[key: string]: any;
|
|
595
|
+
} | import('../../_utils/props').RequestParams | {
|
|
596
|
+
[key: string]: any;
|
|
597
|
+
}[] | {
|
|
598
|
+
[key: string]: any;
|
|
599
|
+
chartType: 'table';
|
|
600
|
+
plugin: '1';
|
|
601
|
+
layer: '1';
|
|
602
|
+
} | {
|
|
603
|
+
[key: string]: any;
|
|
604
|
+
}[];
|
|
248
605
|
};
|
|
249
606
|
isOpenRequestTimer: {
|
|
250
607
|
type?: undefined;
|
|
251
608
|
default?: undefined;
|
|
252
609
|
} | {
|
|
253
610
|
type: any;
|
|
254
|
-
default:
|
|
611
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
612
|
+
[key: string]: any;
|
|
613
|
+
} | import('../../_utils/props').RequestParams | {
|
|
614
|
+
[key: string]: any;
|
|
615
|
+
}[] | {
|
|
616
|
+
[key: string]: any;
|
|
617
|
+
chartType: 'table';
|
|
618
|
+
plugin: '1';
|
|
619
|
+
layer: '1';
|
|
620
|
+
} | {
|
|
621
|
+
[key: string]: any;
|
|
622
|
+
}[];
|
|
255
623
|
};
|
|
256
624
|
requestInterval: {
|
|
257
625
|
type?: undefined;
|
|
258
626
|
default?: undefined;
|
|
259
627
|
} | {
|
|
260
628
|
type: any;
|
|
261
|
-
default:
|
|
629
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
630
|
+
[key: string]: any;
|
|
631
|
+
} | import('../../_utils/props').RequestParams | {
|
|
632
|
+
[key: string]: any;
|
|
633
|
+
}[] | {
|
|
634
|
+
[key: string]: any;
|
|
635
|
+
chartType: 'table';
|
|
636
|
+
plugin: '1';
|
|
637
|
+
layer: '1';
|
|
638
|
+
} | {
|
|
639
|
+
[key: string]: any;
|
|
640
|
+
}[];
|
|
262
641
|
};
|
|
263
642
|
requestParams: {
|
|
264
643
|
type?: undefined;
|
|
265
644
|
default?: undefined;
|
|
266
645
|
} | {
|
|
267
646
|
type: any;
|
|
268
|
-
default:
|
|
647
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
648
|
+
[key: string]: any;
|
|
649
|
+
} | import('../../_utils/props').RequestParams | {
|
|
650
|
+
[key: string]: any;
|
|
651
|
+
}[] | {
|
|
652
|
+
[key: string]: any;
|
|
653
|
+
chartType: 'table';
|
|
654
|
+
plugin: '1';
|
|
655
|
+
layer: '1';
|
|
656
|
+
} | {
|
|
657
|
+
[key: string]: any;
|
|
658
|
+
}[];
|
|
269
659
|
};
|
|
270
660
|
requestSort: {
|
|
271
661
|
type?: undefined;
|
|
272
662
|
default?: undefined;
|
|
273
663
|
} | {
|
|
274
664
|
type: any;
|
|
275
|
-
default:
|
|
665
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
666
|
+
[key: string]: any;
|
|
667
|
+
} | import('../../_utils/props').RequestParams | {
|
|
668
|
+
[key: string]: any;
|
|
669
|
+
}[] | {
|
|
670
|
+
[key: string]: any;
|
|
671
|
+
chartType: 'table';
|
|
672
|
+
plugin: '1';
|
|
673
|
+
layer: '1';
|
|
674
|
+
} | {
|
|
675
|
+
[key: string]: any;
|
|
676
|
+
}[];
|
|
276
677
|
};
|
|
277
678
|
dataType: {
|
|
278
679
|
type?: undefined;
|
|
279
680
|
default?: undefined;
|
|
280
681
|
} | {
|
|
281
682
|
type: any;
|
|
282
|
-
default:
|
|
683
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
684
|
+
[key: string]: any;
|
|
685
|
+
} | import('../../_utils/props').RequestParams | {
|
|
686
|
+
[key: string]: any;
|
|
687
|
+
}[] | {
|
|
688
|
+
[key: string]: any;
|
|
689
|
+
chartType: 'table';
|
|
690
|
+
plugin: '1';
|
|
691
|
+
layer: '1';
|
|
692
|
+
} | {
|
|
693
|
+
[key: string]: any;
|
|
694
|
+
}[];
|
|
283
695
|
};
|
|
284
696
|
};
|
|
285
697
|
export declare const tableEvents: string[];
|