@carbon/charts 0.40.12 → 0.41.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (106) hide show
  1. package/CHANGELOG.md +39 -7
  2. package/build/demo/data/index.d.ts +6 -0
  3. package/build/demo/data/treemap.d.ts +15 -0
  4. package/build/src/charts/gauge.d.ts +2 -0
  5. package/build/src/charts/index.d.ts +1 -0
  6. package/build/src/charts/treemap.d.ts +6 -0
  7. package/build/src/components/graphs/treemap.d.ts +9 -0
  8. package/build/src/components/index.d.ts +1 -0
  9. package/build/src/configuration.d.ts +2 -1
  10. package/build/src/interfaces/charts.d.ts +7 -1
  11. package/build/src/interfaces/events.d.ts +9 -0
  12. package/build/src/model-cartesian-charts.d.ts +2 -0
  13. package/build/src/model-gauge.d.ts +6 -0
  14. package/build/src/model.d.ts +0 -1
  15. package/build/src/services/essentials/dom-utils.d.ts +1 -0
  16. package/build/src/tools.d.ts +1 -0
  17. package/bundle.js +1 -1
  18. package/charts/gauge.d.ts +2 -0
  19. package/charts/gauge.js +2 -0
  20. package/charts/gauge.js.map +1 -1
  21. package/charts/index.d.ts +1 -0
  22. package/charts/index.js +1 -0
  23. package/charts/index.js.map +1 -1
  24. package/charts/treemap.d.ts +6 -0
  25. package/charts/treemap.js +41 -0
  26. package/charts/treemap.js.map +1 -0
  27. package/components/axes/two-dimensional-axes.js +4 -0
  28. package/components/axes/two-dimensional-axes.js.map +1 -1
  29. package/components/axes/zoom-bar.js +1 -2
  30. package/components/axes/zoom-bar.js.map +1 -1
  31. package/components/essentials/legend.js +2 -0
  32. package/components/essentials/legend.js.map +1 -1
  33. package/components/essentials/tooltip.js +7 -4
  34. package/components/essentials/tooltip.js.map +1 -1
  35. package/components/graphs/bar-grouped.js +1 -0
  36. package/components/graphs/bar-grouped.js.map +1 -1
  37. package/components/graphs/bar-stacked.js +1 -0
  38. package/components/graphs/bar-stacked.js.map +1 -1
  39. package/components/graphs/gauge.js +23 -16
  40. package/components/graphs/gauge.js.map +1 -1
  41. package/components/graphs/treemap.d.ts +9 -0
  42. package/components/graphs/treemap.js +291 -0
  43. package/components/graphs/treemap.js.map +1 -0
  44. package/components/index.d.ts +1 -0
  45. package/components/index.js +1 -0
  46. package/components/index.js.map +1 -1
  47. package/configuration.d.ts +2 -1
  48. package/configuration.js +12 -2
  49. package/configuration.js.map +1 -1
  50. package/demo/data/bundle.js +1 -1
  51. package/demo/data/gauge.js +2 -2
  52. package/demo/data/gauge.js.map +1 -1
  53. package/demo/data/index.d.ts +6 -0
  54. package/demo/data/index.js +17 -0
  55. package/demo/data/index.js.map +1 -1
  56. package/demo/data/treemap.d.ts +15 -0
  57. package/demo/data/treemap.js +93 -0
  58. package/demo/data/treemap.js.map +1 -0
  59. package/demo/styles.css +303 -274
  60. package/demo/styles.css.map +1 -1
  61. package/demo/styles.min.css +1 -1
  62. package/demo/styles.min.css.map +1 -1
  63. package/demo/tsconfig.tsbuildinfo +26 -12
  64. package/interfaces/charts.d.ts +7 -1
  65. package/interfaces/charts.js.map +1 -1
  66. package/interfaces/events.d.ts +9 -0
  67. package/interfaces/events.js +10 -0
  68. package/interfaces/events.js.map +1 -1
  69. package/model-cartesian-charts.d.ts +2 -0
  70. package/model-cartesian-charts.js +35 -1
  71. package/model-cartesian-charts.js.map +1 -1
  72. package/model-gauge.d.ts +6 -0
  73. package/model-gauge.js +28 -0
  74. package/model-gauge.js.map +1 -0
  75. package/model.d.ts +0 -1
  76. package/model.js +1 -30
  77. package/model.js.map +1 -1
  78. package/package.json +2 -2
  79. package/services/essentials/dom-utils.d.ts +1 -0
  80. package/services/essentials/dom-utils.js +19 -0
  81. package/services/essentials/dom-utils.js.map +1 -1
  82. package/styles/_chart-holder.scss +5 -0
  83. package/styles/colors.scss +1 -1
  84. package/styles/components/_toolbar.scss +2 -2
  85. package/styles/graphs/_treemap.scss +7 -0
  86. package/styles/graphs/index.scss +1 -0
  87. package/styles-g10.css +75 -67
  88. package/styles-g10.css.map +1 -1
  89. package/styles-g10.min.css +1 -1
  90. package/styles-g10.min.css.map +1 -1
  91. package/styles-g100.css +75 -67
  92. package/styles-g100.css.map +1 -1
  93. package/styles-g100.min.css +1 -1
  94. package/styles-g100.min.css.map +1 -1
  95. package/styles-g90.css +75 -67
  96. package/styles-g90.css.map +1 -1
  97. package/styles-g90.min.css +1 -1
  98. package/styles-g90.min.css.map +1 -1
  99. package/styles.css +75 -67
  100. package/styles.css.map +1 -1
  101. package/styles.min.css +1 -1
  102. package/styles.min.css.map +1 -1
  103. package/tools.d.ts +1 -0
  104. package/tools.js +2 -1
  105. package/tools.js.map +1 -1
  106. package/tsconfig.tsbuildinfo +99 -613
@@ -118,8 +118,8 @@
118
118
  "signature": "95edee9e66eb5c6dd0060018df015a4a079945b22b2b5788573094ea68a928be"
119
119
  },
120
120
  "../src/interfaces/events.ts": {
121
- "version": "acd26bbf10586b59e49808b24997295f895cdbd66afa75fcf81ea572bf2a652e",
122
- "signature": "d7b09629b9809cdd8c4f787c4906aafea66c7d7e8156b9ee9e54f6ca5de61ce9"
121
+ "version": "b33e7ad84fe3b4fd1b062a0444b77a4d7a70ca045eaef3316d8aa67e61c05bd5",
122
+ "signature": "1a67bee88525382926fc895938d847bfc0413885658bfec73b703e1876ba3528"
123
123
  },
124
124
  "../src/interfaces/enums.ts": {
125
125
  "version": "13ffc13ecbf4e4673d210fc9e7aa6e26d55de223cf7c4c7141c5e0bc838d1c77",
@@ -258,8 +258,8 @@
258
258
  "signature": "0d1954e6a821396de9f72b8d2e8553096a755eb76ad99b63857da0b9a23723a0"
259
259
  },
260
260
  "../src/tools.ts": {
261
- "version": "4f4b1b5c96d5eea2339e06d73ae7188d7b62dae8d98d41d2e466b62b71e06e47",
262
- "signature": "ac13c15bad4a58a83b860b8978f1afc9b2a1aebafdbd9a68b037cdc632964471"
261
+ "version": "5c767f31588cf17fc4f4b07dc21115d6e0b7c57f017611053e0bb763b43f29df",
262
+ "signature": "9dbeb225d361fb3fd4952e568bfdc97d391d177a320182c3d51b15e2e919bbf8"
263
263
  },
264
264
  "../../../node_modules/date-fns/locale/en-US/index.d.ts": {
265
265
  "version": "40479353a4fea9dd15e631f03b9bf3d724d627a49c7491ac3c3781275de9ba88",
@@ -270,12 +270,12 @@
270
270
  "signature": "a0d79f0871d28fd02c89587cbe34a54e64f92dbc0b58edac8f5dce3e7e9af874"
271
271
  },
272
272
  "../src/configuration.ts": {
273
- "version": "14f9cdab6adf6c35b0dd023ec86293d8a11f6bd12b6265a77a7a4437ca7624c0",
274
- "signature": "3befd2e4a7bab137ff68884f03f610e0e07945f8f04dc853d4f8d33b459c2a6c"
273
+ "version": "ea679187a560adf34715686173c6b0324f56fe9d22c39f78181d33cb7d924f34",
274
+ "signature": "ae035cd13a39762176fcb74fe212c89775e70a54abe4a835b6cc121fca410717"
275
275
  },
276
276
  "../src/model.ts": {
277
- "version": "a9973a0be28e2f0c2288ea553ffe476f47c9d3131c4f449ad199300c307a9b16",
278
- "signature": "dad1e91608727336cb0e2e1602d2471645d1f2a25fa32a48f514c74b7fc75510"
277
+ "version": "68079b311a627f27fde8e88cb588f209ecbb4af1c2f49a95afd08c4c338d60c9",
278
+ "signature": "aab0435829070b7c94b85927f61475bc35bd296f155e21a6764d6e61b5458098"
279
279
  },
