@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
@@ -1,4 +1,4 @@
1
- import { SvelteComponent as j, init as q, safe_not_equal as O, append_styles as U, element as h, space as _, create_component as S, attr as z, set_style as y, toggle_class as b, insert as W, append as m, mount_component as A, listen as X, transition_in as D, transition_out as I, detach as B, destroy_component as R, getContext as E, bubble as G } from "../../../vendor/svelte/internal/index.js";
1
+ import { SvelteComponent as j, init as q, safe_not_equal as O, append_styles as U, element as h, space as _, create_component as S, attr as z, set_style as y, toggle_class as b, insert as W, append as f, mount_component as A, listen as X, transition_in as D, transition_out as I, detach as B, destroy_component as R, getContext as E, bubble as G } from "../../../vendor/svelte/internal/index.js";
2
2
  import H from "./Shadow.js";
3
3
  import J from "./Icon/Icon.js";
4
4
  import { Image_Default_Point as K } from "../../Assets/Icon.js";
@@ -7,6 +7,7 @@ import "three";
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";
@@ -15,19 +16,98 @@ import "../../../vendor/svelte/easing/index.js";
15
16
  import "../../utils/noTypecheck.js";
16
17
  import "../../utils/getImageInfo.js";
17
18
  import "../../utils/px2rem.js";
