@luxonis/depthai-viewer-common 3.9.7 → 4.0.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 (154) hide show
  1. package/THIRD_PARTY_NOTICES.md +36 -304
  2. package/benchmark-cli.mjs +166 -11
  3. package/benchmark-lib.sh +40 -5
  4. package/benchmark-root.sh +79 -13
  5. package/benchmark.sh +112 -5
  6. package/dist/components/Streams.d.ts +6 -0
  7. package/dist/components/Streams.d.ts.map +1 -1
  8. package/dist/components/Streams.js +12 -4
  9. package/dist/components/Streams.js.map +1 -1
  10. package/dist/hooks/benchmark-automation.d.ts.map +1 -1
  11. package/dist/hooks/benchmark-automation.js +288 -63
  12. package/dist/hooks/benchmark-automation.js.map +1 -1
  13. package/dist/index.css +7 -0
  14. package/dist/utils/vite-dev-fix.d.ts.map +1 -1
  15. package/dist/utils/vite-dev-fix.js +0 -15
  16. package/dist/utils/vite-dev-fix.js.map +1 -1
  17. package/dist/visualizer/components/Panel.d.ts.map +1 -1
  18. package/dist/visualizer/components/Panel.js +6 -3
  19. package/dist/visualizer/components/Panel.js.map +1 -1
  20. package/dist/visualizer/components/shared-interval.d.ts +1 -1
  21. package/dist/visualizer/components/shared-interval.d.ts.map +1 -1
  22. package/dist/visualizer/components/shared-interval.js +6 -2
  23. package/dist/visualizer/components/shared-interval.js.map +1 -1
  24. package/dist/visualizer/connection/communicator.d.ts +1 -0
  25. package/dist/visualizer/connection/communicator.d.ts.map +1 -1
  26. package/dist/visualizer/connection/communicator.js.map +1 -1
  27. package/dist/visualizer/connection/connection.d.ts.map +1 -1
  28. package/dist/visualizer/connection/connection.js +8 -7
  29. package/dist/visualizer/connection/connection.js.map +1 -1
  30. package/dist/visualizer/connection/foxglove-connection.d.ts +4 -2
  31. package/dist/visualizer/connection/foxglove-connection.d.ts.map +1 -1
  32. package/dist/visualizer/connection/foxglove-connection.js +88 -40
  33. package/dist/visualizer/connection/foxglove-connection.js.map +1 -1
  34. package/dist/visualizer/context/MessagePipelineProvider.d.ts +1 -1
  35. package/dist/visualizer/context/MessagePipelineProvider.d.ts.map +1 -1
  36. package/dist/visualizer/context/MessagePipelineProvider.js +24 -6
  37. package/dist/visualizer/context/MessagePipelineProvider.js.map +1 -1
  38. package/dist/visualizer/context/VisualizerContext.d.ts.map +1 -1
  39. package/dist/visualizer/context/VisualizerContext.js +1 -32
  40. package/dist/visualizer/context/VisualizerContext.js.map +1 -1
  41. package/dist/visualizer/index.d.ts +1 -0
  42. package/dist/visualizer/index.d.ts.map +1 -1
  43. package/dist/visualizer/index.js +1 -0
  44. package/dist/visualizer/index.js.map +1 -1
  45. package/dist/visualizer/messaging/browser-decoder-fixtures.d.ts.map +1 -1
  46. package/dist/visualizer/messaging/browser-decoder-fixtures.js +187 -24
  47. package/dist/visualizer/messaging/browser-decoder-fixtures.js.map +1 -1
  48. package/dist/visualizer/messaging/decode-core.d.ts +9 -1
  49. package/dist/visualizer/messaging/decode-core.d.ts.map +1 -1
  50. package/dist/visualizer/messaging/decode-core.js +26 -16
  51. package/dist/visualizer/messaging/decode-core.js.map +1 -1
  52. package/dist/visualizer/messaging/decoder-fixtures.d.ts.map +1 -1
  53. package/dist/visualizer/messaging/decoder-fixtures.js +128 -1
  54. package/dist/visualizer/messaging/decoder-fixtures.js.map +1 -1
  55. package/dist/visualizer/messaging/decoder-harness.d.ts +2 -1
  56. package/dist/visualizer/messaging/decoder-harness.d.ts.map +1 -1
  57. package/dist/visualizer/messaging/decoder-harness.js.map +1 -1
  58. package/dist/visualizer/messaging/deserialization/pointcloud/pointcloudFromDepth.worker.d.ts +6 -1
  59. package/dist/visualizer/messaging/deserialization/pointcloud/pointcloudFromDepth.worker.d.ts.map +1 -1
  60. package/dist/visualizer/messaging/deserialization/pointcloud/pointcloudFromDepth.worker.js +5 -1
  61. package/dist/visualizer/messaging/deserialization/pointcloud/pointcloudFromDepth.worker.js.map +1 -1
  62. package/dist/visualizer/messaging/deserialization/pointcloud/poitcloudPoolManager.d.ts +10 -14
  63. package/dist/visualizer/messaging/deserialization/pointcloud/poitcloudPoolManager.d.ts.map +1 -1
  64. package/dist/visualizer/messaging/deserialization/pointcloud/poitcloudPoolManager.js +56 -288
  65. package/dist/visualizer/messaging/deserialization/pointcloud/poitcloudPoolManager.js.map +1 -1
  66. package/dist/visualizer/messaging/deserialization/pointcloud/utils.d.ts.map +1 -1
  67. package/dist/visualizer/messaging/deserialization/pointcloud/utils.js +2 -7
  68. package/dist/visualizer/messaging/deserialization/pointcloud/utils.js.map +1 -1
  69. package/dist/visualizer/messaging/deserialization/video/depth.d.ts +2 -1
  70. package/dist/visualizer/messaging/deserialization/video/depth.d.ts.map +1 -1
  71. package/dist/visualizer/messaging/deserialization/video/depth.js +9 -65
  72. package/dist/visualizer/messaging/deserialization/video/depth.js.map +1 -1
  73. package/dist/visualizer/messaging/deserialization/video/h264.d.ts +3 -3
  74. package/dist/visualizer/messaging/deserialization/video/h264.d.ts.map +1 -1
  75. package/dist/visualizer/messaging/deserialization/video/h264.js +80 -25
  76. package/dist/visualizer/messaging/deserialization/video/h264.js.map +1 -1
  77. package/dist/visualizer/messaging/deserialization/video/h265.d.ts +1 -1
  78. package/dist/visualizer/messaging/deserialization/video/h265.d.ts.map +1 -1
  79. package/dist/visualizer/messaging/deserialization/video/h265.js +62 -22
  80. package/dist/visualizer/messaging/deserialization/video/h265.js.map +1 -1
  81. package/dist/visualizer/messaging/deserialization/video/mjpeg.d.ts +1 -0
  82. package/dist/visualizer/messaging/deserialization/video/mjpeg.d.ts.map +1 -1
  83. package/dist/visualizer/messaging/deserialization/video/mjpeg.js +14 -2
  84. package/dist/visualizer/messaging/deserialization/video/mjpeg.js.map +1 -1
  85. package/dist/visualizer/messaging/deserialization/video/rgbd-to-pointcloud.d.ts +3 -1
  86. package/dist/visualizer/messaging/deserialization/video/rgbd-to-pointcloud.d.ts.map +1 -1
  87. package/dist/visualizer/messaging/deserialization/video/rgbd-to-pointcloud.js +152 -250
  88. package/dist/visualizer/messaging/deserialization/video/rgbd-to-pointcloud.js.map +1 -1
  89. package/dist/visualizer/messaging/deserialization.worker.d.ts +5 -3
  90. package/dist/visualizer/messaging/deserialization.worker.d.ts.map +1 -1
  91. package/dist/visualizer/messaging/deserialization.worker.js +16 -2
  92. package/dist/visualizer/messaging/deserialization.worker.js.map +1 -1
  93. package/dist/visualizer/messaging/message-event.d.ts +3 -0
  94. package/dist/visualizer/messaging/message-event.d.ts.map +1 -1
  95. package/dist/visualizer/messaging/message-event.js +18 -4
  96. package/dist/visualizer/messaging/message-event.js.map +1 -1
  97. package/dist/visualizer/messaging/message-handler.d.ts +3 -1
  98. package/dist/visualizer/messaging/message-handler.d.ts.map +1 -1
  99. package/dist/visualizer/messaging/message-handler.js +120 -49
  100. package/dist/visualizer/messaging/message-handler.js.map +1 -1
  101. package/dist/visualizer/output.css +7 -0
  102. package/dist/visualizer/panels/PointCloudPanel.d.ts.map +1 -1
  103. package/dist/visualizer/panels/PointCloudPanel.js +2 -0
  104. package/dist/visualizer/panels/PointCloudPanel.js.map +1 -1
  105. package/dist/visualizer/panels/image/ImageCanvasRenderer.d.ts.map +1 -1
  106. package/dist/visualizer/panels/image/ImageCanvasRenderer.js +246 -69
  107. package/dist/visualizer/panels/image/ImageCanvasRenderer.js.map +1 -1
  108. package/dist/visualizer/panels/image/annotation-overlay.d.ts.map +1 -1
  109. package/dist/visualizer/panels/image/annotation-overlay.js +16 -2
  110. package/dist/visualizer/panels/image/annotation-overlay.js.map +1 -1
  111. package/dist/visualizer/panels/image/raw-image-decoder.d.ts.map +1 -1
  112. package/dist/visualizer/panels/image/raw-image-decoder.js +1 -0
  113. package/dist/visualizer/panels/image/raw-image-decoder.js.map +1 -1
  114. package/dist/visualizer/panels/image/webgl-image-renderer.d.ts +11 -2
  115. package/dist/visualizer/panels/image/webgl-image-renderer.d.ts.map +1 -1
  116. package/dist/visualizer/panels/image/webgl-image-renderer.js +236 -41
  117. package/dist/visualizer/panels/image/webgl-image-renderer.js.map +1 -1
  118. package/dist/visualizer/panels/image/webgl-segmentation-mask-renderer.d.ts +16 -0
  119. package/dist/visualizer/panels/image/webgl-segmentation-mask-renderer.d.ts.map +1 -0
  120. package/dist/visualizer/panels/image/webgl-segmentation-mask-renderer.js +184 -0
  121. package/dist/visualizer/panels/image/webgl-segmentation-mask-renderer.js.map +1 -0
  122. package/dist/visualizer/panels/image/worker-image-decoder.d.ts.map +1 -1
  123. package/dist/visualizer/panels/image/worker-image-decoder.js +8 -3
  124. package/dist/visualizer/panels/image/worker-image-decoder.js.map +1 -1
  125. package/dist/visualizer/panels/pointcloud/PointCloudCanvasRenderer.d.ts.map +1 -1
  126. package/dist/visualizer/panels/pointcloud/PointCloudCanvasRenderer.js +256 -73
  127. package/dist/visualizer/panels/pointcloud/PointCloudCanvasRenderer.js.map +1 -1
  128. package/dist/visualizer/panels/pointcloud/point-cloud-materials.d.ts +5 -0
  129. package/dist/visualizer/panels/pointcloud/point-cloud-materials.d.ts.map +1 -0
  130. package/dist/visualizer/panels/pointcloud/point-cloud-materials.js +123 -0
  131. package/dist/visualizer/panels/pointcloud/point-cloud-materials.js.map +1 -0
  132. package/dist/visualizer/protobuf.generated/NNData.d.ts +92 -0
  133. package/dist/visualizer/protobuf.generated/NNData.d.ts.map +1 -0
  134. package/dist/visualizer/protobuf.generated/NNData.js +620 -0
  135. package/dist/visualizer/protobuf.generated/NNData.js.map +1 -0
  136. package/dist/visualizer/utils/benchmark-metrics.d.ts +27 -0
  137. package/dist/visualizer/utils/benchmark-metrics.d.ts.map +1 -0
  138. package/dist/visualizer/utils/benchmark-metrics.js +139 -0
  139. package/dist/visualizer/utils/benchmark-metrics.js.map +1 -0
  140. package/dist/visualizer/utils/comlink-wrap.d.ts.map +1 -1
  141. package/dist/visualizer/utils/comlink-wrap.js +5 -0
  142. package/dist/visualizer/utils/comlink-wrap.js.map +1 -1
  143. package/dist/visualizer/utils/poitcloud-sync.d.ts.map +1 -1
  144. package/dist/visualizer/utils/poitcloud-sync.js +5 -2
  145. package/dist/visualizer/utils/poitcloud-sync.js.map +1 -1
  146. package/package.json +3 -4
  147. package/dist/visualizer/messaging/deserialization/pointcloud/i420ToRgbaToPoitcloud.worker.d.ts +0 -2
  148. package/dist/visualizer/messaging/deserialization/pointcloud/i420ToRgbaToPoitcloud.worker.d.ts.map +0 -1
  149. package/dist/visualizer/messaging/deserialization/pointcloud/i420ToRgbaToPoitcloud.worker.js +0 -45
  150. package/dist/visualizer/messaging/deserialization/pointcloud/i420ToRgbaToPoitcloud.worker.js.map +0 -1
  151. package/dist/visualizer/messaging/deserialization/video/depth-coloring.worker.d.ts +0 -5
  152. package/dist/visualizer/messaging/deserialization/video/depth-coloring.worker.d.ts.map +0 -1
  153. package/dist/visualizer/messaging/deserialization/video/depth-coloring.worker.js +0 -124
  154. package/dist/visualizer/messaging/deserialization/video/depth-coloring.worker.js.map +0 -1
