@crystaldesign/real-time-viewer 25.3.0-rc.3 → 25.3.0-rc.4

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.
@@ -1805,19 +1805,15 @@ var UIStore = /*#__PURE__*/function () {
1805
1805
  var _this$_diffuseTexture, _this$_runRenderLoopF;
1806
1806
  if (!overlayImage || !_this._scene || ((_this$_diffuseTexture = _this._diffuseTexture) === null || _this$_diffuseTexture === void 0 ? void 0 : _this$_diffuseTexture.url) == overlayImage.base64) return;
1807
1807
  var utilStore = useUtilStoreContext();
1808
- if (!utilStore.updateCam) return;
1808
+ if (!utilStore || !utilStore.updateCam) return;
1809
1809
  _this._isStaticBg = overlayImage.isStaticBg;
1810
-
1810
+ _this._plane.visibility = 0; // otherwise updateurl causes flickering
1811
1811
  // no highlightlayer on static room bg
1812
1812
  if (_this._isStaticBg) {
1813
1813
  _this.deactivateHighlightLayer();
1814
1814
  }
1815
1815
  _this._enableSSAO(false);
1816
- var tex = new Texture(overlayImage.base64, _this._scene, undefined, true, Texture.TRILINEAR_SAMPLINGMODE, function () {
1817
- _this._plane.material.diffuseTexture = tex;
1818
- _this._diffuseTexture.dispose();
1819
- _this._diffuseTexture = tex;
1820
- });
1816
+ _this._diffuseTexture.updateURL(overlayImage.base64);
1821
1817
  _this.fadeInOverlayImage(_this._plane.visibility == 1);
1822
1818
  (_this$_runRenderLoopF = _this._runRenderLoopForTime) === null || _this$_runRenderLoopF === void 0 || _this$_runRenderLoopF.call(_this, 2000);
1823
1819
  });
@@ -1907,7 +1903,7 @@ var UIStore = /*#__PURE__*/function () {
1907
1903
  if (root) root.getChildMeshes().forEach(function (m) {
1908
1904
  m.visibility = 1;
1909
1905
  if (!m.material) return;
1910
- m.material.depthFunction = Constants.LESS;
1906
+ m.material.depthFunction = Constants.LEQUAL;
1911
1907
  m.material.disableColorWrite = false;
1912
1908
  });
1913
1909
  }
@@ -2001,8 +1997,9 @@ var UIStore = /*#__PURE__*/function () {
2001
1997
  }