280
280
  "../src/services/service.ts": {
281
281
  "version": "8326e7c581e9f2fbfa6ca0d2b17150771156b45fcfe270a2f14b1c74de37db87",
@@ -286,8 +286,8 @@
286
286
  "signature": "6dc3970c1e09b6f0ea2389e69e2dc11906dd4a1b82f7c024504439932facbd3a"
287
287
  },
288
288
  "../src/services/essentials/dom-utils.ts": {
289
- "version": "2d541d432fe1b240900bbf3361e35f46316d3371834af90ea32b357e757483a0",
290
- "signature": "0a4741f6dc0cb4b064b05178597a83afb5d90504673a2245332bd9f9ed0c7c79"
289
+ "version": "90a240c46e8b422689bfe5fc9f4e39c4586fdebb976d8994e055b39af55dd2dc",
290
+ "signature": "3e1b8e66301afc484f175b4952feab5ee1130b15832e8e962cae3dc8d347c8bb"
291
291
  },
292
292
  "../src/services/essentials/events.ts": {
293
293
  "version": "d3fb0ce415f0e4f4665156b863c7afb598ec85dc78c35df3c9ab7deb3e21493e",
@@ -310,8 +310,8 @@
310
310
  "signature": "112e3000bf14f9461dd52e5984e153d75d5dcd2be04f27f25aafc4f9b484056d"
311
311
  },
312
312
  "../src/model-cartesian-charts.ts": {
313
- "version": "e911e6db6d31668431094bc9614f5ddc7c5ffa14ef0729e2753a6cee4daeb0f7",
314
- "signature": "d4c83103967867405525efbece48546781fdd8c1cb4ea7335f4c707f1d209676"
313
+ "version": "55c6b2573e0d421b5e08335fe24835d7354215a35e3d4b6e9a8945b78a717832",
314
+ "signature": "13ad83e34ac4b3567cd96618f238b523972e07f779a41ae4bb4ab5768b1f5e47"
315
315
  },
316
316
  "../src/services/zoom.ts": {
317
317
  "version": "6580acdea26b8fe43a025152888206cca7bdee6ee0f006ebeafb2654a7d19824",
@@ -338,8 +338,8 @@
338
338
  "signature": "c8f6914fe20a169c25a1390b2a1593a01b7947e645da8ccaa867ae88991d7cc7"
339
339
  },
340
340
  "../src/interfaces/charts.ts": {
341
- "version": "3ab639f3f0e1d4fe504c13e7d4ef6b188682650ba703626ec53f850f3dd60ed5",
342
- "signature": "2600274078d570f9d6d527e7f853a3cd06969efe57865c1b79b52eb0691797a0"
341
+ "version": "e62bebc0b47ceacf45581299a6a5df9730ebad96340bd8a9f660544a87bc557a",
342
+ "signature": "f733c2f8a6d8c1cdc74056ac57936a04d552f74d405b3896a16cae8455d2f218"
343
343
  },
344
344
  "../src/interfaces/layout.ts": {
345
345
  "version": "cddb4b977e4a5e8fec8a78753cddd9c0804617ad6e82caa1f33b35967d8c6a7b",
@@ -354,7 +354,7 @@
354
354
  "signature": "76155b4beaf0aa54eb99042bf954e56d47f803147ea42fefb4758e39f222b3d6"
355
355
  },
356
356
  "../src/components/essentials/legend.ts": {
357
- "version": "3d0cc9a983a1851be7774f217b7557d550cd015f716a0be22d8d810018d1e91f",
357
+ "version": "8368853e3a2a72915463e18157df15ad4b8746f4708aefd7c2a6d36de1c7d3f0",
358
358
  "signature": "c0b581972c0b81ccc77a28c4142c5d2da7a829d8aded4ab2a6352fa1b055afd8"
359
359
  },
360
360
  "../../../node_modules/@carbon/utils-position/index.d.ts": {
@@ -378,7 +378,7 @@
378
378
  "signature": "b820873a4156cb5db4e22787277b30e71ba690485c6d6d6cb7bead5927427113"
379
379
  },
380
380
  "../src/components/essentials/tooltip.ts": {
381
- "version": "2bb8a1fa7bf06f83d6fcd7e7e408964a670d4d2b6fc498245cf6c7cc25ba8be7",
381
+ "version": "57f0066e80a52c84ff96138147c1f43eb916ed4c429d7a2f5fa9ef008f810292",
382
382
  "signature": "a12c6056ef8f040bcc0ade19eaf26cc627141c8d8e762da937a22527c6f4b192"
383
383
  },
384
384
  "../src/components/essentials/tooltip-axis.ts": {
@@ -402,11 +402,11 @@
402
402
  "signature": "27a283092b5aac1a68b37dbc110e6a20f16138e901ef093ccca15c0e89448772"
403
403
  },
404
404
  "../src/components/graphs/bar-grouped.ts": {
405
- "version": "cbb85ed471de416df0215304e97d9ab828f17d7dba4cce377a3cf8593671d514",
405
+ "version": "cf78489f16377f8f88b353db222a4be62cc1606f46bac73068063f21e2498c27",
406
406
  "signature": "7c0dda779764e9147f71c3b6528c78331ed184cf5889552300f46cc6ed71ee08"
407
407
  },
408
408
  "../src/components/graphs/bar-stacked.ts": {
409
- "version": "a7f9e4201b9131d40ab7879e50e892f6d06705623b05b332cb5cc7126243133c",
409
+ "version": "caa0f1e7351bc4dc5481042129747350f7fe5fc03e9404d85ad7e0e1a5a9caba",
410
410
  "signature": "ba967c3ba401b6e0790692f41c3c208f61fab36d49c41558e1e3b2172d87ca58"
411
411
  },
412
412
  "../src/components/graphs/scatter.ts": {
@@ -430,7 +430,7 @@
430
430
  "signature": "8babaf3f36454199d514c830650d428e08d94e326fe642b0e8939860ce95bc0c"
431
431
  },
432
432
  "../src/components/graphs/gauge.ts": {
433
- "version": "d4d80a906213707e9b8438724649ad40cbc951dc8131cb6485e9c6270413aa36",
433
+ "version": "0caeee192e0efc4b7274815d7f667bf94c140b61c35bbdd2c8738da4605edbf0",
434
434
  "signature": "5177613a4f9596013e39a291d4767e7eb5fda164c4e9404d2a9354bb03b1d52d"
435
435
  },
436
436
  "../src/components/graphs/donut.ts": {
@@ -445,6 +445,10 @@
445
445
  "version": "fd871d0f6c0687f9e9c50d08ae87b2bbd8c6f8fc2c126a2cef12d19d0112bfb6",
446
446
  "signature": "4d130a759808dc9b69e9512bc2a265ada1f99d8519ca7cc2fda931437754d331"
447
447
  },
448
+ "../src/components/graphs/treemap.ts": {
449
+ "version": "29ecd46d575fdcb1b7ba4083309c9eb33c128276295540997590ad1afdf5027d",
450
+ "signature": "4cc6f2c37e7e38634154a50fbf9d6d4937e30f38b628771bae8598f19527528d"
451
+ },
448
452
  "../src/components/layout/spacer.ts": {
449
453
  "version": "8fbf0aec36baba48283bd7d1aeeb3d3649155764380519bbde6c719fb2d0b791",
450
454
  "signature": "c80acde00a16c24d5d1dd2e80e07aebd350f08f338168392316d6c3436a5dd2b"
@@ -458,7 +462,7 @@
458
462
  "signature": "6e920fe25ab6cf2949ad73634ed80b7478b32081671b771f8a3be45f3634e58b"
459
463
  },
460
464
  "../src/components/axes/two-dimensional-axes.ts": {
461
- "version": "74d8c09ac73d57c33931bcf58b963fc5b5ae71f240f156f11caccb0617ed3533",
465
+ "version": "2e1a9bb978d5f6b36624ea528327e7bb0863a8b59d99398fbd3f7be4e7e49ed1",
462
466
  "signature": "abe9351c7122ef5def04421c31870551a1fb3fc60aa6d05dfbd79dacda30315f"
463
467
  },
464
468
  "../src/components/axes/grid-brush.ts": {
@@ -489,69 +493,13 @@
489
493
  "version": "7b9ffc61ef228aa0d1f55b6779866d7c8aa86786ec43c9977e4db3b17fd19c2d",
490
494
  "signature": "7ffc020d2131b23cee59b12e51ee0368f668a817b5a9e11e76ae8d35f01baffa"
491
495
  },
