@realsee/dnalogel 3.79.0-alpha.0 → 3.79.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 (64) hide show
  1. package/CHANGELOG.md +836 -832
  2. package/dist/GuideLinePlugin/Controller.d.ts +34 -2
  3. package/dist/GuideLinePlugin/GuideLineModeItem.d.ts +7 -2
  4. package/dist/PanoTagPlugin/Components/Common/Arrow.svelte.d.ts +1 -0
  5. package/dist/PanoTagPlugin/Components/Common/Line/Polyline.svelte.d.ts +1 -0
  6. package/dist/PanoTagPlugin/Components/Common/Line/Straight.svelte.d.ts +1 -0
  7. package/dist/PanoTagPlugin/Components/Common/Text/FlyMText.svelte.d.ts +1 -0
  8. package/dist/PanoTagPlugin/Components/Common/Text/FlyText.svelte.d.ts +1 -0
  9. package/dist/PanoTagPlugin/Components/Tag/AudioTag/AudioTag.svelte.d.ts +1 -0
  10. package/dist/PanoTagPlugin/Components/Tag/ImageTextTag.svelte.d.ts +1 -0
  11. package/dist/PanoTagPlugin/Components/Tag/TextTag/TextPlaneTag.svelte.d.ts +1 -0
  12. package/dist/PanoTagPlugin/Components/Tag/TextTag/TextTag.svelte.d.ts +1 -0
  13. package/dist/PanoTagPlugin/Components/Tag/TextTag/index.svelte.d.ts +1 -0
  14. package/dist/PanoTagPlugin/typings/tag/TagConfig.d.ts +0 -6
  15. package/dist/PanoTagPlugin/typings/tag/TagData.d.ts +3 -2
  16. package/dist/PanoTagPlugin/utils/constants.d.ts +3 -0
  17. package/dist/PanoTagPlugin/utils/doUtil.d.ts +1 -0
  18. package/dist/index.cjs.js +102 -97
  19. package/dist/index.js +16608 -14563
  20. package/dist/index.umd.js +95 -90
  21. package/libs/CruisePlugin/Move.js +27 -14
  22. package/libs/CruisePlugin/Work.js +74 -61
  23. package/libs/CruisePlugin/index.js +31 -18
  24. package/libs/GuideLinePlugin/Components/Tag.js +151 -163
  25. package/libs/GuideLinePlugin/Controller.d.ts +34 -2
  26. package/libs/GuideLinePlugin/Controller.js +85 -38
  27. package/libs/GuideLinePlugin/GuideLineItem.js +27 -14
  28. package/libs/GuideLinePlugin/GuideLineModeItem/index.js +76 -69
  29. package/libs/GuideLinePlugin/GuideLineModeItem.d.ts +7 -2
  30. package/libs/GuideLinePlugin/GuideLineModeItem.js +27 -14
  31. package/libs/GuideLinePlugin/index.js +31 -18
  32. package/libs/PanoTagPlugin/Components/Common/TagPopover/PopoverContent.js +77 -87
  33. package/libs/PanoTagPlugin/Components/Common/TagPopover/TagPopoverToolBar.js +135 -189
  34. package/libs/PanoTagPlugin/Components/Common/TagPopover/TagPopup.js +432 -460
  35. package/libs/PanoTagPlugin/Components/Common/Text/FlyMText.js +198 -0
  36. package/libs/PanoTagPlugin/Components/Common/Text/FlyMText.svelte.d.ts +1 -0
  37. package/libs/PanoTagPlugin/Components/Common/Text/FlyText.js +258 -0
  38. package/libs/PanoTagPlugin/Components/Common/Text/FlyText.svelte.d.ts +1 -0
  39. package/libs/PanoTagPlugin/Components/Tag/AudioTag/AudioTag.js +358 -0
  40. package/libs/PanoTagPlugin/Components/Tag/AudioTag/AudioTag.svelte.d.ts +1 -0
  41. package/libs/PanoTagPlugin/Components/Tag/AudioTag/index.js +126 -38
  42. package/libs/PanoTagPlugin/Components/Tag/ImageTextTag.js +259 -0
  43. package/libs/PanoTagPlugin/Components/Tag/ImageTextTag.svelte.d.ts +1 -0
  44. package/libs/PanoTagPlugin/Components/Tag/TextTag/TextPlaneTag.js +216 -0
  45. package/libs/PanoTagPlugin/Components/Tag/TextTag/TextPlaneTag.svelte.d.ts +1 -0
  46. package/libs/PanoTagPlugin/Components/Tag/TextTag/TextTag.js +219 -0
  47. package/libs/PanoTagPlugin/Components/Tag/TextTag/TextTag.svelte.d.ts +1 -0
  48. package/libs/PanoTagPlugin/Components/Tag/TextTag/index.js +134 -0
  49. package/libs/PanoTagPlugin/Components/Tag/TextTag/index.svelte.d.ts +1 -0
  50. package/libs/PanoTagPlugin/Components/Tag/index.js +393 -292
  51. package/libs/PanoTagPlugin/Components/TagContainer.js +135 -125
  52. package/libs/PanoTagPlugin/Components/TagItem.js +322 -319
  53. package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +74 -61
  54. package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +108 -95
  55. package/libs/PanoTagPlugin/controller/index.js +54 -41
  56. package/libs/PanoTagPlugin/index.js +36 -23
  57. package/libs/PanoTagPlugin/tag.config.js +1 -31
  58. package/libs/PanoTagPlugin/typings/tag/TagConfig.d.ts +0 -6
  59. package/libs/PanoTagPlugin/typings/tag/TagData.d.ts +3 -2
  60. package/libs/base/BasePlugin.js +5 -5
  61. package/libs/index.js +182 -169
  62. package/libs/shared-utils/logger.js +1 -1
  63. package/libs/vendor/svelte/internal/index.js +225 -235
  64. package/package.json +2 -1
