Skip to content

Commit ae2166d

Browse files
committed
chore: update web-ifc and camera controls dependencies
1 parent 0448a13 commit ae2166d

File tree

9 files changed

+36
-27
lines changed

9 files changed

+36
-27
lines changed

packages/core/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@thatopen/components",
33
"description": "Collection of core functionalities to author BIM apps.",
4-
"version": "2.4.9",
4+
"version": "2.4.10",
55
"author": "That Open Company",
66
"contributors": [
77
"Antonio Gonzalez Viegas (https://github.com/agviegas)",
@@ -44,10 +44,10 @@
4444
"@types/three": "0.175.0",
4545
"stats.js": "^0.17.0",
4646
"three": "^0.175.0",
47-
"web-ifc": "0.0.66"
47+
"web-ifc": "0.0.68"
4848
},
4949
"dependencies": {
50-
"camera-controls": "2.7.3",
50+
"camera-controls": "2.10.1",
5151
"earcut": "2.2.4",
5252
"fast-xml-parser": "4.4.1",
5353
"jszip": "3.10.1",
@@ -56,6 +56,6 @@
5656
"peerDependencies": {
5757
"@thatopen/fragments": "~3.0.0",
5858
"three": "^0.175.0",
59-
"web-ifc": "0.0.66"
59+
"web-ifc": "0.0.68"
6060
}
6161
}

