@realsee/dnalogel 3.47.13 → 3.47.15

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 (101) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/PanoTagPlugin/utils/requestIdleCallback.d.ts +1 -1
  3. package/dist/Sculpt/Meshes/Line.d.ts +1 -0
  4. package/dist/Sculpt/Meshes/Polygon.d.ts +2 -1
  5. package/dist/index.cjs.js +53 -53
  6. package/dist/index.js +18650 -18640
  7. package/dist/index.umd.js +47 -47
  8. package/libs/AreaMakerPlugin/Controller.js +78 -150
  9. package/libs/AreaMakerPlugin/index.js +3 -75
  10. package/libs/AreaMakerPlugin/utils/Item.js +111 -185
  11. package/libs/CSS3DRenderPlugin/Controller.js +29 -86
  12. package/libs/CSS3DRenderPlugin/index.js +12 -69
  13. package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +58 -127
  14. package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +113 -174
  15. package/libs/CruisePlugin/BaseController.js +50 -122
  16. package/libs/CruisePlugin/Move.js +21 -74
  17. package/libs/CruisePlugin/Work.js +46 -99
  18. package/libs/CruisePlugin/index.js +26 -79
  19. package/libs/CurrentPanoImagePlugin/Controller.js +104 -176
  20. package/libs/CurrentPanoImagePlugin/index.js +4 -76
  21. package/libs/GuideLinePlugin/Controller.js +26 -79
  22. package/libs/GuideLinePlugin/GuideLineItem.js +24 -77
  23. package/libs/GuideLinePlugin/GuideLineModeItem/index.js +2 -3
  24. package/libs/GuideLinePlugin/GuideLineModeItem.js +22 -75
  25. package/libs/GuideLinePlugin/index.js +26 -79
  26. package/libs/ModelMakerPlugin/Controller.js +83 -139
  27. package/libs/ModelMakerPlugin/index.js +16 -72
  28. package/libs/ModelTVVideoPlugin/Plugin.js +48 -105
  29. package/libs/ModelTVVideoPlugin/index.js +7 -64
  30. package/libs/Object3DHelperPlugin/Controller.js +32 -56
  31. package/libs/Object3DHelperPlugin/index.js +12 -35
  32. package/libs/PanoCompassPlugin/Controller.js +37 -93
  33. package/libs/PanoCompassPlugin/index.js +11 -67
  34. package/libs/PanoDoorLabelPlugin/BaseController.js +25 -97
  35. package/libs/PanoDoorLabelPlugin/Controller.js +115 -187
  36. package/libs/PanoDoorLabelPlugin/index.js +4 -76
  37. package/libs/PanoMeasurePlugin/Components/Controller0.js +83 -128
  38. package/libs/PanoMeasurePlugin/Components/Controller1.js +96 -141
  39. package/libs/PanoMeasurePlugin/Controller/EditController.js +66 -111
  40. package/libs/PanoMeasurePlugin/Controller/WatchController.js +51 -121
  41. package/libs/PanoMeasurePlugin/Controller/index.js +59 -101
  42. package/libs/PanoMeasurePlugin/Model/area.js +21 -91
  43. package/libs/PanoMeasurePlugin/Modules/Magnifier.js +0 -73
  44. package/libs/PanoMeasurePlugin/Modules/UIController/index.js +27 -72
  45. package/libs/PanoMeasurePlugin/index.js +25 -67
  46. package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +17 -89
  47. package/libs/PanoSpatialTagPlugin/Plugin.js +106 -163
  48. package/libs/PanoSpatialTagPlugin/index.js +5 -62
  49. package/libs/PanoTagPlugin/Components/Common/TagPoint.js +67 -141
  50. package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +208 -281
  51. package/libs/PanoTagPlugin/Components/Tag/index.js +180 -251
  52. package/libs/PanoTagPlugin/Components/TagContainer.js +80 -151
  53. package/libs/PanoTagPlugin/Components/TagItem.js +67 -138
  54. package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +61 -132
  55. package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +28 -99
  56. package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +30 -101
  57. package/libs/PanoTagPlugin/controller/Tag/PointTag.js +36 -107
  58. package/libs/PanoTagPlugin/controller/TagRender.js +68 -121
  59. package/libs/PanoTagPlugin/controller/TagUtil.js +79 -132
  60. package/libs/PanoTagPlugin/controller/index.js +55 -108
  61. package/libs/PanoTagPlugin/index.js +31 -84
  62. package/libs/PanoTagPlugin/utils/requestIdleCallback.d.ts +1 -1
  63. package/libs/PanoTagPlugin/utils/requestIdleCallback.js +5 -13
  64. package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +30 -104
  65. package/libs/PanoVideoPlugin/Controller.js +64 -136
  66. package/libs/PanoVideoPlugin/VideoMeshController.js +74 -148
  67. package/libs/PanoVideoPlugin/index.js +8 -80
  68. package/libs/PipelinePlugin/Controller.js +128 -199
  69. package/libs/PipelinePlugin/index.js +5 -76
  70. package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +17 -91
  71. package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +14 -88
  72. package/libs/PipelinePlugin/utils/Objects/Pipe.js +56 -130
  73. package/libs/Sculpt/Meshes/Box.js +5 -6
  74. package/libs/Sculpt/Meshes/Cylinder.js +2 -3
  75. package/libs/Sculpt/Meshes/Line.d.ts +1 -0
  76. package/libs/Sculpt/Meshes/Line.js +50 -41
  77. package/libs/Sculpt/Meshes/Point.js +9 -10
  78. package/libs/Sculpt/Meshes/Polygon.d.ts +2 -1
  79. package/libs/Sculpt/Meshes/Polygon.js +47 -37
  80. package/libs/Sculpt/Meshes/Polyline.js +18 -16
  81. package/libs/Sculpt/Meshes/Rectangle.js +3 -4
  82. package/libs/Sculpt/Objects/Line/Editor.js +2 -3
  83. package/libs/Sculpt/Objects/Rectangle/index.js +1 -1
  84. package/libs/Sculpt/utils/removeAllTag.js +4 -4
  85. package/libs/Sculpt/utils/three/ColoredMesh.js +3 -4
  86. package/libs/base/BasePlugin.js +3 -4
  87. package/libs/floorplan/MapviewFloorplanPlugin/Controller.js +59 -128
  88. package/libs/floorplan/MapviewFloorplanPlugin/index.js +6 -75
  89. package/libs/floorplan/ModelFloorplanPlugin/Controller.js +59 -129
  90. package/libs/floorplan/ModelFloorplanPlugin/index.js +5 -75
  91. package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +62 -134
  92. package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +4 -76
  93. package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +81 -151
  94. package/libs/floorplan/TopviewFloorplanPlugin/index.js +5 -75
  95. package/libs/floorplan/index.js +0 -1
  96. package/libs/index.js +62 -62
  97. package/libs/shared-utils/five/index.js +2 -3
  98. package/libs/shared-utils/five/lookObject.js +17 -18
  99. package/libs/shared-utils/logger.js +1 -1
  100. package/libs/shared-utils/three/index.js +0 -1
  101. package/package.json +1 -1
