vim-web 0.3.44-dev.54 → 0.3.44-dev.55
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.
package/dist/vim-web.js
CHANGED
|
@@ -72487,6 +72487,13 @@ function ContextMenu(props) {
|
|
|
72487
72487
|
}
|
|
72488
72488
|
);
|
|
72489
72489
|
}
|
|
72490
|
+
const contextMenu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
72491
|
+
__proto__: null,
|
|
72492
|
+
ContextMenu,
|
|
72493
|
+
VimContextMenuMemo,
|
|
72494
|
+
contextMenuElementIds,
|
|
72495
|
+
showContextMenu
|
|
72496
|
+
}, Symbol.toStringTag, { value: "Module" }));
|
|
72490
72497
|
function BimTree(props) {
|
|
72491
72498
|
const [objects, setObjects] = useState([]);
|
|
72492
72499
|
const [expandedItems, setExpandedItems] = useState([]);
|
|
@@ -75882,7 +75889,7 @@ function Viewer$1(props) {
|
|
|
75882
75889
|
isTrue(settings2.value.ui.bimTreePanel) || isTrue(settings2.value.ui.bimInfoPanel),
|
|
75883
75890
|
Math.min(props.container.root.clientWidth * 0.25, 340)
|
|
75884
75891
|
);
|
|
75885
|
-
const [
|
|
75892
|
+
const [contextMenu2, setcontextMenu] = useState();
|
|
75886
75893
|
const [controlBarCustom, setControlBarCustom] = useState();
|
|
75887
75894
|
const bimInfoRef = useBimInfo();
|
|
75888
75895
|
const viewerState = useViewerState(props.viewer);
|
|
@@ -75996,7 +76003,7 @@ function Viewer$1(props) {
|
|
|
75996
76003
|
modal: modal.current,
|
|
75997
76004
|
isolation: isolationRef,
|
|
75998
76005
|
selection: viewerState.selection.get(),
|
|
75999
|
-
customization:
|
|
76006
|
+
customization: contextMenu2,
|
|
76000
76007
|
treeRef
|
|
76001
76008
|
}
|
|
76002
76009
|
),
|
|
@@ -76340,6 +76347,7 @@ const index$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePrope
|
|
|
76340
76347
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
76341
76348
|
const index = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
76342
76349
|
__proto__: null,
|
|
76350
|
+
ContextMenu: contextMenu,
|
|
76343
76351
|
ControlBar: index$5,
|
|
76344
76352
|
Errors: index$3,
|
|
76345
76353
|
Icons: icons,
|