@bimdata/bcf-components 6.4.1 → 6.4.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bimdata/bcf-components",
3
- "version": "6.4.1",
3
+ "version": "6.4.3",
4
4
  "files": [
5
5
  "src",
6
6
  "vue3-plugin.js"
@@ -11,7 +11,7 @@
11
11
  "release": "semantic-release"
12
12
  },
13
13
  "dependencies": {
14
- "async": "^3.2.4"
14
+ "async": "^3.2.5"
15
15
  },
16
16
  "peerDependencies": {
17
17
  "@bimdata/design-system": "*",
@@ -20,12 +20,12 @@
20
20
  },
21
21
  "devDependencies": {
22
22
  "@semantic-release/changelog": "^6.0.3",
23
- "@semantic-release/commit-analyzer": "^11.0.0",
23
+ "@semantic-release/commit-analyzer": "^13.0.0",
24
24
  "@semantic-release/git": "^10.0.1",
25
- "@semantic-release/github": "^9.2.1",
26
- "@semantic-release/npm": "^11.0.0",
27
- "@semantic-release/release-notes-generator": "^12.0.0",
28
- "conventional-changelog-eslint": "^5.0.0",
29
- "semantic-release": "^22.0.5"
25
+ "@semantic-release/github": "^10.1.1",
26
+ "@semantic-release/npm": "^12.0.1",
27
+ "@semantic-release/release-notes-generator": "^14.0.1",
28
+ "conventional-changelog-eslint": "^6.0.0",
29
+ "semantic-release": "^24.0.0"
30
30
  }
31
31
  }
@@ -409,7 +409,9 @@ export default {
409
409
 
410
410
  // Avoid updating snapshots as it is not possible
411
411
  // (you can only create/delete snapshots).
412
- viewpointsToUpdate.value = viewpoints.value.map((viewpoint) => ({
412
+ viewpointsToUpdate.value = viewpoints.value
413
+ .filter(viewpoint => !viewpointsToDelete.value.some(v => v.guid && v.guid === viewpoint.guid))
414
+ .map(viewpoint => ({
413
415
  ...viewpoint,
414
416
  snapshot: undefined,
415
417
  }));