@@ -70,10 +70,6 @@ This file is generated by `npm run licenses:scan`. Do not edit it by hand.
70
70
  | @floating-ui/dom | 1.8.0 | MIT |
71
71
  | @floating-ui/react-dom | 2.1.9 | MIT |
72
72
  | @floating-ui/utils | 0.2.12 | MIT |
73
- | @formatjs/fast-memoize | 3.1.7 | MIT |
74
- | @formatjs/icu-messageformat-parser | 3.5.15 | MIT |
75
- | @formatjs/icu-skeleton-parser | 2.1.11 | MIT |
76
- | @formatjs/intl | 4.1.17 | MIT |
77
73
  | @hookform/resolvers | 5.4.0 | MIT |
78
74
  | @radix-ui/number | 1.1.2 | MIT |
79
75
  | @radix-ui/primitive | 1.1.6 | MIT |
@@ -144,7 +140,6 @@ This file is generated by `npm run licenses:scan`. Do not edit it by hand.
144
140
  | character-reference-invalid | 2.0.1 | MIT |
145
141
  | class-variance-authority | 0.7.1 | Apache-2.0 |
146
142
  | classcat | 5.0.5 | MIT |
147
- | classnames | 2.5.1 | MIT |
148
143
  | clsx | 2.1.1 | MIT |