492
- "../../../node_modules/@types/lodash/common/common.d.ts": {
493
- "version": "53f4f1c8cd9715f1406e076b3932f081d8dbc0cb66c64127f7e5612dd78bff35",
494
- "signature": "53f4f1c8cd9715f1406e076b3932f081d8dbc0cb66c64127f7e5612dd78bff35"
495
- },
496
- "../../../node_modules/@types/lodash/common/array.d.ts": {
497
- "version": "16ed90832cb07935510c019bfb626546c82b36ae54298f0a18abc2560a6f087e",
498
- "signature": "16ed90832cb07935510c019bfb626546c82b36ae54298f0a18abc2560a6f087e"
499
- },
500
- "../../../node_modules/@types/lodash/common/collection.d.ts": {
501
- "version": "163b319e1df7a22a3ecdcf4406245b843eb5f65a99c62c39cd2a218ea8abf3d2",
502
- "signature": "163b319e1df7a22a3ecdcf4406245b843eb5f65a99c62c39cd2a218ea8abf3d2"
503
- },
504
- "../../../node_modules/@types/lodash/common/date.d.ts": {
505
- "version": "d43525f4f59dab8fd9f2cf2f658e76e23ac96a9f32e1b627d4a20201208d1f7a",
506
- "signature": "d43525f4f59dab8fd9f2cf2f658e76e23ac96a9f32e1b627d4a20201208d1f7a"
507
- },
508
- "../../../node_modules/@types/lodash/common/function.d.ts": {
509
- "version": "4eedbd4b4211f6bd699af373676fd4d930f80f97e7a40eac519499990d0ee9c1",
510
- "signature": "4eedbd4b4211f6bd699af373676fd4d930f80f97e7a40eac519499990d0ee9c1"
511
- },
512
- "../../../node_modules/@types/lodash/common/lang.d.ts": {
513
- "version": "943850e1a4b0a62ffa9d2582e8b9917372f573b904667b1a4d92ba0b94cc1f1a",
514
- "signature": "943850e1a4b0a62ffa9d2582e8b9917372f573b904667b1a4d92ba0b94cc1f1a"
515
- },
516
- "../../../node_modules/@types/lodash/common/math.d.ts": {
517
- "version": "25f0c461679e00195e3d2c62a17f71a9dee94bc6bc48c524775c7bb532466a55",
518
- "signature": "25f0c461679e00195e3d2c62a17f71a9dee94bc6bc48c524775c7bb532466a55"
519
- },
520
- "../../../node_modules/@types/lodash/common/number.d.ts": {
521
- "version": "7b02eed24dc6c8f706f5264bee8accbdc5dbcfd79fe8b17775dfc53543705c2f",
522
- "signature": "7b02eed24dc6c8f706f5264bee8accbdc5dbcfd79fe8b17775dfc53543705c2f"
523
- },
524
- "../../../node_modules/@types/lodash/common/object.d.ts": {
525
- "version": "4e62c01cf46b0f5603f6a31b49bd07e66867529a657c32dbb73fff0c851513d6",
526
- "signature": "4e62c01cf46b0f5603f6a31b49bd07e66867529a657c32dbb73fff0c851513d6"
527
- },
528
- "../../../node_modules/@types/lodash/common/seq.d.ts": {
529
- "version": "89ab22ecaf4864adbcfef11bc75f89525a6674a21ecbda68f69214ca99206b64",
530
- "signature": "89ab22ecaf4864adbcfef11bc75f89525a6674a21ecbda68f69214ca99206b64"
531
- },
532
- "../../../node_modules/@types/lodash/common/string.d.ts": {
533
- "version": "b479dd9cd657cc8697b2e9e2e029af72fe58e04481c1475c457526529faa79b8",
534
- "signature": "b479dd9cd657cc8697b2e9e2e029af72fe58e04481c1475c457526529faa79b8"
535
- },
536
- "../../../node_modules/@types/lodash/common/util.d.ts": {
537
- "version": "41a0790b0d3530b613493269250b98644773817116107ba689c54f5abe5ef768",
538
- "signature": "41a0790b0d3530b613493269250b98644773817116107ba689c54f5abe5ef768"
539
- },
540
- "../../../node_modules/@types/lodash/index.d.ts": {
541
- "version": "edb6d55e47f2281c1b9eaa27639f13ae1dcb52b75998bf7c93a2c26287d30a3f",
542
- "signature": "edb6d55e47f2281c1b9eaa27639f13ae1dcb52b75998bf7c93a2c26287d30a3f"
543
- },
544
- "../../../node_modules/@types/lodash/isEmpty.d.ts": {
545
- "version": "8dcd8273655aef81be9c273e532a55f56032c7907b20f8ed4d069f7eec44ace8",
546
- "signature": "8dcd8273655aef81be9c273e532a55f56032c7907b20f8ed4d069f7eec44ace8"
547
- },
548
496
  "../src/components/axes/zoom-bar.ts": {
549
- "version": "30965f125c5dd7ef87b7b274fcc4362e70bcf9c53927f4bfcf4bccc804dd17f8",
497
+ "version": "af813e612d4d2278b8fb31fc2779579e055561274ca9d401a38ebd7fdaf782b9",
550
498
  "signature": "8da7375bab436408332ad774d7772b5bbbd823e926eb60bea737dbf6e42e256a"
551
499
  },
552
500
  "../src/components/index.ts": {
553
- "version": "2e17bebf903d6c96bdbe7a18e422def4363a95de10f6f643cfd2573bddc2a4aa",
554
- "signature": "b898a6ed866208a73f719fdb16a2cd6ced81bc220389265ff0b217e4a09670a9"
501
+ "version": "153160a0056f2fb257479742001ac53867ae29668534fbeea0fb0c34bba72fa2",
502
+ "signature": "299acd7898c623a848df68991f126ebc1b5aa76ae71b4d8468eb8e1e938b1038"
555
503
  },
556
504
  "../src/chart.ts": {
557
505
  "version": "25e950e4291ba4a5d0e29f01c17cfad2c58ca9b0adfa538c43558d7865ff5e75",
@@ -629,13 +577,21 @@
629
577
  "version": "7081434786078c894572e86d0df3c91b83be9939a0832bbd7c39d49374a4a78a",
630
578
  "signature": "e6b6fd0301578f46d25f3d048a33640f318bdff6721e653ba5f96e8fc0b479d7"
631
579
  },
580
+ "../src/model-gauge.ts": {
581
+ "version": "cad188fa60557be9cb695761e3a742b4d9d0a6ab6a07d9e4a0bbc86368e9c295",
582
+ "signature": "20c958a04424cfd5778de78b9b39265abd666291853b28b9d16c0c3b98e79dc7"
583
+ },
632
584
  "../src/charts/gauge.ts": {
633
- "version": "945327e50859f877730733aa076682b81657ad6b431f0da65dbcc998ee7c906f",
634
- "signature": "68ff3794ed5dabc1882a4625d89cb8aea5a49bab72b5557fa9359a6f166ee3f7"
585
+ "version": "38a4f46febea400e154a3e62d99d00d5febfc2311b8a4fa72290ebeb62d1b173",
586
+ "signature": "a0cc6393cadf6ef9e9560b40b7f9f3d5ad8fcb1fff798620ee39aa09ae26063a"
587
+ },
588
+ "../src/charts/treemap.ts": {
589
+ "version": "c22b24ed866703667b87b1ac4a7d0339ad01ad2796fd2e9744ab8eaeb595db47",
590
+ "signature": "ef55b922828e9ba8cb2d5a4f19ec9b6d0dabe4f5c91815ba8ed2e03f121a2897"
635
591
  },
636
592
  "../src/charts/index.ts": {
637
- "version": "0c4be08f42e97316931728eadc19e0e681db626122fbe7cd3636c663eb08fa7e",
638
- "signature": "0c4be08f42e97316931728eadc19e0e681db626122fbe7cd3636c663eb08fa7e"
593
+ "version": "a4a8da9b5043f43d976d2b6b05f509ebcae96843885ae77c6b4f050a18224604",
594
+ "signature": "a4a8da9b5043f43d976d2b6b05f509ebcae96843885ae77c6b4f050a18224604"
639
595
  },
