@realsee/dnalogel 3.47.0 → 3.47.2
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/index.cjs.js +3 -3
- package/dist/index.js +3 -4
- package/dist/index.umd.js +3 -3
- package/dist/shared-utils/three/PointSelector/index.d.ts +2 -1
- package/libs/PanoTagPlugin/tag.config.js +1 -2
- package/libs/base/BasePlugin.js +1 -1
- package/libs/shared-utils/logger.js +1 -1
- package/libs/shared-utils/three/PointSelector/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -3,8 +3,9 @@ import { PointSelectorHelper, type PointIntersection, type PointSelectorHelperCo
|
|
|
3
3
|
import { type Vector3 } from 'three';
|
|
4
4
|
import * as THREE from 'three';
|
|
5
5
|
import { Subscribe } from '../../Subscribe';
|
|
6
|
+
import type { LiteralString } from '../../../typings/utils.type';
|
|
6
7
|
export type { PointIntersection };
|
|
7
|
-
type ActionIfNoModelUnderMouse = 'virtualPoint' | 'lastPoint' | 'disable'
|
|
8
|
+
export type ActionIfNoModelUnderMouse = LiteralString<'virtualPoint' | 'lastPoint' | 'disable'>;
|
|
8
9
|
interface Config {
|
|
9
10
|
/**
|
|
10
11
|
* @description: 选点的两种模式, 'fixed' 为固定选点为屏幕中心点,拖动five画布来更新点,'cursor' 为跟随鼠标移动来更新点, 'auto' 则根据设备类型自动选择
|
package/libs/base/BasePlugin.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
function A() {
|
|
2
2
|
console.debug(
|
|
3
|
-
"%c %c@realsee/dnalogel %cv3.47.
|
|
3
|
+
"%c %c@realsee/dnalogel %cv3.47.2",
|
|
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",
|
|
@@ -3,8 +3,9 @@ import { PointSelectorHelper, type PointIntersection, type PointSelectorHelperCo
|
|
|
3
3
|
import { type Vector3 } from 'three';
|
|
4
4
|
import * as THREE from 'three';
|
|
5
5
|
import { Subscribe } from '../../Subscribe';
|
|
6
|
+
import type { LiteralString } from '../../../typings/utils.type';
|
|
6
7
|
export type { PointIntersection };
|
|
7
|
-
type ActionIfNoModelUnderMouse = 'virtualPoint' | 'lastPoint' | 'disable'
|
|
8
|
+
export type ActionIfNoModelUnderMouse = LiteralString<'virtualPoint' | 'lastPoint' | 'disable'>;
|
|
8
9
|
interface Config {
|
|
9
10
|
/**
|
|
10
11
|
* @description: 选点的两种模式, 'fixed' 为固定选点为屏幕中心点,拖动five画布来更新点,'cursor' 为跟随鼠标移动来更新点, 'auto' 则根据设备类型自动选择
|