@crystaldesign/real-time-viewer 25.3.0-beta.25 → 25.3.0-beta.26
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/build/esm/index.js +26 -25
- package/build/types/real-time-viewer/src/store/UIStore.d.ts +2 -0
- package/build/types/real-time-viewer/src/store/UIStore.d.ts.map +1 -1
- package/build/types/real-time-viewer/src/store/UtilStore.d.ts.map +1 -1
- package/build/types/real-time-viewer/src/useRealTimeRenderData.d.ts.map +1 -1
- package/build/umd/real-time-viewer.umd.min.js +1 -1
- package/build/umd/report.html +1 -1
- package/package.json +2 -2
package/build/esm/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { useRef, useEffect, memo } from 'react';
|
|
2
2
|
import _asyncToGenerator from '@babel/runtime/helpers/asyncToGenerator';
|
|
3
3
|
import _regeneratorRuntime from '@babel/runtime/regenerator';
|
|
4
|
+
import { Constants, HighlightLayer, Color4 as Color4$1 } from '@babylonjs/core';
|
|
4
5
|
import _toConsumableArray from '@babel/runtime/helpers/toConsumableArray';
|
|
5
6
|
import _classCallCheck from '@babel/runtime/helpers/classCallCheck';
|
|
6
7
|
import _createClass from '@babel/runtime/helpers/createClass';
|
|
@@ -35,7 +36,6 @@ import { Mesh } from '@babylonjs/core/Meshes/mesh';
|
|
|
35
36
|
import { Axis } from '@babylonjs/core/Maths/math.axis';
|
|
36
37
|
import { StandardMaterial } from '@babylonjs/core/Materials/standardMaterial';
|
|
37
38
|
import { Texture } from '@babylonjs/core/Materials/Textures/texture';
|
|
38
|
-
import { Constants, HighlightLayer } from '@babylonjs/core';
|
|
39
39
|
import { Matrix as Matrix$1, Vector3 as Vector3$1 } from '@babylonjs/core/Maths/math';
|
|
40
40
|
import { Engine } from '@babylonjs/core/Engines/engine';
|
|
41
41
|
import { Scene } from '@babylonjs/core/scene';
|
|
@@ -1763,10 +1763,8 @@ var UIStore = /*#__PURE__*/function () {
|
|
|
1763
1763
|
_defineProperty(this, "updateOverlayImage", function (overlayImage) {
|
|
1764
1764
|
var _this$_diffuseTexture;
|
|
1765
1765
|
if (!overlayImage || !_this._scene || ((_this$_diffuseTexture = _this._diffuseTexture) === null || _this$_diffuseTexture === void 0 ? void 0 : _this$_diffuseTexture.url) == overlayImage.base64) return;
|
|
1766
|
-
console.log("rtv -> update overlay image");
|
|
1767
1766
|
var utilStore = useUtilStoreContext();
|
|
1768
1767
|
if (!utilStore.updateCam) return;
|
|
1769
|
-
console.log("rtv -> do update overlay image");
|
|
1770
1768
|
_this._isStaticBg = overlayImage.isStaticBg;
|
|
1771
1769
|
_this._diffuseTexture.updateURL(overlayImage.base64);
|
|
1772
1770
|
_this._plane.visibility = 1;
|
|
@@ -1777,14 +1775,16 @@ var UIStore = /*#__PURE__*/function () {
|
|
|
1777
1775
|
m.material.disableColorWrite = true;
|
|
1778
1776
|
});
|
|
1779
1777
|
_this._enableSSAO(false);
|
|
1778
|
+
_this._plane.setEnabled(true);
|
|
1780
1779
|
});
|
|
1781
1780
|
this._scene = scene;
|
|
1782
1781
|
var engine = this._scene.getEngine();
|
|
1783
1782
|
var plane = MeshBuilder.CreatePlane('overlayplane', {
|
|
1784
1783
|
size: 0.0047
|
|
1785
1784
|
}, scene);
|
|
1785
|
+
plane.setEnabled(false);
|
|
1786
1786
|
var mat = new StandardMaterial('planeMat', scene);
|
|
1787
|
-
this._diffuseTexture = new Texture('data:image/
|
|
1787
|
+
this._diffuseTexture = new Texture('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mP8/wcAAwAB/ep3wWkAAAAASUVORK5CYII=', scene);
|
|
1788
1788
|
mat.diffuseTexture = this._diffuseTexture;
|
|
1789
1789
|
mat.emissiveTexture = this._diffuseTexture;
|
|
1790
1790
|
mat.specularColor = Color3.Black();
|
|
@@ -1795,10 +1795,11 @@ var UIStore = /*#__PURE__*/function () {
|
|
|
1795
1795
|
this._plane.isPickable = false;
|
|
1796
1796
|
this._plane.parent = scene.activeCamera;
|
|
1797
1797
|
this._selectedHl = new HighlightLayer('hl', this._scene);
|
|
1798
|
+
this._selectedHl.innerGlow = false;
|
|
1799
|
+
this._selectedHl.outerGlow = false;
|
|
1798
1800
|
this._selectedHl.blurHorizontalSize = 1;
|
|
1799
1801
|
this._selectedHl.blurVerticalSize = 1;
|
|
1800
1802
|
this._selectedHl.mainTexture.samples = 4;
|
|
1801
|
-
this._selectedHl.innerGlow = false;
|
|
1802
1803
|
this._enableSSAO = enableSSAO;
|
|
1803
1804
|
this._utilStore = _utilStore;
|
|
1804
1805
|
this._gui = AdvancedDynamicTexture.CreateFullscreenUI('UI');
|
|
@@ -1819,8 +1820,6 @@ var UIStore = /*#__PURE__*/function () {
|
|
|
1819
1820
|
if (_overlayImage) {
|
|
1820
1821
|
this._isUnityComb = true;
|
|
1821
1822
|
this._plane.visibility = 1;
|
|
1822
|
-
this._diffuseTexture.updateURL(_overlayImage.base64);
|
|
1823
|
-
this._plane.visibility = 1;
|
|
1824
1823
|
var root = this._scene.getTransformNodeByName('Root');
|
|
1825
1824
|
if (root) root.getChildMeshes().forEach(function (m) {
|
|
1826
1825
|
if (!m.material) return;
|
|
@@ -1831,6 +1830,11 @@ var UIStore = /*#__PURE__*/function () {
|
|
|
1831
1830
|
}
|
|
1832
1831
|
}
|
|
1833
1832
|
return _createClass(UIStore, [{
|
|
1833
|
+
key: "highlightLayer",
|
|
1834
|
+
get: function get() {
|
|
1835
|
+
return this._selectedHl;
|
|
1836
|
+
}
|
|
1837
|
+
}, {
|
|
1834
1838
|
key: "isStaticBg",
|
|
1835
1839
|
get: function get() {
|
|
1836
1840
|
return !!this._isStaticBg;
|
|
@@ -2304,11 +2308,9 @@ var UtilStore = /*#__PURE__*/function () {
|
|
|
2304
2308
|
}, {
|
|
2305
2309
|
key: "updateCam",
|
|
2306
2310
|
get: function get() {
|
|
2307
|
-
console.log("rtv -> get update cam " + this._updateCam);
|
|
2308
2311
|
return this._updateCam;
|
|
2309
2312
|
},
|
|
2310
2313
|
set: function set(doUpdateCam) {
|
|
2311
|
-
console.log("rtv -> set update cam " + this._updateCam);
|
|
2312
2314
|
this._updateCam = doUpdateCam;
|
|
2313
2315
|
}
|
|
2314
2316
|
}, {
|
|
@@ -3586,7 +3588,6 @@ function useRealTimeRenderData (_ref) {
|
|
|
3586
3588
|
}
|
|
3587
3589
|
function _onSceneReady() {
|
|
3588
3590
|
_onSceneReady = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee2() {
|
|
3589
|
-
var _sceneStore$root2;
|
|
3590
3591
|
return _regeneratorRuntime.wrap(function _callee2$(_context2) {
|
|
3591
3592
|
while (1) switch (_context2.prev = _context2.next) {
|
|
3592
3593
|
case 0:
|
|
@@ -3623,7 +3624,7 @@ function useRealTimeRenderData (_ref) {
|
|
|
3623
3624
|
});
|
|
3624
3625
|
_context2.prev = 15;
|
|
3625
3626
|
uiStore.deactivateHighlightLayer();
|
|
3626
|
-
|
|
3627
|
+
uiStore.highlightLayer.isEnabled = false;
|
|
3627
3628
|
_context2.next = 20;
|
|
3628
3629
|
return parser();
|
|
3629
3630
|
case 20:
|
|
@@ -3668,13 +3669,11 @@ function useRealTimeRenderData (_ref) {
|
|
|
3668
3669
|
sceneStore.isInitializing = false;
|
|
3669
3670
|
sceneStore.scene.onAfterRenderObservable.removeCallback(onFirstFrame);
|
|
3670
3671
|
if (!overlayImage) actions.toggleLoading('buildScene', false, false);
|
|
3671
|
-
//sceneStore.scene.debugLayer?.show?.();
|
|
3672
3672
|
(_callbacks$onInitiali2 = callbacks.onInitialized) === null || _callbacks$onInitiali2 === void 0 || _callbacks$onInitiali2.call(callbacks);
|
|
3673
3673
|
(_sceneStore = sceneStore) === null || _sceneStore === void 0 || _sceneStore.optimizeScene();
|
|
3674
3674
|
setTimeout(function () {
|
|
3675
|
-
|
|
3676
|
-
|
|
3677
|
-
}, 1000);
|
|
3675
|
+
return uiStore.highlightLayer.isEnabled = true;
|
|
3676
|
+
}, 500);
|
|
3678
3677
|
uiStore.activateHightlightLayer();
|
|
3679
3678
|
}
|
|
3680
3679
|
function renderLoop() {
|
|
@@ -3707,7 +3706,7 @@ function useRealTimeRenderData (_ref) {
|
|
|
3707
3706
|
while (1) switch (_context.prev = _context.next) {
|
|
3708
3707
|
case 0:
|
|
3709
3708
|
if (!gameCanvas.current) {
|
|
3710
|
-
_context.next =
|
|
3709
|
+
_context.next = 21;
|
|
3711
3710
|
break;
|
|
3712
3711
|
}
|
|
3713
3712
|
engine = new Engine(gameCanvas.current, true, {
|
|
@@ -3718,6 +3717,7 @@ function useRealTimeRenderData (_ref) {
|
|
|
3718
3717
|
engine.renderEvenInBackground = renderInBackground;
|
|
3719
3718
|
engine.disablePerformanceMonitorInBackground = true;
|
|
3720
3719
|
bScene = new Scene(engine, undefined);
|
|
3720
|
+
bScene.clearColor = new Color4$1(255, 255, 255, 255);
|
|
3721
3721
|
context = registerContext(bScene, renderjob, apiConfig, jwt, viewHandler, callbacks.onMissingGeo, callbacks.requestNewOverlayImage, overlayImage, uiConfig, callbacks.updateCameraInformation);
|
|
3722
3722
|
sceneStore = context.sceneStore;
|
|
3723
3723
|
context.utilStore;
|
|
@@ -3725,19 +3725,19 @@ function useRealTimeRenderData (_ref) {
|
|
|
3725
3725
|
uiStore = context.uiStore;
|
|
3726
3726
|
scene = bScene;
|
|
3727
3727
|
if (!bScene.isReady()) {
|
|
3728
|
-
_context.next =
|
|
3728
|
+
_context.next = 17;
|
|
3729
3729
|
break;
|
|
3730
3730
|
}
|
|
3731
|
-
_context.next =
|
|
3731
|
+
_context.next = 15;
|
|
3732
3732
|
return onSceneReady();
|
|
3733
|
-
case
|
|
3734
|
-
_context.next =
|
|
3733
|
+
case 15:
|
|
3734
|
+
_context.next = 18;
|
|
3735
3735
|
break;
|
|
3736
|
-
case
|
|
3736
|
+
case 17:
|
|
3737
3737
|
bScene.executeWhenReady(function () {
|
|
3738
3738
|
return onSceneReady();
|
|
3739
3739
|
});
|
|
3740
|
-
case
|
|
3740
|
+
case 18:
|
|
3741
3741
|
resize = function resize() {
|
|
3742
3742
|
if (inBackground || !scene || !scene.getEngine()) return;
|
|
3743
3743
|
if (sceneStore.hasPlanned) sceneStore.doRenderControlLoop = true;
|
|
@@ -3757,9 +3757,9 @@ function useRealTimeRenderData (_ref) {
|
|
|
3757
3757
|
window.removeEventListener('resize', resize);
|
|
3758
3758
|
}
|
|
3759
3759
|
});
|
|
3760
|
-
case 20:
|
|
3761
|
-
return _context.abrupt("return");
|
|
3762
3760
|
case 21:
|
|
3761
|
+
return _context.abrupt("return");
|
|
3762
|
+
case 22:
|
|
3763
3763
|
case "end":
|
|
3764
3764
|
return _context.stop();
|
|
3765
3765
|
}
|
|
@@ -3849,7 +3849,8 @@ var RealTimeRenderer = /*#__PURE__*/memo(function (props) {
|
|
|
3849
3849
|
height: '100%',
|
|
3850
3850
|
width: '100%',
|
|
3851
3851
|
margin: 'auto',
|
|
3852
|
-
display: 'block'
|
|
3852
|
+
display: 'block',
|
|
3853
|
+
backgroundColor: 'white'
|
|
3853
3854
|
},
|
|
3854
3855
|
className: canvas
|
|
3855
3856
|
})
|
|
@@ -3,6 +3,7 @@ import { ElementInfo } from '../types';
|
|
|
3
3
|
import { Element } from './types';
|
|
4
4
|
import { Mesh } from '@babylonjs/core/Meshes/mesh';
|
|
5
5
|
import { Scene } from '@babylonjs/core/scene';
|
|
6
|
+
import { HighlightLayer } from '@babylonjs/core';
|
|
6
7
|
import { UtilStore } from './UtilStore';
|
|
7
8
|
export declare class UIStore {
|
|
8
9
|
private _utilStore;
|
|
@@ -29,6 +30,7 @@ export declare class UIStore {
|
|
|
29
30
|
base64: string;
|
|
30
31
|
isStaticBg: boolean;
|
|
31
32
|
}, onElementCopy?: (setId: string, elementId: number, copyDir: 'LEFT' | 'RIGHT' | 'TOP' | 'STD') => void);
|
|
33
|
+
get highlightLayer(): HighlightLayer;
|
|
32
34
|
get isStaticBg(): boolean;
|
|
33
35
|
get unityCombActive(): boolean;
|
|
34
36
|
private initSelectionHandler;
|
|
@@ -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;
|
|
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;AAQ9C,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAKjD,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;gBAGlC,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;IA2DvG,IAAI,cAAc,mBAEjB;IAED,IAAI,UAAU,YAEb;IAED,IAAI,eAAe,YAElB;IAED,OAAO,CAAC,oBAAoB;IAgCrB,aAAa,CAAC,IAAI,EAAE,IAAI,EAAE,UAAU,CAAC,EAAE,GAAG;IAoC1C,aAAa;IAKb,MAAM,CAAC,KAAK,EAAE,KAAK;IAMnB,eAAe,CAAC,YAAY,EAAE,WAAW,EAAE;IAIlD,OAAO,CAAC,WAAW;IA+GnB,OAAO,CAAC,oBAAoB;IAoErB,OAAO,CAAC,YAAY,EAAE,GAAG,EAAE,QAAQ,EAAE,OAAO,EAAE;IAqB9C,UAAU,CAAC,IAAI,EAAE,MAAM;IAiBvB,wBAAwB;IAIxB,uBAAuB;IAIvB,QAAQ;IAMR,MAAM;IAkBN,kBAAkB,iBAAkB;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,OAAO,CAAA;KAAE,GAAG,SAAS,UAmB5F;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;CA8C1I"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UtilStore.d.ts","sourceRoot":"","sources":["../../../../../src/store/UtilStore.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,qCAAqC,CAAC;AACnE,OAAO,EAAE,IAAI,EAAE,MAAM,6BAA6B,CAAC;AACnD,OAAO,EAAU,OAAO,EAAE,MAAM,4BAA4B,CAAC;AAC7D,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AAErE,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,IAAI,CAAC;AAC9C,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AACjC,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAMzC,qBAAa,SAAS;IACpB,OAAO,CAAC,SAAS,CAAU;IAC3B,OAAO,CAAC,eAAe,CAAwB;IAC/C,OAAO,CAAC,sBAAsB,CAAS;IACvC,OAAO,CAAC,UAAU,CAAU;IAC5B,OAAO,CAAC,YAAY,CAAC,CAAc;gBAEvB,QAAQ,CAAC,EAAE,OAAO,EAAE,WAAW,CAAC,EAAE,WAAW;IAOzD,IAAI,QAAQ,YAEX;IAED,IAAI,WAAW,4BAEd;IAED,IAAI,cAAc,QAEjB;IAED,IAAI,SAAS,
|
|
1
|
+
{"version":3,"file":"UtilStore.d.ts","sourceRoot":"","sources":["../../../../../src/store/UtilStore.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,qCAAqC,CAAC;AACnE,OAAO,EAAE,IAAI,EAAE,MAAM,6BAA6B,CAAC;AACnD,OAAO,EAAU,OAAO,EAAE,MAAM,4BAA4B,CAAC;AAC7D,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AAErE,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,IAAI,CAAC;AAC9C,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AACjC,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAMzC,qBAAa,SAAS;IACpB,OAAO,CAAC,SAAS,CAAU;IAC3B,OAAO,CAAC,eAAe,CAAwB;IAC/C,OAAO,CAAC,sBAAsB,CAAS;IACvC,OAAO,CAAC,UAAU,CAAU;IAC5B,OAAO,CAAC,YAAY,CAAC,CAAc;gBAEvB,QAAQ,CAAC,EAAE,OAAO,EAAE,WAAW,CAAC,EAAE,WAAW;IAOzD,IAAI,QAAQ,YAEX;IAED,IAAI,WAAW,4BAEd;IAED,IAAI,cAAc,QAEjB;IAED,IAAI,SAAS,IAIc,OAAO,CAFjC;IAED,IAAI,SAAS,CAAC,WAAW,EAAE,OAAO,EAEjC;IAED,IAAI,mBAAmB,YAKtB;IAEM,gBAAgB,CAAC,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM;IAMjD,wBAAwB;IAIxB,6BAA6B;IAK7B,kBAAkB,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE;IAYlD,uBAAuB,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO;IAOrD,iBAAiB,CAAC,GAAG,EAAE,cAAc;IAIrC,iBAAiB;IAKjB,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;QAAE,GAAG,EAAE,GAAG,CAAC;QAAC,YAAY,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;IAoCpF,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;QAAE,GAAG,EAAE,GAAG,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;IA0B/D,qBAAqB,CAAC,IAAI,EAAE,aAAa,EAAE,SAAS,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM;IAO/E,mBAAmB,OAAQ,aAAa,aAO7C;IAEK,gBAAgB,WAAY,WAAW,aAE5C;IAEK,gBAAgB,WAAY,WAAW,aAE5C;IAEK,iBAAiB,WAAY,WAAW,aAE7C;IAEK,iBAAiB,WAAY,OAAO;;;;MAEzC;IAEK,uBAAuB,CAAC,EAAE,EAAE,aAAa,GAAG,YAAY,GAAG,IAAI,GAAG,IAAI,GAAG,SAAS;;;;CAe1F"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useRealTimeRenderData.d.ts","sourceRoot":"","sources":["../../../../src/useRealTimeRenderData.ts"],"names":[],"mappings":"
|
|
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;;EAuMP"}
|