@carbon/charts 0.41.48 → 0.41.52

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 (272) hide show
  1. package/CHANGELOG.md +20 -11
  2. package/build/demo/data/CHART_TYPES.d.ts +93 -0
  3. package/build/demo/data/bar.d.ts +17 -23
  4. package/build/demo/data/combo.d.ts +3 -0
  5. package/build/demo/data/index.d.ts +16 -92
  6. package/build/demo/data/line.d.ts +3 -77
  7. package/build/demo/data/scatter.d.ts +0 -18
  8. package/build/demo/data/wordcloud.d.ts +14 -0
  9. package/build/src/charts/index.d.ts +1 -0
  10. package/build/src/charts/wordcloud.d.ts +6 -0
  11. package/build/src/components/graphs/wordcloud.d.ts +10 -0
  12. package/build/src/components/index.d.ts +1 -0
  13. package/build/src/configuration.d.ts +2 -1
  14. package/build/src/interfaces/charts.d.ts +23 -0
  15. package/build/src/interfaces/events.d.ts +9 -0
  16. package/bundle.js +1 -1
  17. package/charts/index.d.ts +1 -0
  18. package/charts/index.js +1 -0
  19. package/charts/index.js.map +1 -1
  20. package/charts/wordcloud.d.ts +6 -0
  21. package/charts/wordcloud.js +46 -0
  22. package/charts/wordcloud.js.map +1 -0
  23. package/components/essentials/tooltip-axis.js +1 -1
  24. package/components/essentials/tooltip-axis.js.map +1 -1
  25. package/components/essentials/tooltip.js +5 -2
  26. package/components/essentials/tooltip.js.map +1 -1
  27. package/components/graphs/boxplot.js +2 -2
  28. package/components/graphs/boxplot.js.map +1 -1
  29. package/components/graphs/wordcloud.d.ts +10 -0
  30. package/components/graphs/wordcloud.js +229 -0
  31. package/components/graphs/wordcloud.js.map +1 -0
  32. package/components/index.d.ts +1 -0
  33. package/components/index.js +1 -0
  34. package/components/index.js.map +1 -1
  35. package/configuration.d.ts +2 -1
  36. package/configuration.js +22 -0
  37. package/configuration.js.map +1 -1
  38. package/demo/data/CHART_TYPES.d.ts +93 -0
  39. package/demo/data/CHART_TYPES.js +93 -0
  40. package/demo/data/CHART_TYPES.js.map +1 -0
  41. package/demo/data/area.js +1 -1
  42. package/demo/data/area.js.map +1 -1
  43. package/demo/data/bar.d.ts +17 -23
  44. package/demo/data/bar.js +60 -68
  45. package/demo/data/bar.js.map +1 -1
  46. package/demo/data/boxplot.js +2 -2
  47. package/demo/data/boxplot.js.map +1 -1
  48. package/demo/data/bundle.js +1 -1
  49. package/demo/data/combo.d.ts +3 -0
  50. package/demo/data/combo.js +3 -0
  51. package/demo/data/combo.js.map +1 -1
  52. package/demo/data/index.d.ts +16 -92
  53. package/demo/data/index.js +404 -512
  54. package/demo/data/index.js.map +1 -1
  55. package/demo/data/line.d.ts +3 -77
  56. package/demo/data/line.js +9 -73
  57. package/demo/data/line.js.map +1 -1
  58. package/demo/data/scatter.d.ts +0 -18
  59. package/demo/data/scatter.js +0 -51
  60. package/demo/data/scatter.js.map +1 -1
  61. package/demo/data/wordcloud.d.ts +14 -0
  62. package/demo/data/wordcloud.js +105 -0
  63. package/demo/data/wordcloud.js.map +1 -0
  64. package/demo/styles.css +2827 -28
  65. package/demo/styles.css.map +1 -1
  66. package/demo/styles.min.css +1 -1
  67. package/demo/styles.min.css.map +1 -1
  68. package/demo/tsconfig.tsbuildinfo +47 -312
  69. package/interfaces/charts.d.ts +23 -0
  70. package/interfaces/charts.js.map +1 -1
  71. package/interfaces/events.d.ts +9 -0
  72. package/interfaces/events.js +10 -0
  73. package/interfaces/events.js.map +1 -1
  74. package/model.js +1 -1
  75. package/model.js.map +1 -1
  76. package/package.json +8 -7
  77. package/styles/_type.scss +4 -2
  78. package/styles/graphs/_wordcloud.scss +7 -0
  79. package/styles/graphs/index.scss +1 -0
  80. package/styles/vendor/@carbon/colors/README.md +4 -3
  81. package/styles/vendor/@carbon/colors/es/index.js +13 -12
  82. package/styles/vendor/@carbon/colors/lib/index.js +98 -93
  83. package/styles/vendor/@carbon/colors/package.json +14 -10
  84. package/styles/vendor/@carbon/colors/scss/colors.scss +1 -1
  85. package/styles/vendor/@carbon/colors/scss/index.scss +1 -1
  86. package/styles/vendor/@carbon/colors/scss/mixins.scss +33 -13
  87. package/styles/vendor/@carbon/colors/umd/index.js +99 -94
  88. package/styles/vendor/@carbon/elements/README.md +0 -6
  89. package/styles/vendor/@carbon/elements/es/index.js +4 -11
  90. package/styles/vendor/@carbon/elements/lib/index.js +959 -13
  91. package/styles/vendor/@carbon/elements/package.json +17 -13
  92. package/styles/vendor/@carbon/elements/scss/colors/colors.scss +1 -1
  93. package/styles/vendor/@carbon/elements/scss/colors/index.scss +1 -1
  94. package/styles/vendor/@carbon/elements/scss/colors/mixins.scss +33 -13
  95. package/styles/vendor/@carbon/elements/scss/grid/_inlined/_mixins.scss +82 -22
  96. package/styles/vendor/@carbon/elements/scss/grid/_mixins.scss +82 -22
  97. package/styles/vendor/@carbon/elements/scss/grid/modules/_breakpoint.scss +266 -0
  98. package/styles/vendor/@carbon/{themes/node_modules/@carbon/colors/scss/colors.scss → elements/scss/grid/modules/_config.scss} +6 -6
  99. package/styles/vendor/@carbon/elements/scss/grid/modules/_css-grid.scss +350 -0
  100. package/styles/vendor/@carbon/elements/scss/grid/modules/_mixins.scss +323 -0
  101. package/styles/vendor/@carbon/elements/scss/grid/vendor/@carbon/layout/_breakpoint.scss +8 -3
  102. package/styles/vendor/@carbon/elements/scss/grid/vendor/@carbon/layout/modules/_breakpoint.scss +232 -0
  103. package/styles/vendor/@carbon/elements/scss/grid/vendor/@carbon/layout/modules/_convert.scss +40 -0
  104. package/styles/vendor/@carbon/elements/scss/grid/vendor/@carbon/layout/modules/_spacing.scss +9 -0
  105. package/styles/vendor/@carbon/elements/scss/grid/vendor/@carbon/layout/modules/_utilities.scss +41 -0
  106. package/styles/vendor/@carbon/elements/scss/grid/vendor/@carbon/layout/modules/generated/_fluid-spacing.scss +37 -0
  107. package/styles/vendor/@carbon/elements/scss/grid/vendor/@carbon/layout/modules/generated/_spacing.scss +85 -0
  108. package/styles/vendor/@carbon/elements/scss/layout/_breakpoint.scss +8 -3
  109. package/styles/vendor/@carbon/elements/scss/layout/modules/_breakpoint.scss +232 -0
  110. package/styles/vendor/@carbon/elements/scss/layout/modules/_convert.scss +40 -0
  111. package/styles/vendor/@carbon/elements/scss/layout/modules/_spacing.scss +9 -0
  112. package/styles/vendor/@carbon/elements/scss/layout/modules/_utilities.scss +41 -0
  113. package/styles/vendor/@carbon/elements/scss/layout/modules/generated/_fluid-spacing.scss +37 -0
  114. package/styles/vendor/@carbon/elements/scss/layout/modules/generated/_spacing.scss +85 -0
  115. package/styles/vendor/@carbon/elements/scss/motion/motion.scss +24 -0
  116. package/styles/vendor/@carbon/elements/scss/themes/generated/_mixins.scss +643 -138
  117. package/styles/vendor/@carbon/elements/scss/themes/generated/_themes.scss +154 -77
  118. package/styles/vendor/@carbon/elements/scss/themes/generated/_tokens.scss +157 -75
  119. package/styles/vendor/@carbon/elements/scss/themes/modules/_theme.scss +50 -0
  120. package/styles/vendor/@carbon/elements/scss/themes/modules/_themes.scss +8 -0
  121. package/styles/vendor/@carbon/elements/scss/themes/modules/_utilities.scss +18 -0
  122. package/styles/vendor/@carbon/elements/scss/themes/modules/generated/_themes.scss +247 -0
  123. package/styles/vendor/@carbon/elements/scss/type/_font-family.scss +2 -2
  124. package/styles/vendor/@carbon/elements/scss/type/_inlined/_font-family.scss +2 -2
  125. package/styles/vendor/@carbon/elements/scss/type/_inlined/_reset.scss +9 -3
  126. package/styles/vendor/@carbon/elements/scss/type/_inlined/_scale.scss +2 -2
  127. package/styles/vendor/@carbon/elements/scss/type/_inlined/_styles.scss +60 -57
  128. package/styles/vendor/@carbon/elements/scss/type/_inlined/font-face/_mono.scss +72 -72
  129. package/styles/vendor/@carbon/elements/scss/type/_inlined/font-face/_sans-condensed.scss +302 -0
  130. package/styles/vendor/@carbon/elements/scss/type/_inlined/font-face/_sans.scss +84 -84
  131. package/styles/vendor/@carbon/elements/scss/type/_inlined/font-face/_serif.scss +72 -72
  132. package/styles/vendor/@carbon/elements/scss/type/_reset.scss +9 -3
  133. package/styles/vendor/@carbon/elements/scss/type/_scale.scss +2 -2
  134. package/styles/vendor/@carbon/elements/scss/type/_styles.scss +60 -57
  135. package/styles/vendor/@carbon/elements/scss/type/font-face/_mono.scss +72 -72
  136. package/styles/vendor/@carbon/elements/scss/type/font-face/_sans-condensed.scss +302 -0
  137. package/styles/vendor/@carbon/elements/scss/type/font-face/_sans.scss +84 -84
  138. package/styles/vendor/@carbon/elements/scss/type/font-face/_serif.scss +72 -72
  139. package/styles/vendor/@carbon/elements/scss/type/modules/_classes.scss +42 -0
  140. package/styles/vendor/@carbon/elements/scss/type/modules/_font-family.scss +70 -0
  141. package/styles/vendor/@carbon/elements/scss/type/modules/_prefix.scss +11 -0
  142. package/styles/vendor/@carbon/elements/scss/type/modules/_reset.scss +92 -0
  143. package/styles/vendor/@carbon/elements/scss/type/modules/_scale.scss +56 -0
  144. package/styles/vendor/@carbon/elements/scss/type/modules/_styles.scss +713 -0
  145. package/styles/vendor/@carbon/elements/scss/type/vendor/@carbon/layout/_breakpoint.scss +8 -3
  146. package/styles/vendor/@carbon/elements/scss/type/vendor/@carbon/layout/modules/_breakpoint.scss +232 -0
  147. package/styles/vendor/@carbon/elements/scss/type/vendor/@carbon/layout/modules/_convert.scss +40 -0
  148. package/styles/vendor/@carbon/elements/scss/type/vendor/@carbon/layout/modules/_spacing.scss +9 -0
  149. package/styles/vendor/@carbon/elements/scss/type/vendor/@carbon/layout/modules/_utilities.scss +41 -0
  150. package/styles/vendor/@carbon/elements/scss/type/vendor/@carbon/layout/modules/generated/_fluid-spacing.scss +37 -0
  151. package/styles/vendor/@carbon/elements/scss/type/vendor/@carbon/layout/modules/generated/_spacing.scss +85 -0
  152. package/styles/vendor/@carbon/elements/src/__tests__/PublicAPI-test.js +12 -0
  153. package/styles/vendor/@carbon/elements/src/__tests__/__snapshots__/PublicAPI-test.js.snap +306 -0
  154. package/styles/vendor/@carbon/elements/src/index.js +166 -4
  155. package/styles/vendor/@carbon/elements/umd/index.js +961 -17
  156. package/styles/vendor/@carbon/layout/README.md +0 -6
  157. package/styles/vendor/@carbon/layout/es/index.js +1 -1
  158. package/styles/vendor/@carbon/{themes/node_modules/@carbon/colors/scss → layout}/index.scss +5 -6
  159. package/styles/vendor/@carbon/layout/lib/index.js +30 -30
  160. package/styles/vendor/@carbon/layout/package.json +14 -10
  161. package/styles/vendor/@carbon/layout/scss/_breakpoint.scss +8 -3
  162. package/styles/vendor/@carbon/layout/scss/modules/_breakpoint.scss +232 -0
  163. package/styles/vendor/@carbon/layout/scss/modules/_convert.scss +40 -0
  164. package/styles/vendor/@carbon/layout/scss/modules/_spacing.scss +9 -0
  165. package/styles/vendor/@carbon/layout/scss/modules/_utilities.scss +41 -0
  166. package/styles/vendor/@carbon/layout/scss/modules/generated/_fluid-spacing.scss +37 -0
  167. package/styles/vendor/@carbon/layout/scss/modules/generated/_spacing.scss +85 -0
  168. package/styles/vendor/@carbon/layout/umd/index.js +31 -31
  169. package/styles/vendor/@carbon/motion/README.md +0 -6
  170. package/styles/vendor/@carbon/motion/es/index.js +8 -1
  171. package/styles/vendor/@carbon/motion/index.scss +56 -0
  172. package/styles/vendor/@carbon/motion/lib/index.js +14 -0
  173. package/styles/vendor/@carbon/motion/package.json +10 -6
  174. package/styles/vendor/@carbon/motion/scss/motion.scss +24 -0
  175. package/styles/vendor/@carbon/motion/src/index.js +16 -0
  176. package/styles/vendor/@carbon/motion/umd/index.js +15 -1
  177. package/styles/vendor/@carbon/themes/README.md +5 -4
  178. package/styles/vendor/@carbon/themes/es/index.js +719 -57
  179. package/styles/vendor/@carbon/themes/index.scss +9 -0
  180. package/styles/vendor/@carbon/themes/lib/index.js +1297 -251
  181. package/styles/vendor/@carbon/themes/metadata.yml +3 -0
  182. package/styles/vendor/@carbon/themes/package.json +23 -14
  183. package/styles/vendor/@carbon/themes/scss/_mixins.scss +27 -146
  184. package/styles/vendor/@carbon/themes/scss/_theme-maps.scss +3 -263
  185. package/styles/vendor/@carbon/themes/scss/_tokens.scss +2 -297
  186. package/styles/vendor/@carbon/themes/scss/generated/_mixins.scss +1851 -0
  187. package/styles/vendor/@carbon/themes/scss/generated/_themes.scss +1534 -0
  188. package/styles/vendor/@carbon/themes/scss/generated/_tokens.scss +1757 -0
  189. package/styles/vendor/@carbon/themes/scss/modules/_theme.scss +50 -0
  190. package/styles/vendor/@carbon/themes/scss/modules/_themes.scss +8 -0
  191. package/styles/vendor/@carbon/themes/scss/modules/_utilities.scss +18 -0
  192. package/styles/vendor/@carbon/themes/scss/modules/generated/_themes.scss +247 -0
  193. package/styles/vendor/@carbon/themes/scss/themes.scss +3 -2
  194. package/styles/vendor/@carbon/themes/src/g10.js +97 -5
  195. package/styles/vendor/@carbon/themes/src/g100.js +96 -4
  196. package/styles/vendor/@carbon/themes/src/g90.js +98 -6
  197. package/styles/vendor/@carbon/themes/src/index.js +5 -3
  198. package/styles/vendor/@carbon/themes/src/tokens.js +112 -2
  199. package/styles/vendor/@carbon/themes/src/tools.js +25 -0
  200. package/styles/vendor/@carbon/themes/src/v9.js +181 -0
  201. package/styles/vendor/@carbon/themes/src/white.js +98 -3
  202. package/styles/vendor/@carbon/themes/umd/index.js +1297 -254
  203. package/styles/vendor/@carbon/type/README.md +0 -6
  204. package/styles/vendor/@carbon/type/es/index.js +111 -82
  205. package/styles/vendor/@carbon/type/lib/index.js +132 -103
  206. package/styles/vendor/@carbon/type/package.json +12 -8
  207. package/styles/vendor/@carbon/type/scss/_font-family.scss +2 -2
  208. package/styles/vendor/@carbon/type/scss/_inlined/_font-family.scss +2 -2
  209. package/styles/vendor/@carbon/type/scss/_inlined/_reset.scss +9 -3
  210. package/styles/vendor/@carbon/type/scss/_inlined/_scale.scss +2 -2
  211. package/styles/vendor/@carbon/type/scss/_inlined/_styles.scss +60 -57
  212. package/styles/vendor/@carbon/type/scss/_inlined/font-face/_mono.scss +72 -72
  213. package/styles/vendor/@carbon/type/scss/_inlined/font-face/_sans-condensed.scss +302 -0
  214. package/styles/vendor/@carbon/type/scss/_inlined/font-face/_sans.scss +84 -84
  215. package/styles/vendor/@carbon/type/scss/_inlined/font-face/_serif.scss +72 -72
  216. package/styles/vendor/@carbon/type/scss/_reset.scss +9 -3
  217. package/styles/vendor/@carbon/type/scss/_scale.scss +2 -2
  218. package/styles/vendor/@carbon/type/scss/_styles.scss +60 -57
  219. package/styles/vendor/@carbon/type/scss/font-face/_mono.scss +72 -72
  220. package/styles/vendor/@carbon/type/scss/font-face/_sans-condensed.scss +302 -0
  221. package/styles/vendor/@carbon/type/scss/font-face/_sans.scss +84 -84
  222. package/styles/vendor/@carbon/type/scss/font-face/_serif.scss +72 -72
  223. package/styles/vendor/@carbon/type/scss/modules/_classes.scss +42 -0
  224. package/styles/vendor/@carbon/type/scss/modules/_font-family.scss +70 -0
  225. package/styles/vendor/@carbon/type/scss/modules/_prefix.scss +11 -0
  226. package/styles/vendor/@carbon/type/scss/modules/_reset.scss +92 -0
  227. package/styles/vendor/@carbon/type/scss/modules/_scale.scss +56 -0
  228. package/styles/vendor/@carbon/type/scss/modules/_styles.scss +713 -0
  229. package/styles/vendor/@carbon/type/scss/vendor/@carbon/layout/_breakpoint.scss +8 -3
  230. package/styles/vendor/@carbon/type/scss/vendor/@carbon/layout/modules/_breakpoint.scss +232 -0
  231. package/styles/vendor/@carbon/type/scss/vendor/@carbon/layout/modules/_convert.scss +40 -0
  232. package/styles/vendor/@carbon/type/scss/vendor/@carbon/layout/modules/_spacing.scss +9 -0
  233. package/styles/vendor/@carbon/type/scss/vendor/@carbon/layout/modules/_utilities.scss +41 -0
  234. package/styles/vendor/@carbon/type/scss/vendor/@carbon/layout/modules/generated/_fluid-spacing.scss +37 -0
  235. package/styles/vendor/@carbon/type/scss/vendor/@carbon/layout/modules/generated/_spacing.scss +85 -0
  236. package/styles/vendor/@carbon/type/src/__tests__/__snapshots__/styles-test.js.snap +32 -34
  237. package/styles/vendor/@carbon/type/src/__tests__/exports-test.js +1 -1
  238. package/styles/vendor/@carbon/type/src/__tests__/fluid-test.js +26 -26
  239. package/styles/vendor/@carbon/type/src/__tests__/styles-test.js +1 -1
  240. package/styles/vendor/@carbon/type/src/__tests__/tokens-test.js +2 -2
  241. package/styles/vendor/@carbon/type/src/fluid.js +1 -1
  242. package/styles/vendor/@carbon/type/src/index.js +1 -1
  243. package/styles/vendor/@carbon/type/src/styles.js +65 -64
  244. package/styles/vendor/@carbon/type/src/tokens.js +64 -31
  245. package/styles/vendor/@carbon/type/umd/index.js +134 -105
  246. package/styles-g10.css +570 -2
  247. package/styles-g10.css.map +1 -1
  248. package/styles-g10.min.css +1 -1
  249. package/styles-g10.min.css.map +1 -1
  250. package/styles-g100.css +574 -6
  251. package/styles-g100.css.map +1 -1
  252. package/styles-g100.min.css +1 -1
  253. package/styles-g100.min.css.map +1 -1
  254. package/styles-g90.css +574 -6
  255. package/styles-g90.css.map +1 -1
  256. package/styles-g90.min.css +1 -1
  257. package/styles-g90.min.css.map +1 -1
  258. package/styles.css +570 -2
  259. package/styles.css.map +1 -1
  260. package/styles.min.css +1 -1
  261. package/styles.min.css.map +1 -1
  262. package/tools.js +1 -1
  263. package/tools.js.map +1 -1
  264. package/tsconfig.tsbuildinfo +67 -17
  265. package/styles/vendor/@carbon/layout/docs/sass.md +0 -1899
  266. package/styles/vendor/@carbon/themes/node_modules/@carbon/colors/LICENSE +0 -201
  267. package/styles/vendor/@carbon/themes/node_modules/@carbon/colors/README.md +0 -154
  268. package/styles/vendor/@carbon/themes/node_modules/@carbon/colors/es/index.js +0 -287
  269. package/styles/vendor/@carbon/themes/node_modules/@carbon/colors/lib/index.js +0 -410
  270. package/styles/vendor/@carbon/themes/node_modules/@carbon/colors/package.json +0 -51
  271. package/styles/vendor/@carbon/themes/node_modules/@carbon/colors/scss/mixins.scss +0 -646
  272. package/styles/vendor/@carbon/themes/node_modules/@carbon/colors/umd/index.js +0 -416
