@ecan-bi/datav 1.5.96 → 1.6.1
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 +7955 -6464
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +62 -62
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +2 -2
- package/types/graph/boxplot/Boxplot.vue.d.ts +1224 -0
- package/types/graph/boxplot/index.d.ts +1225 -0
- package/types/graph/boxplot/props.d.ts +759 -0
- package/types/graph/budget/Budget.vue.d.ts +1377 -0
- package/types/graph/budget/index.d.ts +1377 -0
- package/types/graph/budget/props.d.ts +734 -0
- package/types/graph/gauge/Gauge.vue.d.ts +18 -12
- package/types/graph/gauge/index.d.ts +18 -12
- package/types/graph/gauge/props.d.ts +5 -5
- package/types/graph/index.d.ts +2 -0
- package/types/text/text/Text.vue.d.ts +8 -0
- package/types/text/text/index.d.ts +8 -0
- package/types/text/text/props.d.ts +5 -0
|
@@ -11,10 +11,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
11
11
|
[key: string]: any;
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
|
-
graphicType: {
|
|
15
|
-
type?: import("vue").PropType<string>;
|
|
16
|
-
default?: string;
|
|
17
|
-
};
|
|
18
14
|
progressWidth: {
|
|
19
15
|
type?: import("vue").PropType<number>;
|
|
20
16
|
default?: number;
|
|
@@ -151,6 +147,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
151
147
|
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
152
148
|
default?: "left" | "center" | "right";
|
|
153
149
|
};
|
|
150
|
+
warningRule: {
|
|
151
|
+
type?: import("vue").PropType<string>;
|
|
152
|
+
default?: string;
|
|
153
|
+
};
|
|
154
154
|
id: {
|
|
155
155
|
type?: import("vue").PropType<string>;
|
|
156
156
|
default?: string;
|
|
@@ -338,7 +338,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
338
338
|
show: boolean;
|
|
339
339
|
width: number;
|
|
340
340
|
itemStyle: {
|
|
341
|
-
color:
|
|
341
|
+
color: any;
|
|
342
342
|
};
|
|
343
343
|
};
|
|
344
344
|
axisLine: {
|
|
@@ -361,22 +361,28 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
361
361
|
distance: number;
|
|
362
362
|
color: string;
|
|
363
363
|
fontSize: string;
|
|
364
|
-
formatter: string;
|
|
364
|
+
formatter: (value: any) => string;
|
|
365
365
|
};
|
|
366
366
|
anchor: {
|
|
367
367
|
show: boolean;
|
|
368
368
|
showAbove: boolean;
|
|
369
369
|
size: number;
|
|
370
370
|
itemStyle: {
|
|
371
|
+
borderColor: any;
|
|
371
372
|
borderWidth: number;
|
|
372
373
|
};
|
|
373
374
|
};
|
|
375
|
+
pointer: {
|
|
376
|
+
itemStyle: {
|
|
377
|
+
color: any;
|
|
378
|
+
};
|
|
379
|
+
};
|
|
374
380
|
detail: {
|
|
375
381
|
valueAnimation: boolean;
|
|
376
382
|
fontSize: string;
|
|
377
383
|
offsetCenter: (string | number)[];
|
|
378
|
-
formatter: string;
|
|
379
|
-
color:
|
|
384
|
+
formatter: (value: any) => string;
|
|
385
|
+
color: any;
|
|
380
386
|
};
|
|
381
387
|
min: number;
|
|
382
388
|
max: number;
|
|
@@ -405,10 +411,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
405
411
|
[key: string]: any;
|
|
406
412
|
};
|
|
407
413
|
};
|
|
408
|
-
graphicType: {
|
|
409
|
-
type?: import("vue").PropType<string>;
|
|
410
|
-
default?: string;
|
|
411
|
-
};
|
|
412
414
|
progressWidth: {
|
|
413
415
|
type?: import("vue").PropType<number>;
|
|
414
416
|
default?: number;
|
|
@@ -545,6 +547,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
545
547
|
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
546
548
|
default?: "left" | "center" | "right";
|
|
547
549
|
};
|
|
550
|
+
warningRule: {
|
|
551
|
+
type?: import("vue").PropType<string>;
|
|
552
|
+
default?: string;
|
|
553
|
+
};
|
|
548
554
|
id: {
|
|
549
555
|
type?: import("vue").PropType<string>;
|
|
550
556
|
default?: string;
|
|
@@ -11,10 +11,6 @@ export declare const EcanGauge: import("../../utils/withInstall").SFCWithInstall
|
|
|
11
11
|
[key: string]: any;
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
|
-
graphicType: {
|
|
15
|
-
type?: import("vue").PropType<string>;
|
|
16
|
-
default?: string;
|
|
17
|
-
};
|
|
18
14
|
progressWidth: {
|
|
19
15
|
type?: import("vue").PropType<number>;
|
|
20
16
|
default?: number;
|
|
@@ -151,6 +147,10 @@ export declare const EcanGauge: import("../../utils/withInstall").SFCWithInstall
|
|
|
151
147
|
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
152
148
|
default?: "left" | "center" | "right";
|
|
153
149
|
};
|
|
150
|
+
warningRule: {
|
|
151
|
+
type?: import("vue").PropType<string>;
|
|
152
|
+
default?: string;
|
|
153
|
+
};
|
|
154
154
|
id: {
|
|
155
155
|
type?: import("vue").PropType<string>;
|
|
156
156
|
default?: string;
|
|
@@ -338,7 +338,7 @@ export declare const EcanGauge: import("../../utils/withInstall").SFCWithInstall
|
|
|
338
338
|
show: boolean;
|
|
339
339
|
width: number;
|
|
340
340
|
itemStyle: {
|
|
341
|
-
color:
|
|
341
|
+
color: any;
|
|
342
342
|
};
|
|
343
343
|
};
|
|
344
344
|
axisLine: {
|
|
@@ -361,22 +361,28 @@ export declare const EcanGauge: import("../../utils/withInstall").SFCWithInstall
|
|
|
361
361
|
distance: number;
|
|
362
362
|
color: string;
|
|
363
363
|
fontSize: string;
|
|
364
|
-
formatter: string;
|
|
364
|
+
formatter: (value: any) => string;
|
|
365
365
|
};
|
|
366
366
|
anchor: {
|
|
367
367
|
show: boolean;
|
|
368
368
|
showAbove: boolean;
|
|
369
369
|
size: number;
|
|
370
370
|
itemStyle: {
|
|
371
|
+
borderColor: any;
|
|
371
372
|
borderWidth: number;
|
|
372
373
|
};
|
|
373
374
|
};
|
|
375
|
+
pointer: {
|
|
376
|
+
itemStyle: {
|
|
377
|
+
color: any;
|
|
378
|
+
};
|
|
379
|
+
};
|
|
374
380
|
detail: {
|
|
375
381
|
valueAnimation: boolean;
|
|
376
382
|
fontSize: string;
|
|
377
383
|
offsetCenter: (string | number)[];
|
|
378
|
-
formatter: string;
|
|
379
|
-
color:
|
|
384
|
+
formatter: (value: any) => string;
|
|
385
|
+
color: any;
|
|
380
386
|
};
|
|
381
387
|
min: number;
|
|
382
388
|
max: number;
|
|
@@ -405,10 +411,6 @@ export declare const EcanGauge: import("../../utils/withInstall").SFCWithInstall
|
|
|
405
411
|
[key: string]: any;
|
|
406
412
|
};
|
|
407
413
|
};
|
|
408
|
-
graphicType: {
|
|
409
|
-
type?: import("vue").PropType<string>;
|
|
410
|
-
default?: string;
|
|
411
|
-
};
|
|
412
414
|
progressWidth: {
|
|
413
415
|
type?: import("vue").PropType<number>;
|
|
414
416
|
default?: number;
|
|
@@ -545,6 +547,10 @@ export declare const EcanGauge: import("../../utils/withInstall").SFCWithInstall
|
|
|
545
547
|
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
546
548
|
default?: "left" | "center" | "right";
|
|
547
549
|
};
|
|
550
|
+
warningRule: {
|
|
551
|
+
type?: import("vue").PropType<string>;
|
|
552
|
+
default?: string;
|
|
553
|
+
};
|
|
548
554
|
id: {
|
|
549
555
|
type?: import("vue").PropType<string>;
|
|
550
556
|
default?: string;
|
|
@@ -4,7 +4,6 @@ export interface GaugeProps extends Props {
|
|
|
4
4
|
graphicConfig: {
|
|
5
5
|
[key: string]: any;
|
|
6
6
|
};
|
|
7
|
-
graphicType: string;
|
|
8
7
|
progressWidth: number;
|
|
9
8
|
progressColor: string;
|
|
10
9
|
axisLabelFontSize: string;
|
|
@@ -39,6 +38,7 @@ export interface GaugeProps extends Props {
|
|
|
39
38
|
titleColor: string;
|
|
40
39
|
fontWeight: number;
|
|
41
40
|
textAlign: 'left' | 'right' | 'center';
|
|
41
|
+
warningRule: string;
|
|
42
42
|
}
|
|
43
43
|
export declare const gaugeProps: GaugeProps;
|
|
44
44
|
export declare const gaugeComponentProps: {
|
|
@@ -54,10 +54,6 @@ export declare const gaugeComponentProps: {
|
|
|
54
54
|
[key: string]: any;
|
|
55
55
|
};
|
|
56
56
|
};
|
|
57
|
-
graphicType: {
|
|
58
|
-
type?: import("vue").PropType<string>;
|
|
59
|
-
default?: string;
|
|
60
|
-
};
|
|
61
57
|
progressWidth: {
|
|
62
58
|
type?: import("vue").PropType<number>;
|
|
63
59
|
default?: number;
|
|
@@ -194,6 +190,10 @@ export declare const gaugeComponentProps: {
|
|
|
194
190
|
type?: import("vue").PropType<"left" | "center" | "right">;
|
|
195
191
|
default?: "left" | "center" | "right";
|
|
196
192
|
};
|
|
193
|
+
warningRule: {
|
|
194
|
+
type?: import("vue").PropType<string>;
|
|
195
|
+
default?: string;
|
|
196
|
+
};
|
|
197
197
|
id: {
|
|
198
198
|
type?: import("vue").PropType<string>;
|
|
199
199
|
default?: string;
|
package/types/graph/index.d.ts
CHANGED
|
@@ -219,6 +219,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
219
219
|
type?: import("vue").PropType<string>;
|
|
220
220
|
default?: string;
|
|
221
221
|
};
|
|
222
|
+
associatId?: {
|
|
223
|
+
type?: import("vue").PropType<string>;
|
|
224
|
+
default?: string;
|
|
225
|
+
};
|
|
222
226
|
id: {
|
|
223
227
|
type?: import("vue").PropType<string>;
|
|
224
228
|
default?: string;
|
|
@@ -597,6 +601,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
597
601
|
type?: import("vue").PropType<string>;
|
|
598
602
|
default?: string;
|
|
599
603
|
};
|
|
604
|
+
associatId?: {
|
|
605
|
+
type?: import("vue").PropType<string>;
|
|
606
|
+
default?: string;
|
|
607
|
+
};
|
|
600
608
|
id: {
|
|
601
609
|
type?: import("vue").PropType<string>;
|
|
602
610
|
default?: string;
|
|
@@ -219,6 +219,10 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
219
219
|
type?: import("vue").PropType<string>;
|
|
220
220
|
default?: string;
|
|
221
221
|
};
|
|
222
|
+
associatId?: {
|
|
223
|
+
type?: import("vue").PropType<string>;
|
|
224
|
+
default?: string;
|
|
225
|
+
};
|
|
222
226
|
id: {
|
|
223
227
|
type?: import("vue").PropType<string>;
|
|
224
228
|
default?: string;
|
|
@@ -597,6 +601,10 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
597
601
|
type?: import("vue").PropType<string>;
|
|
598
602
|
default?: string;
|
|
599
603
|
};
|
|
604
|
+
associatId?: {
|
|
605
|
+
type?: import("vue").PropType<string>;
|
|
606
|
+
default?: string;
|
|
607
|
+
};
|
|
600
608
|
id: {
|
|
601
609
|
type?: import("vue").PropType<string>;
|
|
602
610
|
default?: string;
|
|
@@ -58,6 +58,7 @@ export interface TextProps extends Props {
|
|
|
58
58
|
isMarkDown: boolean;
|
|
59
59
|
isContentMarkDown: boolean;
|
|
60
60
|
parentId?: string;
|
|
61
|
+
associatId?: string;
|
|
61
62
|
}
|
|
62
63
|
export declare const textProps: TextProps;
|
|
63
64
|
export declare const textComponentProps: {
|
|
@@ -281,6 +282,10 @@ export declare const textComponentProps: {
|
|
|
281
282
|
type?: import("vue").PropType<string>;
|
|
282
283
|
default?: string;
|
|
283
284
|
};
|
|
285
|
+
associatId?: {
|
|
286
|
+
type?: import("vue").PropType<string>;
|
|
287
|
+
default?: string;
|
|
288
|
+
};
|
|
284
289
|
id: {
|
|
285
290
|
type?: import("vue").PropType<string>;
|
|
286
291
|
default?: string;
|