@carbon/charts 0.30.21 → 0.30.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +337 -1035
- package/README.md +3 -0
- package/axis-chart.js +8 -14
- package/axis-chart.js.map +1 -1
- package/build/demo/{data/create-codesandbox.d.ts → create-codesandbox.d.ts} +16 -13
- package/build/demo/data/bar.d.ts +175 -1
- package/build/demo/data/bubble.d.ts +41 -0
- package/build/demo/data/donut.d.ts +23 -0
- package/build/demo/data/line.d.ts +70 -0
- package/build/demo/data/pie.d.ts +13 -0
- package/build/demo/data/scatter.d.ts +31 -0
- package/build/demo/data/step.d.ts +4 -0
- package/build/demo/data/time-series-axis.d.ts +55 -3
- package/build/src/components/axes/grid.d.ts +3 -3
- package/build/src/components/axes/two-dimensional-axes.d.ts +3 -0
- package/build/src/components/essentials/threshold.d.ts +17 -0
- package/build/src/components/graphs/bar.d.ts +1 -1
- package/build/src/components/graphs/scatter.d.ts +1 -0
- package/build/src/components/graphs/skeleton.d.ts +22 -0
- package/build/src/components/index.d.ts +2 -0
- package/build/src/interfaces/axis-scales.d.ts +22 -11
- package/build/src/interfaces/charts.d.ts +5 -0
- package/build/src/interfaces/components.d.ts +21 -0
- package/build/src/interfaces/enums.d.ts +9 -0
- package/build/src/interfaces/events.d.ts +7 -0
- package/build/src/model.d.ts +1 -0
- package/build/src/services/scales-cartesian.d.ts +9 -1
- package/build/stories/tutorials/event-listeners.d.ts +1 -0
- package/build/stories/tutorials/index.d.ts +2 -1
- package/bundle.js +1 -1
- package/chart.js +15 -24
- package/chart.js.map +1 -1
- package/charts/bar-grouped.js +6 -2
- package/charts/bar-grouped.js.map +1 -1
- package/charts/bar-simple.js +6 -2
- package/charts/bar-simple.js.map +1 -1
- package/charts/bar-stacked.js +6 -2
- package/charts/bar-stacked.js.map +1 -1
- package/charts/bubble.js +6 -2
- package/charts/bubble.js.map +1 -1
- package/charts/donut.js +6 -2
- package/charts/donut.js.map +1 -1
- package/charts/line.js +6 -2
- package/charts/line.js.map +1 -1
- package/charts/pie.js +6 -2
- package/charts/pie.js.map +1 -1
- package/charts/radar.js +1 -3
- package/charts/radar.js.map +1 -1
- package/charts/scatter.js +6 -2
- package/charts/scatter.js.map +1 -1
- package/components/axes/axis.js +93 -43
- package/components/axes/axis.js.map +1 -1
- package/components/axes/grid.d.ts +3 -3
- package/components/axes/grid.js +46 -23
- package/components/axes/grid.js.map +1 -1
- package/components/axes/ruler.js +7 -5
- package/components/axes/ruler.js.map +1 -1
- package/components/axes/two-dimensional-axes.d.ts +3 -0
- package/components/axes/two-dimensional-axes.js +35 -2
- package/components/axes/two-dimensional-axes.js.map +1 -1
- package/components/axes/zero-line.js +16 -1
- package/components/axes/zero-line.js.map +1 -1
- package/components/component.js +2 -4
- package/components/component.js.map +1 -1
- package/components/essentials/legend.js +46 -23
- package/components/essentials/legend.js.map +1 -1
- package/components/essentials/threshold.d.ts +17 -0
- package/components/essentials/threshold.js +171 -0
- package/components/essentials/threshold.js.map +1 -0
- package/components/essentials/title.js +6 -4
- package/components/essentials/title.js.map +1 -1
- package/components/essentials/tooltip-bar.js +39 -20
- package/components/essentials/tooltip-bar.js.map +1 -1
- package/components/essentials/tooltip-pie.js +4 -3
- package/components/essentials/tooltip-pie.js.map +1 -1
- package/components/essentials/tooltip-radar.js +6 -3
- package/components/essentials/tooltip-radar.js.map +1 -1
- package/components/essentials/tooltip-scatter.js +3 -1
- package/components/essentials/tooltip-scatter.js.map +1 -1
- package/components/essentials/tooltip.js +35 -15
- package/components/essentials/tooltip.js.map +1 -1
- package/components/graphs/bar-grouped.js +48 -20
- package/components/graphs/bar-grouped.js.map +1 -1
- package/components/graphs/bar-simple.js +39 -19
- package/components/graphs/bar-simple.js.map +1 -1
- package/components/graphs/bar-stacked.js +50 -28
- package/components/graphs/bar-stacked.js.map +1 -1
- package/components/graphs/bar.d.ts +1 -1
- package/components/graphs/bar.js +1 -1
- package/components/graphs/bar.js.map +1 -1
- package/components/graphs/bubble.js +22 -8
- package/components/graphs/bubble.js.map +1 -1
- package/components/graphs/donut.js +17 -3
- package/components/graphs/donut.js.map +1 -1
- package/components/graphs/line.js +14 -7
- package/components/graphs/line.js.map +1 -1
- package/components/graphs/pie.js +80 -44
- package/components/graphs/pie.js.map +1 -1
- package/components/graphs/radar.js +271 -140
- package/components/graphs/radar.js.map +1 -1
- package/components/graphs/scatter.d.ts +1 -0
- package/components/graphs/scatter.js +80 -19
- package/components/graphs/scatter.js.map +1 -1
- package/components/graphs/skeleton.d.ts +22 -0
- package/components/graphs/skeleton.js +256 -0
- package/components/graphs/skeleton.js.map +1 -0
- package/components/index.d.ts +2 -0
- package/components/index.js +2 -0
- package/components/index.js.map +1 -1
- package/components/layout/layout.js +38 -26
- package/components/layout/layout.js.map +1 -1
- package/components/layout/spacer.js +2 -1
- package/components/layout/spacer.js.map +1 -1
- package/configuration.js +17 -14
- package/configuration.js.map +1 -1
- package/demo/{data/create-codesandbox.d.ts → create-codesandbox.d.ts} +16 -13
- package/demo/{data/create-codesandbox.js → create-codesandbox.js} +24 -21
- package/demo/create-codesandbox.js.map +1 -0
- package/demo/data/bar.d.ts +175 -1
- package/demo/data/bar.js +189 -3
- package/demo/data/bar.js.map +1 -1
- package/demo/data/bubble.d.ts +41 -0
- package/demo/data/bubble.js +48 -3
- package/demo/data/bubble.js.map +1 -1
- package/demo/data/bundle.js +1 -1
- package/demo/data/donut.d.ts +23 -0
- package/demo/data/donut.js +25 -0
- package/demo/data/donut.js.map +1 -1
- package/demo/data/index.js +189 -7
- package/demo/data/index.js.map +1 -1
- package/demo/data/line.d.ts +70 -0
- package/demo/data/line.js +71 -0
- package/demo/data/line.js.map +1 -1
- package/demo/data/pie.d.ts +13 -0
- package/demo/data/pie.js +15 -0
- package/demo/data/pie.js.map +1 -1
- package/demo/data/radar.js.map +1 -1
- package/demo/data/scatter.d.ts +31 -0
- package/demo/data/scatter.js +33 -0
- package/demo/data/scatter.js.map +1 -1
- package/demo/data/step.d.ts +4 -0
- package/demo/data/step.js +15 -0
- package/demo/data/step.js.map +1 -1
- package/demo/data/time-series-axis.d.ts +55 -3
- package/demo/data/time-series-axis.js +62 -6
- package/demo/data/time-series-axis.js.map +1 -1
- package/demo/styles.css +342 -18
- package/demo/styles.css.map +1 -1
- package/demo/styles.min.css +1 -1
- package/demo/styles.min.css.map +1 -1
- package/demo/tsconfig.tsbuildinfo +232 -229
- package/index.js.map +1 -1
- package/interfaces/axis-scales.d.ts +22 -11
- package/interfaces/axis-scales.js.map +1 -1
- package/interfaces/charts.d.ts +5 -0
- package/interfaces/charts.js.map +1 -1
- package/interfaces/components.d.ts +21 -0
- package/interfaces/components.js.map +1 -1
- package/interfaces/enums.d.ts +9 -0
- package/interfaces/enums.js +10 -0
- package/interfaces/enums.js.map +1 -1
- package/interfaces/events.d.ts +7 -0
- package/interfaces/events.js +8 -0
- package/interfaces/events.js.map +1 -1
- package/model.d.ts +1 -0
- package/model.js +30 -16
- package/model.js.map +1 -1
- package/package.json +4 -2
- package/polyfills.js +7 -2
- package/polyfills.js.map +1 -1
- package/services/angle-utils.js +34 -9
- package/services/angle-utils.js.map +1 -1
- package/services/colors.js.map +1 -1
- package/services/curves.js +4 -2
- package/services/curves.js.map +1 -1
- package/services/essentials/dom-utils.js +4 -3
- package/services/essentials/dom-utils.js.map +1 -1
- package/services/essentials/transitions.js +3 -4
- package/services/essentials/transitions.js.map +1 -1
- package/services/scales-cartesian.d.ts +9 -1
- package/services/scales-cartesian.js +96 -23
- package/services/scales-cartesian.js.map +1 -1
- package/services/time-series.js +36 -19
- package/services/time-series.js.map +1 -1
- package/styles/components/_axis.scss +4 -0
- package/styles/components/_layout.scss +0 -1
- package/styles/components/_ruler.scss +5 -2
- package/styles/components/_skeleton.scss +56 -0
- package/styles/components/_threshold.scss +49 -0
- package/styles/components/_tooltip.scss +6 -5
- package/styles/components/index.scss +2 -0
- package/styles/graphs/_bubble.scss +1 -1
- package/styles/graphs/_radar.scss +4 -2
- package/styles/graphs/_scatter.scss +5 -1
- package/styles/mixins.scss +2 -2
- package/styles-g10.css +87 -4
- package/styles-g10.css.map +1 -1
- package/styles-g10.min.css +1 -1
- package/styles-g10.min.css.map +1 -1
- package/styles-g100.css +87 -4
- package/styles-g100.css.map +1 -1
- package/styles-g100.min.css +1 -1
- package/styles-g100.min.css.map +1 -1
- package/styles-g90.css +87 -4
- package/styles-g90.css.map +1 -1
- package/styles-g90.min.css +1 -1
- package/styles-g90.min.css.map +1 -1
- package/styles.css +87 -4
- package/styles.css.map +1 -1
- package/styles.min.css +1 -1
- package/styles.min.css.map +1 -1
- package/tools.js +25 -7
- package/tools.js.map +1 -1
- package/tsconfig.tsbuildinfo +169 -106
- package/demo/data/create-codesandbox.js.map +0 -1
|
@@ -113,26 +113,6 @@
|
|
|
113
113
|
"version": "0c9ea8c2028047f39a3f66752682604f543c08be8806258c3d95c93e75a43255",
|
|
114
114
|
"signature": "0c9ea8c2028047f39a3f66752682604f543c08be8806258c3d95c93e75a43255"
|
|
115
115
|
},
|
|
116
|
-
"../../../../node_modules/date-fns/typings.d.ts": {
|
|
117
|
-
"version": "0d1954e6a821396de9f72b8d2e8553096a755eb76ad99b63857da0b9a23723a0",
|
|
118
|
-
"signature": "0d1954e6a821396de9f72b8d2e8553096a755eb76ad99b63857da0b9a23723a0"
|
|
119
|
-
},
|
|
120
|
-
"../../../../node_modules/date-fns/locale/tr/index.d.ts": {
|
|
121
|
-
"version": "37dce3c308ecb1ef88ddf7c9f9346d64c2b09a36eb7dcd4fe9d9736f5608107f",
|
|
122
|
-
"signature": "37dce3c308ecb1ef88ddf7c9f9346d64c2b09a36eb7dcd4fe9d9736f5608107f"
|
|
123
|
-
},
|
|
124
|
-
"../../demo/data/bar.ts": {
|
|
125
|
-
"version": "115cf7c128dc5e35c57ad6ddfaf6bd1ff6dcc4dba841355b370d69d51620c792",
|
|
126
|
-
"signature": "f11b07420478afdefaa45042d7e78bc1453900a46612ed7ee5ca95679db3de05"
|
|
127
|
-
},
|
|
128
|
-
"../../demo/data/line.ts": {
|
|
129
|
-
"version": "c5342366aa7525964a622c0e57d4f8aae28645b7c99bd9d365dde1a659ff7023",
|
|
130
|
-
"signature": "035f4305a565b6a9c57cae830c6f7f8ae7aea361ea40546429a753fcc3c9cb81"
|
|
131
|
-
},
|
|
132
|
-
"../../demo/data/bubble.ts": {
|
|
133
|
-
"version": "aa0463826d17f9275b55fd9af2a4e643c99802e526f17e3d3a83acee3c5ebd7a",
|
|
134
|
-
"signature": "ed22362904fb0f6faea1d982bab8023e7019cb7b65e2a1ee1daf35022ba84c4d"
|
|
135
|
-
},
|
|
136
116
|
"../../../../node_modules/codesandbox-import-utils/lib/api/define.d.ts": {
|
|
137
117
|
"version": "a0d8a4615587d85377d884a829baf0a50c5f36a89ccf2e07c48b0d8f2f9d76f1",
|
|
138
118
|
"signature": "a0d8a4615587d85377d884a829baf0a50c5f36a89ccf2e07c48b0d8f2f9d76f1"
|
|
@@ -141,33 +121,21 @@
|
|
|
141
121
|
"version": "7daed976a3f0970f36023ac5f65197a16102f1b948a6d350ac3d6010af983c8b",
|
|
142
122
|
"signature": "7daed976a3f0970f36023ac5f65197a16102f1b948a6d350ac3d6010af983c8b"
|
|
143
123
|
},
|
|
144
|
-
"../../demo/
|
|
145
|
-
"version": "
|
|
146
|
-
"signature": "
|
|
147
|
-
},
|
|
148
|
-
"../../demo/data/pie.ts": {
|
|
149
|
-
"version": "825f70f0dad127bd2d2f2859dc353c04b2aa24a555d6ec221307b5f302bd741c",
|
|
150
|
-
"signature": "8a2cdae18db6c25482316c5bb2d3bdd291824b36a0389139935730170d83408b"
|
|
151
|
-
},
|
|
152
|
-
"../../demo/data/donut.ts": {
|
|
153
|
-
"version": "49a0b26427cb671f123e52affe6fdc81a80d9c8537869eb03830def9171ad372",
|
|
154
|
-
"signature": "8ff04e223478b564fa8f26e9796771691e6cf0110edfcce65a11fcc75bd70f49"
|
|
155
|
-
},
|
|
156
|
-
"../../demo/data/scatter.ts": {
|
|
157
|
-
"version": "059b89878cdad45db051d410d2119afba9772be0038ac4f16966fd6a5061b3d2",
|
|
158
|
-
"signature": "ec765d32dbef9c027b73c5c288aa63e30ee8d8aeaba107f66f509ea04152cc7c"
|
|
124
|
+
"../../demo/create-codesandbox.ts": {
|
|
125
|
+
"version": "6383c7624d528b3f0bd3a35b4afdf58ac608805af8f268cf3848ec8056a18d8d",
|
|
126
|
+
"signature": "b7df433c4664dd2719c6eefd32021de6163a14624165daba31088bd90da5ee4f"
|
|
159
127
|
},
|
|
160
|
-
"
|
|
161
|
-
"version": "
|
|
162
|
-
"signature": "
|
|
128
|
+
"../../../../node_modules/date-fns/typings.d.ts": {
|
|
129
|
+
"version": "0d1954e6a821396de9f72b8d2e8553096a755eb76ad99b63857da0b9a23723a0",
|
|
130
|
+
"signature": "0d1954e6a821396de9f72b8d2e8553096a755eb76ad99b63857da0b9a23723a0"
|
|
163
131
|
},
|
|
164
|
-
"
|
|
165
|
-
"version": "
|
|
166
|
-
"signature": "
|
|
132
|
+
"../../../../node_modules/date-fns/locale/tr/index.d.ts": {
|
|
133
|
+
"version": "37dce3c308ecb1ef88ddf7c9f9346d64c2b09a36eb7dcd4fe9d9736f5608107f",
|
|
134
|
+
"signature": "37dce3c308ecb1ef88ddf7c9f9346d64c2b09a36eb7dcd4fe9d9736f5608107f"
|
|
167
135
|
},
|
|
168
|
-
"../../
|
|
169
|
-
"version": "
|
|
170
|
-
"signature": "
|
|
136
|
+
"../../demo/data/bar.ts": {
|
|
137
|
+
"version": "3544b2e798662927410d0b5a2fa7782f0c24e095687c38a5039ed96a474c1b06",
|
|
138
|
+
"signature": "d66e1f5763544bb6cead6a4c4c5e5688566b5d8952473d51ecc6e0dd1005c968"
|
|
171
139
|
},
|
|
172
140
|
"../../../../node_modules/@types/d3-array/index.d.ts": {
|
|
173
141
|
"version": "f5b8f86da74b4bfb29f85a631b725a47c8a3ab6c4ce91537e5b176bbe0cd0a7a",
|
|
@@ -297,25 +265,57 @@
|
|
|
297
265
|
"version": "ff07d0e1e23dcc09b7868c330f7d1a554357c1ed2ec211b90dc4f4fbc406cd77",
|
|
298
266
|
"signature": "ff07d0e1e23dcc09b7868c330f7d1a554357c1ed2ec211b90dc4f4fbc406cd77"
|
|
299
267
|
},
|
|
300
|
-
"../../
|
|
301
|
-
"version": "
|
|
302
|
-
"signature": "
|
|
268
|
+
"../../demo/data/line.ts": {
|
|
269
|
+
"version": "d8f9220604e0e5c32efbfce3701293554c4563b28aaf680b04da0bae7495e0b1",
|
|
270
|
+
"signature": "8cbfc1ba99538e7ef396d732c0d12fbb01227f1d2e261767e60a3651c6ce2d7f"
|
|
271
|
+
},
|
|
272
|
+
"../../demo/data/bubble.ts": {
|
|
273
|
+
"version": "1aeb64d8a97db1942fb4b97513fb5d19904ccb5c6c66d3896d79419fc9422850",
|
|
274
|
+
"signature": "557852fdc5c0d5082accd2c713c2619a6bda8f4903896a88a3f4f4b4c1576f88"
|
|
275
|
+
},
|
|
276
|
+
"../../demo/data/pie.ts": {
|
|
277
|
+
"version": "a169c39586edc85fc934cb85834e93ac7795f3a2d70d59ed1417821aebbbe311",
|
|
278
|
+
"signature": "af77c4b8b8b5e5edc9f9df8e5c1ece6898ca16edc0579059a4c42486e5c1bd21"
|
|
279
|
+
},
|
|
280
|
+
"../../demo/data/donut.ts": {
|
|
281
|
+
"version": "4af2bb8382ce73fb17a4d6725b1e5d23a1a790ef148b0dc4959368c773364475",
|
|
282
|
+
"signature": "31a0a774b1b9474e0a573f90d3cfa4edecf298c8c06dfba37846e94a63b00e07"
|
|
283
|
+
},
|
|
284
|
+
"../../demo/data/scatter.ts": {
|
|
285
|
+
"version": "205a1a288e37cf9218cf650750b8efba6dfef939ab578e0c7abdc79b544835b5",
|
|
286
|
+
"signature": "261d5e16ca99f98a7ea6faf6361a7e9a323d3b34b0c8213a964497b8134b515e"
|
|
287
|
+
},
|
|
288
|
+
"../../src/interfaces/a11y.ts": {
|
|
289
|
+
"version": "0d4aed71a8b1dfaf64b2bc13434c2f6b8e19670c16b0c4f090293a2efab8518b",
|
|
290
|
+
"signature": "0d4aed71a8b1dfaf64b2bc13434c2f6b8e19670c16b0c4f090293a2efab8518b"
|
|
291
|
+
},
|
|
292
|
+
"../../src/interfaces/events.ts": {
|
|
293
|
+
"version": "43aac4ee8fd9cde27098071f3ee459fa7f650767ed778cafc5d6318364248a2b",
|
|
294
|
+
"signature": "43aac4ee8fd9cde27098071f3ee459fa7f650767ed778cafc5d6318364248a2b"
|
|
295
|
+
},
|
|
296
|
+
"../../src/interfaces/enums.ts": {
|
|
297
|
+
"version": "877524fa936f00b330d4a1476548bcd894a564aafc199d2dbe4c43e1bdd1ee25",
|
|
298
|
+
"signature": "877524fa936f00b330d4a1476548bcd894a564aafc199d2dbe4c43e1bdd1ee25"
|
|
303
299
|
},
|
|
304
300
|
"../../src/model.ts": {
|
|
305
|
-
"version": "
|
|
306
|
-
"signature": "
|
|
301
|
+
"version": "3b20eb61e39e4df60c0d8996ca6d5035835f454802ef839d2be2a8ce723d29f3",
|
|
302
|
+
"signature": "3b20eb61e39e4df60c0d8996ca6d5035835f454802ef839d2be2a8ce723d29f3"
|
|
307
303
|
},
|
|
308
304
|
"../../src/components/component.ts": {
|
|
309
305
|
"version": "e26a591e02fc2b57848b7a548d747f5148aa51f2f223f4b598b944e7d084120d",
|
|
310
306
|
"signature": "e26a591e02fc2b57848b7a548d747f5148aa51f2f223f4b598b944e7d084120d"
|
|
311
307
|
},
|
|
312
308
|
"../../src/interfaces/components.ts": {
|
|
313
|
-
"version": "
|
|
314
|
-
"signature": "
|
|
309
|
+
"version": "a37a74297b67cfca205b49e1d11a2a333edcb404e58a677fc51e21d2a395d476",
|
|
310
|
+
"signature": "a37a74297b67cfca205b49e1d11a2a333edcb404e58a677fc51e21d2a395d476"
|
|
311
|
+
},
|
|
312
|
+
"../../src/interfaces/axis-scales.ts": {
|
|
313
|
+
"version": "3155a4767fe25abf51472993168960121cd678705639f01673478a0d668f7edb",
|
|
314
|
+
"signature": "3155a4767fe25abf51472993168960121cd678705639f01673478a0d668f7edb"
|
|
315
315
|
},
|
|
316
316
|
"../../src/interfaces/charts.ts": {
|
|
317
|
-
"version": "
|
|
318
|
-
"signature": "
|
|
317
|
+
"version": "37fe78b0ab43f5dcfbfed41cbf7dcf760417a416758aa189da8264fbc03a9a7e",
|
|
318
|
+
"signature": "37fe78b0ab43f5dcfbfed41cbf7dcf760417a416758aa189da8264fbc03a9a7e"
|
|
319
319
|
},
|
|
320
320
|
"../../src/interfaces/layout.ts": {
|
|
321
321
|
"version": "4d474058b20e782a7d01c499c6e5871a95dee4cbc1eed7d601e5cb246d3308d0",
|
|
@@ -334,23 +334,23 @@
|
|
|
334
334
|
"signature": "afa0880db70ba4378d000e0d6925973fe200174fb2225d885d372e2ab2b6758e"
|
|
335
335
|
},
|
|
336
336
|
"../../demo/data/step.ts": {
|
|
337
|
-
"version": "
|
|
338
|
-
"signature": "
|
|
337
|
+
"version": "d251a1aec312e986930f31622c4e98bedb8eedc84c5540997ff43432956a0eaf",
|
|
338
|
+
"signature": "b1399f445323373592cbf194c69c3d021b7d8023fec0fad4f955cfa2fa25ce7c"
|
|
339
339
|
},
|
|
340
340
|
"../../../../node_modules/date-fns/locale/fr/index.d.ts": {
|
|
341
341
|
"version": "3e31fb44c1f21304f598fc4c6321bb52aa248a94eae915b48c8bec58b55b42e5",
|
|
342
342
|
"signature": "3e31fb44c1f21304f598fc4c6321bb52aa248a94eae915b48c8bec58b55b42e5"
|
|
343
343
|
},
|
|
344
344
|
"../../demo/data/time-series-axis.ts": {
|
|
345
|
-
"version": "
|
|
346
|
-
"signature": "
|
|
345
|
+
"version": "2b8e669c0a108b9cfc4f53f77feb7da48d8db53f5b711d2d694a81f69f0fdeaf",
|
|
346
|
+
"signature": "70068f32df389c3215e3b16f8efea26c189b3ccc340c9b1070bcdea3baeb20f9"
|
|
347
347
|
},
|
|
348
348
|
"../../demo/data/radar.ts": {
|
|
349
|
-
"version": "
|
|
349
|
+
"version": "1d2ae537bbe418ed6cdb93bea236d015f7e9db82d61cb3c2b234a501079d2937",
|
|
350
350
|
"signature": "7fbd2c1dfdbbe5439288e7376d5b535a4fb03d7f30649924e5bcaa848fda0f6b"
|
|
351
351
|
},
|
|
352
352
|
"../../demo/data/index.ts": {
|
|
353
|
-
"version": "
|
|
353
|
+
"version": "b301f7c7151dff9fd7837acb97c816d4c2fe958c7f63eb9978809ac392a16817",
|
|
354
354
|
"signature": "1fad4ef30d6c61817e694e265c2727dbb5499dc713e16d3c15749bdc1379cf73"
|
|
355
355
|
},
|
|
356
356
|
"../../node_modules/@types/node/globals.d.ts": {
|
|
@@ -775,42 +775,6 @@
|
|
|
775
775
|
"../../node_modules/@types/node/util.d.ts",
|
|
776
776
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
777
777
|
],
|
|
778
|
-
"../../../../node_modules/date-fns/typings.d.ts": [
|
|
779
|
-
"../../../../node_modules/date-fns/typings.d.ts",
|
|
780
|
-
"../../node_modules/@types/node/fs.d.ts",
|
|
781
|
-
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
782
|
-
"../../node_modules/@types/node/util.d.ts",
|
|
783
|
-
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
784
|
-
],
|
|
785
|
-
"../../../../node_modules/date-fns/locale/tr/index.d.ts": [
|
|
786
|
-
"../../../../node_modules/date-fns/typings.d.ts",
|
|
787
|
-
"../../node_modules/@types/node/fs.d.ts",
|
|
788
|
-
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
789
|
-
"../../node_modules/@types/node/util.d.ts",
|
|
790
|
-
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
791
|
-
],
|
|
792
|
-
"../../demo/data/bar.ts": [
|
|
793
|
-
"../../../../node_modules/date-fns/typings.d.ts",
|
|
794
|
-
"../../node_modules/@types/node/fs.d.ts",
|
|
795
|
-
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
796
|
-
"../../node_modules/@types/node/util.d.ts",
|
|
797
|
-
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
798
|
-
],
|
|
799
|
-
"../../demo/data/line.ts": [
|
|
800
|
-
"../../../../node_modules/date-fns/typings.d.ts",
|
|
801
|
-
"../../node_modules/@types/node/fs.d.ts",
|
|
802
|
-
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
803
|
-
"../../node_modules/@types/node/util.d.ts",
|
|
804
|
-
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
805
|
-
],
|
|
806
|
-
"../../demo/data/bubble.ts": [
|
|
807
|
-
"../../demo/data/line.ts",
|
|
808
|
-
"../../../../node_modules/date-fns/typings.d.ts",
|
|
809
|
-
"../../node_modules/@types/node/fs.d.ts",
|
|
810
|
-
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
811
|
-
"../../node_modules/@types/node/util.d.ts",
|
|
812
|
-
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
813
|
-
],
|
|
814
778
|
"../../../../node_modules/codesandbox-import-utils/lib/api/define.d.ts": [
|
|
815
779
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
816
780
|
"../../node_modules/@types/node/fs.d.ts",
|
|
@@ -826,7 +790,7 @@
|
|
|
826
790
|
"../../node_modules/@types/node/util.d.ts",
|
|
827
791
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
828
792
|
],
|
|
829
|
-
"../../demo/
|
|
793
|
+
"../../demo/create-codesandbox.ts": [
|
|
830
794
|
"../../../../node_modules/codesandbox/lib/api/define.d.ts",
|
|
831
795
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
832
796
|
"../../node_modules/@types/node/fs.d.ts",
|
|
@@ -834,45 +798,21 @@
|
|
|
834
798
|
"../../node_modules/@types/node/util.d.ts",
|
|
835
799
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
836
800
|
],
|
|
837
|
-
"
|
|
838
|
-
"../../../../node_modules/date-fns/typings.d.ts",
|
|
839
|
-
"../../node_modules/@types/node/fs.d.ts",
|
|
840
|
-
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
841
|
-
"../../node_modules/@types/node/util.d.ts",
|
|
842
|
-
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
843
|
-
],
|
|
844
|
-
"../../demo/data/donut.ts": [
|
|
845
|
-
"../../demo/data/pie.ts",
|
|
846
|
-
"../../../../node_modules/date-fns/typings.d.ts",
|
|
847
|
-
"../../node_modules/@types/node/fs.d.ts",
|
|
848
|
-
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
849
|
-
"../../node_modules/@types/node/util.d.ts",
|
|
850
|
-
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
851
|
-
],
|
|
852
|
-
"../../demo/data/scatter.ts": [
|
|
853
|
-
"../../demo/data/line.ts",
|
|
854
|
-
"../../../../node_modules/date-fns/typings.d.ts",
|
|
855
|
-
"../../node_modules/@types/node/fs.d.ts",
|
|
856
|
-
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
857
|
-
"../../node_modules/@types/node/util.d.ts",
|
|
858
|
-
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
859
|
-
],
|
|
860
|
-
"../../src/interfaces/a11y.ts": [
|
|
801
|
+
"../../../../node_modules/date-fns/typings.d.ts": [
|
|
861
802
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
862
803
|
"../../node_modules/@types/node/fs.d.ts",
|
|
863
804
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
864
805
|
"../../node_modules/@types/node/util.d.ts",
|
|
865
806
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
866
807
|
],
|
|
867
|
-
"
|
|
808
|
+
"../../../../node_modules/date-fns/locale/tr/index.d.ts": [
|
|
868
809
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
869
810
|
"../../node_modules/@types/node/fs.d.ts",
|
|
870
811
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
871
812
|
"../../node_modules/@types/node/util.d.ts",
|
|
872
813
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
873
814
|
],
|
|
874
|
-
"../../
|
|
875
|
-
"../interfaces/events.d.ts",
|
|
815
|
+
"../../demo/data/bar.ts": [
|
|
876
816
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
877
817
|
"../../node_modules/@types/node/fs.d.ts",
|
|
878
818
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
@@ -1144,8 +1084,7 @@
|
|
|
1144
1084
|
"../../node_modules/@types/node/util.d.ts",
|
|
1145
1085
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1146
1086
|
],
|
|
1147
|
-
"../../
|
|
1148
|
-
"../interfaces/enums.d.ts",
|
|
1087
|
+
"../../demo/data/line.ts": [
|
|
1149
1088
|
"../../../../node_modules/@types/d3/index.d.ts",
|
|
1150
1089
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1151
1090
|
"../../node_modules/@types/node/fs.d.ts",
|
|
@@ -1153,6 +1092,59 @@
|
|
|
1153
1092
|
"../../node_modules/@types/node/util.d.ts",
|
|
1154
1093
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1155
1094
|
],
|
|
1095
|
+
"../../demo/data/bubble.ts": [
|
|
1096
|
+
"../../demo/data/line.ts",
|
|
1097
|
+
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1098
|
+
"../../node_modules/@types/node/fs.d.ts",
|
|
1099
|
+
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1100
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
1101
|
+
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1102
|
+
],
|
|
1103
|
+
"../../demo/data/pie.ts": [
|
|
1104
|
+
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1105
|
+
"../../node_modules/@types/node/fs.d.ts",
|
|
1106
|
+
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1107
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
1108
|
+
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1109
|
+
],
|
|
1110
|
+
"../../demo/data/donut.ts": [
|
|
1111
|
+
"../../demo/data/pie.ts",
|
|
1112
|
+
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1113
|
+
"../../node_modules/@types/node/fs.d.ts",
|
|
1114
|
+
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1115
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
1116
|
+
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1117
|
+
],
|
|
1118
|
+
"../../demo/data/scatter.ts": [
|
|
1119
|
+
"../../demo/data/line.ts",
|
|
1120
|
+
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1121
|
+
"../../node_modules/@types/node/fs.d.ts",
|
|
1122
|
+
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1123
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
1124
|
+
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1125
|
+
],
|
|
1126
|
+
"../../src/interfaces/a11y.ts": [
|
|
1127
|
+
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1128
|
+
"../../node_modules/@types/node/fs.d.ts",
|
|
1129
|
+
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1130
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
1131
|
+
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1132
|
+
],
|
|
1133
|
+
"../../src/interfaces/events.ts": [
|
|
1134
|
+
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1135
|
+
"../../node_modules/@types/node/fs.d.ts",
|
|
1136
|
+
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1137
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
1138
|
+
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1139
|
+
],
|
|
1140
|
+
"../../src/interfaces/enums.ts": [
|
|
1141
|
+
"../interfaces/events.d.ts",
|
|
1142
|
+
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1143
|
+
"../../node_modules/@types/node/fs.d.ts",
|
|
1144
|
+
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1145
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
1146
|
+
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1147
|
+
],
|
|
1156
1148
|
"../../src/model.ts": [
|
|
1157
1149
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1158
1150
|
"../../node_modules/@types/node/fs.d.ts",
|
|
@@ -1177,6 +1169,16 @@
|
|
|
1177
1169
|
"../../node_modules/@types/node/util.d.ts",
|
|
1178
1170
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1179
1171
|
],
|
|
1172
|
+
"../../src/interfaces/axis-scales.ts": [
|
|
1173
|
+
"../interfaces/enums.d.ts",
|
|
1174
|
+
"../../../../node_modules/@types/d3/index.d.ts",
|
|
1175
|
+
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1176
|
+
"../interfaces/components.d.ts",
|
|
1177
|
+
"../../node_modules/@types/node/fs.d.ts",
|
|
1178
|
+
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1179
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
1180
|
+
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1181
|
+
],
|
|
1180
1182
|
"../../src/interfaces/charts.ts": [
|
|
1181
1183
|
"../interfaces/index.d.ts",
|
|
1182
1184
|
"../interfaces/components.d.ts",
|
|
@@ -1264,7 +1266,7 @@
|
|
|
1264
1266
|
"../../demo/data/step.ts",
|
|
1265
1267
|
"../../demo/data/time-series-axis.ts",
|
|
1266
1268
|
"../../demo/data/radar.ts",
|
|
1267
|
-
"../../demo/
|
|
1269
|
+
"../../demo/create-codesandbox.ts",
|
|
1268
1270
|
"../tools.d.ts",
|
|
1269
1271
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1270
1272
|
"../../node_modules/@types/node/fs.d.ts",
|
|
@@ -1886,14 +1888,15 @@
|
|
|
1886
1888
|
"../../node_modules/@types/node/util.d.ts",
|
|
1887
1889
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1888
1890
|
],
|
|
1889
|
-
"../../../../node_modules/
|
|
1891
|
+
"../../../../node_modules/codesandbox-import-utils/lib/api/define.d.ts": [
|
|
1890
1892
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1891
1893
|
"../../node_modules/@types/node/fs.d.ts",
|
|
1892
1894
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1893
1895
|
"../../node_modules/@types/node/util.d.ts",
|
|
1894
1896
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1895
1897
|
],
|
|
1896
|
-
"../../../../node_modules/
|
|
1898
|
+
"../../../../node_modules/codesandbox/lib/api/define.d.ts": [
|
|
1899
|
+
"../../../../node_modules/codesandbox-import-utils/lib/api/define.d.ts",
|
|
1897
1900
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1898
1901
|
"../../node_modules/@types/node/fs.d.ts",
|
|
1899
1902
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
@@ -1910,146 +1913,107 @@
|
|
|
1910
1913
|
"../../demo/data/step.ts",
|
|
1911
1914
|
"../../demo/data/radar.ts"
|
|
1912
1915
|
],
|
|
1913
|
-
"../../../../node_modules/
|
|
1916
|
+
"../../../../node_modules/date-fns/typings.d.ts": [
|
|
1914
1917
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1915
1918
|
"../../node_modules/@types/node/fs.d.ts",
|
|
1916
1919
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1917
1920
|
"../../node_modules/@types/node/util.d.ts",
|
|
1918
1921
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1919
1922
|
],
|
|
1920
|
-
"../../../../node_modules/
|
|
1921
|
-
"../../../../node_modules/codesandbox-import-utils/lib/api/define.d.ts",
|
|
1923
|
+
"../../../../node_modules/date-fns/locale/tr/index.d.ts": [
|
|
1922
1924
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1923
1925
|
"../../node_modules/@types/node/fs.d.ts",
|
|
1924
1926
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1925
1927
|
"../../node_modules/@types/node/util.d.ts",
|
|
1926
1928
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1927
1929
|
],
|
|
1928
|
-
"
|
|
1930
|
+
"../../../../node_modules/@types/d3-array/index.d.ts": [
|
|
1929
1931
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1930
1932
|
"../../node_modules/@types/node/fs.d.ts",
|
|
1931
1933
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1932
1934
|
"../../node_modules/@types/node/util.d.ts",
|
|
1933
1935
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1934
1936
|
],
|
|
1935
|
-
"
|
|
1936
|
-
"
|
|
1937
|
-
"
|
|
1938
|
-
"
|
|
1939
|
-
"
|
|
1940
|
-
"
|
|
1941
|
-
"
|
|
1942
|
-
"
|
|
1937
|
+
"../../../../node_modules/@types/d3/index.d.ts": [
|
|
1938
|
+
"../../../../node_modules/@types/d3-array/index.d.ts",
|
|
1939
|
+
"../../../../node_modules/@types/d3-axis/index.d.ts",
|
|
1940
|
+
"../../../../node_modules/@types/d3-brush/index.d.ts",
|
|
1941
|
+
"../../../../node_modules/@types/d3-chord/index.d.ts",
|
|
1942
|
+
"../../../../node_modules/@types/d3-collection/index.d.ts",
|
|
1943
|
+
"../../../../node_modules/@types/d3-color/index.d.ts",
|
|
1944
|
+
"../../../../node_modules/@types/d3-dispatch/index.d.ts",
|
|
1945
|
+
"../../../../node_modules/@types/d3-drag/index.d.ts",
|
|
1946
|
+
"../../../../node_modules/@types/d3-dsv/index.d.ts",
|
|
1947
|
+
"../../../../node_modules/@types/d3-ease/index.d.ts",
|
|
1948
|
+
"../../../../node_modules/@types/d3-force/index.d.ts",
|
|
1949
|
+
"../../../../node_modules/@types/d3-format/index.d.ts",
|
|
1950
|
+
"../../../../node_modules/@types/d3-geo/index.d.ts",
|
|
1951
|
+
"../../../../node_modules/@types/d3-hierarchy/index.d.ts",
|
|
1952
|
+
"../../../../node_modules/@types/d3-interpolate/index.d.ts",
|
|
1953
|
+
"../../../../node_modules/@types/d3-path/index.d.ts",
|
|
1954
|
+
"../../../../node_modules/@types/d3-polygon/index.d.ts",
|
|
1955
|
+
"../../../../node_modules/@types/d3-quadtree/index.d.ts",
|
|
1956
|
+
"../../../../node_modules/@types/d3-queue/index.d.ts",
|
|
1957
|
+
"../../../../node_modules/@types/d3-random/index.d.ts",
|
|
1958
|
+
"../../../../node_modules/@types/d3-request/index.d.ts",
|
|
1959
|
+
"../../../../node_modules/@types/d3-scale/index.d.ts",
|
|
1960
|
+
"../../../../node_modules/@types/d3-selection/index.d.ts",
|
|
1961
|
+
"../../../../node_modules/@types/d3-shape/index.d.ts",
|
|
1962
|
+
"../../../../node_modules/@types/d3-time/index.d.ts",
|
|
1963
|
+
"../../../../node_modules/@types/d3-time-format/index.d.ts",
|
|
1964
|
+
"../../../../node_modules/@types/d3-timer/index.d.ts",
|
|
1965
|
+
"../../../../node_modules/@types/d3-transition/index.d.ts",
|
|
1966
|
+
"../../../../node_modules/@types/d3-voronoi/index.d.ts",
|
|
1967
|
+
"../../../../node_modules/@types/d3-zoom/index.d.ts",
|
|
1943
1968
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1944
1969
|
"../../node_modules/@types/node/fs.d.ts",
|
|
1945
1970
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1946
1971
|
"../../node_modules/@types/node/util.d.ts",
|
|
1947
1972
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1948
1973
|
],
|
|
1949
|
-
"../../src/
|
|
1950
|
-
"../interfaces/
|
|
1974
|
+
"../../src/interfaces/axis-scales.ts": [
|
|
1975
|
+
"../interfaces/enums.d.ts",
|
|
1976
|
+
"../../../../node_modules/@types/d3/index.d.ts",
|
|
1951
1977
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1952
|
-
"../../node_modules/@types/node/fs.d.ts",
|
|
1953
|
-
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1954
|
-
"../../node_modules/@types/node/util.d.ts",
|
|
1955
|
-
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1956
|
-
],
|
|
1957
|
-
"../../src/interfaces/charts.ts": [
|
|
1958
|
-
"../interfaces/index.d.ts",
|
|
1959
1978
|
"../interfaces/components.d.ts",
|
|
1960
|
-
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1961
1979
|
"../../node_modules/@types/node/fs.d.ts",
|
|
1962
1980
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1963
1981
|
"../../node_modules/@types/node/util.d.ts",
|
|
1964
1982
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1965
1983
|
],
|
|
1966
|
-
"../../src/interfaces/
|
|
1984
|
+
"../../src/interfaces/index.ts": [
|
|
1985
|
+
"../interfaces/a11y.d.ts",
|
|
1986
|
+
"../interfaces/axis-scales.d.ts",
|
|
1967
1987
|
"../interfaces/charts.d.ts",
|
|
1968
|
-
"
|
|
1969
|
-
"../../node_modules/@types/node/fs.d.ts",
|
|
1970
|
-
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1971
|
-
"../../node_modules/@types/node/util.d.ts",
|
|
1972
|
-
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1973
|
-
],
|
|
1974
|
-
"../../src/interfaces/events.ts": [
|
|
1975
|
-
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1976
|
-
"../../node_modules/@types/node/fs.d.ts",
|
|
1977
|
-
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1978
|
-
"../../node_modules/@types/node/util.d.ts",
|
|
1979
|
-
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1980
|
-
],
|
|
1981
|
-
"../../src/interfaces/enums.ts": [
|
|
1982
|
-
"../interfaces/events.d.ts",
|
|
1983
|
-
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1984
|
-
"../../node_modules/@types/node/fs.d.ts",
|
|
1985
|
-
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1986
|
-
"../../node_modules/@types/node/util.d.ts",
|
|
1987
|
-
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1988
|
-
],
|
|
1989
|
-
"../../src/interfaces/layout.ts": [
|
|
1990
|
-
"../interfaces/enums.d.ts",
|
|
1991
|
-
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1992
|
-
"../../node_modules/@types/node/fs.d.ts",
|
|
1993
|
-
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1994
|
-
"../../node_modules/@types/node/util.d.ts",
|
|
1995
|
-
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1996
|
-
],
|
|
1997
|
-
"../../src/interfaces/components.ts": [
|
|
1988
|
+
"../interfaces/components.d.ts",
|
|
1998
1989
|
"../interfaces/enums.d.ts",
|
|
1999
|
-
"../
|
|
1990
|
+
"../interfaces/layout.d.ts",
|
|
1991
|
+
"../interfaces/model.d.ts",
|
|
2000
1992
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2001
1993
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2002
1994
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2003
1995
|
"../../node_modules/@types/node/util.d.ts",
|
|
2004
1996
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2005
1997
|
],
|
|
2006
|
-
"../../src/
|
|
2007
|
-
"../interfaces/
|
|
2008
|
-
"../../../../node_modules/@types/d3/index.d.ts",
|
|
1998
|
+
"../../src/tools.ts": [
|
|
1999
|
+
"../interfaces/index.d.ts",
|
|
2009
2000
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2010
2001
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2011
2002
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2012
2003
|
"../../node_modules/@types/node/util.d.ts",
|
|
2013
2004
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2014
2005
|
],
|
|
2015
|
-
"
|
|
2006
|
+
"../../src/interfaces/charts.ts": [
|
|
2007
|
+
"../interfaces/index.d.ts",
|
|
2008
|
+
"../interfaces/components.d.ts",
|
|
2016
2009
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2017
2010
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2018
2011
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2019
2012
|
"../../node_modules/@types/node/util.d.ts",
|
|
2020
2013
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2021
2014
|
],
|
|
2022
|
-
"
|
|
2023
|
-
"
|
|
2024
|
-
"../../../../node_modules/@types/d3-axis/index.d.ts",
|
|
2025
|
-
"../../../../node_modules/@types/d3-brush/index.d.ts",
|
|
2026
|
-
"../../../../node_modules/@types/d3-chord/index.d.ts",
|
|
2027
|
-
"../../../../node_modules/@types/d3-collection/index.d.ts",
|
|
2028
|
-
"../../../../node_modules/@types/d3-color/index.d.ts",
|
|
2029
|
-
"../../../../node_modules/@types/d3-dispatch/index.d.ts",
|
|
2030
|
-
"../../../../node_modules/@types/d3-drag/index.d.ts",
|
|
2031
|
-
"../../../../node_modules/@types/d3-dsv/index.d.ts",
|
|
2032
|
-
"../../../../node_modules/@types/d3-ease/index.d.ts",
|
|
2033
|
-
"../../../../node_modules/@types/d3-force/index.d.ts",
|
|
2034
|
-
"../../../../node_modules/@types/d3-format/index.d.ts",
|
|
2035
|
-
"../../../../node_modules/@types/d3-geo/index.d.ts",
|
|
2036
|
-
"../../../../node_modules/@types/d3-hierarchy/index.d.ts",
|
|
2037
|
-
"../../../../node_modules/@types/d3-interpolate/index.d.ts",
|
|
2038
|
-
"../../../../node_modules/@types/d3-path/index.d.ts",
|
|
2039
|
-
"../../../../node_modules/@types/d3-polygon/index.d.ts",
|
|
2040
|
-
"../../../../node_modules/@types/d3-quadtree/index.d.ts",
|
|
2041
|
-
"../../../../node_modules/@types/d3-queue/index.d.ts",
|
|
2042
|
-
"../../../../node_modules/@types/d3-random/index.d.ts",
|
|
2043
|
-
"../../../../node_modules/@types/d3-request/index.d.ts",
|
|
2044
|
-
"../../../../node_modules/@types/d3-scale/index.d.ts",
|
|
2045
|
-
"../../../../node_modules/@types/d3-selection/index.d.ts",
|
|
2046
|
-
"../../../../node_modules/@types/d3-shape/index.d.ts",
|
|
2047
|
-
"../../../../node_modules/@types/d3-time/index.d.ts",
|
|
2048
|
-
"../../../../node_modules/@types/d3-time-format/index.d.ts",
|
|
2049
|
-
"../../../../node_modules/@types/d3-timer/index.d.ts",
|
|
2050
|
-
"../../../../node_modules/@types/d3-transition/index.d.ts",
|
|
2051
|
-
"../../../../node_modules/@types/d3-voronoi/index.d.ts",
|
|
2052
|
-
"../../../../node_modules/@types/d3-zoom/index.d.ts",
|
|
2015
|
+
"../../src/interfaces/model.ts": [
|
|
2016
|
+
"../interfaces/charts.d.ts",
|
|
2053
2017
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2054
2018
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2055
2019
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
@@ -2277,6 +2241,45 @@
|
|
|
2277
2241
|
"../../node_modules/@types/node/util.d.ts",
|
|
2278
2242
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2279
2243
|
],
|
|
2244
|
+
"../../src/interfaces/a11y.ts": [
|
|
2245
|
+
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2246
|
+
"../../node_modules/@types/node/fs.d.ts",
|
|
2247
|
+
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2248
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
2249
|
+
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2250
|
+
],
|
|
2251
|
+
"../../src/interfaces/events.ts": [
|
|
2252
|
+
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2253
|
+
"../../node_modules/@types/node/fs.d.ts",
|
|
2254
|
+
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2255
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
2256
|
+
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2257
|
+
],
|
|
2258
|
+
"../../src/interfaces/enums.ts": [
|
|
2259
|
+
"../interfaces/events.d.ts",
|
|
2260
|
+
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2261
|
+
"../../node_modules/@types/node/fs.d.ts",
|
|
2262
|
+
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2263
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
2264
|
+
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2265
|
+
],
|
|
2266
|
+
"../../src/interfaces/layout.ts": [
|
|
2267
|
+
"../interfaces/enums.d.ts",
|
|
2268
|
+
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2269
|
+
"../../node_modules/@types/node/fs.d.ts",
|
|
2270
|
+
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2271
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
2272
|
+
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2273
|
+
],
|
|
2274
|
+
"../../src/interfaces/components.ts": [
|
|
2275
|
+
"../interfaces/enums.d.ts",
|
|
2276
|
+
"../components/component.d.ts",
|
|
2277
|
+
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2278
|
+
"../../node_modules/@types/node/fs.d.ts",
|
|
2279
|
+
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2280
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
2281
|
+
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2282
|
+
],
|
|
2280
2283
|
"../../src/model.ts": [
|
|
2281
2284
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2282
2285
|
"../../node_modules/@types/node/fs.d.ts",
|
|
@@ -2717,20 +2720,12 @@
|
|
|
2717
2720
|
]
|
|
2718
2721
|
},
|
|
2719
2722
|
"semanticDiagnosticsPerFile": [
|
|
2723
|
+
"../../../../node_modules/codesandbox-import-utils/lib/api/define.d.ts",
|
|
2724
|
+
"../../../../node_modules/codesandbox/lib/api/define.d.ts",
|
|
2725
|
+
"../../demo/create-codesandbox.ts",
|
|
2720
2726
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2721
2727
|
"../../../../node_modules/date-fns/locale/tr/index.d.ts",
|
|
2722
2728
|
"../../demo/data/bar.ts",
|
|
2723
|
-
"../../demo/data/line.ts",
|
|
2724
|
-
"../../demo/data/bubble.ts",
|
|
2725
|
-
"../../../../node_modules/codesandbox-import-utils/lib/api/define.d.ts",
|
|
2726
|
-
"../../../../node_modules/codesandbox/lib/api/define.d.ts",
|
|
2727
|
-
"../../demo/data/create-codesandbox.ts",
|
|
2728
|
-
"../../demo/data/pie.ts",
|
|
2729
|
-
"../../demo/data/donut.ts",
|
|
2730
|
-
"../../demo/data/scatter.ts",
|
|
2731
|
-
"../../src/interfaces/a11y.ts",
|
|
2732
|
-
"../../src/interfaces/events.ts",
|
|
2733
|
-
"../../src/interfaces/enums.ts",
|
|
2734
2729
|
"../../../../node_modules/@types/d3-array/index.d.ts",
|
|
2735
2730
|
"../../../../node_modules/@types/d3-selection/index.d.ts",
|
|
2736
2731
|
"../../../../node_modules/@types/d3-axis/index.d.ts",
|
|
@@ -2763,10 +2758,18 @@
|
|
|
2763
2758
|
"../../../../node_modules/@types/d3-voronoi/index.d.ts",
|
|
2764
2759
|
"../../../../node_modules/@types/d3-zoom/index.d.ts",
|
|
2765
2760
|
"../../../../node_modules/@types/d3/index.d.ts",
|
|
2766
|
-
"../../
|
|
2761
|
+
"../../demo/data/line.ts",
|
|
2762
|
+
"../../demo/data/bubble.ts",
|
|
2763
|
+
"../../demo/data/pie.ts",
|
|
2764
|
+
"../../demo/data/donut.ts",
|
|
2765
|
+
"../../demo/data/scatter.ts",
|
|
2766
|
+
"../../src/interfaces/a11y.ts",
|
|
2767
|
+
"../../src/interfaces/events.ts",
|
|
2768
|
+
"../../src/interfaces/enums.ts",
|
|
2767
2769
|
"../../src/model.ts",
|
|
2768
2770
|
"../../src/components/component.ts",
|
|
2769
2771
|
"../../src/interfaces/components.ts",
|
|
2772
|
+
"../../src/interfaces/axis-scales.ts",
|
|
2770
2773
|
"../../src/interfaces/charts.ts",
|
|
2771
2774
|
"../../src/interfaces/layout.ts",
|
|
2772
2775
|
"../../src/interfaces/model.ts",
|