@realsee/dnalogel 3.78.1-alpha.0 → 3.79.0-alpha.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 +19 -0
- package/dist/PanoTagPlugin/typings/tag/TagConfig.d.ts +10 -8
- package/dist/PanoTagPlugin/typings/tag/TagData.d.ts +2 -3
- package/dist/index.cjs.js +96 -101
- package/dist/index.js +14483 -16495
- package/dist/index.umd.js +89 -94
- package/libs/CruisePlugin/Move.js +14 -27
- package/libs/CruisePlugin/Work.js +61 -74
- package/libs/CruisePlugin/index.js +18 -31
- package/libs/GuideLinePlugin/Controller.js +18 -31
- package/libs/GuideLinePlugin/GuideLineItem.js +16 -29
- package/libs/GuideLinePlugin/GuideLineModeItem/index.js +51 -48
- package/libs/GuideLinePlugin/GuideLineModeItem.js +16 -27
- package/libs/GuideLinePlugin/index.js +18 -31
- package/libs/PanoTagPlugin/Components/Common/TagPoint.js +1 -1
- package/libs/PanoTagPlugin/Components/Common/TagPopover/PopoverContent.js +87 -77
- package/libs/PanoTagPlugin/Components/Common/TagPopover/TagPopoverToolBar.js +189 -135
- package/libs/PanoTagPlugin/Components/Common/TagPopover/TagPopup.js +460 -432
- package/libs/PanoTagPlugin/Components/Tag/AudioTag/index.js +38 -126
- package/libs/PanoTagPlugin/Components/Tag/index.js +292 -393
- package/libs/PanoTagPlugin/Components/TagContainer.js +125 -135
- package/libs/PanoTagPlugin/Components/TagItem.js +275 -281
- package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +61 -74
- package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +95 -108
- package/libs/PanoTagPlugin/controller/index.js +41 -54
- package/libs/PanoTagPlugin/index.js +23 -36
- package/libs/PanoTagPlugin/tag.config.js +31 -1
- package/libs/PanoTagPlugin/typings/tag/TagConfig.d.ts +10 -8
- package/libs/PanoTagPlugin/typings/tag/TagData.d.ts +2 -3
- package/libs/base/BasePlugin.js +1 -1
- package/libs/index.js +169 -182
- package/libs/shared-utils/logger.js +1 -1
- package/libs/shared-utils/url/replace-static-prefix.js +12 -7
- package/libs/vendor/svelte/internal/index.js +235 -225
- package/package.json +2 -2
- package/dist/PanoTagPlugin/Components/Common/Arrow.svelte.d.ts +0 -1
- package/dist/PanoTagPlugin/Components/Common/Line/Polyline.svelte.d.ts +0 -1
- package/dist/PanoTagPlugin/Components/Common/Line/Straight.svelte.d.ts +0 -1
- package/dist/PanoTagPlugin/Components/Common/Text/FlyMText.svelte.d.ts +0 -1
- package/dist/PanoTagPlugin/Components/Common/Text/FlyText.svelte.d.ts +0 -1
- package/dist/PanoTagPlugin/Components/Tag/AudioTag/AudioTag.svelte.d.ts +0 -1
- package/dist/PanoTagPlugin/Components/Tag/ImageTextTag.svelte.d.ts +0 -1
- package/dist/PanoTagPlugin/Components/Tag/TextTag/TextPlaneTag.svelte.d.ts +0 -1
- package/dist/PanoTagPlugin/Components/Tag/TextTag/TextTag.svelte.d.ts +0 -1
- package/dist/PanoTagPlugin/Components/Tag/TextTag/index.svelte.d.ts +0 -1
- package/dist/PanoTagPlugin/utils/constants.d.ts +0 -3
- package/dist/PanoTagPlugin/utils/doUtil.d.ts +0 -1
- package/libs/PanoTagPlugin/Components/Common/Text/FlyMText.js +0 -198
- package/libs/PanoTagPlugin/Components/Common/Text/FlyMText.svelte.d.ts +0 -1
- package/libs/PanoTagPlugin/Components/Common/Text/FlyText.js +0 -258
- package/libs/PanoTagPlugin/Components/Common/Text/FlyText.svelte.d.ts +0 -1
- package/libs/PanoTagPlugin/Components/Tag/AudioTag/AudioTag.js +0 -358
- package/libs/PanoTagPlugin/Components/Tag/AudioTag/AudioTag.svelte.d.ts +0 -1
- package/libs/PanoTagPlugin/Components/Tag/ImageTextTag.js +0 -259
- package/libs/PanoTagPlugin/Components/Tag/ImageTextTag.svelte.d.ts +0 -1
- package/libs/PanoTagPlugin/Components/Tag/TextTag/TextPlaneTag.js +0 -216
- package/libs/PanoTagPlugin/Components/Tag/TextTag/TextPlaneTag.svelte.d.ts +0 -1
- package/libs/PanoTagPlugin/Components/Tag/TextTag/TextTag.js +0 -219
- package/libs/PanoTagPlugin/Components/Tag/TextTag/TextTag.svelte.d.ts +0 -1
- package/libs/PanoTagPlugin/Components/Tag/TextTag/index.js +0 -134
- package/libs/PanoTagPlugin/Components/Tag/TextTag/index.svelte.d.ts +0 -1
|
@@ -1,150 +1,62 @@
|
|
|
1
|
-
import { SvelteComponent as
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import "
|
|
1
|
+
import { SvelteComponent as p, init as m, safe_not_equal as u, create_component as s, mount_component as f, transition_in as c, transition_out as g, destroy_component as l } from "../../../../vendor/svelte/internal/index.js";
|
|
2
|
+
import d from "./AudioPlaneTag.js";
|
|
3
|
+
import "../../Common/Icon/audioIcon.js";
|
|
4
|
+
import "../../../utils/px2rem.js";
|
|
5
|
+
import "../../Common/Shadow.js";
|
|
5
6
|
import "../../../../vendor/svelte/transition/index.js";
|
|
7
|
+
import "../../../../vendor/svelte/easing/index.js";
|
|
8
|
+
import "../../Common/Text/MText.js";
|
|
6
9
|
import "../../Common/Audio.js";
|
|
7
10
|
import "../../../utils/audio/SharedAudio.js";
|
|
8
11
|
import "../../../../shared-utils/audio.js";
|
|
9
12
|
import "../../../utils/audio/AudioDiagnostics.js";
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
import "../../Common/Text/FlyMText.js";
|
|
14
|
-
import "../../Common/Text/FlyText.js";
|
|
15
|
-
import "../../../../vendor/animejs/lib/anime.es.js";
|
|
16
|
-
import "../../../../shared-utils/isNil.js";
|
|
17
|
-
import "three";
|
|
18
|
-
import "../../../utils/search.js";
|
|
19
|
-
import "../../../utils/constants.js";
|
|
20
|
-
import "../../Common/Arrow.js";
|
|
21
|
-
import "../../../Assets/Icon.js";
|
|
22
|
-
import "../../../utils/doUtil.js";
|
|
23
|
-
import "../../Common/Icon/audioIcon.js";
|
|
24
|
-
import "../../../utils/px2rem.js";
|
|
25
|
-
import "../../../../shared-utils/svelte/resizeObserver.js";
|
|
26
|
-
import "../../../../vendor/resize-observer-polyfill/dist/ResizeObserver.es.js";
|
|
27
|
-
import "../../Common/Text/MText.js";
|
|
28
|
-
function q(n) {
|
|
29
|
-
let t, o;
|
|
30
|
-
return t = new w({ props: { tag: (
|
|
13
|
+
function _(a) {
|
|
14
|
+
let e, n;
|
|
15
|
+
return e = new d({ props: { tag: (
|
|
31
16
|
/*tag*/
|
|
32
|
-
|
|
33
|
-
) } }),
|
|
17
|
+
a[0]
|
|
18
|
+
) } }), e.$on(
|
|
34
19
|
"audioRef",
|
|
35
20
|
/*audioRef*/
|
|
36
|
-
|
|
21
|
+
a[1]
|
|
37
22
|
), {
|
|
38
23
|
c() {
|
|
39
|
-
s(
|
|
40
|
-
},
|
|
41
|
-
m(e, r) {
|
|
42
|
-
_(t, e, r), o = !0;
|
|
43
|
-
},
|
|
44
|
-
p(e, r) {
|
|
45
|
-
const a = {};
|
|
46
|
-
r & /*tag*/
|
|
47
|
-
1 && (a.tag = /*tag*/
|
|
48
|
-
e[0]), t.$set(a);
|
|
49
|
-
},
|
|
50
|
-
i(e) {
|
|
51
|
-
o || (l(t.$$.fragment, e), o = !0);
|
|
52
|
-
},
|
|
53
|
-
o(e) {
|
|
54
|
-
f(t.$$.fragment, e), o = !1;
|
|
55
|
-
},
|
|
56
|
-
d(e) {
|
|
57
|
-
d(t, e);
|
|
58
|
-
}
|
|
59
|
-
};
|
|
60
|
-
}
|
|
61
|
-
function v(n) {
|
|
62
|
-
let t, o;
|
|
63
|
-
return t = new T({ props: { tag: (
|
|
64
|
-
/*tag*/
|
|
65
|
-
n[0]
|
|
66
|
-
) } }), t.$on(
|
|
67
|
-
"audioRef",
|
|
68
|
-
/*audioRef*/
|
|
69
|
-
n[2]
|
|
70
|
-
), {
|
|
71
|
-
c() {
|
|
72
|
-
s(t.$$.fragment);
|
|
73
|
-
},
|
|
74
|
-
m(e, r) {
|
|
75
|
-
_(t, e, r), o = !0;
|
|
76
|
-
},
|
|
77
|
-
p(e, r) {
|
|
78
|
-
const a = {};
|
|
79
|
-
r & /*tag*/
|
|
80
|
-
1 && (a.tag = /*tag*/
|
|
81
|
-
e[0]), t.$set(a);
|
|
82
|
-
},
|
|
83
|
-
i(e) {
|
|
84
|
-
o || (l(t.$$.fragment, e), o = !0);
|
|
85
|
-
},
|
|
86
|
-
o(e) {
|
|
87
|
-
f(t.$$.fragment, e), o = !1;
|
|
88
|
-
},
|
|
89
|
-
d(e) {
|
|
90
|
-
d(t, e);
|
|
91
|
-
}
|
|
92
|
-
};
|
|
93
|
-
}
|
|
94
|
-
function C(n) {
|
|
95
|
-
let t, o, e, r;
|
|
96
|
-
const a = [v, q], p = [];
|
|
97
|
-
function u(i, m) {
|
|
98
|
-
return (
|
|
99
|
-
/*appearance*/
|
|
100
|
-
i[1] === "line" ? 0 : (
|
|
101
|
-
/*appearance*/
|
|
102
|
-
i[1] === "plane" ? 1 : -1
|
|
103
|
-
)
|
|
104
|
-
);
|
|
105
|
-
}
|
|
106
|
-
return ~(t = u(n)) && (o = p[t] = a[t](n)), {
|
|
107
|
-
c() {
|
|
108
|
-
o && o.c(), e = b();
|
|
24
|
+
s(e.$$.fragment);
|
|
109
25
|
},
|
|
110
|
-
m(
|
|
111
|
-
|
|
26
|
+
m(t, o) {
|
|
27
|
+
f(e, t, o), n = !0;
|
|
112
28
|
},
|
|
113
|
-
p(
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
29
|
+
p(t, [o]) {
|
|
30
|
+
const i = {};
|
|
31
|
+
o & /*tag*/
|
|
32
|
+
1 && (i.tag = /*tag*/
|
|
33
|
+
t[0]), e.$set(i);
|
|
118
34
|
},
|
|
119
|
-
i(
|
|
120
|
-
|
|
35
|
+
i(t) {
|
|
36
|
+
n || (c(e.$$.fragment, t), n = !0);
|
|
121
37
|
},
|
|
122
|
-
o(
|
|
123
|
-
|
|
38
|
+
o(t) {
|
|
39
|
+
g(e.$$.fragment, t), n = !1;
|
|
124
40
|
},
|
|
125
|
-
d(
|
|
126
|
-
|
|
41
|
+
d(t) {
|
|
42
|
+
l(e, t);
|
|
127
43
|
}
|
|
128
44
|
};
|
|
129
45
|
}
|
|
130
|
-
function
|
|
131
|
-
let
|
|
132
|
-
function
|
|
133
|
-
|
|
46
|
+
function $(a, e, n) {
|
|
47
|
+
let { tag: t } = e, o;
|
|
48
|
+
function i(r) {
|
|
49
|
+
o = r.detail;
|
|
134
50
|
}
|
|
135
|
-
return
|
|
136
|
-
"tag" in
|
|
137
|
-
},
|
|
138
|
-
var u;
|
|
139
|
-
n.$$.dirty & /*tag*/
|
|
140
|
-
1 && o(1, e = (u = r.data.appearance) != null ? u : "line");
|
|
141
|
-
}, [r, e, p];
|
|
51
|
+
return t.play = () => o.play(), t.pause = () => o.pause(), a.$$set = (r) => {
|
|
52
|
+
"tag" in r && n(0, t = r.tag);
|
|
53
|
+
}, [t, i];
|
|
142
54
|
}
|
|
143
|
-
class
|
|
144
|
-
constructor(
|
|
145
|
-
super(),
|
|
55
|
+
class b extends p {
|
|
56
|
+
constructor(e) {
|
|
57
|
+
super(), m(this, e, $, _, u, { tag: 0 });
|
|
146
58
|
}
|
|
147
59
|
}
|
|
148
60
|
export {
|
|
149
|
-
|
|
61
|
+
b as default
|
|
150
62
|
};
|