@ecan-bi/datav 1.6.40 → 1.6.42
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.
- package/dist/index.es.js +6699 -6664
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +33 -33
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +10 -3
- package/types/common/echarts/Echarts.d.ts +3 -239
- package/types/control/date-picker/DatePicker.vue.d.ts +1 -1
- package/types/control/date-picker/index.d.ts +1 -1
- package/types/control/range-picker/RangePicker.vue.d.ts +2 -2
- package/types/control/range-picker/index.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ecan-bi/datav",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.42",
|
|
4
4
|
"main": "dist/index.umd.js",
|
|
5
5
|
"module": "dist/index.es.js",
|
|
6
6
|
"types": "types/index.d.ts",
|
|
@@ -26,7 +26,14 @@
|
|
|
26
26
|
"lint:fix": "eslint --fix ./src --ext .vue,.js,.ts,.jsx,.tsx",
|
|
27
27
|
"clean": "rimraf ./dist ./types ./es ./lib",
|
|
28
28
|
"test": "jest",
|
|
29
|
-
"module": "npm run clean && npm run compile"
|
|
29
|
+
"module": "npm run clean && npm run compile",
|
|
30
|
+
"prepublishOnly": "npm run build"
|
|
31
|
+
},
|
|
32
|
+
"resolutions": {
|
|
33
|
+
"@microsoft/api-extractor": "7.38.4"
|
|
34
|
+
},
|
|
35
|
+
"overrides": {
|
|
36
|
+
"@microsoft/api-extractor": "7.38.4"
|
|
30
37
|
},
|
|
31
38
|
"devDependencies": {
|
|
32
39
|
"@sucrase/jest-plugin": "^2.2.0",
|
|
@@ -78,7 +85,7 @@
|
|
|
78
85
|
},
|
|
79
86
|
"dependencies": {
|
|
80
87
|
"@ecan-bi/indicator-library": "^1.1.1",
|
|
81
|
-
"@ecan-bi/tools": "^1.0.
|
|
88
|
+
"@ecan-bi/tools": "^1.0.76",
|
|
82
89
|
"@microsoft/fetch-event-source": "2.0.1",
|
|
83
90
|
"@types/big.js": "^6.1.6",
|
|
84
91
|
"ant-design-vue": "^3.1.1",
|
|
@@ -12,129 +12,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
12
12
|
theme: {
|
|
13
13
|
type: PropType<Theme>;
|
|
14
14
|
};
|
|
15
|
-
initOptions: PropType<
|
|
16
|
-
locale?: string | {
|
|
17
|
-
time: {
|
|
18
|
-
month: string[];
|
|
19
|
-
monthAbbr: string[];
|
|
20
|
-
dayOfWeek: string[];
|
|
21
|
-
dayOfWeekAbbr: string[];
|
|
22
|
-
};
|
|
23
|
-
legend: {
|
|
24
|
-
selector: {
|
|
25
|
-
all: string;
|
|
26
|
-
inverse: string;
|
|
27
|
-
};
|
|
28
|
-
};
|
|
29
|
-
toolbox: {
|
|
30
|
-
brush: {
|
|
31
|
-
title: {
|
|
32
|
-
rect: string;
|
|
33
|
-
polygon: string;
|
|
34
|
-
lineX: string;
|
|
35
|
-
lineY: string;
|
|
36
|
-
keep: string;
|
|
37
|
-
clear: string;
|
|
38
|
-
};
|
|
39
|
-
};
|
|
40
|
-
dataView: {
|
|
41
|
-
title: string;
|
|
42
|
-
lang: string[];
|
|
43
|
-
};
|
|
44
|
-
dataZoom: {
|
|
45
|
-
title: {
|
|
46
|
-
zoom: string;
|
|
47
|
-
back: string;
|
|
48
|
-
};
|
|
49
|
-
};
|
|
50
|
-
magicType: {
|
|
51
|
-
title: {
|
|
52
|
-
line: string;
|
|
53
|
-
bar: string;
|
|
54
|
-
stack: string;
|
|
55
|
-
tiled: string;
|
|
56
|
-
};
|
|
57
|
-
};
|
|
58
|
-
restore: {
|
|
59
|
-
title: string;
|
|
60
|
-
};
|
|
61
|
-
saveAsImage: {
|
|
62
|
-
title: string;
|
|
63
|
-
lang: string[];
|
|
64
|
-
};
|
|
65
|
-
};
|
|
66
|
-
series: {
|
|
67
|
-
typeNames: {
|
|
68
|
-
pie: string;
|
|
69
|
-
bar: string;
|
|
70
|
-
line: string;
|
|
71
|
-
scatter: string;
|
|
72
|
-
effectScatter: string;
|
|
73
|
-
radar: string;
|
|
74
|
-
tree: string;
|
|
75
|
-
treemap: string;
|
|
76
|
-
boxplot: string;
|
|
77
|
-
candlestick: string;
|
|
78
|
-
k: string;
|
|
79
|
-
heatmap: string;
|
|
80
|
-
map: string;
|
|
81
|
-
parallel: string;
|
|
82
|
-
lines: string;
|
|
83
|
-
graph: string;
|
|
84
|
-
sankey: string;
|
|
85
|
-
funnel: string;
|
|
86
|
-
gauge: string;
|
|
87
|
-
pictorialBar: string;
|
|
88
|
-
themeRiver: string;
|
|
89
|
-
sunburst: string;
|
|
90
|
-
};
|
|
91
|
-
};
|
|
92
|
-
aria: {
|
|
93
|
-
general: {
|
|
94
|
-
withTitle: string;
|
|
95
|
-
withoutTitle: string;
|
|
96
|
-
};
|
|
97
|
-
series: {
|
|
98
|
-
single: {
|
|
99
|
-
prefix: string;
|
|
100
|
-
withName: string;
|
|
101
|
-
withoutName: string;
|
|
102
|
-
};
|
|
103
|
-
multiple: {
|
|
104
|
-
prefix: string;
|
|
105
|
-
withName: string;
|
|
106
|
-
withoutName: string;
|
|
107
|
-
separator: {
|
|
108
|
-
middle: string;
|
|
109
|
-
end: string;
|
|
110
|
-
};
|
|
111
|
-
};
|
|
112
|
-
};
|
|
113
|
-
data: {
|
|
114
|
-
allData: string;
|
|
115
|
-
partialData: string;
|
|
116
|
-
withName: string;
|
|
117
|
-
withoutName: string;
|
|
118
|
-
separator: {
|
|
119
|
-
middle: string;
|
|
120
|
-
end: string;
|
|
121
|
-
};
|
|
122
|
-
};
|
|
123
|
-
};
|
|
124
|
-
};
|
|
125
|
-
renderer?: "canvas" | "svg";
|
|
126
|
-
devicePixelRatio?: number;
|
|
127
|
-
useDirtyRect?: boolean;
|
|
128
|
-
useCoarsePointer?: boolean;
|
|
129
|
-
pointerSize?: number;
|
|
130
|
-
ssr?: boolean;
|
|
131
|
-
width?: string | number;
|
|
132
|
-
height?: string | number;
|
|
133
|
-
}>;
|
|
15
|
+
initOptions: PropType<import("echarts/types/dist/shared").EChartsInitOpts>;
|
|
134
16
|
updateOptions: PropType<UpdateOptions>;
|
|
135
17
|
group: StringConstructor;
|
|
136
18
|
manualUpdate: BooleanConstructor;
|
|
137
19
|
}, {
|
|
20
|
+
dispose: () => void;
|
|
138
21
|
resize: (opts?: import("echarts/types/dist/shared").ResizeOpts) => void;
|
|
139
22
|
getWidth: () => number;
|
|
140
23
|
getHeight: () => number;
|
|
@@ -277,7 +160,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
277
160
|
}) => void;
|
|
278
161
|
clear: () => void;
|
|
279
162
|
isDisposed: () => boolean;
|
|
280
|
-
dispose: () => void;
|
|
281
163
|
chart: import("vue").ShallowRef<import("echarts/types/dist/shared").EChartsType>;
|
|
282
164
|
root: import("vue").ShallowRef<HTMLElement>;
|
|
283
165
|
setOption: (option: Option, updateOptions?: UpdateOptions) => void;
|
|
@@ -292,125 +174,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
292
174
|
theme: {
|
|
293
175
|
type: PropType<Theme>;
|
|
294
176
|
};
|
|
295
|
-
initOptions: PropType<
|
|
296
|
-
locale?: string | {
|
|
297
|
-
time: {
|
|
298
|
-
month: string[];
|
|
299
|
-
monthAbbr: string[];
|
|
300
|
-
dayOfWeek: string[];
|
|
301
|
-
dayOfWeekAbbr: string[];
|
|
302
|
-
};
|
|
303
|
-
legend: {
|
|
304
|
-
selector: {
|
|
305
|
-
all: string;
|
|
306
|
-
inverse: string;
|
|
307
|
-
};
|
|
308
|
-
};
|
|
309
|
-
toolbox: {
|
|
310
|
-
brush: {
|
|
311
|
-
title: {
|
|
312
|
-
rect: string;
|
|
313
|
-
polygon: string;
|
|
314
|
-
lineX: string;
|
|
315
|
-
lineY: string;
|
|
316
|
-
keep: string;
|
|
317
|
-
clear: string;
|
|
318
|
-
};
|
|
319
|
-
};
|
|
320
|
-
dataView: {
|
|
321
|
-
title: string;
|
|
322
|
-
lang: string[];
|
|
323
|
-
};
|
|
324
|
-
dataZoom: {
|
|
325
|
-
title: {
|
|
326
|
-
zoom: string;
|
|
327
|
-
back: string;
|
|
328
|
-
};
|
|
329
|
-
};
|
|
330
|
-
magicType: {
|
|
331
|
-
title: {
|
|
332
|
-
line: string;
|
|
333
|
-
bar: string;
|
|
334
|
-
stack: string;
|
|
335
|
-
tiled: string;
|
|
336
|
-
};
|
|
337
|
-
};
|
|
338
|
-
restore: {
|
|
339
|
-
title: string;
|
|
340
|
-
};
|
|
341
|
-
saveAsImage: {
|
|
342
|
-
title: string;
|
|
343
|
-
lang: string[];
|
|
344
|
-
};
|
|
345
|
-
};
|
|
346
|
-
series: {
|
|
347
|
-
typeNames: {
|
|
348
|
-
pie: string;
|
|
349
|
-
bar: string;
|
|
350
|
-
line: string;
|
|
351
|
-
scatter: string;
|
|
352
|
-
effectScatter: string;
|
|
353
|
-
radar: string;
|
|
354
|
-
tree: string;
|
|
355
|
-
treemap: string;
|
|
356
|
-
boxplot: string;
|
|
357
|
-
candlestick: string;
|
|
358
|
-
k: string;
|
|
359
|
-
heatmap: string;
|
|
360
|
-
map: string;
|
|
361
|
-
parallel: string;
|
|
362
|
-
lines: string;
|
|
363
|
-
graph: string;
|
|
364
|
-
sankey: string;
|
|
365
|
-
funnel: string;
|
|
366
|
-
gauge: string;
|
|
367
|
-
pictorialBar: string;
|
|
368
|
-
themeRiver: string;
|
|
369
|
-
sunburst: string;
|
|
370
|
-
};
|
|
371
|
-
};
|
|
372
|
-
aria: {
|
|
373
|
-
general: {
|
|
374
|
-
withTitle: string;
|
|
375
|
-
withoutTitle: string;
|
|
376
|
-
};
|
|
377
|
-
series: {
|
|
378
|
-
single: {
|
|
379
|
-
prefix: string;
|
|
380
|
-
withName: string;
|
|
381
|
-
withoutName: string;
|
|
382
|
-
};
|
|
383
|
-
multiple: {
|
|
384
|
-
prefix: string;
|
|
385
|
-
withName: string;
|
|
386
|
-
withoutName: string;
|
|
387
|
-
separator: {
|
|
388
|
-
middle: string;
|
|
389
|
-
end: string;
|
|
390
|
-
};
|
|
391
|
-
};
|
|
392
|
-
};
|
|
393
|
-
data: {
|
|
394
|
-
allData: string;
|
|
395
|
-
partialData: string;
|
|
396
|
-
withName: string;
|
|
397
|
-
withoutName: string;
|
|
398
|
-
separator: {
|
|
399
|
-
middle: string;
|
|
400
|
-
end: string;
|
|
401
|
-
};
|
|
402
|
-
};
|
|
403
|
-
};
|
|
404
|
-
};
|
|
405
|
-
renderer?: "canvas" | "svg";
|
|
406
|
-
devicePixelRatio?: number;
|
|
407
|
-
useDirtyRect?: boolean;
|
|
408
|
-
useCoarsePointer?: boolean;
|
|
409
|
-
pointerSize?: number;
|
|
410
|
-
ssr?: boolean;
|
|
411
|
-
width?: string | number;
|
|
412
|
-
height?: string | number;
|
|
413
|
-
}>;
|
|
177
|
+
initOptions: PropType<import("echarts/types/dist/shared").EChartsInitOpts>;
|
|
414
178
|
updateOptions: PropType<UpdateOptions>;
|
|
415
179
|
group: StringConstructor;
|
|
416
180
|
manualUpdate: BooleanConstructor;
|
|
@@ -206,7 +206,7 @@ export declare const EcanDatePicker: import('../../utils/withInstall').SFCWithIn
|
|
|
206
206
|
(value: number): import("dayjs").Dayjs;
|
|
207
207
|
};
|
|
208
208
|
day: {
|
|
209
|
-
():
|
|
209
|
+
(): 0 | 1 | 2 | 3 | 6 | 5 | 4;
|
|
210
210
|
(value: number): import("dayjs").Dayjs;
|
|
211
211
|
};
|
|
212
212
|
hour: {
|
|
@@ -226,7 +226,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
226
226
|
(value: number): dayjs.Dayjs;
|
|
227
227
|
};
|
|
228
228
|
day: {
|
|
229
|
-
():
|
|
229
|
+
(): 0 | 1 | 2 | 3 | 6 | 5 | 4;
|
|
230
230
|
(value: number): dayjs.Dayjs;
|
|
231
231
|
};
|
|
232
232
|
hour: {
|
|
@@ -309,7 +309,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
309
309
|
(value: number): dayjs.Dayjs;
|
|
310
310
|
};
|
|
311
311
|
day: {
|
|
312
|
-
():
|
|
312
|
+
(): 0 | 1 | 2 | 3 | 6 | 5 | 4;
|
|
313
313
|
(value: number): dayjs.Dayjs;
|
|
314
314
|
};
|
|
315
315
|
hour: {
|
|
@@ -224,7 +224,7 @@ export declare const EcanRangePicker: import("../../utils/withInstall").SFCWithI
|
|
|
224
224
|
(value: number): import("dayjs").Dayjs;
|
|
225
225
|
};
|
|
226
226
|
day: {
|
|
227
|
-
():
|
|
227
|
+
(): 0 | 1 | 2 | 3 | 6 | 5 | 4;
|
|
228
228
|
(value: number): import("dayjs").Dayjs;
|
|
229
229
|
};
|
|
230
230
|
hour: {
|
|
@@ -307,7 +307,7 @@ export declare const EcanRangePicker: import("../../utils/withInstall").SFCWithI
|
|
|
307
307
|
(value: number): import("dayjs").Dayjs;
|
|
308
308
|
};
|
|
309
309
|
day: {
|
|
310
|
-
():
|
|
310
|
+
(): 0 | 1 | 2 | 3 | 6 | 5 | 4;
|
|
311
311
|
(value: number): import("dayjs").Dayjs;
|
|
312
312
|
};
|
|
313
313
|
hour: {
|