@ecan-bi/datav 1.0.5 → 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 (83) hide show
  1. package/README.dev.md +16 -0
  2. package/README.md +0 -0
  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/usePickComponentStyle.d.ts +9 -0
  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 +48 -7
  13. package/dist/_utils/request.d.ts +2 -0
  14. package/dist/_utils/util.d.ts +5 -0
  15. package/dist/common/echarts/ECharts.d.ts +311 -0
  16. package/dist/common/echarts/composables/api.d.ts +7 -0
  17. package/dist/common/echarts/composables/autoresize.d.ts +6 -0
  18. package/dist/common/echarts/composables/index.d.ts +3 -0
  19. package/dist/common/echarts/composables/loading.d.ts +10 -0
  20. package/dist/common/echarts/index.d.ts +2 -0
  21. package/dist/common/echarts/types.d.ts +20 -0
  22. package/dist/common/echarts/utils.d.ts +6 -0
  23. package/dist/common/index.d.ts +1 -0
  24. package/dist/components.d.ts +6 -0
  25. package/dist/container/border/index.d.ts +3 -0
  26. package/dist/container/border/props.d.ts +235 -0
  27. package/dist/container/index.d.ts +2 -0
  28. package/dist/container/modal/Modal.vue.d.ts +363 -0
  29. package/dist/container/modal/index.d.ts +3 -0
  30. package/dist/container/modal/props.d.ts +138 -0
  31. package/dist/control/button/Button.vue.d.ts +282 -0
  32. package/dist/control/button/index.d.ts +3 -0
  33. package/dist/control/button/props.d.ts +196 -0
  34. package/dist/control/date-picker/DatePicker.vue.d.ts +397 -0
  35. package/dist/control/date-picker/index.d.ts +3 -0
  36. package/dist/control/date-picker/props.d.ts +236 -0
  37. package/dist/control/index.d.ts +4 -0
  38. package/dist/control/input/Input.vue.d.ts +305 -3
  39. package/dist/control/input/index.d.ts +1 -0
  40. package/dist/control/input/props.d.ts +215 -0
  41. package/dist/control/range-picker/RangePicker.vue.d.ts +296 -0
  42. package/dist/control/range-picker/index.d.ts +3 -0
  43. package/dist/control/range-picker/props.d.ts +205 -0
  44. package/dist/control/select/Select.vue.d.ts +308 -0
  45. package/dist/control/select/index.d.ts +3 -0
  46. package/dist/control/select/props.d.ts +223 -0
  47. package/dist/graph/bar/Bar.vue.d.ts +617 -0
  48. package/dist/graph/bar/index.d.ts +3 -0
  49. package/dist/graph/bar/props.d.ts +382 -0
  50. package/dist/graph/custom-graph/CustomGraph.vue.d.ts +355 -0
  51. package/dist/graph/custom-graph/index.d.ts +3 -0
  52. package/dist/graph/custom-graph/props.d.ts +263 -0
  53. package/dist/graph/index.d.ts +5 -0
  54. package/dist/graph/line/Line.vue.d.ts +655 -0
  55. package/dist/graph/line/index.d.ts +3 -0
  56. package/dist/graph/line/props.d.ts +405 -0
  57. package/dist/graph/pie/Pie.vue.d.ts +752 -0
  58. package/dist/graph/pie/index.d.ts +3 -0
  59. package/dist/graph/pie/props.d.ts +485 -0
  60. package/dist/graph/scatter/Scatter.vue.d.ts +655 -0
  61. package/dist/graph/scatter/index.d.ts +3 -0
  62. package/dist/graph/scatter/props.d.ts +405 -0
  63. package/dist/index.esm.js +15 -1
  64. package/dist/index.umd.js +15 -1
  65. package/dist/media/image/Image.vue.d.ts +293 -0
  66. package/dist/media/image/index.d.ts +3 -0
  67. package/dist/media/image/props.d.ts +205 -0
  68. package/dist/media/index.d.ts +1 -0
  69. package/dist/setting/index.d.ts +2 -0
  70. package/dist/setting/page-config/PageConfig.vue.d.ts +78 -0
  71. package/dist/setting/page-config/index.d.ts +3 -0
  72. package/dist/setting/page-config/props.d.ts +61 -0
  73. package/dist/setting/provider-config/ProviderConfig.vue.d.ts +34 -0
  74. package/dist/setting/provider-config/index.d.ts +3 -0
  75. package/dist/setting/provider-config/props.d.ts +29 -0
  76. package/dist/table/index.d.ts +1 -0
  77. package/dist/table/table/Table.vue.d.ts +494 -0
  78. package/dist/table/table/index.d.ts +3 -0
  79. package/dist/table/table/props.d.ts +382 -0
  80. package/dist/text/text/Text.vue.d.ts +383 -3
  81. package/dist/text/text/index.d.ts +1 -1
  82. package/dist/text/text/props.d.ts +268 -3
  83. package/package.json +24 -20
@@ -0,0 +1,382 @@
1
+ import { Props } from '../../_utils/props';
2
+ export interface TableProps extends Props {
3
+ columns: {
4
+ [key: string]: any;
5
+ }[];
6
+ data: {
7
+ [key: string]: any;
8
+ }[];
9
+ bordered: boolean;
10
+ size: 'default' | 'middle' | 'small';
11
+ isUseSeq: boolean;
12
+ columnsFixedNum: number;
13
+ scrollX: number;
14
+ }
15
+ export declare const tableProps: TableProps;
16
+ export declare const tableComponentProps: {
17
+ columns: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
29
+ };
30
+ data: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
42
+ };
43
+ bordered: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
55
+ };
56
+ size: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
68
+ };
69
+ isUseSeq: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
81
+ };
82
+ columnsFixedNum: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
94
+ };
95
+ scrollX: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
107
+ };
108
+ id: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
120
+ };
121
+ name: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
133
+ };
134
+ keyName: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
146
+ };
147
+ type: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
159
+ };
160
+ width: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
172
+ };
173
+ height: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
185
+ };
186
+ position: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
198
+ };
199
+ top: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
211
+ };
212
+ left: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
224
+ };
225
+ zIndex: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
237
+ };
238
+ rotate: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
250
+ };
251
+ isShow: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
263
+ };
264
+ isRender: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
276
+ };
277
+ isRequestData: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
289
+ };
290
+ requestUrl: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
302
+ };
303
+ requestMethod: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
315
+ };
316
+ requestHeaders: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
328
+ };
329
+ isOpenRequestTimer: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
341
+ };
342
+ requestInterval: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
354
+ };
355
+ requestParams: {
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("../../_utils/props").RequestParams | import("../../_utils/props").Events;
367
+ };
368
+ events: {
369
+ type?: undefined;
370
+ default?: undefined;
371
+ } | {
372
+ type: any;
373
+ default: string | number | boolean | {
374
+ [key: string]: any;
375
+ }[] | {
376
+ [key: string]: any;
377
+ }[] | {
378
+ [key: string]: any;
379
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
380
+ };
381
+ };
382
+ export declare const tableEvents: string[];