@realsee/dnalogel 3.53.2 → 3.53.4

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.
@@ -10,9 +10,13 @@ export type CruiseData = {
10
10
  effect: 'Move' | 'Rotate';
11
11
  /** five走点动画 */
12
12
  moveEffect?: MoveEffect;
13
- /** 移动速度 */
13
+ /**
14
+ * @description 移动速度 m/ms
15
+ */
14
16
  moveSpeed?: number;
15
- /** 旋转速度 */
17
+ /**
18
+ * @description 旋转速度 rad/ms
19
+ */
16
20
  rotateSpeed?: number;
17
21
  } & FivePoseAndState;
18
22
  export interface CruiseKeyframe {
@@ -257,7 +257,7 @@ class R {
257
257
  /** 更新可见性 */
258
258
  i(this, "updateVisible", () => {
259
259
  const e = (() => !this.parent.visible || !this.plugin.state.enabled || !this.plugin.state.visible ? !1 : this.customVisible !== null ? this.customVisible : this.inWalkAnimation ? !0 : this.modeVisible && this.defaultVisible && this.floorVisible)();
260
- this.visible !== e && (this.visible = e, e && this.textureHasLoaded ? this.doShow() : this.doHide());
260
+ this.visible = e, e && this.textureHasLoaded ? this.doShow() : this.doHide();
261
261
  });
262
262
  i(this, "onFlowAnimeUpdate", (e) => {
263
263
  const { progress: t } = e;
@@ -534,7 +534,7 @@ class R {
534
534
  }
535
535
  doShow() {
536
536
  var e, t;
537
- this.mode === "model" && this.flowAnime.play(), this.five.scene.add(this.group), (e = this.startTagContainer) == null || e.plugin.show(), (t = this.endTagContainer) == null || t.plugin.show(), this.five.needsRender = !0;
537
+ this.mode === "model" && !this.flowAnime.isPlaying() && this.flowAnime.play(), this.five.scene.add(this.group), (e = this.startTagContainer) == null || e.plugin.show(), (t = this.endTagContainer) == null || t.plugin.show(), this.five.needsRender = !0;
538
538
  }
539
539
  doHide() {
540
540
  var e, t;
@@ -1,33 +1,41 @@
1
- var c = Object.defineProperty;
2
- var r = Object.getOwnPropertySymbols;
3
- var u = Object.prototype.hasOwnProperty, L = Object.prototype.propertyIsEnumerable;
4
- var P = (i, s, e) => s in i ? c(i, s, { enumerable: !0, configurable: !0, writable: !0, value: e }) : i[s] = e;
5
- var l = (i, s) => {
1
+ var P = Object.defineProperty, f = Object.defineProperties;
2
+ var m = Object.getOwnPropertyDescriptors;
3
+ var h = Object.getOwnPropertySymbols;
4
+ var c = Object.prototype.hasOwnProperty, d = Object.prototype.propertyIsEnumerable;
5
+ var n = (t, i, e) => i in t ? P(t, i, { enumerable: !0, configurable: !0, writable: !0, value: e }) : t[i] = e, u = (t, i) => {
6
+ for (var e in i || (i = {}))
7
+ c.call(i, e) && n(t, e, i[e]);
8
+ if (h)
9
+ for (var e of h(i))
10
+ d.call(i, e) && n(t, e, i[e]);
11
+ return t;
12
+ }, L = (t, i) => f(t, m(i));
13
+ var p = (t, i) => {
6
14
  var e = {};
7
- for (var t in i)
8
- u.call(i, t) && s.indexOf(t) < 0 && (e[t] = i[t]);
9
- if (i != null && r)
10
- for (var t of r(i))
11
- s.indexOf(t) < 0 && L.call(i, t) && (e[t] = i[t]);
15
+ for (var s in t)
16
+ c.call(t, s) && i.indexOf(s) < 0 && (e[s] = t[s]);
17
+ if (t != null && h)
18
+ for (var s of h(t))
19
+ i.indexOf(s) < 0 && d.call(t, s) && (e[s] = t[s]);
12
20
  return e;
13
21
  };
14
- var d = (i, s, e) => (P(i, typeof s != "symbol" ? s + "" : s, e), e);
15
- import { CircleMesh as p } from "./Circle.js";
16
- import { LineMesh as y } from "./Line.js";
17
- class S extends p {
22
+ var y = (t, i, e) => (n(t, typeof i != "symbol" ? i + "" : i, e), e);
23
+ import { CircleMesh as M } from "./Circle.js";
24
+ import { LineMesh as S } from "./Line.js";
25
+ class w extends M {
18
26
  constructor(e) {
19
- const o = e != null ? e : {}, { normal: t, radius: h, center: n } = o, g = l(o, ["normal", "radius", "center"]);
20
- super(g);
21
- d(this, "edgeLine");
22
- this.edgeLine = new y(g), this.add(this.edgeLine), t && h && n && this.setPoints({ normal: t, radius: h, center: n });
27
+ const l = e != null ? e : {}, { normal: s, radius: g, center: o } = l, r = p(l, ["normal", "radius", "center"]);
28
+ super(r);
29
+ y(this, "edgeLine");
30
+ this.edgeLine = new S(r), this.add(this.edgeLine), s && g && o && this.setPoints({ normal: s, radius: g, center: o });
23
31
  }
24
32
  setPoints(...e) {
25
33
  super.setPoints(...e);
26
- const t = this.meshFont.geometry.vertices.slice(1);
27
- this.edgeLine.setPoints(t.concat(t[0]));
34
+ const s = this.meshFont.geometry.vertices.slice(1);
35
+ this.edgeLine.setPoints(s.concat(s[0]));
28
36
  }
29
37
  setStyle(e) {
30
- super.setStyle(e), this.edgeLine.setStyle(e);
38
+ super.setStyle(e), this.edgeLine.setStyle(L(u({}, e), { opacity: 1 }));
31
39
  }
32
40
  highlight() {
33
41
  super.highlight(), this.edgeLine.highlight();
@@ -37,5 +45,5 @@ class S extends p {
37
45
  }
38
46
  }
39
47
  export {
40
- S as CircleWithEdgeMesh
48
+ w as CircleWithEdgeMesh
41
49
  };
@@ -1,38 +1,38 @@
1
- var f = Object.defineProperty, p = Object.defineProperties;
1
+ var p = Object.defineProperty, f = Object.defineProperties;
2
2
  var P = Object.getOwnPropertyDescriptors;
3
3
  var n = Object.getOwnPropertySymbols;
4
- var g = Object.prototype.hasOwnProperty, u = Object.prototype.propertyIsEnumerable;
5
- var l = (i, e, t) => e in i ? f(i, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : i[e] = t, d = (i, e) => {
4
+ var y = Object.prototype.hasOwnProperty, d = Object.prototype.propertyIsEnumerable;
5
+ var l = (i, e, t) => e in i ? p(i, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : i[e] = t, o = (i, e) => {
6
6
  for (var t in e || (e = {}))
7
- g.call(e, t) && l(i, t, e[t]);
7
+ y.call(e, t) && l(i, t, e[t]);
8
8
  if (n)
9
9
  for (var t of n(e))
10
- u.call(e, t) && l(i, t, e[t]);
10
+ d.call(e, t) && l(i, t, e[t]);
11
11
  return i;
12
- }, y = (i, e) => p(i, P(e));
12
+ }, r = (i, e) => f(i, P(e));
13
13
  var c = (i, e) => {
14
14
  var t = {};
15
15
  for (var s in i)
16
- g.call(i, s) && e.indexOf(s) < 0 && (t[s] = i[s]);
16
+ y.call(i, s) && e.indexOf(s) < 0 && (t[s] = i[s]);
17
17
  if (i != null && n)
18
18
  for (var s of n(i))
19
- e.indexOf(s) < 0 && u.call(i, s) && (t[s] = i[s]);
19
+ e.indexOf(s) < 0 && d.call(i, s) && (t[s] = i[s]);
20
20
  return t;
21
21
  };
22
- var o = (i, e, t) => (l(i, typeof e != "symbol" ? e + "" : e, t), t);
22
+ var g = (i, e, t) => (l(i, typeof e != "symbol" ? e + "" : e, t), t);
23
23
  import { PolylineMesh as W } from "./Polyline.js";
24
24
  import { PolygonMesh as C } from "./Polygon.js";
25
25
  import { intersectWithoutLine as E } from "../../shared-utils/three/core/Raycaster.js";
26
26
  class w extends C {
27
27
  constructor(t) {
28
- const r = t != null ? t : {}, { points: s } = r, h = c(r, ["points"]);
28
+ const u = t != null ? t : {}, { points: s } = u, h = c(u, ["points"]);
29
29
  super();
30
- o(this, "name", "PolygonWithEdgeMesh");
31
- o(this, "line", new W());
30
+ g(this, "name", "PolygonWithEdgeMesh");
31
+ g(this, "line", new W());
32
32
  s && this.setPoints(s), h && this.setStyle(h);
33
33
  }
34
34
  get style() {
35
- return y(d({}, super.style), {
35
+ return r(o({}, super.style), {
36
36
  lineWidth: this.lineWidth,
37
37
  lineColor: this.lineColor
38
38
  });
@@ -52,7 +52,7 @@ class w extends C {
52
52
  super.setPoints(t), this.points && (this.line.setPoints(this.points, s), this.addIfNotExists(this.line));
53
53
  }
54
54
  setStyle(t) {
55
- super.setStyle(t), this.line.setStyle(t);
55
+ super.setStyle(t), this.line.setStyle(r(o({}, t), { opacity: 1 }));
56
56
  }
57
57
  highlight() {
58
58
  super.highlight(), this.line.highlight();
@@ -1,44 +1,45 @@
1
- var b = Object.defineProperty;
1
+ var C = Object.defineProperty, w = Object.defineProperties;
2
+ var V = Object.getOwnPropertyDescriptors;
2
3
  var d = Object.getOwnPropertySymbols;
3
- var C = Object.prototype.hasOwnProperty, w = Object.prototype.propertyIsEnumerable;
4
- var c = (o, t, e) => t in o ? b(o, t, { enumerable: !0, configurable: !0, writable: !0, value: e }) : o[t] = e, a = (o, t) => {
5
- for (var e in t || (t = {}))
6
- C.call(t, e) && c(o, e, t[e]);
4
+ var I = Object.prototype.hasOwnProperty, A = Object.prototype.propertyIsEnumerable;
5
+ var a = (o, e, t) => e in o ? C(o, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : o[e] = t, l = (o, e) => {
6
+ for (var t in e || (e = {}))
7
+ I.call(e, t) && a(o, t, e[t]);
7
8
  if (d)
8
- for (var e of d(t))
9
- w.call(t, e) && c(o, e, t[e]);
9
+ for (var t of d(e))
10
+ A.call(e, t) && a(o, t, e[t]);
10
11
  return o;
11
- };
12
- var s = (o, t, e) => (c(o, typeof t != "symbol" ? t + "" : t, e), e);
13
- import { IObject3D as V } from "../../shared-utils/three/IObject3D.js";
14
- import { anyPositionToVector3 as f } from "../../shared-utils/positionToVector3.js";
12
+ }, f = (o, e) => w(o, V(e));
13
+ var s = (o, e, t) => (a(o, typeof e != "symbol" ? e + "" : e, t), t);
14
+ import { IObject3D as S } from "../../shared-utils/three/IObject3D.js";
15
+ import { anyPositionToVector3 as u } from "../../shared-utils/positionToVector3.js";
15
16
  import * as i from "three";
16
- import { intersectWithoutLine as I } from "../../shared-utils/three/core/Raycaster.js";
17
- import { ColoredMesh as A } from "../utils/three/ColoredMesh.js";
18
- import { PrismGeometry as S } from "../../shared-utils/three/core/PrismGeometry.js";
19
- import { triangleArea as E, triangleCenter as W } from "../../shared-utils/three/geometryUtil.js";
20
- import { LineMesh as v } from "./Line.js";
21
- import { LineGeometry as N } from "../../shared-utils/three/core/LineGeometry.js";
22
- class H extends V {
23
- constructor(e) {
17
+ import { intersectWithoutLine as E } from "../../shared-utils/three/core/Raycaster.js";
18
+ import { ColoredMesh as W } from "../utils/three/ColoredMesh.js";
19
+ import { PrismGeometry as v } from "../../shared-utils/three/core/PrismGeometry.js";
20
+ import { triangleArea as N, triangleCenter as _ } from "../../shared-utils/three/geometryUtil.js";
21
+ import { LineMesh as x } from "./Line.js";
22
+ import { LineGeometry as G } from "../../shared-utils/three/core/LineGeometry.js";
23
+ class k extends S {
24
+ constructor(t) {
24
25
  super();
25
26
  s(this, "name", "PrismMesh");
26
27
  s(this, "_geometryInfoCache");
27
28
  s(this, "geometryInfoNeedUpdate", !0);
28
- s(this, "prismMesh", new A());
29
- s(this, "edgeMesh", new v());
29
+ s(this, "prismMesh", new W());
30
+ s(this, "edgeMesh", new x());
30
31
  s(this, "paramStyle");
31
- this.prismMesh.name = "PrismMesh", this.prismMesh.geometry = new S(), this.edgeMesh.name = "EdgeMesh", this.addIfNotExists(this.prismMesh, this.edgeMesh), e && this.setPoints(e), this.setStyle(e);
32
+ this.prismMesh.name = "PrismMesh", this.prismMesh.geometry = new v(), this.edgeMesh.name = "EdgeMesh", this.addIfNotExists(this.prismMesh, this.edgeMesh), t && this.setPoints(t), this.setStyle(t);
32
33
  }
33
34
  get topPosition() {
34
35
  return new i.Vector3().fromArray(this.prismMesh.geometry.topPosition);
35
36
  }
36
37
  get bottomPositions() {
37
- return this.prismMesh.geometry.bottomPositions.map((e) => new i.Vector3().fromArray(e));
38
+ return this.prismMesh.geometry.bottomPositions.map((t) => new i.Vector3().fromArray(t));
38
39
  }
39
40
  get topPositions() {
40
- const e = this.bottomPositions[0].clone().sub(this.topPosition);
41
- return this.bottomPositions.map((r) => r.clone().sub(e));
41
+ const t = this.bottomPositions[0].clone().sub(this.topPosition);
42
+ return this.bottomPositions.map((r) => r.clone().sub(t));
42
43
  }
43
44
  get style() {
44
45
  return {
@@ -66,23 +67,23 @@ class H extends V {
66
67
  return this.localCenter.clone();
67
68
  }
68
69
  get localCenter() {
69
- var e;
70
- return (e = this.geometryInfo.center.clone()) != null ? e : new i.Vector3(9999, 9999, 9999);
70
+ var t;
71
+ return (t = this.geometryInfo.center.clone()) != null ? t : new i.Vector3(9999, 9999, 9999);
71
72
  }
72
73
  get geometryInfo() {
73
74
  if (this.geometryInfoNeedUpdate) {
74
75
  this.geometryInfoNeedUpdate = !1;
75
- const e = this.prismMesh.geometry.bottomPositions, r = this.prismMesh.geometry.topPosition;
76
- if (!e || e.length < 3 || !r) {
76
+ const t = this.prismMesh.geometry.bottomPositions, r = this.prismMesh.geometry.topPosition;
77
+ if (!t || t.length < 3 || !r) {
77
78
  this._geometryInfoCache = void 0;
78
79
  return;
79
80
  }
80
- const n = e.map((l, h) => {
81
- if (!(h >= e.length - 2))
81
+ const n = t.map((c, h) => {
82
+ if (!(h >= t.length - 2))
82
83
  return [
83
- new i.Vector3().fromArray(e[0]),
84
- new i.Vector3().fromArray(e[h + 1]),
85
- new i.Vector3().fromArray(e[h + 2])
84
+ new i.Vector3().fromArray(t[0]),
85
+ new i.Vector3().fromArray(t[h + 1]),
86
+ new i.Vector3().fromArray(t[h + 2])
86
87
  ];
87
88
  }).filter(Boolean);
88
89
  if (n.length === 0) {
@@ -90,13 +91,13 @@ class H extends V {
90
91
  return;
91
92
  }
92
93
  let g = 0, m = new i.Vector3();
93
- for (const [l, h, p] of n) {
94
- const y = E(l, h, p), P = W(l, h, p, y);
95
- g += y, m.add(P);
94
+ for (const [c, h, p] of n) {
95
+ const y = N(c, h, p), b = _(c, h, p, y);
96
+ g += y, m.add(b);
96
97
  }
97
98
  m = m.divideScalar(g);
98
- const u = new i.Vector3().fromArray(r).sub(new i.Vector3().fromArray(e[0])), M = m.clone().add(u.divideScalar(2));
99
- this._geometryInfoCache = { center: M };
99
+ const M = new i.Vector3().fromArray(r).sub(new i.Vector3().fromArray(t[0])), P = m.clone().add(M.divideScalar(2));
100
+ this._geometryInfoCache = { center: P };
100
101
  }
101
102
  return this._geometryInfoCache;
102
103
  }
@@ -112,15 +113,15 @@ class H extends V {
112
113
  get lineColor() {
113
114
  return this.edgeMesh.color;
114
115
  }
115
- setStyle(e = {}) {
116
- this.paramStyle = a(a({}, this.paramStyle), e), this.prismMesh.setStyle(this.paramStyle), this.edgeMesh.setStyle(this.paramStyle);
116
+ setStyle(t = {}) {
117
+ this.paramStyle = l(l({}, this.paramStyle), t), this.prismMesh.setStyle(this.paramStyle), this.edgeMesh.setStyle(f(l({}, this.paramStyle), { opacity: 1 }));
117
118
  }
118
- setPoints(e) {
119
+ setPoints(t) {
119
120
  var r;
120
121
  this.prismMesh.geometry.setPosition({
121
- bottomPositions: (r = e.points) == null ? void 0 : r.map(f).map((n) => n.toArray()),
122
- topPosition: e.heightPoint ? f(e.heightPoint).toArray() : void 0
123
- }), this.edgeMesh.geometry = new N().fromEdgesGeometry(new i.EdgesGeometry(this.prismMesh.geometry)), this.geometryInfoNeedUpdate = !0;
122
+ bottomPositions: (r = t.points) == null ? void 0 : r.map(u).map((n) => n.toArray()),
123
+ topPosition: t.heightPoint ? u(t.heightPoint).toArray() : void 0
124
+ }), this.edgeMesh.geometry = new G().fromEdgesGeometry(new i.EdgesGeometry(this.prismMesh.geometry)), this.geometryInfoNeedUpdate = !0;
124
125
  }
125
126
  highlight() {
126
127
  this.prismMesh.highlight();
@@ -128,10 +129,10 @@ class H extends V {
128
129
  unhighlight() {
129
130
  this.prismMesh.unhighlight();
130
131
  }
131
- raycast(e, r) {
132
- return this.children.forEach((n) => I(n, e, r, !0)), !1;
132
+ raycast(t, r) {
133
+ return this.children.forEach((n) => E(n, t, r, !0)), !1;
133
134
  }
134
135
  }
135
136
  export {
136
- H as PrismMesh
137
+ k as PrismMesh
137
138
  };
@@ -1,36 +1,37 @@
1
- var c = Object.defineProperty;
1
+ var d = Object.defineProperty, f = Object.defineProperties;
2
+ var P = Object.getOwnPropertyDescriptors;
2
3
  var h = Object.getOwnPropertySymbols;
3
- var u = Object.prototype.hasOwnProperty, p = Object.prototype.propertyIsEnumerable;
4
- var n = (i, e, t) => e in i ? c(i, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : i[e] = t, l = (i, e) => {
4
+ var p = Object.prototype.hasOwnProperty, u = Object.prototype.propertyIsEnumerable;
5
+ var l = (i, e, t) => e in i ? d(i, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : i[e] = t, n = (i, e) => {
5
6
  for (var t in e || (e = {}))
6
- u.call(e, t) && n(i, t, e[t]);
7
+ p.call(e, t) && l(i, t, e[t]);
7
8
  if (h)
8
9
  for (var t of h(e))
9
- p.call(e, t) && n(i, t, e[t]);
10
+ u.call(e, t) && l(i, t, e[t]);
10
11
  return i;
11
- };
12
- var y = (i, e) => {
12
+ }, y = (i, e) => f(i, P(e));
13
+ var c = (i, e) => {
13
14
  var t = {};
14
15
  for (var s in i)
15
- u.call(i, s) && e.indexOf(s) < 0 && (t[s] = i[s]);
16
+ p.call(i, s) && e.indexOf(s) < 0 && (t[s] = i[s]);
16
17
  if (i != null && h)
17
18
  for (var s of h(i))
18
- e.indexOf(s) < 0 && p.call(i, s) && (t[s] = i[s]);
19
+ e.indexOf(s) < 0 && u.call(i, s) && (t[s] = i[s]);
19
20
  return t;
20
21
  };
21
- var o = (i, e, t) => (n(i, typeof e != "symbol" ? e + "" : e, t), t);
22
- import { RectangleMesh as d } from "./Rectangle.js";
23
- import { PolylineMesh as f } from "./Polyline.js";
24
- class W extends d {
22
+ var o = (i, e, t) => (l(i, typeof e != "symbol" ? e + "" : e, t), t);
23
+ import { RectangleMesh as M } from "./Rectangle.js";
24
+ import { PolylineMesh as S } from "./Polyline.js";
25
+ class R extends M {
25
26
  constructor(t) {
26
- const r = t != null ? t : {}, { points: s } = r, g = y(r, ["points"]);
27
+ const r = t != null ? t : {}, { points: s } = r, g = c(r, ["points"]);
27
28
  super();
28
29
  o(this, "name", "RectangleWithEdgeMesh");
29
- o(this, "line", new f());
30
+ o(this, "line", new S());
30
31
  s && this.setPoints(s), g && this.setStyle(g);
31
32
  }
32
33
  get style() {
33
- return l(l({}, super.style), this.line.style);
34
+ return n(n({}, super.style), this.line.style);
34
35
  }
35
36
  get lineWidth() {
36
37
  return this.line.lineWidth;
@@ -42,7 +43,7 @@ class W extends d {
42
43
  super.setPoints(t), this.points && (this.line.setPoints([this.points[0], this.points[1], this.points[2], this.points[3], this.points[0]]), this.addIfNotExists(this.line));
43
44
  }
44
45
  setStyle(t) {
45
- super.setStyle(t), this.line.setStyle(t);
46
+ super.setStyle(t), this.line.setStyle(y(n({}, t), { opacity: 1 }));
46
47
  }
47
48
  highlight() {
48
49
  super.highlight(), this.line.highlight();
@@ -52,5 +53,5 @@ class W extends d {
52
53
  }
53
54
  }
54
55
  export {
55
- W as RectangleWithEdgeMesh
56
+ R as RectangleWithEdgeMesh
56
57
  };
@@ -40,6 +40,7 @@ class C extends M {
40
40
  transparent: !0,
41
41
  side: h.DoubleSide,
42
42
  depthTest: !0,
43
+ depthWrite: !1,
43
44
  opacity: (m = t == null ? void 0 : t.opacity) != null ? m : 0.5
44
45
  }), l = new h.MeshBasicMaterial({
45
46
  color: 16777215,
@@ -19,7 +19,7 @@ let b = class {
19
19
  /**
20
20
  * @realsee/dnalogel 版本号
21
21
  */
22
- i(this, "VERSION", "3.53.2");
22
+ i(this, "VERSION", "3.53.4");
23
23
  i(this, "NAME");
24
24
  i(this, "five");
25
25
  i(this, "workUtil");
@@ -1,6 +1,6 @@
1
1
  function A() {
2
2
  console.debug(
3
- "%c %c@realsee/dnalogel %cv3.53.2",
3
+ "%c %c@realsee/dnalogel %cv3.53.4",
4
4
  [
5
5
  "background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAMCAMAAACHgmeRAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAABLFBMVEUAAAAapPoap/oaqvkbrfkbr/gZnfwZoPsaqfnD4v/E4/8Ylv0clPm93/+/4P/B4f8Yj/683/8Wif+33P8Uhv+x2f8ShP+s1v8Pgf+n0/8Nf/+h0f8Lff8Lff8Nf/9dl/+czv8KfP8KfP+Lxf+Uyv+Xy/+Hwv+Jw/+Mxf+Oxv+RyP8aovsapfoap/oZmfwZm/wZnvsYnPsYkf4YlP0NePsDYfgYcfi43f+63v8Xiv8Xjf4EWfwCV/sWZ/qz2v+02/8Vh/8WiP8EUf8CTf4WXv2u1/+v2P8Thf8Thv8ETf8CR/8VV/+o1f+q1f8Qgv8Rg/8DSv8BRf8UVP+j0v+k0v8OgP8Pgf8DR/8DQv9Nhf+dzv+fz/+Kv/+Vyv+Xy/+azf+Oxv+Qx/+SyP////8MUhLdAAAAK3RSTlMACEWQ2bd98uQECPXxqO7c+Pb49vj2+Pb49vj23Oul8fMHA+TwerXXjEIG2P+bHgAAAAFiS0dEY1y+LaoAAAB+SURBVAjXY2BgZGJmYWVgYGBgY9fW0eVg4ORi4NbTNzDk4eXjZxAwMjYxNTO3EGQQsrSytrG1sxdmEHFwdHJ2cXUTZRBz9/D08vbxFWeQ8PMPCAwKDpFkkAoNC4+IjIqWZpCRlZOPiY2LV2BQVGJQTkhMUlEFWaOmrqGpxQAAyg0S9Dq+VPYAAAAASUVORK5CYII=')",
6
6
  "background-repeat: no-repeat",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@realsee/dnalogel",
3
- "version": "3.53.2",
3
+ "version": "3.53.4",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./libs/index.js",
6
6
  "types": "./libs/index.d.ts",
@@ -19,7 +19,7 @@
19
19
  "dev:libs": "NODE_ENV=development BUILD_MODULE=libs vite build -m development",
20
20
  "dev:dist": "NODE_ENV=development BUILD_MODULE=dist vite build -m development",
21
21
  "dev:components": "NODE_ENV=development BUILD_MODULE=components vite build -m development",
22
- "build": "run-p build:*",
22
+ "build": "run-p docs build:*",
23
23
  "build:libs": "NODE_ENV=production BUILD_MODULE=libs vite build -m production",
24
24
  "build:dist": "NODE_ENV=production BUILD_MODULE=dist vite build -m production",
25
25
  "build:components": "NODE_ENV=production BUILD_MODULE=components vite build -m production",
@@ -79,7 +79,7 @@
79
79
  "svelte-preprocess": "^5.0.4",
80
80
  "three": "0.117.1",
81
81
  "type-fest": "4.13.1",
82
- "typedoc": "^0.24.8",
82
+ "typedoc": "^0.26.11",
83
83
  "typescript": "5.5.4",
84
84
  "vite": "4.3.2",
85
85
  "vite-plugin-dts": "^2.3.0"