@ecan-bi/datav 1.0.41 → 1.0.44

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 (62) hide show
  1. package/dist/index.es.js +906 -255
  2. package/dist/index.es.js.map +1 -1
  3. package/dist/index.umd.js +906 -252
  4. package/dist/index.umd.js.map +1 -1
  5. package/dist/style.css +149 -86
  6. package/package.json +1 -1
  7. package/types/_utils/constant.d.ts +3 -1
  8. package/types/_utils/hooks/index.d.ts +2 -0
  9. package/types/_utils/hooks/useHrefParamsToGlobalVariables.d.ts +2 -0
  10. package/types/_utils/hooks/useIndicatorData.d.ts +4 -0
  11. package/types/container/border/Border.vue.d.ts +183 -54
  12. package/types/container/border/index.d.ts +130 -1
  13. package/types/container/border/props.d.ts +115 -55
  14. package/types/container/modal/Modal.vue.d.ts +1 -1
  15. package/types/container/modal/index.d.ts +1 -1
  16. package/types/control/button/Button.vue.d.ts +110 -0
  17. package/types/control/button/index.d.ts +111 -1
  18. package/types/control/button/props.d.ts +104 -44
  19. package/types/control/date-picker/props.d.ts +52 -52
  20. package/types/control/input/props.d.ts +48 -48
  21. package/types/control/range-picker/RangePicker.vue.d.ts +52 -52
  22. package/types/control/range-picker/props.d.ts +52 -52
  23. package/types/control/select/Select.vue.d.ts +50 -50
  24. package/types/control/select/props.d.ts +50 -50
  25. package/types/control/tabs/Tabs.vue.d.ts +42 -0
  26. package/types/control/tabs/index.d.ts +42 -0
  27. package/types/control/tabs/props.d.ts +24 -0
  28. package/types/graph/bar/Bar.vue.d.ts +128 -128
  29. package/types/graph/bar/index.d.ts +128 -128
  30. package/types/graph/bar/props.d.ts +65 -65
  31. package/types/graph/combo-graph/ComboGraph.vue.d.ts +155 -0
  32. package/types/graph/combo-graph/index.d.ts +155 -0
  33. package/types/graph/combo-graph/props.d.ts +72 -0
  34. package/types/graph/custom-graph/props.d.ts +48 -48
  35. package/types/graph/line/Line.vue.d.ts +155 -0
  36. package/types/graph/line/index.d.ts +155 -0
  37. package/types/graph/line/props.d.ts +72 -0
  38. package/types/graph/pie/Pie.vue.d.ts +155 -0
  39. package/types/graph/pie/index.d.ts +155 -0
  40. package/types/graph/pie/props.d.ts +72 -0
  41. package/types/graph/scatter/Scatter.vue.d.ts +155 -0
  42. package/types/graph/scatter/index.d.ts +155 -0
  43. package/types/graph/scatter/props.d.ts +72 -0
  44. package/types/map/map/props.d.ts +112 -112
  45. package/types/media/image/props.d.ts +52 -52
  46. package/types/setting/index.d.ts +1 -0
  47. package/types/setting/provider-config/ProviderConfig.vue.d.ts +36 -6
  48. package/types/setting/provider-config/index.d.ts +37 -7
  49. package/types/setting/provider-config/props.d.ts +21 -3
  50. package/types/setting/renderer/Renderer.vue.d.ts +22 -0
  51. package/types/setting/renderer/index.d.ts +23 -0
  52. package/types/setting/renderer/props.d.ts +17 -0
  53. package/types/table/table/Table.vue.d.ts +900 -79
  54. package/types/table/table/index.d.ts +899 -79
  55. package/types/table/table/props.d.ts +451 -39
  56. package/types/text/list/List.vue.d.ts +64 -64
  57. package/types/text/list/props.d.ts +64 -64
  58. package/types/text/proportion/Proportion.vue.d.ts +68 -68
  59. package/types/text/proportion/props.d.ts +68 -68
  60. package/types/text/text/Text.vue.d.ts +66 -66
  61. package/types/text/text/props.d.ts +66 -66
  62. package/types/text/time-display/props.d.ts +60 -60
