@realsee/dnalogel 3.45.0 → 3.46.1

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.
Files changed (100) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/Sculpt/Meshes/Line.d.ts +6 -1
  3. package/dist/Sculpt/utils/removeAllTag.d.ts +2 -0
  4. package/dist/index.cjs.js +53 -53
  5. package/dist/index.js +29600 -29557
  6. package/dist/index.umd.js +49 -49
  7. package/dist/shared-utils/tag.d.ts +6 -3
  8. package/libs/AreaMakerPlugin/Controller.js +151 -78
  9. package/libs/AreaMakerPlugin/index.js +77 -4
  10. package/libs/AreaMakerPlugin/utils/Item.js +191 -111
  11. package/libs/CSS3DRenderPlugin/Controller.js +90 -29
  12. package/libs/CSS3DRenderPlugin/index.js +76 -15
  13. package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +133 -58
  14. package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +182 -116
  15. package/libs/CruisePlugin/BaseController.js +122 -49
  16. package/libs/CruisePlugin/Move.js +74 -21
  17. package/libs/CruisePlugin/Work.js +99 -46
  18. package/libs/CruisePlugin/index.js +80 -27
  19. package/libs/CurrentPanoImagePlugin/Controller.js +177 -104
  20. package/libs/CurrentPanoImagePlugin/index.js +77 -4
  21. package/libs/GuideLinePlugin/Controller.js +79 -26
  22. package/libs/GuideLinePlugin/GuideLineItem.js +83 -30
  23. package/libs/GuideLinePlugin/GuideLineModeItem/index.js +3 -2
  24. package/libs/GuideLinePlugin/GuideLineModeItem.js +82 -29
  25. package/libs/GuideLinePlugin/index.js +80 -27
  26. package/libs/ModelMakerPlugin/Controller.js +140 -82
  27. package/libs/ModelMakerPlugin/index.js +76 -18
  28. package/libs/ModelTVVideoPlugin/Plugin.js +118 -57
  29. package/libs/ModelTVVideoPlugin/index.js +69 -8
  30. package/libs/Object3DHelperPlugin/Controller.js +67 -43
  31. package/libs/Object3DHelperPlugin/index.js +36 -13
  32. package/libs/PanoCompassPlugin/Controller.js +98 -42
  33. package/libs/PanoCompassPlugin/index.js +72 -16
  34. package/libs/PanoDoorLabelPlugin/BaseController.js +99 -26
  35. package/libs/PanoDoorLabelPlugin/Controller.js +188 -115
  36. package/libs/PanoDoorLabelPlugin/index.js +77 -4
  37. package/libs/PanoMeasurePlugin/Components/Controller0.js +141 -88
  38. package/libs/PanoMeasurePlugin/Components/Controller1.js +179 -126
  39. package/libs/PanoMeasurePlugin/Controller/EditController.js +125 -72
  40. package/libs/PanoMeasurePlugin/Controller/WatchController.js +168 -92
  41. package/libs/PanoMeasurePlugin/Controller/index.js +110 -64
  42. package/libs/PanoMeasurePlugin/Model/area.js +115 -38
  43. package/libs/PanoMeasurePlugin/Modules/Magnifier.js +79 -0
  44. package/libs/PanoMeasurePlugin/Modules/UIController/index.js +98 -45
  45. package/libs/PanoMeasurePlugin/index.js +77 -31
  46. package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +99 -20
  47. package/libs/PanoSpatialTagPlugin/Plugin.js +211 -150
  48. package/libs/PanoSpatialTagPlugin/index.js +67 -6
  49. package/libs/PanoTagPlugin/Components/Common/TagPoint.js +149 -68
  50. package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +296 -216
  51. package/libs/PanoTagPlugin/Components/Tag/index.js +258 -187
  52. package/libs/PanoTagPlugin/Components/TagContainer.js +158 -87
  53. package/libs/PanoTagPlugin/Components/TagItem.js +145 -74
  54. package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +133 -62
  55. package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +110 -39
  56. package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +106 -35
  57. package/libs/PanoTagPlugin/controller/Tag/PointTag.js +114 -43
  58. package/libs/PanoTagPlugin/controller/TagRender.js +133 -80
  59. package/libs/PanoTagPlugin/controller/TagUtil.js +137 -84
  60. package/libs/PanoTagPlugin/controller/index.js +114 -61
  61. package/libs/PanoTagPlugin/index.js +90 -37
  62. package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +122 -41
  63. package/libs/PanoVideoPlugin/Controller.js +138 -65
  64. package/libs/PanoVideoPlugin/VideoMeshController.js +150 -69
  65. package/libs/PanoVideoPlugin/index.js +83 -10
  66. package/libs/PipelinePlugin/Controller.js +200 -128
  67. package/libs/PipelinePlugin/index.js +77 -5
  68. package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +103 -22
  69. package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +96 -15
  70. package/libs/PipelinePlugin/utils/Objects/Pipe.js +137 -56
  71. package/libs/Sculpt/Meshes/Box.js +6 -5
  72. package/libs/Sculpt/Meshes/Cylinder.js +7 -6
  73. package/libs/Sculpt/Meshes/Line.d.ts +6 -1
  74. package/libs/Sculpt/Meshes/Line.js +80 -57
  75. package/libs/Sculpt/Meshes/Point.js +6 -5
  76. package/libs/Sculpt/Meshes/Polyline.js +5 -4
  77. package/libs/Sculpt/Meshes/Rectangle.js +3 -2
  78. package/libs/Sculpt/Objects/Base/index.js +20 -17
  79. package/libs/Sculpt/Objects/Line/Editor.js +11 -10
  80. package/libs/Sculpt/utils/removeAllTag.d.ts +2 -0
  81. package/libs/Sculpt/utils/removeAllTag.js +10 -0
  82. package/libs/Sculpt/utils/three/ColoredMesh.js +14 -13
  83. package/libs/base/BasePlugin.js +14 -13
  84. package/libs/floorplan/MapviewFloorplanPlugin/Controller.js +129 -59
  85. package/libs/floorplan/MapviewFloorplanPlugin/index.js +76 -6
  86. package/libs/floorplan/ModelFloorplanPlugin/Controller.js +130 -59
  87. package/libs/floorplan/ModelFloorplanPlugin/index.js +76 -5
  88. package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +159 -86
  89. package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +77 -4
  90. package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +152 -81
  91. package/libs/floorplan/TopviewFloorplanPlugin/index.js +76 -5
  92. package/libs/floorplan/index.js +1 -0
  93. package/libs/index.js +193 -192
  94. package/libs/shared-utils/five/index.js +3 -2
  95. package/libs/shared-utils/five/lookObject.js +3 -2
  96. package/libs/shared-utils/logger.js +1 -1
  97. package/libs/shared-utils/tag.d.ts +6 -3
  98. package/libs/shared-utils/tag.js +38 -24
  99. package/libs/shared-utils/three/index.js +1 -0
  100. package/package.json +1 -1
