Skip to content

Commit 78d75a2

Browse files
committed
chore: update package.json and docs newlines
1 parent 4c10c40 commit 78d75a2

File tree

14 files changed

+37
-43
lines changed

14 files changed

+37
-43
lines changed

packages/core/package.json

+5-5
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.3.19",
4+
"version": "2.4.0",
55
"author": "That Open Company",
66
"contributors": [
77
"Antonio Gonzalez Viegas (https://github.com/agviegas)",
@@ -37,12 +37,12 @@
3737
"access": "public"
3838
},
3939
"devDependencies": {
40-
"@thatopen/fragments": ">=2.4.0-alpha.9",
40+
"@thatopen/fragments": "~2.4.0",
4141
"@thatopen/ui": "~2.3.0",
4242
"@types/three": "0.160.0",
4343
"stats.js": "^0.17.0",
4444
"three": "^0.160.1",
45-
"web-ifc": "0.0.61"
45+
"web-ifc": "0.0.65"
4646
},
4747
"dependencies": {
4848
"camera-controls": "2.7.3",
@@ -51,8 +51,8 @@
5151
"three-mesh-bvh": "0.7.0"
5252
},
5353
"peerDependencies": {
54-
"@thatopen/fragments": ">=2.4.0-alpha.9",
54+
"@thatopen/fragments": "~2.4.0",
5555
"three": "^0.160.1",
56-
"web-ifc": "0.0.61"
56+
"web-ifc": "0.0.65"
5757
}
5858
}

packages/core/src/core/ShadowedScene/index.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ import { DistanceRenderer } from "./src";
88
import { Configurable, Disposable } from "../Types";
99

1010
/**
11-
* Configuration interface for the {@link ShadowedScene}. Defines properties for directional and ambient lights,
12-
* as well as shadows.
11+
* Configuration interface for the {@link ShadowedScene}. Defines properties for directional and ambient lights, as well as shadows.
1312
*/
1413
export interface ShadowedSceneConfig extends SimpleSceneConfig {
1514
shadows: {

packages/core/src/core/Types/src/data-set.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import { Event } from "./event";
22

33
/**
4-
* A class that extends the built-in Set class and provides additional functionality.
5-
* It triggers events when items are added, deleted, or the set is cleared.
4+
* A class that extends the built-in Set class and provides additional functionality. It triggers events when items are added, deleted, or the set is cleared.
65
*
76
* @template T - The type of elements in the set.
87
*/

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

+1-1
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.57/",
108+
path: "https://unpkg.com/web-ifc@0.0.65/",
109109
absolute: true,
110110
};
111111

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

+1-1
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.57/",
106+
// path: "https://unpkg.com/web-ifc@0.0.65/",
107107
// absolute: true,
108108
// };
109109

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

+1-1
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.57/",
131+
path: "https://unpkg.com/web-ifc@0.0.65/",
132132
absolute: true,
133133
};
134134

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

+1-1
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.57/", true);
141+
webIfc.SetWasmPath("https://unpkg.com/web-ifc@0.0.65/", true);
142142
await webIfc.Init();
143143