640
596
  "../src/index.ts": {
641
597
  "version": "d13aca7700ffde618dfe34f4e5355360524c3615686085b895414ff54e2cc130",
@@ -1484,6 +1440,7 @@
1484
1440
  "../src/model-cartesian-charts.ts": [
1485
1441
  "../src/model.ts",
1486
1442
  "../src/tools.ts",
1443
+ "../src/interfaces/index.ts",
1487
1444
  "../../../node_modules/date-fns/typings.d.ts",
1488
1445
  "../node_modules/@types/node/fs.d.ts",
1489
1446
  "../node_modules/@types/node/ts3.2/fs.d.ts",
@@ -1875,6 +1832,21 @@
1875
1832
  "../node_modules/@types/node/util.d.ts",
1876
1833
  "../node_modules/@types/node/ts3.2/util.d.ts"
1877
1834
  ],
1835
+ "../src/components/graphs/treemap.ts": [
1836
+ "../src/components/component.ts",
1837
+ "../src/services/index.ts",
1838
+ "../src/interfaces/index.ts",
1839
+ "../src/tools.ts",
1840
+ "../../../node_modules/@types/d3-hierarchy/index.d.ts",
1841
+ "../../../node_modules/@types/d3-array/index.d.ts",
1842
+ "../../../node_modules/@types/d3-color/index.d.ts",
1843
+ "../../../node_modules/@types/d3-selection/index.d.ts",
1844
+ "../../../node_modules/date-fns/typings.d.ts",
1845
+ "../node_modules/@types/node/fs.d.ts",
1846
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1847
+ "../node_modules/@types/node/util.d.ts",
1848
+ "../node_modules/@types/node/ts3.2/util.d.ts"
1849
+ ],
1878
1850
  "../src/components/layout/spacer.ts": [
1879
1851
  "../src/components/component.ts",
1880
1852
  "../src/services/index.ts",
@@ -2008,261 +1980,6 @@
2008
1980
  "../node_modules/@types/node/util.d.ts",
2009
1981
  "../node_modules/@types/node/ts3.2/util.d.ts"
2010
1982
  ],
2011
- "../../../node_modules/@types/lodash/common/common.d.ts": [
2012
- "../../../node_modules/@types/lodash/index.d.ts",
2013
- "../../../node_modules/@types/lodash/common/array.d.ts",
2014
- "../../../node_modules/@types/lodash/common/collection.d.ts",
2015
- "../../../node_modules/@types/lodash/common/date.d.ts",
2016
- "../../../node_modules/@types/lodash/common/function.d.ts",
2017
- "../../../node_modules/@types/lodash/common/lang.d.ts",
2018
- "../../../node_modules/@types/lodash/common/math.d.ts",
2019
- "../../../node_modules/@types/lodash/common/number.d.ts",
2020
- "../../../node_modules/@types/lodash/common/object.d.ts",
2021
- "../../../node_modules/@types/lodash/common/seq.d.ts",
2022
- "../../../node_modules/@types/lodash/common/string.d.ts",
2023
- "../../../node_modules/@types/lodash/common/util.d.ts",
2024
- "../../../node_modules/date-fns/typings.d.ts",
2025
- "../node_modules/@types/node/fs.d.ts",
2026
- "../node_modules/@types/node/ts3.2/fs.d.ts",
2027
- "../node_modules/@types/node/util.d.ts",
2028
- "../node_modules/@types/node/ts3.2/util.d.ts"
2029
- ],
2030
- "../../../node_modules/@types/lodash/common/array.d.ts": [
2031
- "../../../node_modules/@types/lodash/index.d.ts",
2032
- "../../../node_modules/@types/lodash/common/common.d.ts",
2033
- "../../../node_modules/@types/lodash/common/collection.d.ts",
2034
- "../../../node_modules/@types/lodash/common/date.d.ts",
2035
- "../../../node_modules/@types/lodash/common/function.d.ts",
2036
- "../../../node_modules/@types/lodash/common/lang.d.ts",
2037
- "../../../node_modules/@types/lodash/common/math.d.ts",
2038
- "../../../node_modules/@types/lodash/common/number.d.ts",
2039
- "../../../node_modules/@types/lodash/common/object.d.ts",
2040
- "../../../node_modules/@types/lodash/common/seq.d.ts",
2041
- "../../../node_modules/@types/lodash/common/string.d.ts",
2042
- "../../../node_modules/@types/lodash/common/util.d.ts",
2043
- "../../../node_modules/date-fns/typings.d.ts",
2044
- "../node_modules/@types/node/fs.d.ts",
2045
- "../node_modules/@types/node/ts3.2/fs.d.ts",
2046
- "../node_modules/@types/node/util.d.ts",
2047
- "../node_modules/@types/node/ts3.2/util.d.ts"
2048
- ],
2049
- "../../../node_modules/@types/lodash/common/collection.d.ts": [
2050
- "../../../node_modules/@types/lodash/index.d.ts",
2051
- "../../../node_modules/@types/lodash/common/common.d.ts",
2052
- "../../../node_modules/@types/lodash/common/array.d.ts",
2053
- "../../../node_modules/@types/lodash/common/date.d.ts",
2054
- "../../../node_modules/@types/lodash/common/function.d.ts",
2055
- "../../../node_modules/@types/lodash/common/lang.d.ts",
2056
- "../../../node_modules/@types/lodash/common/math.d.ts",
2057
- "../../../node_modules/@types/lodash/common/number.d.ts",
2058
- "../../../node_modules/@types/lodash/common/object.d.ts",
2059
- "../../../node_modules/@types/lodash/common/seq.d.ts",
2060
- "../../../node_modules/@types/lodash/common/string.d.ts",
2061
- "../../../node_modules/@types/lodash/common/util.d.ts",
2062
- "../../../node_modules/date-fns/typings.d.ts",
2063
- "../node_modules/@types/node/fs.d.ts",
2064
- "../node_modules/@types/node/ts3.2/fs.d.ts",
2065
- "../node_modules/@types/node/util.d.ts",
2066
- "../node_modules/@types/node/ts3.2/util.d.ts"
2067
- ],
2068
- "../../../node_modules/@types/lodash/common/date.d.ts": [
2069
- "../../../node_modules/@types/lodash/index.d.ts",
2070
- "../../../node_modules/@types/lodash/common/common.d.ts",
2071
- "../../../node_modules/@types/lodash/common/array.d.ts",
2072
- "../../../node_modules/@types/lodash/common/collection.d.ts",
2073
- "../../../node_modules/@types/lodash/common/function.d.ts",
2074
- "../../../node_modules/@types/lodash/common/lang.d.ts",
2075
- "../../../node_modules/@types/lodash/common/math.d.ts",
2076
- "../../../node_modules/@types/lodash/common/number.d.ts",
2077
- "../../../node_modules/@types/lodash/common/object.d.ts",
2078
- "../../../node_modules/@types/lodash/common/seq.d.ts",
2079
- "../../../node_modules/@types/lodash/common/string.d.ts",
2080
- "../../../node_modules/@types/lodash/common/util.d.ts",
2081
- "../../../node_modules/date-fns/typings.d.ts",
2082
- "../node_modules/@types/node/fs.d.ts",
2083
- "../node_modules/@types/node/ts3.2/fs.d.ts",
2084
- "../node_modules/@types/node/util.d.ts",
2085
- "../node_modules/@types/node/ts3.2/util.d.ts"
2086
- ],
2087
- "../../../node_modules/@types/lodash/common/function.d.ts": [
2088
- "../../../node_modules/@types/lodash/index.d.ts",
2089
- "../../../node_modules/@types/lodash/common/common.d.ts",
2090
- "../../../node_modules/@types/lodash/common/array.d.ts",
2091
- "../../../node_modules/@types/lodash/common/collection.d.ts",
2092
- "../../../node_modules/@types/lodash/common/date.d.ts",
2093
- "../../../node_modules/@types/lodash/common/lang.d.ts",
2094
- "../../../node_modules/@types/lodash/common/math.d.ts",
2095
- "../../../node_modules/@types/lodash/common/number.d.ts",
2096
- "../../../node_modules/@types/lodash/common/object.d.ts",
2097
- "../../../node_modules/@types/lodash/common/seq.d.ts",
2098
- "../../../node_modules/@types/lodash/common/string.d.ts",
2099
- "../../../node_modules/@types/lodash/common/util.d.ts",
2100
- "../../../node_modules/date-fns/typings.d.ts",
2101
- "../node_modules/@types/node/fs.d.ts",
2102
- "../node_modules/@types/node/ts3.2/fs.d.ts",
2103
- "../node_modules/@types/node/util.d.ts",
2104
- "../node_modules/@types/node/ts3.2/util.d.ts"
2105
- ],
2106
- "../../../node_modules/@types/lodash/common/lang.d.ts": [
2107
- "../../../node_modules/@types/lodash/index.d.ts",
2108
- "../../../node_modules/@types/lodash/common/common.d.ts",
2109
- "../../../node_modules/@types/lodash/common/array.d.ts",
2110
- "../../../node_modules/@types/lodash/common/collection.d.ts",
2111
- "../../../node_modules/@types/lodash/common/date.d.ts",
2112
- "../../../node_modules/@types/lodash/common/function.d.ts",
2113
- "../../../node_modules/@types/lodash/common/math.d.ts",
2114
- "../../../node_modules/@types/lodash/common/number.d.ts",
2115
- "../../../node_modules/@types/lodash/common/object.d.ts",
2116
- "../../../node_modules/@types/lodash/common/seq.d.ts",
2117
- "../../../node_modules/@types/lodash/common/string.d.ts",
2118
- "../../../node_modules/@types/lodash/common/util.d.ts",
2119
- "../../../node_modules/date-fns/typings.d.ts",
2120
- "../node_modules/@types/node/fs.d.ts",
2121
- "../node_modules/@types/node/ts3.2/fs.d.ts",
2122
- "../node_modules/@types/node/util.d.ts",
2123
- "../node_modules/@types/node/ts3.2/util.d.ts"
2124
- ],
2125
- "../../../node_modules/@types/lodash/common/math.d.ts": [
2126
- "../../../node_modules/@types/lodash/index.d.ts",
2127
- "../../../node_modules/@types/lodash/common/common.d.ts",
2128
- "../../../node_modules/@types/lodash/common/array.d.ts",
2129
- "../../../node_modules/@types/lodash/common/collection.d.ts",
2130
- "../../../node_modules/@types/lodash/common/date.d.ts",
2131
- "../../../node_modules/@types/lodash/common/function.d.ts",
2132
- "../../../node_modules/@types/lodash/common/lang.d.ts",
2133
- "../../../node_modules/@types/lodash/common/number.d.ts",
2134
- "../../../node_modules/@types/lodash/common/object.d.ts",
2135
- "../../../node_modules/@types/lodash/common/seq.d.ts",
2136
- "../../../node_modules/@types/lodash/common/string.d.ts",
2137
- "../../../node_modules/@types/lodash/common/util.d.ts",
2138
- "../../../node_modules/date-fns/typings.d.ts",
2139
- "../node_modules/@types/node/fs.d.ts",
2140
- "../node_modules/@types/node/ts3.2/fs.d.ts",
2141
- "../node_modules/@types/node/util.d.ts",
2142
- "../node_modules/@types/node/ts3.2/util.d.ts"
2143
- ],
2144
- "../../../node_modules/@types/lodash/common/number.d.ts": [
2145
- "../../../node_modules/@types/lodash/index.d.ts",
2146
- "../../../node_modules/@types/lodash/common/common.d.ts",
2147
- "../../../node_modules/@types/lodash/common/array.d.ts",
2148
- "../../../node_modules/@types/lodash/common/collection.d.ts",
2149
- "../../../node_modules/@types/lodash/common/date.d.ts",
2150
- "../../../node_modules/@types/lodash/common/function.d.ts",
2151
- "../../../node_modules/@types/lodash/common/lang.d.ts",
2152
- "../../../node_modules/@types/lodash/common/math.d.ts",
2153
- "../../../node_modules/@types/lodash/common/object.d.ts",
2154
- "../../../node_modules/@types/lodash/common/seq.d.ts",
2155
- "../../../node_modules/@types/lodash/common/string.d.ts",
2156
- "../../../node_modules/@types/lodash/common/util.d.ts",
2157
- "../../../node_modules/date-fns/typings.d.ts",
2158
- "../node_modules/@types/node/fs.d.ts",
2159
- "../node_modules/@types/node/ts3.2/fs.d.ts",
2160
- "../node_modules/@types/node/util.d.ts",
2161
- "../node_modules/@types/node/ts3.2/util.d.ts"
2162
- ],
2163
- "../../../node_modules/@types/lodash/common/object.d.ts": [
2164
- "../../../node_modules/@types/lodash/index.d.ts",
2165
- "../../../node_modules/@types/lodash/common/common.d.ts",
2166
- "../../../node_modules/@types/lodash/common/array.d.ts",
2167
- "../../../node_modules/@types/lodash/common/collection.d.ts",
2168
- "../../../node_modules/@types/lodash/common/date.d.ts",
2169
- "../../../node_modules/@types/lodash/common/function.d.ts",
2170
- "../../../node_modules/@types/lodash/common/lang.d.ts",
2171
- "../../../node_modules/@types/lodash/common/math.d.ts",
2172
- "../../../node_modules/@types/lodash/common/number.d.ts",
2173
- "../../../node_modules/@types/lodash/common/seq.d.ts",
2174
- "../../../node_modules/@types/lodash/common/string.d.ts",
2175
- "../../../node_modules/@types/lodash/common/util.d.ts",
2176
- "../../../node_modules/date-fns/typings.d.ts",
2177
- "../node_modules/@types/node/fs.d.ts",
2178
- "../node_modules/@types/node/ts3.2/fs.d.ts",
2179
- "../node_modules/@types/node/util.d.ts",
2180
- "../node_modules/@types/node/ts3.2/util.d.ts"
2181
- ],
2182
- "../../../node_modules/@types/lodash/common/seq.d.ts": [
2183
- "../../../node_modules/@types/lodash/index.d.ts",
2184
- "../../../node_modules/@types/lodash/common/common.d.ts",
2185
- "../../../node_modules/@types/lodash/common/array.d.ts",
2186
- "../../../node_modules/@types/lodash/common/collection.d.ts",
2187
- "../../../node_modules/@types/lodash/common/date.d.ts",
2188
- "../../../node_modules/@types/lodash/common/function.d.ts",
2189
- "../../../node_modules/@types/lodash/common/lang.d.ts",
2190
- "../../../node_modules/@types/lodash/common/math.d.ts",
2191
- "../../../node_modules/@types/lodash/common/number.d.ts",
2192
- "../../../node_modules/@types/lodash/common/object.d.ts",
2193
- "../../../node_modules/@types/lodash/common/string.d.ts",
2194
- "../../../node_modules/@types/lodash/common/util.d.ts",
2195
- "../../../node_modules/date-fns/typings.d.ts",
2196
- "../node_modules/@types/node/fs.d.ts",
2197
- "../node_modules/@types/node/ts3.2/fs.d.ts",
2198
- "../node_modules/@types/node/util.d.ts",
2199
- "../node_modules/@types/node/ts3.2/util.d.ts"
2200
- ],
2201
- "../../../node_modules/@types/lodash/common/string.d.ts": [
2202
- "../../../node_modules/@types/lodash/index.d.ts",
2203
- "../../../node_modules/@types/lodash/common/common.d.ts",
2204
- "../../../node_modules/@types/lodash/common/array.d.ts",
2205
- "../../../node_modules/@types/lodash/common/collection.d.ts",
2206
- "../../../node_modules/@types/lodash/common/date.d.ts",
2207
- "../../../node_modules/@types/lodash/common/function.d.ts",
2208
- "../../../node_modules/@types/lodash/common/lang.d.ts",
2209
- "../../../node_modules/@types/lodash/common/math.d.ts",
2210
- "../../../node_modules/@types/lodash/common/number.d.ts",
2211
- "../../../node_modules/@types/lodash/common/object.d.ts",
2212
- "../../../node_modules/@types/lodash/common/seq.d.ts",
2213
- "../../../node_modules/@types/lodash/common/util.d.ts",
2214
- "../../../node_modules/date-fns/typings.d.ts",
2215
- "../node_modules/@types/node/fs.d.ts",
2216
- "../node_modules/@types/node/ts3.2/fs.d.ts",
2217
- "../node_modules/@types/node/util.d.ts",
2218
- "../node_modules/@types/node/ts3.2/util.d.ts"
2219
- ],
2220
- "../../../node_modules/@types/lodash/common/util.d.ts": [
2221
- "../../../node_modules/@types/lodash/index.d.ts",
2222
- "../../../node_modules/@types/lodash/common/common.d.ts",
2223
- "../../../node_modules/@types/lodash/common/array.d.ts",
2224
- "../../../node_modules/@types/lodash/common/collection.d.ts",
2225
- "../../../node_modules/@types/lodash/common/date.d.ts",
2226
- "../../../node_modules/@types/lodash/common/function.d.ts",
2227
- "../../../node_modules/@types/lodash/common/lang.d.ts",
2228
- "../../../node_modules/@types/lodash/common/math.d.ts",
2229
- "../../../node_modules/@types/lodash/common/number.d.ts",
2230
- "../../../node_modules/@types/lodash/common/object.d.ts",
2231
- "../../../node_modules/@types/lodash/common/seq.d.ts",
2232
- "../../../node_modules/@types/lodash/common/string.d.ts",
2233
- "../../../node_modules/date-fns/typings.d.ts",
2234
- "../node_modules/@types/node/fs.d.ts",
2235
- "../node_modules/@types/node/ts3.2/fs.d.ts",
2236
- "../node_modules/@types/node/util.d.ts",
2237
- "../node_modules/@types/node/ts3.2/util.d.ts"
2238
- ],
2239
- "../../../node_modules/@types/lodash/index.d.ts": [
2240
- "../../../node_modules/@types/lodash/common/common.d.ts",
2241
- "../../../node_modules/@types/lodash/common/array.d.ts",
2242
- "../../../node_modules/@types/lodash/common/collection.d.ts",
2243
- "../../../node_modules/@types/lodash/common/date.d.ts",
2244
- "../../../node_modules/@types/lodash/common/function.d.ts",
2245
- "../../../node_modules/@types/lodash/common/lang.d.ts",
2246
- "../../../node_modules/@types/lodash/common/math.d.ts",
2247
- "../../../node_modules/@types/lodash/common/number.d.ts",
2248
- "../../../node_modules/@types/lodash/common/object.d.ts",
2249
- "../../../node_modules/@types/lodash/common/seq.d.ts",
2250
- "../../../node_modules/@types/lodash/common/string.d.ts",
2251
- "../../../node_modules/@types/lodash/common/util.d.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
- "../../../node_modules/@types/lodash/isEmpty.d.ts": [
2259
- "../../../node_modules/@types/lodash/index.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
1983
  "../src/components/axes/zoom-bar.ts": [
2267
1984
  "../src/components/component.ts",
2268
1985
  "../src/model-cartesian-charts.ts",
@@ -2270,7 +1987,6 @@
2270
1987
  "../src/interfaces/index.ts",
2271
1988
  "../src/services/index.ts",
2272
1989
  "../src/configuration.ts",
2273
- "../../../node_modules/@types/lodash/isEmpty.d.ts",
2274
1990
  "../../../node_modules/@types/d3-array/index.d.ts",
2275
1991
  "../../../node_modules/@types/d3-brush/index.d.ts",
2276
1992
  "../../../node_modules/@types/d3-shape/index.d.ts",
@@ -2303,6 +2019,7 @@
2303
2019
  "../src/components/graphs/donut.ts",
2304
2020
  "../src/components/graphs/skeleton.ts",
2305
2021
  "../src/components/graphs/skeleton-lines.ts",
2022
+ "../src/components/graphs/treemap.ts",
2306
2023
  "../src/components/layout/spacer.ts",
2307
2024
  "../src/components/layout/layout.ts",
2308
2025
  "../src/components/axes/two-dimensional-axes.ts",
@@ -2557,11 +2274,32 @@
2557
2274
  "../node_modules/@types/node/util.d.ts",
2558
2275
  "../node_modules/@types/node/ts3.2/util.d.ts"
2559
2276
  ],
2277
+ "../src/model-gauge.ts": [
2278
+ "../src/model.ts",
2279
+ "../../../node_modules/date-fns/typings.d.ts",
2280
+ "../node_modules/@types/node/fs.d.ts",
2281
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2282
+ "../node_modules/@types/node/util.d.ts",
2283
+ "../node_modules/@types/node/ts3.2/util.d.ts"
2284
+ ],
2560
2285
  "../src/charts/gauge.ts": [
2561
2286
  "../src/chart.ts",
2562
2287
  "../src/configuration.ts",
2563
2288
  "../src/interfaces/index.ts",
2564
2289
  "../src/tools.ts",
2290
+ "../src/model-gauge.ts",
2291
+ "../src/components/index.ts",
2292
+ "../../../node_modules/date-fns/typings.d.ts",
2293
+ "../node_modules/@types/node/fs.d.ts",
2294
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2295
+ "../node_modules/@types/node/util.d.ts",
2296
+ "../node_modules/@types/node/ts3.2/util.d.ts"
2297
+ ],
2298
+ "../src/charts/treemap.ts": [
2299
+ "../src/chart.ts",
2300
+ "../src/interfaces/index.ts",
2301
+ "../src/configuration.ts",
2302
+ "../src/tools.ts",
2565
2303
  "../src/components/index.ts",
2566
2304
  "../../../node_modules/date-fns/typings.d.ts",
2567
2305
  "../node_modules/@types/node/fs.d.ts",
@@ -2583,6 +2321,7 @@
2583
2321
  "../src/charts/meter.ts",
2584
2322
  "../src/charts/radar.ts",
2585
2323
  "../src/charts/gauge.ts",
2324
+ "../src/charts/treemap.ts",
2586
2325
  "../../../node_modules/date-fns/typings.d.ts",
2587
2326
  "../node_modules/@types/node/fs.d.ts",
2588
2327
  "../node_modules/@types/node/ts3.2/fs.d.ts",
@@ -3234,7 +2973,7 @@
3234
2973
  "../src/configuration.ts",
3235
2974
  "../src/interfaces/index.ts"
3236
2975
  ],
3237
- "../src/charts/gauge.ts": [
2976
+ "../src/charts/treemap.ts": [
3238
2977
  "../src/interfaces/index.ts",
3239
2978
  "../src/chart.ts"
3240
2979
  ],
@@ -3251,7 +2990,13 @@
3251
2990
  "../src/charts/donut.ts",
3252
2991
  "../src/charts/meter.ts",
3253
2992
  "../src/charts/radar.ts",
3254
- "../src/charts/gauge.ts"
2993
+ "../src/charts/gauge.ts",
2994
+ "../src/charts/treemap.ts"
2995
+ ],
2996
+ "../src/charts/gauge.ts": [
2997
+ "../src/model-gauge.ts",
2998
+ "../src/interfaces/index.ts",
2999
+ "../src/chart.ts"
3255
3000
  ],
3256
3001
  "../src/charts/radar.ts": [
3257
3002
  "../src/interfaces/index.ts",
@@ -3347,6 +3092,7 @@
3347
3092
  "../src/components/graphs/donut.ts",
3348
3093
  "../src/components/graphs/skeleton.ts",
3349
3094
  "../src/components/graphs/skeleton-lines.ts",
3095
+ "../src/components/graphs/treemap.ts",
3350
3096
  "../src/components/layout/spacer.ts",
3351
3097
  "../src/components/layout/layout.ts",
3352
3098
  "../src/components/axes/two-dimensional-axes.ts",
@@ -3388,6 +3134,9 @@
3388
3134
  "../src/model.ts",
3389
3135
  "../src/components/component.ts"
3390
3136
  ],
3137
+ "../src/components/graphs/treemap.ts": [
3138
+ "../src/components/component.ts"
3139
+ ],
3391
3140
  "../src/components/graphs/gauge.ts": [
3392
3141
  "../src/components/component.ts"
3393
3142
  ],
@@ -3515,6 +3264,9 @@
3515
3264
  "../src/services/essentials/gradient-utils.ts": [
3516
3265
  "../src/services/service.ts"
3517
3266
  ],
3267
+ "../src/model-cartesian-charts.ts": [
3268
+ "../src/model.ts"
3269
+ ],
3518
3270
  "../src/services/scales-cartesian.ts": [
3519
3271
  "../src/interfaces/index.ts",
3520
3272
  "../src/services/service.ts"
@@ -3530,13 +3282,13 @@
3530
3282
  "../src/model.ts": [
3531
3283
  "../src/interfaces/index.ts"
3532
3284
  ],
3533
- "../src/model-meter.ts": [
3285
+ "../src/model-gauge.ts": [
3534
3286
  "../src/model.ts"
3535
3287
  ],
3536
- "../src/model-pie.ts": [
3288
+ "../src/model-meter.ts": [
3537
3289
  "../src/model.ts"
3538
3290
  ],
3539
- "../src/model-cartesian-charts.ts": [
3291
+ "../src/model-pie.ts": [
3540
3292
  "../src/model.ts"
3541
3293
  ],
3542
3294
  "../src/services/service.ts": [
@@ -3862,261 +3614,6 @@
3862
3614
  "../node_modules/@types/node/util.d.ts",
3863
3615
  "../node_modules/@types/node/ts3.2/util.d.ts"
3864
3616
  ],
3865
- "../../../node_modules/@types/lodash/common/common.d.ts": [
3866
- "../../../node_modules/@types/lodash/index.d.ts",
3867
- "../../../node_modules/@types/lodash/common/array.d.ts",
3868
- "../../../node_modules/@types/lodash/common/collection.d.ts",
3869
- "../../../node_modules/@types/lodash/common/date.d.ts",
3870
- "../../../node_modules/@types/lodash/common/function.d.ts",
3871
- "../../../node_modules/@types/lodash/common/lang.d.ts",
3872
- "../../../node_modules/@types/lodash/common/math.d.ts",
3873
- "../../../node_modules/@types/lodash/common/number.d.ts",
3874
- "../../../node_modules/@types/lodash/common/object.d.ts",
3875
- "../../../node_modules/@types/lodash/common/seq.d.ts",
3876
- "../../../node_modules/@types/lodash/common/string.d.ts",
3877
- "../../../node_modules/@types/lodash/common/util.d.ts",
3878
- "../../../node_modules/date-fns/typings.d.ts",
3879
- "../node_modules/@types/node/fs.d.ts",
3880
- "../node_modules/@types/node/ts3.2/fs.d.ts",
3881
- "../node_modules/@types/node/util.d.ts",
3882
- "../node_modules/@types/node/ts3.2/util.d.ts"
3883
- ],
3884
- "../../../node_modules/@types/lodash/index.d.ts": [
3885
- "../../../node_modules/@types/lodash/common/common.d.ts",
3886
- "../../../node_modules/@types/lodash/common/array.d.ts",
3887
- "../../../node_modules/@types/lodash/common/collection.d.ts",
3888
- "../../../node_modules/@types/lodash/common/date.d.ts",
3889
- "../../../node_modules/@types/lodash/common/function.d.ts",
3890
- "../../../node_modules/@types/lodash/common/lang.d.ts",
3891
- "../../../node_modules/@types/lodash/common/math.d.ts",
3892
- "../../../node_modules/@types/lodash/common/number.d.ts",
3893
- "../../../node_modules/@types/lodash/common/object.d.ts",
3894
- "../../../node_modules/@types/lodash/common/seq.d.ts",
3895
- "../../../node_modules/@types/lodash/common/string.d.ts",
3896
- "../../../node_modules/@types/lodash/common/util.d.ts",
3897
- "../../../node_modules/date-fns/typings.d.ts",
3898
- "../node_modules/@types/node/fs.d.ts",
3899
- "../node_modules/@types/node/ts3.2/fs.d.ts",
3900
- "../node_modules/@types/node/util.d.ts",
3901
- "../node_modules/@types/node/ts3.2/util.d.ts"
3902
- ],
3903
- "../../../node_modules/@types/lodash/isEmpty.d.ts": [
3904
- "../../../node_modules/@types/lodash/index.d.ts",
3905
- "../../../node_modules/date-fns/typings.d.ts",
3906
- "../node_modules/@types/node/fs.d.ts",
3907
- "../node_modules/@types/node/ts3.2/fs.d.ts",
3908
- "../node_modules/@types/node/util.d.ts",
3909
- "../node_modules/@types/node/ts3.2/util.d.ts"
3910
- ],
3911
- "../../../node_modules/@types/lodash/common/util.d.ts": [
3912
- "../../../node_modules/@types/lodash/index.d.ts",
3913
- "../../../node_modules/@types/lodash/common/common.d.ts",
3914
- "../../../node_modules/@types/lodash/common/array.d.ts",
3915
- "../../../node_modules/@types/lodash/common/collection.d.ts",
3916
- "../../../node_modules/@types/lodash/common/date.d.ts",
3917
- "../../../node_modules/@types/lodash/common/function.d.ts",
3918
- "../../../node_modules/@types/lodash/common/lang.d.ts",
3919
- "../../../node_modules/@types/lodash/common/math.d.ts",
3920
- "../../../node_modules/@types/lodash/common/number.d.ts",
3921
- "../../../node_modules/@types/lodash/common/object.d.ts",
3922
- "../../../node_modules/@types/lodash/common/seq.d.ts",
3923
- "../../../node_modules/@types/lodash/common/string.d.ts",
3924
- "../../../node_modules/date-fns/typings.d.ts",
3925
- "../node_modules/@types/node/fs.d.ts",
3926
- "../node_modules/@types/node/ts3.2/fs.d.ts",
3927
- "../node_modules/@types/node/util.d.ts",
3928
- "../node_modules/@types/node/ts3.2/util.d.ts"
3929
- ],
3930
- "../../../node_modules/@types/lodash/common/string.d.ts": [
3931
- "../../../node_modules/@types/lodash/index.d.ts",
3932
- "../../../node_modules/@types/lodash/common/common.d.ts",
3933
- "../../../node_modules/@types/lodash/common/array.d.ts",
3934
- "../../../node_modules/@types/lodash/common/collection.d.ts",
3935
- "../../../node_modules/@types/lodash/common/date.d.ts",
3936
- "../../../node_modules/@types/lodash/common/function.d.ts",
3937
- "../../../node_modules/@types/lodash/common/lang.d.ts",
3938
- "../../../node_modules/@types/lodash/common/math.d.ts",
3939
- "../../../node_modules/@types/lodash/common/number.d.ts",
3940
- "../../../node_modules/@types/lodash/common/object.d.ts",
3941
- "../../../node_modules/@types/lodash/common/seq.d.ts",
3942
- "../../../node_modules/@types/lodash/common/util.d.ts",
3943
- "../../../node_modules/date-fns/typings.d.ts",
3944
- "../node_modules/@types/node/fs.d.ts",
3945
- "../node_modules/@types/node/ts3.2/fs.d.ts",
3946
- "../node_modules/@types/node/util.d.ts",
3947
- "../node_modules/@types/node/ts3.2/util.d.ts"
3948
- ],
3949
- "../../../node_modules/@types/lodash/common/seq.d.ts": [
3950
- "../../../node_modules/@types/lodash/index.d.ts",
3951
- "../../../node_modules/@types/lodash/common/common.d.ts",
3952
- "../../../node_modules/@types/lodash/common/array.d.ts",
3953
- "../../../node_modules/@types/lodash/common/collection.d.ts",
3954
- "../../../node_modules/@types/lodash/common/date.d.ts",
3955
- "../../../node_modules/@types/lodash/common/function.d.ts",
3956
- "../../../node_modules/@types/lodash/common/lang.d.ts",
3957
- "../../../node_modules/@types/lodash/common/math.d.ts",
3958
- "../../../node_modules/@types/lodash/common/number.d.ts",
3959
- "../../../node_modules/@types/lodash/common/object.d.ts",
3960
- "../../../node_modules/@types/lodash/common/string.d.ts",
3961
- "../../../node_modules/@types/lodash/common/util.d.ts",
3962
- "../../../node_modules/date-fns/typings.d.ts",
3963
- "../node_modules/@types/node/fs.d.ts",
3964
- "../node_modules/@types/node/ts3.2/fs.d.ts",
3965
- "../node_modules/@types/node/util.d.ts",
3966
- "../node_modules/@types/node/ts3.2/util.d.ts"
3967
- ],
3968
- "../../../node_modules/@types/lodash/common/object.d.ts": [
3969
- "../../../node_modules/@types/lodash/index.d.ts",
3970
- "../../../node_modules/@types/lodash/common/common.d.ts",
3971
- "../../../node_modules/@types/lodash/common/array.d.ts",
3972
- "../../../node_modules/@types/lodash/common/collection.d.ts",
3973
- "../../../node_modules/@types/lodash/common/date.d.ts",
3974
- "../../../node_modules/@types/lodash/common/function.d.ts",
3975
- "../../../node_modules/@types/lodash/common/lang.d.ts",
3976
- "../../../node_modules/@types/lodash/common/math.d.ts",
3977
- "../../../node_modules/@types/lodash/common/number.d.ts",
3978
- "../../../node_modules/@types/lodash/common/seq.d.ts",
3979
- "../../../node_modules/@types/lodash/common/string.d.ts",
3980
- "../../../node_modules/@types/lodash/common/util.d.ts",
3981
- "../../../node_modules/date-fns/typings.d.ts",
3982
- "../node_modules/@types/node/fs.d.ts",
3983
- "../node_modules/@types/node/ts3.2/fs.d.ts",
3984
- "../node_modules/@types/node/util.d.ts",
3985
- "../node_modules/@types/node/ts3.2/util.d.ts"
3986
- ],
3987
- "../../../node_modules/@types/lodash/common/number.d.ts": [
3988
- "../../../node_modules/@types/lodash/index.d.ts",
3989
- "../../../node_modules/@types/lodash/common/common.d.ts",
3990
- "../../../node_modules/@types/lodash/common/array.d.ts",
3991
- "../../../node_modules/@types/lodash/common/collection.d.ts",
3992
- "../../../node_modules/@types/lodash/common/date.d.ts",
3993
- "../../../node_modules/@types/lodash/common/function.d.ts",
3994
- "../../../node_modules/@types/lodash/common/lang.d.ts",
3995
- "../../../node_modules/@types/lodash/common/math.d.ts",
3996
- "../../../node_modules/@types/lodash/common/object.d.ts",
3997
- "../../../node_modules/@types/lodash/common/seq.d.ts",
3998
- "../../../node_modules/@types/lodash/common/string.d.ts",
3999
- "../../../node_modules/@types/lodash/common/util.d.ts",
4000
- "../../../node_modules/date-fns/typings.d.ts",
4001
- "../node_modules/@types/node/fs.d.ts",
4002
- "../node_modules/@types/node/ts3.2/fs.d.ts",
4003
- "../node_modules/@types/node/util.d.ts",
4004
- "../node_modules/@types/node/ts3.2/util.d.ts"
4005
- ],
4006
- "../../../node_modules/@types/lodash/common/math.d.ts": [
4007
- "../../../node_modules/@types/lodash/index.d.ts",
4008
- "../../../node_modules/@types/lodash/common/common.d.ts",
4009
- "../../../node_modules/@types/lodash/common/array.d.ts",
4010
- "../../../node_modules/@types/lodash/common/collection.d.ts",
4011
- "../../../node_modules/@types/lodash/common/date.d.ts",
4012
- "../../../node_modules/@types/lodash/common/function.d.ts",
4013
- "../../../node_modules/@types/lodash/common/lang.d.ts",
4014
- "../../../node_modules/@types/lodash/common/number.d.ts",
4015
- "../../../node_modules/@types/lodash/common/object.d.ts",
4016
- "../../../node_modules/@types/lodash/common/seq.d.ts",
4017
- "../../../node_modules/@types/lodash/common/string.d.ts",
4018
- "../../../node_modules/@types/lodash/common/util.d.ts",
4019
- "../../../node_modules/date-fns/typings.d.ts",
4020
- "../node_modules/@types/node/fs.d.ts",
4021
- "../node_modules/@types/node/ts3.2/fs.d.ts",
4022
- "../node_modules/@types/node/util.d.ts",
4023
- "../node_modules/@types/node/ts3.2/util.d.ts"
4024
- ],
4025
- "../../../node_modules/@types/lodash/common/lang.d.ts": [
4026
- "../../../node_modules/@types/lodash/index.d.ts",
4027
- "../../../node_modules/@types/lodash/common/common.d.ts",
4028
- "../../../node_modules/@types/lodash/common/array.d.ts",
4029
- "../../../node_modules/@types/lodash/common/collection.d.ts",
4030
- "../../../node_modules/@types/lodash/common/date.d.ts",
4031
- "../../../node_modules/@types/lodash/common/function.d.ts",
4032
- "../../../node_modules/@types/lodash/common/math.d.ts",
4033
- "../../../node_modules/@types/lodash/common/number.d.ts",
4034
- "../../../node_modules/@types/lodash/common/object.d.ts",
4035
- "../../../node_modules/@types/lodash/common/seq.d.ts",
4036
- "../../../node_modules/@types/lodash/common/string.d.ts",
4037
- "../../../node_modules/@types/lodash/common/util.d.ts",
4038
- "../../../node_modules/date-fns/typings.d.ts",
4039
- "../node_modules/@types/node/fs.d.ts",
4040
- "../node_modules/@types/node/ts3.2/fs.d.ts",
4041
- "../node_modules/@types/node/util.d.ts",
4042
- "../node_modules/@types/node/ts3.2/util.d.ts"
4043
- ],
4044
- "../../../node_modules/@types/lodash/common/function.d.ts": [
4045
- "../../../node_modules/@types/lodash/index.d.ts",
4046
- "../../../node_modules/@types/lodash/common/common.d.ts",
4047
- "../../../node_modules/@types/lodash/common/array.d.ts",
4048
- "../../../node_modules/@types/lodash/common/collection.d.ts",
4049
- "../../../node_modules/@types/lodash/common/date.d.ts",
4050
- "../../../node_modules/@types/lodash/common/lang.d.ts",
4051
- "../../../node_modules/@types/lodash/common/math.d.ts",
4052
- "../../../node_modules/@types/lodash/common/number.d.ts",
4053
- "../../../node_modules/@types/lodash/common/object.d.ts",
4054
- "../../../node_modules/@types/lodash/common/seq.d.ts",
4055
- "../../../node_modules/@types/lodash/common/string.d.ts",
4056
- "../../../node_modules/@types/lodash/common/util.d.ts",
4057
- "../../../node_modules/date-fns/typings.d.ts",
4058
- "../node_modules/@types/node/fs.d.ts",
4059
- "../node_modules/@types/node/ts3.2/fs.d.ts",
4060
- "../node_modules/@types/node/util.d.ts",
4061
- "../node_modules/@types/node/ts3.2/util.d.ts"
4062
- ],
4063
- "../../../node_modules/@types/lodash/common/date.d.ts": [
4064
- "../../../node_modules/@types/lodash/index.d.ts",
4065
- "../../../node_modules/@types/lodash/common/common.d.ts",
4066
- "../../../node_modules/@types/lodash/common/array.d.ts",
4067
- "../../../node_modules/@types/lodash/common/collection.d.ts",
4068
- "../../../node_modules/@types/lodash/common/function.d.ts",
4069
- "../../../node_modules/@types/lodash/common/lang.d.ts",
4070
- "../../../node_modules/@types/lodash/common/math.d.ts",
4071
- "../../../node_modules/@types/lodash/common/number.d.ts",
4072
- "../../../node_modules/@types/lodash/common/object.d.ts",
4073
- "../../../node_modules/@types/lodash/common/seq.d.ts",
4074
- "../../../node_modules/@types/lodash/common/string.d.ts",
4075
- "../../../node_modules/@types/lodash/common/util.d.ts",
4076
- "../../../node_modules/date-fns/typings.d.ts",
4077
- "../node_modules/@types/node/fs.d.ts",
4078
- "../node_modules/@types/node/ts3.2/fs.d.ts",
4079
- "../node_modules/@types/node/util.d.ts",
4080
- "../node_modules/@types/node/ts3.2/util.d.ts"
4081
- ],
4082
- "../../../node_modules/@types/lodash/common/collection.d.ts": [
4083
- "../../../node_modules/@types/lodash/index.d.ts",
4084
- "../../../node_modules/@types/lodash/common/common.d.ts",
4085
- "../../../node_modules/@types/lodash/common/array.d.ts",
4086
- "../../../node_modules/@types/lodash/common/date.d.ts",
4087
- "../../../node_modules/@types/lodash/common/function.d.ts",
4088
- "../../../node_modules/@types/lodash/common/lang.d.ts",
4089
- "../../../node_modules/@types/lodash/common/math.d.ts",
4090
- "../../../node_modules/@types/lodash/common/number.d.ts",
4091
- "../../../node_modules/@types/lodash/common/object.d.ts",
4092
- "../../../node_modules/@types/lodash/common/seq.d.ts",
4093
- "../../../node_modules/@types/lodash/common/string.d.ts",
4094
- "../../../node_modules/@types/lodash/common/util.d.ts",
4095
- "../../../node_modules/date-fns/typings.d.ts",
4096
- "../node_modules/@types/node/fs.d.ts",
4097
- "../node_modules/@types/node/ts3.2/fs.d.ts",
4098
- "../node_modules/@types/node/util.d.ts",
4099
- "../node_modules/@types/node/ts3.2/util.d.ts"
4100
- ],
4101
- "../../../node_modules/@types/lodash/common/array.d.ts": [
4102
- "../../../node_modules/@types/lodash/index.d.ts",
4103
- "../../../node_modules/@types/lodash/common/common.d.ts",
4104
- "../../../node_modules/@types/lodash/common/collection.d.ts",
4105
- "../../../node_modules/@types/lodash/common/date.d.ts",
4106
- "../../../node_modules/@types/lodash/common/function.d.ts",
4107
- "../../../node_modules/@types/lodash/common/lang.d.ts",
4108
- "../../../node_modules/@types/lodash/common/math.d.ts",
4109
- "../../../node_modules/@types/lodash/common/number.d.ts",
4110
- "../../../node_modules/@types/lodash/common/object.d.ts",
4111
- "../../../node_modules/@types/lodash/common/seq.d.ts",
4112
- "../../../node_modules/@types/lodash/common/string.d.ts",
4113
- "../../../node_modules/@types/lodash/common/util.d.ts",
4114
- "../../../node_modules/date-fns/typings.d.ts",
4115
- "../node_modules/@types/node/fs.d.ts",
4116
- "../node_modules/@types/node/ts3.2/fs.d.ts",
4117
- "../node_modules/@types/node/util.d.ts",
4118
- "../node_modules/@types/node/ts3.2/util.d.ts"
4119
- ],
4120
3617
  "../node_modules/@types/node/globals.d.ts": [
4121
3618
  "../../../node_modules/date-fns/typings.d.ts",
4122
3619
  "../node_modules/@types/node/fs.d.ts",
@@ -4618,6 +4115,7 @@
4618
4115
  "../src/components/graphs/donut.ts",
4619
4116
  "../src/components/graphs/skeleton.ts",
4620
4117
  "../src/components/graphs/skeleton-lines.ts",
4118
+ "../src/components/graphs/treemap.ts",
4621
4119
  "../src/components/layout/spacer.ts",
4622
4120
  "../src/components/layout/layout.ts",
4623
4121
  "../src/components/axes/axis.ts",
@@ -4629,20 +4127,6 @@
4629
4127
  "../src/components/axes/ruler-stacked-bar.ts",
4630
4128
  "../src/components/axes/toolbar.ts",
4631
4129
  "../src/components/axes/zero-line.ts",
4632
- "../../../node_modules/@types/lodash/common/common.d.ts",
4633
- "../../../node_modules/@types/lodash/common/array.d.ts",
4634
- "../../../node_modules/@types/lodash/common/collection.d.ts",
4635
- "../../../node_modules/@types/lodash/common/date.d.ts",
4636
- "../../../node_modules/@types/lodash/common/function.d.ts",
4637
- "../../../node_modules/@types/lodash/common/lang.d.ts",
4638
- "../../../node_modules/@types/lodash/common/math.d.ts",
4639
- "../../../node_modules/@types/lodash/common/number.d.ts",
4640
- "../../../node_modules/@types/lodash/common/object.d.ts",
4641
- "../../../node_modules/@types/lodash/common/seq.d.ts",
4642
- "../../../node_modules/@types/lodash/common/string.d.ts",
4643
- "../../../node_modules/@types/lodash/common/util.d.ts",
4644
- "../../../node_modules/@types/lodash/index.d.ts",
4645
- "../../../node_modules/@types/lodash/isEmpty.d.ts",
4646
4130
  "../src/components/axes/zoom-bar.ts",
4647
4131
  "../src/components/index.ts",
4648
4132
  "../src/chart.ts",
@@ -4664,7 +4148,9 @@
4664
4148
  "../src/services/angle-utils.ts",
4665
4149
  "../src/components/graphs/radar.ts",
4666
4150
  "../src/charts/radar.ts",
4151
+ "../src/model-gauge.ts",
4667
4152
  "../src/charts/gauge.ts",
4153
+ "../src/charts/treemap.ts",
4668
4154
  "../src/charts/index.ts",
4669
4155
  "../src/index.ts",
4670
4156
  "../src/polyfills.ts",