@ones-editor/editor 2.1.1-beta.36 → 2.1.1-beta.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js
CHANGED
|
@@ -45794,9 +45794,11 @@ ${codeText}
|
|
|
45794
45794
|
return commands.filter((item, index2) => {
|
|
45795
45795
|
if (item.type === "separator") {
|
|
45796
45796
|
if (index2 === 0 || index2 === commands.length - 1) {
|
|
45797
|
+
start = index2;
|
|
45797
45798
|
return false;
|
|
45798
45799
|
}
|
|
45799
45800
|
if (index2 - start === 1) {
|
|
45801
|
+
start = index2;
|
|
45800
45802
|
return false;
|
|
45801
45803
|
}
|
|
45802
45804
|
start = index2;
|
|
@@ -85032,7 +85034,7 @@ ${data2.flowchartText}
|
|
|
85032
85034
|
}
|
|
85033
85035
|
}
|
|
85034
85036
|
});
|
|
85035
|
-
editor.version = "2.1.1-beta.
|
|
85037
|
+
editor.version = "2.1.1-beta.37";
|
|
85036
85038
|
if (Logger$2.level === LogLevel.DEBUG) {
|
|
85037
85039
|
window.setReauthFail = (fail) => {
|
|
85038
85040
|
window.isReauthError = fail;
|
|
@@ -85131,7 +85133,7 @@ ${data2.flowchartText}
|
|
|
85131
85133
|
});
|
|
85132
85134
|
editor.addCustom(DOC_RE_AUTH_KEYS, (editor2) => new DocReAuthCallbacks(editor2));
|
|
85133
85135
|
OnesEditorToolbar.register(editor);
|
|
85134
|
-
editor.version = "2.1.1-beta.
|
|
85136
|
+
editor.version = "2.1.1-beta.37";
|
|
85135
85137
|
return editor;
|
|
85136
85138
|
}
|
|
85137
85139
|
async function showDocVersions(editor, options, serverUrl) {
|