vim-web 0.3.44-dev.67 → 0.3.44-dev.69

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
@@ -55397,6 +55397,7 @@ class Selection {
55397
55397
  */
55398
55398
  async getBoundingBox() {
55399
55399
  var _a3;
55400
+ if (!this.any()) return void 0;
55400
55401
  const box = new Box3();
55401
55402
  let initialized = false;
55402
55403
  for (const obj of this._selection) {
@@ -75835,7 +75836,7 @@ function IsolationSettingsPanel(props) {
75835
75836
  showPanel: props.state.showPanel,
75836
75837
  fields: [
75837
75838
  { type: "bool", id: "showGhost", label: "Show Ghost", state: props.state.showGhost },
75838
- { type: "bool", id: "showRooms", label: "Show Rooms", state: props.state.showRooms },
75839
+ // { type: 'bool', id: 'showRooms', label: 'Show Rooms', state: props.state.showRooms },
75839
75840
  { type: "text", id: "ghostOpacity", label: "Ghost Opacity", state: props.state.ghostOpacity }
75840
75841
  ]
75841
75842
  });