@@ -1,13 +1,66 @@
1
- import { SvelteComponent as Z, init as j, safe_not_equal as A, append_styles as B, empty as q, insert as b, transition_in as d, transition_out as c, check_outros as E, detach as v, setContext as h, onMount as D, element as F, attr as g, toggle_class as w, set_style as _, group_outros as N, update_keyed_each as G, outro_and_destroy_block as H, add_render_callback as J, create_in_transition as K, create_component as L, mount_component as Q, destroy_component as R, binding_callbacks as U } from "../../vendor/svelte/internal/index.js";
2
- import { writable as V } from "../../vendor/svelte/store/index.js";
3
- import W from "./TagItem.js";
4
- import { fade as X } from "../../vendor/svelte/transition/index.js";
5
- import { getOrCreatePopoverContainer as Y } from "../utils/popoverContainer.js";
1
+ import { SvelteComponent as P, init as Z, safe_not_equal as j, append_styles as A, empty as q, insert as g, transition_in as d, transition_out as c, check_outros as E, detach as b, setContext as z, onMount as B, element as D, attr as h, toggle_class as C, set_style as _, group_outros as N, update_keyed_each as F, outro_and_destroy_block as G, add_render_callback as H, create_in_transition as J, create_component as K, mount_component as L, destroy_component as Q, binding_callbacks as R } from "../../vendor/svelte/internal/index.js";
2
+ import U from "./TagItem.js";
3
+ import { fade as V } from "../../vendor/svelte/transition/index.js";
4
+ import { getOrCreatePopoverContainer as W } from "../utils/popoverContainer.js";
6
5
  import "./Tag/index.js";