144144
/* MD

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

+1-1
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.61/", true);
100+
webIfc.SetWasmPath("https://unpkg.com/web-ifc@0.0.65/", true);
101101
await webIfc.Init();
102102

103103
/* MD

packages/core/src/ifc/IfcRelationsIndexer/src/types.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,7 @@ export interface RelationsProcessingConfig {
6767
}
6868

6969
/**
70-
* Interface definition of an Entities Related Event from the IfcRelationsIndexer.
71-
* This event gets triggered when two or more entities has been related with each other.
70+
* Interface definition of an Entities Related Event from the IfcRelationsIndexer. This event gets triggered when two or more entities has been related with each other.
7271
*/
7372
export interface EntitiesRelatedEvent {
7473
/** The type of the IFC relation. */

packages/core/src/openbim/BCFTopics/index.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ import { Clipper } from "../../core/Clipper";
3232
// TODO: Extract import/export logic in its own class for better maintenance.
3333

3434
/**
35-
* BCFTopics manages Building Collaboration Format (BCF) data the engine.
36-
* It provides functionality for importing, exporting, and manipulating BCF data.
35+
* BCFTopics manages Building Collaboration Format (BCF) data the engine. It provides functionality for importing, exporting, and manipulating BCF data.
3736
*/
3837
export class BCFTopics
3938
extends Component

packages/core/src/openbim/BCFTopics/src/bcf-topics-config.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ import {
88
} from "../../../core";
99

1010
/**
11-
* Configuration settings for managing BCF topics.
12-
* This interface defines the properties and their meanings used to control the behavior of exporting and importing BCF topics.
11+
* Configuration settings for managing BCF topics. This interface defines the properties and their meanings used to control the behavior of exporting and importing BCF topics.
1312
*/
1413
export interface BCFTopicsConfig {
1514
/**

packages/core/src/openbim/IDSSpecifications/index.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ import {
1717
import { createPropertyFacets } from "./src/importers/property";
1818

1919
/**
20-
* Component that manages Information Delivery Specification (IDS) data.
21-
* It provides functionality for importing, exporting, and manipulating IDS data.
20+
* Component that manages Information Delivery Specification (IDS) data. It provides functionality for importing, exporting, and manipulating IDS data.
2221
*/
2322
export class IDSSpecifications extends Component {
2423
static uuid = "9f0b9f78-9b2e-481a-b766-2fbfd01f342c" as const;

packages/front/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@thatopen/components-front",
33
"description": "Collection of frontend tools to author BIM apps.",
4-
"version": "2.3.14",
4+
"version": "2.4.0",
55
"author": "That Open Company",
66
"contributors": [
77
"Antonio Gonzalez Viegas (https://github.com/agviegas)",
@@ -33,21 +33,21 @@
3333
"publish-alpha": "npm publish --tag alpha"
3434
},
3535
"peerDependencies": {
36-
"@thatopen/fragments": ">=2.4.0-alpha.9",
36+
"@thatopen/fragments": "~2.4.0",
3737
"three": "^0.160.1",
38-
"web-ifc": "0.0.61"
38+
"web-ifc": "0.0.65"
3939
},
4040
"devDependencies": {
41-
"@thatopen/fragments": ">=2.4.0-alpha.9",
41+
"@thatopen/fragments": "~2.4.0",
4242
"@thatopen/ui": "~2.3.0",
4343
"@thatopen/ui-obc": "~2.3.0",
4444
"@types/earcut": "^2.1.4",
4545
"@types/three": "^0.160.0",
4646
"three": "^0.160.1",
47-
"web-ifc": "0.0.61"
47+
"web-ifc": "0.0.65"
4848
},
4949
"dependencies": {
50-
"@thatopen/components": ">=2.4.0-alpha.32",
50+
"@thatopen/components": "~2.4.0",
5151
"camera-controls": "2.7.3",
5252
"dexie": "^4.0.4",
5353
"earcut": "^2.2.4",

yarn.lock

+15-15
Original file line numberDiff line numberDiff line change
@@ -702,8 +702,8 @@ __metadata:
702702
version: 0.0.0-use.local
703703
resolution: "@thatopen/components-front@workspace:packages/front"
704704
dependencies:
705-
"@thatopen/components": ">=2.4.0-alpha.20"
706-
"@thatopen/fragments": ">=2.4.0-alpha.9"
705+
"@thatopen/components": ~2.4.0
706+
"@thatopen/fragments": ~2.4.0
707707
"@thatopen/ui": ~2.3.0
708708
"@thatopen/ui-obc": ~2.3.0
709709
"@types/earcut": ^2.1.4
@@ -714,19 +714,19 @@ __metadata:
714714
n8ao: 1.5.1
715715
postprocessing: 6.34.2
716716
three: ^0.160.1
717-
web-ifc: 0.0.61
717+
web-ifc: 0.0.65
718718
peerDependencies:
719-
"@thatopen/fragments": ">=2.4.0-alpha.9"
719+
"@thatopen/fragments": ~2.4.0
720720
three: ^0.160.1
721-
web-ifc: 0.0.61
721+
web-ifc: 0.0.65
722722
languageName: unknown
723723
linkType: soft
724724

725-
"@thatopen/components@>=2.4.0-alpha.20, @thatopen/components@workspace:packages/core":
725+
"@thatopen/components@workspace:packages/core, @thatopen/components@~2.4.0":
726726
version: 0.0.0-use.local
727727
resolution: "@thatopen/components@workspace:packages/core"
728728
dependencies:
729-
"@thatopen/fragments": ">=2.4.0-alpha.9"
729+
"@thatopen/fragments": ~2.4.0
730730
"@thatopen/ui": ~2.3.0
731731
"@types/three": 0.160.0
732732
camera-controls: 2.7.3
@@ -735,15 +735,15 @@ __metadata:
735735
stats.js: ^0.17.0
736736
three: ^0.160.1
737737
three-mesh-bvh: 0.7.0
738-
web-ifc: 0.0.61
738+
web-ifc: 0.0.65
739739
peerDependencies:
740-
"@thatopen/fragments": ">=2.4.0-alpha.9"
740+
"@thatopen/fragments": ~2.4.0
741741
three: ^0.160.1
742-
web-ifc: 0.0.61
742+
web-ifc: 0.0.65
743743
languageName: unknown
744744
linkType: soft
745745

746-
"@thatopen/fragments@npm:>=2.4.0-alpha.9":
746+
"@thatopen/fragments@npm:~2.4.0":
747747
version: 2.4.0-alpha.9
748748
resolution: "@thatopen/fragments@npm:2.4.0-alpha.9"
749749
dependencies:
@@ -4579,10 +4579,10 @@ __metadata:
45794579
languageName: node
45804580
linkType: hard
45814581

4582-
"web-ifc@npm:0.0.61":
4583-
version: 0.0.61
4584-
resolution: "web-ifc@npm:0.0.61"
4585-
checksum: 54d76c136569d680b24db8a5a0311c7a11f9bfafcdcf445b783ff85051733741a64be9a0d9924dc750eb1795fc78f78a0b74ee190d8071578572f922240ee8ae
4582+
"web-ifc@npm:0.0.65":
4583+
version: 0.0.65
4584+
resolution: "web-ifc@npm:0.0.65"
4585+
checksum: 7ee750fb5030b8921b8324576ef7eb13532da963e4803d28b90c38410287e586e4d6c2355b74cc4169bf271b1617971f8da63654f8404606e49f16f36c740b6f
45864586
languageName: node
45874587
linkType: hard
45884588

0 commit comments

Comments
 (0)