@carbon/charts 0.30.20 → 0.30.24
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 +32 -0
- package/build/demo/data/bar.d.ts +174 -0
- 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 +11 -0
- package/build/src/interfaces/charts.d.ts +4 -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/getting-started/angular.d.ts +1 -0
- package/build/stories/tutorials/getting-started/react.d.ts +1 -0
- package/build/stories/tutorials/getting-started/vanilla.d.ts +1 -0
- package/build/stories/tutorials/getting-started/vue.d.ts +1 -0
- package/build/stories/tutorials/index.d.ts +6 -0
- package/build/stories/tutorials/tabular-data-format.d.ts +1 -0
- package/bundle.js +1 -1
- package/charts/bar-grouped.js +4 -2
- package/charts/bar-grouped.js.map +1 -1
- package/charts/bar-simple.js +4 -2
- package/charts/bar-simple.js.map +1 -1
- package/charts/bar-stacked.js +4 -2
- package/charts/bar-stacked.js.map +1 -1
- package/charts/bubble.js +4 -2
- package/charts/bubble.js.map +1 -1
- package/charts/donut.js +4 -2
- package/charts/donut.js.map +1 -1
- package/charts/line.js +4 -2
- package/charts/line.js.map +1 -1
- package/charts/pie.js +4 -2
- package/charts/pie.js.map +1 -1
- package/charts/scatter.js +4 -2
- package/charts/scatter.js.map +1 -1
- package/components/axes/axis.js +24 -13
- package/components/axes/axis.js.map +1 -1
- package/components/axes/grid.d.ts +3 -3
- package/components/axes/grid.js +27 -9
- package/components/axes/grid.js.map +1 -1
- package/components/axes/two-dimensional-axes.d.ts +3 -0
- package/components/axes/two-dimensional-axes.js +30 -0
- package/components/axes/two-dimensional-axes.js.map +1 -1
- package/components/axes/zero-line.js +15 -1
- package/components/axes/zero-line.js.map +1 -1
- package/components/essentials/threshold.d.ts +17 -0
- package/components/essentials/threshold.js +165 -0
- package/components/essentials/threshold.js.map +1 -0
- package/components/graphs/bar-grouped.js +3 -1
- package/components/graphs/bar-grouped.js.map +1 -1
- package/components/graphs/bar-simple.js +1 -1
- package/components/graphs/bar-simple.js.map +1 -1
- package/components/graphs/bar-stacked.js +1 -1
- 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/donut.js +6 -0
- package/components/graphs/donut.js.map +1 -1
- package/components/graphs/scatter.d.ts +1 -0
- package/components/graphs/scatter.js +28 -0
- package/components/graphs/scatter.js.map +1 -1
- package/components/graphs/skeleton.d.ts +22 -0
- package/components/graphs/skeleton.js +241 -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/configuration.js +2 -1
- package/configuration.js.map +1 -1
- package/demo/data/bar.d.ts +174 -0
- package/demo/data/bar.js +188 -2
- package/demo/data/bar.js.map +1 -1
- package/demo/data/bubble.d.ts +41 -0
- package/demo/data/bubble.js +43 -0
- 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 +177 -0
- package/demo/data/index.js.map +1 -1
- package/demo/data/line.d.ts +70 -0
- package/demo/data/line.js +73 -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/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 +61 -3
- package/demo/data/time-series-axis.js.map +1 -1
- package/demo/styles.css +292 -0
- 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 +248 -245
- package/interfaces/axis-scales.d.ts +11 -0
- package/interfaces/axis-scales.js.map +1 -1
- package/interfaces/charts.d.ts +4 -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 +3 -0
- package/model.js.map +1 -1
- package/package.json +1 -1
- package/services/scales-cartesian.d.ts +9 -1
- package/services/scales-cartesian.js +33 -0
- package/services/scales-cartesian.js.map +1 -1
- package/services/time-series.js +8 -7
- package/services/time-series.js.map +1 -1
- package/styles/components/_skeleton.scss +57 -0
- package/styles/components/_threshold.scss +49 -0
- package/styles/components/index.scss +2 -0
- package/styles/graphs/_scatter.scss +4 -0
- package/styles-g10.css +76 -0
- 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 +76 -0
- 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 +76 -0
- 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 +76 -0
- package/styles.css.map +1 -1
- package/styles.min.css +1 -1
- package/styles.min.css.map +1 -1
- package/tools.js +6 -0
- package/tools.js.map +1 -1
- package/tsconfig.tsbuildinfo +145 -82
|
@@ -122,52 +122,8 @@
|
|
|
122
122
|
"signature": "37dce3c308ecb1ef88ddf7c9f9346d64c2b09a36eb7dcd4fe9d9736f5608107f"
|
|
123
123
|
},
|
|
124
124
|
"../../demo/data/bar.ts": {
|
|
125
|
-
"version": "
|
|
126
|
-
"signature": "
|
|
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
|
-
"../../../../node_modules/codesandbox-import-utils/lib/api/define.d.ts": {
|
|
137
|
-
"version": "a0d8a4615587d85377d884a829baf0a50c5f36a89ccf2e07c48b0d8f2f9d76f1",
|
|
138
|
-
"signature": "a0d8a4615587d85377d884a829baf0a50c5f36a89ccf2e07c48b0d8f2f9d76f1"
|
|
139
|
-
},
|
|
140
|
-
"../../../../node_modules/codesandbox/lib/api/define.d.ts": {
|
|
141
|
-
"version": "7daed976a3f0970f36023ac5f65197a16102f1b948a6d350ac3d6010af983c8b",
|
|
142
|
-
"signature": "7daed976a3f0970f36023ac5f65197a16102f1b948a6d350ac3d6010af983c8b"
|
|
143
|
-
},
|
|
144
|
-
"../../demo/data/create-codesandbox.ts": {
|
|
145
|
-
"version": "81594c1000ea8fb75e78b8dc4c154d65452a1ab0837346c0c710e63f1c2338ed",
|
|
146
|
-
"signature": "b7a223d921dad12fafde9fefd6956b503d8eba68aa2bc59aaf6ed27aedc39c1f"
|
|
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"
|
|
159
|
-
},
|
|
160
|
-
"../../src/interfaces/a11y.ts": {
|
|
161
|
-
"version": "0d4aed71a8b1dfaf64b2bc13434c2f6b8e19670c16b0c4f090293a2efab8518b",
|
|
162
|
-
"signature": "0d4aed71a8b1dfaf64b2bc13434c2f6b8e19670c16b0c4f090293a2efab8518b"
|
|
163
|
-
},
|
|
164
|
-
"../../src/interfaces/events.ts": {
|
|
165
|
-
"version": "443087afe04f111f9687fa1111ee00d3f7ee0b050cbe239ff2e15a68b8594490",
|
|
166
|
-
"signature": "443087afe04f111f9687fa1111ee00d3f7ee0b050cbe239ff2e15a68b8594490"
|
|
167
|
-
},
|
|
168
|
-
"../../src/interfaces/enums.ts": {
|
|
169
|
-
"version": "43c9c8dec027e8f65ace0ba47e0253f5833f19b8ceb3db32103f5cfefb121229",
|
|
170
|
-
"signature": "43c9c8dec027e8f65ace0ba47e0253f5833f19b8ceb3db32103f5cfefb121229"
|
|
125
|
+
"version": "f9c0d5a1ab2fdd50f4c16fc480de71154d5287e5f2a9be9c722b71450425c2af",
|
|
126
|
+
"signature": "c283ccc2a5aa10c74d5bf1c557950481d1b030280e862ae5f45d1ff5dc4151f8"
|
|
171
127
|
},
|
|
172
128
|
"../../../../node_modules/@types/d3-array/index.d.ts": {
|
|
173
129
|
"version": "f5b8f86da74b4bfb29f85a631b725a47c8a3ab6c4ce91537e5b176bbe0cd0a7a",
|
|
@@ -297,25 +253,69 @@
|
|
|
297
253
|
"version": "ff07d0e1e23dcc09b7868c330f7d1a554357c1ed2ec211b90dc4f4fbc406cd77",
|
|
298
254
|
"signature": "ff07d0e1e23dcc09b7868c330f7d1a554357c1ed2ec211b90dc4f4fbc406cd77"
|
|
299
255
|
},
|
|
300
|
-
"../../
|
|
301
|
-
"version": "
|
|
302
|
-
"signature": "
|
|
256
|
+
"../../demo/data/line.ts": {
|
|
257
|
+
"version": "c72749c18e9a9dfc178a90fe04064f99c2d9b32cd94c3cbf057ce7d589724206",
|
|
258
|
+
"signature": "49bd91840e751aa08eed75fd15b06a8a5dd407bf531658f59f9044acd692c1f5"
|
|
259
|
+
},
|
|
260
|
+
"../../demo/data/bubble.ts": {
|
|
261
|
+
"version": "0eef8a21693201dff1cf00115661d11a1077fa9f0a7d023ef043d76cfe4e5602",
|
|
262
|
+
"signature": "557852fdc5c0d5082accd2c713c2619a6bda8f4903896a88a3f4f4b4c1576f88"
|
|
263
|
+
},
|
|
264
|
+
"../../../../node_modules/codesandbox-import-utils/lib/api/define.d.ts": {
|
|
265
|
+
"version": "a0d8a4615587d85377d884a829baf0a50c5f36a89ccf2e07c48b0d8f2f9d76f1",
|
|
266
|
+
"signature": "a0d8a4615587d85377d884a829baf0a50c5f36a89ccf2e07c48b0d8f2f9d76f1"
|
|
267
|
+
},
|
|
268
|
+
"../../../../node_modules/codesandbox/lib/api/define.d.ts": {
|
|
269
|
+
"version": "7daed976a3f0970f36023ac5f65197a16102f1b948a6d350ac3d6010af983c8b",
|
|
270
|
+
"signature": "7daed976a3f0970f36023ac5f65197a16102f1b948a6d350ac3d6010af983c8b"
|
|
271
|
+
},
|
|
272
|
+
"../../demo/data/create-codesandbox.ts": {
|
|
273
|
+
"version": "81594c1000ea8fb75e78b8dc4c154d65452a1ab0837346c0c710e63f1c2338ed",
|
|
274
|
+
"signature": "b7a223d921dad12fafde9fefd6956b503d8eba68aa2bc59aaf6ed27aedc39c1f"
|
|
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": "7774a74132e0d791bc07367e2fa7370b6a644b68417f0e96c06865d4e00ee0fb",
|
|
314
|
+
"signature": "7774a74132e0d791bc07367e2fa7370b6a644b68417f0e96c06865d4e00ee0fb"
|
|
315
315
|
},
|
|
316
316
|
"../../src/interfaces/charts.ts": {
|
|
317
|
-
"version": "
|
|
318
|
-
"signature": "
|
|
317
|
+
"version": "c041b62e975566b46808580f01ebe26984409e09ee89f366787f5f3fe84fb718",
|
|
318
|
+
"signature": "c041b62e975566b46808580f01ebe26984409e09ee89f366787f5f3fe84fb718"
|
|
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": "a7ec7b7257e572f0462a37377beab3efc76edfd46f43eb0b1e518decda4d6b7c",
|
|
346
|
+
"signature": "70068f32df389c3215e3b16f8efea26c189b3ccc340c9b1070bcdea3baeb20f9"
|
|
347
347
|
},
|
|
348
348
|
"../../demo/data/radar.ts": {
|
|
349
349
|
"version": "b202a0baaf90f6e93a21abdaa7f4e31ed0c86e9f9a57ebdf81c5aa821d72542c",
|
|
350
350
|
"signature": "7fbd2c1dfdbbe5439288e7376d5b535a4fb03d7f30649924e5bcaa848fda0f6b"
|
|
351
351
|
},
|
|
352
352
|
"../../demo/data/index.ts": {
|
|
353
|
-
"version": "
|
|
353
|
+
"version": "c4b76b440c35fa4747ffcdcc278f0b10ed6eec87c05f92007e1fe22c57b4177b",
|
|
354
354
|
"signature": "1fad4ef30d6c61817e694e265c2727dbb5499dc713e16d3c15749bdc1379cf73"
|
|
355
355
|
},
|
|
356
356
|
"../../node_modules/@types/node/globals.d.ts": {
|
|
@@ -796,89 +796,6 @@
|
|
|
796
796
|
"../../node_modules/@types/node/util.d.ts",
|
|
797
797
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
798
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
|
-
"../../../../node_modules/codesandbox-import-utils/lib/api/define.d.ts": [
|
|
815
|
-
"../../../../node_modules/date-fns/typings.d.ts",
|
|
816
|
-
"../../node_modules/@types/node/fs.d.ts",
|
|
817
|
-
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
818
|
-
"../../node_modules/@types/node/util.d.ts",
|
|
819
|
-
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
820
|
-
],
|
|
821
|
-
"../../../../node_modules/codesandbox/lib/api/define.d.ts": [
|
|
822
|
-
"../../../../node_modules/codesandbox-import-utils/lib/api/define.d.ts",
|
|
823
|
-
"../../../../node_modules/date-fns/typings.d.ts",
|
|
824
|
-
"../../node_modules/@types/node/fs.d.ts",
|
|
825
|
-
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
826
|
-
"../../node_modules/@types/node/util.d.ts",
|
|
827
|
-
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
828
|
-
],
|
|
829
|
-
"../../demo/data/create-codesandbox.ts": [
|
|
830
|
-
"../../../../node_modules/codesandbox/lib/api/define.d.ts",
|
|
831
|
-
"../../../../node_modules/date-fns/typings.d.ts",
|
|
832
|
-
"../../node_modules/@types/node/fs.d.ts",
|
|
833
|
-
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
834
|
-
"../../node_modules/@types/node/util.d.ts",
|
|
835
|
-
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
836
|
-
],
|
|
837
|
-
"../../demo/data/pie.ts": [
|
|
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": [
|
|
861
|
-
"../../../../node_modules/date-fns/typings.d.ts",
|
|
862
|
-
"../../node_modules/@types/node/fs.d.ts",
|
|
863
|
-
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
864
|
-
"../../node_modules/@types/node/util.d.ts",
|
|
865
|
-
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
866
|
-
],
|
|
867
|
-
"../../src/interfaces/events.ts": [
|
|
868
|
-
"../../../../node_modules/date-fns/typings.d.ts",
|
|
869
|
-
"../../node_modules/@types/node/fs.d.ts",
|
|
870
|
-
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
871
|
-
"../../node_modules/@types/node/util.d.ts",
|
|
872
|
-
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
873
|
-
],
|
|
874
|
-
"../../src/interfaces/enums.ts": [
|
|
875
|
-
"../interfaces/events.d.ts",
|
|
876
|
-
"../../../../node_modules/date-fns/typings.d.ts",
|
|
877
|
-
"../../node_modules/@types/node/fs.d.ts",
|
|
878
|
-
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
879
|
-
"../../node_modules/@types/node/util.d.ts",
|
|
880
|
-
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
881
|
-
],
|
|
882
799
|
"../../../../node_modules/@types/d3-array/index.d.ts": [
|
|
883
800
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
884
801
|
"../../node_modules/@types/node/fs.d.ts",
|
|
@@ -1144,8 +1061,7 @@
|
|
|
1144
1061
|
"../../node_modules/@types/node/util.d.ts",
|
|
1145
1062
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1146
1063
|
],
|
|
1147
|
-
"../../
|
|
1148
|
-
"../interfaces/enums.d.ts",
|
|
1064
|
+
"../../demo/data/line.ts": [
|
|
1149
1065
|
"../../../../node_modules/@types/d3/index.d.ts",
|
|
1150
1066
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1151
1067
|
"../../node_modules/@types/node/fs.d.ts",
|
|
@@ -1153,6 +1069,82 @@
|
|
|
1153
1069
|
"../../node_modules/@types/node/util.d.ts",
|
|
1154
1070
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1155
1071
|
],
|
|
1072
|
+
"../../demo/data/bubble.ts": [
|
|
1073
|
+
"../../demo/data/line.ts",
|
|
1074
|
+
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1075
|
+
"../../node_modules/@types/node/fs.d.ts",
|
|
1076
|
+
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1077
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
1078
|
+
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1079
|
+
],
|
|
1080
|
+
"../../../../node_modules/codesandbox-import-utils/lib/api/define.d.ts": [
|
|
1081
|
+
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1082
|
+
"../../node_modules/@types/node/fs.d.ts",
|
|
1083
|
+
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1084
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
1085
|
+
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1086
|
+
],
|
|
1087
|
+
"../../../../node_modules/codesandbox/lib/api/define.d.ts": [
|
|
1088
|
+
"../../../../node_modules/codesandbox-import-utils/lib/api/define.d.ts",
|
|
1089
|
+
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1090
|
+
"../../node_modules/@types/node/fs.d.ts",
|
|
1091
|
+
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1092
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
1093
|
+
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1094
|
+
],
|
|
1095
|
+
"../../demo/data/create-codesandbox.ts": [
|
|
1096
|
+
"../../../../node_modules/codesandbox/lib/api/define.d.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",
|
|
@@ -1910,23 +1912,55 @@
|
|
|
1910
1912
|
"../../demo/data/step.ts",
|
|
1911
1913
|
"../../demo/data/radar.ts"
|
|
1912
1914
|
],
|
|
1913
|
-
"../../../../node_modules/
|
|
1915
|
+
"../../../../node_modules/@types/d3-array/index.d.ts": [
|
|
1914
1916
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1915
1917
|
"../../node_modules/@types/node/fs.d.ts",
|
|
1916
1918
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1917
1919
|
"../../node_modules/@types/node/util.d.ts",
|
|
1918
1920
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1919
1921
|
],
|
|
1920
|
-
"../../../../node_modules/
|
|
1921
|
-
"../../../../node_modules/
|
|
1922
|
+
"../../../../node_modules/@types/d3/index.d.ts": [
|
|
1923
|
+
"../../../../node_modules/@types/d3-array/index.d.ts",
|
|
1924
|
+
"../../../../node_modules/@types/d3-axis/index.d.ts",
|
|
1925
|
+
"../../../../node_modules/@types/d3-brush/index.d.ts",
|
|
1926
|
+
"../../../../node_modules/@types/d3-chord/index.d.ts",
|
|
1927
|
+
"../../../../node_modules/@types/d3-collection/index.d.ts",
|
|
1928
|
+
"../../../../node_modules/@types/d3-color/index.d.ts",
|
|
1929
|
+
"../../../../node_modules/@types/d3-dispatch/index.d.ts",
|
|
1930
|
+
"../../../../node_modules/@types/d3-drag/index.d.ts",
|
|
1931
|
+
"../../../../node_modules/@types/d3-dsv/index.d.ts",
|
|
1932
|
+
"../../../../node_modules/@types/d3-ease/index.d.ts",
|
|
1933
|
+
"../../../../node_modules/@types/d3-force/index.d.ts",
|
|
1934
|
+
"../../../../node_modules/@types/d3-format/index.d.ts",
|
|
1935
|
+
"../../../../node_modules/@types/d3-geo/index.d.ts",
|
|
1936
|
+
"../../../../node_modules/@types/d3-hierarchy/index.d.ts",
|
|
1937
|
+
"../../../../node_modules/@types/d3-interpolate/index.d.ts",
|
|
1938
|
+
"../../../../node_modules/@types/d3-path/index.d.ts",
|
|
1939
|
+
"../../../../node_modules/@types/d3-polygon/index.d.ts",
|
|
1940
|
+
"../../../../node_modules/@types/d3-quadtree/index.d.ts",
|
|
1941
|
+
"../../../../node_modules/@types/d3-queue/index.d.ts",
|
|
1942
|
+
"../../../../node_modules/@types/d3-random/index.d.ts",
|
|
1943
|
+
"../../../../node_modules/@types/d3-request/index.d.ts",
|
|
1944
|
+
"../../../../node_modules/@types/d3-scale/index.d.ts",
|
|
1945
|
+
"../../../../node_modules/@types/d3-selection/index.d.ts",
|
|
1946
|
+
"../../../../node_modules/@types/d3-shape/index.d.ts",
|
|
1947
|
+
"../../../../node_modules/@types/d3-time/index.d.ts",
|
|
1948
|
+
"../../../../node_modules/@types/d3-time-format/index.d.ts",
|
|
1949
|
+
"../../../../node_modules/@types/d3-timer/index.d.ts",
|
|
1950
|
+
"../../../../node_modules/@types/d3-transition/index.d.ts",
|
|
1951
|
+
"../../../../node_modules/@types/d3-voronoi/index.d.ts",
|
|
1952
|
+
"../../../../node_modules/@types/d3-zoom/index.d.ts",
|
|
1922
1953
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1923
1954
|
"../../node_modules/@types/node/fs.d.ts",
|
|
1924
1955
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1925
1956
|
"../../node_modules/@types/node/util.d.ts",
|
|
1926
1957
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1927
1958
|
],
|
|
1928
|
-
"../../src/interfaces/
|
|
1959
|
+
"../../src/interfaces/axis-scales.ts": [
|
|
1960
|
+
"../interfaces/enums.d.ts",
|
|
1961
|
+
"../../../../node_modules/@types/d3/index.d.ts",
|
|
1929
1962
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1963
|
+
"../interfaces/components.d.ts",
|
|
1930
1964
|
"../../node_modules/@types/node/fs.d.ts",
|
|
1931
1965
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1932
1966
|
"../../node_modules/@types/node/util.d.ts",
|
|
@@ -1971,306 +2005,275 @@
|
|
|
1971
2005
|
"../../node_modules/@types/node/util.d.ts",
|
|
1972
2006
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1973
2007
|
],
|
|
1974
|
-
"
|
|
2008
|
+
"../../../../node_modules/@types/d3-selection/index.d.ts": [
|
|
1975
2009
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1976
2010
|
"../../node_modules/@types/node/fs.d.ts",
|
|
1977
2011
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1978
2012
|
"../../node_modules/@types/node/util.d.ts",
|
|
1979
2013
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1980
2014
|
],
|
|
1981
|
-
"
|
|
1982
|
-
"
|
|
2015
|
+
"../../../../node_modules/@types/d3-zoom/index.d.ts": [
|
|
2016
|
+
"../../../../node_modules/@types/d3-selection/index.d.ts",
|
|
2017
|
+
"../../../../node_modules/@types/d3-interpolate/index.d.ts",
|
|
1983
2018
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1984
2019
|
"../../node_modules/@types/node/fs.d.ts",
|
|
1985
2020
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1986
2021
|
"../../node_modules/@types/node/util.d.ts",
|
|
1987
2022
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1988
2023
|
],
|
|
1989
|
-
"
|
|
1990
|
-
"
|
|
2024
|
+
"../../../../node_modules/@types/d3-transition/index.d.ts": [
|
|
2025
|
+
"../../../../node_modules/@types/d3-selection/index.d.ts",
|
|
1991
2026
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
1992
2027
|
"../../node_modules/@types/node/fs.d.ts",
|
|
1993
2028
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
1994
2029
|
"../../node_modules/@types/node/util.d.ts",
|
|
1995
2030
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
1996
2031
|
],
|
|
1997
|
-
"
|
|
1998
|
-
"
|
|
1999
|
-
"../components/component.d.ts",
|
|
2032
|
+
"../../../../node_modules/@types/d3-drag/index.d.ts": [
|
|
2033
|
+
"../../../../node_modules/@types/d3-selection/index.d.ts",
|
|
2000
2034
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2001
2035
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2002
2036
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2003
2037
|
"../../node_modules/@types/node/util.d.ts",
|
|
2004
2038
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2005
2039
|
],
|
|
2006
|
-
"
|
|
2007
|
-
"
|
|
2008
|
-
"../../../../node_modules/@types/d3/index.d.ts",
|
|
2040
|
+
"../../../../node_modules/@types/d3-brush/index.d.ts": [
|
|
2041
|
+
"../../../../node_modules/@types/d3-selection/index.d.ts",
|
|
2009
2042
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2010
2043
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2011
2044
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2012
2045
|
"../../node_modules/@types/node/util.d.ts",
|
|
2013
2046
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2014
2047
|
],
|
|
2015
|
-
"../../../../node_modules/@types/d3-
|
|
2048
|
+
"../../../../node_modules/@types/d3-axis/index.d.ts": [
|
|
2049
|
+
"../../../../node_modules/@types/d3-selection/index.d.ts",
|
|
2016
2050
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2017
2051
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2018
2052
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2019
2053
|
"../../node_modules/@types/node/util.d.ts",
|
|
2020
2054
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2021
2055
|
],
|
|
2022
|
-
"../../../../node_modules/@types/d3/index.d.ts": [
|
|
2023
|
-
"../../../../node_modules/@types/d3-array/index.d.ts",
|
|
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",
|
|
2056
|
+
"../../../../node_modules/@types/d3-chord/index.d.ts": [
|
|
2053
2057
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2054
2058
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2055
2059
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2056
2060
|
"../../node_modules/@types/node/util.d.ts",
|
|
2057
2061
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2058
2062
|
],
|
|
2059
|
-
"../../../../node_modules/@types/d3-
|
|
2063
|
+
"../../../../node_modules/@types/d3-collection/index.d.ts": [
|
|
2060
2064
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2061
2065
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2062
2066
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2063
2067
|
"../../node_modules/@types/node/util.d.ts",
|
|
2064
2068
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2065
2069
|
],
|
|
2066
|
-
"../../../../node_modules/@types/d3-
|
|
2067
|
-
"../../../../node_modules/@types/d3-selection/index.d.ts",
|
|
2068
|
-
"../../../../node_modules/@types/d3-interpolate/index.d.ts",
|
|
2070
|
+
"../../../../node_modules/@types/d3-color/index.d.ts": [
|
|
2069
2071
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2070
2072
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2071
2073
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2072
2074
|
"../../node_modules/@types/node/util.d.ts",
|
|
2073
2075
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2074
2076
|
],
|
|
2075
|
-
"../../../../node_modules/@types/d3-
|
|
2076
|
-
"../../../../node_modules/@types/d3-
|
|
2077
|
+
"../../../../node_modules/@types/d3-interpolate/index.d.ts": [
|
|
2078
|
+
"../../../../node_modules/@types/d3-color/index.d.ts",
|
|
2077
2079
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2078
2080
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2079
2081
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2080
2082
|
"../../node_modules/@types/node/util.d.ts",
|
|
2081
2083
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2082
2084
|
],
|
|
2083
|
-
"../../../../node_modules/@types/d3-
|
|
2084
|
-
"../../../../node_modules/@types/d3-selection/index.d.ts",
|
|
2085
|
+
"../../../../node_modules/@types/d3-dispatch/index.d.ts": [
|
|
2085
2086
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2086
2087
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2087
2088
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2088
2089
|
"../../node_modules/@types/node/util.d.ts",
|
|
2089
2090
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2090
2091
|
],
|
|
2091
|
-
"../../../../node_modules/@types/d3-
|
|
2092
|
-
"../../../../node_modules/@types/d3-selection/index.d.ts",
|
|
2092
|
+
"../../../../node_modules/@types/d3-dsv/index.d.ts": [
|
|
2093
2093
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2094
2094
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2095
2095
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2096
2096
|
"../../node_modules/@types/node/util.d.ts",
|
|
2097
2097
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2098
2098
|
],
|
|
2099
|
-
"../../../../node_modules/@types/d3-
|
|
2100
|
-
"../../../../node_modules/@types/d3-
|
|
2099
|
+
"../../../../node_modules/@types/d3-request/index.d.ts": [
|
|
2100
|
+
"../../../../node_modules/@types/d3-dsv/index.d.ts",
|
|
2101
2101
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2102
2102
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2103
2103
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2104
2104
|
"../../node_modules/@types/node/util.d.ts",
|
|
2105
2105
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2106
2106
|
],
|
|
2107
|
-
"../../../../node_modules/@types/d3-
|
|
2107
|
+
"../../../../node_modules/@types/d3-ease/index.d.ts": [
|
|
2108
2108
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2109
2109
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2110
2110
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2111
2111
|
"../../node_modules/@types/node/util.d.ts",
|
|
2112
2112
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2113
2113
|
],
|
|
2114
|
-
"../../../../node_modules/@types/d3-
|
|
2114
|
+
"../../../../node_modules/@types/d3-force/index.d.ts": [
|
|
2115
2115
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2116
2116
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2117
2117
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2118
2118
|
"../../node_modules/@types/node/util.d.ts",
|
|
2119
2119
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2120
2120
|
],
|
|
2121
|
-
"../../../../node_modules/@types/d3-
|
|
2121
|
+
"../../../../node_modules/@types/d3-format/index.d.ts": [
|
|
2122
2122
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2123
2123
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2124
2124
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2125
2125
|
"../../node_modules/@types/node/util.d.ts",
|
|
2126
2126
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2127
2127
|
],
|
|
2128
|
-
"../../../../node_modules/@types/
|
|
2129
|
-
"../../../../node_modules/@types/d3-color/index.d.ts",
|
|
2128
|
+
"../../../../node_modules/@types/geojson/index.d.ts": [
|
|
2130
2129
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2131
2130
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2132
2131
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2133
2132
|
"../../node_modules/@types/node/util.d.ts",
|
|
2134
2133
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2135
2134
|
],
|
|
2136
|
-
"../../../../node_modules/@types/d3-
|
|
2135
|
+
"../../../../node_modules/@types/d3-geo/index.d.ts": [
|
|
2136
|
+
"../../../../node_modules/@types/geojson/index.d.ts",
|
|
2137
2137
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2138
2138
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2139
2139
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2140
2140
|
"../../node_modules/@types/node/util.d.ts",
|
|
2141
2141
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2142
2142
|
],
|
|
2143
|
-
"../../../../node_modules/@types/d3-
|
|
2143
|
+
"../../../../node_modules/@types/d3-hierarchy/index.d.ts": [
|
|
2144
2144
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2145
2145
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2146
2146
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2147
2147
|
"../../node_modules/@types/node/util.d.ts",
|
|
2148
2148
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2149
2149
|
],
|
|
2150
|
-
"../../../../node_modules/@types/d3-
|
|
2151
|
-
"../../../../node_modules/@types/d3-dsv/index.d.ts",
|
|
2150
|
+
"../../../../node_modules/@types/d3-path/index.d.ts": [
|
|
2152
2151
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2153
2152
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2154
2153
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2155
2154
|
"../../node_modules/@types/node/util.d.ts",
|
|
2156
2155
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2157
2156
|
],
|
|
2158
|
-
"../../../../node_modules/@types/d3-
|
|
2157
|
+
"../../../../node_modules/@types/d3-shape/index.d.ts": [
|
|
2158
|
+
"../../../../node_modules/@types/d3-path/index.d.ts",
|
|
2159
2159
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2160
2160
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2161
2161
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2162
2162
|
"../../node_modules/@types/node/util.d.ts",
|
|
2163
2163
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2164
2164
|
],
|
|
2165
|
-
"../../../../node_modules/@types/d3-
|
|
2165
|
+
"../../../../node_modules/@types/d3-polygon/index.d.ts": [
|
|
2166
2166
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2167
2167
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2168
2168
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2169
2169
|
"../../node_modules/@types/node/util.d.ts",
|
|
2170
2170
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2171
2171
|
],
|
|
2172
|
-
"../../../../node_modules/@types/d3-
|
|
2172
|
+
"../../../../node_modules/@types/d3-quadtree/index.d.ts": [
|
|
2173
2173
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2174
2174
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2175
2175
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2176
2176
|
"../../node_modules/@types/node/util.d.ts",
|
|
2177
2177
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2178
2178
|
],
|
|
2179
|
-
"../../../../node_modules/@types/
|
|
2179
|
+
"../../../../node_modules/@types/d3-queue/index.d.ts": [
|
|
2180
2180
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2181
2181
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2182
2182
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2183
2183
|
"../../node_modules/@types/node/util.d.ts",
|
|
2184
2184
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2185
2185
|
],
|
|
2186
|
-
"../../../../node_modules/@types/d3-
|
|
2187
|
-
"../../../../node_modules/@types/geojson/index.d.ts",
|
|
2186
|
+
"../../../../node_modules/@types/d3-random/index.d.ts": [
|
|
2188
2187
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2189
2188
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2190
2189
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2191
2190
|
"../../node_modules/@types/node/util.d.ts",
|
|
2192
2191
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2193
2192
|
],
|
|
2194
|
-
"../../../../node_modules/@types/d3-
|
|
2193
|
+
"../../../../node_modules/@types/d3-time/index.d.ts": [
|
|
2195
2194
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2196
2195
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2197
2196
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2198
2197
|
"../../node_modules/@types/node/util.d.ts",
|
|
2199
2198
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2200
2199
|
],
|
|
2201
|
-
"../../../../node_modules/@types/d3-
|
|
2200
|
+
"../../../../node_modules/@types/d3-scale/index.d.ts": [
|
|
2201
|
+
"../../../../node_modules/@types/d3-time/index.d.ts",
|
|
2202
2202
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2203
2203
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2204
2204
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2205
2205
|
"../../node_modules/@types/node/util.d.ts",
|
|
2206
2206
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2207
2207
|
],
|
|
2208
|
-
"../../../../node_modules/@types/d3-
|
|
2209
|
-
"../../../../node_modules/@types/d3-path/index.d.ts",
|
|
2208
|
+
"../../../../node_modules/@types/d3-time-format/index.d.ts": [
|
|
2210
2209
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2211
2210
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2212
2211
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2213
2212
|
"../../node_modules/@types/node/util.d.ts",
|
|
2214
2213
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2215
2214
|
],
|
|
2216
|
-
"../../../../node_modules/@types/d3-
|
|
2215
|
+
"../../../../node_modules/@types/d3-timer/index.d.ts": [
|
|
2217
2216
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2218
2217
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2219
2218
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2220
2219
|
"../../node_modules/@types/node/util.d.ts",
|
|
2221
2220
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2222
2221
|
],
|
|
2223
|
-
"../../../../node_modules/@types/d3-
|
|
2222
|
+
"../../../../node_modules/@types/d3-voronoi/index.d.ts": [
|
|
2224
2223
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2225
2224
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2226
2225
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2227
2226
|
"../../node_modules/@types/node/util.d.ts",
|
|
2228
2227
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2229
2228
|
],
|
|
2230
|
-
"../../../../node_modules
|
|
2229
|
+
"../../../../node_modules/codesandbox-import-utils/lib/api/define.d.ts": [
|
|
2231
2230
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2232
2231
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2233
2232
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2234
2233
|
"../../node_modules/@types/node/util.d.ts",
|
|
2235
2234
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2236
2235
|
],
|
|
2237
|
-
"../../../../node_modules
|
|
2236
|
+
"../../../../node_modules/codesandbox/lib/api/define.d.ts": [
|
|
2237
|
+
"../../../../node_modules/codesandbox-import-utils/lib/api/define.d.ts",
|
|
2238
2238
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2239
2239
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2240
2240
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2241
2241
|
"../../node_modules/@types/node/util.d.ts",
|
|
2242
2242
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2243
2243
|
],
|
|
2244
|
-
"
|
|
2244
|
+
"../../src/interfaces/a11y.ts": [
|
|
2245
2245
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2246
2246
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2247
2247
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2248
2248
|
"../../node_modules/@types/node/util.d.ts",
|
|
2249
2249
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2250
2250
|
],
|
|
2251
|
-
"
|
|
2252
|
-
"../../../../node_modules/@types/d3-time/index.d.ts",
|
|
2251
|
+
"../../src/interfaces/events.ts": [
|
|
2253
2252
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2254
2253
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2255
2254
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2256
2255
|
"../../node_modules/@types/node/util.d.ts",
|
|
2257
2256
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2258
2257
|
],
|
|
2259
|
-
"
|
|
2258
|
+
"../../src/interfaces/enums.ts": [
|
|
2259
|
+
"../interfaces/events.d.ts",
|
|
2260
2260
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2261
2261
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2262
2262
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2263
2263
|
"../../node_modules/@types/node/util.d.ts",
|
|
2264
2264
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2265
2265
|
],
|
|
2266
|
-
"
|
|
2266
|
+
"../../src/interfaces/layout.ts": [
|
|
2267
|
+
"../interfaces/enums.d.ts",
|
|
2267
2268
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2268
2269
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2269
2270
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
2270
2271
|
"../../node_modules/@types/node/util.d.ts",
|
|
2271
2272
|
"../../node_modules/@types/node/ts3.2/util.d.ts"
|
|
2272
2273
|
],
|
|
2273
|
-
"
|
|
2274
|
+
"../../src/interfaces/components.ts": [
|
|
2275
|
+
"../interfaces/enums.d.ts",
|
|
2276
|
+
"../components/component.d.ts",
|
|
2274
2277
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2275
2278
|
"../../node_modules/@types/node/fs.d.ts",
|
|
2276
2279
|
"../../node_modules/@types/node/ts3.2/fs.d.ts",
|
|
@@ -2720,17 +2723,6 @@
|
|
|
2720
2723
|
"../../../../node_modules/date-fns/typings.d.ts",
|
|
2721
2724
|
"../../../../node_modules/date-fns/locale/tr/index.d.ts",
|
|
2722
2725
|
"../../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
2726
|
"../../../../node_modules/@types/d3-array/index.d.ts",
|
|
2735
2727
|
"../../../../node_modules/@types/d3-selection/index.d.ts",
|
|
2736
2728
|
"../../../../node_modules/@types/d3-axis/index.d.ts",
|
|
@@ -2763,10 +2755,21 @@
|
|
|
2763
2755
|
"../../../../node_modules/@types/d3-voronoi/index.d.ts",
|
|
2764
2756
|
"../../../../node_modules/@types/d3-zoom/index.d.ts",
|
|
2765
2757
|
"../../../../node_modules/@types/d3/index.d.ts",
|
|
2766
|
-
"../../
|
|
2758
|
+
"../../demo/data/line.ts",
|
|
2759
|
+
"../../demo/data/bubble.ts",
|
|
2760
|
+
"../../../../node_modules/codesandbox-import-utils/lib/api/define.d.ts",
|
|
2761
|
+
"../../../../node_modules/codesandbox/lib/api/define.d.ts",
|
|
2762
|
+
"../../demo/data/create-codesandbox.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",
|