@fieldnotes/core 0.38.3 → 0.38.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.
package/dist/index.cjs CHANGED
@@ -2257,7 +2257,12 @@ var ElementStore = class {
2257
2257
  if (!existing) return;
2258
2258
  this.sortedCache = null;
2259
2259
  this._versions.set(id, (this._versions.get(id) ?? 0) + 1);
2260
- const updated = { ...existing, ...partial, id: existing.id, type: existing.type };
2260
+ const updated = {
2261
+ ...existing,
2262
+ ...partial,
2263
+ id: existing.id,
2264
+ type: existing.type
2265
+ };
2261
2266
  if (updated.type === "stroke" && existing.type === "stroke") {
2262
2267
  transferStrokeRenderData(existing, updated);
2263
2268
  transferStrokeBounds(existing, updated);
@@ -9068,7 +9073,7 @@ var TemplateTool = class {
9068
9073
  };
9069
9074
 
9070
9075
  // src/index.ts
9071
- var VERSION = "0.38.3";
9076
+ var VERSION = "0.38.4";
9072
9077
  // Annotate the CommonJS export names for ESM import in node:
9073
9078
  0 && (module.exports = {
9074
9079
  ArrowTool,