@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,283 @@
1
+ import 'ant-design-vue/es/button/style/index';
2
+ import { Events } from 'src/_utils/props';
3
+ declare const _default: import("vue").DefineComponent<{
4
+ id: {
5
+ type?: undefined;
6
+ default?: undefined;
7
+ } | {
8
+ type: any;
9
+ default: string | number | boolean | {
10
+ [key: string]: any;
11
+ } | import("src/_utils/props").RequestParams | Events;
12
+ };
13
+ name: {
14
+ type?: undefined;
15
+ default?: undefined;
16
+ } | {
17
+ type: any;
18
+ default: string | number | boolean | {
19
+ [key: string]: any;
20
+ } | import("src/_utils/props").RequestParams | Events;
21
+ };
22
+ keyName: {
23
+ type?: undefined;
24
+ default?: undefined;
25
+ } | {
26
+ type: any;
27
+ default: string | number | boolean | {
28
+ [key: string]: any;
29
+ } | import("src/_utils/props").RequestParams | Events;
30
+ };
31
+ type: {
32
+ type?: undefined;
33
+ default?: undefined;
34
+ } | {
35
+ type: any;
36
+ default: string | number | boolean | {
37
+ [key: string]: any;
38
+ } | import("src/_utils/props").RequestParams | Events;
39
+ };
40
+ width: {
41
+ type?: undefined;
42
+ default?: undefined;
43
+ } | {
44
+ type: any;
45
+ default: string | number | boolean | {
46
+ [key: string]: any;
47
+ } | import("src/_utils/props").RequestParams | Events;
48
+ };
49
+ height: {
50
+ type?: undefined;
51
+ default?: undefined;
52
+ } | {
53
+ type: any;
54
+ default: string | number | boolean | {
55
+ [key: string]: any;
56
+ } | import("src/_utils/props").RequestParams | Events;
57
+ };
58
+ position: {
59
+ type?: undefined;
60
+ default?: undefined;
61
+ } | {
62
+ type: any;
63
+ default: string | number | boolean | {
64
+ [key: string]: any;
65
+ } | import("src/_utils/props").RequestParams | Events;
66
+ };
67
+ top: {
68
+ type?: undefined;
69
+ default?: undefined;
70
+ } | {
71
+ type: any;
72
+ default: string | number | boolean | {
73
+ [key: string]: any;
74
+ } | import("src/_utils/props").RequestParams | Events;
75
+ };
76
+ left: {
77
+ type?: undefined;
78
+ default?: undefined;
79
+ } | {
80
+ type: any;
81
+ default: string | number | boolean | {
82
+ [key: string]: any;
83
+ } | import("src/_utils/props").RequestParams | Events;
84
+ };
85
+ zIndex: {
86
+ type?: undefined;
87
+ default?: undefined;
88
+ } | {
89
+ type: any;
90
+ default: string | number | boolean | {
91
+ [key: string]: any;
92
+ } | import("src/_utils/props").RequestParams | Events;
93
+ };
94
+ rotate: {
95
+ type?: undefined;
96
+ default?: undefined;
97
+ } | {
98
+ type: any;
99
+ default: string | number | boolean | {
100
+ [key: string]: any;
101
+ } | import("src/_utils/props").RequestParams | Events;
102
+ };
103
+ isShow: {
104
+ type?: undefined;
105
+ default?: undefined;
106
+ } | {
107
+ type: any;
108
+ default: string | number | boolean | {
109
+ [key: string]: any;
110
+ } | import("src/_utils/props").RequestParams | Events;
111
+ };
112
+ isRender: {
113
+ type?: undefined;
114
+ default?: undefined;
115
+ } | {
116
+ type: any;
117
+ default: string | number | boolean | {
118
+ [key: string]: any;
119
+ } | import("src/_utils/props").RequestParams | Events;
120
+ };
121
+ isRequestData: {
122
+ type?: undefined;
123
+ default?: undefined;
124
+ } | {
125
+ type: any;
126
+ default: string | number | boolean | {
127
+ [key: string]: any;
128
+ } | import("src/_utils/props").RequestParams | Events;
129
+ };
130
+ requestUrl: {
131
+ type?: undefined;
132
+ default?: undefined;
133
+ } | {
134
+ type: any;
135
+ default: string | number | boolean | {
136
+ [key: string]: any;
137
+ } | import("src/_utils/props").RequestParams | Events;
138
+ };
139
+ requestMethod: {
140
+ type?: undefined;
141
+ default?: undefined;
142
+ } | {
143
+ type: any;
144
+ default: string | number | boolean | {
145
+ [key: string]: any;
146
+ } | import("src/_utils/props").RequestParams | Events;
147
+ };
148
+ requestHeaders: {
149
+ type?: undefined;
150
+ default?: undefined;
151
+ } | {
152
+ type: any;
153
+ default: string | number | boolean | {
154
+ [key: string]: any;
155
+ } | import("src/_utils/props").RequestParams | Events;
156
+ };
157
+ isOpenRequestTimer: {
158
+ type?: undefined;
159
+ default?: undefined;
160
+ } | {
161
+ type: any;
162
+ default: string | number | boolean | {
163
+ [key: string]: any;
164
+ } | import("src/_utils/props").RequestParams | Events;
165
+ };
166
+ requestInterval: {
167
+ type?: undefined;
168
+ default?: undefined;
169
+ } | {
170
+ type: any;
171
+ default: string | number | boolean | {
172
+ [key: string]: any;
173
+ } | import("src/_utils/props").RequestParams | Events;
174
+ };
175
+ requestParams: {
176
+ type?: undefined;
177
+ default?: undefined;
178
+ } | {
179
+ type: any;
180
+ default: string | number | boolean | {
181
+ [key: string]: any;
182
+ } | import("src/_utils/props").RequestParams | Events;
183
+ };
184
+ events: {
185
+ type?: undefined;
186
+ default?: undefined;
187
+ } | {
188
+ type: any;
189
+ default: string | number | boolean | {
190
+ [key: string]: any;
191
+ } | import("src/_utils/props").RequestParams | Events;
192
+ };
193
+ }, {
194
+ style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
195
+ click: () => void;
196
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
197
+ id?: unknown;
198
+ name?: unknown;
199
+ keyName?: unknown;
200
+ type?: unknown;
201
+ width?: unknown;
202
+ height?: unknown;
203
+ position?: unknown;
204
+ top?: unknown;
205
+ left?: unknown;
206
+ zIndex?: unknown;
207
+ rotate?: unknown;
208
+ isShow?: unknown;
209
+ isRender?: unknown;
210
+ isRequestData?: unknown;
211
+ requestUrl?: unknown;
212
+ requestMethod?: unknown;
213
+ requestHeaders?: unknown;
214
+ isOpenRequestTimer?: unknown;
215
+ requestInterval?: unknown;
216
+ requestParams?: unknown;
217
+ events?: unknown;
218
+ } & {} & {
219
+ type?: string | number | boolean | {
220
+ [key: string]: any;
221
+ };
222
+ id?: string | number | boolean | {
223
+ [key: string]: any;
224
+ };
225
+ name?: string | number | boolean | {
226
+ [key: string]: any;
227
+ };
228
+ keyName?: string | number | boolean | {
229
+ [key: string]: any;
230
+ };
231
+ width?: string | number | boolean | {
232
+ [key: string]: any;
233
+ };
234
+ height?: string | number | boolean | {
235
+ [key: string]: any;
236
+ };
237
+ position?: string | number | boolean | {
238
+ [key: string]: any;
239
+ };
240
+ top?: string | number | boolean | {
241
+ [key: string]: any;
242
+ };
243
+ left?: string | number | boolean | {
244
+ [key: string]: any;
245
+ };
246
+ zIndex?: string | number | boolean | {
247
+ [key: string]: any;
248
+ };
249
+ rotate?: string | number | boolean | {
250
+ [key: string]: any;
251
+ };
252
+ isShow?: string | number | boolean | {
253
+ [key: string]: any;
254
+ };
255
+ isRender?: string | number | boolean | {
256
+ [key: string]: any;
257
+ };
258
+ isRequestData?: string | number | boolean | {
259
+ [key: string]: any;
260
+ };
261
+ requestUrl?: string | number | boolean | {
262
+ [key: string]: any;
263
+ };
264
+ requestMethod?: string | number | boolean | {
265
+ [key: string]: any;
266
+ };
267
+ requestHeaders?: string | number | boolean | {
268
+ [key: string]: any;
269
+ };
270
+ isOpenRequestTimer?: string | number | boolean | {
271
+ [key: string]: any;
272
+ };
273
+ requestInterval?: string | number | boolean | {
274
+ [key: string]: any;
275
+ };
276
+ requestParams?: string | number | boolean | {
277
+ [key: string]: any;
278
+ };
279
+ events?: string | number | boolean | {
280
+ [key: string]: any;
281
+ };
282
+ }>, {}>;
283
+ export default _default;
@@ -0,0 +1,3 @@
1
+ export declare const EcanButton: 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 EcanButton;
3
+ export * from './props';
@@ -0,0 +1,196 @@
1
+ import { Props } from '../../_utils/props';
2
+ export interface ButtonProps extends Props {
3
+ }
4
+ export declare const buttonProps: ButtonProps;
5
+ export declare const buttonComponentProps: {
6
+ id: {
7
+ type?: undefined;
8
+ default?: undefined;
9
+ } | {
10
+ type: any;
11
+ default: string | number | boolean | {
12
+ [key: string]: any;
13
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
14
+ };
15
+ name: {
16
+ type?: undefined;
17
+ default?: undefined;
18
+ } | {
19
+ type: any;
20
+ default: string | number | boolean | {
21
+ [key: string]: any;
22
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
23
+ };
24
+ keyName: {
25
+ type?: undefined;
26
+ default?: undefined;
27
+ } | {
28
+ type: any;
29
+ default: string | number | boolean | {
30
+ [key: string]: any;
31
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
32
+ };
33
+ type: {
34
+ type?: undefined;
35
+ default?: undefined;
36
+ } | {
37
+ type: any;
38
+ default: string | number | boolean | {
39
+ [key: string]: any;
40
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
41
+ };
42
+ width: {
43
+ type?: undefined;
44
+ default?: undefined;
45
+ } | {
46
+ type: any;
47
+ default: string | number | boolean | {
48
+ [key: string]: any;
49
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
50
+ };
51
+ height: {
52
+ type?: undefined;
53
+ default?: undefined;
54
+ } | {
55
+ type: any;
56
+ default: string | number | boolean | {
57
+ [key: string]: any;
58
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
59
+ };
60
+ position: {
61
+ type?: undefined;
62
+ default?: undefined;
63
+ } | {
64
+ type: any;
65
+ default: string | number | boolean | {
66
+ [key: string]: any;
67
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
68
+ };
69
+ top: {
70
+ type?: undefined;
71
+ default?: undefined;
72
+ } | {
73
+ type: any;
74
+ default: string | number | boolean | {
75
+ [key: string]: any;
76
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
77
+ };
78
+ left: {
79
+ type?: undefined;
80
+ default?: undefined;
81
+ } | {
82
+ type: any;
83
+ default: string | number | boolean | {
84
+ [key: string]: any;
85
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
86
+ };
87
+ zIndex: {
88
+ type?: undefined;
89
+ default?: undefined;
90
+ } | {
91
+ type: any;
92
+ default: string | number | boolean | {
93
+ [key: string]: any;
94
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
95
+ };
96
+ rotate: {
97
+ type?: undefined;
98
+ default?: undefined;
99
+ } | {
100
+ type: any;
101
+ default: string | number | boolean | {
102
+ [key: string]: any;
103
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
104
+ };
105
+ isShow: {
106
+ type?: undefined;
107
+ default?: undefined;
108
+ } | {
109
+ type: any;
110
+ default: string | number | boolean | {
111
+ [key: string]: any;
112
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
113
+ };
114
+ isRender: {
115
+ type?: undefined;
116
+ default?: undefined;
117
+ } | {
118
+ type: any;
119
+ default: string | number | boolean | {
120
+ [key: string]: any;
121
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
122
+ };
123
+ isRequestData: {
124
+ type?: undefined;
125
+ default?: undefined;
126
+ } | {
127
+ type: any;
128
+ default: string | number | boolean | {
129
+ [key: string]: any;
130
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
131
+ };
132
+ requestUrl: {
133
+ type?: undefined;
134
+ default?: undefined;
135
+ } | {
136
+ type: any;
137
+ default: string | number | boolean | {
138
+ [key: string]: any;
139
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
140
+ };
141
+ requestMethod: {
142
+ type?: undefined;
143
+ default?: undefined;
144
+ } | {
145
+ type: any;
146
+ default: string | number | boolean | {
147
+ [key: string]: any;
148
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
149
+ };
150
+ requestHeaders: {
151
+ type?: undefined;
152
+ default?: undefined;
153
+ } | {
154
+ type: any;
155
+ default: string | number | boolean | {
156
+ [key: string]: any;
157
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
158
+ };
159
+ isOpenRequestTimer: {
160
+ type?: undefined;
161
+ default?: undefined;
162
+ } | {
163
+ type: any;
164
+ default: string | number | boolean | {
165
+ [key: string]: any;
166
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
167
+ };
168
+ requestInterval: {
169
+ type?: undefined;
170
+ default?: undefined;
171
+ } | {
172
+ type: any;
173
+ default: string | number | boolean | {
174
+ [key: string]: any;
175
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
176
+ };
177
+ requestParams: {
178
+ type?: undefined;
179
+ default?: undefined;
180
+ } | {
181
+ type: any;
182
+ default: string | number | boolean | {
183
+ [key: string]: any;
184
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
185
+ };
186
+ events: {
187
+ type?: undefined;
188
+ default?: undefined;
189
+ } | {
190
+ type: any;
191
+ default: string | number | boolean | {
192
+ [key: string]: any;
193
+ } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
194
+ };
195
+ };
196
+ export declare const buttonEvents: string[];