6
+ import "./Tag/TextTag/index.js";
7
+ import "./Tag/TextTag/TextTag.js";
8
+ import "./Common/Line/Straight.js";
9
+ import "../../shared-utils/uuid.js";
10
+ import "../../vendor/svelte/easing/index.js";
11
+ import "./Common/Shadow.js";
12
+ import "./Common/Text/FlyMText.js";
13
+ import "./Common/Text/FlyText.js";
14
+ import "../../vendor/animejs/lib/anime.es.js";
15
+ import "../../shared-utils/isNil.js";
16
+ import "three";
17
+ import "../utils/search.js";
18
+ import "../utils/constants.js";
19
+ import "./Common/Arrow.js";
20
+ import "../Assets/Icon.js";
21
+ import "../utils/doUtil.js";
22
+ import "../../shared-utils/svelte/resizeObserver.js";
23
+ import "../../vendor/resize-observer-polyfill/dist/ResizeObserver.es.js";
24
+ import "./Tag/TextTag/TextPlaneTag.js";
25
+ import "./Common/Text/MText.js";
26
+ import "../utils/px2rem.js";
27
+ import "./Tag/ImageTextTag.js";
28
+ import "./Common/Line/Polyline.js";
29
+ import "./Common/Media.js";
30
+ import "../../vendor/svelte-carousel/src/components/Carousel/Carousel.js";
31
+ import "../../vendor/svelte-carousel/src/components/Dots/Dots.js";
32
+ import "../../vendor/svelte-carousel/src/components/Dot/Dot.js";
33
+ import "../../vendor/svelte-carousel/src/components/Arrow/Arrow.js";
34
+ import "../../vendor/svelte-carousel/src/direction.js";
35
+ import "../../vendor/svelte-carousel/src/components/Progress/Progress.js";
36
+ import "../../vendor/svelte-carousel/src/actions/swipeable/swipeable.js";
37
+ import "../../vendor/svelte-carousel/src/actions/swipeable/event.js";
38
+ import "../../vendor/svelte-carousel/src/utils/event.js";
39
+ import "../../vendor/svelte-carousel/src/units.js";
40
+ import "../../vendor/svelte-carousel/src/actions/hoverable/hoverable.js";
41
+ import "../../vendor/svelte-carousel/src/actions/hoverable/event.js";
42
+ import "../../vendor/svelte-carousel/src/actions/tappable/tappable.js";
43
+ import "../../vendor/svelte-carousel/src/utils/math.js";
44
+ import "../../vendor/svelte-carousel/src/actions/tappable/event.js";
45
+ import "../../vendor/svelte-carousel/src/utils/page.js";
46
+ import "../../vendor/svelte-carousel/src/utils/clones.js";
47
+ import "../../vendor/svelte-carousel/src/utils/object.js";
48
+ import "../../vendor/svelte-carousel/src/components/Carousel/createCarousel.js";
49
+ import "../../vendor/easy-reactive/src/simply-reactive.js";
50
+ import "../../vendor/lodash.get/index.js";
51
+ import "../../_commonjsHelpers.js";
52
+ import "../../vendor/lodash.clonedeep/index.js";
53
+ import "../../vendor/easy-reactive/src/utils/subscription.js";
54
+ import "../../vendor/easy-reactive/src/utils/object.js";
55
+ import "../../vendor/lodash.isequal/index.js";
56
+ import "../../vendor/easy-reactive/src/utils/watcher.js";
57
+ import "../../vendor/svelte-carousel/src/utils/lazy.js";
58
+ import "../../vendor/svelte-carousel/src/utils/ProgressManager.js";
59
+ import "../../vendor/svelte-carousel/src/utils/interval.js";
60
+ import "./Common/MediaItem.js";
7
61
  import "./Tag/MarketingTag.js";
8
62
  import "../../shared-utils/tag.js";
9
63
  import "../../shared-utils/positionToVector3.js";
10
- import "three";
11
64
  import "../../shared-utils/five/vector3ToScreen.js";
12
65
  import "../../shared-utils/five/getFiveModel.js";
13
66
  import "../../shared-utils/Utils/FiveUtil.js";
@@ -34,11 +87,9 @@ import "../../shared-utils/three/getObjectVisible.js";
34
87
  import "../../shared-utils/three/CSS3DRenderer/index.js";
35
88
  import "../../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
36
89
  import "@realsee/five/line";
37
- import "../../shared-utils/isNil.js";
38
90
  import "../../shared-utils/three/core/Five_LineMaterial2.js";
39
91
  import "../../shared-utils/three/core/Sphere.js";
40
92
  import "../../shared-utils/three/blink.js";
41
- import "../../vendor/animejs/lib/anime.es.js";
42
93
  import "../../shared-utils/util.js";
43
94
  import "../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
44
95
  import "../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
@@ -72,55 +123,17 @@ import "../../shared-utils/five/getPosition.js";
72
123
  import "../../shared-utils/five/getRaycasterByNdcPosition.js";
73
124
  import "../../shared-utils/three/PointSelector/utils/contents.js";
74
125
  import "../../Sculpt/utils/three/rayOnLine.js";
75
- import "../utils/px2rem.js";
76
- import "./Common/Shadow.js";
77
- import "../../vendor/svelte/easing/index.js";
78
- import "../../shared-utils/svelte/resizeObserver.js";
79
- import "../../vendor/resize-observer-polyfill/dist/ResizeObserver.es.js";
80
126
  import "./Tag/Assets/marketingIcon.js";
81
127
  import "../utils/noTypecheck.js";
