three-cad-viewer 3.2.0 → 3.2.2

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.
@@ -62087,7 +62087,7 @@ class TreeView {
62087
62087
  this.updateChildrenStates(node, i);
62088
62088
  this.update(null, i);
62089
62089
  }
62090
- this.updateHandler();
62090
+ this.updateHandler(true);
62091
62091
  this.notificationHandler();
62092
62092
  }
62093
62093
 
@@ -64958,7 +64958,7 @@ class Camera {
64958
64958
  }
64959
64959
  }
64960
64960
 
64961
- const version = "3.2.0";
64961
+ const version = "3.2.2";
64962
64962
 
64963
64963
  Mesh.prototype.dispose = function () {
64964
64964
  if (this.geometry) {
@@ -67663,7 +67663,7 @@ class Viewer {
67663
67663
  this.toggleAnimationLoop(true);
67664
67664
  }
67665
67665
  this.orientationMarker.setVisible(false);
67666
- this.update(false, false);
67666
+ this.update(true);
67667
67667
  let result = new Promise((resolve, reject) => {
67668
67668
  const canvas = this.display.getCanvas();
67669
67669
  this.renderer.setViewport(0, 0, this.cadWidth, this.height);
@@ -67679,7 +67679,7 @@ class Viewer {
67679
67679
  this.toggleAnimationLoop(false);
67680
67680
  }
67681
67681
  this.orientationMarker.setVisible(true);
67682
- this.update(false, false);
67682
+ this.update(true);
67683
67683
  },
67684
67684
  { once: true },
67685
67685
  );