g-ui-web 0.11.10 → 0.11.12
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/src/options.d.ts +1 -0
- package/lib/bar-compare/src/options.d.ts +5 -0
- package/lib/bar-line/src/options.d.ts +11 -0
- package/lib/calendar/index.d.ts +50 -0
- package/lib/calendar/src/index.vue.d.ts +23 -0
- package/lib/g-ui-web.js +18507 -18248
- package/lib/g-ui-web.js.gz +0 -0
- package/lib/g-ui-web.umd.cjs +68 -68
- package/lib/line/src/options.d.ts +7 -1
- package/lib/pie-distri/src/options.d.ts +4 -0
- package/lib/pie-level/src/options.d.ts +1 -0
- package/lib/radar/src/options.d.ts +3 -1
- package/lib/style.css +1 -1
- package/lib/style.css.gz +0 -0
- package/lib/target-achievement/src/options.d.ts +5 -5
- package/lib/utils/theme/config/black-gold.d.ts +15 -0
- package/lib/utils/theme/config/white-blue.d.ts +15 -0
- package/lib/utils/theme/config/white-green.d.ts +15 -0
- package/package.json +2 -1
package/lib/bar/src/options.d.ts
CHANGED
|
@@ -8,11 +8,14 @@ export declare const barOptions: (columns: any) => {
|
|
|
8
8
|
};
|
|
9
9
|
legend: {
|
|
10
10
|
trigger: string;
|
|
11
|
+
left: string;
|
|
12
|
+
top: string;
|
|
11
13
|
itemWidth: number;
|
|
12
14
|
itemHeight: number;
|
|
13
15
|
textStyle: {
|
|
14
16
|
fontSize: number;
|
|
15
17
|
lineHeight: number;
|
|
18
|
+
color: any;
|
|
16
19
|
rich: {
|
|
17
20
|
a: {
|
|
18
21
|
verticalAlign: string;
|
|
@@ -31,6 +34,7 @@ export declare const barOptions: (columns: any) => {
|
|
|
31
34
|
axisLabel: {
|
|
32
35
|
fontSize: any;
|
|
33
36
|
padding: any;
|
|
37
|
+
color: any;
|
|
34
38
|
};
|
|
35
39
|
};
|
|
36
40
|
yAxis: {
|
|
@@ -45,6 +49,7 @@ export declare const barOptions: (columns: any) => {
|
|
|
45
49
|
formatter: string;
|
|
46
50
|
fontSize: any;
|
|
47
51
|
padding: any;
|
|
52
|
+
color: any;
|
|
48
53
|
};
|
|
49
54
|
};
|
|
50
55
|
series: {
|
|
@@ -16,6 +16,7 @@ export declare const barLineOptions: (num: any, columns: any) => {
|
|
|
16
16
|
textStyle: {
|
|
17
17
|
fontSize: number;
|
|
18
18
|
lineHeight: number;
|
|
19
|
+
color: any;
|
|
19
20
|
rich: {
|
|
20
21
|
a: {
|
|
21
22
|
verticalAlign: string;
|
|
@@ -32,6 +33,10 @@ export declare const barLineOptions: (num: any, columns: any) => {
|
|
|
32
33
|
axisLabel: {
|
|
33
34
|
fontSize: any;
|
|
34
35
|
padding: any;
|
|
36
|
+
color: any;
|
|
37
|
+
};
|
|
38
|
+
nameTextStyle: {
|
|
39
|
+
color: any;
|
|
35
40
|
};
|
|
36
41
|
}[];
|
|
37
42
|
yAxis: {
|
|
@@ -40,6 +45,12 @@ export declare const barLineOptions: (num: any, columns: any) => {
|
|
|
40
45
|
type: string;
|
|
41
46
|
};
|
|
42
47
|
};
|
|
48
|
+
axisLabel: {
|
|
49
|
+
color: any;
|
|
50
|
+
};
|
|
51
|
+
nameTextStyle: {
|
|
52
|
+
color: any;
|
|
53
|
+
};
|
|
43
54
|
}[];
|
|
44
55
|
series: any[];
|
|
45
56
|
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
declare const GCalendar: ({
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
3
|
+
isDateRadio: {
|
|
4
|
+
type: BooleanConstructor;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
dateType: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
12
|
+
isDateRadio: boolean;
|
|
13
|
+
dateType: string;
|
|
14
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
15
|
+
P: {};
|
|
16
|
+
B: {};
|
|
17
|
+
D: {};
|
|
18
|
+
C: {};
|
|
19
|
+
M: {};
|
|
20
|
+
Defaults: {};
|
|
21
|
+
}, Readonly<globalThis.ExtractPropTypes<{
|
|
22
|
+
isDateRadio: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
dateType: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
31
|
+
isDateRadio: boolean;
|
|
32
|
+
dateType: string;
|
|
33
|
+
}>;
|
|
34
|
+
__isFragment?: never;
|
|
35
|
+
__isTeleport?: never;
|
|
36
|
+
__isSuspense?: never;
|
|
37
|
+
} & import('vue').ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
38
|
+
isDateRadio: {
|
|
39
|
+
type: BooleanConstructor;
|
|
40
|
+
default: boolean;
|
|
41
|
+
};
|
|
42
|
+
dateType: {
|
|
43
|
+
type: StringConstructor;
|
|
44
|
+
default: string;
|
|
45
|
+
};
|
|
46
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
47
|
+
isDateRadio: boolean;
|
|
48
|
+
dateType: string;
|
|
49
|
+
}, {}, 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>;
|
|
50
|
+
export default GCalendar;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
2
|
+
isDateRadio: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
6
|
+
dateType: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
11
|
+
isDateRadio: {
|
|
12
|
+
type: BooleanConstructor;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
dateType: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
}>> & Readonly<{}>, {
|
|
20
|
+
isDateRadio: boolean;
|
|
21
|
+
dateType: string;
|
|
22
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
23
|
+
export default _default;
|