g-ui-web 0.11.2 → 0.11.4

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.
Files changed (56) hide show
  1. package/lib/bar/index.d.ts +1 -0
  2. package/lib/bar/src/index.vue.d.ts +5 -0
  3. package/lib/bar/src/options.d.ts +10 -4
  4. package/lib/bar-compare/index.d.ts +1 -0
  5. package/lib/bar-compare/src/index.vue.d.ts +5 -0
  6. package/lib/bar-conv/index.d.ts +1 -0
  7. package/lib/bar-conv/src/index.vue.d.ts +5 -0
  8. package/lib/bar-line/index.d.ts +1 -0
  9. package/lib/bar-line/src/index.vue.d.ts +5 -0
  10. package/lib/bar-line/src/options.d.ts +10 -0
  11. package/lib/box/index.d.ts +15 -0
  12. package/lib/box/src/index.vue.d.ts +9 -0
  13. package/lib/cashflow/index.d.ts +2 -0
  14. package/lib/cashflow/src/index.vue.d.ts +6 -0
  15. package/lib/ele/table/index.d.ts +44 -1
  16. package/lib/ele/table/src/index.vue.d.ts +29 -1
  17. package/lib/funnel/index.d.ts +1 -0
  18. package/lib/funnel/src/index.vue.d.ts +5 -0
  19. package/lib/funnel/src/options.d.ts +12 -4
  20. package/lib/g-ui-web.js +25982 -25529
  21. package/lib/g-ui-web.js.gz +0 -0
  22. package/lib/g-ui-web.umd.cjs +65 -65
  23. package/lib/line/index.d.ts +1 -0
  24. package/lib/line/src/index.vue.d.ts +5 -0
  25. package/lib/line/src/options.d.ts +12 -4
  26. package/lib/map/index.d.ts +1 -0
  27. package/lib/map/src/index.vue.d.ts +5 -0
  28. package/lib/node-achievement/index.d.ts +22 -1
  29. package/lib/node-achievement/src/index.vue.d.ts +28 -1
  30. package/lib/pie/index.d.ts +1 -0
  31. package/lib/pie/src/index.vue.d.ts +5 -0
  32. package/lib/pie/src/options.d.ts +14 -0
  33. package/lib/pie-distri/index.d.ts +1 -0
  34. package/lib/pie-distri/src/index.vue.d.ts +5 -0
  35. package/lib/pie-level/index.d.ts +1 -0
  36. package/lib/pie-level/src/index.vue.d.ts +5 -0
  37. package/lib/pie-table/index.d.ts +25 -1
  38. package/lib/pie-table/src/index.vue.d.ts +29 -1
  39. package/lib/plan/index.d.ts +22 -1
  40. package/lib/plan/src/index.vue.d.ts +214 -1
  41. package/lib/radar/index.d.ts +1 -0
  42. package/lib/radar/src/index.vue.d.ts +5 -0
  43. package/lib/radar/src/options.d.ts +13 -0
  44. package/lib/ranking-cup/index.d.ts +25 -1
  45. package/lib/ranking-cup/src/index.vue.d.ts +27 -1
  46. package/lib/ranking-list/index.d.ts +25 -1
  47. package/lib/ranking-list/src/index.vue.d.ts +29 -1
  48. package/lib/ranking-rb/index.d.ts +25 -1
  49. package/lib/ranking-rb/src/index.vue.d.ts +27 -1
  50. package/lib/ranking-table/index.d.ts +25 -1
  51. package/lib/ranking-table/src/index.vue.d.ts +29 -1
  52. package/lib/reserve/index.d.ts +2 -0
  53. package/lib/reserve/src/index.vue.d.ts +6 -0
  54. package/lib/style.css +1 -1
  55. package/lib/style.css.gz +0 -0
  56. package/package.json +1 -1