@@ -125,8 +125,12 @@
125
125
  "version": "9f18fe4afbef45c908210bcde7dc81a37675328359eda9a907140e37e2c7bfc6",
126
126
  "signature": "d724df3ce3a3741dedb702bc6232cb4e516c98ff859152699c897fb5c1deae31"
127
127
  },
128
+ "../../demo/data/CHART_TYPES.ts": {
129
+ "version": "5141859a081c663b56de45a7c9edcb550a502ed5342524688d79a0cf5b4728a6",
130
+ "signature": "cbaec7c440cc0e466696d62a1f5b9d807e5bb2565af0133878b49b1e6b01ad1f"
131
+ },
128
132
  "../../demo/data/area.ts": {
129
- "version": "8ff98a1828aaa133dfdbc060ab9ceb191ea1a302686001aae8517caf917be6d4",
133
+ "version": "38147366f416550a5265f38ad12f962680c7814951ba2567e46d9aafe2dc6684",
130
134
  "signature": "0f5f743530ae4a1870a65b2329b7d53a643043372ca35083cd2c61cb665549d9"
131
135
  },
132
136
  "../../../../node_modules/date-fns/typings.d.ts": {
@@ -138,11 +142,11 @@
138
142
  "signature": "37dce3c308ecb1ef88ddf7c9f9346d64c2b09a36eb7dcd4fe9d9736f5608107f"
139
143
  },