82
128
  import "./Tag/AudioTag/index.js";
83
- import "./Tag/AudioTag/AudioPlaneTag.js";
84
- import "./Common/Icon/audioIcon.js";
85
- import "./Common/Text/MText.js";
129
+ import "./Tag/AudioTag/AudioTag.js";
86
130
  import "./Common/Audio.js";
87
131
  import "../utils/audio/SharedAudio.js";
88
132
  import "../../shared-utils/audio.js";
89
133
  import "../utils/audio/AudioDiagnostics.js";
134
+ import "./Common/Icon/audioIcon.js";
135
+ import "./Tag/AudioTag/AudioPlaneTag.js";
90
136
  import "./Tag/MediaPlane.js";
91
- import "./Common/Media.js";
92
- import "../../vendor/svelte-carousel/src/components/Carousel/Carousel.js";
93
- import "../../vendor/svelte-carousel/src/components/Dots/Dots.js";
94
- import "../../vendor/svelte-carousel/src/components/Dot/Dot.js";
95
- import "../../vendor/svelte-carousel/src/components/Arrow/Arrow.js";
96
- import "../../vendor/svelte-carousel/src/direction.js";
97
- import "../../vendor/svelte-carousel/src/components/Progress/Progress.js";
98
- import "../../vendor/svelte-carousel/src/actions/swipeable/swipeable.js";
99
- import "../../vendor/svelte-carousel/src/actions/swipeable/event.js";
100
- import "../../vendor/svelte-carousel/src/utils/event.js";
101
- import "../../vendor/svelte-carousel/src/units.js";
102
- import "../../vendor/svelte-carousel/src/actions/hoverable/hoverable.js";
103
- import "../../vendor/svelte-carousel/src/actions/hoverable/event.js";
104
- import "../../vendor/svelte-carousel/src/actions/tappable/tappable.js";
105
- import "../../vendor/svelte-carousel/src/utils/math.js";
106
- import "../../vendor/svelte-carousel/src/actions/tappable/event.js";
107
- import "../../vendor/svelte-carousel/src/utils/page.js";
108
- import "../../vendor/svelte-carousel/src/utils/clones.js";
109
- import "../../vendor/svelte-carousel/src/utils/object.js";
110
- import "../../vendor/svelte-carousel/src/components/Carousel/createCarousel.js";
111
- import "../../vendor/easy-reactive/src/simply-reactive.js";
112
- import "../../vendor/lodash.get/index.js";
113
- import "../../_commonjsHelpers.js";
114
- import "../../vendor/lodash.clonedeep/index.js";
115
- import "../../vendor/easy-reactive/src/utils/subscription.js";
116
- import "../../vendor/easy-reactive/src/utils/object.js";
117
- import "../../vendor/lodash.isequal/index.js";
118
- import "../../vendor/easy-reactive/src/utils/watcher.js";
119
- import "../../vendor/svelte-carousel/src/utils/lazy.js";
120
- import "../../vendor/svelte-carousel/src/utils/ProgressManager.js";
121
- import "../../vendor/svelte-carousel/src/utils/interval.js";
122
- import "./Common/MediaItem.js";
123
- import "../Assets/Icon.js";
124
137
  import "./Tag/LinkTag.js";
125
138
  import "./Common/Icon/Icon.js";
126
139
  import "../utils/getImageInfo.js";
@@ -157,7 +170,6 @@ import "../../shared-utils/url/defaultUrls.js";
157
170
  import "../../shared-utils/vectorToCoordinate.js";
158
171
  import "../../shared-utils/formatRad.js";
159
172
  import "../../shared-utils/five/lookPoint.js";
160
- import "../../shared-utils/uuid.js";
161
173
  import "../utils/tagPosition.js";
162
174
  import "../utils/checkRange.js";
163
175
  import "../../shared-utils/url/getUrl.js";
@@ -179,97 +191,97 @@ import "./Common/AudioPlayer.js";
179
191
  import "./Common/TagPopover/TagPopoverToolBar.js";
180
192
  import "./Common/TagPopover/ArrowRightIcon.js";
181
193
  import "./Common/TagPopover/ShareIcon.js";