149
144
  | comlink | 4.4.2 | Apache-2.0 |
150
145
  | comma-separated-tokens | 2.0.3 | MIT |
@@ -167,7 +162,6 @@ This file is generated by `npm run licenses:scan`. Do not edit it by hand.
167
162
  | decode-named-character-reference | 1.3.0 | MIT |
168
163
  | detect-node-es | 1.1.0 | MIT |
169
164
  | dnd-core | 16.0.1 | MIT |
170
- | dnd-multi-backend | 8.1.2 | MIT |
171
165
  | electron-to-chromium | 1.5.395 | ISC |
172
166
  | es-errors | 1.3.0 | MIT |
173
167
  | escalade | 3.2.0 | MIT |
@@ -185,16 +179,12 @@ This file is generated by `npm run licenses:scan`. Do not edit it by hand.
185
179
  | highlight.js | 10.7.3 | BSD-3-Clause |
186
180
  | highlightjs-vue | 1.0.0 | CC0-1.0 |
187
181
  | hoist-non-react-statics | 3.3.2 | BSD-3-Clause |
188
- | immutability-helper | 3.1.1 | MIT |
189
- | intl-messageformat | 11.2.12 | BSD-3-Clause |
190
182
  | is-alphabetical | 2.0.1 | MIT |
191
183
  | is-alphanumerical | 2.0.1 | MIT |
