@realsee/dnalogel 2.0.0-alpha.19 → 2.0.0-alpha.21
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/PanoMeasurePlugin/index.js +3 -0
- package/dist/index.es.js +3 -0
- package/dist/index.js +3 -0
- package/dist/index.umd.js +3 -0
- package/docs/classes/ModelRoomLabelController.html +6 -6
- package/docs/enums/FLOOR_PLAN_ATTACHED_TO.html +1 -1
- package/docs/enums/ModelFloorplanErrorType.html +1 -1
- package/docs/interfaces/LineJson.html +1 -1
- package/docs/interfaces/ModelChassisCompassPluginData.html +1 -1
- package/docs/interfaces/ModelChassisCompassPluginExportType.html +1 -1
- package/docs/interfaces/ModelChassisCompassPluginParameterType.html +1 -1
- package/docs/interfaces/ModelEntryDoorGuidePluginData.html +1 -1
- package/docs/interfaces/ModelEntryDoorGuidePluginExportType.html +1 -1
- package/docs/interfaces/ModelFloorplanParameterType.html +1 -1
- package/docs/interfaces/ModelFloorplanViewEvent.html +2 -2
- package/docs/interfaces/ModelItemLabelPluginData.html +1 -1
- package/docs/interfaces/ModelItemLabelPluginExportReturnsType.html +1 -1
- package/docs/interfaces/ModelItemLabelPluginParametersType.html +1 -1
- package/docs/interfaces/ModelRoomLabelPluginData.html +1 -1
- package/docs/interfaces/ModelTVVideoPluginData.html +1 -1
- package/docs/interfaces/ModelTVVideoPluginExportType.html +1 -1
- package/docs/interfaces/ModelTVVideoPluginParameterType.html +1 -1
- package/docs/interfaces/PanoCompassPluginData.html +1 -1
- package/docs/interfaces/PanoCompassPluginParameterType.html +1 -1
- package/docs/interfaces/PanoCursorRaycasterPluginExportType.html +6 -6
- package/docs/interfaces/PanoRulerPluginExportType.html +1 -1
- package/docs/interfaces/PanoRulerPluginOptions.html +1 -1
- package/docs/interfaces/PanoRulerPluginParameterType.html +1 -1
- package/docs/interfaces/PanoSpatialTagPluginData.html +1 -1
- package/docs/interfaces/PanoSpatialTagPluginExportType.html +1 -1
- package/docs/interfaces/PanoSpatialTagPluginParameterType.html +1 -1
- package/docs/interfaces/PointJson.html +1 -1
- package/docs/interfaces/RoomLabel.html +7 -7
- package/docs/interfaces/TopviewFloorplanPluginParameterType.html +8 -8
- package/docs/modules.html +12 -12
- package/libs/PanoMeasurePlugin/Modules/UIController/index.js +2 -0
- package/libs/PanoMeasurePlugin/Modules/UIController/style.js +1 -0
- package/package.json +2 -2
|
@@ -80,6 +80,7 @@ export class UIController {
|
|
|
80
80
|
this.container.remove();
|
|
81
81
|
}
|
|
82
82
|
show() {
|
|
83
|
+
this.container.style.display = 'block';
|
|
83
84
|
this.container.style.opacity = '1';
|
|
84
85
|
this.container.style.transform = 'translate(0, 0)';
|
|
85
86
|
this.revoke = new Revoke(this.measureController, this.container);
|
|
@@ -89,6 +90,7 @@ export class UIController {
|
|
|
89
90
|
}
|
|
90
91
|
hide() {
|
|
91
92
|
var _a, _b;
|
|
93
|
+
this.container.style.display = 'none';
|
|
92
94
|
this.container.style.opacity = '0';
|
|
93
95
|
this.container.style.transform = 'translate(0, 10px)';
|
|
94
96
|
(_a = this.revoke) === null || _a === void 0 ? void 0 : _a.dispose();
|
|
@@ -7,6 +7,7 @@ export const doneNormalImage = '//vrlab-static.ljcdn.com/release/web/measure/don
|
|
|
7
7
|
export const exitImage = '//vrlab-static.ljcdn.com/release/web/measure/exit.6693ad51.png';
|
|
8
8
|
export const revokeImage = '//vrlab-static.ljcdn.com/release/web/measure/revoke.3e424843.png';
|
|
9
9
|
export const uiWrapperStyle = {
|
|
10
|
+
display: 'none',
|
|
10
11
|
position: 'absolute',
|
|
11
12
|
top: '0',
|
|
12
13
|
left: '0',
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"repository": "https://github.com/realsee-developer/dnalogel.git",
|
|
8
8
|
"description": "如视 VR 看房插件合集",
|
|
9
9
|
"private": false,
|
|
10
|
-
"version": "2.0.0-alpha.
|
|
10
|
+
"version": "2.0.0-alpha.21",
|
|
11
11
|
"license": "SEE LICENSE IN TERMS.txt",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "yarn run tsb && yarn run build:rollup && yarn build:docs",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
],
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@babel/core": "^7.17.5",
|
|
30
|
-
"@realsee/five": "^5.0.0-alpha.
|
|
30
|
+
"@realsee/five": "^5.0.0-alpha.123",
|
|
31
31
|
"@rollup/plugin-alias": "^3.1.9",
|
|
32
32
|
"@rollup/plugin-commonjs": "^21.1.0",
|
|
33
33
|
"@rollup/plugin-typescript": "^8.3.2",
|