mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2026-05-20 15:33:37 +00:00
- 升级 vitepress 到 ^2.0.0-alpha.17
- vite.optimizeDeps.rolldownOptions.transform.define 迁移至 vite.define 以适配 v2 API
- 同步升级 vitest/rolldown/vue/vite 等周边依赖
- 文档中类型链接统一改为 <<< 片段引用源码 region,避免 commit hash 链接失效
- packages/{core,editor,form-schema,schema,stage} 相关类型加 // #region 锚点
- 移除已废弃的 docs/guide/advanced/tmagic-ui.md 及侧栏入口
Co-authored-by: Cursor <cursoragent@cursor.com>
32 lines
816 B
Markdown
32 lines
816 B
Markdown
# historyService事件
|
||
|
||
## page-change
|
||
|
||
- **详情:** 页面切换
|
||
|
||
- **事件回调函数:** `(undoRedo: UndoRedo) => void`
|
||
|
||
::: details 查看 UndoRedo 类定义
|
||
<<< @/../packages/editor/src/utils/undo-redo.ts#UndoRedo{ts}
|
||
:::
|
||
|
||
## change
|
||
|
||
- **详情:** 历史记录发生变化
|
||
|
||
- **事件回调函数:** `(state: StepValue | null) => void`
|
||
|
||
::: details 查看 StepValue 及关联类型定义
|
||
<<< @/../packages/editor/src/type.ts#StepValue{ts}
|
||
|
||
<<< @/../packages/editor/src/type.ts#HistoryOpType{ts}
|
||
|
||
<<< @/../packages/schema/src/index.ts#Id{ts}
|
||
|
||
<<< @/../packages/schema/src/index.ts#MNode{ts}
|
||
:::
|
||
|
||
:::tip
|
||
当游标处于历史栈边界(已经无法继续撤销或重做)时,`UndoRedo.undo()` / `redo()` 返回 `null`,对应 `change` 回调收到的 `state` 为 `null`
|
||
:::
|