@@ -1,4 +1,58 @@
1
- export declare const EcanButton: import("../../_utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
1
+ export declare const EcanButton: import('../../_utils/withInstall').SFCWithInstall<import("vue").DefineComponent<{
2
+ text: {
3
+ type?: undefined;
4
+ default?: undefined;
5
+ } | {
6
+ type: any;
7
+ default: string | number | boolean | import("../../_utils/props").Events | {
8
+ [key: string]: any;
9
+ } | import("../../_utils/props").RequestParams;
10
+ };
11
+ mode: {
12
+ type?: undefined;
13
+ default?: undefined;
14
+ } | {
15
+ type: any;
16
+ default: string | number | boolean | import("../../_utils/props").Events | {
17
+ [key: string]: any;
18
+ } | import("../../_utils/props").RequestParams;
19
+ };
20
+ danger: {
21
+ type?: undefined;
22
+ default?: undefined;
23
+ } | {
24
+ type: any;
25
+ default: string | number | boolean | import("../../_utils/props").Events | {
26
+ [key: string]: any;
27
+ } | import("../../_utils/props").RequestParams;
28
+ };
29
+ shape: {
30
+ type?: undefined;
31
+ default?: undefined;
32
+ } | {
33
+ type: any;
34
+ default: string | number | boolean | import("../../_utils/props").Events | {
35
+ [key: string]: any;
36
+ } | import("../../_utils/props").RequestParams;
37
+ };
38
+ href: {
39
+ type?: undefined;
40
+ default?: undefined;
41
+ } | {
42
+ type: any;
43
+ default: string | number | boolean | import("../../_utils/props").Events | {
44
+ [key: string]: any;
45
+ } | import("../../_utils/props").RequestParams;
46
+ };
47
+ target: {
48
+ type?: undefined;
49
+ default?: undefined;
50
+ } | {
51
+ type: any;
52
+ default: string | number | boolean | import("../../_utils/props").Events | {
53
+ [key: string]: any;
54
+ } | import("../../_utils/props").RequestParams;
55
+ };
2
56
  id: {
3
57
  type?: undefined;
4
58
  default?: undefined;
@@ -200,7 +254,63 @@ export declare const EcanButton: import("../../_utils/withInstall").SFCWithInsta
200
254
  }, {
201
255
  style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
202
256
  click: () => void;
257
+ myText: import("vue").ComputedRef<string>;
258
+ myHref: import("vue").ComputedRef<string>;
203
259
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
260
+ text: {
261
+ type?: undefined;
262
+ default?: undefined;
263
+ } | {
264
+ type: any;
265
+ default: string | number | boolean | import("../../_utils/props").Events | {
266
+ [key: string]: any;
267
+ } | import("../../_utils/props").RequestParams;
268
+ };
269
+ mode: {
270
+ type?: undefined;
271
+ default?: undefined;
272
+ } | {
273
+ type: any;
274
+ default: string | number | boolean | import("../../_utils/props").Events | {
275
+ [key: string]: any;
276
+ } | import("../../_utils/props").RequestParams;
277
+ };
278
+ danger: {
279
+ type?: undefined;
280
+ default?: undefined;
281
+ } | {
282
+ type: any;
283
+ default: string | number | boolean | import("../../_utils/props").Events | {
284
+ [key: string]: any;
285
+ } | import("../../_utils/props").RequestParams;
286
+ };
287
+ shape: {
288
+ type?: undefined;
289
+ default?: undefined;
290
+ } | {
291
+ type: any;
292
+ default: string | number | boolean | import("../../_utils/props").Events | {
293
+ [key: string]: any;
294
+ } | import("../../_utils/props").RequestParams;
295
+ };
296
+ href: {
297
+ type?: undefined;
298
+ default?: undefined;
299
+ } | {
300
+ type: any;
301
+ default: string | number | boolean | import("../../_utils/props").Events | {
302
+ [key: string]: any;
303
+ } | import("../../_utils/props").RequestParams;
304
+ };
305
+ target: {
306
+ type?: undefined;
307
+ default?: undefined;
308
+ } | {
309
+ type: any;
310
+ default: string | number | boolean | import("../../_utils/props").Events | {
311
+ [key: string]: any;
312
+ } | import("../../_utils/props").RequestParams;
313
+ };
204
314
  id: {
205
315
  type?: undefined;
206
316
  default?: undefined;
@@ -1,205 +1,265 @@
1
1
  import { Props } from '../../_utils/props';
2
2
  export interface ButtonProps extends Props {
3
+ text: string;
4
+ mode: 'primary' | 'dashed' | 'link' | 'text' | 'default';
5
+ danger: boolean;
6
+ shape: 'default' | 'circle' | 'round';
7
+ href: string;
8
+ target: '_self' | '_blank';
3
9
  }
4
10
  export declare const buttonProps: ButtonProps;
5
11
  export declare const buttonComponentProps: {
12
+ text: {
13
+ type?: undefined;
14
+ default?: undefined;
15
+ } | {
16
+ type: any;
17
+ default: string | number | boolean | import('../../_utils/props').Events | {
18
+ [key: string]: any;
19
+ } | import('../../_utils/props').RequestParams;
20
+ };
21
+ mode: {
22
+ type?: undefined;
23
+ default?: undefined;
24
+ } | {
25
+ type: any;
26
+ default: string | number | boolean | import('../../_utils/props').Events | {
27
+ [key: string]: any;
28
+ } | import('../../_utils/props').RequestParams;
29
+ };
30
+ danger: {
31
+ type?: undefined;
32
+ default?: undefined;
33
+ } | {
34
+ type: any;
35
+ default: string | number | boolean | import('../../_utils/props').Events | {
36
+ [key: string]: any;
37
+ } | import('../../_utils/props').RequestParams;
38
+ };
39
+ shape: {
40
+ type?: undefined;
41
+ default?: undefined;
42
+ } | {
43
+ type: any;
44
+ default: string | number | boolean | import('../../_utils/props').Events | {
45
+ [key: string]: any;
46
+ } | import('../../_utils/props').RequestParams;
47
+ };
48
+ href: {
49
+ type?: undefined;
50
+ default?: undefined;
51
+ } | {
52
+ type: any;
53
+ default: string | number | boolean | import('../../_utils/props').Events | {
54
+ [key: string]: any;
55
+ } | import('../../_utils/props').RequestParams;
56
+ };
57
+ target: {
58
+ type?: undefined;
59
+ default?: undefined;
60
+ } | {
61
+ type: any;
62
+ default: string | number | boolean | import('../../_utils/props').Events | {
63
+ [key: string]: any;
64
+ } | import('../../_utils/props').RequestParams;
65
+ };
6
66
  id: {
7
67
  type?: undefined;
8
68
  default?: undefined;
9
69
  } | {
10
70
  type: any;
11
- default: string | number | boolean | import("../../_utils/props").Events | {
71
+ default: string | number | boolean | import('../../_utils/props').Events | {
12
72
  [key: string]: any;
13
- } | import("../../_utils/props").RequestParams;
73
+ } | import('../../_utils/props').RequestParams;
14
74
  };
15
75
  name: {
16
76
  type?: undefined;
17
77
  default?: undefined;
18
78
  } | {
19
79
  type: any;
20
- default: string | number | boolean | import("../../_utils/props").Events | {
80
+ default: string | number | boolean | import('../../_utils/props').Events | {
21
81
  [key: string]: any;
22
- } | import("../../_utils/props").RequestParams;
82
+ } | import('../../_utils/props').RequestParams;
23
83
  };
24
84
  keyName: {
25
85
  type?: undefined;
26
86
  default?: undefined;
27
87
  } | {
28
88
  type: any;
29
- default: string | number | boolean | import("../../_utils/props").Events | {
89
+ default: string | number | boolean | import('../../_utils/props').Events | {
30
90
  [key: string]: any;
31
- } | import("../../_utils/props").RequestParams;
91
+ } | import('../../_utils/props').RequestParams;
32
92
  };
33
93
  type: {
34
94
  type?: undefined;
35
95
  default?: undefined;
36
96
  } | {
37
97
  type: any;
38
- default: string | number | boolean | import("../../_utils/props").Events | {
98
+ default: string | number | boolean | import('../../_utils/props').Events | {
39
99
  [key: string]: any;
40
- } | import("../../_utils/props").RequestParams;
100
+ } | import('../../_utils/props').RequestParams;
41
101
  };
42
102
  width: {
43
103
  type?: undefined;
44
104
  default?: undefined;
45
105
  } | {
46
106
  type: any;
47
- default: string | number | boolean | import("../../_utils/props").Events | {
107
+ default: string | number | boolean | import('../../_utils/props').Events | {
48
108
  [key: string]: any;
49
- } | import("../../_utils/props").RequestParams;
109
+ } | import('../../_utils/props').RequestParams;
50
110
  };
51
111
  height: {
52
112
  type?: undefined;
53
113
  default?: undefined;
54
114
  } | {
55
115
  type: any;
56
- default: string | number | boolean | import("../../_utils/props").Events | {
116
+ default: string | number | boolean | import('../../_utils/props').Events | {
57
117
  [key: string]: any;
58
- } | import("../../_utils/props").RequestParams;
118
+ } | import('../../_utils/props').RequestParams;
59
119
  };
60
120
  position: {
61
121
  type?: undefined;
62
122
  default?: undefined;
63
123
  } | {
64
124
  type: any;
65
- default: string | number | boolean | import("../../_utils/props").Events | {
125
+ default: string | number | boolean | import('../../_utils/props').Events | {
66
126
  [key: string]: any;
67
- } | import("../../_utils/props").RequestParams;
127
+ } | import('../../_utils/props').RequestParams;
68
128
  };
69
129
  top: {
70
130
  type?: undefined;
71
131
  default?: undefined;
72
132
  } | {
73
133
  type: any;
74
- default: string | number | boolean | import("../../_utils/props").Events | {
134
+ default: string | number | boolean | import('../../_utils/props').Events | {
75
135
  [key: string]: any;
76
- } | import("../../_utils/props").RequestParams;
136
+ } | import('../../_utils/props').RequestParams;
77
137
  };
78
138
  left: {
79
139
  type?: undefined;
80
140
  default?: undefined;
81
141
  } | {
82
142
  type: any;
83
- default: string | number | boolean | import("../../_utils/props").Events | {
143
+ default: string | number | boolean | import('../../_utils/props').Events | {
84
144
  [key: string]: any;
85
- } | import("../../_utils/props").RequestParams;
145
+ } | import('../../_utils/props').RequestParams;
86
146
  };
87
147
  zIndex: {
88
148
  type?: undefined;
89
149
  default?: undefined;
90
150
  } | {
91
151
  type: any;
92
- default: string | number | boolean | import("../../_utils/props").Events | {
152
+ default: string | number | boolean | import('../../_utils/props').Events | {
93
153
  [key: string]: any;
94
- } | import("../../_utils/props").RequestParams;
154
+ } | import('../../_utils/props').RequestParams;
95
155
  };
96
156
  rotate: {
97
157
  type?: undefined;
98
158
  default?: undefined;
99
159
  } | {
100
160
  type: any;
101
- default: string | number | boolean | import("../../_utils/props").Events | {
161
+ default: string | number | boolean | import('../../_utils/props').Events | {
102
162
  [key: string]: any;
103
- } | import("../../_utils/props").RequestParams;
163
+ } | import('../../_utils/props').RequestParams;
104
164
  };
105
165
  isShow: {
106
166
  type?: undefined;
107
167
  default?: undefined;
108
168
  } | {
109
169
  type: any;
110
- default: string | number | boolean | import("../../_utils/props").Events | {
170
+ default: string | number | boolean | import('../../_utils/props').Events | {
111
171
  [key: string]: any;
112
- } | import("../../_utils/props").RequestParams;
172
+ } | import('../../_utils/props').RequestParams;
113
173
  };
114
174
  isRender: {
115
175
  type?: undefined;
116
176
  default?: undefined;
117
177
  } | {
118
178
  type: any;
119
- default: string | number | boolean | import("../../_utils/props").Events | {
179
+ default: string | number | boolean | import('../../_utils/props').Events | {
120
180
  [key: string]: any;
121
- } | import("../../_utils/props").RequestParams;
181
+ } | import('../../_utils/props').RequestParams;
122
182
  };
123
183
  events: {
124
184
  type?: undefined;
125
185
  default?: undefined;
126
186
  } | {
127
187
  type: any;
128
- default: string | number | boolean | import("../../_utils/props").Events | {
188
+ default: string | number | boolean | import('../../_utils/props').Events | {
129
189
  [key: string]: any;
130
- } | import("../../_utils/props").RequestParams;
190
+ } | import('../../_utils/props').RequestParams;
131
191
  };
132
192
  requestUrl: {
133
193
  type?: undefined;
134
194
  default?: undefined;
135
195
  } | {
136
196
  type: any;
137
- default: string | number | boolean | import("../../_utils/props").Events | {
197
+ default: string | number | boolean | import('../../_utils/props').Events | {
138
198
  [key: string]: any;
139
- } | import("../../_utils/props").RequestParams;
199
+ } | import('../../_utils/props').RequestParams;
140
200
  };
141
201
  requestMethod: {
142
202
  type?: undefined;
143
203
  default?: undefined;
144
204
  } | {
145
205
  type: any;
146
- default: string | number | boolean | import("../../_utils/props").Events | {
206
+ default: string | number | boolean | import('../../_utils/props').Events | {
147
207
  [key: string]: any;
148
- } | import("../../_utils/props").RequestParams;
208
+ } | import('../../_utils/props').RequestParams;
149
209
  };
150
210
  requestHeaders: {
151
211
  type?: undefined;
152
212
  default?: undefined;
153
213
  } | {
154
214
  type: any;
155
- default: string | number | boolean | import("../../_utils/props").Events | {
215
+ default: string | number | boolean | import('../../_utils/props').Events | {
156
216
  [key: string]: any;
157
- } | import("../../_utils/props").RequestParams;
217
+ } | import('../../_utils/props').RequestParams;
158
218
  };
159
219
  isOpenRequestTimer: {
160
220
  type?: undefined;
161
221
  default?: undefined;
162
222
  } | {
163
223
  type: any;
164
- default: string | number | boolean | import("../../_utils/props").Events | {
224
+ default: string | number | boolean | import('../../_utils/props').Events | {
165
225
  [key: string]: any;
166
- } | import("../../_utils/props").RequestParams;
226
+ } | import('../../_utils/props').RequestParams;
167
227
  };
168
228
  requestInterval: {
169
229
  type?: undefined;
170
230
  default?: undefined;
171
231
  } | {
172
232
  type: any;
173
- default: string | number | boolean | import("../../_utils/props").Events | {
233
+ default: string | number | boolean | import('../../_utils/props').Events | {
174
234
  [key: string]: any;
175
- } | import("../../_utils/props").RequestParams;
235
+ } | import('../../_utils/props').RequestParams;
176
236
  };
177
237
  requestParams: {
178
238
  type?: undefined;
179
239
  default?: undefined;
180
240
  } | {
181
241
  type: any;
182
- default: string | number | boolean | import("../../_utils/props").Events | {
242
+ default: string | number | boolean | import('../../_utils/props').Events | {
183
243
  [key: string]: any;
184
- } | import("../../_utils/props").RequestParams;
244
+ } | import('../../_utils/props').RequestParams;
185
245
  };
186
246
  requestSort: {
187
247
  type?: undefined;
188
248
  default?: undefined;
189
249
  } | {
190
250
  type: any;
191
- default: string | number | boolean | import("../../_utils/props").Events | {
251
+ default: string | number | boolean | import('../../_utils/props').Events | {
192
252
  [key: string]: any;
193
- } | import("../../_utils/props").RequestParams;
253
+ } | import('../../_utils/props').RequestParams;
194
254
  };
195
255
  dataType: {
196
256
  type?: undefined;
197
257
  default?: undefined;
198
258
  } | {
199
259
  type: any;
200
- default: string | number | boolean | import("../../_utils/props").Events | {
260
+ default: string | number | boolean | import('../../_utils/props').Events | {
201
261
  [key: string]: any;
202
- } | import("../../_utils/props").RequestParams;
262
+ } | import('../../_utils/props').RequestParams;
203
263
  };
204
264
  };
205
265
  export declare const buttonEvents: string[];