@@ -10,6 +10,7 @@ declare const GBar: ({
10
10
  getIsFinish(): boolean;
11
11
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, any, string, {
12
12
  options: Record<string, any>;
13
+ description: string;
13
14
  dbOptions: Record<string, any>;
14
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>;
15
16
  export default GBar;
@@ -1,4 +1,8 @@
1
1
  declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
2
+ description: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
2
6
  options: {
3
7
  type: ObjectConstructor;
4
8
  default: () => {
@@ -16,6 +20,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
16
20
  getIsFinish(): boolean;
17
21
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, any, string, import('vue').PublicProps, any, {
18
22
  options: Record<string, any>;
23
+ description: string;
19
24
  dbOptions: Record<string, any>;
20
25
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
21
26
  export default _default;
@@ -7,10 +7,16 @@ export declare const barOptions: (num: any, direction: any) => {
7
7
  top: string;
8
8
  itemWidth: number;
9
9
  itemHeight: number;
10
- };
11
- tooltip: {
12
- show: boolean;
13
- trigger: string;
10
+ textStyle: {
11
+ fontSize: number;
12
+ lineHeight: number;
13
+ rich: {
14
+ a: {
15
+ verticalAlign: string;
16
+ };
17
+ };
18
+ padding: number[];
19
+ };
14
20
  };
15
21
  grid: any;
16
22
  color: any;
@@ -8,6 +8,7 @@ declare const GBarCompare: ({
8
8
  barCompareRef: globalThis.Ref<null, null>;
9
9
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, any, string, {
10
10
  options: Record<string, any>;
11
+ description: string;
11
12
  dbOptions: Record<string, any>;
12
13
  }, {}, 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>;
13
14
  export default GBarCompare;
@@ -1,4 +1,8 @@
1
1
  declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
2
+ description: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
2
6
  options: {
3
7
  type: ObjectConstructor;
4
8
  default: () => {
@@ -14,6 +18,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
14
18
  barCompareRef: globalThis.Ref<null, null>;
15
19
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, any, string, import('vue').PublicProps, any, {
16
20
  options: Record<string, any>;
21
+ description: string;
17
22
  dbOptions: Record<string, any>;
18
23
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
19
24
  export default _default;
@@ -8,6 +8,7 @@ declare const GBarConv: ({
8
8
  barConvRef: globalThis.Ref<null, null>;
9
9
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, any, string, {
10
10
  options: Record<string, any>;
11
+ description: string;
11
12
  dbOptions: Record<string, any>;
12
13
  }, {}, 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>;
13
14
  export default GBarConv;
@@ -1,4 +1,8 @@
1
1
  declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
2
+ description: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
2
6
  options: {
3
7
  type: ObjectConstructor;
4
8
  default: {};
@@ -12,6 +16,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
12
16
  barConvRef: globalThis.Ref<null, null>;
13
17
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, any, string, import('vue').PublicProps, any, {
14
18
  options: Record<string, any>;
19
+ description: string;
15
20
  dbOptions: Record<string, any>;
16
21
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
17
22
  export default _default;
@@ -8,6 +8,7 @@ declare const GBarLine: ({
8
8
  barLineRef: globalThis.Ref<null, null>;
9
9
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, any, string, {
10
10
  options: Record<string, any>;
11
+ description: string;
11
12
  dbOptions: Record<string, any>;
12
13
  }, {}, 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>;
13
14
  export default GBarLine;
@@ -1,4 +1,8 @@
1
1
  declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
2
+ description: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
2
6
  options: {
3
7
  type: ObjectConstructor;
4
8
  default: {};
@@ -12,6 +16,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
12
16
  barLineRef: globalThis.Ref<null, null>;
13
17
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, any, string, import('vue').PublicProps, any, {
14
18
  options: Record<string, any>;
19
+ description: string;
15
20
  dbOptions: Record<string, any>;
16
21
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
17
22
  export default _default;
@@ -14,6 +14,16 @@ export declare const barLineOptions: (num: any) => {
14
14
  top: string;
15
15
  itemWidth: number;
16
16
  itemHeight: number;
17
+ textStyle: {
18
+ fontSize: number;
19
+ lineHeight: number;
20
+ rich: {
21
+ a: {
22
+ verticalAlign: string;
23
+ };
24
+ };
25
+ padding: number[];
26
+ };
17
27
  };
18
28
  xAxis: {
19
29
  type: string;
@@ -44,6 +44,10 @@ declare const GBox: ({
44
44
  type: NumberConstructor;
45
45
  default: number;
46
46
  };
47
+ isGradient: {
48
+ type: BooleanConstructor;
49
+ default: boolean;
50
+ };
47
51
  iframe: {
48
52
  type: StringConstructor;
49
53
  default: string;
@@ -86,6 +90,7 @@ declare const GBox: ({
86
90
  arrow: boolean;
87
91
  bg: boolean;
88
92
  fontSizeLevel: number;
93
+ isGradient: boolean;
89
94
  params: Record<string, any>;
90
95
  auth: string;
91
96
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
@@ -140,6 +145,10 @@ declare const GBox: ({
140
145
  type: NumberConstructor;
141
146
  default: number;
142
147
  };
148
+ isGradient: {
149
+ type: BooleanConstructor;
150
+ default: boolean;
151
+ };
143
152
  iframe: {
144
153
  type: StringConstructor;
145
154
  default: string;
@@ -180,6 +189,7 @@ declare const GBox: ({
180
189
  arrow: boolean;
181
190
  bg: boolean;
182
191
  fontSizeLevel: number;
192
+ isGradient: boolean;
183
193
  params: Record<string, any>;
184
194
  auth: string;
185
195
  }>;
@@ -231,6 +241,10 @@ declare const GBox: ({
231
241
  type: NumberConstructor;
232
242
  default: number;
233
243
  };
244
+ isGradient: {
245
+ type: BooleanConstructor;
246
+ default: boolean;
247
+ };
234
248
  iframe: {
235
249
  type: StringConstructor;
236
250
  default: string;
@@ -273,6 +287,7 @@ declare const GBox: ({
273
287
  arrow: boolean;
274
288
  bg: boolean;
275
289
  fontSizeLevel: number;
290
+ isGradient: boolean;
276
291
  params: Record<string, any>;
277
292
  auth: string;
278
293
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
@@ -57,6 +57,10 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
57
57
  type: NumberConstructor;
58
58
  default: number;
59
59
  };
60
+ isGradient: {
61
+ type: BooleanConstructor;
62
+ default: boolean;
63
+ };
60
64
  iframe: {
61
65
  type: StringConstructor;
62
66
  default: string;
@@ -127,6 +131,10 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
127
131
  type: NumberConstructor;
128
132
  default: number;
129
133
  };
134
+ isGradient: {
135
+ type: BooleanConstructor;
136
+ default: boolean;
137
+ };
130
138
  iframe: {
131
139
  type: StringConstructor;
132
140
  default: string;
@@ -164,6 +172,7 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
164
172
  arrow: boolean;
165
173
  bg: boolean;
166
174
  fontSizeLevel: number;
175
+ isGradient: boolean;
167
176
  params: Record<string, any>;
168
177
  auth: string;
169
178
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -5,11 +5,13 @@ declare const GCashflow: ({
5
5
  __isSuspense?: never;
6
6
  } & import('vue').ComponentOptionsBase<any, {
7
7
  props: {
8
+ readonly description: string;
8
9
  readonly dbOptions: Record<string, any>;
9
10
  readonly tooltipLocation: string;
10
11
  };
11
12
  cashflowRef: globalThis.Ref<null, null>;
12
13
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, any, string, {
14
+ description: string;
13
15
  dbOptions: Record<string, any>;
14
16
  tooltipLocation: string;
15
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>;
@@ -1,4 +1,8 @@
1
1
  declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
2
+ description: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
2
6
  dbOptions: {
3
7
  type: ObjectConstructor;
4
8
  default: {};
@@ -9,11 +13,13 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
9
13
  };
10
14
  }>, {
11
15
  props: {
16
+ readonly description: string;
12
17
  readonly dbOptions: Record<string, any>;
13
18
  readonly tooltipLocation: string;
14
19
  };
15
20
  cashflowRef: globalThis.Ref<null, null>;
16
21
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, any, string, import('vue').PublicProps, any, {
22
+ description: string;
17
23
  dbOptions: Record<string, any>;
18
24
  tooltipLocation: string;
19
25
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -1,5 +1,16 @@
1
1
  declare const GTable: ({
2
2
  new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
3
+ data: {
4
+ type: ArrayConstructor;
5
+ };
6
+ emptyText: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ textSize: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ };
3
14
  stripe: {
4
15
  type: BooleanConstructor;
5
16
  default: boolean;
@@ -8,6 +19,8 @@ declare const GTable: ({
8
19
  elTableRef: globalThis.Ref<any, any>;
9
20
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
10
21
  stripe: boolean;
22
+ emptyText: string;
23
+ textSize: string;
11
24
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
12
25
  P: {};
13
26
  B: {};
@@ -16,6 +29,17 @@ declare const GTable: ({
16
29
  M: {};
17
30
  Defaults: {};
18
31
  }, Readonly<globalThis.ExtractPropTypes<{
32
+ data: {
33
+ type: ArrayConstructor;
34
+ };
35
+ emptyText: {
36
+ type: StringConstructor;
37
+ default: string;
38
+ };
39
+ textSize: {
40
+ type: StringConstructor;
41
+ default: string;
42
+ };
19
43
  stripe: {
20
44
  type: BooleanConstructor;
21
45
  default: boolean;
@@ -24,11 +48,24 @@ declare const GTable: ({
24
48
  elTableRef: globalThis.Ref<any, any>;
25
49
  }, {}, {}, {}, {
26
50
  stripe: boolean;
51
+ emptyText: string;
52
+ textSize: string;
27
53
  }>;
28
54
  __isFragment?: never;
29
55
  __isTeleport?: never;
30
56
  __isSuspense?: never;
31
57
  } & import('vue').ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
58
+ data: {
59
+ type: ArrayConstructor;
60
+ };
61
+ emptyText: {
62
+ type: StringConstructor;
63
+ default: string;
64
+ };
65
+ textSize: {
66
+ type: StringConstructor;
67
+ default: string;
68
+ };
32
69
  stripe: {
33
70
  type: BooleanConstructor;
34
71
  default: boolean;
@@ -37,7 +74,13 @@ declare const GTable: ({
37
74
  elTableRef: globalThis.Ref<any, any>;
38
75
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
39
76
  stripe: boolean;
77
+ emptyText: string;
78
+ textSize: string;
40
79
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
41
- $slots: Partial<Record<NonNullable<string | number>, (_: any) => any>>;
80
+ $slots: Partial<Record<NonNullable<string | number>, (_: any) => any>> & {
81
+ empty?(_: {
82
+ class: string;
83
+ }): any;
84
+ };
42
85
  }) & import('vue').Plugin) & Record<string, any>;
43
86
  export default GTable;
@@ -1,5 +1,9 @@
1
1
  declare function __VLS_template(): {
2
- slots: Partial<Record<NonNullable<string | number>, (_: any) => any>>;
2
+ slots: Partial<Record<NonNullable<string | number>, (_: any) => any>> & {
3
+ empty?(_: {
4
+ class: string;
5
+ }): any;
6
+ };
3
7
  refs: {
4
8
  elTableRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
5
9
  data: {
@@ -420,6 +424,17 @@ declare function __VLS_template(): {
420
424
  };
421
425
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
422
426
  declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
427
+ data: {
428
+ type: ArrayConstructor;
429
+ };
430
+ emptyText: {
431
+ type: StringConstructor;
432
+ default: string;
433
+ };
434
+ textSize: {
435
+ type: StringConstructor;
436
+ default: string;
437
+ };
423
438
  stripe: {
424
439
  type: BooleanConstructor;
425
440
  default: boolean;
@@ -427,12 +442,25 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
427
442
  }>, {
428
443
  elTableRef: globalThis.Ref<any, any>;
429
444
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
445
+ data: {
446
+ type: ArrayConstructor;
447
+ };
448
+ emptyText: {
449
+ type: StringConstructor;
450
+ default: string;
451
+ };
452
+ textSize: {
453
+ type: StringConstructor;
454
+ default: string;
455
+ };
430
456
  stripe: {
431
457
  type: BooleanConstructor;
432
458
  default: boolean;
433
459
  };
434
460
  }>> & Readonly<{}>, {
435
461
  stripe: boolean;
462
+ emptyText: string;
463
+ textSize: string;
436
464
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
437
465
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
438
466
  export default _default;
@@ -8,6 +8,7 @@ declare const GFunnel: ({
8
8
  funnelRef: globalThis.Ref<null, null>;
9
9
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, any, string, {
10
10
  options: Record<string, any>;
11
+ description: string;
11
12
  dbOptions: Record<string, any>;
12
13
  }, {}, 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>;
13
14
  export default GFunnel;
@@ -1,4 +1,8 @@
1
1
  declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
2
+ description: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
2
6
  options: {
3
7
  type: ObjectConstructor;
4
8
  default: {};
@@ -12,6 +16,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
12
16
  funnelRef: globalThis.Ref<null, null>;
13
17
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, any, string, import('vue').PublicProps, any, {
14
18
  options: Record<string, any>;
19
+ description: string;
15
20
  dbOptions: Record<string, any>;
16
21
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
17
22
  export default _default;
@@ -1,15 +1,23 @@
1
1
  declare const funnelOptions: () => {
2
2
  backgroundColor: any;
3
3
  color: any;
4
- tooltip: {
5
- trigger: string;
6
- formatter: string;
7
- };
8
4
  legend: {
9
5
  trigger: string;
10
6
  orient: string;
11
7
  left: string;
12
8
  show: boolean;
9
+ itemWidth: number;
10
+ itemHeight: number;
11
+ textStyle: {
12
+ fontSize: number;
13
+ lineHeight: number;
14
+ rich: {
15
+ a: {
16
+ verticalAlign: string;
17
+ };
18
+ };
19
+ padding: number[];
20
+ };
13
21
  };
14
22
  xAxis: {
15
23
  show: boolean;