You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New base class of Editor: EditorBase<TEditorCore, TEditorOptoins>. Now Editor class does not contain too much content, instead it inherits everything from EditorBase, except the way to build editor core. So you create your own Editor class now with your customized editor core and options.
New editor customization API and type
isFeatureEnabled: Check if an experimental feature is enabled
createEditorCore: Create the default editor core instance
CoreCoreator: A type for EditorCore creator function
New parameter of IEditor/Editor API paste and core API CreatePasteFragment
pasteAsImage: Whether we want to paste image only
New enum value of ChangeSource:
Keyboard: Content is changed using keyboard
New core API
select: change editor selection using provided information
New content edit feature/feature set
indentWhenAltShiftRight: indent when press Alt+Shift+Right
outdentWhenAltShiftLeft: outdent when press Alt+Shift+Left
removeCodeWhenEnterOnEmptyLine: Remove code block when press Enter on empty line within code block
removeCodeWhenBackspaceOnEmptyFirstLine: Remove code block when press Backspace on empty first line within code block
CodeFeatureSettings: Content Edit feature about Code block
New string key for paste option button:
pasteOptionPasteAsImage: String key for paste as image