@@ -71,81 +71,8 @@ import "../../shared-utils/Subscribe.js";
71
71
  import "../../shared-utils/Utils/WorkUtil.js";
72
72
  import "../../shared-utils/five/transformPosition.js";
73
73
  import "../../shared-utils/three/temp.js";
74
- import "../../Sculpt/utils/Modules/Global.js";
75
- import "../../Sculpt/utils/Modules/Cursor.js";
76
- import "../../Object3DHelperPlugin/Controller.js";
77
- import "../../base/BasePlugin.js";
78
74
  import "../../shared-utils/three/THREESphere.js";
79
- import "../../shared-utils/url/absoluteUrl.js";
80
75
  import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
81
- import "../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
82
- import "../../shared-utils/Object3DHelper/Base/BaseHelper.js";
83
- import "../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
84
- import "../../shared-utils/three/IObject3D.js";
85
- import "../../shared-utils/three/boundingBox.js";
86
- import "../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
87
- import "../../shared-utils/Object3DHelper/utils/direction.js";
88
- import "../../shared-utils/Object3DHelper/Constants/color.js";
89
- import "../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
90
- import "../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
91
- import "../../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
92
- import "../../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
93
- import "../../CSS3DRenderPlugin/utils/createResizeObserver.js";
94
- import "../../CSS3DRenderPlugin/utils/even.js";
95
- import "../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
96
- import "../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
97
- import "../../shared-utils/three/centerPoint.js";
98
- import "../../shared-utils/three/getObjectVisible.js";
99
- import "../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
100
- import "../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
101
- import "../../shared-utils/util.js";
102
- import "../../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
103
- import "../../shared-utils/Object3DHelper/Helper/RotateHelper.js";
104
- import "../../shared-utils/Object3DHelper/Helper/HTML/tipsDom.js";
105
- import "../../shared-utils/Object3DHelper/Helper/HTML/utils/createElement.js";
106
- import "../../shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js";
107
- import "../../shared-utils/Object3DHelper/Helper/HTML/rectangleScaleDom.js";
108
- import "../../shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
109
- import "../../shared-utils/Object3DHelper/Controller/MoveController.js";
110
- import "../../shared-utils/Object3DHelper/Base/BaseController.js";
111
- import "../../shared-utils/threex/domevents/index.js";
112
- import "../../shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
113
- import "../../shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
114
- import "../../Sculpt/utils/three/rayOnLine.js";
115
- import "../../Object3DHelperPlugin/FiveControllerWrapper.js";
116
- import "../../shared-utils/Object3DHelper/index.js";
117
- import "../../shared-utils/Object3DHelper/Controller/RotateController.js";
118
- import "../../shared-utils/math/rad2Deg.js";
119
- import "../../shared-utils/math/deg2Rad.js";
120
- import "../../shared-utils/Object3DHelper/Controller/CSS3DScaleController.js";
121
- import "../../shared-utils/Object3DHelper/Controller/RectangleScaleController.js";
122
- import "../../shared-utils/Object3DHelper/utils/vectorIsEqual.js";
123
- import "../../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
124
- import "../../shared-utils/Object3DHelper/Controller/BoundingBoxController.js";
125
- import "../../shared-utils/Object3DHelper/Helper/ScaleHelper.js";
126
- import "../../shared-utils/Object3DHelper/Controller/ScaleController.js";
127
- import "../../shared-utils/five/fiveModelLoad.js";
128
- import "../../shared-utils/five/FiveDomEvents.js";
129
- import "../../shared-utils/five/calculateThreeMouse.js";
130
- import "../../shared-utils/three/THREERaycaster.js";
131
- import "../../shared-utils/three/PointSelector/index.js";
132
- import "../../shared-utils/three/PointSelector/utils/PointSelectorHelper.js";
133
- import "../../shared-utils/three/Magnifier.js";
134
- import "../../shared-utils/three/PointSelector/utils/PointHelper.js";
135
- import "../../shared-utils/three/Assets/index.js";
136
- import "../../shared-utils/three/PointSelector/utils/html.js";
137
- import "../../shared-utils/five/initialCSS3DRender.js";
138
- import "../../shared-utils/three/PointSelector/utils/PointHelper2.js";
139
- import "../../Sculpt/Meshes/Line.js";
140
- import "../../Sculpt/typings/style.js";
141
- import "../../shared-utils/five/FiveLine.js";
142
- import "../../Sculpt/utils/removeAllTag.js";
143
- import "../../Sculpt/utils/Meshes/getLengthHTML.js";
144
- import "../../shared-utils/three/applyObjectMatrixWorld.js";
145
- import "../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
146
- import "../../shared-utils/isTouchDevice.js";
147
- import "../../shared-utils/five/getPosition.js";
148
- import "../../shared-utils/five/getRaycasterByNdcPosition.js";
149
76
  import "../utils/noTypecheck.js";