@@ -7,6 +7,7 @@ import { isModelLike as et } from "../../shared-utils/five/mode.js";
7
7
  import "hammerjs";
8
8
  import "three/examples/jsm/renderers/CSS3DRenderer";
9
9
  import "@realsee/five/line";
10
+ import "../../Sculpt/utils/Modules/Global.js";
10
11
  import "../../shared-utils/three/THREESphere.js";
11
12
  import "animejs";
12
13
  import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
@@ -65,6 +66,85 @@ import "../../vendor/svelte-carousel/src/utils/ProgressManager.js";
65
66
  import "../../vendor/svelte-carousel/src/utils/interval.js";
66
67
  import "./Common/MediaItem.js";
67
68
  import "./Tag/MarketingTag.js";
69
+ import "../../Sculpt/utils/Modules/Cursor.js";
70
+ import "../../Object3DHelperPlugin/Controller.js";
71
+ import "../../base/BasePlugin.js";
72
+ import "../../shared-utils/Subscribe.js";
73
+ import "../../shared-utils/Utils/FiveUtil.js";
74
+ import "../../shared-utils/Utils/BaseUtil.js";
75
+ import "../../shared-utils/Utils/WorkUtil.js";
76
+ import "../../shared-utils/five/transformPosition.js";
77
+ import "../../shared-utils/five/getFiveModel.js";
78
+ import "../../shared-utils/url/absoluteUrl.js";
79
+ import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
80
+ import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
81
+ import "../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
82
+ import "../../shared-utils/three/IObject3D.js";
83
+ import "../../shared-utils/three/boundingBox.js";
84
+ import "../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
85
+ import "../../shared-utils/Object3DHelper/utils/direction.js";
86
+ import "../../shared-utils/Object3DHelper/Constants/color.js";
87
+ import "../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
88
+ import "../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
89
+ import "../../shared-utils/positionToVector3.js";
90
+ import "../../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
91
+ import "../../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
92
+ import "../../CSS3DRenderPlugin/utils/createResizeObserver.js";
93
+ import "../../CSS3DRenderPlugin/utils/even.js";
94
+ import "../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
95
+ import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
96
+ import "../../shared-utils/three/centerPoint.js";
97
+ import "../../shared-utils/three/getObjectVisible.js";
98
+ import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
99
+ import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
100
+ import "../../shared-utils/util.js";
101
+ import "../../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
102
+ import "../../shared-utils/Object3DHelper/Helper/RotateHelper.js";
103
+ import "../../shared-utils/Object3DHelper/Helper/HTML/tipsDom.js";
104
+ import "../../shared-utils/Object3DHelper/Helper/HTML/utils/createElement.js";
105
+ import "../../shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js";
106
+ import "../../shared-utils/Object3DHelper/Helper/HTML/rectangleScaleDom.js";
107
+ import "../../shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
108
+ import "../../shared-utils/Object3DHelper/Controller/MoveController.js";
109
+ import "../../shared-utils/Object3DHelper/Base/BaseController.js";
110
+ import "../../shared-utils/threex/domevents/index.js";
111
+ import "../../shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
112
+ import "../../shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
113
+ import "../../Sculpt/utils/three/rayOnLine.js";
114
+ import "../../Object3DHelperPlugin/FiveControllerWrapper.js";
115
+ import "../../shared-utils/Object3DHelper/index.js";
116
+ import "../../shared-utils/Object3DHelper/Controller/RotateController.js";
117
+ import "../../shared-utils/math/rad2Deg.js";
118
+ import "../../shared-utils/math/deg2Rad.js";
119
+ import "../../shared-utils/Object3DHelper/Controller/CSS3DScaleController.js";
120
+ import "../../shared-utils/Object3DHelper/Controller/RectangleScaleController.js";
121
+ import "../../shared-utils/Object3DHelper/utils/vectorIsEqual.js";
122
+ import "../../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
123
+ import "../../shared-utils/Object3DHelper/Controller/BoundingBoxController.js";
124
+ import "../../shared-utils/Object3DHelper/Helper/ScaleHelper.js";
125
+ import "../../shared-utils/Object3DHelper/Controller/ScaleController.js";
126
+ import "../../shared-utils/five/fiveModelLoad.js";
127
+ import "../../shared-utils/five/FiveDomEvents.js";
128
+ import "../../shared-utils/five/calculateThreeMouse.js";
129
+ import "../../shared-utils/three/THREERaycaster.js";
130
+ import "../../shared-utils/three/PointSelector/index.js";
131
+ import "../../shared-utils/three/PointSelector/utils/PointSelectorHelper.js";
132
+ import "../../shared-utils/three/Magnifier.js";
133
+ import "../../shared-utils/three/PointSelector/utils/PointHelper.js";
134
+ import "../../shared-utils/three/Assets/index.js";
135
+ import "../../shared-utils/three/PointSelector/utils/html.js";
136
+ import "../../shared-utils/five/initialCSS3DRender.js";
137
+ import "../../shared-utils/three/PointSelector/utils/PointHelper2.js";
138
+ import "../../Sculpt/Meshes/Line.js";
139
+ import "../../Sculpt/typings/style.js";
140
+ import "../../shared-utils/five/FiveLine.js";
141
+ import "../../shared-utils/tag.js";
142
+ import "../../shared-utils/five/vector3ToScreen.js";
143
+ import "../../Sculpt/utils/removeAllTag.js";
144
+ import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
145
+ import "../../shared-utils/isTouchDevice.js";
146
+ import "../../shared-utils/five/getPosition.js";
147
+ import "../../shared-utils/five/getRaycasterByNdcPosition.js";
68
148
  import "./Tag/AudioTag/index.js";