19
+ import "../../../Sculpt/utils/Modules/Cursor.js";
20
+ import "../../../Object3DHelperPlugin/Controller.js";
21
+ import "../../../base/BasePlugin.js";
22
+ import "../../../shared-utils/Subscribe.js";
23
+ import "../../../shared-utils/Utils/FiveUtil.js";
24
+ import "../../../shared-utils/Utils/BaseUtil.js";
25
+ import "../../../shared-utils/Utils/WorkUtil.js";
26
+ import "../../../shared-utils/five/transformPosition.js";
27
+ import "../../../shared-utils/five/getFiveModel.js";
28
+ import "../../../shared-utils/url/absoluteUrl.js";
29
+ import "../../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
30
+ import "../../../shared-utils/Object3DHelper/Base/BaseHelper.js";
31
+ import "../../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
32
+ import "../../../shared-utils/three/IObject3D.js";
33
+ import "../../../shared-utils/three/boundingBox.js";
34
+ import "../../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
35
+ import "../../../shared-utils/Object3DHelper/utils/direction.js";
36
+ import "../../../shared-utils/Object3DHelper/Constants/color.js";
37
+ import "../../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
38
+ import "../../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
39
+ import "../../../shared-utils/positionToVector3.js";
40
+ import "../../../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
41
+ import "../../../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
42
+ import "../../../CSS3DRenderPlugin/utils/createResizeObserver.js";
43
+ import "../../../CSS3DRenderPlugin/utils/even.js";
44
+ import "../../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
45
+ import "../../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
46
+ import "../../../shared-utils/three/centerPoint.js";
47
+ import "../../../shared-utils/three/getObjectVisible.js";
48
+ import "../../../shared-utils/isNil.js";
49
+ import "../../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
50
+ import "../../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
51
+ import "../../../shared-utils/util.js";
52
+ import "../../../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
53
+ import "../../../shared-utils/Object3DHelper/Helper/RotateHelper.js";
54
+ import "../../../shared-utils/Object3DHelper/Helper/HTML/tipsDom.js";
55
+ import "../../../shared-utils/Object3DHelper/Helper/HTML/utils/createElement.js";
56
+ import "../../../shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js";
57
+ import "../../../shared-utils/Object3DHelper/Helper/HTML/rectangleScaleDom.js";
58
+ import "../../../shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
59
+ import "../../../shared-utils/Object3DHelper/Controller/MoveController.js";
60
+ import "../../../shared-utils/Object3DHelper/Base/BaseController.js";
61
+ import "../../../shared-utils/threex/domevents/index.js";
62
+ import "../../../shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
63
+ import "../../../shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
64
+ import "../../../Sculpt/utils/three/rayOnLine.js";
65
+ import "../../../Object3DHelperPlugin/FiveControllerWrapper.js";
66
+ import "../../../shared-utils/Object3DHelper/index.js";
67
+ import "../../../shared-utils/Object3DHelper/Controller/RotateController.js";
68
+ import "../../../shared-utils/math/rad2Deg.js";
69
+ import "../../../shared-utils/math/deg2Rad.js";
70
+ import "../../../shared-utils/Object3DHelper/Controller/CSS3DScaleController.js";
71
+ import "../../../shared-utils/Object3DHelper/Controller/RectangleScaleController.js";
72
+ import "../../../shared-utils/Object3DHelper/utils/vectorIsEqual.js";
73
+ import "../../../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
74
+ import "../../../shared-utils/Object3DHelper/Controller/BoundingBoxController.js";
75
+ import "../../../shared-utils/Object3DHelper/Helper/ScaleHelper.js";
76
+ import "../../../shared-utils/Object3DHelper/Controller/ScaleController.js";
77
+ import "../../../shared-utils/five/fiveModelLoad.js";
78
+ import "../../../shared-utils/five/FiveDomEvents.js";
79
+ import "../../../shared-utils/five/calculateThreeMouse.js";
80
+ import "../../../shared-utils/three/THREERaycaster.js";
81
+ import "../../../shared-utils/three/PointSelector/index.js";
82
+ import "../../../shared-utils/three/PointSelector/utils/PointSelectorHelper.js";
83
+ import "../../../shared-utils/three/Magnifier.js";
84
+ import "../../../shared-utils/three/PointSelector/utils/PointHelper.js";
85
+ import "../../../shared-utils/three/Assets/index.js";
86
+ import "../../../shared-utils/three/PointSelector/utils/html.js";
87
+ import "../../../shared-utils/five/initialCSS3DRender.js";
88
+ import "../../../shared-utils/three/PointSelector/utils/PointHelper2.js";
89
+ import "../../../Sculpt/Meshes/Line.js";
90
+ import "../../../Sculpt/typings/style.js";
91
+ import "../../../shared-utils/five/FiveLine.js";
92
+ import "../../../shared-utils/tag.js";
93
+ import "../../../shared-utils/five/vector3ToScreen.js";
94
+ import "../../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
95
+ import "../../../shared-utils/isTouchDevice.js";
96
+ import "../../../shared-utils/five/getPosition.js";
97
+ import "../../../shared-utils/five/getRaycasterByNdcPosition.js";
18
98
  function Q(t) {
19
99
  U(t, "svelte-7aiuwz", '@charset "UTF-8";.tag-point-click-helper.svelte-7aiuwz.svelte-7aiuwz{position:absolute;pointer-events:auto;cursor:pointer;width:calc(100% + 0.75rem);height:calc(100% + 0.75rem);left:50%;top:50%;transform:translate(-50%, -50%)}.tag-point-wrapper.svelte-7aiuwz.svelte-7aiuwz{pointer-events:none;position:absolute;left:50%;top:50%;transform:translate(-50%, -50%)}.tag-folded-point.svelte-7aiuwz.svelte-7aiuwz,.tag-unfolded-point.svelte-7aiuwz.svelte-7aiuwz{transition:all 0.5s}.tag-point-wrapper.svelte-7aiuwz .tag-unfolded-point.svelte-7aiuwz{display:flex;justify-content:center;align-items:center;position:absolute;width:100%;height:100%;border-radius:50%}.tag-point-wrapper.svelte-7aiuwz .tag-unfolded-point.svelte-7aiuwz:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:0.3125rem;height:0.3125rem;border-radius:50%;background-color:white}.tag-point-wrapper.svelte-7aiuwz .tag-unfolded-point.svelte-7aiuwz:before{content:"";position:absolute;width:0.875rem;height:0.875rem;border-radius:50%;background-color:rgba(0, 0, 0, 0.2)}.tag-point-wrapper.folded.svelte-7aiuwz .tag-folded-point.svelte-7aiuwz{opacity:1;scale:1}.tag-point-wrapper.folded.svelte-7aiuwz .tag-unfolded-point.svelte-7aiuwz{opacity:0;scale:1}.tag-point-wrapper.unfolded.svelte-7aiuwz .tag-folded-point.svelte-7aiuwz{opacity:0;scale:0.2}.tag-point-wrapper.unfolded.svelte-7aiuwz .tag-unfolded-point.svelte-7aiuwz{opacity:1;scale:1}');
20
100
  }