140
144
  "../../demo/data/bar.ts": {
141
- "version": "0080adb4759e07ed7f98b56a32a571862ad7d7c86b0455d149143969539191ce",
142
- "signature": "a1e31e2ee1781dad367d536ed3d6f92792b671ef6bc531683ceffa28d7ea9c9d"
145
+ "version": "b4c4ec712f84c5b01ec1df787468eabb45ee8ec49d10896cfc16d7bbe2f4b53a",
146
+ "signature": "7692ca62883176c460aa7a9a5b3506a9bafae2ed6be5ee3b9650c23fa86615e5"
143
147
  },
144
148
  "../../demo/data/boxplot.ts": {
145
- "version": "155a4ee121434836d83cdabf8b32caf201da5f33b3891616ba3af9d3fa788083",
149
+ "version": "829b5bce144ea2f835021047e37ab51f821a90432e23f75932e92caecdef8e6e",
146
150
  "signature": "835715dcde95fe8b2dcec159736d2b971fa87d8c3f3868a82740d4668750359d"
147
151
  },
148
152
  "../../../../node_modules/@types/d3-array/index.d.ts": {
@@ -274,16 +278,16 @@
274
278
  "signature": "ff07d0e1e23dcc09b7868c330f7d1a554357c1ed2ec211b90dc4f4fbc406cd77"
275
279
  },
276
280
  "../../demo/data/line.ts": {
277
- "version": "bd739df5795cd7fb17ef7738999a6bf8ed865092b05dc0c80a06fff16f679980",
278
- "signature": "d73f679a0b56a67838b8f038dfe5885ec32278e07e2edebb03236db2a5902494"
281
+ "version": "ac13e1ec6e0b4a6a79a78cc714d17625c466b980498375941403f01ae5e8c0a8",
282
+ "signature": "1c2159ff2cf3e2bb01fdb94f49a7f30cb8308a7bfd12aaf6f5a01e9d5f5b8dc4"
279
283
  },
280
284
  "../../demo/data/bubble.ts": {
281
285
  "version": "53e4c8d16f2131c79a0414c0c2a86f6e4bdc663fecd6e1a142e3569241df06fc",
282
286
  "signature": "5f971e9544c4c5f5f7c2b82e997d49bfb78c1834bbab909f0a21c5dace641fef"
283
287
  },
284
288
  "../../demo/data/combo.ts": {
285
- "version": "ded18a521aee8b3a6712313b332a5d2d6b858fb4204ab5b2dd2888b350f4ae8b",
286
- "signature": "80d504fdbd701cabe046f736da36adb60b2e7fae656016a3190cad11797fd27a"
289
+ "version": "b8d59a88e89f82c77a516f5f3db692065f2ca6cc6fc925a3beb08cedb4c00a3f",
290
+ "signature": "4ca389a67509e16febea726190c0a3b8799ecb52b5024ffbaa855e7893227ec6"
287
291
  },
288
292
  "../../demo/data/pie.ts": {
289
293
  "version": "112e7eefe70adc6e8e3b221a4cb373bd40f04ad2b24bade565181a38bd37ac81",
@@ -298,8 +302,8 @@
298
302
  "signature": "1356f9fd82a936b9e50f2cf0f191486b56799341f8f2ad001cbed37662e2a681"
299
303
  },
300
304
  "../../demo/data/scatter.ts": {
301
- "version": "0768dceb17a0924f30290ffc14fc47a750148e9d2fd77fee56829bb5860121ff",
302
- "signature": "ba75251ed87a975de056888aae9cb16925229cb70f38b8ab39d411549a165078"
305
+ "version": "1bfec2bc427066081c7d68fd733dcde8b2d7aa24d3dcb2e5047add54445ab522",
306
+ "signature": "49cfd65b314166fc7f8bb39fe4d7e4820594826410562ce9bdbadfe592fb21e7"
303
307
  },
304
308
  "../../demo/data/step.ts": {
305
309
  "version": "4cf3c0e43d80e271115fd34264253bb9dee1a54198b7020a3e840d884fa494be",
@@ -341,61 +345,13 @@
341
345
  "version": "a448c23441e957e91a76209f1a4a3ee8bd347f5bcca22f40a10b5505b3dc476e",
342
346
  "signature": "366baf83310f18e4bf48cc82c3df5df4c8754adf1bbdcbbbf67554073e2663ff"
343
347
  },