69
149
  import "./Tag/AudioTag/AudioTag.js";
70
150
  import "./Common/Audio.js";
@@ -80,13 +160,11 @@ import "./Tag/PanoramaTag.js";
80
160
  import "./Tag/CustomTag.js";
81
161
  import "../../vendor/classnames/index.js";
82
162
  import "../controller/Tag/ModelTag.js";
83
- import "../../shared-utils/positionToVector3.js";
84
163
  import "../../shared-utils/three/GLTFLoader.js";
85
164
  import "@realsee/five/gltf-loader";
86
165
  import "../utils/planeNormal.js";
87
166
  import "../utils/tag/tagCheck.js";
88
167
  import "../utils/model/mediaPlane.js";
89
- import "../../shared-utils/three/centerPoint.js";
90
168
  import "../../shared-utils/three/loadTexture.js";
91
169
  import "../../shared-utils/three/Quadrangle.js";
92
170
  import "../../shared-utils/math/pointsIsRectangle.js";
@@ -96,7 +174,6 @@ import "../../shared-utils/three/getPositionsByObjectFit.js";
96
174
  import "../../shared-utils/three/FragmentTransparencyMaterial.js";
97
175
  import "../../shared-utils/three/getNormal.js";
98
176
  import "../controller/Tag/BaseTag.js";