182
- function x(m) {
183
- B(m, "svelte-9ehqs9", ".tag--container.svelte-9ehqs9{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;overflow:hidden}.tag--container.hide.svelte-9ehqs9{opacity:0 !important;pointer-events:none}.tag--container.hide.svelte-9ehqs9 *{pointer-events:none !important}");
194
+ function X(m) {
195
+ A(m, "svelte-9ehqs9", ".tag--container.svelte-9ehqs9{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;overflow:hidden}.tag--container.hide.svelte-9ehqs9{opacity:0 !important;pointer-events:none}.tag--container.hide.svelte-9ehqs9 *{pointer-events:none !important}");
184
196
  }
185
- function z(m, t, o) {
197
+ function w(m, t, o) {
186
198
  const i = m.slice();
187
- return i[13] = t[o], i;
199
+ return i[12] = t[o], i;
188
200
  }
189
- function C(m) {
201
+ function T(m) {
190
202
  let t, o = [], i = /* @__PURE__ */ new Map(), p, n, a, s = (
191
203
  /*tags*/
192
204
  m[0]
193
205
  );
194
- const u = (r) => (
206
+ const u = (e) => (
195
207
  /*tag*/
196
- r[13].id
208
+ e[12].id
197
209
  );
198
- for (let r = 0; r < s.length; r += 1) {
199
- let e = z(m, s, r), f = u(e);
200
- i.set(f, o[r] = I(f, e));
210
+ for (let e = 0; e < s.length; e += 1) {
211
+ let r = w(m, s, e), f = u(r);
212
+ i.set(f, o[e] = I(f, r));
201
213
  }
202
214
  return {
203
215
  c() {
204
- var r;
205
- t = F("div");
206
- for (let e = 0; e < o.length; e += 1)
207
- o[e].c();
208
- g(t, "class", "tag--container svelte-9ehqs9"), g(t, "data-infive", p = !/*state*/
216
+ var e;
217
+ t = D("div");
218
+ for (let r = 0; r < o.length; r += 1)
219
+ o[r].c();
220
+ h(t, "class", "tag--container svelte-9ehqs9"), h(t, "data-infive", p = !/*state*/
209
221
  m[4].visible || !/*temporaryState*/
210
- m[5].visible ? "1" : "0"), w(t, "hide", !/*state*/
222
+ m[5].visible ? "1" : "0"), C(t, "hide", !/*state*/
211
223
  m[4].visible || !/*temporaryState*/
212
224
  m[5].visible), _(
213
225
  t,
214
226
  "z-index",
215
227
  /*zIndex*/
216
- (r = m[6]) != null ? r : ""
228
+ (e = m[6]) != null ? e : ""
217
229
  ), _(t, "opacity", !/*state*/
218
230
  m[4].visible || !/*temporaryState*/
219
231
  m[5].visible ? null : 1);
220
232
  },
221
- m(r, e) {
222
- b(r, t, e);
233
+ m(e, r) {
234
+ g(e, t, r);
223
235
  for (let f = 0; f < o.length; f += 1)
224
236
  o[f] && o[f].m(t, null);
225
237
  m[10](t), a = !0;
226
238
  },
227
- p(r, e) {
239
+ p(e, r) {
228
240
  var f;
229
- e & /*state, temporaryState, tags, mediaStore, rendererMap, contentTypeMap, wrapperElement, popoverContainerEl*/
241
+ r & /*state, temporaryState, tags, mediaStore, rendererMap, contentTypeMap, wrapperElement, popoverContainerEl*/
230
242
  447 && (s = /*tags*/
231
- r[0], N(), o = G(o, e, u, 1, r, s, i, t, H, I, null, z), E()), (!a || e & /*state, temporaryState*/
243
+ e[0], N(), o = F(o, r, u, 1, e, s, i, t, G, I, null, w), E()), (!a || r & /*state, temporaryState*/
232
244
  48 && p !== (p = !/*state*/
233
- r[4].visible || !/*temporaryState*/
234
- r[5].visible ? "1" : "0")) && g(t, "data-infive", p), (!a || e & /*state, temporaryState*/
235
- 48) && w(t, "hide", !/*state*/
236
- r[4].visible || !/*temporaryState*/
237
- r[5].visible), e & /*zIndex*/
245
+ e[4].visible || !/*temporaryState*/
246
+ e[5].visible ? "1" : "0")) && h(t, "data-infive", p), (!a || r & /*state, temporaryState*/
247
+ 48) && C(t, "hide", !/*state*/
248
+ e[4].visible || !/*temporaryState*/
249
+ e[5].visible), r & /*zIndex*/
238
250
  64 && _(
239
251
  t,
240
252
  "z-index",
241
253
  /*zIndex*/
242
- (f = r[6]) != null ? f : ""
243
- ), e & /*state, temporaryState*/
254
+ (f = e[6]) != null ? f : ""
255
+ ), r & /*state, temporaryState*/
244
256
  48 && _(t, "opacity", !/*state*/
245
- r[4].visible || !/*temporaryState*/
246
- r[5].visible ? null : 1);
257
+ e[4].visible || !/*temporaryState*/
258
+ e[5].visible ? null : 1);
247
259
  },
248
- i(r) {
260
+ i(e) {
249
261
  if (!a) {
250
- for (let e = 0; e < s.length; e += 1)
251
- d(o[e]);
252
- n || J(() => {
253
- n = K(t, X, {}), n.start();
262
+ for (let r = 0; r < s.length; r += 1)
263
+ d(o[r]);
264
+ n || H(() => {
265
+ n = J(t, V, {}), n.start();
254
266
  }), a = !0;
255
267
  }
256
268
  },
257
- o(r) {
258
- for (let e = 0; e < o.length; e += 1)
259
- c(o[e]);
269
+ o(e) {
270
+ for (let r = 0; r < o.length; r += 1)
271
+ c(o[r]);
260
272
  a = !1;
261
273
  },
262
- d(r) {
263
- r && v(t);
264
- for (let e = 0; e < o.length; e += 1)
265
- o[e].d();
274
+ d(e) {
275
+ e && b(t);
276
+ for (let r = 0; r < o.length; r += 1)
277
+ o[r].d();
266
278
  m[10](null);
267
279
  }
268
280
  };
269
281
  }
270
282
  function I(m, t) {
271
283
  let o, i, p;
272
- return i = new W({
284
+ return i = new U({
273
285
  props: {
274
286
  state: (
275
287
  /*state*/
@@ -281,7 +293,7 @@ function I(m, t) {
281
293
  ),
282
294
  tag: (
283
295
  /*tag*/
284
- t[13]
296
+ t[12]
285
297
  ),
286
298
  mediaStore: (
287
299
  /*mediaStore*/
@@ -308,10 +320,10 @@ function I(m, t) {
308
320
  key: m,
309
321
  first: null,
310
322
  c() {
311
- o = q(), L(i.$$.fragment), this.first = o;
323
+ o = q(), K(i.$$.fragment), this.first = o;
312
324
  },
313
325
  m(n, a) {
314
- b(n, o, a), Q(i, n, a), p = !0;
326
+ g(n, o, a), L(i, n, a), p = !0;
315
327
  },
316
328
  p(n, a) {
317
329
  t = n;
@@ -322,7 +334,7 @@ function I(m, t) {
322
334
  32 && (s.temporaryState = /*temporaryState*/
323
335
  t[5]), a & /*tags*/
324
336
  1 && (s.tag = /*tag*/
325
- t[13]), a & /*mediaStore*/
337
+ t[12]), a & /*mediaStore*/
326
338
  2 && (s.mediaStore = /*mediaStore*/
327
339
  t[1]), a & /*rendererMap*/
328
340
  4 && (s.rendererMap = /*rendererMap*/
@@ -341,26 +353,26 @@ function I(m, t) {
341
353
  c(i.$$.fragment, n), p = !1;
342
354
  },
343
355
  d(n) {
344
- n && v(o), R(i, n);
356
+ n && b(o), Q(i, n);
345
357
  }
346
358
  };
347
359
  }
348
- function $(m) {
360
+ function Y(m) {
349
361
  let t, o, i = (
350
362
  /*state*/
351
- m[4].enabled && C(m)
363
+ m[4].enabled && T(m)
352
364
  );
353
365
  return {
354
366
  c() {
355
367
  i && i.c(), t = q();
356
368
  },
357
369
  m(p, n) {
358
- i && i.m(p, n), b(p, t, n), o = !0;
370
+ i && i.m(p, n), g(p, t, n), o = !0;
359
371
  },
360
372
  p(p, [n]) {
361
373
  /*state*/
362
374
  p[4].enabled ? i ? (i.p(p, n), n & /*state*/
363
- 16 && d(i, 1)) : (i = C(p), i.c(), d(i, 1), i.m(t.parentNode, t)) : i && (N(), c(i, 1, 1, () => {
375
+ 16 && d(i, 1)) : (i = T(p), i.c(), d(i, 1), i.m(t.parentNode, t)) : i && (N(), c(i, 1, 1, () => {
364
376
  i = null;
365
377
  }), E());
366
378
  },
@@ -371,50 +383,48 @@ function $(m) {
371
383
  c(i), o = !1;
372
384
  },
373
385
  d(p) {
374
- i && i.d(p), p && v(t);
386
+ i && i.d(p), p && b(t);
375
387
  }
376
388
  };
377
389
  }
378
- function tt(m, t, o) {
379
- let { tags: i = [] } = t, { hooks: p } = t, { mediaStore: n } = t, { rendererMap: a } = t, { contentTypeMap: s } = t, { state: u } = t, { temporaryState: r } = t, { zIndex: e = void 0 } = t, f = null, k = null, y = 2e3;
380
- h("hooks", p), h("mediaStore", n);
381
- const O = V(null);
382
- h("pinnedTagId", O), D(() => {
383
- o(8, k = Y(y));
390
+ function x(m, t, o) {
391
+ let { tags: i = [] } = t, { hooks: p } = t, { mediaStore: n } = t, { rendererMap: a } = t, { contentTypeMap: s } = t, { state: u } = t, { temporaryState: e } = t, { zIndex: r = void 0 } = t, f = null, v = null, k = 2e3;
392
+ z("hooks", p), z("mediaStore", n), B(() => {
393
+ o(8, v = W(k));
384
394
  });
385
- function P(l) {
386
- U[l ? "unshift" : "push"](() => {
395
+ function O(l) {
396
+ R[l ? "unshift" : "push"](() => {
387
397
  f = l, o(7, f);
388
398
  });
389
399
  }
390
400
  return m.$$set = (l) => {
391
- "tags" in l && o(0, i = l.tags), "hooks" in l && o(9, p = l.hooks), "mediaStore" in l && o(1, n = l.mediaStore), "rendererMap" in l && o(2, a = l.rendererMap), "contentTypeMap" in l && o(3, s = l.contentTypeMap), "state" in l && o(4, u = l.state), "temporaryState" in l && o(5, r = l.temporaryState), "zIndex" in l && o(6, e = l.zIndex);
401
+ "tags" in l && o(0, i = l.tags), "hooks" in l && o(9, p = l.hooks), "mediaStore" in l && o(1, n = l.mediaStore), "rendererMap" in l && o(2, a = l.rendererMap), "contentTypeMap" in l && o(3, s = l.contentTypeMap), "state" in l && o(4, u = l.state), "temporaryState" in l && o(5, e = l.temporaryState), "zIndex" in l && o(6, r = l.zIndex);
392
402
  }, m.$$.update = () => {
393
- var l, M, S, T;
403
+ var l, y, M, S;
394
404
  m.$$.dirty & /*tags*/
395
- 1 && i && i.length > 0 && (y = (T = (S = (M = (l = i[0]) == null ? void 0 : l.config) == null ? void 0 : M.popoverConfig) == null ? void 0 : S.zIndex) != null ? T : 2e6);
405
+ 1 && i && i.length > 0 && (k = (S = (M = (y = (l = i[0]) == null ? void 0 : l.config) == null ? void 0 : y.popoverConfig) == null ? void 0 : M.zIndex) != null ? S : 2e6);
396
406
  }, [
397
407
  i,
398
408
  n,
399
409
  a,
400
410
  s,
401
411
  u,
402
- r,
403
412
  e,
413
+ r,
404
414
  f,
405
- k,
415
+ v,
406
416
  p,
407
- P
417
+ O
408
418
  ];
409
419
  }
410
- class ye extends Z {
420
+ class Nr extends P {
411
421
  constructor(t) {
412
- super(), j(
422
+ super(), Z(
413
423
  this,
414
424
  t,
415
- tt,
416
- $,
417
- A,
425
+ x,
426
+ Y,
427
+ j,
418
428
  {
419
429
  tags: 0,
420
430
  hooks: 9,
@@ -425,10 +435,10 @@ class ye extends Z {
425
435
  temporaryState: 5,
426
436
  zIndex: 6
427
437
  },
428
- x
438
+ X
429
439
  );
430
440
  }
431
441
  }
432
442
  export {
433
- ye as default
443
+ Nr as default
434
444
  };