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