192
184
  | is-core-module | 2.16.2 | MIT |
193
185
  | is-decimal | 2.0.1 | MIT |
194
186
  | is-hexadecimal | 2.0.1 | MIT |
195
- | js-tokens | 4.0.0 | MIT |
196
187
  | lodash | 4.18.1 | MIT |
197
- | loose-envify | 1.4.0 | MIT |
198
188
  | lowlight | 1.20.0 | MIT |
199
189
  | node-releases | 2.0.51 | MIT |
200
190
  | non-error | 0.1.0 | MIT |
@@ -235,19 +225,12 @@ This file is generated by `npm run licenses:scan`. Do not edit it by hand.
235
225
  | postcss-selector-parser | 7.1.4 | MIT |
236
226
  | postcss-value-parser | 4.2.0 | MIT |
237
227
  | prismjs | 1.30.0 | MIT |
238
- | prop-types | 15.8.1 | MIT |
239
228
  | property-information | 7.2.0 | MIT |
240
- | rdndmb-html5-to-touch | 8.1.2 | MIT |
241
229
  | react-dnd | 16.0.1 | MIT |
242
230
  | react-dnd-html5-backend | 16.0.1 | MIT |
243
- | react-dnd-multi-backend | 8.1.2 | MIT |
244
- | react-dnd-preview | 8.1.2 | MIT |
245
- | react-dnd-touch-backend | 16.0.1 | MIT |
246
- | react-hook-form | 7.70.0 | MIT |
231
+ | react-hook-form | 7.79.0 | MIT |
247
232
  | react-icons | 5.7.0 | MIT |