99
- import "../../shared-utils/Subscribe.js";
100
177
  import "../utils/tag/calculateTagConfig.js";
101
178
  import "../../vendor/object-assign-deep/objectAssignDeep.js";
102
179
  import "../../shared-utils/typescript/entries.js";
@@ -105,15 +182,9 @@ import "../typings/tag/TagConfig.js";
105
182
  import "@realsee/five";
106
183
  import "../utils/tag/format.js";
107
184
  import "../../shared-utils/three/blink.js";
108
- import "../../shared-utils/util.js";
109
185
  import "../../shared-utils/vectorToCoordinate.js";
110
186
  import "../../shared-utils/formatRad.js";
111
- import "../../shared-utils/five/transformPosition.js";
112
187
  import "../../shared-utils/five/lookPoint.js";
113
- import "../../shared-utils/Utils/FiveUtil.js";
114
- import "../../shared-utils/Utils/BaseUtil.js";
115
- import "../../shared-utils/Utils/WorkUtil.js";
116
- import "../../shared-utils/five/getFiveModel.js";
117
188
  import "../utils/tagPosition.js";
118
189
  import "../utils/checkRange.js";
119
190
  import "../../shared-utils/url/getUrl.js";
@@ -125,23 +196,23 @@ function it(o) {
125
196
  Q(o, "svelte-2g2g8a", ".tag.svelte-2g2g8a{position:absolute;width:0rem;height:0rem;overflow:visible;pointer-events:auto;will-change:opacity;transition:opacity 0.2s linear}.tag.enableZIndex.svelte-2g2g8a{position:absolute}.tag.hide.svelte-2g2g8a{opacity:0;pointer-events:none}.tag.hide.svelte-2g2g8a *{pointer-events:none !important}.tag.unClickable.svelte-2g2g8a{pointer-events:none !important}.tag.unClickable.svelte-2g2g8a *{pointer-events:none !important}");
126
197
  }
