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