150
77
  import "./Tag/AudioTag/index.js";
151
78
  import "./Tag/AudioTag/AudioTag.js";
@@ -167,6 +94,7 @@ import "@realsee/five/gltf-loader";
167
94
  import "../utils/planeNormal.js";
168
95
  import "../utils/tag/tagCheck.js";
169
96
  import "../utils/model/mediaPlane.js";
97
+ import "../../shared-utils/three/centerPoint.js";
170
98
  import "../../shared-utils/three/loadTexture.js";
171
99
  import "../../shared-utils/three/Quadrangle.js";
172
100
  import "../../shared-utils/math/pointsIsRectangle.js";
@@ -184,6 +112,7 @@ import "../typings/tag/TagConfig.js";
184
112
  import "@realsee/five";
185
113
  import "../../shared-utils/five/mode.js";
186
114
  import "../utils/tag/format.js";
115
+ import "../../shared-utils/util.js";
187
116
  import "../../shared-utils/three/blink.js";
188
117
  import "../../shared-utils/vectorToCoordinate.js";
189
118
  import "../../shared-utils/formatRad.js";
@@ -199,83 +128,83 @@ import "./Common/TagPoint.js";
199
128
  function K(a) {
200
129
  q(a, "svelte-1owzhnq", ".tag--container.svelte-1owzhnq{box-sizing:border-box;position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;opacity:1;-webkit-user-select:none;-moz-user-select:none;user-select:none;transform:translate3d(0, 0, 0);transition:opacity 0.2s linear}.tag--container.hide.svelte-1owzhnq{opacity:0;pointer-events:none}.tag--container.hide.svelte-1owzhnq *{pointer-events:none !important}");
201
130
  }
