@ecan-bi/datav 1.0.7 → 1.0.8

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.
Files changed (75) hide show
  1. package/README.dev.md +16 -0
  2. package/README.md +0 -16
  3. package/dist/_utils/constant.d.ts +3 -0
  4. package/dist/_utils/hooks/index.d.ts +6 -0
  5. package/dist/_utils/hooks/useEmitEvent.d.ts +7 -0
  6. package/dist/_utils/hooks/useOnEvent.d.ts +6 -0
  7. package/dist/_utils/{hooks.d.ts → hooks/usePickComponentStyle.d.ts} +3 -2
  8. package/dist/_utils/hooks/usePickEchartsData.d.ts +2 -0
  9. package/dist/_utils/hooks/useRequestData.d.ts +14 -0
  10. package/dist/_utils/hooks/useRequestParams.d.ts +5 -0
  11. package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +8 -0
  12. package/dist/_utils/props.d.ts +37 -3
  13. package/dist/_utils/request.d.ts +2 -0
  14. package/dist/_utils/util.d.ts +5 -0
  15. package/dist/components.d.ts +3 -0
  16. package/dist/container/border/index.d.ts +3 -0
  17. package/dist/container/border/props.d.ts +235 -0
  18. package/dist/container/index.d.ts +2 -0
  19. package/dist/container/modal/Modal.vue.d.ts +363 -0
  20. package/dist/container/modal/index.d.ts +3 -0
  21. package/dist/container/modal/props.d.ts +138 -0
  22. package/dist/control/button/Button.vue.d.ts +282 -0
  23. package/dist/control/button/index.d.ts +3 -0
  24. package/dist/control/button/props.d.ts +196 -0
  25. package/dist/control/date-picker/DatePicker.vue.d.ts +397 -0
  26. package/dist/control/date-picker/index.d.ts +3 -0
  27. package/dist/control/date-picker/props.d.ts +236 -0
  28. package/dist/control/index.d.ts +4 -0
  29. package/dist/control/input/Input.vue.d.ts +305 -3
  30. package/dist/control/input/index.d.ts +1 -0
  31. package/dist/control/input/props.d.ts +215 -0
  32. package/dist/control/range-picker/RangePicker.vue.d.ts +296 -0
  33. package/dist/control/range-picker/index.d.ts +3 -0
  34. package/dist/control/range-picker/props.d.ts +205 -0
  35. package/dist/control/select/Select.vue.d.ts +308 -0
  36. package/dist/control/select/index.d.ts +3 -0
  37. package/dist/control/select/props.d.ts +223 -0
  38. package/dist/graph/bar/Bar.vue.d.ts +603 -9
  39. package/dist/graph/bar/index.d.ts +1 -1
  40. package/dist/graph/bar/props.d.ts +375 -5
  41. package/dist/graph/custom-graph/CustomGraph.vue.d.ts +355 -0
  42. package/dist/graph/custom-graph/index.d.ts +3 -0
  43. package/dist/graph/custom-graph/props.d.ts +263 -0
  44. package/dist/graph/index.d.ts +1 -0
  45. package/dist/graph/line/Line.vue.d.ts +639 -7
  46. package/dist/graph/line/props.d.ts +397 -4
  47. package/dist/graph/pie/Pie.vue.d.ts +731 -13
  48. package/dist/graph/pie/index.d.ts +1 -1
  49. package/dist/graph/pie/props.d.ts +477 -4
  50. package/dist/graph/scatter/Scatter.vue.d.ts +646 -10
  51. package/dist/graph/scatter/index.d.ts +1 -1
  52. package/dist/graph/scatter/props.d.ts +398 -5
  53. package/dist/index.esm.js +2 -2
  54. package/dist/index.umd.js +2 -2
  55. package/dist/media/image/Image.vue.d.ts +293 -0
  56. package/dist/media/image/index.d.ts +3 -0
  57. package/dist/media/image/props.d.ts +205 -0
  58. package/dist/media/index.d.ts +1 -0
  59. package/dist/setting/index.d.ts +2 -1
  60. package/dist/setting/page-config/PageConfig.vue.d.ts +78 -0
  61. package/dist/setting/page-config/index.d.ts +3 -0
  62. package/dist/setting/page-config/props.d.ts +61 -0
  63. package/dist/setting/provider-config/ProviderConfig.vue.d.ts +34 -0
  64. package/dist/setting/{page-cofig → provider-config}/index.d.ts +2 -2
  65. package/dist/setting/provider-config/props.d.ts +29 -0
  66. package/dist/table/index.d.ts +1 -0
  67. package/dist/table/table/Table.vue.d.ts +494 -0
  68. package/dist/table/table/index.d.ts +3 -0
  69. package/dist/table/table/props.d.ts +382 -0
  70. package/dist/text/text/Text.vue.d.ts +383 -5
  71. package/dist/text/text/index.d.ts +1 -1
  72. package/dist/text/text/props.d.ts +264 -1
  73. package/package.json +15 -13
  74. package/dist/setting/page-cofig/PageConfig.vue.d.ts +0 -13
  75. package/dist/setting/page-cofig/props.d.ts +0 -8
