g-ui-web 1.1.0 → 1.1.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.
@@ -12,6 +12,5 @@ declare const GPieLevel: ({
12
12
  description: string;
13
13
  dbOptions: Record<string, any>;
14
14
  isMarkLine: boolean;
15
- markLineData: unknown[];
16
15
  }, {}, 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>;
17
16
  export default GPieLevel;
@@ -2,12 +2,11 @@ interface PieProps {
2
2
  type: string;
3
3
  size: string;
4
4
  isMarkLine: boolean;
5
- markLineData: Array<any>;
6
5
  title: string;
7
6
  unit: string;
8
7
  }
9
8
  declare const getPieOptions: (options?: object, props?: PieProps) => {};
10
- declare const changePieSeries: (options?: any, props?: PieProps, dataIndex?: number) => {
9
+ declare const changePieSeries: (options?: any, props?: PieProps, dataIndex?: number, savedLevelIndexes?: number[]) => {
11
10
  [x: string]: globalThis.Ref<any, any>;
12
11
  };
13
12
  export { getPieOptions, changePieSeries };
@@ -19,13 +19,6 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
19
19
  type: BooleanConstructor;
20
20
  default: boolean;
21
21
  };
22
- markLineData: {
23
- type: ArrayConstructor;
24
- default: {
25
- x: string;
26
- y: string;
27
- }[][];
28
- };
29
22
  dbOptions: {
30
23
  type: ObjectConstructor;
31
24
  default: {};
@@ -39,6 +32,5 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
39
32
  description: string;
40
33
  dbOptions: Record<string, any>;
41
34
  isMarkLine: boolean;
42
- markLineData: unknown[];
43
35
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
44
36
  export default _default;