2002
1998
  }, {
2003
1999
  key: "createPosNr",
2004
- value: function createPosNr(elementInfo, element, isBoxPlanner) {
2005
- var _this5 = this;
2000
+ value: function createPosNr(elementInfo, element, isBoxPlanner, elementLength) {
2001
+ var _this5 = this,
2002
+ _this$_elementsInfo;
2006
2003
  var guiElem = {
2007
2004
  elementId: elementInfo.elementId,
2008
2005
  elements: []
@@ -2012,7 +2009,7 @@ var UIStore = /*#__PURE__*/function () {
2012
2009
  var guiElemRightBack = null;
2013
2010
  if (!isBoxPlanner) {
2014
2011
  guiElemLeftBack = new TransformNode('guiElem_' + elementInfo.elementId, this._scene);
2015
- guiElemLeftBack.position = element.absolutePosition.add(new Vector3(0, bbox.max.y, 0));
2012
+ guiElemLeftBack.position = new Vector3(element.absolutePosition.x, bbox.min.y + (bbox.max.y - bbox.min.y), element.absolutePosition.z);
2016
2013
  guiElem.elements.push(guiElemLeftBack);
2017
2014
  guiElemRightBack = undefined;
2018
2015
  if (this._uiConfig.posTrashIcon == 'TOP_RIGHT_BACK' || isBoxPlanner) {
@@ -2048,22 +2045,27 @@ var UIStore = /*#__PURE__*/function () {
2048
2045
  }
2049
2046
  var childMeshes = element.getChildMeshes();
2050
2047
  childMeshes.forEach(function (m) {
2048
+ if (!m.material) return;
2051
2049
  if (_this5._plane.visibility == 1) {
2052
2050
  m.material.depthFunction = Constants.ALWAYS;
2053
2051
  m.material.disableColorWrite = true;
2054
2052
  } else {
2055
2053
  m.visibility = 1;
2056
- m.material.depthFunction = Constants.LESS;
2054
+ m.material.depthFunction = Constants.LEQUAL;
2057
2055
  m.material.disableColorWrite = false;
2058
2056
  }
2059
2057
  });
2060
- if (!elementInfo.active) {
2058
+ var everyElementIsSelected = (_this$_elementsInfo = this._elementsInfo) === null || _this$_elementsInfo === void 0 ? void 0 : _this$_elementsInfo.every(function (ei) {
2059
+ return ei.active;
2060
+ });
2061
+ if (!elementInfo.active && !everyElementIsSelected) {
2061
2062
  childMeshes.forEach(function (m) {
2062
2063
  if (_this5._plane.visibility == 1) m.visibility = 0;
2063
2064
  if (!m.actionManager) m.actionManager = new ActionManager(_this5._scene);
2064
2065
  m.actionManager.registerAction(new ExecuteCodeAction(ActionManager.OnPointerOverTrigger, function (ev) {
2065
2066
  var _this5$_runRenderLoop;
2066
- (_this5$_runRenderLoop = _this5._runRenderLoopForTime) === null || _this5$_runRenderLoop === void 0 || _this5$_runRenderLoop.call(_this5, 1000);
2067
+ if (everyElementIsSelected) return;
2068
+ _this5.unityCombActive && ((_this5$_runRenderLoop = _this5._runRenderLoopForTime) === null || _this5$_runRenderLoop === void 0 ? void 0 : _this5$_runRenderLoop.call(_this5, 1000));
2067
2069
  _this5._selectedHl.removeAllMeshes();
2068
2070
  if (_this5._plane.visibility == 1) _this5._selectedMeshes.forEach(function (_m) {
2069
2071
  return _m.visibility = 0;
@@ -2075,7 +2077,8 @@ var UIStore = /*#__PURE__*/function () {
2075
2077
  }));
2076
2078
  m.actionManager.registerAction(new ExecuteCodeAction(ActionManager.OnPointerOutTrigger, function (ev) {
2077
2079
  var _this5$_runRenderLoop2;
2078
- (_this5$_runRenderLoop2 = _this5._runRenderLoopForTime) === null || _this5$_runRenderLoop2 === void 0 || _this5$_runRenderLoop2.call(_this5, 1000);
2080
+ if (everyElementIsSelected) return;
2081
+ _this5.unityCombActive && ((_this5$_runRenderLoop2 = _this5._runRenderLoopForTime) === null || _this5$_runRenderLoop2 === void 0 ? void 0 : _this5$_runRenderLoop2.call(_this5, 1000));
2079
2082
  _this5._selectedHl.removeAllMeshes();
2080
2083
  if (_this5._plane.visibility == 1) element.getChildMeshes().forEach(function (_m) {
2081
2084
  return _m.visibility = 0;
@@ -2089,7 +2092,7 @@ var UIStore = /*#__PURE__*/function () {
2089
2092
  } else {
2090
2093
  var _guiElemRightBack;
2091
2094
  this._selectedMeshes = childMeshes;
2092
- this._selectedMeshes.forEach(function (_m) {
2095
+ if (elementLength > 1 && !everyElementIsSelected) this._selectedMeshes.forEach(function (_m) {
2093
2096
  _m.visibility = 1;
2094
2097
  _this5._selectedHl.addMesh(_m, Color3.Black());
2095
2098
  });
@@ -2217,7 +2220,7 @@ var UIStore = /*#__PURE__*/function () {
2217
2220
  if (!emnt) return;
2218
2221
  var element = _this7._scene.getTransformNodeByName(emnt.bbn.name);
2219
2222
  if (!element) return;
2220
- if (elementInfo.type == 'PosNr') _this7.createPosNr(elementInfo, element, isBoxPlanner);else _this7.createBoxCopyButtons(elementInfo, element);
2223
+ if (elementInfo.type == 'PosNr') _this7.createPosNr(elementInfo, element, isBoxPlanner, elements.length);else _this7.createBoxCopyButtons(elementInfo, element);
2221
2224
  });
2222
2225
  }
2223
2226
  }, {
@@ -2761,14 +2764,12 @@ var customMat = /*#__PURE__*/function () {
2761
2764
  path: _customMat.blob,
2762
2765
  sizeMb: 0
2763
2766
  });
2764
- parsedMat.depthFunction = Constants.ALWAYS;
2765
- parsedMat.disableColorWrite = true;
2766
2767
  return _context.abrupt("return", {
2767
2768
  mat: parsedMat,
2768
2769
  found: true
2769
2770
  });
2770
- case 31:
2771
- _context.prev = 31;
2771
+ case 29:
2772
+ _context.prev = 29;
2772
2773
  _context.t0 = _context["catch"](8);
2773
2774
  if (setDataRow) useUtilStoreContext().setAnalyzeDataRow({
2774
2775
  type: 'MAT',
@@ -2778,19 +2779,17 @@ var customMat = /*#__PURE__*/function () {
2778
2779
  path: _customMat.blob,
2779
2780
  sizeMb: 0
2780
2781
  });
2781
- case 34:
2782
+ case 32:
2782
2783
  mat = new PBRMetallicRoughnessMaterial(_customMat.name, _customMat.scene);
2783
- mat.depthFunction = Constants.ALWAYS;
2784
- mat.disableColorWrite = true;
2785
2784
  return _context.abrupt("return", {
2786
2785
  mat: mat,
2787
2786
  found: true
2788
2787
  });
2789
- case 38:
2788
+ case 34:
2790
2789
  case "end":
2791
2790
  return _context.stop();
2792
2791
  }
2793
- }, _callee, null, [[8, 31]]);
2792
+ }, _callee, null, [[8, 29]]);
2794
2793
  }));
2795
2794
  return function customMat(_x) {
2796
2795
  return _ref.apply(this, arguments);
@@ -3525,8 +3524,6 @@ function shadow() {
3525
3524
  z: 0
3526
3525
  });
3527
3526
  var std_mat = new PBRMetallicRoughnessMaterial('std_mat', scene);
3528
- std_mat.depthFunction = Constants.ALWAYS;
3529
- std_mat.disableColorWrite = true;
3530
3527
  std_mat.metallic = 0;
3531
3528
  scene.defaultMaterial = std_mat;
3532
3529
  var mat = new PBRMetallicRoughnessMaterial('white', scene);
@@ -3717,12 +3714,12 @@ function useRealTimeRenderData (_ref) {
3717
3714
  LOG.debug('callbacks.setGlb is undefined');
3718
3715
  }
3719
3716
  if (!sceneStore.hasRendered) {
3720
- sceneStore.runRenderLoopIndefinitely();
3721
3717
  sceneStore.hasRendered = true;
3722
3718
  }
3719
+ sceneStore.runRenderLoopIndefinitely();
3723
3720
  sceneStore.scene.onAfterRenderObservable.add(onFirstFrame);
3724
3721
  LOG.successTransaction('BUILD_SCENE');
3725
- case 32:
3722
+ case 33:
3726
3723
  case "end":
3727
3724
  return _context2.stop();
3728
3725
  }
@@ -3805,7 +3802,7 @@ function useRealTimeRenderData (_ref) {
3805
3802
  scene.getEngine().resize(true);
3806
3803
  if (uiStore) uiStore.resize(scene);
3807
3804
  };
3808
- if (window) {
3805
+ if (window && gameCanvas.current) {
3809
3806
  window.addEventListener('resize', resize);
3810
3807
  new ResizeObserver(resize).observe(gameCanvas.current);
3811
3808
  }
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/CustomMaterial/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAC9C,OAAO,EAAE,4BAA4B,EAAE,MAAM,4DAA4D,CAAC;AAK1G,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,OAAO,CAAC;IAClB,KAAK,EAAE,KAAK,CAAC;IACb,MAAM,CAAC,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC;CAC3C;AAGD,QAAA,MAAM,SAAS,cAAqB,cAAc,eAAc,OAAO,KAAU,OAAO,CAAC;IAAE,GAAG,EAAE,4BAA4B,CAAC;IAAC,KAAK,EAAE,OAAO,CAAA;CAAE,CA4C7I,CAAC;AAEF,eAAe,SAAS,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/CustomMaterial/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAC9C,OAAO,EAAE,4BAA4B,EAAE,MAAM,4DAA4D,CAAC;AAK1G,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,OAAO,CAAC;IAClB,KAAK,EAAE,KAAK,CAAC;IACb,MAAM,CAAC,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC;CAC3C;AAGD,QAAA,MAAM,SAAS,cAAqB,cAAc,eAAc,OAAO,KAAU,OAAO,CAAC;IAAE,GAAG,EAAE,4BAA4B,CAAC;IAAC,KAAK,EAAE,OAAO,CAAA;CAAE,CAwC7I,CAAC;AAEF,eAAe,SAAS,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/shadow/index.ts"],"names":[],"mappings":"AAOA,MAAM,CAAC,OAAO,UAAU,MAAM,SAqC7B"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/shadow/index.ts"],"names":[],"mappings":"AAOA,MAAM,CAAC,OAAO,UAAU,MAAM,SAmC7B"}
@@ -1 +1 @@
1
- {"version":3,"file":"UIStore.d.ts","sourceRoot":"","sources":["../../../../../src/store/UIStore.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,MAAM,IAAI,CAAC;AAChD,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AACvC,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,IAAI,EAAE,MAAM,6BAA6B,CAAC;AAEnD,OAAO,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAa9C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAQxC,qBAAa,OAAO;IAClB,OAAO,CAAC,UAAU,CAAY;IAC9B,OAAO,CAAC,SAAS,CAAW;IAC5B,OAAO,CAAC,IAAI,CAAyB;IACrC,OAAO,CAAC,uBAAuB,CAAC,CAStB;IACV,OAAO,CAAC,cAAc,CAAC,CAAwF;IAC/G,OAAO,CAAC,UAAU,CAAC,CAAiB;IACpC,OAAO,CAAC,gBAAgB,CAAC,CAAmB;IAC5C,OAAO,CAAC,YAAY,CAAgD;IACpE,OAAO,CAAC,MAAM,CAAQ;IACtB,OAAO,CAAC,WAAW,CAA4B;IAC/C,OAAO,CAAC,iBAAiB,CAAC,CAAmB;IAC7C,OAAO,CAAC,OAAO,CAA2H;IAC1I,OAAO,CAAC,QAAQ,CAAC,CAAoD;IACrE,OAAO,CAAC,WAAW,CAAC,CAAU;IAC9B,OAAO,CAAC,aAAa,CAAC,CAAgB;IACtC,OAAO,CAAC,eAAe,CAAU;IACjC,OAAO,CAAC,MAAM,CAAO;IACrB,OAAO,CAAC,eAAe,CAAc;IACrC,OAAO,CAAC,YAAY,CAAS;IAC7B,OAAO,CAAC,WAAW,CAAiB;IACpC,OAAO,CAAC,qBAAqB,CAAqC;gBAGhE,KAAK,EAAE,KAAK,EACZ,UAAU,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,IAAI,EACrC,SAAS,EAAE,SAAS,EACpB,QAAQ,CAAC,EAAE,QAAQ,EACnB,sBAAsB,CAAC,EAAE,CAAC,SAAS,EAAE,gBAAgB,KAAK,IAAI,EAC9D,YAAY,CAAC,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,OAAO,CAAA;KAAE,EACtD,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,GAAG,KAAK,GAAG,KAAK,KAAK,IAAI,EACrG,oBAAoB,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI;IAoD7C,IAAI,UAAU,YAEb;IAED,IAAI,eAAe,YAElB;IAED,OAAO,CAAC,oBAAoB;IAgC5B,OAAO,CAAC,mBAAmB;IAY3B,OAAO,CAAC,kBAAkB;IA4BnB,aAAa,CAAC,IAAI,EAAE,IAAI,EAAE,UAAU,CAAC,EAAE,GAAG;IAoC1C,aAAa;IAKb,MAAM,CAAC,KAAK,EAAE,KAAK;IASnB,eAAe,CAAC,YAAY,EAAE,WAAW,EAAE;IAIlD,OAAO,CAAC,WAAW;IAiHnB,OAAO,CAAC,oBAAoB;IAoErB,OAAO,CAAC,YAAY,EAAE,GAAG,EAAE,QAAQ,EAAE,OAAO,EAAE;IAsB9C,UAAU,CAAC,IAAI,EAAE,MAAM;IAiBvB,wBAAwB;IAIxB,sBAAsB;IAKtB,QAAQ;IAMR,MAAM;IAUN,kBAAkB,iBAAkB;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,OAAO,CAAA;KAAE,GAAG,SAAS,UAoB5F;IAEK,sBAAsB,CAAC,SAAS,EAAE,gBAAgB,EAAE,cAAc,EAAE,GAAG,EAAE,oBAAoB,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE;CAuC1I"}
1
+ {"version":3,"file":"UIStore.d.ts","sourceRoot":"","sources":["../../../../../src/store/UIStore.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,MAAM,IAAI,CAAC;AAChD,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AACvC,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,IAAI,EAAE,MAAM,6BAA6B,CAAC;AAEnD,OAAO,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAa9C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAQxC,qBAAa,OAAO;IAClB,OAAO,CAAC,UAAU,CAAY;IAC9B,OAAO,CAAC,SAAS,CAAW;IAC5B,OAAO,CAAC,IAAI,CAAyB;IACrC,OAAO,CAAC,uBAAuB,CAAC,CAStB;IACV,OAAO,CAAC,cAAc,CAAC,CAAwF;IAC/G,OAAO,CAAC,UAAU,CAAC,CAAiB;IACpC,OAAO,CAAC,gBAAgB,CAAC,CAAmB;IAC5C,OAAO,CAAC,YAAY,CAAgD;IACpE,OAAO,CAAC,MAAM,CAAQ;IACtB,OAAO,CAAC,WAAW,CAA4B;IAC/C,OAAO,CAAC,iBAAiB,CAAC,CAAmB;IAC7C,OAAO,CAAC,OAAO,CAA2H;IAC1I,OAAO,CAAC,QAAQ,CAAC,CAAoD;IACrE,OAAO,CAAC,WAAW,CAAC,CAAU;IAC9B,OAAO,CAAC,aAAa,CAAC,CAAgB;IACtC,OAAO,CAAC,eAAe,CAAU;IACjC,OAAO,CAAC,MAAM,CAAO;IACrB,OAAO,CAAC,eAAe,CAAc;IACrC,OAAO,CAAC,YAAY,CAAS;IAC7B,OAAO,CAAC,WAAW,CAAiB;IACpC,OAAO,CAAC,qBAAqB,CAAqC;gBAGhE,KAAK,EAAE,KAAK,EACZ,UAAU,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,IAAI,EACrC,SAAS,EAAE,SAAS,EACpB,QAAQ,CAAC,EAAE,QAAQ,EACnB,sBAAsB,CAAC,EAAE,CAAC,SAAS,EAAE,gBAAgB,KAAK,IAAI,EAC9D,YAAY,CAAC,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,OAAO,CAAA;KAAE,EACtD,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,GAAG,KAAK,GAAG,KAAK,KAAK,IAAI,EACrG,oBAAoB,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI;IAoD7C,IAAI,UAAU,YAEb;IAED,IAAI,eAAe,YAElB;IAED,OAAO,CAAC,oBAAoB;IAgC5B,OAAO,CAAC,mBAAmB;IAY3B,OAAO,CAAC,kBAAkB;IA4BnB,aAAa,CAAC,IAAI,EAAE,IAAI,EAAE,UAAU,CAAC,EAAE,GAAG;IAoC1C,aAAa;IAKb,MAAM,CAAC,KAAK,EAAE,KAAK;IASnB,eAAe,CAAC,YAAY,EAAE,WAAW,EAAE;IAIlD,OAAO,CAAC,WAAW;IAyHnB,OAAO,CAAC,oBAAoB;IAoErB,OAAO,CAAC,YAAY,EAAE,GAAG,EAAE,QAAQ,EAAE,OAAO,EAAE;IAsB9C,UAAU,CAAC,IAAI,EAAE,MAAM;IAiBvB,wBAAwB;IAIxB,sBAAsB;IAKtB,QAAQ;IAMR,MAAM;IAUN,kBAAkB,iBAAkB;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,OAAO,CAAA;KAAE,GAAG,SAAS,UAe5F;IAEK,sBAAsB,CAAC,SAAS,EAAE,gBAAgB,EAAE,cAAc,EAAE,GAAG,EAAE,oBAAoB,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE;CAuC1I"}
@@ -1 +1 @@
1
- {"version":3,"file":"useRealTimeRenderData.d.ts","sourceRoot":"","sources":["../../../../src/useRealTimeRenderData.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,EAAE,MAAM,GAAG,CAAC;AAO1B,OAAO,8BAA8B,CAAC;AAOtC,MAAM,CAAC,OAAO,WAAW,EACvB,GAAG,EACH,OAAO,EACP,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,WAAW,EACX,YAAY,EACZ,YAAY,EACZ,YAAY,EACZ,iBAAiB,EACjB,oBAAoB,EACpB,SAAS,EACT,QAAQ,EACR,kBAAkB,GACnB,EAAE,KAAK;;EA0LP"}
1
+ {"version":3,"file":"useRealTimeRenderData.d.ts","sourceRoot":"","sources":["../../../../src/useRealTimeRenderData.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,EAAE,MAAM,GAAG,CAAC;AAM1B,OAAO,8BAA8B,CAAC;AAOtC,MAAM,CAAC,OAAO,WAAW,EACvB,GAAG,EACH,OAAO,EACP,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,WAAW,EACX,YAAY,EACZ,YAAY,EACZ,YAAY,EACZ,iBAAiB,EACjB,oBAAoB,EACpB,SAAS,EACT,QAAQ,EACR,kBAAkB,GACnB,EAAE,KAAK;;EA0LP"}