@visactor/vchart-aurora-theme 0.0.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.
Files changed (155) hide show
  1. package/README.md +5 -0
  2. package/build/index.js +820 -0
  3. package/build/index.min.js +1 -0
  4. package/cjs/common/color-scheme.d.ts +2 -0
  5. package/cjs/common/color-scheme.js +45 -0
  6. package/cjs/common/color-scheme.js.map +1 -0
  7. package/cjs/common/component/axis.d.ts +2 -0
  8. package/cjs/common/component/axis.js +86 -0
  9. package/cjs/common/component/axis.js.map +1 -0
  10. package/cjs/common/component/crosshair.d.ts +2 -0
  11. package/cjs/common/component/crosshair.js +36 -0
  12. package/cjs/common/component/crosshair.js.map +1 -0
  13. package/cjs/common/component/data-zoom.d.ts +3 -0
  14. package/cjs/common/component/data-zoom.js +67 -0
  15. package/cjs/common/component/data-zoom.js.map +1 -0
  16. package/cjs/common/component/indicator.d.ts +2 -0
  17. package/cjs/common/component/indicator.js +23 -0
  18. package/cjs/common/component/indicator.js.map +1 -0
  19. package/cjs/common/component/legend.d.ts +2 -0
  20. package/cjs/common/component/legend.js +144 -0
  21. package/cjs/common/component/legend.js.map +1 -0
  22. package/cjs/common/component/mark-area.d.ts +2 -0
  23. package/cjs/common/component/mark-area.js +31 -0
  24. package/cjs/common/component/mark-area.js.map +1 -0
  25. package/cjs/common/component/mark-line.d.ts +2 -0
  26. package/cjs/common/component/mark-line.js +41 -0
  27. package/cjs/common/component/mark-line.js.map +1 -0
  28. package/cjs/common/component/mark-point.d.ts +2 -0
  29. package/cjs/common/component/mark-point.js +52 -0
  30. package/cjs/common/component/mark-point.js.map +1 -0
  31. package/cjs/common/component/polar-axis.d.ts +5 -0
  32. package/cjs/common/component/polar-axis.js +30 -0
  33. package/cjs/common/component/polar-axis.js.map +1 -0
  34. package/cjs/common/component/scroll-bar.d.ts +2 -0
  35. package/cjs/common/component/scroll-bar.js +23 -0
  36. package/cjs/common/component/scroll-bar.js.map +1 -0
  37. package/cjs/common/component/tooltip.d.ts +2 -0
  38. package/cjs/common/component/tooltip.js +74 -0
  39. package/cjs/common/component/tooltip.js.map +1 -0
  40. package/cjs/common/mark.d.ts +2 -0
  41. package/cjs/common/mark.js +17 -0
  42. package/cjs/common/mark.js.map +1 -0
  43. package/cjs/common/series/area.d.ts +2 -0
  44. package/cjs/common/series/area.js +39 -0
  45. package/cjs/common/series/area.js.map +1 -0
  46. package/cjs/common/series/bar.d.ts +2 -0
  47. package/cjs/common/series/bar.js +36 -0
  48. package/cjs/common/series/bar.js.map +1 -0
  49. package/cjs/common/series/funnel.d.ts +2 -0
  50. package/cjs/common/series/funnel.js +36 -0
  51. package/cjs/common/series/funnel.js.map +1 -0
  52. package/cjs/common/series/gauge.d.ts +2 -0
  53. package/cjs/common/series/gauge.js +33 -0
  54. package/cjs/common/series/gauge.js.map +1 -0
  55. package/cjs/common/series/heatmap.d.ts +2 -0
  56. package/cjs/common/series/heatmap.js +32 -0
  57. package/cjs/common/series/heatmap.js.map +1 -0
  58. package/cjs/common/series/line.d.ts +2 -0
  59. package/cjs/common/series/line.js +30 -0
  60. package/cjs/common/series/line.js.map +1 -0
  61. package/cjs/common/series/pie.d.ts +2 -0
  62. package/cjs/common/series/pie.js +31 -0
  63. package/cjs/common/series/pie.js.map +1 -0
  64. package/cjs/common/series/radar.d.ts +2 -0
  65. package/cjs/common/series/radar.js +32 -0
  66. package/cjs/common/series/radar.js.map +1 -0
  67. package/cjs/common/series/scatter.d.ts +2 -0
  68. package/cjs/common/series/scatter.js +19 -0
  69. package/cjs/common/series/scatter.js.map +1 -0
  70. package/cjs/common/series/treemap.d.ts +2 -0
  71. package/cjs/common/series/treemap.js +31 -0
  72. package/cjs/common/series/treemap.js.map +1 -0
  73. package/cjs/common/token.d.ts +2 -0
  74. package/cjs/common/token.js +9 -0
  75. package/cjs/common/token.js.map +1 -0
  76. package/cjs/index.d.ts +3 -0
  77. package/cjs/index.js +35 -0
  78. package/cjs/index.js.map +1 -0
  79. package/esm/common/color-scheme.d.ts +2 -0
  80. package/esm/common/color-scheme.js +39 -0
  81. package/esm/common/color-scheme.js.map +1 -0
  82. package/esm/common/component/axis.d.ts +2 -0
  83. package/esm/common/component/axis.js +82 -0
  84. package/esm/common/component/axis.js.map +1 -0
  85. package/esm/common/component/crosshair.d.ts +2 -0
  86. package/esm/common/component/crosshair.js +32 -0
  87. package/esm/common/component/crosshair.js.map +1 -0
  88. package/esm/common/component/data-zoom.d.ts +3 -0
  89. package/esm/common/component/data-zoom.js +65 -0
  90. package/esm/common/component/data-zoom.js.map +1 -0
  91. package/esm/common/component/indicator.d.ts +2 -0
  92. package/esm/common/component/indicator.js +19 -0
  93. package/esm/common/component/indicator.js.map +1 -0
  94. package/esm/common/component/legend.d.ts +2 -0
  95. package/esm/common/component/legend.js +138 -0
  96. package/esm/common/component/legend.js.map +1 -0
  97. package/esm/common/component/mark-area.d.ts +2 -0
  98. package/esm/common/component/mark-area.js +27 -0
  99. package/esm/common/component/mark-area.js.map +1 -0
  100. package/esm/common/component/mark-line.d.ts +2 -0
  101. package/esm/common/component/mark-line.js +37 -0
  102. package/esm/common/component/mark-line.js.map +1 -0
  103. package/esm/common/component/mark-point.d.ts +2 -0
  104. package/esm/common/component/mark-point.js +48 -0
  105. package/esm/common/component/mark-point.js.map +1 -0
  106. package/esm/common/component/polar-axis.d.ts +5 -0
  107. package/esm/common/component/polar-axis.js +24 -0
  108. package/esm/common/component/polar-axis.js.map +1 -0
  109. package/esm/common/component/scroll-bar.d.ts +2 -0
  110. package/esm/common/component/scroll-bar.js +19 -0
  111. package/esm/common/component/scroll-bar.js.map +1 -0
  112. package/esm/common/component/tooltip.d.ts +2 -0
  113. package/esm/common/component/tooltip.js +70 -0
  114. package/esm/common/component/tooltip.js.map +1 -0
  115. package/esm/common/mark.d.ts +2 -0
  116. package/esm/common/mark.js +13 -0
  117. package/esm/common/mark.js.map +1 -0
  118. package/esm/common/series/area.d.ts +2 -0
  119. package/esm/common/series/area.js +35 -0
  120. package/esm/common/series/area.js.map +1 -0
  121. package/esm/common/series/bar.d.ts +2 -0
  122. package/esm/common/series/bar.js +30 -0
  123. package/esm/common/series/bar.js.map +1 -0
  124. package/esm/common/series/funnel.d.ts +2 -0
  125. package/esm/common/series/funnel.js +32 -0
  126. package/esm/common/series/funnel.js.map +1 -0
  127. package/esm/common/series/gauge.d.ts +2 -0
  128. package/esm/common/series/gauge.js +29 -0
  129. package/esm/common/series/gauge.js.map +1 -0
  130. package/esm/common/series/heatmap.d.ts +2 -0
  131. package/esm/common/series/heatmap.js +28 -0
  132. package/esm/common/series/heatmap.js.map +1 -0
  133. package/esm/common/series/line.d.ts +2 -0
  134. package/esm/common/series/line.js +26 -0
  135. package/esm/common/series/line.js.map +1 -0
  136. package/esm/common/series/pie.d.ts +2 -0
  137. package/esm/common/series/pie.js +27 -0
  138. package/esm/common/series/pie.js.map +1 -0
  139. package/esm/common/series/radar.d.ts +2 -0
  140. package/esm/common/series/radar.js +28 -0
  141. package/esm/common/series/radar.js.map +1 -0
  142. package/esm/common/series/scatter.d.ts +2 -0
  143. package/esm/common/series/scatter.js +15 -0
  144. package/esm/common/series/scatter.js.map +1 -0
  145. package/esm/common/series/treemap.d.ts +2 -0
  146. package/esm/common/series/treemap.js +27 -0
  147. package/esm/common/series/treemap.js.map +1 -0
  148. package/esm/common/token.d.ts +2 -0
  149. package/esm/common/token.js +5 -0
  150. package/esm/common/token.js.map +1 -0
  151. package/esm/index.d.ts +3 -0
  152. package/esm/index.js +77 -0
  153. package/esm/index.js.map +1 -0
  154. package/package.json +87 -0
  155. package/public/aurora.json +1 -0
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: !0
5
+ }), exports.axisPolar = void 0;
6
+
7
+ const axisRadius = {
8
+ domainLine: {},
9
+ grid: {
10
+ smooth: !1,
11
+ visible: !0
12
+ },
13
+ subGrid: {
14
+ smooth: !1
15
+ }
16
+ }, axisAngle = {
17
+ grid: {
18
+ visible: !0,
19
+ smooth: !1
20
+ },
21
+ label: {
22
+ space: 4
23
+ }
24
+ };
25
+
26
+ exports.axisPolar = {
27
+ axisRadius: axisRadius,
28
+ axisAngle: axisAngle
29
+ };
30
+ //# sourceMappingURL=polar-axis.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/common/component/polar-axis.ts"],"names":[],"mappings":";;;AAEA,MAAM,UAAU,GAA0B;IACxC,UAAU,EAAE,EAAE;IACd,IAAI,EAAE;QACJ,MAAM,EAAE,KAAK;QACb,OAAO,EAAE,IAAI;KACd;IACD,OAAO,EAAE;QACP,MAAM,EAAE,KAAK;KACd;CACF,CAAC;AAEF,MAAM,SAAS,GAA0B;IACvC,IAAI,EAAE;QACJ,OAAO,EAAE,IAAI;QACb,MAAM,EAAE,KAAK;KACd;IACD,KAAK,EAAE;QACL,KAAK,EAAE,CAAC;KACT;CACF,CAAC;AAEW,QAAA,SAAS,GAAG;IACvB,UAAU;IACV,SAAS;CACV,CAAC","file":"polar-axis.js","sourcesContent":["import type { IPolarAxisCommonTheme } from '@visactor/vchart';\n\nconst axisRadius: IPolarAxisCommonTheme = {\n domainLine: {},\n grid: {\n smooth: false,\n visible: true\n },\n subGrid: {\n smooth: false\n }\n};\n\nconst axisAngle: IPolarAxisCommonTheme = {\n grid: {\n visible: true,\n smooth: false\n },\n label: {\n space: 4\n }\n};\n\nexport const axisPolar = {\n axisRadius,\n axisAngle\n};\n"]}
@@ -0,0 +1,2 @@
1
+ import type { IScrollBarTheme } from '@visactor/vchart';
2
+ export declare const scrollBar: IScrollBarTheme;
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: !0
5
+ }), exports.scrollBar = void 0, exports.scrollBar = {
6
+ horizontal: {
7
+ height: 12,
8
+ slider: {
9
+ style: {
10
+ fill: "rgba(0,0,0,0.15)"
11
+ }
12
+ }
13
+ },
14
+ vertical: {
15
+ width: 12,
16
+ slider: {
17
+ style: {
18
+ fill: "rgba(0,0,0,0.15)"
19
+ }
20
+ }
21
+ }
22
+ };
23
+ //# sourceMappingURL=scroll-bar.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/common/component/scroll-bar.ts"],"names":[],"mappings":";;;AAEa,QAAA,SAAS,GAAoB;IACxC,UAAU,EAAE;QACV,MAAM,EAAE,EAAE;QACV,MAAM,EAAE;YACN,KAAK,EAAE;gBACL,IAAI,EAAE,kBAAkB;aACzB;SACF;KACF;IACD,QAAQ,EAAE;QACR,KAAK,EAAE,EAAE;QACT,MAAM,EAAE;YACN,KAAK,EAAE;gBACL,IAAI,EAAE,kBAAkB;aACzB;SACF;KACF;CACF,CAAC","file":"scroll-bar.js","sourcesContent":["import type { IScrollBarTheme } from '@visactor/vchart';\n\nexport const scrollBar: IScrollBarTheme = {\n horizontal: {\n height: 12,\n slider: {\n style: {\n fill: 'rgba(0,0,0,0.15)'\n }\n }\n },\n vertical: {\n width: 12,\n slider: {\n style: {\n fill: 'rgba(0,0,0,0.15)'\n }\n }\n }\n};\n"]}
@@ -0,0 +1,2 @@
1
+ import type { ITooltipTheme } from '@visactor/vchart';
2
+ export declare const tooltip: ITooltipTheme;
@@ -0,0 +1,74 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: !0
5
+ }), exports.tooltip = void 0, exports.tooltip = {
6
+ offset: {
7
+ x: 16,
8
+ y: 16
9
+ },
10
+ panel: {
11
+ padding: {
12
+ top: 12,
13
+ left: 12,
14
+ right: 12,
15
+ bottom: 12
16
+ },
17
+ backgroundColor: {
18
+ type: "palette",
19
+ key: "popupBackgroundColor"
20
+ },
21
+ border: {
22
+ color: {
23
+ type: "palette",
24
+ key: "popupBackgroundColor"
25
+ },
26
+ width: 0,
27
+ radius: 3
28
+ },
29
+ shadow: {
30
+ x: 0,
31
+ y: 0,
32
+ blur: 10,
33
+ spread: 0,
34
+ color: "#aeaeae"
35
+ }
36
+ },
37
+ spaceRow: 12,
38
+ titleLabel: {
39
+ fontSize: 12,
40
+ lineHeight: 12,
41
+ fontColor: "#1D1D2E",
42
+ fontWeight: "500",
43
+ textAlign: "left",
44
+ textBaseline: "middle",
45
+ spacing: 0
46
+ },
47
+ shape: {
48
+ size: 8,
49
+ spacing: 8
50
+ },
51
+ keyLabel: {
52
+ fontSize: 12,
53
+ lineHeight: 12,
54
+ fontColor: {
55
+ type: "palette",
56
+ key: "blackColors65"
57
+ },
58
+ textAlign: "left",
59
+ textBaseline: "middle",
60
+ spacing: 12
61
+ },
62
+ valueLabel: {
63
+ fontSize: 12,
64
+ lineHeight: 12,
65
+ fontColor: {
66
+ type: "palette",
67
+ key: "blackColors65"
68
+ },
69
+ fontWeight: "normal",
70
+ textBaseline: "middle",
71
+ spacing: 0
72
+ }
73
+ };
74
+ //# sourceMappingURL=tooltip.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/common/component/tooltip.ts"],"names":[],"mappings":";;;AAEa,QAAA,OAAO,GAAkB;IACpC,MAAM,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE;IACxB,KAAK,EAAE;QACL,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE;QACrD,eAAe,EAAE;YACf,IAAI,EAAE,SAAS;YACf,GAAG,EAAE,sBAAsB;SACrB;QACR,MAAM,EAAE;YACN,KAAK,EAAE;gBACL,IAAI,EAAE,SAAS;gBACf,GAAG,EAAE,sBAAsB;aACrB;YACR,KAAK,EAAE,CAAC;YACR,MAAM,EAAE,CAAC;SACV;QACD,MAAM,EAAE;YACN,CAAC,EAAE,CAAC;YACJ,CAAC,EAAE,CAAC;YACJ,IAAI,EAAE,EAAE;YACR,MAAM,EAAE,CAAC;YACT,KAAK,EAAE,SAAS;SACjB;KACF;IACD,QAAQ,EAAE,EAAE;IACZ,UAAU,EAAE;QACV,QAAQ,EAAE,EAAE;QACZ,UAAU,EAAE,EAAE;QACd,SAAS,EAAE,SAAS;QACpB,UAAU,EAAE,KAAK;QACjB,SAAS,EAAE,MAAM;QACjB,YAAY,EAAE,QAAQ;QACtB,OAAO,EAAE,CAAC;KACX;IACD,KAAK,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,OAAO,EAAE,CAAC,EAAE;IAC9B,QAAQ,EAAE;QACR,QAAQ,EAAE,EAAE;QACZ,UAAU,EAAE,EAAE;QACd,SAAS,EAAE;YACT,IAAI,EAAE,SAAS;YACf,GAAG,EAAE,eAAe;SACd;QACR,SAAS,EAAE,MAAM;QACjB,YAAY,EAAE,QAAQ;QACtB,OAAO,EAAE,EAAE;KACZ;IACD,UAAU,EAAE;QACV,QAAQ,EAAE,EAAE;QACZ,UAAU,EAAE,EAAE;QACd,SAAS,EAAE;YACT,IAAI,EAAE,SAAS;YACf,GAAG,EAAE,eAAe;SACd;QACR,UAAU,EAAE,QAAQ;QACpB,YAAY,EAAE,QAAQ;QACtB,OAAO,EAAE,CAAC;KACX;CACF,CAAC","file":"tooltip.js","sourcesContent":["import type { ITooltipTheme } from '@visactor/vchart';\n\nexport const tooltip: ITooltipTheme = {\n offset: { x: 16, y: 16 },\n panel: {\n padding: { top: 12, left: 12, right: 12, bottom: 12 },\n backgroundColor: {\n type: 'palette',\n key: 'popupBackgroundColor'\n } as any,\n border: {\n color: {\n type: 'palette',\n key: 'popupBackgroundColor'\n } as any,\n width: 0,\n radius: 3\n },\n shadow: {\n x: 0,\n y: 0,\n blur: 10,\n spread: 0,\n color: '#aeaeae'\n }\n },\n spaceRow: 12,\n titleLabel: {\n fontSize: 12,\n lineHeight: 12,\n fontColor: '#1D1D2E',\n fontWeight: '500',\n textAlign: 'left',\n textBaseline: 'middle',\n spacing: 0\n },\n shape: { size: 8, spacing: 8 },\n keyLabel: {\n fontSize: 12,\n lineHeight: 12,\n fontColor: {\n type: 'palette',\n key: 'blackColors65'\n } as any,\n textAlign: 'left',\n textBaseline: 'middle',\n spacing: 12\n },\n valueLabel: {\n fontSize: 12,\n lineHeight: 12,\n fontColor: {\n type: 'palette',\n key: 'blackColors65'\n } as any,\n fontWeight: 'normal',\n textBaseline: 'middle',\n spacing: 0\n }\n};\n"]}
@@ -0,0 +1,2 @@
1
+ import type { IGlobalMarkThemeByName } from '@visactor/vchart';
2
+ export declare const markByName: IGlobalMarkThemeByName;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: !0
5
+ }), exports.markByName = void 0, exports.markByName = {
6
+ label: {
7
+ style: {
8
+ fontSize: 12,
9
+ fill: {
10
+ type: "palette",
11
+ key: "blackColors65"
12
+ },
13
+ lineWidth: 0
14
+ }
15
+ }
16
+ };
17
+ //# sourceMappingURL=mark.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/common/mark.ts"],"names":[],"mappings":";;;AAEa,QAAA,UAAU,GAA2B;IAChD,KAAK,EAAE;QACL,KAAK,EAAE;YACL,QAAQ,EAAE,EAAE;YACZ,IAAI,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,GAAG,EAAE,eAAe,EAAE;YAC/C,SAAS,EAAE,CAAC;SACb;KACF;CACF,CAAC","file":"mark.js","sourcesContent":["import type { IGlobalMarkThemeByName } from '@visactor/vchart';\n\nexport const markByName: IGlobalMarkThemeByName = {\n label: {\n style: {\n fontSize: 12,\n fill: { type: 'palette', key: 'blackColors65' },\n lineWidth: 0\n }\n }\n};\n"]}
@@ -0,0 +1,2 @@
1
+ import type { ISeriesTheme, SeriesTypeEnum, SeriesTypeForThemeEnum } from '@visactor/vchart';
2
+ export declare const area: Pick<ISeriesTheme, SeriesTypeEnum.area | SeriesTypeForThemeEnum.area_vertical | SeriesTypeForThemeEnum.area_horizontal>;
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: !0
5
+ }), exports.area = void 0, exports.area = {
6
+ area: {
7
+ point: {
8
+ style: {
9
+ visible: !1,
10
+ size: 12,
11
+ lineWidth: 2,
12
+ shadowColor: "rgba(0, 0, 0, 0.1)",
13
+ shadowBlur: 3,
14
+ stroke: {
15
+ type: "palette",
16
+ key: "whiteColors100"
17
+ }
18
+ }
19
+ },
20
+ line: {
21
+ style: {
22
+ curveType: "monotone",
23
+ lineWidth: 2
24
+ }
25
+ },
26
+ area: {
27
+ style: {
28
+ fillOpacity: .25,
29
+ lineWidth: 2
30
+ },
31
+ state: {
32
+ selected: {
33
+ fillOpacity: .5
34
+ }
35
+ }
36
+ }
37
+ }
38
+ };
39
+ //# sourceMappingURL=area.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/common/series/area.ts"],"names":[],"mappings":";;;AAEa,QAAA,IAAI,GAGb;IACF,IAAI,EAAE;QACJ,KAAK,EAAE;YACL,KAAK,EAAE;gBACL,OAAO,EAAE,KAAK;gBACd,IAAI,EAAE,EAAE;gBACR,SAAS,EAAE,CAAC;gBACZ,WAAW,EAAE,oBAAoB;gBACjC,UAAU,EAAE,CAAC;gBACb,MAAM,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,GAAG,EAAE,gBAAgB,EAAE;aACnD;SACF;QACD,IAAI,EAAE;YACJ,KAAK,EAAE;gBACL,SAAS,EAAE,UAAU;gBACrB,SAAS,EAAE,CAAC;aACb;SACF;QACD,IAAI,EAAE;YACJ,KAAK,EAAE;gBACL,WAAW,EAAE,IAAI;gBACjB,SAAS,EAAE,CAAC;aACb;YACD,KAAK,EAAE;gBACL,QAAQ,EAAE;oBACR,WAAW,EAAE,GAAG;iBACjB;aACF;SACF;KACF;CACF,CAAC","file":"area.js","sourcesContent":["import type { ISeriesTheme, SeriesTypeEnum, SeriesTypeForThemeEnum } from '@visactor/vchart';\n\nexport const area: Pick<\n ISeriesTheme,\n SeriesTypeEnum.area | SeriesTypeForThemeEnum.area_vertical | SeriesTypeForThemeEnum.area_horizontal\n> = {\n area: {\n point: {\n style: {\n visible: false,\n size: 12,\n lineWidth: 2,\n shadowColor: 'rgba(0, 0, 0, 0.1)',\n shadowBlur: 3,\n stroke: { type: 'palette', key: 'whiteColors100' }\n }\n },\n line: {\n style: {\n curveType: 'monotone',\n lineWidth: 2\n }\n },\n area: {\n style: {\n fillOpacity: 0.25,\n lineWidth: 2\n },\n state: {\n selected: {\n fillOpacity: 0.5\n }\n }\n }\n }\n};\n"]}
@@ -0,0 +1,2 @@
1
+ import type { ISeriesTheme, SeriesTypeEnum, SeriesTypeForThemeEnum } from '@visactor/vchart';
2
+ export declare const barTheme: Pick<ISeriesTheme, SeriesTypeEnum.bar | SeriesTypeForThemeEnum.bar_horizontal | SeriesTypeForThemeEnum.bar_vertical>;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: !0
5
+ }), exports.barTheme = void 0;
6
+
7
+ const bar = {
8
+ barMaxWidth: 8,
9
+ barGapInGroup: 4,
10
+ label: {
11
+ style: {
12
+ fill: {
13
+ type: "palette",
14
+ key: "secondaryFontColor"
15
+ }
16
+ }
17
+ }
18
+ }, bar_horizontal = {
19
+ stackCornerRadius: [ 0, 1, 1, 0 ],
20
+ label: {
21
+ position: "right",
22
+ offset: 4
23
+ }
24
+ }, bar_vertical = {
25
+ stackCornerRadius: [ 1, 1, 0, 0 ],
26
+ label: {
27
+ position: "top",
28
+ offset: 4
29
+ }
30
+ };
31
+
32
+ exports.barTheme = {
33
+ bar: bar,
34
+ bar_horizontal: bar_horizontal,
35
+ bar_vertical: bar_vertical
36
+ };
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/common/series/bar.ts"],"names":[],"mappings":";;;AAEA,MAAM,GAAG,GAAwB;IAC/B,WAAW,EAAE,CAAC;IAEd,aAAa,EAAE,CAAC;IAChB,KAAK,EAAE;QACL,KAAK,EAAE;YACL,IAAI,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,GAAG,EAAE,oBAAoB,EAAE;SACrD;KACF;CACF,CAAC;AAEF,MAAM,cAAc,GAAwB;IAE1C,iBAAiB,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;IAC/B,KAAK,EAAE;QACL,QAAQ,EAAE,OAAO;QACjB,MAAM,EAAE,CAAC;KACV;CACF,CAAC;AAEF,MAAM,YAAY,GAAwB;IAExC,iBAAiB,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;IAC/B,KAAK,EAAE;QACL,QAAQ,EAAE,KAAK;QACf,MAAM,EAAE,CAAC;KACV;CACF,CAAC;AAEW,QAAA,QAAQ,GAGjB;IACF,GAAG;IACH,cAAc;IACd,YAAY;CACb,CAAC","file":"bar.js","sourcesContent":["import type { ISeriesTheme, SeriesTypeEnum, SeriesTypeForThemeEnum } from '@visactor/vchart';\n\nconst bar: ISeriesTheme['bar'] = {\n barMaxWidth: 8,\n // @ts-ignore\n barGapInGroup: 4, // FIXME: typeError\n label: {\n style: {\n fill: { type: 'palette', key: 'secondaryFontColor' }\n }\n }\n};\n\nconst bar_horizontal: ISeriesTheme['bar'] = {\n // @ts-ignore\n stackCornerRadius: [0, 1, 1, 0], // FIXME: typeError\n label: {\n position: 'right',\n offset: 4\n }\n};\n\nconst bar_vertical: ISeriesTheme['bar'] = {\n // @ts-ignore\n stackCornerRadius: [1, 1, 0, 0], // FIXME: typeError\n label: {\n position: 'top',\n offset: 4\n }\n};\n\nexport const barTheme: Pick<\n ISeriesTheme,\n SeriesTypeEnum.bar | SeriesTypeForThemeEnum.bar_horizontal | SeriesTypeForThemeEnum.bar_vertical\n> = {\n bar,\n bar_horizontal,\n bar_vertical\n};\n"]}
@@ -0,0 +1,2 @@
1
+ import type { ISeriesTheme } from '@visactor/vchart';
2
+ export declare const funnel: ISeriesTheme['funnel'];
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: !0
5
+ }), exports.funnel = void 0, exports.funnel = {
6
+ funnel: {
7
+ state: {
8
+ selected: {
9
+ fill: "#1966FF",
10
+ stroke: "#3958E0",
11
+ strokeOpacity: .2,
12
+ lineWidth: 4
13
+ }
14
+ }
15
+ },
16
+ outerLabel: {
17
+ style: {
18
+ fontSize: 12
19
+ },
20
+ line: {
21
+ style: {
22
+ lineWidth: 2
23
+ }
24
+ }
25
+ },
26
+ label: {
27
+ style: {
28
+ fill: {
29
+ type: "palette",
30
+ key: "whiteColors100"
31
+ },
32
+ fontSize: 12
33
+ }
34
+ }
35
+ };
36
+ //# sourceMappingURL=funnel.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/common/series/funnel.ts"],"names":[],"mappings":";;;AAEa,QAAA,MAAM,GAA2B;IAC5C,MAAM,EAAE;QACN,KAAK,EAAE;YACL,QAAQ,EAAE;gBACR,IAAI,EAAE,SAAS;gBACf,MAAM,EAAE,SAAS;gBACjB,aAAa,EAAE,GAAG;gBAClB,SAAS,EAAE,CAAC;aACb;SACF;KACF;IACD,UAAU,EAAE;QACV,KAAK,EAAE;YACL,QAAQ,EAAE,EAAE;SACb;QACD,IAAI,EAAE;YACJ,KAAK,EAAE;gBACL,SAAS,EAAE,CAAC;aACb;SACF;KACF;IACD,KAAK,EAAE;QACL,KAAK,EAAE;YACL,IAAI,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,GAAG,EAAE,gBAAgB,EAAE;YAChD,QAAQ,EAAE,EAAE;SACb;KACF;CACF,CAAC","file":"funnel.js","sourcesContent":["import type { ISeriesTheme } from '@visactor/vchart';\n\nexport const funnel: ISeriesTheme['funnel'] = {\n funnel: {\n state: {\n selected: {\n fill: '#1966FF',\n stroke: '#3958E0',\n strokeOpacity: 0.2,\n lineWidth: 4\n }\n }\n },\n outerLabel: {\n style: {\n fontSize: 12\n },\n line: {\n style: {\n lineWidth: 2\n }\n }\n },\n label: {\n style: {\n fill: { type: 'palette', key: 'whiteColors100' },\n fontSize: 12\n }\n }\n};\n"]}
@@ -0,0 +1,2 @@
1
+ import type { ISeriesTheme } from '@visactor/vchart';
2
+ export declare const gauge: ISeriesTheme;
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: !0
5
+ }), exports.gauge = void 0, exports.gauge = {
6
+ circularProgress: {
7
+ progress: {
8
+ style: {
9
+ cornerRadius: 100
10
+ }
11
+ },
12
+ track: {
13
+ interactive: !1,
14
+ style: {
15
+ cornerRadius: 100,
16
+ fill: "#DCDEE1",
17
+ fillOpacity: 1
18
+ }
19
+ }
20
+ },
21
+ gaugePointer: {
22
+ pin: {
23
+ visible: !1
24
+ },
25
+ pinBackground: {
26
+ visible: !1
27
+ },
28
+ pointer: {
29
+ visible: !1
30
+ }
31
+ }
32
+ };
33
+ //# sourceMappingURL=gauge.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/common/series/gauge.ts"],"names":[],"mappings":";;;AAEa,QAAA,KAAK,GAAiB;IACjC,gBAAgB,EAAE;QAIhB,QAAQ,EAAE;YACR,KAAK,EAAE;gBACL,YAAY,EAAE,GAAG;aAClB;SACF;QACD,KAAK,EAAE;YACL,WAAW,EAAE,KAAK;YAClB,KAAK,EAAE;gBACL,YAAY,EAAE,GAAG;gBACjB,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,CAAC;aACf;SACF;KACF;IACD,YAAY,EAAE;QACZ,GAAG,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;QACvB,aAAa,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;QACjC,OAAO,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;KAC5B;CACF,CAAC","file":"gauge.js","sourcesContent":["import type { ISeriesTheme } from '@visactor/vchart';\n\nexport const gauge: ISeriesTheme = {\n circularProgress: {\n // FIXME: not work\n // radius: 1,\n // innerRadius: 0.1,\n progress: {\n style: {\n cornerRadius: 100\n }\n },\n track: {\n interactive: false,\n style: {\n cornerRadius: 100,\n fill: '#DCDEE1',\n fillOpacity: 1\n }\n }\n },\n gaugePointer: {\n pin: { visible: false },\n pinBackground: { visible: false },\n pointer: { visible: false }\n }\n};\n"]}
@@ -0,0 +1,2 @@
1
+ import type { ISeriesTheme } from '@visactor/vchart';
2
+ export declare const heatmap: ISeriesTheme['heatmap'];
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: !0
5
+ }), exports.heatmap = void 0, exports.heatmap = {
6
+ cell: {
7
+ style: {
8
+ stroke: {
9
+ type: "palette",
10
+ key: "whiteColors100"
11
+ },
12
+ lineWidth: 1
13
+ },
14
+ state: {
15
+ hover: {
16
+ zIndex: 100,
17
+ stroke: "#000"
18
+ }
19
+ }
20
+ },
21
+ label: {
22
+ position: "inside",
23
+ style: {
24
+ fill: {
25
+ type: "palette",
26
+ key: "whiteColors100"
27
+ },
28
+ fontSize: 12
29
+ }
30
+ }
31
+ };
32
+ //# sourceMappingURL=heatmap.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/common/series/heatmap.ts"],"names":[],"mappings":";;;AAEa,QAAA,OAAO,GAA4B;IAC9C,IAAI,EAAE;QACJ,KAAK,EAAE;YACL,MAAM,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,GAAG,EAAE,gBAAgB,EAAE;YAClD,SAAS,EAAE,CAAC;SACb;QACD,KAAK,EAAE;YACL,KAAK,EAAE;gBACL,MAAM,EAAE,GAAG;gBACX,MAAM,EAAE,MAAM;aACf;SACF;KACF;IACD,KAAK,EAAE;QACL,QAAQ,EAAE,QAAQ;QAClB,KAAK,EAAE;YACL,IAAI,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,GAAG,EAAE,gBAAgB,EAAE;YAChD,QAAQ,EAAE,EAAE;SACb;KACF;CACF,CAAC","file":"heatmap.js","sourcesContent":["import type { ISeriesTheme } from '@visactor/vchart';\n\nexport const heatmap: ISeriesTheme['heatmap'] = {\n cell: {\n style: {\n stroke: { type: 'palette', key: 'whiteColors100' },\n lineWidth: 1\n },\n state: {\n hover: {\n zIndex: 100,\n stroke: '#000'\n }\n }\n },\n label: {\n position: 'inside',\n style: {\n fill: { type: 'palette', key: 'whiteColors100' },\n fontSize: 12\n }\n }\n};\n"]}
@@ -0,0 +1,2 @@
1
+ import type { ISeriesTheme } from '@visactor/vchart';
2
+ export declare const line: ISeriesTheme['line'];
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: !0
5
+ }), exports.line = void 0, exports.line = {
6
+ line: {
7
+ style: {
8
+ lineWidth: 2,
9
+ curveType: "monotone"
10
+ }
11
+ },
12
+ point: {
13
+ style: {
14
+ visible: !1,
15
+ size: 12,
16
+ lineWidth: 2,
17
+ shadowColor: "rgba(0, 0, 0, 0.1)",
18
+ shadowBlur: 3,
19
+ stroke: {
20
+ type: "palette",
21
+ key: "whiteColors100"
22
+ }
23
+ }
24
+ },
25
+ label: {
26
+ position: "top",
27
+ offset: 4
28
+ }
29
+ };
30
+ //# sourceMappingURL=line.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/common/series/line.ts"],"names":[],"mappings":";;;AAEa,QAAA,IAAI,GAAyB;IACxC,IAAI,EAAE;QACJ,KAAK,EAAE;YACL,SAAS,EAAE,CAAC;YACZ,SAAS,EAAE,UAAU;SACtB;KACF;IACD,KAAK,EAAE;QACL,KAAK,EAAE;YACL,OAAO,EAAE,KAAK;YACd,IAAI,EAAE,EAAE;YACR,SAAS,EAAE,CAAC;YACZ,WAAW,EAAE,oBAAoB;YACjC,UAAU,EAAE,CAAC;YACb,MAAM,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,GAAG,EAAE,gBAAgB,EAAE;SACnD;KACF;IACD,KAAK,EAAE;QACL,QAAQ,EAAE,KAAK;QACf,MAAM,EAAE,CAAC;KACV;CACF,CAAC","file":"line.js","sourcesContent":["import type { ISeriesTheme } from '@visactor/vchart';\n\nexport const line: ISeriesTheme['line'] = {\n line: {\n style: {\n lineWidth: 2,\n curveType: 'monotone'\n }\n },\n point: {\n style: {\n visible: false,\n size: 12,\n lineWidth: 2,\n shadowColor: 'rgba(0, 0, 0, 0.1)',\n shadowBlur: 3,\n stroke: { type: 'palette', key: 'whiteColors100' }\n }\n },\n label: {\n position: 'top',\n offset: 4\n }\n};\n"]}
@@ -0,0 +1,2 @@
1
+ import type { ISeriesTheme } from '@visactor/vchart';
2
+ export declare const pie: ISeriesTheme['pie'];
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: !0
5
+ }), exports.pie = void 0, exports.pie = {
6
+ outerRadius: .8,
7
+ innerRadius: .54,
8
+ pie: {
9
+ style: {
10
+ padAngle: 0,
11
+ stroke: "#fff",
12
+ lineWidth: 2
13
+ },
14
+ state: {
15
+ hover: {
16
+ lineWidth: 0
17
+ },
18
+ selected: {
19
+ lineWidth: 0
20
+ }
21
+ }
22
+ },
23
+ label: {
24
+ visible: !0,
25
+ position: "outside",
26
+ style: {
27
+ fill: null
28
+ }
29
+ }
30
+ };
31
+ //# sourceMappingURL=pie.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/common/series/pie.ts"],"names":[],"mappings":";;;AAEa,QAAA,GAAG,GAAwB;IACtC,WAAW,EAAE,GAAG;IAChB,WAAW,EAAE,IAAI;IACjB,GAAG,EAAE;QACH,KAAK,EAAE;YACL,QAAQ,EAAE,CAAC;YACX,MAAM,EAAE,MAAM;YACd,SAAS,EAAE,CAAC;SACb;QACD,KAAK,EAAE;YACL,KAAK,EAAE;gBACL,SAAS,EAAE,CAAC;aACb;YACD,QAAQ,EAAE;gBACR,SAAS,EAAE,CAAC;aACb;SACF;KACF;IACD,KAAK,EAAE;QACL,OAAO,EAAE,IAAI;QACb,QAAQ,EAAE,SAAS;QACnB,KAAK,EAAE;YACL,IAAI,EAAE,IAAI;SACX;KACF;CACF,CAAC","file":"pie.js","sourcesContent":["import type { ISeriesTheme } from '@visactor/vchart';\n\nexport const pie: ISeriesTheme['pie'] = {\n outerRadius: 0.8,\n innerRadius: 0.54,\n pie: {\n style: {\n padAngle: 0,\n stroke: '#fff',\n lineWidth: 2\n },\n state: {\n hover: {\n lineWidth: 0\n },\n selected: {\n lineWidth: 0\n }\n }\n },\n label: {\n visible: true,\n position: 'outside',\n style: {\n fill: null\n }\n }\n};\n"]}
@@ -0,0 +1,2 @@
1
+ import type { ISeriesTheme } from '@visactor/vchart';
2
+ export declare const radar: ISeriesTheme['radar'];
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: !0
5
+ }), exports.radar = void 0, exports.radar = {
6
+ line: {
7
+ style: {
8
+ lineWidth: 1
9
+ }
10
+ },
11
+ point: {
12
+ style: {
13
+ visible: !1,
14
+ size: 12,
15
+ lineWidth: 2,
16
+ shadowColor: "rgba(0, 0, 0, 0.1)",
17
+ shadowBlur: 3,
18
+ stroke: {
19
+ type: "palette",
20
+ key: "whiteColors100"
21
+ }
22
+ }
23
+ },
24
+ area: {
25
+ visible: !0
26
+ },
27
+ label: {
28
+ position: "top",
29
+ offset: 4
30
+ }
31
+ };
32
+ //# sourceMappingURL=radar.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/common/series/radar.ts"],"names":[],"mappings":";;;AAEa,QAAA,KAAK,GAA0B;IAC1C,IAAI,EAAE;QACJ,KAAK,EAAE;YACL,SAAS,EAAE,CAAC;SACb;KACF;IACD,KAAK,EAAE;QACL,KAAK,EAAE;YACL,OAAO,EAAE,KAAK;YACd,IAAI,EAAE,EAAE;YACR,SAAS,EAAE,CAAC;YACZ,WAAW,EAAE,oBAAoB;YACjC,UAAU,EAAE,CAAC;YACb,MAAM,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,GAAG,EAAE,gBAAgB,EAAE;SACnD;KACF;IACD,IAAI,EAAE;QACJ,OAAO,EAAE,IAAI;KACd;IACD,KAAK,EAAE;QACL,QAAQ,EAAE,KAAK;QACf,MAAM,EAAE,CAAC;KACV;CACF,CAAC","file":"radar.js","sourcesContent":["import type { ISeriesTheme } from '@visactor/vchart';\n\nexport const radar: ISeriesTheme['radar'] = {\n line: {\n style: {\n lineWidth: 1\n }\n },\n point: {\n style: {\n visible: false,\n size: 12,\n lineWidth: 2,\n shadowColor: 'rgba(0, 0, 0, 0.1)',\n shadowBlur: 3,\n stroke: { type: 'palette', key: 'whiteColors100' }\n }\n },\n area: {\n visible: true\n },\n label: {\n position: 'top',\n offset: 4\n }\n};\n"]}
@@ -0,0 +1,2 @@
1
+ import type { ISeriesTheme } from '@visactor/vchart';
2
+ export declare const scatter: ISeriesTheme['scatter'];
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: !0
5
+ }), exports.scatter = void 0, exports.scatter = {
6
+ point: {
7
+ style: {
8
+ symbolType: "circle",
9
+ fillOpacity: .35,
10
+ lineWidth: 1,
11
+ size: 8,
12
+ stroke: null
13
+ }
14
+ },
15
+ label: {
16
+ position: "top"
17
+ }
18
+ };
19
+ //# sourceMappingURL=scatter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/common/series/scatter.ts"],"names":[],"mappings":";;;AAEa,QAAA,OAAO,GAA4B;IAC9C,KAAK,EAAE;QACL,KAAK,EAAE;YACL,UAAU,EAAE,QAAQ;YACpB,WAAW,EAAE,IAAI;YACjB,SAAS,EAAE,CAAC;YACZ,IAAI,EAAE,CAAC;YACP,MAAM,EAAE,IAAI;SACb;KACF;IACD,KAAK,EAAE;QACL,QAAQ,EAAE,KAAK;KAChB;CACF,CAAC","file":"scatter.js","sourcesContent":["import type { ISeriesTheme } from '@visactor/vchart';\n\nexport const scatter: ISeriesTheme['scatter'] = {\n point: {\n style: {\n symbolType: 'circle',\n fillOpacity: 0.35,\n lineWidth: 1,\n size: 8,\n stroke: null\n }\n },\n label: {\n position: 'top'\n }\n};\n"]}
@@ -0,0 +1,2 @@
1
+ import type { ISeriesTheme } from '@visactor/vchart';
2
+ export declare const treemap: ISeriesTheme['treemap'];
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: !0
5
+ }), exports.treemap = void 0, exports.treemap = {
6
+ gapWidth: 0,
7
+ leaf: {
8
+ style: {
9
+ lineWidth: 2,
10
+ stroke: {
11
+ type: "palette",
12
+ key: "whiteColors100"
13
+ }
14
+ },
15
+ state: {
16
+ hover: {
17
+ fillOpacity: .8,
18
+ lineWidth: 0
19
+ }
20
+ }
21
+ },
22
+ label: {
23
+ style: {
24
+ fill: {
25
+ type: "palette",
26
+ key: "whiteColors100"
27
+ }
28
+ }
29
+ }
30
+ };
31
+ //# sourceMappingURL=treemap.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/common/series/treemap.ts"],"names":[],"mappings":";;;AAEa,QAAA,OAAO,GAA4B;IAC9C,QAAQ,EAAE,CAAC;IACX,IAAI,EAAE;QACJ,KAAK,EAAE;YACL,SAAS,EAAE,CAAC;YACZ,MAAM,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,GAAG,EAAE,gBAAgB,EAAE;SACnD;QACD,KAAK,EAAE;YACL,KAAK,EAAE;gBACL,WAAW,EAAE,GAAG;gBAChB,SAAS,EAAE,CAAC;aACb;SACF;KACF;IACD,KAAK,EAAE;QACL,KAAK,EAAE;YACL,IAAI,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,GAAG,EAAE,gBAAgB,EAAE;SACjD;KACF;CACF,CAAC","file":"treemap.js","sourcesContent":["import type { ISeriesTheme } from '@visactor/vchart';\n\nexport const treemap: ISeriesTheme['treemap'] = {\n gapWidth: 0,\n leaf: {\n style: {\n lineWidth: 2,\n stroke: { type: 'palette', key: 'whiteColors100' }\n },\n state: {\n hover: {\n fillOpacity: 0.8,\n lineWidth: 0\n }\n }\n },\n label: {\n style: {\n fill: { type: 'palette', key: 'whiteColors100' }\n }\n }\n};\n"]}
@@ -0,0 +1,2 @@
1
+ import type { BuiltinTokenMap } from '@visactor/vchart';
2
+ export declare const token: Partial<BuiltinTokenMap>;
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: !0
5
+ }), exports.token = void 0, exports.token = {
6
+ fontFamily: '"PingFang SC", "-apple-system", "Segoe UI", "Helvetica Neue", Arial,\n Roboto, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"',
7
+ fontSize: 12
8
+ };
9
+ //# sourceMappingURL=token.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/common/token.ts"],"names":[],"mappings":";;;AAEa,QAAA,KAAK,GAA6B;IAC7C,UAAU,EAER;kHAC8G;IAChH,QAAQ,EAAE,EAAE;CACb,CAAC","file":"token.js","sourcesContent":["import type { BuiltinTokenMap } from '@visactor/vchart';\n\nexport const token: Partial<BuiltinTokenMap> = {\n fontFamily:\n // eslint-disable-next-line max-len\n `\"PingFang SC\", \"-apple-system\", \"Segoe UI\", \"Helvetica Neue\", Arial,\n Roboto, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"`,\n fontSize: 12\n};\n"]}
package/cjs/index.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ import type { ITheme } from '@visactor/vchart';
2
+ export declare const chartAuroraTheme: ITheme;
3
+ export declare const allThemeMap: Map<string, ITheme>;