248
- | react-intl | 10.1.18 | BSD-3-Clause |
249
233
  | react-is | 16.13.1 | MIT |
250
- | react-mosaic-component | 6.1.1 | Apache-2.0 |
251
234
  | react-remove-scroll | 2.7.2 | MIT |
252
235
  | react-remove-scroll-bar | 2.3.8 | MIT |
253
236
  | react-resizable-panels | 2.1.9 | MIT |
@@ -267,14 +250,13 @@ This file is generated by `npm run licenses:scan`. Do not edit it by hand.
267
250
  | tailwind-merge | 3.6.0 | MIT |
268
251
  | three | 0.184.0 | MIT |
269
252
  | tslib | 2.8.1 | 0BSD |
270
- | type-fest | 5.8.0 | (MIT OR CC0-1.0) |
253
+ | type-fest | 5.9.0 | (MIT OR CC0-1.0) |
271
254
  | unist-util-position | 5.0.0 | MIT |
272
255
  | update-browserslist-db | 1.2.3 | MIT |
273
256
  | use-callback-ref | 1.3.3 | MIT |
274
257
  | use-sidecar | 1.1.3 | MIT |
275
258
  | use-sync-external-store | 1.6.0 | MIT |
276
259
  | util-deprecate | 1.0.2 | MIT |
277
- | uuid | 9.0.1 | MIT |
278
260
  | uuidv7 | 1.2.1 | Apache-2.0 |
279
261
  | zod | 3.25.76 | MIT |
280
262
  | zod | 4.4.3 | MIT |
@@ -432,21 +414,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
432
414
  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
433
415
  ```
434
416
 
435
- ### @formatjs/fast-memoize 3.1.7, @formatjs/icu-messageformat-parser 3.5.15, @formatjs/icu-skeleton-parser 2.1.11, @formatjs/intl 4.1.17
436
-
437
- ```
438
- MIT License
439
-
440
- Copyright (c) 2023 FormatJS
441
-
442
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
443
-
444
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
445
-
446
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
447
- ```
448
-
449
- ### @hookform/resolvers 5.4.0, react-hook-form 7.70.0
417
+ ### @hookform/resolvers 5.4.0, react-hook-form 7.79.0
450
418
 
451
419
  ```
452
420
  MIT License
@@ -956,7 +924,7 @@ exhaustive, and do not form part of our licenses.
956
924
  such as asking that all changes be marked or described.
957
925
  Although not required by our licenses, you are encouraged to
958
926
  respect those requests where reasonable. More_considerations
959
- for the public:
927
+ for the public:
960
928
  wiki.creativecommons.org/Considerations_for_licensees
961
929
 
962
930
  =======================================================================
@@ -1550,32 +1518,6 @@ The above copyright notice and this permission notice shall be included in all c
1550
1518
  THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1551
