@alisaitteke/seatmap-canvas 2.5.18 → 2.6.0

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 (208) hide show
  1. package/README.md +358 -95
  2. package/dist/CLAUDE.md +11 -0
  3. package/dist/cjs/CLAUDE.md +11 -0
  4. package/dist/cjs/seatmap.canvas.css +4 -0
  5. package/dist/cjs/seatmap.canvas.js +2 -16
  6. package/dist/cjs/seatmap.canvas.js.map +1 -1
  7. package/dist/cjs/types/canvas.index.d.ts +5 -0
  8. package/dist/cjs/types/converters/parser.base.d.ts +7 -0
  9. package/dist/cjs/types/converters/pretix/pretix.model.d.ts +75 -0
  10. package/dist/cjs/types/converters/pretix/pretix.parser.d.ts +7 -0
  11. package/dist/cjs/types/enums/parser.enum.d.ts +4 -0
  12. package/dist/cjs/types/examples/react/src/App.d.ts +3 -0
  13. package/dist/cjs/types/examples/react/src/main.d.ts +1 -0
  14. package/dist/cjs/types/examples/react/vite.config.d.ts +2 -0
  15. package/dist/cjs/types/examples/vue/main.d.ts +1 -0
  16. package/dist/cjs/types/examples/vue/vite.config.d.ts +2 -0
  17. package/dist/cjs/types/models/block.model.d.ts +1 -0
  18. package/dist/cjs/types/models/data.model.d.ts +3 -2
  19. package/dist/cjs/types/models/defaults.model.d.ts +2 -0
  20. package/dist/cjs/types/models/styles/seat.style.d.ts +6 -0
  21. package/dist/cjs/types/models/styles/tooltip.style.d.ts +8 -0
  22. package/dist/cjs/types/src/lib/canvas.index.browser.d.ts +2 -0
  23. package/dist/cjs/types/src/lib/canvas.index.d.ts +28 -0
  24. package/dist/cjs/types/src/lib/config.d.ts +3 -0
  25. package/dist/cjs/types/src/lib/converters/parser.base.d.ts +7 -0
  26. package/dist/cjs/types/src/lib/converters/pretix/pretix.model.d.ts +75 -0
  27. package/dist/cjs/types/src/lib/converters/pretix/pretix.parser.d.ts +7 -0
  28. package/dist/cjs/types/src/lib/decorators/dom.d.ts +8 -0
  29. package/dist/cjs/types/src/lib/decorators/index.d.ts +1 -0
  30. package/dist/cjs/types/src/lib/dev.tools.d.ts +6 -0
  31. package/dist/cjs/types/src/lib/enums/global.d.ts +46 -0
  32. package/dist/cjs/types/src/lib/enums/parser.enum.d.ts +4 -0
  33. package/dist/cjs/types/src/lib/models/block.model.d.ts +30 -0
  34. package/dist/cjs/types/src/lib/models/coordinate.model.d.ts +7 -0
  35. package/dist/cjs/types/src/lib/models/data.model.d.ts +27 -0
  36. package/dist/cjs/types/src/lib/models/defaults.model.d.ts +34 -0
  37. package/dist/cjs/types/src/lib/models/global.model.d.ts +18 -0
  38. package/dist/cjs/types/src/lib/models/label.model.d.ts +9 -0
  39. package/dist/cjs/types/src/lib/models/legend.model.d.ts +8 -0
  40. package/dist/cjs/types/src/lib/models/model.base.d.ts +5 -0
  41. package/dist/cjs/types/src/lib/models/seat.model.d.ts +40 -0
  42. package/dist/cjs/types/src/lib/models/styles/block.style.d.ts +7 -0
  43. package/dist/cjs/types/src/lib/models/styles/label.style.d.ts +6 -0
  44. package/dist/cjs/types/src/lib/models/styles/legend.style.d.ts +6 -0
  45. package/dist/cjs/types/src/lib/models/styles/seat.style.d.ts +13 -0
  46. package/dist/cjs/types/src/lib/models/styles/tooltip.style.d.ts +7 -0
  47. package/dist/cjs/types/src/lib/svg/event.manager.d.ts +12 -0
  48. package/dist/cjs/types/src/lib/svg/legend/legend.circle.d.ts +7 -0
  49. package/dist/cjs/types/src/lib/svg/legend/legend.item.d.ts +13 -0
  50. package/dist/cjs/types/src/lib/svg/legend/legend.title.d.ts +7 -0
  51. package/dist/cjs/types/src/lib/svg/legend.d.ts +8 -0
  52. package/dist/cjs/types/src/lib/svg/stage/blocks/block-item/block-item.bounds.d.ts +12 -0
  53. package/dist/cjs/types/src/lib/svg/stage/blocks/block-item/block-item.index.d.ts +23 -0
  54. package/dist/cjs/types/src/lib/svg/stage/blocks/block-item/block-item.info.index.d.ts +11 -0
  55. package/dist/cjs/types/src/lib/svg/stage/blocks/block-item/block-item.labels.index.d.ts +11 -0
  56. package/dist/cjs/types/src/lib/svg/stage/blocks/block-item/block-item.mask.d.ts +12 -0
  57. package/dist/cjs/types/src/lib/svg/stage/blocks/block-item/block-item.seats.index.d.ts +15 -0
  58. package/dist/cjs/types/src/lib/svg/stage/blocks/block-item/bound/bound-item.index.d.ts +12 -0
  59. package/dist/cjs/types/src/lib/svg/stage/blocks/block-item/info/title.d.ts +7 -0
  60. package/dist/cjs/types/src/lib/svg/stage/blocks/block-item/label/label-item.circle.d.ts +7 -0
  61. package/dist/cjs/types/src/lib/svg/stage/blocks/block-item/label/label-item.index.d.ts +13 -0
  62. package/dist/cjs/types/src/lib/svg/stage/blocks/block-item/label/label-item.title.d.ts +7 -0
  63. package/dist/cjs/types/src/lib/svg/stage/blocks/block-item/seat/seat-item.check.d.ts +10 -0
  64. package/dist/cjs/types/src/lib/svg/stage/blocks/block-item/seat/seat-item.circle.d.ts +7 -0
  65. package/dist/cjs/types/src/lib/svg/stage/blocks/block-item/seat/seat-item.custom-area.d.ts +7 -0
  66. package/dist/cjs/types/src/lib/svg/stage/blocks/block-item/seat/seat-item.custom-check.d.ts +10 -0
  67. package/dist/cjs/types/src/lib/svg/stage/blocks/block-item/seat/seat-item.custom.d.ts +9 -0
  68. package/dist/cjs/types/src/lib/svg/stage/blocks/block-item/seat/seat-item.index.d.ts +30 -0
  69. package/dist/cjs/types/src/lib/svg/stage/blocks/block-item/seat/seat-item.title.d.ts +7 -0
  70. package/dist/cjs/types/src/lib/svg/stage/blocks/blocks.index.d.ts +15 -0
  71. package/dist/cjs/types/src/lib/svg/stage/blocks.search-circle.d.ts +12 -0
  72. package/dist/cjs/types/src/lib/svg/stage/multi-select/rect.d.ts +7 -0
  73. package/dist/cjs/types/src/lib/svg/stage/multi-select.d.ts +13 -0
  74. package/dist/cjs/types/src/lib/svg/stage/search-circle/circle.d.ts +7 -0
  75. package/dist/cjs/types/src/lib/svg/stage/stage.index.d.ts +11 -0
  76. package/dist/cjs/types/src/lib/svg/svg.base.d.ts +35 -0
  77. package/dist/cjs/types/src/lib/svg/svg.index.d.ts +16 -0
  78. package/dist/cjs/types/src/lib/svg/tooltip/rect.d.ts +8 -0
  79. package/dist/cjs/types/src/lib/svg/tooltip/title.d.ts +10 -0
  80. package/dist/cjs/types/src/lib/svg/tooltip.d.ts +15 -0
  81. package/dist/cjs/types/src/lib/svg/zoom-out.bg.d.ts +7 -0
  82. package/dist/cjs/types/src/lib/svg/zoom.manager.d.ts +41 -0
  83. package/dist/cjs/types/src/lib/window.manager.d.ts +9 -0
  84. package/dist/cjs/types/src/react/SeatmapCanvas.d.ts +7 -0
  85. package/dist/cjs/types/src/react/index.d.ts +4 -0
  86. package/dist/cjs/types/src/react/types.d.ts +65 -0
  87. package/dist/cjs/types/src/react/useSeatmap.d.ts +2 -0
  88. package/dist/cjs/types/src/vue/index.d.ts +12 -0
  89. package/dist/cjs/types/src/vue/types.d.ts +42 -0
  90. package/dist/cjs/types/src/vue/useSeatmap.d.ts +19 -0
  91. package/dist/cjs/types/svg/stage/blocks/block-item/block-item.seats.index.d.ts +1 -1
  92. package/dist/cjs/types/svg/stage/blocks/block-item/seat/seat-item.custom-area.d.ts +7 -0
  93. package/dist/cjs/types/svg/stage/blocks/block-item/seat/seat-item.custom-check.d.ts +10 -0
  94. package/dist/cjs/types/svg/stage/blocks/block-item/seat/seat-item.custom.d.ts +9 -0
  95. package/dist/cjs/types/svg/stage/blocks/block-item/seat/seat-item.index.d.ts +9 -3
  96. package/dist/cjs/types/svg/stage/blocks/block-item/seat/seat-item.path-area.d.ts +7 -0
  97. package/dist/cjs/types/svg/stage/blocks/block-item/seat/seat-item.path.d.ts +13 -0
  98. package/dist/cjs/types/svg/stage/blocks/block-item/seat/seat-item.rect-area.d.ts +7 -0
  99. package/dist/cjs/types/svg/stage/blocks/block-item/seat/seat-item.rect.d.ts +11 -0
  100. package/dist/cjs/types/svg/stage/blocks/blocks.index.d.ts +2 -0
  101. package/dist/cjs/types/svg/svg.base.d.ts +2 -2
  102. package/dist/cjs/types/svg/zoom.manager.d.ts +1 -0
  103. package/dist/cjs/types/utils/svg-parser.d.ts +5 -0
  104. package/dist/dependencies.txt +139 -350
  105. package/dist/esm/CLAUDE.md +11 -0
  106. package/dist/esm/seatmap.canvas.css +4 -0
  107. package/dist/esm/seatmap.canvas.js +2 -16
  108. package/dist/esm/seatmap.canvas.js.map +1 -1
  109. package/dist/esm/types/canvas.index.d.ts +5 -0
  110. package/dist/esm/types/converters/parser.base.d.ts +7 -0
  111. package/dist/esm/types/converters/pretix/pretix.model.d.ts +75 -0
  112. package/dist/esm/types/converters/pretix/pretix.parser.d.ts +7 -0
  113. package/dist/esm/types/enums/parser.enum.d.ts +4 -0
  114. package/dist/esm/types/examples/react/src/App.d.ts +3 -0
  115. package/dist/esm/types/examples/react/src/main.d.ts +1 -0
  116. package/dist/esm/types/examples/react/vite.config.d.ts +2 -0
  117. package/dist/esm/types/examples/vue/main.d.ts +1 -0
  118. package/dist/esm/types/examples/vue/vite.config.d.ts +2 -0
  119. package/dist/esm/types/models/block.model.d.ts +1 -0
  120. package/dist/esm/types/models/data.model.d.ts +3 -2
  121. package/dist/esm/types/models/defaults.model.d.ts +2 -0
  122. package/dist/esm/types/models/styles/seat.style.d.ts +6 -0
  123. package/dist/esm/types/models/styles/tooltip.style.d.ts +8 -0
  124. package/dist/esm/types/src/lib/canvas.index.browser.d.ts +2 -0
  125. package/dist/esm/types/src/lib/canvas.index.d.ts +28 -0
  126. package/dist/esm/types/src/lib/config.d.ts +3 -0
  127. package/dist/esm/types/src/lib/converters/parser.base.d.ts +7 -0
  128. package/dist/esm/types/src/lib/converters/pretix/pretix.model.d.ts +75 -0
  129. package/dist/esm/types/src/lib/converters/pretix/pretix.parser.d.ts +7 -0
  130. package/dist/esm/types/src/lib/decorators/dom.d.ts +8 -0
  131. package/dist/esm/types/src/lib/decorators/index.d.ts +1 -0
  132. package/dist/esm/types/src/lib/dev.tools.d.ts +6 -0
  133. package/dist/esm/types/src/lib/enums/global.d.ts +46 -0
  134. package/dist/esm/types/src/lib/enums/parser.enum.d.ts +4 -0
  135. package/dist/esm/types/src/lib/models/block.model.d.ts +30 -0
  136. package/dist/esm/types/src/lib/models/coordinate.model.d.ts +7 -0
  137. package/dist/esm/types/src/lib/models/data.model.d.ts +27 -0
  138. package/dist/esm/types/src/lib/models/defaults.model.d.ts +34 -0
  139. package/dist/esm/types/src/lib/models/global.model.d.ts +18 -0
  140. package/dist/esm/types/src/lib/models/label.model.d.ts +9 -0
  141. package/dist/esm/types/src/lib/models/legend.model.d.ts +8 -0
  142. package/dist/esm/types/src/lib/models/model.base.d.ts +5 -0
  143. package/dist/esm/types/src/lib/models/seat.model.d.ts +40 -0
  144. package/dist/esm/types/src/lib/models/styles/block.style.d.ts +7 -0
  145. package/dist/esm/types/src/lib/models/styles/label.style.d.ts +6 -0
  146. package/dist/esm/types/src/lib/models/styles/legend.style.d.ts +6 -0
  147. package/dist/esm/types/src/lib/models/styles/seat.style.d.ts +13 -0
  148. package/dist/esm/types/src/lib/models/styles/tooltip.style.d.ts +7 -0
  149. package/dist/esm/types/src/lib/svg/event.manager.d.ts +12 -0
  150. package/dist/esm/types/src/lib/svg/legend/legend.circle.d.ts +7 -0
  151. package/dist/esm/types/src/lib/svg/legend/legend.item.d.ts +13 -0
  152. package/dist/esm/types/src/lib/svg/legend/legend.title.d.ts +7 -0
  153. package/dist/esm/types/src/lib/svg/legend.d.ts +8 -0
  154. package/dist/esm/types/src/lib/svg/stage/blocks/block-item/block-item.bounds.d.ts +12 -0
  155. package/dist/esm/types/src/lib/svg/stage/blocks/block-item/block-item.index.d.ts +23 -0
  156. package/dist/esm/types/src/lib/svg/stage/blocks/block-item/block-item.info.index.d.ts +11 -0
  157. package/dist/esm/types/src/lib/svg/stage/blocks/block-item/block-item.labels.index.d.ts +11 -0
  158. package/dist/esm/types/src/lib/svg/stage/blocks/block-item/block-item.mask.d.ts +12 -0
  159. package/dist/esm/types/src/lib/svg/stage/blocks/block-item/block-item.seats.index.d.ts +15 -0
  160. package/dist/esm/types/src/lib/svg/stage/blocks/block-item/bound/bound-item.index.d.ts +12 -0
  161. package/dist/esm/types/src/lib/svg/stage/blocks/block-item/info/title.d.ts +7 -0
  162. package/dist/esm/types/src/lib/svg/stage/blocks/block-item/label/label-item.circle.d.ts +7 -0
  163. package/dist/esm/types/src/lib/svg/stage/blocks/block-item/label/label-item.index.d.ts +13 -0
  164. package/dist/esm/types/src/lib/svg/stage/blocks/block-item/label/label-item.title.d.ts +7 -0
  165. package/dist/esm/types/src/lib/svg/stage/blocks/block-item/seat/seat-item.check.d.ts +10 -0
  166. package/dist/esm/types/src/lib/svg/stage/blocks/block-item/seat/seat-item.circle.d.ts +7 -0
  167. package/dist/esm/types/src/lib/svg/stage/blocks/block-item/seat/seat-item.custom-area.d.ts +7 -0
  168. package/dist/esm/types/src/lib/svg/stage/blocks/block-item/seat/seat-item.custom-check.d.ts +10 -0
  169. package/dist/esm/types/src/lib/svg/stage/blocks/block-item/seat/seat-item.custom.d.ts +9 -0
  170. package/dist/esm/types/src/lib/svg/stage/blocks/block-item/seat/seat-item.index.d.ts +30 -0
  171. package/dist/esm/types/src/lib/svg/stage/blocks/block-item/seat/seat-item.title.d.ts +7 -0
  172. package/dist/esm/types/src/lib/svg/stage/blocks/blocks.index.d.ts +15 -0
  173. package/dist/esm/types/src/lib/svg/stage/blocks.search-circle.d.ts +12 -0
  174. package/dist/esm/types/src/lib/svg/stage/multi-select/rect.d.ts +7 -0
  175. package/dist/esm/types/src/lib/svg/stage/multi-select.d.ts +13 -0
  176. package/dist/esm/types/src/lib/svg/stage/search-circle/circle.d.ts +7 -0
  177. package/dist/esm/types/src/lib/svg/stage/stage.index.d.ts +11 -0
  178. package/dist/esm/types/src/lib/svg/svg.base.d.ts +35 -0
  179. package/dist/esm/types/src/lib/svg/svg.index.d.ts +16 -0
  180. package/dist/esm/types/src/lib/svg/tooltip/rect.d.ts +8 -0
  181. package/dist/esm/types/src/lib/svg/tooltip/title.d.ts +10 -0
  182. package/dist/esm/types/src/lib/svg/tooltip.d.ts +15 -0
  183. package/dist/esm/types/src/lib/svg/zoom-out.bg.d.ts +7 -0
  184. package/dist/esm/types/src/lib/svg/zoom.manager.d.ts +41 -0
  185. package/dist/esm/types/src/lib/window.manager.d.ts +9 -0
  186. package/dist/esm/types/src/react/SeatmapCanvas.d.ts +7 -0
  187. package/dist/esm/types/src/react/index.d.ts +4 -0
  188. package/dist/esm/types/src/react/types.d.ts +65 -0
  189. package/dist/esm/types/src/react/useSeatmap.d.ts +2 -0
  190. package/dist/esm/types/src/vue/index.d.ts +12 -0
  191. package/dist/esm/types/src/vue/types.d.ts +42 -0
  192. package/dist/esm/types/src/vue/useSeatmap.d.ts +19 -0
  193. package/dist/esm/types/svg/stage/blocks/block-item/block-item.seats.index.d.ts +1 -1
  194. package/dist/esm/types/svg/stage/blocks/block-item/seat/seat-item.custom-area.d.ts +7 -0
  195. package/dist/esm/types/svg/stage/blocks/block-item/seat/seat-item.custom-check.d.ts +10 -0
  196. package/dist/esm/types/svg/stage/blocks/block-item/seat/seat-item.custom.d.ts +9 -0
  197. package/dist/esm/types/svg/stage/blocks/block-item/seat/seat-item.index.d.ts +9 -3
  198. package/dist/esm/types/svg/stage/blocks/block-item/seat/seat-item.path-area.d.ts +7 -0
  199. package/dist/esm/types/svg/stage/blocks/block-item/seat/seat-item.path.d.ts +13 -0
  200. package/dist/esm/types/svg/stage/blocks/block-item/seat/seat-item.rect-area.d.ts +7 -0
  201. package/dist/esm/types/svg/stage/blocks/block-item/seat/seat-item.rect.d.ts +11 -0
  202. package/dist/esm/types/svg/stage/blocks/blocks.index.d.ts +2 -0
  203. package/dist/esm/types/svg/svg.base.d.ts +2 -2
  204. package/dist/esm/types/svg/zoom.manager.d.ts +1 -0
  205. package/dist/esm/types/utils/svg-parser.d.ts +5 -0
  206. package/dist/types.d.ts +5 -0
  207. package/package.json +53 -8
  208. package/CHANGELOG.md +0 -78
