@realsee/dnalogel 3.44.5 → 3.46.0

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