1519
  ```
1552
1520
 
1553
- ### classnames 2.5.1
1554
-
1555
- ```
1556
- The MIT License (MIT)
1557
-
1558
- Copyright (c) 2018 Jed Watson
1559
-
1560
- Permission is hereby granted, free of charge, to any person obtaining a copy
1561
- of this software and associated documentation files (the "Software"), to deal
1562
- in the Software without restriction, including without limitation the rights
1563
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1564
- copies of the Software, and to permit persons to whom the Software is
1565
- furnished to do so, subject to the following conditions:
1566
-
1567
- The above copyright notice and this permission notice shall be included in all
1568
- copies or substantial portions of the Software.
1569
-
1570
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1571
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1572
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1573
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1574
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1575
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1576
- SOFTWARE.
1577
- ```
1578
-
1579
1521
  ### clsx 2.1.1, escalade 3.2.0
1580
1522
 
1581
1523
  ```
@@ -2020,7 +1962,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2020
1962
  SOFTWARE.
2021
1963
  ```
2022
1964
 
2023
- ### dnd-core 16.0.1, react-dnd-html5-backend 16.0.1, react-dnd-touch-backend 16.0.1
1965
+ ### dnd-core 16.0.1, react-dnd-html5-backend 16.0.1
2024
1966
 
2025
1967
  ```
2026
1968
  The MIT License (MIT)
@@ -2305,70 +2247,6 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2305
2247
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2306
2248
  ```
2307
2249
 
2308
- ### immutability-helper 3.1.1
2309
-
2310
- ```
2311
- MIT License
2312
-
2313
- Copyright (c) 2017 Moshe Kolodny
2314
-
2315
- Permission is hereby granted, free of charge, to any person obtaining a copy
2316
- of this software and associated documentation files (the "Software"), to deal
2317
- in the Software without restriction, including without limitation the rights
2318
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2319
- copies of the Software, and to permit persons to whom the Software is
2320
- furnished to do so, subject to the following conditions:
2321
-
2322
- The above copyright notice and this permission notice shall be included in all
2323
- copies or substantial portions of the Software.
2324
-
2325
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2326
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2327
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2328
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2329
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2330
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2331
- SOFTWARE.
2332
- ```
2333
-
2334
- ### intl-messageformat 11.2.12
2335
-
2336
- ```
2337
- Copyright (c) 2023, Oath Inc.
2338
-
2339
- Licensed under the terms of the New BSD license. See below for terms.
2340
-
2341
- Redistribution and use of this software in source and binary forms,
2342
- with or without modification, are permitted provided that the following
2343
- conditions are met:
2344
-
2345
- - Redistributions of source code must retain the above
2346
- copyright notice, this list of conditions and the
2347
- following disclaimer.
2348
-
2349
- - Redistributions in binary form must reproduce the above
2350
- copyright notice, this list of conditions and the
2351
- following disclaimer in the documentation and/or other
2352
- materials provided with the distribution.
2353
-
2354
- - Neither the name of Oath Inc. nor the names of its
2355
- contributors may be used to endorse or promote products
2356
- derived from this software without specific prior
2357
- written permission of Oath Inc.
2358
-
2359
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
2360
- IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
2361
- TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
2362
- PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2363
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2364
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2365
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2366
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2367
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2368
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2369
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2370
- ```
2371
-
2372
2250
  ### is-core-module 2.16.2
2373
2251
 
2374
2252
  ```
@@ -2394,32 +2272,6 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2394
2272
  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2395
2273
  ```
2396
2274
 
2397
- ### js-tokens 4.0.0
2398
-
2399
- ```
2400
- The MIT License (MIT)
2401
-
2402
- Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell
2403
-
2404
- Permission is hereby granted, free of charge, to any person obtaining a copy
2405
- of this software and associated documentation files (the "Software"), to deal
2406
- in the Software without restriction, including without limitation the rights
2407
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2408
- copies of the Software, and to permit persons to whom the Software is
2409
- furnished to do so, subject to the following conditions:
2410
-
2411
- The above copyright notice and this permission notice shall be included in
2412
- all copies or substantial portions of the Software.
2413
-
2414
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2415
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2416
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2417
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2418
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2419
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2420
- THE SOFTWARE.
2421
- ```
2422
-
2423
2275
  ### lodash 4.18.1
2424
2276
 
2425
2277
  ```
