g-ui-web 0.8.23 → 0.9.0

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.
@@ -12,6 +12,17 @@ declare const GPieLevel: ({
12
12
  type: StringConstructor;
13
13
  default: string;
14
14
  };
15
+ isMarkLine: {
16
+ type: BooleanConstructor;
17
+ default: boolean;
18
+ };
19
+ markLineData: {
20
+ type: ArrayConstructor;
21
+ default: {
22
+ x: string;
23
+ y: string;
24
+ }[][];
25
+ };
15
26
  dbOptions: {
16
27
  type: ObjectConstructor;
17
28
  default: {};
@@ -23,6 +34,8 @@ declare const GPieLevel: ({
23
34
  size: string;
24
35
  options: Record<string, any>;
25
36
  dbOptions: Record<string, any>;
37
+ isMarkLine: boolean;
38
+ markLineData: unknown[];
26
39
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
27
40
  P: {};
28
41
  B: {};
@@ -43,6 +56,17 @@ declare const GPieLevel: ({
43
56
  type: StringConstructor;
44
57
  default: string;
45
58
  };
59
+ isMarkLine: {
60
+ type: BooleanConstructor;
61
+ default: boolean;
62
+ };
63
+ markLineData: {
64
+ type: ArrayConstructor;
65
+ default: {
66
+ x: string;
67
+ y: string;
68
+ }[][];
69
+ };
46
70
  dbOptions: {
47
71
  type: ObjectConstructor;
48
72
  default: {};
@@ -54,6 +78,8 @@ declare const GPieLevel: ({
54
78
  size: string;
55
79
  options: Record<string, any>;
56
80
  dbOptions: Record<string, any>;
81
+ isMarkLine: boolean;
82
+ markLineData: unknown[];
57
83
  }>;
58
84
  __isFragment?: never;
59
85
  __isTeleport?: never;
@@ -71,6 +97,17 @@ declare const GPieLevel: ({
71
97
  type: StringConstructor;
72
98
  default: string;
73
99
  };
100
+ isMarkLine: {
101
+ type: BooleanConstructor;
102
+ default: boolean;
103
+ };
104
+ markLineData: {
105
+ type: ArrayConstructor;
106
+ default: {
107
+ x: string;
108
+ y: string;
109
+ }[][];
110
+ };
74
111
  dbOptions: {
75
112
  type: ObjectConstructor;
76
113
  default: {};
@@ -82,5 +119,7 @@ declare const GPieLevel: ({
82
119
  size: string;
83
120
  options: Record<string, any>;
84
121
  dbOptions: Record<string, any>;
122
+ isMarkLine: boolean;
123
+ markLineData: unknown[];
85
124
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vue').Plugin) & Record<string, any>;
86
125
  export default GPieLevel;
@@ -1,9 +1,11 @@
1
1
  interface PieProps {
2
2
  type: string;
3
3
  size: string;
4
+ isMarkLine: boolean;
5
+ markLineData: Array<any>;
4
6
  }
5
7
  declare const getPieOptions: (options?: object, props?: PieProps) => {};
6
- declare const changePieSerise: (options?: any, props?: PieProps, dataIndex?: number) => {
8
+ declare const changePieSeries: (options?: any, props?: PieProps, dataIndex?: number) => {
7
9
  [x: string]: globalThis.Ref<any, any>;
8
10
  };
9
- export { getPieOptions, changePieSerise };
11
+ export { getPieOptions, changePieSeries };
@@ -11,6 +11,17 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
11
11
  type: StringConstructor;
12
12
  default: string;
13
13
  };
14
+ isMarkLine: {
15
+ type: BooleanConstructor;
16
+ default: boolean;
17
+ };
18
+ markLineData: {
19
+ type: ArrayConstructor;
20
+ default: {
21
+ x: string;
22
+ y: string;
23
+ }[][];
24
+ };
14
25
  dbOptions: {
15
26
  type: ObjectConstructor;
16
27
  default: {};
@@ -30,6 +41,17 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
30
41
  type: StringConstructor;
31
42
  default: string;
32
43
  };
44
+ isMarkLine: {
45
+ type: BooleanConstructor;
46
+ default: boolean;
47
+ };
48
+ markLineData: {
49
+ type: ArrayConstructor;
50
+ default: {
51
+ x: string;
52
+ y: string;
53
+ }[][];
54
+ };
33
55
  dbOptions: {
34
56
  type: ObjectConstructor;
35
57
  default: {};
@@ -39,5 +61,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
39
61
  size: string;
40
62
  options: Record<string, any>;
41
63
  dbOptions: Record<string, any>;
64
+ isMarkLine: boolean;
65
+ markLineData: unknown[];
42
66
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
43
67
  export default _default;