344
- "../../src/interfaces/a11y.ts": {
345
- "version": "95edee9e66eb5c6dd0060018df015a4a079945b22b2b5788573094ea68a928be",
346
- "signature": "95edee9e66eb5c6dd0060018df015a4a079945b22b2b5788573094ea68a928be"
347
- },
348
- "../../src/interfaces/events.ts": {
349
- "version": "a1fa01983db9af6999200bdac2c18929c4ec36086714c170dfd59e092cf70eec",
350
- "signature": "a1fa01983db9af6999200bdac2c18929c4ec36086714c170dfd59e092cf70eec"
351
- },
352
- "../../src/interfaces/enums.ts": {
353
- "version": "908bb56d896567f1c71904fb9e60eaaa89663eb8637ef97c632ec1c6e8e541cd",
354
- "signature": "908bb56d896567f1c71904fb9e60eaaa89663eb8637ef97c632ec1c6e8e541cd"
355
- },
356
- "../../src/model.ts": {
357
- "version": "8bedc18177c923dcb683c31b84e33bf64b49d018d268fe88cc40842dd74dea29",
358
- "signature": "8bedc18177c923dcb683c31b84e33bf64b49d018d268fe88cc40842dd74dea29"
359
- },
360
- "../../src/components/component.ts": {
361
- "version": "b92c3d1d9c504d891ce52e3442de9ba7ef84538ee604b88edfc823add134cf5d",
362
- "signature": "b92c3d1d9c504d891ce52e3442de9ba7ef84538ee604b88edfc823add134cf5d"
363
- },
364
- "../../src/interfaces/truncation.ts": {
365
- "version": "e13ca1760c1d894f0cbb054be895f12207ff8a8708be12a18944832c02dd7ab2",
366
- "signature": "e13ca1760c1d894f0cbb054be895f12207ff8a8708be12a18944832c02dd7ab2"
367
- },
368
- "../../src/interfaces/components.ts": {
369
- "version": "8b229f443a4932bebcaa4dd283276b8f676933cdbfcf6790549323b71c06ff59",
370
- "signature": "8b229f443a4932bebcaa4dd283276b8f676933cdbfcf6790549323b71c06ff59"
371
- },
372
- "../../src/interfaces/axis-scales.ts": {
373
- "version": "5c97b5470761d6a1efca59cf6e995e6e6e4cd5bb3054bc6b71c366049464ce5d",
374
- "signature": "5c97b5470761d6a1efca59cf6e995e6e6e4cd5bb3054bc6b71c366049464ce5d"
375
- },
376
- "../../src/interfaces/charts.ts": {
377
- "version": "cbb2667859a50decf1798865056cd5e5dc6563f831cff28348ddc70ed97752e7",
378
- "signature": "cbb2667859a50decf1798865056cd5e5dc6563f831cff28348ddc70ed97752e7"
379
- },
380
- "../../src/interfaces/layout.ts": {
381
- "version": "3b70dfad0fc0aede74ab026fca88931f3b2a039a3362a3e3bd3293a0a762672f",
382
- "signature": "3b70dfad0fc0aede74ab026fca88931f3b2a039a3362a3e3bd3293a0a762672f"
383
- },
384
- "../../src/interfaces/model.ts": {
385
- "version": "20db80afaade30e0bdeb904bb21df1562874d8dde1da7c54b96257469e949827",
386
- "signature": "20db80afaade30e0bdeb904bb21df1562874d8dde1da7c54b96257469e949827"
387
- },
388
- "../../src/interfaces/index.ts": {
389
- "version": "958c5f71e7645df55230b1e48da7c37a8898e35bf7da3a3871463755e2506ea0",
390
- "signature": "958c5f71e7645df55230b1e48da7c37a8898e35bf7da3a3871463755e2506ea0"
391
- },
392
- "../../src/tools.ts": {
393
- "version": "b766c38614e2a36e1261b020b9b9b8ff8ccb7fb756c1de28bbbbcd0f606bd741",
394
- "signature": "b766c38614e2a36e1261b020b9b9b8ff8ccb7fb756c1de28bbbbcd0f606bd741"
348
+ "../../demo/data/wordcloud.ts": {
349
+ "version": "448ee7979611d70cecde9630b77c41835f667df46df74292de85cdb6cc0c9b0e",
350
+ "signature": "d673d937720b7b8f8161e266762631615606bcd7214281ceb62ba79b15b38690"
395
351
  },
396
352
  "../../demo/data/index.ts": {
397
- "version": "45a28526a2ee03c138fc0f41c6e99cace68ca349b4401d96bec17492ab1d7150",
398
- "signature": "879a5b4b65fd57eca81ceaf398b3735e8cd21273b4e0e7228316440a9e03f9ce"
353
+ "version": "73d115fce4d064cfc95241c37aeeb0994cd2854aa936e62cb218740b11a4b908",
354
+ "signature": "fd5e8eae0245f44116c50d37da25e895518ec1bb8bbad8c4b1fcb70514d5a872"
399
355
  },
400
356
  "../../node_modules/@types/node/globals.d.ts": {
401
357
  "version": "6cf62fbc792aa81fa62f99dab5cc692c5315ecd5da09dd35f1ccc82778c4d5bc",
@@ -842,6 +798,13 @@
842
798
  "../../node_modules/@types/node/util.d.ts",
843
799
  "../../node_modules/@types/node/ts3.2/util.d.ts"
844
800
  ],
801
+ "../../demo/data/CHART_TYPES.ts": [
802
+ "../../../../node_modules/date-fns/typings.d.ts",
803
+ "../../node_modules/@types/node/fs.d.ts",
804
+ "../../node_modules/@types/node/ts3.2/fs.d.ts",
805
+ "../../node_modules/@types/node/util.d.ts",
806
+ "../../node_modules/@types/node/ts3.2/util.d.ts"
807
+ ],
845
808
  "../../demo/data/area.ts": [
846
809
  "../../../../node_modules/date-fns/typings.d.ts",
847
810
  "../../node_modules/@types/node/fs.d.ts",
@@ -1277,116 +1240,7 @@
1277
1240
  "../../node_modules/@types/node/util.d.ts",
1278
1241
  "../../node_modules/@types/node/ts3.2/util.d.ts"
1279
1242
  ],
1280
- "../../src/interfaces/a11y.ts": [
1281
- "../../../../node_modules/date-fns/typings.d.ts",
1282
- "../../node_modules/@types/node/fs.d.ts",
1283
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
1284
- "../../node_modules/@types/node/util.d.ts",
1285
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1286
- ],
1287
- "../../src/interfaces/events.ts": [
1288
- "../../../../node_modules/date-fns/typings.d.ts",
1289
- "../../node_modules/@types/node/fs.d.ts",
1290
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
1291
- "../../node_modules/@types/node/util.d.ts",
1292
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1293
- ],
1294
- "../../src/interfaces/enums.ts": [
1295
- "../interfaces/events.d.ts",
1296
- "../../../../node_modules/date-fns/typings.d.ts",
1297
- "../../node_modules/@types/node/fs.d.ts",
1298
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
1299
- "../../node_modules/@types/node/util.d.ts",
1300
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1301
- ],
1302
- "../../src/model.ts": [
1303
- "../interfaces/index.d.ts",
1304
- "../../../../node_modules/date-fns/typings.d.ts",
1305
- "../../node_modules/@types/node/fs.d.ts",
1306
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
1307
- "../../node_modules/@types/node/util.d.ts",
1308
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1309
- ],
1310
- "../../src/components/component.ts": [
1311
- "../model.d.ts",
1312
- "../../../../node_modules/date-fns/typings.d.ts",
1313
- "../../node_modules/@types/node/fs.d.ts",
1314
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
1315
- "../../node_modules/@types/node/util.d.ts",
1316
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1317
- ],
1318
- "../../src/interfaces/truncation.ts": [
1319
- "../../../../node_modules/date-fns/typings.d.ts",
1320
- "../../node_modules/@types/node/fs.d.ts",
1321
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
1322
- "../../node_modules/@types/node/util.d.ts",
1323
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1324
- ],
1325
- "../../src/interfaces/components.ts": [
1326
- "../interfaces/enums.d.ts",
1327
- "../components/component.d.ts",
1328
- "../interfaces/truncation.d.ts",
1329
- "../../../../node_modules/date-fns/typings.d.ts",
1330
- "../../node_modules/@types/node/fs.d.ts",
1331
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
1332
- "../../node_modules/@types/node/util.d.ts",
1333
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1334
- ],
1335
- "../../src/interfaces/axis-scales.ts": [
1336
- "../interfaces/enums.d.ts",
1337
- "../../../../node_modules/@types/d3/index.d.ts",
1338
- "../../../../node_modules/date-fns/typings.d.ts",
1339
- "../interfaces/components.d.ts",
1340
- "../interfaces/truncation.d.ts",
1341
- "../../node_modules/@types/node/fs.d.ts",
1342
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
1343
- "../../node_modules/@types/node/util.d.ts",
1344
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1345
- ],
1346
- "../../src/interfaces/charts.ts": [
1347
- "../interfaces/enums.d.ts",
1348
- "../interfaces/index.d.ts",
1349
- "../interfaces/components.d.ts",
1350
- "../interfaces/axis-scales.d.ts",
1351
- "../../../../node_modules/date-fns/typings.d.ts",
1352
- "../../node_modules/@types/node/fs.d.ts",
1353
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
1354
- "../../node_modules/@types/node/util.d.ts",
1355
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1356
- ],
1357
- "../../src/interfaces/layout.ts": [
1358
- "../interfaces/enums.d.ts",
1359
- "../../../../node_modules/date-fns/typings.d.ts",
1360
- "../../node_modules/@types/node/fs.d.ts",
1361
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
1362
- "../../node_modules/@types/node/util.d.ts",
1363
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1364
- ],
1365
- "../../src/interfaces/model.ts": [
1366
- "../interfaces/charts.d.ts",
1367
- "../../../../node_modules/date-fns/typings.d.ts",
1368
- "../../node_modules/@types/node/fs.d.ts",
1369
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
1370
- "../../node_modules/@types/node/util.d.ts",
1371
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1372
- ],
1373
- "../../src/interfaces/index.ts": [
1374
- "../interfaces/a11y.d.ts",
1375
- "../interfaces/axis-scales.d.ts",
1376
- "../interfaces/charts.d.ts",
1377
- "../interfaces/components.d.ts",
1378
- "../interfaces/enums.d.ts",
1379
- "../interfaces/layout.d.ts",
1380
- "../interfaces/model.d.ts",
1381
- "../../../../node_modules/date-fns/typings.d.ts",
1382
- "../../node_modules/@types/node/fs.d.ts",
1383
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
1384
- "../../node_modules/@types/node/util.d.ts",
1385
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1386
- ],
1387
- "../../src/tools.ts": [
1388
- "../interfaces/index.d.ts",
1389
- "../../../../node_modules/@types/d3/index.d.ts",
1243
+ "../../demo/data/wordcloud.ts": [
1390
1244
  "../../../../node_modules/date-fns/typings.d.ts",
1391
1245
  "../../node_modules/@types/node/fs.d.ts",
1392
1246
  "../../node_modules/@types/node/ts3.2/fs.d.ts",
@@ -1398,23 +1252,24 @@
1398
1252
  "../../demo/data/bar.ts",
1399
1253
  "../../demo/data/boxplot.ts",
1400
1254
  "../../demo/data/bubble.ts",
1255
+ "../../demo/data/combo.ts",
1401
1256
  "../../demo/data/donut.ts",
1257
+ "../../demo/data/gauge.ts",
1402
1258
  "../../demo/data/line.ts",
1259
+ "../../demo/data/lollipop.ts",
1260
+ "../../demo/data/meter.ts",
1403
1261
  "../../demo/data/pie.ts",
1404
- "../../demo/data/gauge.ts",
1262
+ "../../demo/data/radar.ts",
1405
1263
  "../../demo/data/scatter.ts",
1406
- "../../demo/data/lollipop.ts",
1407
1264
  "../../demo/data/step.ts",
1408
- "../../demo/data/meter.ts",
1409
1265
  "../../demo/data/time-series-axis.ts",
1410
- "../../demo/data/radar.ts",
1411
1266
  "../../demo/data/treemap.ts",
1412
1267
  "../../demo/data/toolbar.ts",
1268
+ "../../demo/data/wordcloud.ts",
1413
1269
  "../../demo/data/zoom-bar.ts",
1414
- "../../demo/data/combo.ts",
1415
1270
  "../../demo/data/high-scale.ts",
1416
1271
  "../../demo/create-codesandbox.ts",
1417
- "../tools.d.ts",
1272
+ "../../demo/data/CHART_TYPES.ts",
1418
1273
  "../../../../node_modules/date-fns/typings.d.ts",
1419
1274
  "../../node_modules/@types/node/fs.d.ts",
1420
1275
  "../../node_modules/@types/node/ts3.2/fs.d.ts",
@@ -2055,16 +1910,23 @@
2055
1910
  "../../demo/data/bar.ts",
2056
1911
  "../../demo/data/boxplot.ts",
2057
1912
  "../../demo/data/bubble.ts",
1913
+ "../../demo/data/combo.ts",
2058
1914
  "../../demo/data/donut.ts",
1915
+ "../../demo/data/gauge.ts",
2059
1916
  "../../demo/data/line.ts",
1917
+ "../../demo/data/lollipop.ts",
2060
1918
  "../../demo/data/meter.ts",
2061
1919
  "../../demo/data/pie.ts",
2062
- "../../demo/data/gauge.ts",
1920
+ "../../demo/data/radar.ts",
2063
1921
  "../../demo/data/scatter.ts",
2064
1922
  "../../demo/data/step.ts",
2065
- "../../demo/data/radar.ts",
2066
- "../../demo/data/combo.ts",
2067
- "../../demo/data/treemap.ts"
1923
+ "../../demo/data/time-series-axis.ts",
1924
+ "../../demo/data/treemap.ts",
1925
+ "../../demo/data/toolbar.ts",
1926
+ "../../demo/data/wordcloud.ts",
1927
+ "../../demo/data/zoom-bar.ts",
1928
+ "../../demo/data/high-scale.ts",
1929
+ "../../demo/data/CHART_TYPES.ts"
2068
1930
  ],
2069
1931
  "../../../../node_modules/date-fns/typings.d.ts": [
2070
1932
  "../../../../node_modules/date-fns/typings.d.ts",
@@ -2124,85 +1986,6 @@
2124
1986
  "../../node_modules/@types/node/util.d.ts",
2125
1987
  "../../node_modules/@types/node/ts3.2/util.d.ts"
2126
1988
  ],
2127
- "../../src/tools.ts": [
2128
- "../interfaces/index.d.ts",
2129
- "../../../../node_modules/@types/d3/index.d.ts",
2130
- "../../../../node_modules/date-fns/typings.d.ts",
2131
- "../../node_modules/@types/node/fs.d.ts",
2132
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
2133
- "../../node_modules/@types/node/util.d.ts",
2134
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2135
- ],
2136
- "../../src/interfaces/axis-scales.ts": [
2137
- "../interfaces/enums.d.ts",
2138
- "../../../../node_modules/@types/d3/index.d.ts",
2139
- "../../../../node_modules/date-fns/typings.d.ts",
2140
- "../interfaces/components.d.ts",
2141
- "../interfaces/truncation.d.ts",
2142
- "../../node_modules/@types/node/fs.d.ts",
2143
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
2144
- "../../node_modules/@types/node/util.d.ts",
2145
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2146
- ],
2147
- "../../src/interfaces/index.ts": [
2148
- "../interfaces/a11y.d.ts",
2149
- "../interfaces/axis-scales.d.ts",
2150
- "../interfaces/charts.d.ts",
2151
- "../interfaces/components.d.ts",
2152
- "../interfaces/enums.d.ts",
2153
- "../interfaces/layout.d.ts",
2154
- "../interfaces/model.d.ts",
2155
- "../../../../node_modules/date-fns/typings.d.ts",
2156
- "../../node_modules/@types/node/fs.d.ts",
2157
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
2158
- "../../node_modules/@types/node/util.d.ts",
2159
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2160
- ],
2161
- "../../src/interfaces/charts.ts": [
2162
- "../interfaces/enums.d.ts",
2163
- "../interfaces/index.d.ts",
2164
- "../interfaces/components.d.ts",
2165
- "../interfaces/axis-scales.d.ts",
2166
- "../../../../node_modules/date-fns/typings.d.ts",
2167
- "../../node_modules/@types/node/fs.d.ts",
2168
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
2169
- "../../node_modules/@types/node/util.d.ts",
2170
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2171
- ],
2172
- "../../src/interfaces/model.ts": [
2173
- "../interfaces/charts.d.ts",
2174
- "../../../../node_modules/date-fns/typings.d.ts",
2175
- "../../node_modules/@types/node/fs.d.ts",
2176
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
2177
- "../../node_modules/@types/node/util.d.ts",
2178
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2179
- ],
2180
- "../../src/model.ts": [
2181
- "../interfaces/index.d.ts",
2182
- "../../../../node_modules/date-fns/typings.d.ts",
2183
- "../../node_modules/@types/node/fs.d.ts",
2184
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
2185
- "../../node_modules/@types/node/util.d.ts",
2186
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2187
- ],
2188
- "../../src/components/component.ts": [
2189
- "../model.d.ts",
2190
- "../../../../node_modules/date-fns/typings.d.ts",
2191
- "../../node_modules/@types/node/fs.d.ts",
2192
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
2193
- "../../node_modules/@types/node/util.d.ts",
2194
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2195
- ],
2196
- "../../src/interfaces/components.ts": [
2197
- "../interfaces/enums.d.ts",
2198
- "../components/component.d.ts",
2199
- "../interfaces/truncation.d.ts",
2200
- "../../../../node_modules/date-fns/typings.d.ts",
2201
- "../../node_modules/@types/node/fs.d.ts",
2202
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
2203
- "../../node_modules/@types/node/util.d.ts",
2204
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2205
- ],
2206
1989
  "../../../../node_modules/@types/d3-selection/index.d.ts": [
2207
1990
  "../../../../node_modules/date-fns/typings.d.ts",
2208
1991
  "../../node_modules/@types/node/fs.d.ts",
@@ -2431,43 +2214,6 @@
2431
2214
  "../../node_modules/@types/node/util.d.ts",
2432
2215
  "../../node_modules/@types/node/ts3.2/util.d.ts"
2433
2216
  ],
2434
- "../../src/interfaces/a11y.ts": [
2435
- "../../../../node_modules/date-fns/typings.d.ts",
2436
- "../../node_modules/@types/node/fs.d.ts",
2437
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
2438
- "../../node_modules/@types/node/util.d.ts",
2439
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2440
- ],
2441
- "../../src/interfaces/events.ts": [
2442
- "../../../../node_modules/date-fns/typings.d.ts",
2443
- "../../node_modules/@types/node/fs.d.ts",
2444
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
2445
- "../../node_modules/@types/node/util.d.ts",
2446
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2447
- ],
2448
- "../../src/interfaces/enums.ts": [
2449
- "../interfaces/events.d.ts",
2450
- "../../../../node_modules/date-fns/typings.d.ts",
2451
- "../../node_modules/@types/node/fs.d.ts",
2452
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
2453
- "../../node_modules/@types/node/util.d.ts",
2454
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2455
- ],
2456
- "../../src/interfaces/layout.ts": [
2457
- "../interfaces/enums.d.ts",
2458
- "../../../../node_modules/date-fns/typings.d.ts",
2459
- "../../node_modules/@types/node/fs.d.ts",
2460
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
2461
- "../../node_modules/@types/node/util.d.ts",
2462
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2463
- ],
2464
- "../../src/interfaces/truncation.ts": [
2465
- "../../../../node_modules/date-fns/typings.d.ts",
2466
- "../../node_modules/@types/node/fs.d.ts",
2467
- "../../node_modules/@types/node/ts3.2/fs.d.ts",
2468
- "../../node_modules/@types/node/util.d.ts",
2469
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2470
- ],
2471
2217
  "../../node_modules/@types/node/globals.d.ts": [
2472
2218
  "../../../../node_modules/date-fns/typings.d.ts",
2473
2219
  "../../node_modules/@types/node/fs.d.ts",
@@ -2889,6 +2635,7 @@
2889
2635
  "../../../../node_modules/codesandbox-import-utils/lib/api/define.d.ts",
2890
2636
  "../../../../node_modules/codesandbox/lib/api/define.d.ts",
2891
2637
  "../../demo/create-codesandbox.ts",
2638
+ "../../demo/data/CHART_TYPES.ts",
2892
2639
  "../../demo/data/area.ts",
2893
2640
  "../../../../node_modules/date-fns/typings.d.ts",
2894
2641
  "../../../../node_modules/date-fns/locale/tr/index.d.ts",
@@ -2943,19 +2690,7 @@
2943
2690
  "../../demo/data/radar.ts",
2944
2691
  "../../demo/data/treemap.ts",
2945
2692
  "../../demo/data/toolbar.ts",
2946
- "../../src/interfaces/a11y.ts",
2947
- "../../src/interfaces/events.ts",
2948
- "../../src/interfaces/enums.ts",
2949
- "../../src/model.ts",
2950
- "../../src/components/component.ts",
2951
- "../../src/interfaces/truncation.ts",
2952
- "../../src/interfaces/components.ts",
2953
- "../../src/interfaces/axis-scales.ts",
2954
- "../../src/interfaces/charts.ts",
2955
- "../../src/interfaces/layout.ts",
2956
- "../../src/interfaces/model.ts",
2957
- "../../src/interfaces/index.ts",
2958
- "../../src/tools.ts",
2693
+ "../../demo/data/wordcloud.ts",
2959
2694
  "../../demo/data/index.ts",
2960
2695
  "../../node_modules/@types/node/globals.d.ts",
2961
2696
  "../../node_modules/@types/node/assert.d.ts",
@@ -216,6 +216,29 @@ export interface StackedAreaChartOptions extends ScatterChartOptions {
216
216
  name: string;
217
217
  };
218
218
  }
219
+ /**
220
+ * options specific to world cloud charts
221
+ */
222
+ export interface WordCloudChartTooltipOptions extends TooltipOptions {
223
+ /** the label that shows up by the highlighted word in the tooltip */
224
+ wordLabel?: string;
225
+ /** the label that shows up by the value of the highlighted word in the tooltip */
226
+ valueLabel?: string;
227
+ }
228
+ export interface WorldCloudChartOptions extends BaseChartOptions {
229
+ wordCloud?: {
230
+ /** what key in your charting data will the font sizes map to? */
231
+ fontSizeMapsTo?: string;
232
+ /** a function (chartSize, data) => {} that'll decide the range of font sizes, e.g. [10, 80] */
233
+ fontSizeRange?: Function;
234
+ /** what key in your charting data will the words map to? */
235
+ wordMapsTo?: string;
236
+ };
237
+ /**
238
+ * tooltip configuration
239
+ */
240
+ tooltip?: WordCloudChartTooltipOptions;
241
+ }
219
242
  /**
220
243
  * options specific to pie charts
221
244
  */
@@ -1 +1 @@
1
- {"version":3,"file":"charts.js","sourceRoot":"","sources":["charts.ts"],"names":[],"mappings":"","sourcesContent":["import {\n\tGaugeTypes,\n\tStatuses,\n\tArrowDirections,\n\tAlignments,\n\tChartTypes,\n} from './enums';\nimport {\n\tLegendOptions,\n\tTooltipOptions,\n\tGridOptions,\n\tAxesOptions,\n\tZoomBarsOptions,\n} from './index';\nimport { BarOptions, StackedBarOptions } from './components';\nimport { TimeScaleOptions } from './axis-scales';\n\n/**\n * Base chart options common to any chart\n */\nexport interface BaseChartOptions {\n\t/**\n\t * Optionally specify a title for the chart\n\t */\n\ttitle?: string;\n\t/**\n\t * boolean to disable animations (enabled by default)\n\t */\n\tanimations?: boolean;\n\t/**\n\t * boolean to prevent the container from resizing\n\t */\n\tresizable?: boolean;\n\t/**\n\t * Optionally specify a width for the chart\n\t */\n\twidth?: string;\n\t/**\n\t * Optionally specify a height for the chart\n\t */\n\theight?: string;\n\t/**\n\t * tooltip configuration\n\t */\n\ttooltip?: TooltipOptions;\n\t/**\n\t * legend configuration\n\t */\n\tlegend?: LegendOptions;\n\t/**\n\t * Optional function to determine whether is filled based on datasetLabel, label, and/or data\n\t */\n\tgetIsFilled?: (\n\t\tdatasetLabel: any,\n\t\tlabel?: any,\n\t\tdata?: any,\n\t\tdefaultFilled?: boolean\n\t) => boolean;\n\t/**\n\t * Optional function to generate the fill color based on datasetLabel, label, and/or data\n\t */\n\tgetFillColor?: (\n\t\tdatasetLabel: any,\n\t\tlabel?: any,\n\t\tdata?: any,\n\t\tdefaultFillColor?: string\n\t) => string;\n\t/**\n\t * Optional function to generate the stroke color based on datasetLabel, label, and/or data\n\t */\n\tgetStrokeColor?: (\n\t\tdatasetLabel: any,\n\t\tlabel?: any,\n\t\tdata?: any,\n\t\tdefaultStrokeColor?: string\n\t) => string;\n\t/**\n\t * stylesheet options\n\t */\n\tstyle?: {\n\t\t/**\n\t\t * optional prefixing string for css classes (defaults to 'cc')\n\t\t */\n\t\tprefix?: string;\n\t};\n\t/**\n\t * options related to charting data\n\t */\n\tdata?: {\n\t\t/**\n\t\t * identifier for data groups\n\t\t */\n\t\tgroupMapsTo?: string;\n\t\t/**\n\t\t * used to simulate data loading in skeleton way\n\t\t */\n\t\tloading?: boolean;\n\t\t/**\n\t\t * options related to pre-selected data groups\n\t\t * Remains empty if every legend item is active or dataset doesn't have the data groups.\n\t\t */\n\t\tselectedGroups?: string[];\n\t};\n\t/**\n\t * options related to color scales\n\t */\n\tcolor?: {\n\t\t/**\n\t\t * e.g. { 'Dataset 1': 'blue' }\n\t\t */\n\t\tscale?: object;\n\t\t/**\n\t\t * use a carbon dataviz preset color palette\n\t\t * put the index (selection of which variant)\n\t\t */\n\t\tpairing?: {\n\t\t\t/**\n\t\t\t * the number of color variants in the palette (defaults to using the number of data groups in the given data)\n\t\t\t */\n\t\t\tnumberOfVariants?: number;\n\t\t\t/**\n\t\t\t * the option number of the color paring\n\t\t\t */\n\t\t\toption?: number;\n\t\t};\n\t\t/*\n\t\t * options related to gradient\n\t\t * e.g. { enabled: true }\n\t\t */\n\t\tgradient?: object;\n\t};\n}\n\n/**\n * Options common to any chart with an axis\n */\nexport interface AxisChartOptions extends BaseChartOptions {\n\taxes?: AxesOptions;\n\tgrid?: GridOptions;\n\ttimeScale?: TimeScaleOptions;\n\t/**\n\t * zoombar configuration\n\t */\n\tzoomBar?: ZoomBarsOptions;\n}\n\n/**\n * options specific to boxplot charts\n */\nexport interface BoxplotChartOptions extends AxisChartOptions {}\n\n/**\n * options specific to bar charts\n */\nexport interface BarChartOptions extends AxisChartOptions {\n\tbars?: BarOptions;\n}\n\n/**\n * options specific to stacked bar charts\n */\nexport interface StackedBarChartOptions extends BarChartOptions {\n\tbars?: StackedBarOptions;\n}\n\n/**\n * options specific to scatter charts\n */\nexport interface ScatterChartOptions extends AxisChartOptions {\n\t/**\n\t * options for the points\n\t */\n\tpoints?: {\n\t\t/**\n\t\t * sets the radius of the point\n\t\t */\n\t\tradius: number;\n\t\tfillOpacity?: number;\n\t\tfilled?: boolean;\n\t\tenabled?: boolean;\n\t};\n}\n\n/**\n * options specific to lollipop charts\n */\nexport interface LollipopChartOptions extends ScatterChartOptions {}\n\n/**\n * options specific to bubble charts\n */\nexport interface BubbleChartOptions extends AxisChartOptions {\n\t/**\n\t * options for the individual bubbles\n\t */\n\tbubble?: {\n\t\t/**\n\t\t * the key to lookup in charting data for the bubble radius value\n\t\t */\n\t\tradiusMapsTo?: string;\n\t\t/**\n\t\t * A function that would determine the range of the bubble radius to use\n\t\t * Returns an array with the 1st value being the min and the 2nd value being the max radius\n\t\t */\n\t\tradiusRange?: Function;\n\t\t/**\n\t\t * Opacity of the fills used within each circle\n\t\t */\n\t\tfillOpacity?: number;\n\t\t/**\n\t\t * enabled scatter dot or not\n\t\t */\n\t\tenabled?: boolean;\n\t};\n}\n\n/**\n * options specific to line charts\n */\nexport interface LineChartOptions extends ScatterChartOptions {\n\t/**\n\t * options for the curve of the line\n\t */\n\tcurve?:\n\t\t| string\n\t\t| {\n\t\t\t\tname: string;\n\t\t };\n}\n\n/**\n * options specific to area charts\n */\nexport interface AreaChartOptions extends AxisChartOptions {\n\t/**\n\t * options for the curve of the line\n\t */\n\tcurve?:\n\t\t| string\n\t\t| {\n\t\t\t\tname: string;\n\t\t };\n\t/**\n\t * options to bound the area of the chart\n\t */\n\tbounds?: {\n\t\tupperBoundMapsTo?: string;\n\t\tlowerBoundMapsTo?: string;\n\t};\n}\n\n/**\n * options specific to area charts\n */\nexport interface StackedAreaChartOptions extends ScatterChartOptions {\n\t/**\n\t * options for the curve of the line\n\t */\n\tcurve?:\n\t\t| string\n\t\t| {\n\t\t\t\tname: string;\n\t\t };\n}\n\n/**\n * options specific to pie charts\n */\nexport interface PieChartOptions extends BaseChartOptions {\n\tpie?: {\n\t\tlabels?: {\n\t\t\tformatter?: Function;\n\t\t\tenabled?: Boolean;\n\t\t};\n\t\talignment?: Alignments;\n\t};\n}\n\n/**\n * options specific to gauge charts\n */\nexport interface GaugeChartOptions extends BaseChartOptions {\n\tgauge?: {\n\t\tarcWidth?: number;\n\t\tdeltaArrow?: {\n\t\t\tdirection?: ArrowDirections;\n\t\t\tsize?: Function;\n\t\t\tenabled: Boolean;\n\t\t};\n\t\tshowPercentageSymbol?: Boolean;\n\t\tstatus?: Statuses;\n\t\tdeltaFontSize?: Function;\n\t\tnumberSpacing?: number;\n\t\tnumberFormatter?: Function;\n\t\tvalueFontSize?: Function;\n\t\ttype?: GaugeTypes;\n\t\talignment?: Alignments;\n\t};\n}\n\n/**\n * options specific to donut charts\n */\nexport interface DonutChartOptions extends PieChartOptions {\n\tdonut?: {\n\t\tcenter?: {\n\t\t\tlabel?: string;\n\t\t\tnumber?: number;\n\t\t\tnumberFontSize?: Function;\n\t\t\ttitleFontSize?: Function;\n\t\t\ttitleYPosition?: Function;\n\t\t\tnumberFormatter?: Function;\n\t\t};\n\t\talignment?: Alignments;\n\t};\n}\n\nexport interface MeterChartOptions extends BaseChartOptions {\n\tmeter?: {\n\t\tpeak?: number;\n\t\tstatus?: {\n\t\t\tranges: Array<{\n\t\t\t\trange: [number, number];\n\t\t\t\tstatus: Statuses;\n\t\t\t}>;\n\t\t};\n\t\theight?: number;\n\t\ttitle?: {\n\t\t\tpercentageIndicator?: {\n\t\t\t\t/**\n\t\t\t\t * rendering of the percentage value relative to the dataset within title\n\t\t\t\t */\n\t\t\t\tenabled?: boolean;\n\t\t\t};\n\t\t};\n\t};\n}\n\n/**\n * options specific to radar charts\n */\nexport interface RadarChartOptions extends BaseChartOptions {\n\tradar?: {\n\t\taxes: {\n\t\t\tangle: string;\n\t\t\tvalue: string;\n\t\t};\n\t\talignment?: Alignments;\n\t};\n}\n\n/**\n * options specific to combo charts\n */\nexport interface ComboChartOptions extends AxisChartOptions {\n\tcomboChartTypes: Array<{\n\t\ttype: ChartTypes | any;\n\t\toptions?: object;\n\t\tcorrespondingDatasets: Array<string>;\n\t}>;\n}\n\n/*\n * options specific to treemap charts\n */\nexport interface TreemapChartOptions extends BaseChartOptions {}\n"]}
1
+ {"version":3,"file":"charts.js","sourceRoot":"","sources":["charts.ts"],"names":[],"mappings":"","sourcesContent":["import {\n\tGaugeTypes,\n\tStatuses,\n\tArrowDirections,\n\tAlignments,\n\tChartTypes,\n} from './enums';\nimport {\n\tLegendOptions,\n\tTooltipOptions,\n\tGridOptions,\n\tAxesOptions,\n\tZoomBarsOptions,\n} from './index';\nimport { BarOptions, StackedBarOptions } from './components';\nimport { TimeScaleOptions } from './axis-scales';\n\n/**\n * Base chart options common to any chart\n */\nexport interface BaseChartOptions {\n\t/**\n\t * Optionally specify a title for the chart\n\t */\n\ttitle?: string;\n\t/**\n\t * boolean to disable animations (enabled by default)\n\t */\n\tanimations?: boolean;\n\t/**\n\t * boolean to prevent the container from resizing\n\t */\n\tresizable?: boolean;\n\t/**\n\t * Optionally specify a width for the chart\n\t */\n\twidth?: string;\n\t/**\n\t * Optionally specify a height for the chart\n\t */\n\theight?: string;\n\t/**\n\t * tooltip configuration\n\t */\n\ttooltip?: TooltipOptions;\n\t/**\n\t * legend configuration\n\t */\n\tlegend?: LegendOptions;\n\t/**\n\t * Optional function to determine whether is filled based on datasetLabel, label, and/or data\n\t */\n\tgetIsFilled?: (\n\t\tdatasetLabel: any,\n\t\tlabel?: any,\n\t\tdata?: any,\n\t\tdefaultFilled?: boolean\n\t) => boolean;\n\t/**\n\t * Optional function to generate the fill color based on datasetLabel, label, and/or data\n\t */\n\tgetFillColor?: (\n\t\tdatasetLabel: any,\n\t\tlabel?: any,\n\t\tdata?: any,\n\t\tdefaultFillColor?: string\n\t) => string;\n\t/**\n\t * Optional function to generate the stroke color based on datasetLabel, label, and/or data\n\t */\n\tgetStrokeColor?: (\n\t\tdatasetLabel: any,\n\t\tlabel?: any,\n\t\tdata?: any,\n\t\tdefaultStrokeColor?: string\n\t) => string;\n\t/**\n\t * stylesheet options\n\t */\n\tstyle?: {\n\t\t/**\n\t\t * optional prefixing string for css classes (defaults to 'cc')\n\t\t */\n\t\tprefix?: string;\n\t};\n\t/**\n\t * options related to charting data\n\t */\n\tdata?: {\n\t\t/**\n\t\t * identifier for data groups\n\t\t */\n\t\tgroupMapsTo?: string;\n\t\t/**\n\t\t * used to simulate data loading in skeleton way\n\t\t */\n\t\tloading?: boolean;\n\t\t/**\n\t\t * options related to pre-selected data groups\n\t\t * Remains empty if every legend item is active or dataset doesn't have the data groups.\n\t\t */\n\t\tselectedGroups?: string[];\n\t};\n\t/**\n\t * options related to color scales\n\t */\n\tcolor?: {\n\t\t/**\n\t\t * e.g. { 'Dataset 1': 'blue' }\n\t\t */\n\t\tscale?: object;\n\t\t/**\n\t\t * use a carbon dataviz preset color palette\n\t\t * put the index (selection of which variant)\n\t\t */\n\t\tpairing?: {\n\t\t\t/**\n\t\t\t * the number of color variants in the palette (defaults to using the number of data groups in the given data)\n\t\t\t */\n\t\t\tnumberOfVariants?: number;\n\t\t\t/**\n\t\t\t * the option number of the color paring\n\t\t\t */\n\t\t\toption?: number;\n\t\t};\n\t\t/*\n\t\t * options related to gradient\n\t\t * e.g. { enabled: true }\n\t\t */\n\t\tgradient?: object;\n\t};\n}\n\n/**\n * Options common to any chart with an axis\n */\nexport interface AxisChartOptions extends BaseChartOptions {\n\taxes?: AxesOptions;\n\tgrid?: GridOptions;\n\ttimeScale?: TimeScaleOptions;\n\t/**\n\t * zoombar configuration\n\t */\n\tzoomBar?: ZoomBarsOptions;\n}\n\n/**\n * options specific to boxplot charts\n */\nexport interface BoxplotChartOptions extends AxisChartOptions {}\n\n/**\n * options specific to bar charts\n */\nexport interface BarChartOptions extends AxisChartOptions {\n\tbars?: BarOptions;\n}\n\n/**\n * options specific to stacked bar charts\n */\nexport interface StackedBarChartOptions extends BarChartOptions {\n\tbars?: StackedBarOptions;\n}\n\n/**\n * options specific to scatter charts\n */\nexport interface ScatterChartOptions extends AxisChartOptions {\n\t/**\n\t * options for the points\n\t */\n\tpoints?: {\n\t\t/**\n\t\t * sets the radius of the point\n\t\t */\n\t\tradius: number;\n\t\tfillOpacity?: number;\n\t\tfilled?: boolean;\n\t\tenabled?: boolean;\n\t};\n}\n\n/**\n * options specific to lollipop charts\n */\nexport interface LollipopChartOptions extends ScatterChartOptions {}\n\n/**\n * options specific to bubble charts\n */\nexport interface BubbleChartOptions extends AxisChartOptions {\n\t/**\n\t * options for the individual bubbles\n\t */\n\tbubble?: {\n\t\t/**\n\t\t * the key to lookup in charting data for the bubble radius value\n\t\t */\n\t\tradiusMapsTo?: string;\n\t\t/**\n\t\t * A function that would determine the range of the bubble radius to use\n\t\t * Returns an array with the 1st value being the min and the 2nd value being the max radius\n\t\t */\n\t\tradiusRange?: Function;\n\t\t/**\n\t\t * Opacity of the fills used within each circle\n\t\t */\n\t\tfillOpacity?: number;\n\t\t/**\n\t\t * enabled scatter dot or not\n\t\t */\n\t\tenabled?: boolean;\n\t};\n}\n\n/**\n * options specific to line charts\n */\nexport interface LineChartOptions extends ScatterChartOptions {\n\t/**\n\t * options for the curve of the line\n\t */\n\tcurve?:\n\t\t| string\n\t\t| {\n\t\t\t\tname: string;\n\t\t };\n}\n\n/**\n * options specific to area charts\n */\nexport interface AreaChartOptions extends AxisChartOptions {\n\t/**\n\t * options for the curve of the line\n\t */\n\tcurve?:\n\t\t| string\n\t\t| {\n\t\t\t\tname: string;\n\t\t };\n\t/**\n\t * options to bound the area of the chart\n\t */\n\tbounds?: {\n\t\tupperBoundMapsTo?: string;\n\t\tlowerBoundMapsTo?: string;\n\t};\n}\n\n/**\n * options specific to area charts\n */\nexport interface StackedAreaChartOptions extends ScatterChartOptions {\n\t/**\n\t * options for the curve of the line\n\t */\n\tcurve?:\n\t\t| string\n\t\t| {\n\t\t\t\tname: string;\n\t\t };\n}\n\n/**\n * options specific to world cloud charts\n */\nexport interface WordCloudChartTooltipOptions extends TooltipOptions {\n\t/** the label that shows up by the highlighted word in the tooltip */\n\twordLabel?: string;\n\t/** the label that shows up by the value of the highlighted word in the tooltip */\n\tvalueLabel?: string;\n}\n\nexport interface WorldCloudChartOptions extends BaseChartOptions {\n\twordCloud?: {\n\t\t/** what key in your charting data will the font sizes map to? */\n\t\tfontSizeMapsTo?: string;\n\t\t/** a function (chartSize, data) => {} that'll decide the range of font sizes, e.g. [10, 80] */\n\t\tfontSizeRange?: Function;\n\t\t/** what key in your charting data will the words map to? */\n\t\twordMapsTo?: string;\n\t};\n\t/**\n\t * tooltip configuration\n\t */\n\ttooltip?: WordCloudChartTooltipOptions;\n}\n\n/**\n * options specific to pie charts\n */\nexport interface PieChartOptions extends BaseChartOptions {\n\tpie?: {\n\t\tlabels?: {\n\t\t\tformatter?: Function;\n\t\t\tenabled?: Boolean;\n\t\t};\n\t\talignment?: Alignments;\n\t};\n}\n\n/**\n * options specific to gauge charts\n */\nexport interface GaugeChartOptions extends BaseChartOptions {\n\tgauge?: {\n\t\tarcWidth?: number;\n\t\tdeltaArrow?: {\n\t\t\tdirection?: ArrowDirections;\n\t\t\tsize?: Function;\n\t\t\tenabled: Boolean;\n\t\t};\n\t\tshowPercentageSymbol?: Boolean;\n\t\tstatus?: Statuses;\n\t\tdeltaFontSize?: Function;\n\t\tnumberSpacing?: number;\n\t\tnumberFormatter?: Function;\n\t\tvalueFontSize?: Function;\n\t\ttype?: GaugeTypes;\n\t\talignment?: Alignments;\n\t};\n}\n\n/**\n * options specific to donut charts\n */\nexport interface DonutChartOptions extends PieChartOptions {\n\tdonut?: {\n\t\tcenter?: {\n\t\t\tlabel?: string;\n\t\t\tnumber?: number;\n\t\t\tnumberFontSize?: Function;\n\t\t\ttitleFontSize?: Function;\n\t\t\ttitleYPosition?: Function;\n\t\t\tnumberFormatter?: Function;\n\t\t};\n\t\talignment?: Alignments;\n\t};\n}\n\nexport interface MeterChartOptions extends BaseChartOptions {\n\tmeter?: {\n\t\tpeak?: number;\n\t\tstatus?: {\n\t\t\tranges: Array<{\n\t\t\t\trange: [number, number];\n\t\t\t\tstatus: Statuses;\n\t\t\t}>;\n\t\t};\n\t\theight?: number;\n\t\ttitle?: {\n\t\t\tpercentageIndicator?: {\n\t\t\t\t/**\n\t\t\t\t * rendering of the percentage value relative to the dataset within title\n\t\t\t\t */\n\t\t\t\tenabled?: boolean;\n\t\t\t};\n\t\t};\n\t};\n}\n\n/**\n * options specific to radar charts\n */\nexport interface RadarChartOptions extends BaseChartOptions {\n\tradar?: {\n\t\taxes: {\n\t\t\tangle: string;\n\t\t\tvalue: string;\n\t\t};\n\t\talignment?: Alignments;\n\t};\n}\n\n/**\n * options specific to combo charts\n */\nexport interface ComboChartOptions extends AxisChartOptions {\n\tcomboChartTypes: Array<{\n\t\ttype: ChartTypes | any;\n\t\toptions?: object;\n\t\tcorrespondingDatasets: Array<string>;\n\t}>;\n}\n\n/*\n * options specific to treemap charts\n */\nexport interface TreemapChartOptions extends BaseChartOptions {}\n"]}
@@ -53,6 +53,15 @@ export declare enum Area {
53
53
  AREA_CLICK = "area-click",
54
54
  AREA_MOUSEOUT = "area-mouseout"
55
55
  }
56
+ /**
57
+ * enum of all wordcloud graph events
58
+ */
59
+ export declare enum WordCloud {
60
+ WORD_MOUSEOVER = "wordcloud-word-mouseover",
61
+ WORD_MOUSEMOVE = "wordcloud-word-mousemove",
62
+ WORD_CLICK = "wordcloud-word-click",
63
+ WORD_MOUSEOUT = "wordcloud-word-mouseout"
64
+ }
56
65
  /**
57
66
  * enum of all pie graph events
58
67
  */
@@ -62,6 +62,16 @@ export var Area;
62
62
  Area["AREA_CLICK"] = "area-click";
63
63
  Area["AREA_MOUSEOUT"] = "area-mouseout";
64
64
  })(Area || (Area = {}));
