vim-web 0.3.44-dev.4 → 0.3.44-dev.7

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
@@ -75984,6 +75984,7 @@ function VimComponent(props) {
75984
75984
  isolation,
75985
75985
  camera: camera2,
75986
75986
  settings: settings2,
75987
+ sectionBox: sectionBox2,
75987
75988
  contextMenu: {
75988
75989
  customize: (v) => setcontextMenu(() => v)
75989
75990
  },
@@ -76449,7 +76450,7 @@ function UltraComponent(props) {
76449
76450
  props.viewer.selection.onValueChanged.subscribe(() => {
76450
76451
  setSelectState((i) => (i + 1) % 2);
76451
76452
  });
76452
- props.onMount(createComponentRef(props.viewer, modal));
76453
+ props.onMount(createComponentRef(props.viewer, modal, sectionBox2));
76453
76454
  }, []);
76454
76455
  return /* @__PURE__ */ jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [
76455
76456
  /* @__PURE__ */ jsxRuntimeExports.jsx(RestOfScreen, { side, content: () => {
@@ -76469,7 +76470,7 @@ function UltraComponent(props) {
76469
76470
  /* @__PURE__ */ jsxRuntimeExports.jsx(Modal, { state: modal })
76470
76471
  ] });
76471
76472
  }
76472
- function createComponentRef(viewer, modal) {
76473
+ function createComponentRef(viewer, modal, sectionBox2) {
76473
76474
  function load(source) {
76474
76475
  const request2 = viewer.loadVim(source);
76475
76476
  void updateProgress(request2, modal);
@@ -76489,6 +76490,7 @@ function createComponentRef(viewer, modal) {
76489
76490
  return {
76490
76491
  viewer,
76491
76492
  modal,
76493
+ sectionBox: sectionBox2,
76492
76494
  dispose: () => {
76493
76495
  },
76494
76496
  load