vis-core 0.28.3 → 0.28.4

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.
@@ -88,7 +88,7 @@ const publicKeyPEM = "LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlJQklqQU5CZ2txaGtpRz
88
88
  ).toString(CryptoJS.enc.Utf8), ke = JSON.parse(Ae), He = Date.now();
89
89
  return !ke.s || ke.s > He ? (this.token = void 0, "") : ke.e && ke.e < He ? (this.token = void 0, "") : (ke.isValid = Pe, ke);
90
90
  }
91
- }, version = "0.28.3";
91
+ }, version = "0.28.4";
92
92
  /**
93
93
  * @license
94
94
  * Copyright 2010-2025 Three.js Authors
@@ -58925,6 +58925,10 @@ class CopyMaterial extends Command {
58925
58925
  fromJSON(r) {
58926
58926
  super.fromJSON(r), this.objectUuid = r.objectUuid || r.materialKey || r.originKey, this.copyObjectUuid = r.copyObjectUuid || r.copyKey;
58927
58927
  }
58928
+ fixJSON() {
58929
+ const r = this.json;
58930
+ r && !r.objectUuid && (r.objectUuid = r.objectUuid || r.materialKey || r.originKey), r && !r.copyObjectUuid && (r.copyObjectUuid = r.copyObjectUuid || r.copyKey);
58931
+ }
58928
58932
  }
58929
58933
  class RemoveMaterial extends Command {
58930
58934
  constructor(r, m) {
@@ -58952,6 +58956,10 @@ class RemoveMaterial extends Command {
58952
58956
  fromJSON(r) {
58953
58957
  super.fromJSON(r), this.objectUuid = r.objectUuid || r.materialKey;
58954
58958
  }
58959
+ fixJSON() {
58960
+ const r = this.json;
58961
+ r && !r.objectUuid && (r.objectUuid = r.objectUuid || r.materialKey);
58962
+ }
58955
58963
  }
58956
58964
  class SetObjectMaterial extends Command {
58957
58965
  constructor(r, m, v, C) {
@@ -59659,7 +59667,7 @@ function applyFixes(g, t) {
59659
59667
  }
59660
59668
  },
59661
59669
  {
59662
- version: "0.28.3",
59670
+ version: "0.28.4",
59663
59671
  fix: () => !1
59664
59672
  }
59665
59673
  ];
package/dist/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "0.28.3";
1
+ declare const _default: "0.28.4";
2
2
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vis-core",
3
- "version": "0.28.3",
3
+ "version": "0.28.4",
4
4
  "scripts": {
5
5
  "start": "npm run version && PORT=5173 bundler-dev",
6
6
  "build:site": "npm run version && bundler",