refactor(editor): history as a store extension (#12214)

<!-- This is an auto-generated comment: release notes by coderabbit.ai -->

## Summary by CodeRabbit

- **Refactor**
  - Improved history and undo/redo management across the app by introducing a dedicated history extension. Undo/redo operations now use a more focused undo manager, resulting in clearer and more consistent behavior.
- **Documentation**
  - Updated API documentation to reflect changes in history management, including revised method signatures and removal of outdated event references.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
Saul-Mirone
2025-05-12 01:50:57 +00:00
parent e91e0e1812
commit 6fb7f51ea2
16 changed files with 124 additions and 78 deletions

View File

@@ -746,7 +746,7 @@ export class StarterDebugMenu extends ShadowlessElement {
}
override firstUpdated() {
this.doc.slots.historyUpdated.subscribe(() => {
this.doc.history.onUpdated.subscribe(() => {
this._canUndo = this.doc.canUndo;
this._canRedo = this.doc.canRedo;
});