packages/core/src/core/Components/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export class Components implements Disposable {
1414
/**
1515
* The version of the @thatopen/components library.
1616
*/
17-
static readonly release = "2.4.9";
17+
static readonly release = "2.4.10";
1818

1919
/** {@link Disposable.onDisposed} */
2020
readonly onDisposed = new Event<void>();

packages/core/src/fragments/IfcGeometryTiler/example.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ world.scene.three.add(model);
105105
const tiler = components.get(OBC.IfcGeometryTiler);
106106

107107
const wasm = {
108-
path: "https://unpkg.com/web-ifc@0.0.66/",
108+
path: "https://unpkg.com/web-ifc@0.0.68/",
109109
absolute: true,
110110
};
111111

packages/core/src/fragments/IfcLoader/example.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ await fragmentIfcLoader.setup();
103103
// If you want to the path to unpkg manually, then you can skip the line
104104
// above and set them manually as below:
105105
// fragmentIfcLoader.settings.wasm = {
106-
// path: "https://unpkg.com/web-ifc@0.0.66/",
106+
// path: "https://unpkg.com/web-ifc@0.0.68/",
107107
// absolute: true,
108108
// };
109109

packages/core/src/fragments/IfcPropertiesTiler/example.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ async function downloadFilesSequentially(
128128
const propsStreamer = components.get(OBC.IfcPropertiesTiler);
129129

130130
propsStreamer.settings.wasm = {
131-
path: "https://unpkg.com/web-ifc@0.0.66/",
131+
path: "https://unpkg.com/web-ifc@0.0.68/",
132132
absolute: true,
133133
};
134134

packages/core/src/ifc/IfcIsolator/example.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ To convert IFC to JSON we need 2 things: `web-ifc` an the JSON exporter. The for
138138
const isolator = components.get(OBC.IfcIsolator);
139139

140140
const webIfc = new WEBIFC.IfcAPI();
141-
webIfc.SetWasmPath("https://unpkg.com/web-ifc@0.0.66/", true);
141+
webIfc.SetWasmPath("https://unpkg.com/web-ifc@0.0.68/", true);
142142
await webIfc.Init();
143143

144144
/* MD

packages/core/src/ifc/IfcJsonExporter/example.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ To convert IFC to JSON we need 2 things: `web-ifc` an the JSON exporter. The for
9797
const exporter = components.get(OBC.IfcJsonExporter);
9898

9999
const webIfc = new WEBIFC.IfcAPI();
100-
webIfc.SetWasmPath("https://unpkg.com/web-ifc@0.0.66/", true);
100+
webIfc.SetWasmPath("https://unpkg.com/web-ifc@0.0.68/", true);
101101
await webIfc.Init();
102102

103103
/* MD

packages/front/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"peerDependencies": {
3737
"@thatopen/fragments": "~3.0.0",
3838
"three": "^0.175.0",
39-
"web-ifc": "0.0.66"
39+
"web-ifc": "0.0.68"
4040
},
4141
"devDependencies": {
4242
"@thatopen/fragments": "~3.0.0",
@@ -45,11 +45,11 @@
4545
"@types/earcut": "^2.1.4",
4646
"@types/three": "^0.175.0",
4747
"three": "^0.175.0",
48-
"web-ifc": "0.0.66"
48+
"web-ifc": "0.0.68"
4949
},
5050
"dependencies": {
5151
"@thatopen/components": "~2.4.0",
52-
"camera-controls": "2.7.3",
52+
"camera-controls": "2.10.1",
5353
"dexie": "^4.0.4",
5454
"earcut": "^2.2.4",
5555
"n8ao": "1.9.4",

yarn.lock

Lines changed: 23 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -724,17 +724,17 @@ __metadata:
724724
"@thatopen/ui-obc": ~2.4.0
725725
"@types/earcut": ^2.1.4
726726
"@types/three": ^0.175.0
727-
camera-controls: 2.7.3
727+
camera-controls: 2.10.1
728728
dexie: ^4.0.4
729729
earcut: ^2.2.4
730730
n8ao: 1.9.4
731731
postprocessing: 6.37.2
732732
three: ^0.175.0
733-
web-ifc: 0.0.66
733+
web-ifc: 0.0.68
734734
peerDependencies:
735735
"@thatopen/fragments": ~3.0.0
736736
three: ^0.175.0
737-
web-ifc: 0.0.66
737+
web-ifc: 0.0.68
738738
languageName: unknown
739739
linkType: soft
740740

@@ -746,18 +746,18 @@ __metadata:
746746
"@thatopen/ui": ~2.4.0
747747
"@types/earcut": 2.1.4
748748
"@types/three": 0.175.0
749-
camera-controls: 2.7.3
749+
camera-controls: 2.10.1
750750
earcut: 2.2.4
751751
fast-xml-parser: 4.4.1
752752
jszip: 3.10.1
753753
stats.js: ^0.17.0
754754
three: ^0.175.0
755755
three-mesh-bvh: 0.7.0
756-
web-ifc: 0.0.66
756+
web-ifc: 0.0.68
757757
peerDependencies:
758758
"@thatopen/fragments": ~3.0.0
759759
three: ^0.175.0
760-
web-ifc: 0.0.66
760+
web-ifc: 0.0.68
761761
languageName: unknown
762762
linkType: soft
763763

@@ -1402,12 +1402,12 @@ __metadata:
14021402
languageName: node
14031403
linkType: hard
14041404

1405-
"camera-controls@npm:2.7.3":
1406-
version: 2.7.3
1407-
resolution: "camera-controls@npm:2.7.3"
1405+
"camera-controls@npm:2.10.1":
1406+
version: 2.10.1
1407+
resolution: "camera-controls@npm:2.10.1"
14081408
peerDependencies:
14091409
three: ">=0.126.1"
1410-
checksum: 33d5429459e44adfab3d79f6ede984b5b7a56764a62d105178ff5f8ef45dc383a1f03b1038d77349eb23deb66838515970d4a96e85bdd2a3e44c02c801452f1a
1410+
checksum: f5ed5e335327e88e51897cefa70741246b20c5be44e9b463dc21f33dbf2984764aa0d37b34f7361240d67ccef7c77ece8cede1504b7663cfdf4102d04446bb40
14111411
languageName: node
14121412
linkType: hard
14131413

@@ -2378,6 +2378,13 @@ __metadata:
23782378
languageName: node
23792379
linkType: hard
23802380

2381+
"glm@npm:^1.0.0":
2382+
version: 1.0.0
2383+
resolution: "glm@npm:1.0.0"
2384+
checksum: 270a5167e3bde5c09d2ef46a3239fb83556df05b31a3cc47de4d99b38701aaaae32ec1d8e9dcd8fb389f79289cb860b74842464d1f940752eb58e6b813ef8fc3
2385+
languageName: node
2386+
linkType: hard
2387+
23812388
"glob-parent@npm:^5.1.2":
23822389
version: 5.1.2
23832390
resolution: "glob-parent@npm:5.1.2"
@@ -4819,10 +4826,12 @@ glob@latest:
48194826
languageName: node
48204827
linkType: hard
48214828

4822-
"web-ifc@npm:0.0.66":
4823-
version: 0.0.66
4824-
resolution: "web-ifc@npm:0.0.66"
4825-
checksum: 45d34b9510a5eb1db2d260a4ef5850fb9acc74c058167e7c0cadbf340c46c4bbe93c9496a282058b93409d6bfcd45c33a50e8ba2a30c86aab4c7df33b5cb7d7f
4829+
"web-ifc@npm:0.0.68":
4830+
version: 0.0.68
4831+
resolution: "web-ifc@npm:0.0.68"
4832+
dependencies:
4833+
glm: ^1.0.0
4834+
checksum: 5ba014d457a9eccb8a0196fa0ced59feee1033a2aeb3842cdfaee57df2dfc7eec983ce7488bc48c0c4c71e07dff7e724acfdd58fe240de5d69adfcc468a11ae8
48264835
languageName: node
48274836
linkType: hard
48284837

0 commit comments

Comments
 (0)