@@ -1,6 +1,6 @@
1
1
  Name: d3-selection
2
- Version: 1.4.2
3
- License: BSD-3-Clause
2
+ Version: 3.0.0
3
+ License: ISC
4
4
  Private: false
5
5
  Description: Data-driven DOM manipulation: select elements and join them to data.
6
6
  Repository: https://github.com/d3/d3-selection.git
@@ -9,37 +9,24 @@ Author: Mike Bostock (https://bost.ocks.org/mike)
9
9
  License Copyright:
10
10
  ===
11
11
 
12
- Copyright (c) 2010-2018, Michael Bostock
13
- All rights reserved.
14
-
15
- Redistribution and use in source and binary forms, with or without
16
- modification, are permitted provided that the following conditions are met:
17
-
18
- * Redistributions of source code must retain the above copyright notice, this
19
- list of conditions and the following disclaimer.
20
-
21
- * Redistributions in binary form must reproduce the above copyright notice,
22
- this list of conditions and the following disclaimer in the documentation
23
- and/or other materials provided with the distribution.
12
+ Copyright 2010-2021 Mike Bostock
24
13
 
25
- * The name Michael Bostock may not be used to endorse or promote products
26
- derived from this software without specific prior written permission.
14
+ Permission to use, copy, modify, and/or distribute this software for any purpose
15
+ with or without fee is hereby granted, provided that the above copyright notice
16
+ and this permission notice appear in all copies.
27
17
 
28
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
29
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
31
- DISCLAIMED. IN NO EVENT SHALL MICHAEL BOSTOCK BE LIABLE FOR ANY DIRECT,
32
- INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
33
- BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
35
- OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
36
- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
37
- EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
18
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
19
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
20
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
21
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
22
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
23
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
24
+ THIS SOFTWARE.
38
25
 
39
26
  ---
40
27
 
41
28
  Name: tslib
42
- Version: 1.14.1
29
+ Version: 2.8.1
43
30
  License: 0BSD
44
31
  Private: false
45
32
  Description: Runtime library for TypeScript helper functions
@@ -134,8 +121,8 @@ END OF TERMS AND CONDITIONS
134
121
  ---
135
122
 
136
123
  Name: d3-polygon
137
- Version: 1.0.6
138
- License: BSD-3-Clause
124
+ Version: 3.0.1
125
+ License: ISC
139
126
  Private: false
140
127
  Description: Operations for two-dimensional polygons.
141
128
  Repository: https://github.com/d3/d3-polygon.git
@@ -144,121 +131,52 @@ Author: Mike Bostock (http://bost.ocks.org/mike)
144
131
  License Copyright:
145
132
  ===
146
133
 
147
- Copyright 2010-2016 Mike Bostock
148
- All rights reserved.
149
-
150
- Redistribution and use in source and binary forms, with or without modification,
151
- are permitted provided that the following conditions are met:
152
-
153
- * Redistributions of source code must retain the above copyright notice, this
154
- list of conditions and the following disclaimer.
155
-
156
- * Redistributions in binary form must reproduce the above copyright notice,
157
- this list of conditions and the following disclaimer in the documentation
158
- and/or other materials provided with the distribution.
134
+ Copyright 2010-2021 Mike Bostock
159
135
 
160
- * Neither the name of the author nor the names of contributors may be used to
161
- endorse or promote products derived from this software without specific prior
162
- written permission.
136
+ Permission to use, copy, modify, and/or distribute this software for any purpose
137
+ with or without fee is hereby granted, provided that the above copyright notice
138
+ and this permission notice appear in all copies.
163
139
 
164
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
165
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
166
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
167
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
168
- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
169
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
170
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
171
- ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
172
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
173
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
140
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
141
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
142
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
143
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
144
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
145
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
146
+ THIS SOFTWARE.
174
147
 
175
148
  ---
176
149
 
177
- Name: d3-path
178
- Version: 1.0.9
179
- License: BSD-3-Clause
150
+ Name: d3-fetch
151
+ Version: 3.0.1
152
+ License: ISC
180
153
  Private: false
181
- Description: Serialize Canvas path commands to SVG.
182
- Repository: https://github.com/d3/d3-path.git
183
- Homepage: https://d3js.org/d3-path/
154
+ Description: Convenient parsing for Fetch.
155
+ Repository: https://github.com/d3/d3-fetch.git
156
+ Homepage: https://d3js.org/d3-fetch/
184
157
  Author: Mike Bostock (http://bost.ocks.org/mike)
185
158
  License Copyright:
186
159
  ===
187
160
 
188
- Copyright 2015-2016 Mike Bostock
189
- All rights reserved.
190
-
191
- Redistribution and use in source and binary forms, with or without modification,
192
- are permitted provided that the following conditions are met:
193
-
194
- * Redistributions of source code must retain the above copyright notice, this
195
- list of conditions and the following disclaimer.
196
-
197
- * Redistributions in binary form must reproduce the above copyright notice,
198
- this list of conditions and the following disclaimer in the documentation
199
- and/or other materials provided with the distribution.
161
+ Copyright 2016-2021 Mike Bostock
200
162
 
201
- * Neither the name of the author nor the names of contributors may be used to
202
- endorse or promote products derived from this software without specific prior
203
- written permission.
163
+ Permission to use, copy, modify, and/or distribute this software for any purpose
164
+ with or without fee is hereby granted, provided that the above copyright notice
165
+ and this permission notice appear in all copies.
204
166
 
205
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
206
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
207
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
208
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
209
- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
210
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
211
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
212
- ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
213
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
214
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
215
-
216
- ---
217
-
218
- Name: d3-shape
219
- Version: 1.3.7
220
- License: BSD-3-Clause
221
- Private: false
222
- Description: Graphical primitives for visualization, such as lines and areas.
223
- Repository: https://github.com/d3/d3-shape.git
224
- Homepage: https://d3js.org/d3-shape/
225
- Author: Mike Bostock (http://bost.ocks.org/mike)
226
- License Copyright:
227
- ===
228
-
229
- Copyright 2010-2015 Mike Bostock
230
- All rights reserved.
231
-
232
- Redistribution and use in source and binary forms, with or without modification,
233
- are permitted provided that the following conditions are met:
234
-
235
- * Redistributions of source code must retain the above copyright notice, this
236
- list of conditions and the following disclaimer.
237
-
238
- * Redistributions in binary form must reproduce the above copyright notice,
239
- this list of conditions and the following disclaimer in the documentation
240
- and/or other materials provided with the distribution.
241
-
242
- * Neither the name of the author nor the names of contributors may be used to
243
- endorse or promote products derived from this software without specific prior
244
- written permission.
245
-
246
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
247
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
248
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
249
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
250
- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
251
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
252
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
253
- ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
254
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
255
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
167
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
168
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
169
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
170
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
171
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
172
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
173
+ THIS SOFTWARE.
256
174
 
257
175
  ---
258
176
 
259
177
  Name: d3-dispatch
260
- Version: 1.0.6
261
- License: BSD-3-Clause
178
+ Version: 3.0.1
179
+ License: ISC
262
180
  Private: false
263
181
  Description: Register named callbacks and call them with arguments.
264
182
  Repository: https://github.com/d3/d3-dispatch.git
@@ -267,80 +185,52 @@ Author: Mike Bostock (http://bost.ocks.org/mike)
267
185
  License Copyright:
268
186
  ===
269
187
 
270
- Copyright 2010-2016 Mike Bostock
271
- All rights reserved.
272
-
273
- Redistribution and use in source and binary forms, with or without modification,
274
- are permitted provided that the following conditions are met:
188
+ Copyright 2010-2021 Mike Bostock
275
189
 
276
- * Redistributions of source code must retain the above copyright notice, this
277
- list of conditions and the following disclaimer.
190
+ Permission to use, copy, modify, and/or distribute this software for any purpose
191
+ with or without fee is hereby granted, provided that the above copyright notice
192
+ and this permission notice appear in all copies.
278
193
 
279
- * Redistributions in binary form must reproduce the above copyright notice,
280
- this list of conditions and the following disclaimer in the documentation
281
- and/or other materials provided with the distribution.
282
-
283
- * Neither the name of the author nor the names of contributors may be used to
284
- endorse or promote products derived from this software without specific prior
285
- written permission.
286
-
287
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
288
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
289
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
290
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
291
- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
292
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
293
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
294
- ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
295
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
296
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
194
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
195
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
196
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
197
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
198
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
199
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
200
+ THIS SOFTWARE.
297
201
 
298
202
  ---
299
203
 
300
204
  Name: d3-drag
301
- Version: 1.2.5
302
- License: BSD-3-Clause
205
+ Version: 3.0.0
206
+ License: ISC
303
207
  Private: false
304
208
  Description: Drag and drop SVG, HTML or Canvas using mouse or touch input.
305
209
  Repository: https://github.com/d3/d3-drag.git
306
210
  Homepage: https://d3js.org/d3-drag/
307
- Author: Mike Bostock (http://bost.ocks.org/mike)
211
+ Author: Mike Bostock (https://bost.ocks.org/mike)
308
212
  License Copyright:
309
213
  ===
310
214
 
311
- Copyright 2010-2016 Mike Bostock
312
- All rights reserved.
215
+ Copyright 2010-2021 Mike Bostock
313
216
 
314
- Redistribution and use in source and binary forms, with or without modification,
315
- are permitted provided that the following conditions are met:
217
+ Permission to use, copy, modify, and/or distribute this software for any purpose
218
+ with or without fee is hereby granted, provided that the above copyright notice
219
+ and this permission notice appear in all copies.
316
220
 
317
- * Redistributions of source code must retain the above copyright notice, this
318
- list of conditions and the following disclaimer.
319
-
320
- * Redistributions in binary form must reproduce the above copyright notice,
321
- this list of conditions and the following disclaimer in the documentation
322
- and/or other materials provided with the distribution.
323
-
324
- * Neither the name of the author nor the names of contributors may be used to
325
- endorse or promote products derived from this software without specific prior
326
- written permission.
327
-
328
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
329
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
330
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
331
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
332
- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
333
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
334
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
335
- ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
336
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
337
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
221
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
222
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
223
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
224
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
225
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
226
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
227
+ THIS SOFTWARE.
338
228
 
339
229
  ---
340
230
 
341
231
  Name: d3-color
342
- Version: 1.4.1
343
- License: BSD-3-Clause
232
+ Version: 3.1.0
233
+ License: ISC
344
234
  Private: false
345
235
  Description: Color spaces! RGB, HSL, Cubehelix, Lab and HCL (Lch).
346
236
  Repository: https://github.com/d3/d3-color.git
@@ -349,39 +239,25 @@ Author: Mike Bostock (http://bost.ocks.org/mike)
349
239
  License Copyright:
350
240
  ===
351
241
 
352
- Copyright 2010-2016 Mike Bostock
353
- All rights reserved.
354
-
355
- Redistribution and use in source and binary forms, with or without modification,
356
- are permitted provided that the following conditions are met:
357
-
358
- * Redistributions of source code must retain the above copyright notice, this
359
- list of conditions and the following disclaimer.
242
+ Copyright 2010-2022 Mike Bostock
360
243
 
361
- * Redistributions in binary form must reproduce the above copyright notice,
362
- this list of conditions and the following disclaimer in the documentation
363
- and/or other materials provided with the distribution.
364
-
365
- * Neither the name of the author nor the names of contributors may be used to
366
- endorse or promote products derived from this software without specific prior
367
- written permission.
244
+ Permission to use, copy, modify, and/or distribute this software for any purpose
245
+ with or without fee is hereby granted, provided that the above copyright notice
246
+ and this permission notice appear in all copies.
368
247
 
369
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
370
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
371
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
372
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
373
- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
374
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
375
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
376
- ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
377
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
378
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
248
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
249
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
250
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
251
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
252
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
253
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
254
+ THIS SOFTWARE.
379
255
 
380
256
  ---
381
257
 
382
258
  Name: d3-interpolate
383
- Version: 1.4.0
384
- License: BSD-3-Clause
259
+ Version: 3.0.1
260
+ License: ISC
385
261
  Private: false
386
262
  Description: Interpolate numbers, colors, strings, arrays, objects, whatever!
387
263
  Repository: https://github.com/d3/d3-interpolate.git
@@ -390,39 +266,25 @@ Author: Mike Bostock (http://bost.ocks.org/mike)
390
266
  License Copyright:
391
267
  ===
392
268
 
393
- Copyright 2010-2016 Mike Bostock
394
- All rights reserved.
395
-
396
- Redistribution and use in source and binary forms, with or without modification,
397
- are permitted provided that the following conditions are met:
398
-
399
- * Redistributions of source code must retain the above copyright notice, this
400
- list of conditions and the following disclaimer.
401
-
402
- * Redistributions in binary form must reproduce the above copyright notice,
403
- this list of conditions and the following disclaimer in the documentation
404
- and/or other materials provided with the distribution.
269
+ Copyright 2010-2021 Mike Bostock
405
270
 
406
- * Neither the name of the author nor the names of contributors may be used to
407
- endorse or promote products derived from this software without specific prior
408
- written permission.
271
+ Permission to use, copy, modify, and/or distribute this software for any purpose
272
+ with or without fee is hereby granted, provided that the above copyright notice
273
+ and this permission notice appear in all copies.
409
274
 
410
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
411
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
412
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
413
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
414
- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
415
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
416
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
417
- ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
418
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
419
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
275
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
276
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
277
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
278
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
279
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
280
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
281
+ THIS SOFTWARE.
420
282
 
421
283
  ---
422
284
 
423
285
  Name: d3-timer
424
- Version: 1.0.10
425
- License: BSD-3-Clause
286
+ Version: 3.0.1
287
+ License: ISC
426
288
  Private: false
427
289
  Description: An efficient queue capable of managing thousands of concurrent animations.
428
290
  Repository: https://github.com/d3/d3-timer.git
@@ -431,39 +293,25 @@ Author: Mike Bostock (http://bost.ocks.org/mike)
431
293
  License Copyright:
432
294
  ===
433
295
 
434
- Copyright 2010-2016 Mike Bostock
435
- All rights reserved.
436
-
437
- Redistribution and use in source and binary forms, with or without modification,
438
- are permitted provided that the following conditions are met:
296
+ Copyright 2010-2021 Mike Bostock
439
297
 
440
- * Redistributions of source code must retain the above copyright notice, this
441
- list of conditions and the following disclaimer.
442
-
443
- * Redistributions in binary form must reproduce the above copyright notice,
444
- this list of conditions and the following disclaimer in the documentation
445
- and/or other materials provided with the distribution.
298
+ Permission to use, copy, modify, and/or distribute this software for any purpose
299
+ with or without fee is hereby granted, provided that the above copyright notice
300
+ and this permission notice appear in all copies.
446
301
 
447
- * Neither the name of the author nor the names of contributors may be used to
448
- endorse or promote products derived from this software without specific prior
449
- written permission.
450
-
451
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
452
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
453
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
454
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
455
- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
456
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
457
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
458
- ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
459
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
460
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
302
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
303
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
304
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
305
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
306
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
307
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
308
+ THIS SOFTWARE.
461
309
 
462
310
  ---
463
311
 
464
312
  Name: d3-transition
465
- Version: 1.3.2
466
- License: BSD-3-Clause
313
+ Version: 3.0.1
314
+ License: ISC
467
315
  Private: false
468
316
  Description: Animated transitions for D3 selections.
469
317
  Repository: https://github.com/d3/d3-transition.git
@@ -472,69 +320,24 @@ Author: Mike Bostock (https://bost.ocks.org/mike)
472
320
  License Copyright:
473
321
  ===
474
322
 
475
- Copyright (c) 2010-2015, Michael Bostock
476
- All rights reserved.
477
-
478
- Redistribution and use in source and binary forms, with or without
479
- modification, are permitted provided that the following conditions are met:
480
-
481
- * Redistributions of source code must retain the above copyright notice, this
482
- list of conditions and the following disclaimer.
483
-
484
- * Redistributions in binary form must reproduce the above copyright notice,
485
- this list of conditions and the following disclaimer in the documentation
486
- and/or other materials provided with the distribution.
487
-
488
- * The name Michael Bostock may not be used to endorse or promote products
489
- derived from this software without specific prior written permission.
323
+ Copyright 2010-2021 Mike Bostock
490
324
 
491
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
492
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
493
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
494
- DISCLAIMED. IN NO EVENT SHALL MICHAEL BOSTOCK BE LIABLE FOR ANY DIRECT,
495
- INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
496
- BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
497
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
498
- OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
499
- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
500
- EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
325
+ Permission to use, copy, modify, and/or distribute this software for any purpose
326
+ with or without fee is hereby granted, provided that the above copyright notice
327
+ and this permission notice appear in all copies.
501
328
 
502
- TERMS OF USE - EASING EQUATIONS
503
-
504
- Open source under the BSD License.
505
-
506
- Copyright 2001 Robert Penner
507
- All rights reserved.
508
-
509
- Redistribution and use in source and binary forms, with or without modification,
510
- are permitted provided that the following conditions are met:
511
-
512
- - Redistributions of source code must retain the above copyright notice, this
513
- list of conditions and the following disclaimer.
514
-
515
- - Redistributions in binary form must reproduce the above copyright notice,
516
- this list of conditions and the following disclaimer in the documentation
517
- and/or other materials provided with the distribution.
518
-
519
- - Neither the name of the author nor the names of contributors may be used to
520
- endorse or promote products derived from this software without specific prior
521
- written permission.
522
-
523
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
524
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
525
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
526
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
527
- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
528
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
529
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
530
- ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
531
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
532
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
329
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
330
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
331
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
332
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
333
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
334
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
335
+ THIS SOFTWARE.
533
336
 
534
337
  ---
535
338
 
536
339
  Name: d3-ease
537
- Version: 1.0.7
340
+ Version: 3.0.1
538
341
  License: BSD-3-Clause
539
342
  Private: false
540
343
  Description: Easing functions for smooth animation.
@@ -544,7 +347,7 @@ Author: Mike Bostock (http://bost.ocks.org/mike)
544
347
  License Copyright:
545
348
  ===
546
349
 
547
- Copyright 2010-2016 Mike Bostock
350
+ Copyright 2010-2021 Mike Bostock
548
351
  Copyright 2001 Robert Penner
549
352
  All rights reserved.
550
353
 
@@ -576,43 +379,29 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
576
379
  ---
577
380
 
578
381
  Name: d3-zoom
579
- Version: 1.8.3
580
- License: BSD-3-Clause
382
+ Version: 3.0.0
383
+ License: ISC
581
384
  Private: false
582
385
  Description: Pan and zoom SVG, HTML or Canvas using mouse or touch input.
583
386
  Repository: https://github.com/d3/d3-zoom.git
584
387
  Homepage: https://d3js.org/d3-zoom/
585
- Author: Mike Bostock (http://bost.ocks.org/mike)
388
+ Author: Mike Bostock (https://bost.ocks.org/mike)
586
389
  License Copyright:
587
390
  ===
588
391
 
589
- Copyright 2010-2016 Mike Bostock
590
- All rights reserved.
392
+ Copyright 2010-2021 Mike Bostock
591
393
 
592
- Redistribution and use in source and binary forms, with or without modification,
593
- are permitted provided that the following conditions are met:
394
+ Permission to use, copy, modify, and/or distribute this software for any purpose
395
+ with or without fee is hereby granted, provided that the above copyright notice
396
+ and this permission notice appear in all copies.
594
397
 
595
- * Redistributions of source code must retain the above copyright notice, this
596
- list of conditions and the following disclaimer.
597
-
598
- * Redistributions in binary form must reproduce the above copyright notice,
599
- this list of conditions and the following disclaimer in the documentation
600
- and/or other materials provided with the distribution.
601
-
602
- * Neither the name of the author nor the names of contributors may be used to
603
- endorse or promote products derived from this software without specific prior
604
- written permission.
605
-
606
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
607
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
608
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
609
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
610
- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
611
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
612
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
613
- ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
614
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
615
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
398
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
399
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
400
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
401
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
402
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
403
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
404
+ THIS SOFTWARE.
616
405
 
617
406
  ---
618
407