@@ -2472,32 +2324,6 @@ licenses; we recommend you read them, as their terms may differ from the
2472
2324
  terms above.
2473
2325
  ```
2474
2326
 
2475
- ### loose-envify 1.4.0
2476
-
2477
- ```
2478
- The MIT License (MIT)
2479
-
2480
- Copyright (c) 2015 Andres Suarez <zertosh@gmail.com>
2481
-
2482
- Permission is hereby granted, free of charge, to any person obtaining a copy
2483
- of this software and associated documentation files (the "Software"), to deal
2484
- in the Software without restriction, including without limitation the rights
2485
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2486
- copies of the Software, and to permit persons to whom the Software is
2487
- furnished to do so, subject to the following conditions:
2488
-
2489
- The above copyright notice and this permission notice shall be included in
2490
- all copies or substantial portions of the Software.
2491
-
2492
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2493
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2494
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2495
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2496
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2497
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2498
- THE SOFTWARE.
2499
- ```
2500
-
2501
2327
  ### node-releases 2.0.51
2502
2328
 
2503
2329
  ```
@@ -2816,25 +2642,25 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2816
2642
  ### postcss-replace-overflow-wrap 4.0.0
2817
2643
 
2818
2644
  ```
2819
- The MIT License (MIT)
2820
-
2821
- Copyright 2016 Matthias Müller <MattDiMu@users.noreply.github.com>
2822
-
2823
- Permission is hereby granted, free of charge, to any person obtaining a copy of
2824
- this software and associated documentation files (the "Software"), to deal in
2825
- the Software without restriction, including without limitation the rights to
2826
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2827
- the Software, and to permit persons to whom the Software is furnished to do so,
2828
- subject to the following conditions:
2829
-
2830
- The above copyright notice and this permission notice shall be included in all
2831
- copies or substantial portions of the Software.
2832
-
2833
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2834
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2835
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2836
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2837
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2645
+ The MIT License (MIT)
2646
+
2647
+ Copyright 2016 Matthias Müller <MattDiMu@users.noreply.github.com>
2648
+
2649
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
2650
+ this software and associated documentation files (the "Software"), to deal in
2651
+ the Software without restriction, including without limitation the rights to
2652
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2653
+ the Software, and to permit persons to whom the Software is furnished to do so,
2654
+ subject to the following conditions:
2655
+
2656
+ The above copyright notice and this permission notice shall be included in all
2657
+ copies or substantial portions of the Software.
2658
+
2659
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2660
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2661
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2662
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2663
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2838
2664
  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2839
2665
  ```
2840
2666
 
@@ -2916,32 +2742,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2916
2742
  THE SOFTWARE.
2917
2743
  ```
2918
2744
 
2919
- ### prop-types 15.8.1
2920
-
2921
- ```
2922
- MIT License
2923
-
2924
- Copyright (c) 2013-present, Facebook, Inc.
2925
-
2926
- Permission is hereby granted, free of charge, to any person obtaining a copy
2927
- of this software and associated documentation files (the "Software"), to deal
2928
- in the Software without restriction, including without limitation the rights
2929
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2930
- copies of the Software, and to permit persons to whom the Software is
2931
- furnished to do so, subject to the following conditions:
2932
-
2933
- The above copyright notice and this permission notice shall be included in all
2934
- copies or substantial portions of the Software.
2935
-
2936
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2937
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2938
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2939
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2940
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2941
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2942
- SOFTWARE.
2943
- ```
2944
-
2945
2745
  ### react-dnd 16.0.1
2946
2746
 
2947
2747
  ```
@@ -3077,38 +2877,6 @@ Icons8 Line Awesome - https://icons8.com/line-awesome
3077
2877
  License: MIT https://github.com/icons8/line-awesome/blob/master/LICENSE.md
