@tldraw/editor 3.14.0-canary.e2a8e4a03aff → 3.14.0-canary.e34e46232a4e

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.
@@ -6530,10 +6530,6 @@ export declare interface TLEventMap {
6530
6530
  };
6531
6531
  shapeId: TLShapeId;
6532
6532
  }];
6533
- 'created-shapes': [TLRecord[]];
6534
- 'edited-shapes': [TLRecord[]];
6535
- 'deleted-shapes': [TLShapeId[]];
6536
- edit: [];
6537
6533
  }
6538
6534
 
6539
6535
  /** @public */
package/dist-cjs/index.js CHANGED
@@ -361,7 +361,7 @@ function debugEnableLicensing() {
361
361
  }
362
362
  (0, import_utils.registerTldrawLibraryVersion)(
363
363
  "@tldraw/editor",
364
- "3.14.0-canary.e2a8e4a03aff",
364
+ "3.14.0-canary.e34e46232a4e",
365
365
  "cjs"
366
366
  );
367
367
  //# sourceMappingURL=index.js.map
@@ -5866,8 +5866,6 @@ class Editor extends (_a = import_eventemitter3.default, _getIsShapeHiddenCache_
5866
5866
  ...shape.meta
5867
5867
  };
5868
5868
  });
5869
- this.emit("created-shapes", shapeRecordsToCreate);
5870
- this.emit("edit");
5871
5869
  this.store.put(shapeRecordsToCreate);
5872
5870
  });
5873
5871
  return this;
@@ -6109,8 +6107,6 @@ class Editor extends (_a = import_eventemitter3.default, _getIsShapeHiddenCache_
6109
6107
  updated = this.getShapeUtil(shape).onBeforeUpdate?.(shape, updated) ?? updated;
6110
6108
  updates.push(updated);
6111
6109
  }
6112
- this.emit("edited-shapes", updates);
6113
- this.emit("edit");
6114
6110
  this.store.put(updates);
6115
6111
  });
6116
6112
  }
@@ -6132,8 +6128,6 @@ class Editor extends (_a = import_eventemitter3.default, _getIsShapeHiddenCache_
6132
6128
  allShapeIdsToDelete.add(childId);
6133
6129
  });
6134
6130
  }
6135
- this.emit("deleted-shapes", [...allShapeIdsToDelete]);
6136
- this.emit("edit");
6137
6131
  return this.run(() => this.store.remove([...allShapeIdsToDelete]));
6138
6132
  }
6139
6133
  deleteShape(_id) {