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