@xtctwins/tctwins-bimx-engine 0.2.28 → 0.2.29
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/README.md +6 -6
- package/dist/{AnnotationTool-BMlydBwR.mjs → AnnotationTool-SBYW5l9D.mjs} +3 -3
- package/dist/BIMX_Viewer_Lib.es.js +3 -3
- package/dist/BIMX_Viewer_Lib.umd.js +165 -163
- package/dist/CommentTool-CgOJaw3r.mjs +1152 -0
- package/dist/HiddenTool-oLAXVx5n.mjs +60 -0
- package/dist/{InspectorTool-BMfqKduX.mjs → InspectorTool-BFF1y0Hd.mjs} +3 -3
- package/dist/MeasureTool-TgRsk80O.mjs +326 -0
- package/dist/MouseTool-B_K0VTfv.mjs +84 -0
- package/dist/{NavigateTool-0odb31vM.mjs → NavigateTool-Pt1RtvU7.mjs} +1 -1
- package/dist/{RoamTool-Pck7gauj.mjs → RoamTool-CxFRCXo2.mjs} +19 -19
- package/dist/{ScreenShotTool-D5P9DmgQ.mjs → ScreenShotTool-C8d9Jpt5.mjs} +54 -54
- package/dist/{SectionTool-meZ7GRPE.mjs → SectionTool-CyE6J_19.mjs} +5 -5
- package/dist/{SettingTool-CyeOrsjB.mjs → SettingTool-BoeUSNoj.mjs} +267 -267
- package/dist/{StructureTree-MOPwYn7_.mjs → StructureTree-DOR9XbQH.mjs} +3 -3
- package/dist/{alert-CzEp8nrf.mjs → alert-Bx6vm68V.mjs} +1 -1
- package/dist/{el-input-number-C1DSSoDJ.mjs → el-input-number-pvso00SK.mjs} +164 -164
- package/dist/{index-CUiiwHKM.mjs → index-CP000Qpy.mjs} +13864 -13341
- package/dist/{panel.vue_vue_type_style_index_0_lang-nST_YEsV.mjs → panel.vue_vue_type_style_index_0_lang-Cfinw87a.mjs} +1 -1
- package/dist/style.css +1 -1
- package/dist/{tallPanel-C348RpAZ.mjs → tallPanel-CqoOOH4r.mjs} +1 -1
- package/package.json +2 -2
- package/types/components/BCFComponents/commentsView.vue.d.ts +2 -2
- package/types/components/BimViewerComponents/ClickEvent.vue.d.ts +6 -0
- package/types/components/BimViewerComponents/CommentTool.vue.d.ts +2 -0
- package/types/components/BimViewerComponents/MobileCommentsTool/add.vue.d.ts +16 -0
- package/types/components/BimViewerComponents/MobileCommentsTool/detail.vue.d.ts +12 -0
- package/types/components/BimViewerComponents/MobileCommentsTool/draw.vue.d.ts +17 -0
- package/types/components/BimViewerComponents/MobileCommentsTool/list.vue.d.ts +13 -0
- package/types/components/BimViewerComponents/MobileCommentsTool/zoomIn.vue.d.ts +10 -0
- package/types/components/BimViewerComponents/MouseTool.vue.d.ts +6 -0
- package/types/components/BimViewerComponents/PCCommentTool/pcdraw.vue.d.ts +14 -0
- package/types/components/MobileBCFComponents/MobileCommentsView.vue.d.ts +2 -2
- package/types/components/utilsComponents/prompt.vue.d.ts +8 -0
- package/types/components/utilsComponents/rectangleButton.vue.d.ts +1 -1
- package/types/pages/viewerEntry.vue.d.ts +16 -17
- package/types/store/initConfigs.d.ts +1 -1
- package/types/store/toolbars.d.ts +415 -43
- package/types/store/userInfoStore.d.ts +32 -0
- package/types/tests/cmt.d.ts +1 -0
- package/types/utils/eventBus.d.ts +9 -1
- package/types/viewerManager/viewerManager.d.ts +7 -0
- package/dist/CommentTool-Cgchhgy6.mjs +0 -330
- package/dist/HiddenTool-CZue5NIN.mjs +0 -60
- package/dist/MeasureTool-CouMBeN1.mjs +0 -267
package/README.md
CHANGED
|
@@ -124,31 +124,31 @@ const getModel = (callback: () => void) => {
|
|
|
124
124
|
|
|
125
125
|
### 基础设置
|
|
126
126
|
|
|
127
|
+
是否载入构件属性信息(xts文件),
|
|
128
|
+
如果要载入,在模型xtc文件相同路径下必须有同名xts文件
|
|
129
|
+
|
|
127
130
|
```ssh
|
|
128
131
|
:load-meta="true"
|
|
129
132
|
```
|
|
130
133
|
|
|
131
|
-
|
|
132
|
-
如果要载入,在模型xtc文件相同路径下必须有同名xts文件
|
|
134
|
+
是否显示导航盒
|
|
133
135
|
|
|
134
136
|
```ssh
|
|
135
137
|
:showNavCube="true"
|
|
136
138
|
```
|
|
137
139
|
|
|
138
|
-
|
|
140
|
+
导航盒尺寸
|
|
139
141
|
|
|
140
142
|
```ssh
|
|
141
143
|
:nav-cube-size="120"
|
|
142
144
|
```
|
|
143
145
|
|
|
144
|
-
|
|
146
|
+
背景颜色
|
|
145
147
|
|
|
146
148
|
```ssh
|
|
147
149
|
:background-color="#d0d0d0"
|
|
148
150
|
```
|
|
149
151
|
|
|
150
|
-
背景颜色
|
|
151
|
-
|
|
152
152
|
### 功能
|
|
153
153
|
|
|
154
154
|
添加需要的即可
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { _ as D } from "./alert-
|
|
1
|
+
import { _ as D } from "./alert-Bx6vm68V.mjs";
|
|
2
2
|
import { defineComponent as O, ref as p, watch as H, onMounted as q, onBeforeUnmount as P, openBlock as e, createElementBlock as i, unref as c, createCommentVNode as b, createElementVNode as t, Fragment as V, renderList as B, normalizeClass as C, toDisplayString as R, withDirectives as U, createVNode as z, vShow as F } from "vue";
|
|
3
|
-
import { n as j, o as _, p as v, O as l, x as G } from "./index-
|
|
3
|
+
import { n as j, o as _, p as v, O as l, x as G } from "./index-CP000Qpy.mjs";
|
|
4
4
|
import { A as r } from "./const-DfPhsetT.mjs";
|
|
5
5
|
const J = { class: "annotation_component" }, K = {
|
|
6
6
|
key: 0,
|
|
@@ -161,7 +161,7 @@ const J = { class: "annotation_component" }, K = {
|
|
|
161
161
|
]);
|
|
162
162
|
};
|
|
163
163
|
}
|
|
164
|
-
}), pn = /* @__PURE__ */ G(dn, [["__scopeId", "data-v-
|
|
164
|
+
}), pn = /* @__PURE__ */ G(dn, [["__scopeId", "data-v-413c2f27"]]);
|
|
165
165
|
export {
|
|
166
166
|
pn as default
|
|
167
167
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { an as e, B as o, ao as t, aq as i, V as l, at as r, ap as n, ar as I, as as B } from "./index-CP000Qpy.mjs";
|
|
2
2
|
export {
|
|
3
3
|
e as BIMXViewer,
|
|
4
4
|
o as BIMX_CONFIGS,
|
|
@@ -6,7 +6,7 @@ export {
|
|
|
6
6
|
i as InitializeConfigs,
|
|
7
7
|
l as ViewerManager,
|
|
8
8
|
r as setAllToolClose,
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
n as setConfigs,
|
|
10
|
+
I as setToolStatusById,
|
|
11
11
|
B as setToolStatusBykey
|
|
12
12
|
};
|