viral-viewer-2 7.4.9 → 7.5.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 (87) hide show
  1. package/LICENSE +12 -12
  2. package/dist/assets/geometry.worker-BRORrKBS.js +1 -0
  3. package/dist/{batched-mesh-simplifier-v3jwcYIo.mjs → batched-mesh-simplifier-BGHm_9jR.mjs} +1 -1
  4. package/dist/components/animation/viral-animation.d.ts +24 -8
  5. package/dist/components/camera/viral-camera.d.ts +8 -1
  6. package/dist/components/custom-objects/viral-batched-mesh-v3.d.ts +7 -0
  7. package/dist/components/custom-objects/viral-batched-mesh.d.ts +4 -1
  8. package/dist/components/custom-objects/viral-bim-world.d.ts +9 -0
  9. package/dist/components/custom-objects/viral-bim.model.d.ts +2 -0
  10. package/dist/components/custom-objects/viral-instanced-mesh-v2.d.ts +22 -0
  11. package/dist/components/data-manager/ifc-property-mapper.d.ts +100 -0
  12. package/dist/components/data-manager/ifc-spatial-tree.d.ts +29 -0
  13. package/dist/components/data-manager/viral-data-manager.d.ts +55 -2
  14. package/dist/components/duplication-analyzer/draw-call-rebalancer.d.ts +50 -0
  15. package/dist/components/editor/block/editor-block.d.ts +27 -0
  16. package/dist/components/editor/block/profile-edit-tool.d.ts +55 -0
  17. package/dist/components/editor/building-removal-tool.d.ts +29 -0
  18. package/dist/components/editor/catalog/catalog-data.d.ts +2 -0
  19. package/dist/components/editor/catalog/catalog-types.d.ts +15 -0
  20. package/dist/components/editor/commands/add-object-command.d.ts +11 -0
  21. package/dist/components/editor/commands/delete-object-command.d.ts +11 -0
  22. package/dist/components/editor/commands/editor-command-history.d.ts +13 -0
  23. package/dist/components/editor/commands/editor-command.d.ts +5 -0
  24. package/dist/components/editor/commands/transform-command.d.ts +18 -0
  25. package/dist/components/editor/editor-object.d.ts +42 -0
  26. package/dist/components/editor/hover/editor-hover-feedback.d.ts +28 -0
  27. package/dist/components/editor/library-panel/editor-library-panel.d.ts +22 -0
  28. package/dist/components/editor/persistence/editor-persistence-types.d.ts +21 -0
  29. package/dist/components/editor/persistence/editor-persistence.d.ts +12 -0
  30. package/dist/components/editor/persistence/editor-serializer.d.ts +3 -0
  31. package/dist/components/editor/placement/area-placement-tool.d.ts +54 -0
  32. package/dist/components/editor/placement/line-placement-tool.d.ts +41 -0
  33. package/dist/components/editor/placement/placement-preview.d.ts +3 -0
  34. package/dist/components/editor/placement/point-placement-tool.d.ts +29 -0
  35. package/dist/components/editor/placement/snap-utils.d.ts +4 -0
  36. package/dist/components/editor/placement/terrain-raycast.d.ts +6 -0
  37. package/dist/components/editor/snapping/editor-snap.d.ts +11 -0
  38. package/dist/components/editor/upload/editor-drag-drop.d.ts +17 -0
  39. package/dist/components/editor/upload/upload-service.d.ts +18 -0
  40. package/dist/components/editor/viral-editor-input.d.ts +28 -0
  41. package/dist/components/editor/viral-editor.d.ts +110 -0
  42. package/dist/components/landscape/coord-converter.d.ts +35 -0
  43. package/dist/components/landscape/coord-converter.test.d.ts +1 -0
  44. package/dist/components/landscape/elevation-fetcher.d.ts +40 -0
  45. package/dist/components/landscape/elevation-fetcher.test.d.ts +1 -0
  46. package/dist/components/landscape/free-landscape-provider.d.ts +5 -0
  47. package/dist/components/landscape/landscape-generator.script.d.ts +42 -0
  48. package/dist/components/landscape/landscape-generator.script.test.d.ts +1 -0
  49. package/dist/components/landscape/landscape-generator.worker.d.ts +32 -0
  50. package/dist/components/landscape/landscape-mesh-builder.d.ts +9 -0
  51. package/dist/components/landscape/landscape-mesh-builder.test.d.ts +1 -0
  52. package/dist/components/landscape/landscape-provider.d.ts +16 -0
  53. package/dist/components/landscape/landscape-types.d.ts +74 -0
  54. package/dist/components/landscape/mapbox-landscape-provider.d.ts +16 -0
  55. package/dist/components/landscape/mvt-fetcher.d.ts +15 -0
  56. package/dist/components/landscape/osm-fetcher.d.ts +12 -0
  57. package/dist/components/landscape/osm-fetcher.test.d.ts +1 -0
  58. package/dist/components/landscape/terrain-style.d.ts +26 -0
  59. package/dist/components/landscape/traffic-overlay.d.ts +3 -0
  60. package/dist/components/loader/viral-ifc.loader.d.ts +26 -0
  61. package/dist/components/loader/viral-revit.loader.d.ts +4 -0
  62. package/dist/components/loader/viral.loader.d.ts +6 -0
  63. package/dist/components/material/viral-material-manager.d.ts +5 -0
  64. package/dist/components/post-processing/post-processing-renderer.d.ts +5 -0
  65. package/dist/components/renderer/viral-renderer.d.ts +7 -0
  66. package/dist/components/telemetry/performance-metrics.d.ts +46 -0
  67. package/dist/components/visibility-manager/day-night-simulator.d.ts +18 -0
  68. package/dist/components/visibility-manager/viral-visibility-manager.d.ts +10 -0
  69. package/dist/components/worker/load-batched-element.worker.d.ts +25 -2
  70. package/dist/components/worker-script/load-ifc-element.worker.d.ts +1 -0
  71. package/dist/entities/event.d.ts +7 -1
  72. package/dist/entities/viewer-option.d.ts +7 -1
  73. package/dist/gui/draggable-modal/viral-draggable-modal.d.ts +2 -0
  74. package/dist/gui/landscape-layer-panel/landscape-layer-panel.d.ts +33 -0
  75. package/dist/gui/map-picker/map-picker-modal.d.ts +86 -0
  76. package/dist/gui/tools/tools/viral-tool-editor.d.ts +8 -0
  77. package/dist/gui/tools/tools/viral-tool-landscape.d.ts +8 -0
  78. package/dist/gui/tools/viral-tools.d.ts +4 -0
  79. package/dist/{index-Ca3N1MMc.mjs → index-CvCZR3J_.mjs} +43899 -25300
  80. package/dist/index.mjs +53 -50
  81. package/dist/types.d.ts +7 -0
  82. package/dist/utils/cooperative.d.ts +12 -0
  83. package/dist/utils/cooperative.test.d.ts +1 -0
  84. package/dist/utils/transferable.d.ts +9 -0
  85. package/dist/utils/transferable.test.d.ts +1 -0
  86. package/dist/viral-viewer-api.d.ts +17 -2
  87. package/package.json +58 -50
package/LICENSE CHANGED
@@ -1,13 +1,13 @@
1
- Viralution Viewer License
2
- Copyright (c) 2025, Viralution
3
- All rights reserved.
4
-
5
- NOTICE: NO RIGHTS GRANTED
6
-
7
- No permission is granted to any individual, organization, or entity to use, copy, modify, sublicense, merge, publish, distribute, sell, or otherwise exploit this software in any form, in whole or in part.
8
-
9
- 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.
10
-
11
- 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.
12
-
1
+ Viralution Viewer License
2
+ Copyright (c) 2025, Viralution
3
+ All rights reserved.
4
+
5
+ NOTICE: NO RIGHTS GRANTED
6
+
7
+ No permission is granted to any individual, organization, or entity to use, copy, modify, sublicense, merge, publish, distribute, sell, or otherwise exploit this software in any form, in whole or in part.
8
+
9
+ 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.
10
+
11
+ 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.
12
+
13
13
  ANY VIOLATION OF THIS LICENSE MAY RESULT IN LEGAL ACTION.