@ecan-bi/datav 1.0.6 → 1.0.9

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