mirror of
https://github.com/brunopostle/ifcurl.git
synced 2026-07-12 18:28:14 +00:00
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>
7 lines
383 B
JavaScript
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";
|