| 277 | readonly [editorCabinSymbol]: any; |
| 278 | |
| 279 | constructor(editor: Editor) { |
| 280 | this[editorSymbol] = editor; |
| 281 | this[editorCabinSymbol] = { |
| 282 | Editor, |
| 283 | globalContext, |
| 284 | runInAction: innerRunInAction, |
| 285 | Title: InnerTitle, |
| 286 | Tip: InnerTip, |
| 287 | shallowIntl: innerShallowIntl, |
| 288 | createIntl: innerCreateIntl, |
| 289 | intl: innerIntl, |
| 290 | createSetterContent: this.createSetterContent.bind(this), |
| 291 | globalLocale: innerGlobalLocale, |
| 292 | obx: innerObx, |
| 293 | action: innerAction, |
| 294 | engineConfig: innerEngineConfig, |
| 295 | observable: innerObservable, |
| 296 | makeObservable: innerMakeObservable, |
| 297 | untracked: innerUntracked, |
| 298 | computed: innerComputed, |
| 299 | observer: innerObserver, |
| 300 | }; |
| 301 | } |
| 302 | |
| 303 | /** |
| 304 | * Title 组件 |