21
101
  function V(t) {
22
- let o, r, u, d, c, p, w, e, a, l, g, v;
23
- return d = new H({
102
+ let o, n, d, l, c, s, w, e, p, a, g, v;
103
+ return l = new H({
24
104
  props: {
25
105
  center: !0,
26
106
  blurRadius: 15,
27
107
  spreadRadius: 5,
28
108
  opacity: 0.3
29
109
  }
30
- }), a = new J({
110
+ }), p = new J({
31
111
  props: {
32
112
  icon: (
33
113
  /*url*/
@@ -38,14 +118,14 @@ function V(t) {
38
118
  t[1]
39
119
  )
40
120
  }
41
- }), a.$on(
121
+ }), p.$on(
42
122
  "iconLoaded",
43
123
  /*iconLoaded_handler*/
44
124
  t[7]
45
125
  ), {
46
126
  c() {
47
- o = h("div"), r = h("div"), u = _(), S(d.$$.fragment), c = _(), p = h("div"), w = _(), e = h("div"), S(a.$$.fragment), z(r, "class", "tag-point-click-helper svelte-7aiuwz"), z(p, "class", "tag-unfolded-point svelte-7aiuwz"), y(
48
- p,
127
+ o = h("div"), n = h("div"), d = _(), S(l.$$.fragment), c = _(), s = h("div"), w = _(), e = h("div"), S(p.$$.fragment), z(n, "class", "tag-point-click-helper svelte-7aiuwz"), z(s, "class", "tag-unfolded-point svelte-7aiuwz"), y(
128
+ s,
49
129
  "transition-delay",
50
130
  /*folded*/
51
131
  (t[3] ? (
@@ -72,18 +152,18 @@ function V(t) {
72
152
  t[3]
73
153
  );
74
154
  },
75
- m(i, s) {
76
- W(i, o, s), m(o, r), m(o, u), A(d, o, null), m(o, c), m(o, p), m(o, w), m(o, e), A(a, e, null), l = !0, g || (v = X(
77
- r,
155
+ m(i, m) {
156
+ W(i, o, m), f(o, n), f(o, d), A(l, o, null), f(o, c), f(o, s), f(o, w), f(o, e), A(p, e, null), a = !0, g || (v = X(
157
+ n,
78
158
  "click",
79
159
  /*handlePointClick*/
80
160
  t[4]
81
161
  ), g = !0);
82
162
  },
83
- p(i, [s]) {
84
- s & /*folded*/
163
+ p(i, [m]) {
164
+ m & /*folded*/
85
165
  8 && y(
86
- p,
166
+ s,
87
167
  "transition-delay",
88
168
  /*folded*/
89
169
  (i[3] ? (
@@ -91,12 +171,12 @@ function V(t) {
91
171
  i[5]
92
172
  ) : 0) + "ms"
93
173
  );
94
- const n = {};
95
- s & /*url*/
96
- 4 && (n.icon = /*url*/
97
- i[2]), s & /*width*/
98
- 2 && (n.width = /*width*/
99
- i[1]), a.$set(n), s & /*folded*/
174
+ const r = {};
175
+ m & /*url*/
176
+ 4 && (r.icon = /*url*/
177
+ i[2]), m & /*width*/
178
+ 2 && (r.width = /*width*/
179
+ i[1]), p.$set(r), m & /*folded*/
100
180
  8 && y(
101
181
  e,
102
182
  "transition-delay",
@@ -105,13 +185,13 @@ function V(t) {
105
185
  /*foldDelay*/
106
186
  i[5]
107
187
  ) : 0) + "ms"
108
- ), (!l || s & /*unfolded*/
188
+ ), (!a || m & /*unfolded*/
109
189
  1) && b(
110
190
  o,
111
191
  "unfolded",
112
192
  /*unfolded*/
113
193
  i[0]
114
- ), (!l || s & /*folded*/
194
+ ), (!a || m & /*folded*/
115
195
  8) && b(
116
196
  o,
117
197
  "folded",
@@ -120,74 +200,74 @@ function V(t) {
120
200
  );
121
201
  },
122
202
  i(i) {
123
- l || (D(d.$$.fragment, i), D(a.$$.fragment, i), l = !0);
203
+ a || (D(l.$$.fragment, i), D(p.$$.fragment, i), a = !0);
124
204
  },
125
205
  o(i) {
126
- I(d.$$.fragment, i), I(a.$$.fragment, i), l = !1;
206
+ I(l.$$.fragment, i), I(p.$$.fragment, i), a = !1;
127
207
  },
128
208
  d(i) {
129
- i && B(o), R(d), R(a), g = !1, v();
209
+ i && B(o), R(l), R(p), g = !1, v();
130
210
  }
131
211
  };
132
212
  }
133
- function Y(t, o, r) {
134
- let u, d, c, p;
213
+ function Y(t, o, n) {
214
+ let d, l, c, s;
135
215
  const w = E("hooks");
136
- let { tag: e } = o, a, l = !1;
216
+ let { tag: e } = o, p, a = !1;
137
217
  const g = () => {
138
- a !== void 0 && clearTimeout(a), l = !0, a = setTimeout(
218
+ p !== void 0 && clearTimeout(p), a = !0, p = setTimeout(
139
219
  () => {
140
- l = !1;
220
+ a = !1;
141
221
  },
142
222
  800
143
223
  );
144
- }, v = (n) => {
145
- l || (e.entryFromModel && N(e.five.state.mode) ? e.find({ targetMode: "Panorama" }).then(() => e.unfoldAndFoldOthers()) : w.emit("click", { event: n, target: "TagPoint", tag: e }));
224
+ }, v = (r) => {
225
+ a || (e.entryFromModel && N(e.five.state.mode) ? e.find({ targetMode: "Panorama" }).then(() => e.unfoldAndFoldOthers()) : w.emit("click", { event: r, target: "TagPoint", tag: e }));
146
226
  }, i = (() => e.contentType === "Text" && e.data.appearance === "plane" ? 500 : 800)();
147
- function s(n) {
148
- G.call(this, t, n);
227
+ function m(r) {
228
+ G.call(this, t, r);
149
229
  }
150
- return t.$$set = (n) => {
151
- "tag" in n && r(6, e = n.tag);
230
+ return t.$$set = (r) => {
231
+ "tag" in r && n(6, e = r.tag);
152
232
  }, t.$$.update = () => {
153
- var n, k, T, L;
233
+ var r, k, T, L;
154
234
  t.$$.dirty & /*tag*/
155
- 64 && r(0, u = (n = e.state) == null ? void 0 : n.unfolded), t.$$.dirty & /*unfolded*/
156
- 1 && r(3, d = !u), t.$$.dirty & /*tag*/
157
- 64 && r(2, c = (T = (k = e.style) == null ? void 0 : k.point) != null && T.url ? (L = e.style) == null ? void 0 : L.point : { url: K }), t.$$.dirty & /*tag*/
158
- 64 && r(1, p = (() => {
235
+ 64 && n(0, d = (r = e.state) == null ? void 0 : r.unfolded), t.$$.dirty & /*unfolded*/
236
+ 1 && n(3, l = !d), t.$$.dirty & /*tag*/
237
+ 64 && n(2, c = (T = (k = e.style) == null ? void 0 : k.point) != null && T.url ? (L = e.style) == null ? void 0 : L.point : { url: K }), t.$$.dirty & /*tag*/
238
+ 64 && n(1, s = (() => {
159
239
  var M, $, C, F;
160
240
  const P = ($ = (M = e.style) == null ? void 0 : M.point) == null ? void 0 : $.width;
161
241
  if (typeof P == "number")
162
242
  return P;
163
- const f = (F = (C = e.style) == null ? void 0 : C.point) == null ? void 0 : F.size;
164
- if (typeof f == "number")
165
- return f;
166
- if (f === "S")
243
+ const u = (F = (C = e.style) == null ? void 0 : C.point) == null ? void 0 : F.size;
244
+ if (typeof u == "number")
245
+ return u;
246
+ if (u === "S")
167
247
  return 18;
168
- if (f === "M")
248
+ if (u === "M")
169
249
  return 20;
170
- if (f === "L")
250
+ if (u === "L")
171
251
  return 24;
172
- if (f === "XL")
252
+ if (u === "XL")
173
253
  return 28;
174
254
  })());
175
255
  }, g(), [
176
- u,
177
- p,
178
- c,
179
256
  d,
257
+ s,
258
+ c,
259
+ l,
180
260
  v,
181
261
  i,
182
262
  e,
183
- s
263
+ m
184
264
  ];
185
265
  }
186
- class gt extends j {
266
+ class Xe extends j {
187
267
  constructor(o) {
188
268
  super(), q(this, o, Y, V, O, { tag: 6 }, Q);
189
269
  }
190
270
  }
191
271
  export {
192
- gt as default
272
+ Xe as default
193
273
  };