@realsee/dnalogel 3.45.0 → 3.46.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/Sculpt/Meshes/Line.d.ts +6 -1
- package/dist/Sculpt/utils/removeAllTag.d.ts +2 -0
- package/dist/index.cjs.js +53 -53
- package/dist/index.js +29600 -29557
- package/dist/index.umd.js +49 -49
- package/dist/shared-utils/tag.d.ts +6 -3
- package/libs/AreaMakerPlugin/Controller.js +151 -78
- package/libs/AreaMakerPlugin/index.js +77 -4
- package/libs/AreaMakerPlugin/utils/Item.js +191 -111
- package/libs/CSS3DRenderPlugin/Controller.js +90 -29
- package/libs/CSS3DRenderPlugin/index.js +76 -15
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +133 -58
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +182 -116
- package/libs/CruisePlugin/BaseController.js +122 -49
- package/libs/CruisePlugin/Move.js +74 -21
- package/libs/CruisePlugin/Work.js +99 -46
- package/libs/CruisePlugin/index.js +80 -27
- package/libs/CurrentPanoImagePlugin/Controller.js +177 -104
- package/libs/CurrentPanoImagePlugin/index.js +77 -4
- package/libs/GuideLinePlugin/Controller.js +79 -26
- package/libs/GuideLinePlugin/GuideLineItem.js +83 -30
- package/libs/GuideLinePlugin/GuideLineModeItem/index.js +3 -2
- package/libs/GuideLinePlugin/GuideLineModeItem.js +82 -29
- package/libs/GuideLinePlugin/index.js +80 -27
- package/libs/ModelMakerPlugin/Controller.js +140 -82
- package/libs/ModelMakerPlugin/index.js +76 -18
- package/libs/ModelTVVideoPlugin/Plugin.js +118 -57
- package/libs/ModelTVVideoPlugin/index.js +69 -8
- package/libs/Object3DHelperPlugin/Controller.js +67 -43
- package/libs/Object3DHelperPlugin/index.js +36 -13
- package/libs/PanoCompassPlugin/Controller.js +98 -42
- package/libs/PanoCompassPlugin/index.js +72 -16
- package/libs/PanoDoorLabelPlugin/BaseController.js +99 -26
- package/libs/PanoDoorLabelPlugin/Controller.js +188 -115
- package/libs/PanoDoorLabelPlugin/index.js +77 -4
- package/libs/PanoMeasurePlugin/Components/Controller0.js +141 -88
- package/libs/PanoMeasurePlugin/Components/Controller1.js +179 -126
- package/libs/PanoMeasurePlugin/Controller/EditController.js +125 -72
- package/libs/PanoMeasurePlugin/Controller/WatchController.js +168 -92
- package/libs/PanoMeasurePlugin/Controller/index.js +110 -64
- package/libs/PanoMeasurePlugin/Model/area.js +115 -38
- package/libs/PanoMeasurePlugin/Modules/Magnifier.js +79 -0
- package/libs/PanoMeasurePlugin/Modules/UIController/index.js +98 -45
- package/libs/PanoMeasurePlugin/index.js +77 -31
- package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +99 -20
- package/libs/PanoSpatialTagPlugin/Plugin.js +211 -150
- package/libs/PanoSpatialTagPlugin/index.js +67 -6
- package/libs/PanoTagPlugin/Components/Common/TagPoint.js +149 -68
- package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +296 -216
- package/libs/PanoTagPlugin/Components/Tag/index.js +258 -187
- package/libs/PanoTagPlugin/Components/TagContainer.js +158 -87
- package/libs/PanoTagPlugin/Components/TagItem.js +145 -74
- package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +133 -62
- package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +110 -39
- package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +106 -35
- package/libs/PanoTagPlugin/controller/Tag/PointTag.js +114 -43
- package/libs/PanoTagPlugin/controller/TagRender.js +133 -80
- package/libs/PanoTagPlugin/controller/TagUtil.js +137 -84
- package/libs/PanoTagPlugin/controller/index.js +114 -61
- package/libs/PanoTagPlugin/index.js +90 -37
- package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +122 -41
- package/libs/PanoVideoPlugin/Controller.js +138 -65
- package/libs/PanoVideoPlugin/VideoMeshController.js +150 -69
- package/libs/PanoVideoPlugin/index.js +83 -10
- package/libs/PipelinePlugin/Controller.js +200 -128
- package/libs/PipelinePlugin/index.js +77 -5
- package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +103 -22
- package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +96 -15
- package/libs/PipelinePlugin/utils/Objects/Pipe.js +137 -56
- package/libs/Sculpt/Meshes/Box.js +6 -5
- package/libs/Sculpt/Meshes/Cylinder.js +7 -6
- package/libs/Sculpt/Meshes/Line.d.ts +6 -1
- package/libs/Sculpt/Meshes/Line.js +80 -57
- package/libs/Sculpt/Meshes/Point.js +6 -5
- package/libs/Sculpt/Meshes/Polyline.js +5 -4
- package/libs/Sculpt/Meshes/Rectangle.js +3 -2
- package/libs/Sculpt/Objects/Base/index.js +20 -17
- package/libs/Sculpt/Objects/Line/Editor.js +11 -10
- package/libs/Sculpt/utils/removeAllTag.d.ts +2 -0
- package/libs/Sculpt/utils/removeAllTag.js +10 -0
- package/libs/Sculpt/utils/three/ColoredMesh.js +14 -13
- package/libs/base/BasePlugin.js +14 -13
- package/libs/floorplan/MapviewFloorplanPlugin/Controller.js +129 -59
- package/libs/floorplan/MapviewFloorplanPlugin/index.js +76 -6
- package/libs/floorplan/ModelFloorplanPlugin/Controller.js +130 -59
- package/libs/floorplan/ModelFloorplanPlugin/index.js +76 -5
- package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +159 -86
- package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +77 -4
- package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +152 -81
- package/libs/floorplan/TopviewFloorplanPlugin/index.js +76 -5
- package/libs/floorplan/index.js +1 -0
- package/libs/index.js +193 -192
- package/libs/shared-utils/five/index.js +3 -2
- package/libs/shared-utils/five/lookObject.js +3 -2
- package/libs/shared-utils/logger.js +1 -1
- package/libs/shared-utils/tag.d.ts +6 -3
- package/libs/shared-utils/tag.js +38 -24
- package/libs/shared-utils/three/index.js +1 -0
- package/package.json +1 -1
|
@@ -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
|
|
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,99 @@ 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 "../../../Sculpt/utils/removeAllTag.js";
|
|
95
|
+
import "../../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
|
|
96
|
+
import "../../../shared-utils/isTouchDevice.js";
|
|
97
|
+
import "../../../shared-utils/five/getPosition.js";
|
|
98
|
+
import "../../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
18
99
|
function Q(t) {
|
|
19
100
|
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
101
|
}
|
|
21
102
|
function V(t) {
|
|
22
|
-
let o,
|
|
23
|
-
return
|
|
103
|
+
let o, n, d, l, c, s, w, i, p, a, g, v;
|
|
104
|
+
return l = new H({
|
|
24
105
|
props: {
|
|
25
106
|
center: !0,
|
|
26
107
|
blurRadius: 15,
|
|
27
108
|
spreadRadius: 5,
|
|
28
109
|
opacity: 0.3
|
|
29
110
|
}
|
|
30
|
-
}),
|
|
111
|
+
}), p = new J({
|
|
31
112
|
props: {
|
|
32
113
|
icon: (
|
|
33
114
|
/*url*/
|
|
@@ -38,22 +119,22 @@ function V(t) {
|
|
|
38
119
|
t[1]
|
|
39
120
|
)
|
|
40
121
|
}
|
|
41
|
-
}),
|
|
122
|
+
}), p.$on(
|
|
42
123
|
"iconLoaded",
|
|
43
124
|
/*iconLoaded_handler*/
|
|
44
125
|
t[7]
|
|
45
126
|
), {
|
|
46
127
|
c() {
|
|
47
|
-
o = h("div"),
|
|
48
|
-
|
|
128
|
+
o = h("div"), n = h("div"), d = _(), S(l.$$.fragment), c = _(), s = h("div"), w = _(), i = h("div"), S(p.$$.fragment), z(n, "class", "tag-point-click-helper svelte-7aiuwz"), z(s, "class", "tag-unfolded-point svelte-7aiuwz"), y(
|
|
129
|
+
s,
|
|
49
130
|
"transition-delay",
|
|
50
131
|
/*folded*/
|
|
51
132
|
(t[3] ? (
|
|
52
133
|
/*foldDelay*/
|
|
53
134
|
t[5]
|
|
54
135
|
) : 0) + "ms"
|
|
55
|
-
), z(
|
|
56
|
-
|
|
136
|
+
), z(i, "class", "tag-folded-point svelte-7aiuwz"), y(
|
|
137
|
+
i,
|
|
57
138
|
"transition-delay",
|
|
58
139
|
/*folded*/
|
|
59
140
|
(t[3] ? (
|
|
@@ -72,122 +153,122 @@ function V(t) {
|
|
|
72
153
|
t[3]
|
|
73
154
|
);
|
|
74
155
|
},
|
|
75
|
-
m(
|
|
76
|
-
W(
|
|
77
|
-
|
|
156
|
+
m(e, m) {
|
|
157
|
+
W(e, o, m), f(o, n), f(o, d), A(l, o, null), f(o, c), f(o, s), f(o, w), f(o, i), A(p, i, null), a = !0, g || (v = X(
|
|
158
|
+
n,
|
|
78
159
|
"click",
|
|
79
160
|
/*handlePointClick*/
|
|
80
161
|
t[4]
|
|
81
162
|
), g = !0);
|
|
82
163
|
},
|
|
83
|
-
p(
|
|
84
|
-
|
|
164
|
+
p(e, [m]) {
|
|
165
|
+
m & /*folded*/
|
|
85
166
|
8 && y(
|
|
86
|
-
|
|
167
|
+
s,
|
|
87
168
|
"transition-delay",
|
|
88
169
|
/*folded*/
|
|
89
|
-
(
|
|
170
|
+
(e[3] ? (
|
|
90
171
|
/*foldDelay*/
|
|
91
|
-
|
|
172
|
+
e[5]
|
|
92
173
|
) : 0) + "ms"
|
|
93
174
|
);
|
|
94
|
-
const
|
|
95
|
-
|
|
96
|
-
4 && (
|
|
97
|
-
|
|
98
|
-
2 && (
|
|
99
|
-
|
|
175
|
+
const r = {};
|
|
176
|
+
m & /*url*/
|
|
177
|
+
4 && (r.icon = /*url*/
|
|
178
|
+
e[2]), m & /*width*/
|
|
179
|
+
2 && (r.width = /*width*/
|
|
180
|
+
e[1]), p.$set(r), m & /*folded*/
|
|
100
181
|
8 && y(
|
|
101
|
-
|
|
182
|
+
i,
|
|
102
183
|
"transition-delay",
|
|
103
184
|
/*folded*/
|
|
104
|
-
(
|
|
185
|
+
(e[3] ? (
|
|
105
186
|
/*foldDelay*/
|
|
106
|
-
|
|
187
|
+
e[5]
|
|
107
188
|
) : 0) + "ms"
|
|
108
|
-
), (!
|
|
189
|
+
), (!a || m & /*unfolded*/
|
|
109
190
|
1) && b(
|
|
110
191
|
o,
|
|
111
192
|
"unfolded",
|
|
112
193
|
/*unfolded*/
|
|
113
|
-
|
|
114
|
-
), (!
|
|
194
|
+
e[0]
|
|
195
|
+
), (!a || m & /*folded*/
|
|
115
196
|
8) && b(
|
|
116
197
|
o,
|
|
117
198
|
"folded",
|
|
118
199
|
/*folded*/
|
|
119
|
-
|
|
200
|
+
e[3]
|
|
120
201
|
);
|
|
121
202
|
},
|
|
122
|
-
i(
|
|
123
|
-
|
|
203
|
+
i(e) {
|
|
204
|
+
a || (D(l.$$.fragment, e), D(p.$$.fragment, e), a = !0);
|
|
124
205
|
},
|
|
125
|
-
o(
|
|
126
|
-
I(
|
|
206
|
+
o(e) {
|
|
207
|
+
I(l.$$.fragment, e), I(p.$$.fragment, e), a = !1;
|
|
127
208
|
},
|
|
128
|
-
d(
|
|
129
|
-
|
|
209
|
+
d(e) {
|
|
210
|
+
e && B(o), R(l), R(p), g = !1, v();
|
|
130
211
|
}
|
|
131
212
|
};
|
|
132
213
|
}
|
|
133
|
-
function Y(t, o,
|
|
134
|
-
let
|
|
214
|
+
function Y(t, o, n) {
|
|
215
|
+
let d, l, c, s;
|
|
135
216
|
const w = E("hooks");
|
|
136
|
-
let { tag:
|
|
217
|
+
let { tag: i } = o, p, a = !1;
|
|
137
218
|
const g = () => {
|
|
138
|
-
|
|
219
|
+
p !== void 0 && clearTimeout(p), a = !0, p = setTimeout(
|
|
139
220
|
() => {
|
|
140
|
-
|
|
221
|
+
a = !1;
|
|
141
222
|
},
|
|
142
223
|
800
|
|
143
224
|
);
|
|
144
|
-
}, v = (
|
|
145
|
-
|
|
146
|
-
},
|
|
147
|
-
function
|
|
148
|
-
G.call(this, t,
|
|
225
|
+
}, v = (r) => {
|
|
226
|
+
a || (i.entryFromModel && N(i.five.state.mode) ? i.find({ targetMode: "Panorama" }).then(() => i.unfoldAndFoldOthers()) : w.emit("click", { event: r, target: "TagPoint", tag: i }));
|
|
227
|
+
}, e = (() => i.contentType === "Text" && i.data.appearance === "plane" ? 500 : 800)();
|
|
228
|
+
function m(r) {
|
|
229
|
+
G.call(this, t, r);
|
|
149
230
|
}
|
|
150
|
-
return t.$$set = (
|
|
151
|
-
"tag" in
|
|
231
|
+
return t.$$set = (r) => {
|
|
232
|
+
"tag" in r && n(6, i = r.tag);
|
|
152
233
|
}, t.$$.update = () => {
|
|
153
|
-
var
|
|
234
|
+
var r, k, T, L;
|
|
154
235
|
t.$$.dirty & /*tag*/
|
|
155
|
-
64 &&
|
|
156
|
-
1 &&
|
|
157
|
-
64 &&
|
|
158
|
-
64 &&
|
|
236
|
+
64 && n(0, d = (r = i.state) == null ? void 0 : r.unfolded), t.$$.dirty & /*unfolded*/
|
|
237
|
+
1 && n(3, l = !d), t.$$.dirty & /*tag*/
|
|
238
|
+
64 && n(2, c = (T = (k = i.style) == null ? void 0 : k.point) != null && T.url ? (L = i.style) == null ? void 0 : L.point : { url: K }), t.$$.dirty & /*tag*/
|
|
239
|
+
64 && n(1, s = (() => {
|
|
159
240
|
var M, $, C, F;
|
|
160
|
-
const P = ($ = (M =
|
|
241
|
+
const P = ($ = (M = i.style) == null ? void 0 : M.point) == null ? void 0 : $.width;
|
|
161
242
|
if (typeof P == "number")
|
|
162
243
|
return P;
|
|
163
|
-
const
|
|
164
|
-
if (typeof
|
|
165
|
-
return
|
|
166
|
-
if (
|
|
244
|
+
const u = (F = (C = i.style) == null ? void 0 : C.point) == null ? void 0 : F.size;
|
|
245
|
+
if (typeof u == "number")
|
|
246
|
+
return u;
|
|
247
|
+
if (u === "S")
|
|
167
248
|
return 18;
|
|
168
|
-
if (
|
|
249
|
+
if (u === "M")
|
|
169
250
|
return 20;
|
|
170
|
-
if (
|
|
251
|
+
if (u === "L")
|
|
171
252
|
return 24;
|
|
172
|
-
if (
|
|
253
|
+
if (u === "XL")
|
|
173
254
|
return 28;
|
|
174
255
|
})());
|
|
175
256
|
}, g(), [
|
|
176
|
-
u,
|
|
177
|
-
p,
|
|
178
|
-
c,
|
|
179
257
|
d,
|
|
258
|
+
s,
|
|
259
|
+
c,
|
|
260
|
+
l,
|
|
180
261
|
v,
|
|
181
|
-
i,
|
|
182
262
|
e,
|
|
183
|
-
|
|
263
|
+
i,
|
|
264
|
+
m
|
|
184
265
|
];
|
|
185
266
|
}
|
|
186
|
-
class
|
|
267
|
+
class Bi extends j {
|
|
187
268
|
constructor(o) {
|
|
188
269
|
super(), q(this, o, Y, V, O, { tag: 6 }, Q);
|
|
189
270
|
}
|
|
190
271
|
}
|
|
191
272
|
export {
|
|
192
|
-
|
|
273
|
+
Bi as default
|
|
193
274
|
};
|