@realsee/dnalogel 3.50.17-alpha.0 → 3.51.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.
- package/CHANGELOG.md +3 -0
- package/dist/ModelMakerPlugin/Controller.d.ts +2 -0
- package/dist/Sculpt/utils/export.d.ts +18 -0
- package/dist/index.cjs.js +207 -207
- package/dist/index.js +34866 -34775
- package/dist/index.umd.js +211 -211
- package/dist/shared-utils/five/fiveEveryReadyListener.d.ts +2 -0
- package/dist/shared-utils/index.d.ts +1 -0
- package/dist/shared-utils/tag.d.ts +40 -1
- package/dist/shared-utils/three/temp.d.ts +2 -2
- package/libs/AreaMakerPlugin/Controller.js +100 -46
- package/libs/AreaMakerPlugin/index.js +64 -10
- package/libs/AreaMakerPlugin/utils/Item.js +156 -100
- package/libs/CSS3DRenderPlugin/Controller.js +93 -44
- package/libs/CSS3DRenderPlugin/index.js +62 -13
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +105 -49
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +130 -77
- package/libs/CruisePlugin/BaseController.js +143 -89
- package/libs/CruisePlugin/Move.js +83 -39
- package/libs/CruisePlugin/Work.js +95 -51
- package/libs/CruisePlugin/index.js +66 -22
- package/libs/CurrentPanoImagePlugin/Controller.js +139 -85
- package/libs/CurrentPanoImagePlugin/index.js +63 -9
- package/libs/GuideLinePlugin/Controller.js +57 -13
- package/libs/GuideLinePlugin/GuideLineItem.js +63 -19
- package/libs/GuideLinePlugin/GuideLineModeItem/index.js +6 -2
- package/libs/GuideLinePlugin/GuideLineModeItem.js +58 -14
- package/libs/GuideLinePlugin/index.js +66 -22
- package/libs/ModelMakerPlugin/Controller.d.ts +2 -0
- package/libs/ModelMakerPlugin/Controller.js +190 -129
- package/libs/ModelMakerPlugin/index.js +63 -21
- package/libs/ModelMakerPlugin/item/baseItem.js +4 -2
- package/libs/ModelMakerPlugin/item/boxItem.js +5 -3
- package/libs/ModelMakerPlugin/item/polygonItem.js +9 -7
- package/libs/ModelMakerPlugin/item/prismItem.js +5 -3
- package/libs/ModelTVVideoPlugin/Plugin.js +96 -47
- package/libs/ModelTVVideoPlugin/index.js +55 -6
- package/libs/Object3DHelperPlugin/Controller.js +42 -25
- package/libs/Object3DHelperPlugin/index.js +28 -12
- package/libs/PanoCompassPlugin/Controller.js +92 -44
- package/libs/PanoCompassPlugin/index.js +63 -15
- package/libs/PanoDoorLabelPlugin/BaseController.js +79 -25
- package/libs/PanoDoorLabelPlugin/Controller.js +132 -78
- package/libs/PanoDoorLabelPlugin/index.js +63 -9
- package/libs/PanoMeasurePlugin/Components/Controller0.js +126 -77
- package/libs/PanoMeasurePlugin/Components/Controller1.js +139 -90
- package/libs/PanoMeasurePlugin/Controller/EditController.js +120 -71
- package/libs/PanoMeasurePlugin/Controller/WatchController.js +120 -70
- package/libs/PanoMeasurePlugin/Controller/index.js +132 -86
- package/libs/PanoMeasurePlugin/Model/area.js +72 -22
- package/libs/PanoMeasurePlugin/Modules/Magnifier.js +56 -0
- package/libs/PanoMeasurePlugin/Modules/UIController/index.js +64 -15
- package/libs/PanoMeasurePlugin/index.js +62 -16
- package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +57 -2
- package/libs/PanoRulerProPlugin/Controller.js +88 -33
- package/libs/PanoRulerProPlugin/RulerItems.js +146 -91
- package/libs/PanoRulerProPlugin/index.js +64 -9
- package/libs/PanoSpatialTagPlugin/Plugin.js +177 -128
- package/libs/PanoSpatialTagPlugin/index.js +53 -4
- package/libs/PanoTagPlugin/Components/Common/TagPoint.js +116 -60
- package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +192 -136
- package/libs/PanoTagPlugin/Components/Tag/index.js +194 -139
- package/libs/PanoTagPlugin/Components/TagContainer.js +112 -57
- package/libs/PanoTagPlugin/Components/TagItem.js +204 -149
- package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +157 -101
- package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +75 -20
- package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +86 -31
- package/libs/PanoTagPlugin/controller/Tag/PointTag.js +93 -37
- package/libs/PanoTagPlugin/controller/TagRender.js +62 -18
- package/libs/PanoTagPlugin/controller/TagUtil.js +123 -79
- package/libs/PanoTagPlugin/controller/index.js +110 -72
- package/libs/PanoTagPlugin/index.js +72 -28
- package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +77 -21
- package/libs/PanoVideoPlugin/Controller.js +95 -41
- package/libs/PanoVideoPlugin/VideoMeshController.js +119 -63
- package/libs/PanoVideoPlugin/index.js +66 -12
- package/libs/PipelinePlugin/Controller.js +173 -119
- package/libs/PipelinePlugin/index.js +63 -9
- package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +70 -14
- package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +58 -2
- package/libs/PipelinePlugin/utils/Objects/Pipe.js +98 -42
- package/libs/Sculpt/Meshes/Box.js +3 -2
- package/libs/Sculpt/Meshes/Cylinder.js +10 -6
- package/libs/Sculpt/Meshes/Line.js +43 -38
- package/libs/Sculpt/Meshes/LineWithDots.js +14 -10
- package/libs/Sculpt/Meshes/Point.js +24 -20
- package/libs/Sculpt/Meshes/Polygon.js +5 -2
- package/libs/Sculpt/Meshes/Prism.js +19 -16
- package/libs/Sculpt/Objects/Line/Editor.js +6 -5
- package/libs/Sculpt/index.js +15 -14
- package/libs/Sculpt/utils/export.d.ts +18 -0
- package/libs/Sculpt/utils/export.js +21 -0
- package/libs/Sculpt/utils/three/ColoredMesh.js +26 -22
- package/libs/base/BasePlugin.js +14 -10
- package/libs/floorplan/MapviewFloorplanPlugin/Controller.js +146 -94
- package/libs/floorplan/MapviewFloorplanPlugin/index.js +62 -10
- package/libs/floorplan/ModelFloorplanPlugin/Controller.js +109 -56
- package/libs/floorplan/ModelFloorplanPlugin/index.js +62 -9
- package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +116 -63
- package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +62 -9
- package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +105 -52
- package/libs/floorplan/TopviewFloorplanPlugin/index.js +62 -9
- package/libs/floorplan/index.js +4 -0
- package/libs/index.js +208 -206
- package/libs/shared-utils/five/fiveEveryReadyListener.d.ts +2 -0
- package/libs/shared-utils/five/fiveEveryReadyListener.js +15 -0
- package/libs/shared-utils/five/index.js +6 -2
- package/libs/shared-utils/five/lookObject.js +31 -27
- package/libs/shared-utils/index.d.ts +1 -0
- package/libs/shared-utils/index.js +19 -17
- package/libs/shared-utils/logger.js +1 -1
- package/libs/shared-utils/tag.d.ts +40 -1
- package/libs/shared-utils/tag.js +139 -86
- package/libs/shared-utils/three/index.js +4 -0
- package/libs/shared-utils/three/temp.d.ts +2 -2
- package/libs/shared-utils/three/temp.js +4 -4
- package/package.json +1 -1
- package/README.md +0 -116
|
@@ -13,6 +13,10 @@ import "../../../vendor/three/examples/jsm/lines/LineGeometry.js";
|
|
|
13
13
|
import "../../../shared-utils/three/core/Sphere.js";
|
|
14
14
|
import "animejs";
|
|
15
15
|
import "../../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
|
|
16
|
+
import "../../../Sculpt/Meshes/Polygon.js";
|
|
17
|
+
import "../../../Sculpt/utils/Modules/Global.js";
|
|
18
|
+
import "../../../vendor/hotkeys-js/dist/hotkeys.esm.js";
|
|
19
|
+
import "../../../Sculpt/utils/three/rayOnLine.js";
|
|
16
20
|
import "../../../vendor/svelte/transition/index.js";
|
|
17
21
|
import "../../../vendor/svelte/easing/index.js";
|
|
18
22
|
import "../../utils/noTypecheck.js";
|
|
@@ -27,7 +31,10 @@ import "../../../shared-utils/Subscribe.js";
|
|
|
27
31
|
import "../../../shared-utils/Utils/WorkUtil.js";
|
|
28
32
|
import "../../../shared-utils/five/transformPosition.js";
|
|
29
33
|
import "../../../shared-utils/three/temp.js";
|
|
34
|
+
import "../../../shared-utils/three/core/Raycaster.js";
|
|
30
35
|
import "../../../shared-utils/dom/resizeObserver.js";
|
|
36
|
+
import "../../../shared-utils/five/fiveEveryReadyListener.js";
|
|
37
|
+
import "../../../shared-utils/throttle.js";
|
|
31
38
|
import "../../../shared-utils/three/PointSelector/utils/PointSelectorHelper.js";
|
|
32
39
|
import "../../../shared-utils/three/Magnifier.js";
|
|
33
40
|
import "../../../shared-utils/three/PointSelector/utils/PointHelper.js";
|
|
@@ -59,19 +66,68 @@ import "../../../shared-utils/five/getRaycasterByNdcPosition.js";
|
|
|
59
66
|
import "../../../shared-utils/three/PointSelector/utils/contents.js";
|
|
60
67
|
import "../../../vendor/three/examples/jsm/lines/LineSegmentsGeometry.js";
|
|
61
68
|
import "../../../vendor/three/build/three.module.js";
|
|
69
|
+
import "../../../shared-utils/three/generatePolygonGeometry.js";
|
|
70
|
+
import "../../../shared-utils/three/earcut3D.js";
|
|
71
|
+
import "earcut";
|
|
72
|
+
import "../../../shared-utils/three/getNormal.js";
|
|
73
|
+
import "../../../PanoMeasurePlugin/utils/isIntersecting.js";
|
|
74
|
+
import "../../../Sculpt/utils/three/ColoredMesh.js";
|
|
75
|
+
import "../../../shared-utils/three/geometryUtil.js";
|
|
76
|
+
import "../../../Sculpt/utils/Modules/Cursor.js";
|
|
77
|
+
import "../../../Object3DHelperPlugin/Controller.js";
|
|
78
|
+
import "../../../base/BasePlugin.js";
|
|
79
|
+
import "../../../shared-utils/url/absoluteUrl.js";
|
|
80
|
+
import "../../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
|
|
81
|
+
import "../../../shared-utils/Object3DHelper/Base/BaseHelper.js";
|
|
82
|
+
import "../../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
|
|
83
|
+
import "../../../shared-utils/three/boundingBox.js";
|
|
84
|
+
import "../../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
|
|
85
|
+
import "../../../shared-utils/Object3DHelper/utils/direction.js";
|
|
86
|
+
import "../../../shared-utils/Object3DHelper/Constants/color.js";
|
|
87
|
+
import "../../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
|
|
88
|
+
import "../../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
|
|
89
|
+
import "../../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
|
|
90
|
+
import "../../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
|
|
91
|
+
import "../../../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
|
|
92
|
+
import "../../../shared-utils/Object3DHelper/Helper/RotateHelper.js";
|
|
93
|
+
import "../../../shared-utils/Object3DHelper/Helper/HTML/tipsDom.js";
|
|
94
|
+
import "../../../shared-utils/Object3DHelper/Helper/HTML/utils/createElement.js";
|
|
95
|
+
import "../../../shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js";
|
|
96
|
+
import "../../../shared-utils/Object3DHelper/Helper/HTML/rectangleScaleDom.js";
|
|
97
|
+
import "../../../shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
|
|
98
|
+
import "../../../shared-utils/Object3DHelper/Controller/MoveController.js";
|
|
99
|
+
import "../../../shared-utils/Object3DHelper/Base/BaseController.js";
|
|
100
|
+
import "../../../shared-utils/threex/domevents/index.js";
|
|
101
|
+
import "../../../shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
|
|
102
|
+
import "../../../shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
|
|
103
|
+
import "../../../Object3DHelperPlugin/FiveControllerWrapper.js";
|
|
104
|
+
import "../../../shared-utils/Object3DHelper/index.js";
|
|
105
|
+
import "../../../shared-utils/Object3DHelper/Controller/RotateController.js";
|
|
106
|
+
import "../../../shared-utils/math/rad2Deg.js";
|
|
107
|
+
import "../../../shared-utils/math/deg2Rad.js";
|
|
108
|
+
import "../../../shared-utils/Object3DHelper/Controller/CSS3DScaleController.js";
|
|
109
|
+
import "../../../shared-utils/Object3DHelper/Controller/RectangleScaleController.js";
|
|
110
|
+
import "../../../shared-utils/Object3DHelper/utils/vectorIsEqual.js";
|
|
111
|
+
import "../../../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
|
|
112
|
+
import "../../../shared-utils/Object3DHelper/Controller/BoundingBoxController.js";
|
|
113
|
+
import "../../../shared-utils/Object3DHelper/Helper/ScaleHelper.js";
|
|
114
|
+
import "../../../shared-utils/Object3DHelper/Controller/ScaleController.js";
|
|
115
|
+
import "../../../shared-utils/five/fiveModelLoad.js";
|
|
116
|
+
import "../../../shared-utils/five/FiveDomEvents.js";
|
|
117
|
+
import "../../../shared-utils/five/calculateThreeMouse.js";
|
|
62
118
|
function Q(t) {
|
|
63
119
|
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}');
|
|
64
120
|
}
|
|
65
121
|
function V(t) {
|
|
66
|
-
let
|
|
67
|
-
return
|
|
122
|
+
let e, n, d, l, c, s, w, i, p, a, g, v;
|
|
123
|
+
return l = new H({
|
|
68
124
|
props: {
|
|
69
125
|
center: !0,
|
|
70
126
|
blurRadius: 15,
|
|
71
127
|
spreadRadius: 5,
|
|
72
128
|
opacity: 0.3
|
|
73
129
|
}
|
|
74
|
-
}),
|
|
130
|
+
}), p = new J({
|
|
75
131
|
props: {
|
|
76
132
|
icon: (
|
|
77
133
|
/*url*/
|
|
@@ -82,129 +138,129 @@ function V(t) {
|
|
|
82
138
|
t[1]
|
|
83
139
|
)
|
|
84
140
|
}
|
|
85
|
-
}),
|
|
141
|
+
}), p.$on(
|
|
86
142
|
"iconLoaded",
|
|
87
143
|
/*iconLoaded_handler*/
|
|
88
144
|
t[7]
|
|
89
145
|
), {
|
|
90
146
|
c() {
|
|
91
|
-
|
|
92
|
-
|
|
147
|
+
e = 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(
|
|
148
|
+
s,
|
|
93
149
|
"transition-delay",
|
|
94
150
|
/*folded*/
|
|
95
151
|
(t[3] ? (
|
|
96
152
|
/*foldDelay*/
|
|
97
153
|
t[5]
|
|
98
154
|
) : 0) + "ms"
|
|
99
|
-
), z(
|
|
100
|
-
|
|
155
|
+
), z(i, "class", "tag-folded-point svelte-7aiuwz"), y(
|
|
156
|
+
i,
|
|
101
157
|
"transition-delay",
|
|
102
158
|
/*folded*/
|
|
103
159
|
(t[3] ? (
|
|
104
160
|
/*foldDelay*/
|
|
105
161
|
t[5]
|
|
106
162
|
) : 0) + "ms"
|
|
107
|
-
), z(
|
|
108
|
-
|
|
163
|
+
), z(e, "class", "tag-point-wrapper svelte-7aiuwz"), b(
|
|
164
|
+
e,
|
|
109
165
|
"unfolded",
|
|
110
166
|
/*unfolded*/
|
|
111
167
|
t[0]
|
|
112
168
|
), b(
|
|
113
|
-
|
|
169
|
+
e,
|
|
114
170
|
"folded",
|
|
115
171
|
/*folded*/
|
|
116
172
|
t[3]
|
|
117
173
|
);
|
|
118
174
|
},
|
|
119
|
-
m(
|
|
120
|
-
W(
|
|
121
|
-
|
|
175
|
+
m(o, m) {
|
|
176
|
+
W(o, e, m), f(e, n), f(e, d), A(l, e, null), f(e, c), f(e, s), f(e, w), f(e, i), A(p, i, null), a = !0, g || (v = X(
|
|
177
|
+
n,
|
|
122
178
|
"click",
|
|
123
179
|
/*handlePointClick*/
|
|
124
180
|
t[4]
|
|
125
181
|
), g = !0);
|
|
126
182
|
},
|
|
127
|
-
p(
|
|
128
|
-
|
|
183
|
+
p(o, [m]) {
|
|
184
|
+
m & /*folded*/
|
|
129
185
|
8 && y(
|
|
130
|
-
|
|
186
|
+
s,
|
|
131
187
|
"transition-delay",
|
|
132
188
|
/*folded*/
|
|
133
|
-
(
|
|
189
|
+
(o[3] ? (
|
|
134
190
|
/*foldDelay*/
|
|
135
|
-
|
|
191
|
+
o[5]
|
|
136
192
|
) : 0) + "ms"
|
|
137
193
|
);
|
|
138
194
|
const r = {};
|
|
139
|
-
|
|
195
|
+
m & /*url*/
|
|
140
196
|
4 && (r.icon = /*url*/
|
|
141
|
-
|
|
197
|
+
o[2]), m & /*width*/
|
|
142
198
|
2 && (r.width = /*width*/
|
|
143
|
-
|
|
199
|
+
o[1]), p.$set(r), m & /*folded*/
|
|
144
200
|
8 && y(
|
|
145
|
-
|
|
201
|
+
i,
|
|
146
202
|
"transition-delay",
|
|
147
203
|
/*folded*/
|
|
148
|
-
(
|
|
204
|
+
(o[3] ? (
|
|
149
205
|
/*foldDelay*/
|
|
150
|
-
|
|
206
|
+
o[5]
|
|
151
207
|
) : 0) + "ms"
|
|
152
|
-
), (!
|
|
208
|
+
), (!a || m & /*unfolded*/
|
|
153
209
|
1) && b(
|
|
154
|
-
|
|
210
|
+
e,
|
|
155
211
|
"unfolded",
|
|
156
212
|
/*unfolded*/
|
|
157
|
-
|
|
158
|
-
), (!
|
|
213
|
+
o[0]
|
|
214
|
+
), (!a || m & /*folded*/
|
|
159
215
|
8) && b(
|
|
160
|
-
|
|
216
|
+
e,
|
|
161
217
|
"folded",
|
|
162
218
|
/*folded*/
|
|
163
|
-
|
|
219
|
+
o[3]
|
|
164
220
|
);
|
|
165
221
|
},
|
|
166
|
-
i(
|
|
167
|
-
|
|
222
|
+
i(o) {
|
|
223
|
+
a || (D(l.$$.fragment, o), D(p.$$.fragment, o), a = !0);
|
|
168
224
|
},
|
|
169
|
-
o(
|
|
170
|
-
I(
|
|
225
|
+
o(o) {
|
|
226
|
+
I(l.$$.fragment, o), I(p.$$.fragment, o), a = !1;
|
|
171
227
|
},
|
|
172
|
-
d(
|
|
173
|
-
|
|
228
|
+
d(o) {
|
|
229
|
+
o && B(e), R(l), R(p), g = !1, v();
|
|
174
230
|
}
|
|
175
231
|
};
|
|
176
232
|
}
|
|
177
|
-
function Y(t,
|
|
178
|
-
let d,
|
|
233
|
+
function Y(t, e, n) {
|
|
234
|
+
let d, l, c, s;
|
|
179
235
|
const w = E("hooks");
|
|
180
|
-
let { tag:
|
|
236
|
+
let { tag: i } = e, p, a = !1;
|
|
181
237
|
const g = () => {
|
|
182
|
-
|
|
238
|
+
p !== void 0 && clearTimeout(p), a = !0, p = setTimeout(
|
|
183
239
|
() => {
|
|
184
|
-
|
|
240
|
+
a = !1;
|
|
185
241
|
},
|
|
186
242
|
800
|
|
187
243
|
);
|
|
188
244
|
}, v = (r) => {
|
|
189
|
-
|
|
190
|
-
},
|
|
191
|
-
function
|
|
245
|
+
a || (i.entryFromModel && N(i.five.state.mode) ? i.find({ targetMode: "Panorama" }).then(() => i.unfoldAndFoldOthers()) : w.emit("click", { event: r, target: "TagPoint", tag: i }));
|
|
246
|
+
}, o = (() => i.contentType === "Text" && i.data.appearance === "plane" ? 500 : 800)();
|
|
247
|
+
function m(r) {
|
|
192
248
|
G.call(this, t, r);
|
|
193
249
|
}
|
|
194
250
|
return t.$$set = (r) => {
|
|
195
|
-
"tag" in r &&
|
|
251
|
+
"tag" in r && n(6, i = r.tag);
|
|
196
252
|
}, t.$$.update = () => {
|
|
197
253
|
var r, k, T, L;
|
|
198
254
|
t.$$.dirty & /*tag*/
|
|
199
|
-
64 &&
|
|
200
|
-
1 &&
|
|
201
|
-
64 &&
|
|
202
|
-
64 &&
|
|
255
|
+
64 && n(0, d = (r = i.state) == null ? void 0 : r.unfolded), t.$$.dirty & /*unfolded*/
|
|
256
|
+
1 && n(3, l = !d), t.$$.dirty & /*tag*/
|
|
257
|
+
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*/
|
|
258
|
+
64 && n(1, s = (() => {
|
|
203
259
|
var M, $, C, F;
|
|
204
|
-
const P = ($ = (M =
|
|
260
|
+
const P = ($ = (M = i.style) == null ? void 0 : M.point) == null ? void 0 : $.width;
|
|
205
261
|
if (typeof P == "number")
|
|
206
262
|
return P;
|
|
207
|
-
const u = (F = (C =
|
|
263
|
+
const u = (F = (C = i.style) == null ? void 0 : C.point) == null ? void 0 : F.size;
|
|
208
264
|
if (typeof u == "number")
|
|
209
265
|
return u;
|
|
210
266
|
if (u === "S")
|
|
@@ -218,20 +274,20 @@ function Y(t, o, a) {
|
|
|
218
274
|
})());
|
|
219
275
|
}, g(), [
|
|
220
276
|
d,
|
|
221
|
-
m,
|
|
222
|
-
c,
|
|
223
277
|
s,
|
|
278
|
+
c,
|
|
279
|
+
l,
|
|
224
280
|
v,
|
|
281
|
+
o,
|
|
225
282
|
i,
|
|
226
|
-
|
|
227
|
-
l
|
|
283
|
+
m
|
|
228
284
|
];
|
|
229
285
|
}
|
|
230
|
-
class
|
|
231
|
-
constructor(
|
|
232
|
-
super(), q(this,
|
|
286
|
+
class ao extends j {
|
|
287
|
+
constructor(e) {
|
|
288
|
+
super(), q(this, e, Y, V, O, { tag: 6 }, Q);
|
|
233
289
|
}
|
|
234
290
|
}
|
|
235
291
|
export {
|
|
236
|
-
|
|
292
|
+
ao as default
|
|
237
293
|
};
|