gs-bim-air 1.6.1-beta.44 → 1.6.1-beta.45
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 +16 -1
- package/docs/interfaces/ViewerOptions.md +17 -0
- package/lib/BimAir.common-report.html +2 -2
- package/lib/BimAir.common.js +10 -10
- package/lib/BimAir.css +0 -4
- package/lib/BimAir.umd-report.html +2 -2
- package/lib/BimAir.umd.js +10 -10
- package/lib/BimAir.umd.min-report.html +2 -2
- package/lib/BimAir.umd.min.js +10 -10
- package/lib/undefined.gzundefined +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,22 @@
|
|
|
1
1
|
## 更新日志
|
|
2
|
+
### 1.6.1-beta.45
|
|
3
|
+
- feat: 添加面板样式配置,使用方式如下:
|
|
4
|
+
```js
|
|
5
|
+
options:{
|
|
6
|
+
styles: {
|
|
7
|
+
panel: {
|
|
8
|
+
opacity: 0.95,
|
|
9
|
+
background: "#1b1c24",
|
|
10
|
+
},
|
|
11
|
+
},
|
|
12
|
+
}
|
|
13
|
+
```
|
|
14
|
+
---
|
|
15
|
+
fix: fix: 修复小地图功能镜头图标不跟随的问题
|
|
16
|
+
|
|
2
17
|
### 1.6.1-beta.44
|
|
3
18
|
- feat: 平面投影命令添加加载动画
|
|
4
|
-
|
|
19
|
+
|
|
5
20
|
### 1.6.1-beta.43
|
|
6
21
|
|
|
7
22
|
> 更新 public/js 里的内核文件,安装此版本需替换 js 文件夹
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
- [isShowLoading](ViewerOptions.md#isshowloading)
|
|
16
16
|
- [modelService](ViewerOptions.md#modelservice)
|
|
17
17
|
- [renderingOptions](ViewerOptions.md#renderingoptions)
|
|
18
|
+
- [styles](ViewerOptions.md#styles)
|
|
18
19
|
- [tag](ViewerOptions.md#tag)
|
|
19
20
|
- [toolbarVisible](ViewerOptions.md#toolbarvisible)
|
|
20
21
|
- [viewerType](ViewerOptions.md#viewertype)
|
|
@@ -144,6 +145,22 @@ ___
|
|
|
144
145
|
|
|
145
146
|
___
|
|
146
147
|
|
|
148
|
+
### styles
|
|
149
|
+
|
|
150
|
+
• `Optional` **styles**: `Object`
|
|
151
|
+
|
|
152
|
+
样式设置
|
|
153
|
+
|
|
154
|
+
#### Type declaration
|
|
155
|
+
|
|
156
|
+
| Name | Type |
|
|
157
|
+
| :------ | :------ |
|
|
158
|
+
| `panel?` | { `background?`: `string` ; `opacity?`: `number` } |
|
|
159
|
+
| `panel.background?` | `string` |
|
|
160
|
+
| `panel.opacity?` | `number` |
|
|
161
|
+
|
|
162
|
+
___
|
|
163
|
+
|
|
147
164
|
### tag
|
|
148
165
|
|
|
149
166
|
• `Optional` **tag**: `string`
|