g-ui-web 1.4.52 → 1.4.53
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/lib/bar/index.d.ts +1 -0
- package/lib/bar/src/chart.d.ts +1 -1
- package/lib/bar/src/index.vue.d.ts +5 -0
- package/lib/g-ui-web.cjs +1 -1
- package/lib/g-ui-web.iife.js +1 -1
- package/lib/g-ui-web.iife.js.gz +0 -0
- package/lib/g-ui-web.js +4666 -4646
- package/lib/g-ui-web.js.gz +0 -0
- package/lib/g-ui-web.umd.cjs +1 -1
- package/lib/line/index.d.ts +1 -0
- package/lib/line/src/chart.d.ts +1 -1
- package/lib/line/src/index.vue.d.ts +5 -0
- package/lib/pie/index.d.ts +1 -0
- package/lib/pie/src/chart.d.ts +1 -1
- package/lib/pie/src/index.vue.d.ts +5 -0
- package/lib/style.css +1 -1
- package/lib/style.css.gz +0 -0
- package/package.json +1 -1
package/lib/line/index.d.ts
CHANGED
|
@@ -12,5 +12,6 @@ declare const GLine: ({
|
|
|
12
12
|
options: Record<string, any>;
|
|
13
13
|
description: string;
|
|
14
14
|
dbOptions: Record<string, any>;
|
|
15
|
+
showSaveAsImage: boolean;
|
|
15
16
|
}, {}, 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>;
|
|
16
17
|
export default GLine;
|
package/lib/line/src/chart.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const getLineOptions: (options?: object, columns?: any) => {};
|
|
1
|
+
declare const getLineOptions: (options?: object, columns?: any, showSaveAsImage?: boolean) => {};
|
|
2
2
|
export { getLineOptions };
|
|
@@ -11,6 +11,10 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
11
11
|
type: ObjectConstructor;
|
|
12
12
|
default: {};
|
|
13
13
|
};
|
|
14
|
+
showSaveAsImage: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
14
18
|
}>, {
|
|
15
19
|
props: any;
|
|
16
20
|
lineRef: any;
|
|
@@ -20,5 +24,6 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
20
24
|
options: Record<string, any>;
|
|
21
25
|
description: string;
|
|
22
26
|
dbOptions: Record<string, any>;
|
|
27
|
+
showSaveAsImage: boolean;
|
|
23
28
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
24
29
|
export default _default;
|
package/lib/pie/index.d.ts
CHANGED
|
@@ -13,5 +13,6 @@ declare const GPie: ({
|
|
|
13
13
|
options: Record<string, any>;
|
|
14
14
|
description: string;
|
|
15
15
|
dbOptions: Record<string, any>;
|
|
16
|
+
showSaveAsImage: boolean;
|
|
16
17
|
}, {}, 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
18
|
export default GPie;
|
package/lib/pie/src/chart.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const getPieOptions: (options?: object, type?: string, title?: any, unit?: any) => {};
|
|
1
|
+
declare const getPieOptions: (options?: object, type?: string, title?: any, unit?: any, showSaveAsImage?: boolean) => {};
|
|
2
2
|
export { getPieOptions };
|
|
@@ -15,6 +15,10 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
15
15
|
type: ObjectConstructor;
|
|
16
16
|
default: {};
|
|
17
17
|
};
|
|
18
|
+
showSaveAsImage: {
|
|
19
|
+
type: BooleanConstructor;
|
|
20
|
+
default: boolean;
|
|
21
|
+
};
|
|
18
22
|
}>, {
|
|
19
23
|
props: any;
|
|
20
24
|
pieRef: globalThis.Ref<null, null>;
|
|
@@ -25,5 +29,6 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
25
29
|
options: Record<string, any>;
|
|
26
30
|
description: string;
|
|
27
31
|
dbOptions: Record<string, any>;
|
|
32
|
+
showSaveAsImage: boolean;
|
|
28
33
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
29
34
|
export default _default;
|