127
198
  function j(o) {
128
- let t, i, e, r, n, a, b, k, s;
199
+ let t, i, e, r, p, a, b, k, s;
129
200
  const M = [rt, ot], u = [];
130
- function S(p, l) {
201
+ function S(m, l) {
131
202
  return (
132
203
  /*havePoint*/
133
- p[8] ? 0 : 1
204
+ m[8] ? 0 : 1
134
205
  );
135
206
  }
136
207
  i = S(o), e = u[i] = M[i](o);
137
- const m = [pt, nt], c = [];
138
- function y(p, l) {
208
+ const n = [mt, pt], c = [];
209
+ function y(m, l) {
139
210
  return (
140
211
  /*haveContent*/
141
- p[15] ? 0 : 1
212
+ m[15] ? 0 : 1
142
213
  );
143
214
  }
144
- return n = y(o), a = c[n] = m[n](o), {
215
+ return p = y(o), a = c[p] = n[p](o), {
145
216
  c() {
146
217
  t = Z("div"), e.c(), r = X(), a.c(), d(t, "class", "tag svelte-2g2g8a"), d(
147
218
  t,
@@ -180,71 +251,71 @@ function j(o) {
180
251
  o[10]}, 0) scale(${/*screenPosition*/
181
252
  o[7].scale})`);
182
253
  },
183
- m(p, l) {
184
- I(p, t, l), u[i].m(t, null), Y(t, r), c[n].m(t, null), o[17](t), s = !0;
254
+ m(m, l) {
255
+ I(m, t, l), u[i].m(t, null), Y(t, r), c[p].m(t, null), o[17](t), s = !0;
185
256
  },
186
- p(p, l) {
257
+ p(m, l) {
187
258
  let h = i;
188
- i = S(p), i === h ? u[i].p(p, l) : (L(), g(u[h], 1, 1, () => {
259
+ i = S(m), i === h ? u[i].p(m, l) : (L(), g(u[h], 1, 1, () => {
189
260
  u[h] = null;
190
- }), z(), e = u[i], e ? e.p(p, l) : (e = u[i] = M[i](p), e.c()), _(e, 1), e.m(t, r));
191
- let w = n;
192
- n = y(p), n === w ? c[n].p(p, l) : (L(), g(c[w], 1, 1, () => {
261
+ }), z(), e = u[i], e ? e.p(m, l) : (e = u[i] = M[i](m), e.c()), _(e, 1), e.m(t, r));
262
+ let w = p;
263
+ p = y(m), p === w ? c[p].p(m, l) : (L(), g(c[w], 1, 1, () => {
193
264
  c[w] = null;
194
- }), z(), a = c[n], a ? a.p(p, l) : (a = c[n] = m[n](p), a.c()), _(a, 1), a.m(t, null)), (!s || l & /*id*/
265
+ }), z(), a = c[p], a ? a.p(m, l) : (a = c[p] = n[p](m), a.c()), _(a, 1), a.m(t, null)), (!s || l & /*id*/
195
266
  16384) && d(
196
267
  t,
197
268
  "data-tag-id",
198
269
  /*id*/
199
- p[14]
270
+ m[14]
200
271
  ), (!s || l & /*unfolded*/
201
272
  64) && d(
202
273
  t,
203
274
  "data-tag-unfolded",
204
275
  /*unfolded*/
205
- p[6]
276
+ m[6]
206
277
  ), (!s || l & /*tag*/
207
278
  1 && b !== (b = /*tag*/
208
- p[0].contentType)) && d(t, "data-content-type", b), (!s || l & /*id*/
279
+ m[0].contentType)) && d(t, "data-content-type", b), (!s || l & /*id*/
209
280
  16384 && k !== (k = `tag-${/*id*/
210
- p[14]}`)) && d(t, "id", k), (!s || l & /*tag*/
281
+ m[14]}`)) && d(t, "id", k), (!s || l & /*tag*/
211
282
  1) && T(
212
283
  t,
213
284
  "unClickable",
214
285
  /*tag*/
215
- p[0].config.clickable === !1
286
+ m[0].config.clickable === !1
216
287
  ), (!s || l & /*hide*/
217
288
  4096) && T(
218
289
  t,
219
290
  "hide",
220
291
  /*hide*/
221
- p[12]
292
+ m[12]
222
293
  ), (!s || l & /*zIndex*/
223
294
  512) && T(
224
295
  t,
225
296
  "enableZIndex",
226
297
  /*zIndex*/
227
- p[9]
298
+ m[9]
228
299
  ), l & /*zIndex*/
229
300
  512 && C(
230
301
  t,
231
302
  "z-index",
232
303
  /*zIndex*/
233
- p[9]
304
+ m[9]
234
305
  ), l & /*left, top, screenPosition*/
235
306
  3200 && C(t, "transform", `translate3d(${/*left*/
236
- p[11]}, ${/*top*/
237
- p[10]}, 0) scale(${/*screenPosition*/
238
- p[7].scale})`);
307
+ m[11]}, ${/*top*/
308
+ m[10]}, 0) scale(${/*screenPosition*/
309
+ m[7].scale})`);
239
310
  },
240
- i(p) {
311
+ i(m) {
241
312
  s || (_(e), _(a), s = !0);
242
313
  },
243
- o(p) {
314
+ o(m) {
244
315
  g(e), g(a), s = !1;
245
316
  },
246
- d(p) {
247
- p && P(t), u[i].d(), c[n].d(), o[17](null);
317
+ d(m) {
318
+ m && P(t), u[i].d(), c[p].d(), o[17](null);
248
319
  }
249
320
  };
250
321
  }
@@ -278,10 +349,10 @@ function rt(o) {
278
349
  E(t, e, r), i = !0;
279
350
  },
280
351
  p(e, r) {
281
- const n = {};
352
+ const p = {};
282
353
  r & /*tag*/
283
- 1 && (n.tag = /*tag*/
284
- e[0]), t.$set(n);
354
+ 1 && (p.tag = /*tag*/
355
+ e[0]), t.$set(p);
285
356
  },
286
357
  i(e) {
287
358
  i || (_(t.$$.fragment, e), i = !0);
@@ -294,7 +365,7 @@ function rt(o) {
294
365
  }
295
366
  };
296
367
  }
297
- function nt(o) {
368
+ function pt(o) {
298
369
  let t;
299
370
  return {
300
371
  c() {
@@ -311,7 +382,7 @@ function nt(o) {
311
382
  }
312
383
  };
313
384
  }
314
- function pt(o) {
385
+ function mt(o) {
315
386
  let t, i;
316
387
  return t = new $({
317
388
  props: {
@@ -352,22 +423,22 @@ function pt(o) {
352
423
  E(t, e, r), i = !0;
353
424
  },
354
425
  p(e, r) {
355
- const n = {};
426
+ const p = {};
356
427
  r & /*mediaStore*/
357
- 2 && (n.mediaStore = /*mediaStore*/
428
+ 2 && (p.mediaStore = /*mediaStore*/
358
429
  e[1]), r & /*tag*/
359
- 1 && (n.tag = V(
430
+ 1 && (p.tag = V(
360
431
  /*tag*/
361
432
  e[0]
362
433
  )), r & /*state*/
363
- 16 && (n.state = /*state*/
434
+ 16 && (p.state = /*state*/
364
435
  e[4]), r & /*temporaryState*/
365
- 32 && (n.temporaryState = /*temporaryState*/
436
+ 32 && (p.temporaryState = /*temporaryState*/
366
437
  e[5]), r & /*rendererMap*/
367
- 4 && (n.rendererMap = /*rendererMap*/
438
+ 4 && (p.rendererMap = /*rendererMap*/
368
439
  e[2]), r & /*contentTypeMap*/
369
- 8 && (n.contentTypeMap = /*contentTypeMap*/
370
- e[3]), t.$set(n);
440
+ 8 && (p.contentTypeMap = /*contentTypeMap*/
441
+ e[3]), t.$set(p);
371
442
  },
372
443
  i(e) {
373
444
  i || (_(t.$$.fragment, e), i = !0);
@@ -380,7 +451,7 @@ function pt(o) {
380
451
  }
381
452
  };
382
453
  }
383
- function mt(o) {
454
+ function nt(o) {
384
455
  let t, i, e = (
385
456
  /*screenPosition*/
386
457
  o[7] && !/*disable*/
@@ -390,13 +461,13 @@ function mt(o) {
390
461
  c() {
391
462
  e && e.c(), t = U();
392
463
  },
393
- m(r, n) {
394
- e && e.m(r, n), I(r, t, n), i = !0;
464
+ m(r, p) {
465
+ e && e.m(r, p), I(r, t, p), i = !0;
395
466
  },
396
- p(r, [n]) {
467
+ p(r, [p]) {
397
468
  /*screenPosition*/
398
469
  r[7] && !/*disable*/
399
- r[13] ? e ? (e.p(r, n), n & /*screenPosition, disable*/
470
+ r[13] ? e ? (e.p(r, p), p & /*screenPosition, disable*/
400
471
  8320 && _(e, 1)) : (e = j(r), e.c(), _(e, 1), e.m(t.parentNode, t)) : e && (L(), g(e, 1, 1, () => {
401
472
  e = null;
402
473
  }), z());
@@ -413,36 +484,36 @@ function mt(o) {
413
484
  };
414
485
  }
415
486
  function at(o, t, i) {
416
- let e, r, n, a, b, k, s, M, u, S, { tag: m } = t, { mediaStore: c } = t, { rendererMap: y = /* @__PURE__ */ new Map() } = t, { contentTypeMap: p = /* @__PURE__ */ new Map() } = t, { state: l } = t, { temporaryState: h } = t;
487
+ let e, r, p, a, b, k, s, M, u, S, { tag: n } = t, { mediaStore: c } = t, { rendererMap: y = /* @__PURE__ */ new Map() } = t, { contentTypeMap: m = /* @__PURE__ */ new Map() } = t, { state: l } = t, { temporaryState: h } = t;
417
488
  const w = W("hooks");
418
489
  function H(f) {
419
490
  x[f ? "unshift" : "push"](() => {
420
- m.dom = f, i(0, m);
491
+ n.dom = f, i(0, n);
421
492
  });
422
493
  }
423
494
  return o.$$set = (f) => {
424
- "tag" in f && i(0, m = f.tag), "mediaStore" in f && i(1, c = f.mediaStore), "rendererMap" in f && i(2, y = f.rendererMap), "contentTypeMap" in f && i(3, p = f.contentTypeMap), "state" in f && i(4, l = f.state), "temporaryState" in f && i(5, h = f.temporaryState);
495
+ "tag" in f && i(0, n = f.tag), "mediaStore" in f && i(1, c = f.mediaStore), "rendererMap" in f && i(2, y = f.rendererMap), "contentTypeMap" in f && i(3, m = f.contentTypeMap), "state" in f && i(4, l = f.state), "temporaryState" in f && i(5, h = f.temporaryState);
425
496
  }, o.$$.update = () => {
426
497
  var f, q, A, D;
427
498
  o.$$.dirty & /*tag, rendererMap*/
428
499
  5 && i(8, e = (() => {
429
500
  var F, N, R;
430
- return !(((N = (F = m.style) == null ? void 0 : F.point) == null ? void 0 : N.enabled) === !1 || ((R = y.get(m.contentType)) == null ? void 0 : R.usePoint) === !1 || m.contentType === "Sticker" || m.contentType === "Link" || m.contentType === "VRLink" || m.contentType === "PanoLink" || m.contentType === "Panorama" || m.contentType === "Audio" && m.data.appearance === "plane");
501
+ return !(((N = (F = n.style) == null ? void 0 : F.point) == null ? void 0 : N.enabled) === !1 || ((R = y.get(n.contentType)) == null ? void 0 : R.usePoint) === !1 || n.contentType === "Sticker" || n.contentType === "Link" || n.contentType === "VRLink" || n.contentType === "PanoLink" || n.contentType === "Panorama" || n.contentType === "Audio" && n.data.appearance === "plane");
431
502
  })()), o.$$.dirty & /*tag, havePoint*/
432
- 257 && i(15, r = (() => !(m.stickType !== "2DPoint" || m.entryFromModel && et(m.five.state.mode) && e))()), o.$$.dirty & /*tag*/
433
- 1 && i(14, n = m.id), o.$$.dirty & /*tag*/
434
- 1 && i(7, a = m.screenPosition), o.$$.dirty & /*tag*/
435
- 1 && i(13, b = m.enabled === !1 || !m.state), o.$$.dirty & /*tag, screenPosition*/
436
- 129 && i(12, k = !((f = m.state) != null && f.visible) || ((q = m.temporaryState) == null ? void 0 : q.visible) === !1 || !a), o.$$.dirty & /*tag*/
437
- 1 && i(6, s = (A = m.state) == null ? void 0 : A.unfolded), o.$$.dirty & /*screenPosition*/
503
+ 257 && i(15, r = (() => !(n.stickType !== "2DPoint" || n.entryFromModel && et(n.five.state.mode) && e))()), o.$$.dirty & /*tag*/
504
+ 1 && i(14, p = n.id), o.$$.dirty & /*tag*/
505
+ 1 && i(7, a = n.screenPosition), o.$$.dirty & /*tag*/
506
+ 1 && i(13, b = n.enabled === !1 || !n.state), o.$$.dirty & /*tag, screenPosition*/
507
+ 129 && i(12, k = !((f = n.state) != null && f.visible) || ((q = n.temporaryState) == null ? void 0 : q.visible) === !1 || !a), o.$$.dirty & /*tag*/
508
+ 1 && i(6, s = (A = n.state) == null ? void 0 : A.unfolded), o.$$.dirty & /*screenPosition*/
438
509
  128 && i(11, M = (a == null ? void 0 : a.leftPx) + "px"), o.$$.dirty & /*screenPosition*/
439
510
  128 && i(10, u = (a == null ? void 0 : a.topPx) + "px"), o.$$.dirty & /*unfolded, tag*/
440
- 65 && i(9, S = s ? ((D = m.zIndex) != null ? D : 0) + (s ? 1e6 : 0) : void 0);
511
+ 65 && i(9, S = s ? ((D = n.zIndex) != null ? D : 0) + (s ? 1e6 : 0) : void 0);
441
512
  }, [
442
- m,
513
+ n,
443
514
  c,
444
515
  y,
445
- p,
516
+ m,
446
517
  l,
447
518
  h,
448
519
  s,
@@ -453,19 +524,19 @@ function at(o, t, i) {
453
524
  M,
454
525
  k,
455
526
  b,
456
- n,
527
+ p,
457
528
  r,
458
529
  w,
459
530
  H
460
531
  ];
461
532
  }
462
- class Si extends J {
533
+ class Go extends J {
463
534
  constructor(t) {
464
535
  super(), K(
465
536
  this,
466
537
  t,
467
538
  at,
468
- mt,
539
+ nt,
469
540
  O,
470
541
  {
471
542
  tag: 0,
@@ -480,5 +551,5 @@ class Si extends J {
480
551
  }
481
552
  }
482
553
  export {
483
- Si as default
554
+ Go as default
484
555
  };