g-ui-web 0.8.24 → 0.9.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.
@@ -44,6 +44,10 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
44
44
  type: NumberConstructor;
45
45
  default: number;
46
46
  };
47
+ module: {
48
+ type: StringConstructor;
49
+ default: string;
50
+ };
47
51
  gradient: {
48
52
  type: ObjectConstructor;
49
53
  default: undefined;
@@ -52,11 +56,18 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
52
56
  type: StringConstructor;
53
57
  default: string;
54
58
  };
59
+ icon: {
60
+ type: StringConstructor;
61
+ default: string;
62
+ };
63
+ color: {
64
+ type: StringConstructor;
65
+ default: string;
66
+ };
55
67
  dbOptions: {
56
68
  type: PropType<ColumnProps>;
57
69
  default: () => {};
58
70
  require: boolean;
59
- validator(value: any): boolean;
60
71
  };
61
72
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
62
73
  ak: {
@@ -75,6 +86,10 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
75
86
  type: NumberConstructor;
76
87
  default: number;
77
88
  };
89
+ module: {
90
+ type: StringConstructor;
91
+ default: string;
92
+ };
78
93
  gradient: {
79
94
  type: ObjectConstructor;
80
95
  default: undefined;
@@ -83,18 +98,28 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
83
98
  type: StringConstructor;
84
99
  default: string;
85
100
  };
101
+ icon: {
102
+ type: StringConstructor;
103
+ default: string;
104
+ };
105
+ color: {
106
+ type: StringConstructor;
107
+ default: string;
108
+ };
86
109
  dbOptions: {
87
110
  type: PropType<ColumnProps>;
88
111
  default: () => {};
89
112
  require: boolean;
90
- validator(value: any): boolean;
91
113
  };
92
114
  }>> & Readonly<{}>, {
115
+ icon: string;
93
116
  dbOptions: ColumnProps;
94
117
  height: string;
118
+ color: string;
95
119
  zoom: number;
96
120
  radius: number;
97
121
  opacity: number;
122
+ module: string;
98
123
  gradient: Record<string, any>;
99
124
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
100
125
  export default _default;
@@ -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;