@bimdata/viewer 2.3.0-beta.9 → 2.3.0
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 +46 -0
- package/dist/bimdata-viewer.esm.min.js +154 -154
- package/index.d.ts +15 -4
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -74,7 +74,7 @@ declare namespace BDV {
|
|
|
74
74
|
|
|
75
75
|
offline?: {
|
|
76
76
|
enabled: boolean;
|
|
77
|
-
data: string;
|
|
77
|
+
data: string | Blob;
|
|
78
78
|
};
|
|
79
79
|
}
|
|
80
80
|
|
|
@@ -102,18 +102,28 @@ declare namespace BDV {
|
|
|
102
102
|
help?: boolean;
|
|
103
103
|
modelLoader?: "hidden" | "disabled";
|
|
104
104
|
};
|
|
105
|
+
firstPersonView?: boolean;
|
|
105
106
|
fullscreen?: boolean;
|
|
106
107
|
ged?: boolean;
|
|
107
108
|
measure2d?: boolean;
|
|
108
109
|
measure3d?: boolean;
|
|
110
|
+
metaBuildingStructure?: boolean;
|
|
111
|
+
miniMap2d?: boolean;
|
|
109
112
|
navigationVersionsModel?: boolean;
|
|
110
113
|
pdf?: boolean;
|
|
111
|
-
pdfExport?:
|
|
114
|
+
pdfExport?:
|
|
115
|
+
| boolean
|
|
116
|
+
| {
|
|
117
|
+
format?: number[];
|
|
118
|
+
scale?: number;
|
|
119
|
+
};
|
|
112
120
|
plan?:
|
|
113
121
|
| boolean
|
|
114
122
|
| {
|
|
115
123
|
help?: boolean;
|
|
116
124
|
modelLoader?: "hidden" | "disabled";
|
|
125
|
+
pdfExportFormat?: number[];
|
|
126
|
+
pdfExportScale?: number;
|
|
117
127
|
storeySelector?: boolean;
|
|
118
128
|
storeySelectorAutoOpen?: boolean;
|
|
119
129
|
};
|
|
@@ -126,7 +136,6 @@ declare namespace BDV {
|
|
|
126
136
|
pivotMarker?: boolean;
|
|
127
137
|
};
|
|
128
138
|
pointCloudParameters?: boolean;
|
|
129
|
-
projection?: boolean;
|
|
130
139
|
properties?:
|
|
131
140
|
| boolean
|
|
132
141
|
| {
|
|
@@ -154,7 +163,6 @@ declare namespace BDV {
|
|
|
154
163
|
translateIfcEntities?: boolean;
|
|
155
164
|
customTranslations?: Object;
|
|
156
165
|
};
|
|
157
|
-
switch?: boolean;
|
|
158
166
|
synchronization?: boolean;
|
|
159
167
|
viewer2d?:
|
|
160
168
|
| boolean
|
|
@@ -183,5 +191,8 @@ declare namespace BDV {
|
|
|
183
191
|
};
|
|
184
192
|
"viewer3d-parameters"?: boolean;
|
|
185
193
|
"window-manager"?: boolean;
|
|
194
|
+
"window-selector"?: boolean;
|
|
195
|
+
"zone-editor"?: boolean;
|
|
196
|
+
"zone-editor-button"?: boolean;
|
|
186
197
|
}
|
|
187
198
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bimdata/viewer",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.3.0
|
|
4
|
+
"version": "2.3.0",
|
|
5
5
|
"description": "A customizable BIM viewer.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"bim",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"@bimdata/2d-engine": "2.4.0",
|
|
54
54
|
"@bimdata/areas-next": "0.1.15",
|
|
55
55
|
"@bimdata/bcf-components": "6.2.1",
|
|
56
|
-
"@bimdata/components": "1.
|
|
56
|
+
"@bimdata/components": "1.5.0",
|
|
57
57
|
"@bimdata/design-system": "2.1.0-rc.24",
|
|
58
58
|
"@bimdata/typescript-fetch-api-client": "10.1.0",
|
|
59
59
|
"@rollup/plugin-alias": "5.1.0",
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
"semantic-release": "^23.0.8",
|
|
101
101
|
"sinon": "^17.0.1",
|
|
102
102
|
"start-server-and-test": "^2.0.3",
|
|
103
|
-
"vite": "4.5.
|
|
103
|
+
"vite": "4.5.3",
|
|
104
104
|
"vite-plugin-css-injected-by-js": "^3.5.0",
|
|
105
105
|
"vue": "3.4.23",
|
|
106
106
|
"vue-eslint-parser": "^9.4.2",
|