ifcurl/forgejo/viewer-deps-entry.js
Bruno Postle 950349941c forgejo: add @thatopen/components-front, fix click-to-identify and model overview
Bundle OBCF (components-front) alongside OBC so Highlighter is sourced from the
correct package.  Update click handler to use item.getGuid() — GlobalId is no
longer in the attributes map in fragments 3.4.x.  Fix populateMetaPanel crash
(ClassificationGroupData now wraps ids in a .map property, not a plain object).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-28 00:01:19 +01:00

7 lines
383 B
JavaScript

// Entry point bundled by build.js into viewer-deps.js.
// Re-exports the three viewer dependencies as named namespace exports so
// viewer.html can do: import { THREE, OBC, JSZip } from "/assets/viewer-deps.js"
export * as THREE from "three";
export * as OBC from "@thatopen/components";
export * as OBCF from "@thatopen/components-front";
export { default as JSZip } from "jszip";