65
+ /**
66
+ * enum of all wordcloud graph events
67
+ */
68
+ export var WordCloud;
69
+ (function (WordCloud) {
70
+ WordCloud["WORD_MOUSEOVER"] = "wordcloud-word-mouseover";
71
+ WordCloud["WORD_MOUSEMOVE"] = "wordcloud-word-mousemove";
72
+ WordCloud["WORD_CLICK"] = "wordcloud-word-click";
73
+ WordCloud["WORD_MOUSEOUT"] = "wordcloud-word-mouseout";
74
+ })(WordCloud || (WordCloud = {}));
65
75
  /**
66
76
  * enum of all pie graph events
67
77
  */
@@ -1 +1 @@
1
- {"version":3,"file":"events.js","sourceRoot":"","sources":["events.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * enum of all events related to the chart on the DOM\n */\nexport enum Chart {\n\tRENDER_FINISHED = 'render-finished',\n\tRESIZE = 'chart-resize',\n\tMOUSEOVER = 'chart-mouseover',\n\t// MOUSEMOVE = \"chart-mousemove\",\n\t// CLICK = \"chart-click\",\n\tMOUSEOUT = 'chart-mouseout',\n}\n\n/**\n * enum of all events related to the chart model\n */\nexport enum Model {\n\tUPDATE = 'model-update',\n}\n\n/**\n * enum of all toolbar events\n */\nexport enum Toolbar {\n\tSHOW_OVERFLOW_MENU = 'show-toolbar-overflow-menu',\n\tHIDE_OVERFLOW_MENU = 'hide-toolbar-overflow-menu',\n}\n\n/**\n * enum of all events related to the zoom-bar\n */\nexport enum ZoomBar {\n\tUPDATE = 'zoom-bar-update',\n\tSELECTION_START = 'zoom-bar-selection-start',\n\tSELECTION_IN_PROGRESS = 'zoom-bar-selection-in-progress',\n\tSELECTION_END = 'zoom-bar-selection-end',\n}\n\n/**\n * enum of all events related to the zoom domain\n */\nexport enum ZoomDomain {\n\tCHANGE = 'zoom-domain-change',\n}\n\n/**\n * enum of all axis-related events\n */\nexport enum Axis {\n\tLABEL_MOUSEOVER = 'axis-label-mouseover',\n\tLABEL_MOUSEMOVE = 'axis-label-mousemove',\n\tLABEL_CLICK = 'axis-label-click',\n\tLABEL_MOUSEOUT = 'axis-label-mouseout',\n}\n\n/**\n * enum of all area graph events\n */\nexport enum Area {\n\tAREA_MOUSEOVER = 'area-mouseover',\n\tAREA_MOUSEMOVE = 'area-mousemove',\n\tAREA_CLICK = 'area-click',\n\tAREA_MOUSEOUT = 'area-mouseout',\n}\n\n/**\n * enum of all pie graph events\n */\nexport enum Pie {\n\tSLICE_MOUSEOVER = 'pie-slice-mouseover',\n\tSLICE_MOUSEMOVE = 'pie-slice-mousemove',\n\tSLICE_CLICK = 'pie-slice-click',\n\tSLICE_MOUSEOUT = 'pie-slice-mouseout',\n}\n\n/**\n * enum of all gauge graph events\n */\nexport enum Gauge {\n\tARC_MOUSEOVER = 'gauge-arc-mouseover',\n\tARC_MOUSEMOVE = 'gauge-arc-mousemove',\n\tARC_CLICK = 'gauge-arc-click',\n\tARC_MOUSEOUT = 'gauge-arc-mouseout',\n}\n\n/**\n * enum of all bar graph events\n */\nexport enum Bar {\n\tBAR_MOUSEOVER = 'bar-mouseover',\n\tBAR_MOUSEMOVE = 'bar-mousemove',\n\tBAR_CLICK = 'bar-click',\n\tBAR_MOUSEOUT = 'bar-mouseout',\n}\n\n/**\n * enum of all boxplot graph events\n */\nexport enum Boxplot {\n\tBOX_MOUSEOVER = 'box-mouseover',\n\tBOX_MOUSEMOVE = 'box-mousemove',\n\tBOX_CLICK = 'box-click',\n\tBOX_MOUSEOUT = 'box-mouseout',\n\tOUTLIER_MOUSEOVER = 'outlier-mouseover',\n\tOUTLIER_MOUSEMOVE = 'outlier-mousemove',\n\tOUTLIER_CLICK = 'outlier-click',\n\tOUTLIER_MOUSEOUT = 'outlier-mouseout',\n}\n\n/**\n * enum of all scatter graph events\n */\nexport enum Scatter {\n\tSCATTER_MOUSEOVER = 'scatter-mouseover',\n\tSCATTER_MOUSEMOVE = 'scatter-mousemove',\n\tSCATTER_CLICK = 'scatter-click',\n\tSCATTER_MOUSEOUT = 'scatter-mouseout',\n}\n\n/**\n * enum of all line graph events\n */\nexport enum Line {\n\tPOINT_MOUSEOVER = 'scatter-mouseover',\n\tPOINT_MOUSEMOVE = 'scatter-mousemove',\n\tPOINT_CLICK = 'scatter-click',\n\tPOINT_MOUSEOUT = 'scatter-mouseout',\n}\n\n/**\n * enum of all radar graph events\n */\nexport enum Radar {\n\tX_AXIS_MOUSEOVER = 'radar-x-axis-mouseover',\n\tX_AXIS_MOUSEMOVE = 'radar-x-axis-mousemove',\n\tX_AXIS_CLICK = 'radar-x-axis-click',\n\tX_AXIS_MOUSEOUT = 'radar-x-axis-mouseout',\n}\n\n/**\n * enum of all treemap graph events\n */\nexport enum Treemap {\n\tLEAF_MOUSEOVER = 'leaf-mouseover',\n\tLEAF_MOUSEMOVE = 'leaf-mousemove',\n\tLEAF_CLICK = 'leaf-click',\n\tLEAF_MOUSEOUT = 'leaf-mouseout',\n}\n\n/**\n * enum of all tooltip events\n */\nexport enum Tooltip {\n\tSHOW = 'show-tooltip',\n\tMOVE = 'move-tooltip',\n\tHIDE = 'hide-tooltip',\n}\n\n/**\n * enum of all threshold events\n */\nexport enum Threshold {\n\tSHOW = 'show-threshold',\n\tHIDE = 'hide-threshold',\n}\n\n/**\n * enum of all legend related events\n */\nexport enum Legend {\n\tITEM_HOVER = 'legend-item-onhover',\n\tITEM_CLICK = 'legend-item-onclick',\n\tITEM_MOUSEOUT = 'legend-item-onmouseout',\n\tITEMS_UPDATE = 'legend-items-update',\n}\n"]}
1
+ {"version":3,"file":"events.js","sourceRoot":"","sources":["events.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * enum of all events related to the chart on the DOM\n */\nexport enum Chart {\n\tRENDER_FINISHED = 'render-finished',\n\tRESIZE = 'chart-resize',\n\tMOUSEOVER = 'chart-mouseover',\n\t// MOUSEMOVE = \"chart-mousemove\",\n\t// CLICK = \"chart-click\",\n\tMOUSEOUT = 'chart-mouseout',\n}\n\n/**\n * enum of all events related to the chart model\n */\nexport enum Model {\n\tUPDATE = 'model-update',\n}\n\n/**\n * enum of all toolbar events\n */\nexport enum Toolbar {\n\tSHOW_OVERFLOW_MENU = 'show-toolbar-overflow-menu',\n\tHIDE_OVERFLOW_MENU = 'hide-toolbar-overflow-menu',\n}\n\n/**\n * enum of all events related to the zoom-bar\n */\nexport enum ZoomBar {\n\tUPDATE = 'zoom-bar-update',\n\tSELECTION_START = 'zoom-bar-selection-start',\n\tSELECTION_IN_PROGRESS = 'zoom-bar-selection-in-progress',\n\tSELECTION_END = 'zoom-bar-selection-end',\n}\n\n/**\n * enum of all events related to the zoom domain\n */\nexport enum ZoomDomain {\n\tCHANGE = 'zoom-domain-change',\n}\n\n/**\n * enum of all axis-related events\n */\nexport enum Axis {\n\tLABEL_MOUSEOVER = 'axis-label-mouseover',\n\tLABEL_MOUSEMOVE = 'axis-label-mousemove',\n\tLABEL_CLICK = 'axis-label-click',\n\tLABEL_MOUSEOUT = 'axis-label-mouseout',\n}\n\n/**\n * enum of all area graph events\n */\nexport enum Area {\n\tAREA_MOUSEOVER = 'area-mouseover',\n\tAREA_MOUSEMOVE = 'area-mousemove',\n\tAREA_CLICK = 'area-click',\n\tAREA_MOUSEOUT = 'area-mouseout',\n}\n\n/**\n * enum of all wordcloud graph events\n */\n export enum WordCloud {\n\tWORD_MOUSEOVER = 'wordcloud-word-mouseover',\n\tWORD_MOUSEMOVE = 'wordcloud-word-mousemove',\n\tWORD_CLICK = 'wordcloud-word-click',\n\tWORD_MOUSEOUT = 'wordcloud-word-mouseout',\n}\n\n/**\n * enum of all pie graph events\n */\n export enum Pie {\n\tSLICE_MOUSEOVER = 'pie-slice-mouseover',\n\tSLICE_MOUSEMOVE = 'pie-slice-mousemove',\n\tSLICE_CLICK = 'pie-slice-click',\n\tSLICE_MOUSEOUT = 'pie-slice-mouseout',\n}\n\n/**\n * enum of all gauge graph events\n */\nexport enum Gauge {\n\tARC_MOUSEOVER = 'gauge-arc-mouseover',\n\tARC_MOUSEMOVE = 'gauge-arc-mousemove',\n\tARC_CLICK = 'gauge-arc-click',\n\tARC_MOUSEOUT = 'gauge-arc-mouseout',\n}\n\n/**\n * enum of all bar graph events\n */\nexport enum Bar {\n\tBAR_MOUSEOVER = 'bar-mouseover',\n\tBAR_MOUSEMOVE = 'bar-mousemove',\n\tBAR_CLICK = 'bar-click',\n\tBAR_MOUSEOUT = 'bar-mouseout',\n}\n\n/**\n * enum of all boxplot graph events\n */\nexport enum Boxplot {\n\tBOX_MOUSEOVER = 'box-mouseover',\n\tBOX_MOUSEMOVE = 'box-mousemove',\n\tBOX_CLICK = 'box-click',\n\tBOX_MOUSEOUT = 'box-mouseout',\n\tOUTLIER_MOUSEOVER = 'outlier-mouseover',\n\tOUTLIER_MOUSEMOVE = 'outlier-mousemove',\n\tOUTLIER_CLICK = 'outlier-click',\n\tOUTLIER_MOUSEOUT = 'outlier-mouseout',\n}\n\n/**\n * enum of all scatter graph events\n */\nexport enum Scatter {\n\tSCATTER_MOUSEOVER = 'scatter-mouseover',\n\tSCATTER_MOUSEMOVE = 'scatter-mousemove',\n\tSCATTER_CLICK = 'scatter-click',\n\tSCATTER_MOUSEOUT = 'scatter-mouseout',\n}\n\n/**\n * enum of all line graph events\n */\nexport enum Line {\n\tPOINT_MOUSEOVER = 'scatter-mouseover',\n\tPOINT_MOUSEMOVE = 'scatter-mousemove',\n\tPOINT_CLICK = 'scatter-click',\n\tPOINT_MOUSEOUT = 'scatter-mouseout',\n}\n\n/**\n * enum of all radar graph events\n */\nexport enum Radar {\n\tX_AXIS_MOUSEOVER = 'radar-x-axis-mouseover',\n\tX_AXIS_MOUSEMOVE = 'radar-x-axis-mousemove',\n\tX_AXIS_CLICK = 'radar-x-axis-click',\n\tX_AXIS_MOUSEOUT = 'radar-x-axis-mouseout',\n}\n\n/**\n * enum of all treemap graph events\n */\nexport enum Treemap {\n\tLEAF_MOUSEOVER = 'leaf-mouseover',\n\tLEAF_MOUSEMOVE = 'leaf-mousemove',\n\tLEAF_CLICK = 'leaf-click',\n\tLEAF_MOUSEOUT = 'leaf-mouseout',\n}\n\n/**\n * enum of all tooltip events\n */\nexport enum Tooltip {\n\tSHOW = 'show-tooltip',\n\tMOVE = 'move-tooltip',\n\tHIDE = 'hide-tooltip',\n}\n\n/**\n * enum of all threshold events\n */\nexport enum Threshold {\n\tSHOW = 'show-threshold',\n\tHIDE = 'hide-threshold',\n}\n\n/**\n * enum of all legend related events\n */\nexport enum Legend {\n\tITEM_HOVER = 'legend-item-onhover',\n\tITEM_CLICK = 'legend-item-onclick',\n\tITEM_MOUSEOUT = 'legend-item-onmouseout',\n\tITEMS_UPDATE = 'legend-items-update',\n}\n"]}
package/model.js CHANGED
@@ -413,7 +413,7 @@ var ChartModel = /** @class */ (function () {
413
413
  *
414
414
  */
415
415
  ChartModel.prototype.transformToTabularData = function (data) {
416
- console.warn("We've updated the charting data format to be tabular by default. The current format you're using is deprecated and will be removed in v1.0, read more here https://carbon-design-system.github.io/carbon-charts/?path=/story/tutorials--tabular-data-format");
416
+ console.warn("We've updated the charting data format to be tabular by default. The current format you're using is deprecated and will be removed in v1.0, read more here https://carbon-design-system.github.io/carbon-charts/?path=/story/docs-tutorials--tabular-data-format");
417
417
  var tabularData = [];
418
418
  var datasets = data.datasets, labels = data.labels;
419
419
  // Loop through all datasets