3078
2878
  ```
3079
2879
 
3080
- ### react-intl 10.1.18
3081
-
3082
- ```
3083
- Copyright 2019 Oath Inc.
3084
- All rights reserved.
3085
-
3086
- Redistribution and use in source and binary forms, with or without
3087
- modification, are permitted provided that the following conditions are met:
3088
-
3089
- * Redistributions of source code must retain the above copyright
3090
- notice, this list of conditions and the following disclaimer.
3091
-
3092
- * Redistributions in binary form must reproduce the above copyright
3093
- notice, this list of conditions and the following disclaimer in the
3094
- documentation and/or other materials provided with the distribution.
3095
-
3096
- * Neither the name of the Oath Inc. nor the
3097
- names of its contributors may be used to endorse or promote products
3098
- derived from this software without specific prior written permission.
3099
-
3100
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
3101
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
3102
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
3103
- DISCLAIMED. IN NO EVENT SHALL Oath INC. BE LIABLE FOR ANY
3104
- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
3105
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
3106
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
3107
- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3108
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
3109
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3110
- ```
3111
-
3112
2880
  ### react-is 16.13.1
3113
2881
 
3114
2882
  ```
@@ -3135,24 +2903,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3135
2903
  SOFTWARE.
3136
2904
  ```
3137
2905
 
3138
- ### react-mosaic-component 6.1.1
3139
-
3140
- ```
3141
- Copyright 2019 Kevin Verdieck, originally developed at Palantir Technologies, Inc.
3142
-
3143
- Licensed under the Apache License, Version 2.0 (the "License");
3144
- you may not use this file except in compliance with the License.
3145
- You may obtain a copy of the License at
3146
-
3147
- http://www.apache.org/licenses/LICENSE-2.0
3148
-
3149
- Unless required by applicable law or agreed to in writing, software
3150
- distributed under the License is distributed on an "AS IS" BASIS,
3151
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3152
- See the License for the specific language governing permissions and
3153
- limitations under the License.
3154
- ```
3155
-
3156
2906
  ### react-resizable-panels 2.1.9
3157
2907
 
3158
2908
  ```
@@ -3443,17 +3193,17 @@ THE SOFTWARE.
3443
3193
  ### tslib 2.8.1
3444
3194
 
3445
3195
  ```
3446
- Copyright (c) Microsoft Corporation.
3447
-
3448
- Permission to use, copy, modify, and/or distribute this software for any
3449
- purpose with or without fee is hereby granted.
3450
-
3451
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
3452
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
3453
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
3454
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
3455
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
3456
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
3196
+ Copyright (c) Microsoft Corporation.
3197
+
3198
+ Permission to use, copy, modify, and/or distribute this software for any
3199
+ purpose with or without fee is hereby granted.
3200
+
3201
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
3202
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
3203
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
3204
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
3205
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
3206
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
3457
3207
  PERFORMANCE OF THIS SOFTWARE.
3458
3208
  ```
3459
3209
 
@@ -3537,20 +3287,6 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
3537
3287
  OTHER DEALINGS IN THE SOFTWARE.
3538
3288
  ```
3539
3289
 
3540
- ### uuid 9.0.1
3541
-
3542
- ```
3543
- The MIT License (MIT)
3544
-
3545
- Copyright (c) 2010-2020 Robert Kieffer and other contributors
3546
-
3547
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
3548
-
3549
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3550
-
3551
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3552
- ```
3553
-
3554
3290
  ### zod 3.25.76, zod 4.4.3
3555
3291
 
3556
3292
  ```
@@ -3612,13 +3348,9 @@ of each declared license is available from https://spdx.org/licenses/.
3612
3348
  - @react-dnd/invariant 4.0.2 (MIT)
3613
3349
  - @react-dnd/shallowequal 4.0.2 (MIT)
3614
3350
  - cssesc 3.0.0 (MIT)
3615
- - dnd-multi-backend 8.1.2 (MIT)
3616
3351
  - format 0.2.2 (MIT)
3617
3352
  - highlightjs-vue 1.0.0 (CC0-1.0)
3618
3353
  - postcss-selector-parser 6.1.4 (MIT)
3619
3354
  - postcss-selector-parser 7.1.4 (MIT)
3620
- - rdndmb-html5-to-touch 8.1.2 (MIT)
3621
- - react-dnd-multi-backend 8.1.2 (MIT)
3622
- - react-dnd-preview 8.1.2 (MIT)
3623
3355
  - react-remove-scroll-bar 2.3.8 (MIT)
3624
- - type-fest 5.8.0 ((MIT OR CC0-1.0))
3356
+ - type-fest 5.9.0 ((MIT OR CC0-1.0))