@@ -4,9 +4,402 @@ export interface LineProps extends Props {
4
4
  titleText: string;
5
5
  titleSubtext: string;
6
6
  titleLeft: string;
7
- legendShow: string;
8
- legendTop: string;
9
- legendLeft: string;
7
+ colors: string[];
8
+ legendShow: boolean;
9
+ legendLeft: 'left' | 'center' | 'right';
10
+ legendTop: 'top' | 'middle' | 'bottom';
11
+ legendOrient: 'vertical' | 'horizontal';
12
+ symbolSize: number;
13
+ lineStyleWidth: number;
14
+ smooth: boolean;
15
+ xAxisSplitLineShow: boolean;
16
+ xAxisLabelColor: string;
17
+ xAxisLineStyleColor: string;
18
+ xAxisSplitLineStyleColor: string;
19
+ xAxisTickShow: boolean;
20
+ yAxisSplitLineShow: boolean;
21
+ yAxisSplitLineStyleColor: string;
22
+ yAxisLabelColor: string;
23
+ yAxisLineStyleColor: string;
10
24
  }
11
25
  export declare const lineProps: LineProps;
12
- export declare const lineComponentProps: any;
26
+ export declare const lineComponentProps: {
27
+ data: {
28
+ type?: undefined;
29
+ default?: undefined;
30
+ } | {
31
+ type: any;
32
+ default: string | number | boolean | Data | string[] | {
33
+ [key: string]: any;
34
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
35
+ };
36
+ titleText: {
37
+ type?: undefined;
38
+ default?: undefined;
39
+ } | {
40
+ type: any;
41
+ default: string | number | boolean | Data | string[] | {
42
+ [key: string]: any;
43
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
44
+ };
45
+ titleSubtext: {
46
+ type?: undefined;
47
+ default?: undefined;
48
+ } | {
49
+ type: any;
50
+ default: string | number | boolean | Data | string[] | {
51
+ [key: string]: any;
52
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
53
+ };
54
+ titleLeft: {
55
+ type?: undefined;
56
+ default?: undefined;
57
+ } | {
58
+ type: any;
59
+ default: string | number | boolean | Data | string[] | {
60
+ [key: string]: any;
61
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
62
+ };
63
+ colors: {
64
+ type?: undefined;
65
+ default?: undefined;
66
+ } | {
67
+ type: any;
68
+ default: string | number | boolean | Data | string[] | {
69
+ [key: string]: any;
70
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
71
+ };
72
+ legendShow: {
73
+ type?: undefined;
74
+ default?: undefined;
75
+ } | {
76
+ type: any;
77
+ default: string | number | boolean | Data | string[] | {
78
+ [key: string]: any;
79
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
80
+ };
81
+ legendLeft: {
82
+ type?: undefined;
83
+ default?: undefined;
84
+ } | {
85
+ type: any;
86
+ default: string | number | boolean | Data | string[] | {
87
+ [key: string]: any;
88
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
89
+ };
90
+ legendTop: {
91
+ type?: undefined;
92
+ default?: undefined;
93
+ } | {
94
+ type: any;
95
+ default: string | number | boolean | Data | string[] | {
96
+ [key: string]: any;
97
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
98
+ };
99
+ legendOrient: {
100
+ type?: undefined;
101
+ default?: undefined;
102
+ } | {
103
+ type: any;
104
+ default: string | number | boolean | Data | string[] | {
105
+ [key: string]: any;
106
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
107
+ };
108
+ symbolSize: {
109
+ type?: undefined;
110
+ default?: undefined;
111
+ } | {
112
+ type: any;
113
+ default: string | number | boolean | Data | string[] | {
114
+ [key: string]: any;
115
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
116
+ };
117
+ lineStyleWidth: {
118
+ type?: undefined;
119
+ default?: undefined;
120
+ } | {
121
+ type: any;
122
+ default: string | number | boolean | Data | string[] | {
123
+ [key: string]: any;
124
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
125
+ };
126
+ smooth: {
127
+ type?: undefined;
128
+ default?: undefined;
129
+ } | {
130
+ type: any;
131
+ default: string | number | boolean | Data | string[] | {
132
+ [key: string]: any;
133
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
134
+ };
135
+ xAxisSplitLineShow: {
136
+ type?: undefined;
137
+ default?: undefined;
138
+ } | {
139
+ type: any;
140
+ default: string | number | boolean | Data | string[] | {
141
+ [key: string]: any;
142
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
143
+ };
144
+ xAxisLabelColor: {
145
+ type?: undefined;
146
+ default?: undefined;
147
+ } | {
148
+ type: any;
149
+ default: string | number | boolean | Data | string[] | {
150
+ [key: string]: any;
151
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
152
+ };
153
+ xAxisLineStyleColor: {
154
+ type?: undefined;
155
+ default?: undefined;
156
+ } | {
157
+ type: any;
158
+ default: string | number | boolean | Data | string[] | {
159
+ [key: string]: any;
160
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
161
+ };
162
+ xAxisSplitLineStyleColor: {
163
+ type?: undefined;
164
+ default?: undefined;
165
+ } | {
166
+ type: any;
167
+ default: string | number | boolean | Data | string[] | {
168
+ [key: string]: any;
169
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
170
+ };
171
+ xAxisTickShow: {
172
+ type?: undefined;
173
+ default?: undefined;
174
+ } | {
175
+ type: any;
176
+ default: string | number | boolean | Data | string[] | {
177
+ [key: string]: any;
178
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
179
+ };
180
+ yAxisSplitLineShow: {
181
+ type?: undefined;
182
+ default?: undefined;
183
+ } | {
184
+ type: any;
185
+ default: string | number | boolean | Data | string[] | {
186
+ [key: string]: any;
187
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
188
+ };
189
+ yAxisSplitLineStyleColor: {
190
+ type?: undefined;
191
+ default?: undefined;
192
+ } | {
193
+ type: any;
194
+ default: string | number | boolean | Data | string[] | {
195
+ [key: string]: any;
196
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
197
+ };
198
+ yAxisLabelColor: {
199
+ type?: undefined;
200
+ default?: undefined;
201
+ } | {
202
+ type: any;
203
+ default: string | number | boolean | Data | string[] | {
204
+ [key: string]: any;
205
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
206
+ };
207
+ yAxisLineStyleColor: {
208
+ type?: undefined;
209
+ default?: undefined;
210
+ } | {
211
+ type: any;
212
+ default: string | number | boolean | Data | string[] | {
213
+ [key: string]: any;
214
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
215
+ };
216
+ id: {
217
+ type?: undefined;
218
+ default?: undefined;
219
+ } | {
220
+ type: any;
221
+ default: string | number | boolean | Data | string[] | {
222
+ [key: string]: any;
223
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
224
+ };
225
+ name: {
226
+ type?: undefined;
227
+ default?: undefined;
228
+ } | {
229
+ type: any;
230
+ default: string | number | boolean | Data | string[] | {
231
+ [key: string]: any;
232
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
233
+ };
234
+ keyName: {
235
+ type?: undefined;
236
+ default?: undefined;
237
+ } | {
238
+ type: any;
239
+ default: string | number | boolean | Data | string[] | {
240
+ [key: string]: any;
241
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
242
+ };
243
+ type: {
244
+ type?: undefined;
245
+ default?: undefined;
246
+ } | {
247
+ type: any;
248
+ default: string | number | boolean | Data | string[] | {
249
+ [key: string]: any;
250
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
251
+ };
252
+ width: {
253
+ type?: undefined;
254
+ default?: undefined;
255
+ } | {
256
+ type: any;
257
+ default: string | number | boolean | Data | string[] | {
258
+ [key: string]: any;
259
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
260
+ };
261
+ height: {
262
+ type?: undefined;
263
+ default?: undefined;
264
+ } | {
265
+ type: any;
266
+ default: string | number | boolean | Data | string[] | {
267
+ [key: string]: any;
268
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
269
+ };
270
+ position: {
271
+ type?: undefined;
272
+ default?: undefined;
273
+ } | {
274
+ type: any;
275
+ default: string | number | boolean | Data | string[] | {
276
+ [key: string]: any;
277
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
278
+ };
279
+ top: {
280
+ type?: undefined;
281
+ default?: undefined;
282
+ } | {
283
+ type: any;
284
+ default: string | number | boolean | Data | string[] | {
285
+ [key: string]: any;
286
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
287
+ };
288
+ left: {
289
+ type?: undefined;
290
+ default?: undefined;
291
+ } | {
292
+ type: any;
293
+ default: string | number | boolean | Data | string[] | {
294
+ [key: string]: any;
295
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
296
+ };
297
+ zIndex: {
298
+ type?: undefined;
299
+ default?: undefined;
300
+ } | {
301
+ type: any;
302
+ default: string | number | boolean | Data | string[] | {
303
+ [key: string]: any;
304
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
305
+ };
306
+ rotate: {
307
+ type?: undefined;
308
+ default?: undefined;
309
+ } | {
310
+ type: any;
311
+ default: string | number | boolean | Data | string[] | {
312
+ [key: string]: any;
313
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
314
+ };
315
+ isShow: {
316
+ type?: undefined;
317
+ default?: undefined;
318
+ } | {
319
+ type: any;
320
+ default: string | number | boolean | Data | string[] | {
321
+ [key: string]: any;
322
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
323
+ };
324
+ isRender: {
325
+ type?: undefined;
326
+ default?: undefined;
327
+ } | {
328
+ type: any;
329
+ default: string | number | boolean | Data | string[] | {
330
+ [key: string]: any;
331
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
332
+ };
333
+ isRequestData: {
334
+ type?: undefined;
335
+ default?: undefined;
336
+ } | {
337
+ type: any;
338
+ default: string | number | boolean | Data | string[] | {
339
+ [key: string]: any;
340
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
341
+ };
342
+ requestUrl: {
343
+ type?: undefined;
344
+ default?: undefined;
345
+ } | {
346
+ type: any;
347
+ default: string | number | boolean | Data | string[] | {
348
+ [key: string]: any;
349
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
350
+ };
351
+ requestMethod: {
352
+ type?: undefined;
353
+ default?: undefined;
354
+ } | {
355
+ type: any;
356
+ default: string | number | boolean | Data | string[] | {
357
+ [key: string]: any;
358
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
359
+ };
360
+ requestHeaders: {
361
+ type?: undefined;
362
+ default?: undefined;
363
+ } | {
364
+ type: any;
365
+ default: string | number | boolean | Data | string[] | {
366
+ [key: string]: any;
367
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
368
+ };
369
+ isOpenRequestTimer: {
370
+ type?: undefined;
371
+ default?: undefined;
372
+ } | {
373
+ type: any;
374
+ default: string | number | boolean | Data | string[] | {
375
+ [key: string]: any;
376
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
377
+ };
378
+ requestInterval: {
379
+ type?: undefined;
380
+ default?: undefined;
381
+ } | {
382
+ type: any;
383
+ default: string | number | boolean | Data | string[] | {
384
+ [key: string]: any;
385
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
386
+ };
387
+ requestParams: {
388
+ type?: undefined;
389
+ default?: undefined;
390
+ } | {
391
+ type: any;
392
+ default: string | number | boolean | Data | string[] | {
393
+ [key: string]: any;
394
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
395
+ };
396
+ events: {
397
+ type?: undefined;
398
+ default?: undefined;
399
+ } | {
400
+ type: any;
401
+ default: string | number | boolean | Data | string[] | {
402
+ [key: string]: any;
403
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
404
+ };
405
+ };