@ecan-bi/datav 1.2.21 → 1.2.23

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.
@@ -3,7 +3,7 @@ export interface ProportionProps extends Props {
3
3
  strokeColor: string;
4
4
  strokeLinecap: 'round' | 'square';
5
5
  trailColor: string;
6
- strokeType: 'circle' | 'dashboard';
6
+ strokeType: 'circle' | 'dashboard' | 'line';
7
7
  data: {
8
8
  [key: string]: any;
9
9
  };
@@ -16,6 +16,10 @@ export interface ProportionProps extends Props {
16
16
  lineHeight: string;
17
17
  decimalFormat: boolean;
18
18
  variableDefaultValue: string;
19
+ strokeTextShow: boolean;
20
+ gradientShow: boolean;
21
+ gradientColor: string;
22
+ gradientOffset: number;
19
23
  }
20
24
  export declare const proportionProps: ProportionProps;
21
25
  export declare const proportionComponentProps: {
@@ -32,8 +36,8 @@ export declare const proportionComponentProps: {
32
36
  default?: string;
33
37
  };
34
38
  strokeType: {
35
- type?: import("vue").PropType<"circle" | "dashboard">;
36
- default?: "circle" | "dashboard";
39
+ type?: import("vue").PropType<"line" | "circle" | "dashboard">;
40
+ default?: "line" | "circle" | "dashboard";
37
41
  };
38
42
  data: {
39
43
  type?: import("vue").PropType<{
@@ -79,6 +83,22 @@ export declare const proportionComponentProps: {
79
83
  type?: import("vue").PropType<string>;
80
84
  default?: string;
81
85
  };
86
+ strokeTextShow: {
87
+ type?: import("vue").PropType<boolean>;
88
+ default?: boolean;
89
+ };
90
+ gradientShow: {
91
+ type?: import("vue").PropType<boolean>;
92
+ default?: boolean;
93
+ };
94
+ gradientColor: {
95
+ type?: import("vue").PropType<string>;
96
+ default?: string;
97
+ };
98
+ gradientOffset: {
99
+ type?: import("vue").PropType<number>;
100
+ default?: number;
101
+ };
82
102
  id: {
83
103
  type?: import("vue").PropType<string>;
84
104
  default?: string;