@ecan-bi/datav 1.0.15 → 1.0.16
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/_utils/constant.d.ts +1 -1
- package/dist/_utils/hooks/index.d.ts +1 -1
- package/dist/_utils/hooks/usePickEchartsData.d.ts +1 -1
- package/dist/_utils/hooks/useRequestData.d.ts +5 -13
- package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +12 -3
- package/dist/_utils/props.d.ts +1 -1
- package/dist/_utils/util.d.ts +14 -0
- package/dist/common/echarts/ECharts.d.ts +1 -0
- package/dist/container/border/props.d.ts +67 -57
- package/dist/container/index.d.ts +1 -0
- package/dist/container/modal/Modal.vue.d.ts +47 -31
- package/dist/container/modal/props.d.ts +29 -18
- package/dist/container/tabs/Tabs.vue.d.ts +271 -0
- package/dist/container/tabs/index.d.ts +3 -0
- package/dist/container/tabs/props.d.ts +219 -0
- package/dist/control/button/Button.vue.d.ts +53 -53
- package/dist/control/button/props.d.ts +49 -49
- package/dist/control/date-picker/DatePicker.vue.d.ts +61 -61
- package/dist/control/date-picker/props.d.ts +7 -7
- package/dist/control/input/Input.vue.d.ts +59 -59
- package/dist/control/input/props.d.ts +53 -53
- package/dist/control/range-picker/RangePicker.vue.d.ts +55 -55
- package/dist/control/range-picker/props.d.ts +51 -51
- package/dist/control/select/Select.vue.d.ts +65 -61
- package/dist/control/select/props.d.ts +53 -53
- package/dist/graph/bar/Bar.vue.d.ts +304 -57
- package/dist/graph/bar/props.d.ts +277 -49
- package/dist/graph/custom-graph/CustomGraph.vue.d.ts +57 -57
- package/dist/graph/custom-graph/props.d.ts +53 -53
- package/dist/graph/line/Line.vue.d.ts +286 -109
- package/dist/graph/line/props.d.ts +235 -49
- package/dist/graph/pie/Pie.vue.d.ts +332 -114
- package/dist/graph/pie/props.d.ts +279 -57
- package/dist/graph/scatter/Scatter.vue.d.ts +157 -209
- package/dist/graph/scatter/props.d.ts +148 -123
- package/dist/index.esm.js +2 -2
- package/dist/index.umd.js +2 -2
- package/dist/media/image/Image.vue.d.ts +55 -55
- package/dist/media/image/props.d.ts +51 -51
- package/dist/table/table/Table.vue.d.ts +208 -67
- package/dist/table/table/props.d.ts +160 -62
- package/dist/text/index.d.ts +2 -0
- package/dist/text/list/List.vue.d.ts +471 -0
- package/dist/text/list/index.d.ts +3 -0
- package/dist/text/list/props.d.ts +367 -0
- package/dist/text/text/Text.vue.d.ts +132 -43
- package/dist/text/text/props.d.ts +122 -38
- package/dist/text/time-display/TimeDisplay.vue.d.ts +385 -0
- package/dist/text/time-display/index.d.ts +3 -0
- package/dist/text/time-display/props.d.ts +275 -0
- package/package.json +1 -1
- package/dist/_utils/hooks/useRequestParams.d.ts +0 -5
- package/dist/_utils/request.d.ts +0 -2
|
@@ -11,6 +11,13 @@ export interface TableProps extends Props {
|
|
|
11
11
|
isUseSeq: boolean;
|
|
12
12
|
columnsFixedNum: number;
|
|
13
13
|
scrollX: number;
|
|
14
|
+
paginationShow: boolean;
|
|
15
|
+
paginationPosition: 'topLeft' | 'topCenter' | 'topRight' | 'bottomLeft' | 'bottomCenter' | 'bottomRight';
|
|
16
|
+
simple: boolean;
|
|
17
|
+
headerCellBackgroundColor: string;
|
|
18
|
+
cellBackgroundColor: string;
|
|
19
|
+
borderColor: string;
|
|
20
|
+
paginationPageSize: number;
|
|
14
21
|
}
|
|
15
22
|
export declare const tableProps: TableProps;
|
|
16
23
|
export declare const tableComponentProps: {
|
|
@@ -23,9 +30,9 @@ export declare const tableComponentProps: {
|
|
|
23
30
|
[key: string]: any;
|
|
24
31
|
}[] | {
|
|
25
32
|
[key: string]: any;
|
|
26
|
-
}[] | {
|
|
33
|
+
}[] | import("../../_utils/props").Events | {
|
|
27
34
|
[key: string]: any;
|
|
28
|
-
} | import("../../_utils/props").RequestParams
|
|
35
|
+
} | import("../../_utils/props").RequestParams;
|
|
29
36
|
};
|
|
30
37
|
data: {
|
|
31
38
|
type?: undefined;
|
|
@@ -36,9 +43,9 @@ export declare const tableComponentProps: {
|
|
|
36
43
|
[key: string]: any;
|
|
37
44
|
}[] | {
|
|
38
45
|
[key: string]: any;
|
|
39
|
-
}[] | {
|
|
46
|
+
}[] | import("../../_utils/props").Events | {
|
|
40
47
|
[key: string]: any;
|
|
41
|
-
} | import("../../_utils/props").RequestParams
|
|
48
|
+
} | import("../../_utils/props").RequestParams;
|
|
42
49
|
};
|
|
43
50
|
bordered: {
|
|
44
51
|
type?: undefined;
|
|
@@ -49,9 +56,9 @@ export declare const tableComponentProps: {
|
|
|
49
56
|
[key: string]: any;
|
|
50
57
|
}[] | {
|
|
51
58
|
[key: string]: any;
|
|
52
|
-
}[] | {
|
|
59
|
+
}[] | import("../../_utils/props").Events | {
|
|
53
60
|
[key: string]: any;
|
|
54
|
-
} | import("../../_utils/props").RequestParams
|
|
61
|
+
} | import("../../_utils/props").RequestParams;
|
|
55
62
|
};
|
|
56
63
|
size: {
|
|
57
64
|
type?: undefined;
|
|
@@ -62,9 +69,9 @@ export declare const tableComponentProps: {
|
|
|
62
69
|
[key: string]: any;
|
|
63
70
|
}[] | {
|
|
64
71
|
[key: string]: any;
|
|
65
|
-
}[] | {
|
|
72
|
+
}[] | import("../../_utils/props").Events | {
|
|
66
73
|
[key: string]: any;
|
|
67
|
-
} | import("../../_utils/props").RequestParams
|
|
74
|
+
} | import("../../_utils/props").RequestParams;
|
|
68
75
|
};
|
|
69
76
|
isUseSeq: {
|
|
70
77
|
type?: undefined;
|
|
@@ -75,9 +82,9 @@ export declare const tableComponentProps: {
|
|
|
75
82
|
[key: string]: any;
|
|
76
83
|
}[] | {
|
|
77
84
|
[key: string]: any;
|
|
78
|
-
}[] | {
|
|
85
|
+
}[] | import("../../_utils/props").Events | {
|
|
79
86
|
[key: string]: any;
|
|
80
|
-
} | import("../../_utils/props").RequestParams
|
|
87
|
+
} | import("../../_utils/props").RequestParams;
|
|
81
88
|
};
|
|
82
89
|
columnsFixedNum: {
|
|
83
90
|
type?: undefined;
|
|
@@ -88,9 +95,9 @@ export declare const tableComponentProps: {
|
|
|
88
95
|
[key: string]: any;
|
|
89
96
|
}[] | {
|
|
90
97
|
[key: string]: any;
|
|
91
|
-
}[] | {
|
|
98
|
+
}[] | import("../../_utils/props").Events | {
|
|
92
99
|
[key: string]: any;
|
|
93
|
-
} | import("../../_utils/props").RequestParams
|
|
100
|
+
} | import("../../_utils/props").RequestParams;
|
|
94
101
|
};
|
|
95
102
|
scrollX: {
|
|
96
103
|
type?: undefined;
|
|
@@ -101,11 +108,24 @@ export declare const tableComponentProps: {
|
|
|
101
108
|
[key: string]: any;
|
|
102
109
|
}[] | {
|
|
103
110
|
[key: string]: any;
|
|
111
|
+
}[] | import("../../_utils/props").Events | {
|
|
112
|
+
[key: string]: any;
|
|
113
|
+
} | import("../../_utils/props").RequestParams;
|
|
114
|
+
};
|
|
115
|
+
paginationShow: {
|
|
116
|
+
type?: undefined;
|
|
117
|
+
default?: undefined;
|
|
118
|
+
} | {
|
|
119
|
+
type: any;
|
|
120
|
+
default: string | number | boolean | {
|
|
121
|
+
[key: string]: any;
|
|
104
122
|
}[] | {
|
|
105
123
|
[key: string]: any;
|
|
106
|
-
} | import("../../_utils/props").
|
|
124
|
+
}[] | import("../../_utils/props").Events | {
|
|
125
|
+
[key: string]: any;
|
|
126
|
+
} | import("../../_utils/props").RequestParams;
|
|
107
127
|
};
|
|
108
|
-
|
|
128
|
+
paginationPosition: {
|
|
109
129
|
type?: undefined;
|
|
110
130
|
default?: undefined;
|
|
111
131
|
} | {
|
|
@@ -114,11 +134,24 @@ export declare const tableComponentProps: {
|
|
|
114
134
|
[key: string]: any;
|
|
115
135
|
}[] | {
|
|
116
136
|
[key: string]: any;
|
|
137
|
+
}[] | import("../../_utils/props").Events | {
|
|
138
|
+
[key: string]: any;
|
|
139
|
+
} | import("../../_utils/props").RequestParams;
|
|
140
|
+
};
|
|
141
|
+
simple: {
|
|
142
|
+
type?: undefined;
|
|
143
|
+
default?: undefined;
|
|
144
|
+
} | {
|
|
145
|
+
type: any;
|
|
146
|
+
default: string | number | boolean | {
|
|
147
|
+
[key: string]: any;
|
|
117
148
|
}[] | {
|
|
118
149
|
[key: string]: any;
|
|
119
|
-
} | import("../../_utils/props").
|
|
150
|
+
}[] | import("../../_utils/props").Events | {
|
|
151
|
+
[key: string]: any;
|
|
152
|
+
} | import("../../_utils/props").RequestParams;
|
|
120
153
|
};
|
|
121
|
-
|
|
154
|
+
headerCellBackgroundColor: {
|
|
122
155
|
type?: undefined;
|
|
123
156
|
default?: undefined;
|
|
124
157
|
} | {
|
|
@@ -127,11 +160,24 @@ export declare const tableComponentProps: {
|
|
|
127
160
|
[key: string]: any;
|
|
128
161
|
}[] | {
|
|
129
162
|
[key: string]: any;
|
|
163
|
+
}[] | import("../../_utils/props").Events | {
|
|
164
|
+
[key: string]: any;
|
|
165
|
+
} | import("../../_utils/props").RequestParams;
|
|
166
|
+
};
|
|
167
|
+
cellBackgroundColor: {
|
|
168
|
+
type?: undefined;
|
|
169
|
+
default?: undefined;
|
|
170
|
+
} | {
|
|
171
|
+
type: any;
|
|
172
|
+
default: string | number | boolean | {
|
|
173
|
+
[key: string]: any;
|
|
130
174
|
}[] | {
|
|
131
175
|
[key: string]: any;
|
|
132
|
-
} | import("../../_utils/props").
|
|
176
|
+
}[] | import("../../_utils/props").Events | {
|
|
177
|
+
[key: string]: any;
|
|
178
|
+
} | import("../../_utils/props").RequestParams;
|
|
133
179
|
};
|
|
134
|
-
|
|
180
|
+
borderColor: {
|
|
135
181
|
type?: undefined;
|
|
136
182
|
default?: undefined;
|
|
137
183
|
} | {
|
|
@@ -140,11 +186,37 @@ export declare const tableComponentProps: {
|
|
|
140
186
|
[key: string]: any;
|
|
141
187
|
}[] | {
|
|
142
188
|
[key: string]: any;
|
|
189
|
+
}[] | import("../../_utils/props").Events | {
|
|
190
|
+
[key: string]: any;
|
|
191
|
+
} | import("../../_utils/props").RequestParams;
|
|
192
|
+
};
|
|
193
|
+
paginationPageSize: {
|
|
194
|
+
type?: undefined;
|
|
195
|
+
default?: undefined;
|
|
196
|
+
} | {
|
|
197
|
+
type: any;
|
|
198
|
+
default: string | number | boolean | {
|
|
199
|
+
[key: string]: any;
|
|
143
200
|
}[] | {
|
|
144
201
|
[key: string]: any;
|
|
145
|
-
} | import("../../_utils/props").
|
|
202
|
+
}[] | import("../../_utils/props").Events | {
|
|
203
|
+
[key: string]: any;
|
|
204
|
+
} | import("../../_utils/props").RequestParams;
|
|
146
205
|
};
|
|
147
|
-
|
|
206
|
+
id: {
|
|
207
|
+
type?: undefined;
|
|
208
|
+
default?: undefined;
|
|
209
|
+
} | {
|
|
210
|
+
type: any;
|
|
211
|
+
default: string | number | boolean | {
|
|
212
|
+
[key: string]: any;
|
|
213
|
+
}[] | {
|
|
214
|
+
[key: string]: any;
|
|
215
|
+
}[] | import("../../_utils/props").Events | {
|
|
216
|
+
[key: string]: any;
|
|
217
|
+
} | import("../../_utils/props").RequestParams;
|
|
218
|
+
};
|
|
219
|
+
name: {
|
|
148
220
|
type?: undefined;
|
|
149
221
|
default?: undefined;
|
|
150
222
|
} | {
|
|
@@ -153,11 +225,24 @@ export declare const tableComponentProps: {
|
|
|
153
225
|
[key: string]: any;
|
|
154
226
|
}[] | {
|
|
155
227
|
[key: string]: any;
|
|
228
|
+
}[] | import("../../_utils/props").Events | {
|
|
229
|
+
[key: string]: any;
|
|
230
|
+
} | import("../../_utils/props").RequestParams;
|
|
231
|
+
};
|
|
232
|
+
keyName: {
|
|
233
|
+
type?: undefined;
|
|
234
|
+
default?: undefined;
|
|
235
|
+
} | {
|
|
236
|
+
type: any;
|
|
237
|
+
default: string | number | boolean | {
|
|
238
|
+
[key: string]: any;
|
|
156
239
|
}[] | {
|
|
157
240
|
[key: string]: any;
|
|
158
|
-
} | import("../../_utils/props").
|
|
241
|
+
}[] | import("../../_utils/props").Events | {
|
|
242
|
+
[key: string]: any;
|
|
243
|
+
} | import("../../_utils/props").RequestParams;
|
|
159
244
|
};
|
|
160
|
-
|
|
245
|
+
type: {
|
|
161
246
|
type?: undefined;
|
|
162
247
|
default?: undefined;
|
|
163
248
|
} | {
|
|
@@ -166,9 +251,22 @@ export declare const tableComponentProps: {
|
|
|
166
251
|
[key: string]: any;
|
|
167
252
|
}[] | {
|
|
168
253
|
[key: string]: any;
|
|
254
|
+
}[] | import("../../_utils/props").Events | {
|
|
255
|
+
[key: string]: any;
|
|
256
|
+
} | import("../../_utils/props").RequestParams;
|
|
257
|
+
};
|
|
258
|
+
width: {
|
|
259
|
+
type?: undefined;
|
|
260
|
+
default?: undefined;
|
|
261
|
+
} | {
|
|
262
|
+
type: any;
|
|
263
|
+
default: string | number | boolean | {
|
|
264
|
+
[key: string]: any;
|
|
169
265
|
}[] | {
|
|
170
266
|
[key: string]: any;
|
|
171
|
-
} | import("../../_utils/props").
|
|
267
|
+
}[] | import("../../_utils/props").Events | {
|
|
268
|
+
[key: string]: any;
|
|
269
|
+
} | import("../../_utils/props").RequestParams;
|
|
172
270
|
};
|
|
173
271
|
height: {
|
|
174
272
|
type?: undefined;
|
|
@@ -179,9 +277,9 @@ export declare const tableComponentProps: {
|
|
|
179
277
|
[key: string]: any;
|
|
180
278
|
}[] | {
|
|
181
279
|
[key: string]: any;
|
|
182
|
-
}[] | {
|
|
280
|
+
}[] | import("../../_utils/props").Events | {
|
|
183
281
|
[key: string]: any;
|
|
184
|
-
} | import("../../_utils/props").RequestParams
|
|
282
|
+
} | import("../../_utils/props").RequestParams;
|
|
185
283
|
};
|
|
186
284
|
position: {
|
|
187
285
|
type?: undefined;
|
|
@@ -192,9 +290,9 @@ export declare const tableComponentProps: {
|
|
|
192
290
|
[key: string]: any;
|
|
193
291
|
}[] | {
|
|
194
292
|
[key: string]: any;
|
|
195
|
-
}[] | {
|
|
293
|
+
}[] | import("../../_utils/props").Events | {
|
|
196
294
|
[key: string]: any;
|
|
197
|
-
} | import("../../_utils/props").RequestParams
|
|
295
|
+
} | import("../../_utils/props").RequestParams;
|
|
198
296
|
};
|
|
199
297
|
top: {
|
|
200
298
|
type?: undefined;
|
|
@@ -205,9 +303,9 @@ export declare const tableComponentProps: {
|
|
|
205
303
|
[key: string]: any;
|
|
206
304
|
}[] | {
|
|
207
305
|
[key: string]: any;
|
|
208
|
-
}[] | {
|
|
306
|
+
}[] | import("../../_utils/props").Events | {
|
|
209
307
|
[key: string]: any;
|
|
210
|
-
} | import("../../_utils/props").RequestParams
|
|
308
|
+
} | import("../../_utils/props").RequestParams;
|
|
211
309
|
};
|
|
212
310
|
left: {
|
|
213
311
|
type?: undefined;
|
|
@@ -218,9 +316,9 @@ export declare const tableComponentProps: {
|
|
|
218
316
|
[key: string]: any;
|
|
219
317
|
}[] | {
|
|
220
318
|
[key: string]: any;
|
|
221
|
-
}[] | {
|
|
319
|
+
}[] | import("../../_utils/props").Events | {
|
|
222
320
|
[key: string]: any;
|
|
223
|
-
} | import("../../_utils/props").RequestParams
|
|
321
|
+
} | import("../../_utils/props").RequestParams;
|
|
224
322
|
};
|
|
225
323
|
zIndex: {
|
|
226
324
|
type?: undefined;
|
|
@@ -231,9 +329,9 @@ export declare const tableComponentProps: {
|
|
|
231
329
|
[key: string]: any;
|
|
232
330
|
}[] | {
|
|
233
331
|
[key: string]: any;
|
|
234
|
-
}[] | {
|
|
332
|
+
}[] | import("../../_utils/props").Events | {
|
|
235
333
|
[key: string]: any;
|
|
236
|
-
} | import("../../_utils/props").RequestParams
|
|
334
|
+
} | import("../../_utils/props").RequestParams;
|
|
237
335
|
};
|
|
238
336
|
rotate: {
|
|
239
337
|
type?: undefined;
|
|
@@ -244,9 +342,9 @@ export declare const tableComponentProps: {
|
|
|
244
342
|
[key: string]: any;
|
|
245
343
|
}[] | {
|
|
246
344
|
[key: string]: any;
|
|
247
|
-
}[] | {
|
|
345
|
+
}[] | import("../../_utils/props").Events | {
|
|
248
346
|
[key: string]: any;
|
|
249
|
-
} | import("../../_utils/props").RequestParams
|
|
347
|
+
} | import("../../_utils/props").RequestParams;
|
|
250
348
|
};
|
|
251
349
|
isShow: {
|
|
252
350
|
type?: undefined;
|
|
@@ -257,9 +355,9 @@ export declare const tableComponentProps: {
|
|
|
257
355
|
[key: string]: any;
|
|
258
356
|
}[] | {
|
|
259
357
|
[key: string]: any;
|
|
260
|
-
}[] | {
|
|
358
|
+
}[] | import("../../_utils/props").Events | {
|
|
261
359
|
[key: string]: any;
|
|
262
|
-
} | import("../../_utils/props").RequestParams
|
|
360
|
+
} | import("../../_utils/props").RequestParams;
|
|
263
361
|
};
|
|
264
362
|
isRender: {
|
|
265
363
|
type?: undefined;
|
|
@@ -270,9 +368,9 @@ export declare const tableComponentProps: {
|
|
|
270
368
|
[key: string]: any;
|
|
271
369
|
}[] | {
|
|
272
370
|
[key: string]: any;
|
|
273
|
-
}[] | {
|
|
371
|
+
}[] | import("../../_utils/props").Events | {
|
|
274
372
|
[key: string]: any;
|
|
275
|
-
} | import("../../_utils/props").RequestParams
|
|
373
|
+
} | import("../../_utils/props").RequestParams;
|
|
276
374
|
};
|
|
277
375
|
isRequestData: {
|
|
278
376
|
type?: undefined;
|
|
@@ -283,11 +381,11 @@ export declare const tableComponentProps: {
|
|
|
283
381
|
[key: string]: any;
|
|
284
382
|
}[] | {
|
|
285
383
|
[key: string]: any;
|
|
286
|
-
}[] | {
|
|
384
|
+
}[] | import("../../_utils/props").Events | {
|
|
287
385
|
[key: string]: any;
|
|
288
|
-
} | import("../../_utils/props").RequestParams
|
|
386
|
+
} | import("../../_utils/props").RequestParams;
|
|
289
387
|
};
|
|
290
|
-
|
|
388
|
+
events: {
|
|
291
389
|
type?: undefined;
|
|
292
390
|
default?: undefined;
|
|
293
391
|
} | {
|
|
@@ -296,11 +394,11 @@ export declare const tableComponentProps: {
|
|
|
296
394
|
[key: string]: any;
|
|
297
395
|
}[] | {
|
|
298
396
|
[key: string]: any;
|
|
299
|
-
}[] | {
|
|
397
|
+
}[] | import("../../_utils/props").Events | {
|
|
300
398
|
[key: string]: any;
|
|
301
|
-
} | import("../../_utils/props").RequestParams
|
|
399
|
+
} | import("../../_utils/props").RequestParams;
|
|
302
400
|
};
|
|
303
|
-
|
|
401
|
+
requestUrl: {
|
|
304
402
|
type?: undefined;
|
|
305
403
|
default?: undefined;
|
|
306
404
|
} | {
|
|
@@ -309,11 +407,11 @@ export declare const tableComponentProps: {
|
|
|
309
407
|
[key: string]: any;
|
|
310
408
|
}[] | {
|
|
311
409
|
[key: string]: any;
|
|
312
|
-
}[] | {
|
|
410
|
+
}[] | import("../../_utils/props").Events | {
|
|
313
411
|
[key: string]: any;
|
|
314
|
-
} | import("../../_utils/props").RequestParams
|
|
412
|
+
} | import("../../_utils/props").RequestParams;
|
|
315
413
|
};
|
|
316
|
-
|
|
414
|
+
requestMethod: {
|
|
317
415
|
type?: undefined;
|
|
318
416
|
default?: undefined;
|
|
319
417
|
} | {
|
|
@@ -322,11 +420,11 @@ export declare const tableComponentProps: {
|
|
|
322
420
|
[key: string]: any;
|
|
323
421
|
}[] | {
|
|
324
422
|
[key: string]: any;
|
|
325
|
-
}[] | {
|
|
423
|
+
}[] | import("../../_utils/props").Events | {
|
|
326
424
|
[key: string]: any;
|
|
327
|
-
} | import("../../_utils/props").RequestParams
|
|
425
|
+
} | import("../../_utils/props").RequestParams;
|
|
328
426
|
};
|
|
329
|
-
|
|
427
|
+
requestHeaders: {
|
|
330
428
|
type?: undefined;
|
|
331
429
|
default?: undefined;
|
|
332
430
|
} | {
|
|
@@ -335,11 +433,11 @@ export declare const tableComponentProps: {
|
|
|
335
433
|
[key: string]: any;
|
|
336
434
|
}[] | {
|
|
337
435
|
[key: string]: any;
|
|
338
|
-
}[] | {
|
|
436
|
+
}[] | import("../../_utils/props").Events | {
|
|
339
437
|
[key: string]: any;
|
|
340
|
-
} | import("../../_utils/props").RequestParams
|
|
438
|
+
} | import("../../_utils/props").RequestParams;
|
|
341
439
|
};
|
|
342
|
-
|
|
440
|
+
isOpenRequestTimer: {
|
|
343
441
|
type?: undefined;
|
|
344
442
|
default?: undefined;
|
|
345
443
|
} | {
|
|
@@ -348,11 +446,11 @@ export declare const tableComponentProps: {
|
|
|
348
446
|
[key: string]: any;
|
|
349
447
|
}[] | {
|
|
350
448
|
[key: string]: any;
|
|
351
|
-
}[] | {
|
|
449
|
+
}[] | import("../../_utils/props").Events | {
|
|
352
450
|
[key: string]: any;
|
|
353
|
-
} | import("../../_utils/props").RequestParams
|
|
451
|
+
} | import("../../_utils/props").RequestParams;
|
|
354
452
|
};
|
|
355
|
-
|
|
453
|
+
requestInterval: {
|
|
356
454
|
type?: undefined;
|
|
357
455
|
default?: undefined;
|
|
358
456
|
} | {
|
|
@@ -361,11 +459,11 @@ export declare const tableComponentProps: {
|
|
|
361
459
|
[key: string]: any;
|
|
362
460
|
}[] | {
|
|
363
461
|
[key: string]: any;
|
|
364
|
-
}[] | {
|
|
462
|
+
}[] | import("../../_utils/props").Events | {
|
|
365
463
|
[key: string]: any;
|
|
366
|
-
} | import("../../_utils/props").RequestParams
|
|
464
|
+
} | import("../../_utils/props").RequestParams;
|
|
367
465
|
};
|
|
368
|
-
|
|
466
|
+
requestParams: {
|
|
369
467
|
type?: undefined;
|
|
370
468
|
default?: undefined;
|
|
371
469
|
} | {
|
|
@@ -374,9 +472,9 @@ export declare const tableComponentProps: {
|
|
|
374
472
|
[key: string]: any;
|
|
375
473
|
}[] | {
|
|
376
474
|
[key: string]: any;
|
|
377
|
-
}[] | {
|
|
475
|
+
}[] | import("../../_utils/props").Events | {
|
|
378
476
|
[key: string]: any;
|
|
379
|
-
} | import("../../_utils/props").RequestParams
|
|
477
|
+
} | import("../../_utils/props").RequestParams;
|
|
380
478
|
};
|
|
381
479
|
};
|
|
382
480
|
export declare const tableEvents: string[];
|
package/dist/text/index.d.ts
CHANGED