202
- function k(a, t, o) {
203
- const i = a.slice();
204
- return i[8] = t[o], i;
131
+ function k(a, t, i) {
132
+ const e = a.slice();
133
+ return e[8] = t[i], e;
205
134
  }
206
135
  function b(a) {
207
- let t, o = [], i = /* @__PURE__ */ new Map(), m, e, n = (
136
+ let t, i = [], e = /* @__PURE__ */ new Map(), m, r, p = (
208
137
  /*tags*/
209
138
  a[0]
210
139
  );
211
- const f = (p) => (
140
+ const f = (n) => (
212
141
  /*tag*/
213
- p[8].id
142
+ n[8].id
214
143
  );
215
- for (let p = 0; p < n.length; p += 1) {
216
- let r = k(a, n, p), s = f(r);
217
- i.set(s, o[p] = y(s, r));
144
+ for (let n = 0; n < p.length; n += 1) {
145
+ let o = k(a, p, n), s = f(o);
146
+ e.set(s, i[n] = y(s, o));
218
147
  }
219
148
  return {
220
149
  c() {
221
- var p;
150
+ var n;
222
151
  t = C("div");
223
- for (let r = 0; r < o.length; r += 1)
224
- o[r].c();
152
+ for (let o = 0; o < i.length; o += 1)
153
+ i[o].c();
225
154
  N(t, "class", "tag--container svelte-1owzhnq"), h(t, "hide", !/*state*/
226
155
  a[4].visible || !/*temporaryState*/
227
156
  a[5].visible), g(
228
157
  t,
229
158
  "z-index",
230
159
  /*zIndex*/
231
- (p = a[6]) != null ? p : ""
160
+ (n = a[6]) != null ? n : ""
232
161
  );
233
162
  },
234
- m(p, r) {
235
- _(p, t, r);
236
- for (let s = 0; s < o.length; s += 1)
237
- o[s] && o[s].m(t, null);
238
- e = !0;
163
+ m(n, o) {
164
+ _(n, t, o);
165
+ for (let s = 0; s < i.length; s += 1)
166
+ i[s] && i[s].m(t, null);
167
+ r = !0;
239
168
  },
240
- p(p, r) {
169
+ p(n, o) {
241
170
  var s;
242
- r & /*state, temporaryState, tags, mediaStore, rendererMap, contentTypeMap*/
243
- 63 && (n = /*tags*/
244
- p[0], S(), o = j(o, r, f, 1, p, n, i, t, A, y, null, k), M()), (!e || r & /*state, temporaryState*/
171
+ o & /*state, temporaryState, tags, mediaStore, rendererMap, contentTypeMap*/
172
+ 63 && (p = /*tags*/
173
+ n[0], S(), i = j(i, o, f, 1, n, p, e, t, A, y, null, k), M()), (!r || o & /*state, temporaryState*/
245
174
  48) && h(t, "hide", !/*state*/
246
- p[4].visible || !/*temporaryState*/
247
- p[5].visible), r & /*zIndex*/
175
+ n[4].visible || !/*temporaryState*/
176
+ n[5].visible), o & /*zIndex*/
248
177
  64 && g(
249
178
  t,
250
179
  "z-index",
251
180
  /*zIndex*/
252
- (s = p[6]) != null ? s : ""
181
+ (s = n[6]) != null ? s : ""
253
182
  );
254
183
  },
255
- i(p) {
256
- if (!e) {
257
- for (let r = 0; r < n.length; r += 1)
258
- c(o[r]);
184
+ i(n) {
185
+ if (!r) {
186
+ for (let o = 0; o < p.length; o += 1)
187
+ c(i[o]);
259
188
  m || B(() => {
260
189
  m = D(t, J, {}), m.start();
261
- }), e = !0;
190
+ }), r = !0;
262
191
  }
263
192
  },
264
- o(p) {
265
- for (let r = 0; r < o.length; r += 1)
266
- u(o[r]);
267
- e = !1;
193
+ o(n) {
194
+ for (let o = 0; o < i.length; o += 1)
195
+ u(i[o]);
196
+ r = !1;
268
197
  },
269
- d(p) {
270
- p && d(t);
271
- for (let r = 0; r < o.length; r += 1)
272
- o[r].d();
198
+ d(n) {
199
+ n && d(t);
200
+ for (let o = 0; o < i.length; o += 1)
201
+ i[o].d();
273
202
  }
274
203
  };
275
204
  }
276
205
  function y(a, t) {
277
- let o, i, m;
278
- return i = new H({
206
+ let i, e, m;
207
+ return e = new H({
279
208
  props: {
280
209
  state: (
281
210
  /*state*/
@@ -306,85 +235,85 @@ function y(a, t) {
306
235
  key: a,
307
236
  first: null,
308
237
  c() {
309
- o = z(), E(i.$$.fragment), this.first = o;
238
+ i = z(), E(e.$$.fragment), this.first = i;
310
239
  },
311
- m(e, n) {
312
- _(e, o, n), F(i, e, n), m = !0;
240
+ m(r, p) {
241
+ _(r, i, p), F(e, r, p), m = !0;
313
242
  },
314
- p(e, n) {
315
- t = e;
243
+ p(r, p) {
244
+ t = r;
316
245
  const f = {};
317
- n & /*state*/
246
+ p & /*state*/
318
247
  16 && (f.state = /*state*/
319
- t[4]), n & /*temporaryState*/
248
+ t[4]), p & /*temporaryState*/
320
249
  32 && (f.temporaryState = /*temporaryState*/
321
- t[5]), n & /*tags*/
250
+ t[5]), p & /*tags*/
322
251
  1 && (f.tag = /*tag*/
323
- t[8]), n & /*mediaStore*/
252
+ t[8]), p & /*mediaStore*/
324
253
  2 && (f.mediaStore = /*mediaStore*/
325
- t[1]), n & /*rendererMap*/
254
+ t[1]), p & /*rendererMap*/
326
255
  4 && (f.rendererMap = /*rendererMap*/
327
- t[2]), n & /*contentTypeMap*/
256
+ t[2]), p & /*contentTypeMap*/
328
257
  8 && (f.contentTypeMap = /*contentTypeMap*/
329
- t[3]), i.$set(f);
258
+ t[3]), e.$set(f);
330
259
  },
331
- i(e) {
332
- m || (c(i.$$.fragment, e), m = !0);
260
+ i(r) {
261
+ m || (c(e.$$.fragment, r), m = !0);
333
262
  },
334
- o(e) {
335
- u(i.$$.fragment, e), m = !1;
263
+ o(r) {
264
+ u(e.$$.fragment, r), m = !1;
336
265
  },
337
- d(e) {
338
- e && d(o), G(i, e);
266
+ d(r) {
267
+ r && d(i), G(e, r);
339
268
  }
340
269
  };
341
270
  }
342
271
  function L(a) {
343
- let t, o, i = (
272
+ let t, i, e = (
344
273
  /*state*/
345
274
  a[4].enabled && b(a)
346
275
  );
347
276
  return {
348
277
  c() {
349
- i && i.c(), t = z();
278
+ e && e.c(), t = z();
350
279
  },
351
- m(m, e) {
352
- i && i.m(m, e), _(m, t, e), o = !0;
280
+ m(m, r) {
281
+ e && e.m(m, r), _(m, t, r), i = !0;
353
282
  },
354
- p(m, [e]) {
283
+ p(m, [r]) {
355
284
  /*state*/
356
- m[4].enabled ? i ? (i.p(m, e), e & /*state*/
357
- 16 && c(i, 1)) : (i = b(m), i.c(), c(i, 1), i.m(t.parentNode, t)) : i && (S(), u(i, 1, 1, () => {
358
- i = null;
285
+ m[4].enabled ? e ? (e.p(m, r), r & /*state*/
286
+ 16 && c(e, 1)) : (e = b(m), e.c(), c(e, 1), e.m(t.parentNode, t)) : e && (S(), u(e, 1, 1, () => {
287
+ e = null;
359
288
  }), M());
360
289
  },
361
290
  i(m) {
362
- o || (c(i), o = !0);
291
+ i || (c(e), i = !0);
363
292
  },
364
293
  o(m) {
365
- u(i), o = !1;
294
+ u(e), i = !1;
366
295
  },
367
296
  d(m) {
368
- i && i.d(m), m && d(t);
297
+ e && e.d(m), m && d(t);
369
298
  }
370
299
  };
371
300
  }
372
- function O(a, t, o) {
373
- let { tags: i = [] } = t, { hooks: m } = t, { mediaStore: e } = t, { rendererMap: n } = t, { contentTypeMap: f } = t, { state: p } = t, { temporaryState: r } = t, { zIndex: s = void 0 } = t;
301
+ function O(a, t, i) {
302
+ let { tags: e = [] } = t, { hooks: m } = t, { mediaStore: r } = t, { rendererMap: p } = t, { contentTypeMap: f } = t, { state: n } = t, { temporaryState: o } = t, { zIndex: s = void 0 } = t;
374
303
  return I("hooks", m), a.$$set = (l) => {
375
- "tags" in l && o(0, i = l.tags), "hooks" in l && o(7, m = l.hooks), "mediaStore" in l && o(1, e = l.mediaStore), "rendererMap" in l && o(2, n = l.rendererMap), "contentTypeMap" in l && o(3, f = l.contentTypeMap), "state" in l && o(4, p = l.state), "temporaryState" in l && o(5, r = l.temporaryState), "zIndex" in l && o(6, s = l.zIndex);
304
+ "tags" in l && i(0, e = l.tags), "hooks" in l && i(7, m = l.hooks), "mediaStore" in l && i(1, r = l.mediaStore), "rendererMap" in l && i(2, p = l.rendererMap), "contentTypeMap" in l && i(3, f = l.contentTypeMap), "state" in l && i(4, n = l.state), "temporaryState" in l && i(5, o = l.temporaryState), "zIndex" in l && i(6, s = l.zIndex);
376
305
  }, [
377
- i,
378
306
  e,
379
- n,
380
- f,
381
- p,
382
307
  r,
308
+ p,
309
+ f,
310
+ n,
311
+ o,
383
312
  s,
384
313
  m
385
314
  ];
386
315
  }
387
- class Tr extends v {
316
+ class ai extends v {
388
317
  constructor(t) {
389
318
  super(), w(
390
319
  this,
@@ -407,5 +336,5 @@ class Tr extends v {
407
336
  }
408
337
  }
409
338
  export {
410
- Tr as default
339
+ ai as default
411
340
  };