The UndoManagerController is responsible for all communication regarding the Undo-Manager. Methods inside this controller can be called by window.SDK.undoManager.{method-name}

Methods

  • This method adds custom data that will be saved and restored when undoing and redoing. Duplicate values are overwritten. The data is exposed via the onCustomUndoDataChanged event.

    Parameters

    • key: string

      The key of the custom data

    • value: string

      The value of the custom data

    Returns Promise<EditorResponse<null>>

  • Record any operations in the current scope. This will automatically begin the undo operation. Once you leave the record scope, it will end the undo operation. Even if you throw an exception inside the record scope it will still end it properly.

    Parameters

    • operationName: string
    • undoOperationCallback: (sdk: default) => void

    Returns Promise<void>