@ones-editor/editor 2.9.8-beta.27 → 2.9.8-beta.29
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
|
@@ -1914,6 +1914,10 @@ div.tippy-box[data-theme=menu] .tippy-content .editor-command-bar.menu .menu-ite
|
|
|
1914
1914
|
}.editor-command-bar.toolbar .command-item[data-dropdown=true][data-id=text-color-item] {
|
|
1915
1915
|
padding-left: 0;
|
|
1916
1916
|
padding-right: 0;
|
|
1917
|
+
}
|
|
1918
|
+
.command-item[data-button-id=text-color-item].disabled .color-button {
|
|
1919
|
+
cursor: not-allowed;
|
|
1920
|
+
opacity: 0.5;
|
|
1917
1921
|
}.editor-input-wrap .editor-input-label {
|
|
1918
1922
|
margin-top: 8px;
|
|
1919
1923
|
margin-bottom: 8px;
|
|
@@ -94424,10 +94428,11 @@ ${JSON.stringify(error2, null, 2)}`);
|
|
|
94424
94428
|
const textOnlyCommands = [
|
|
94425
94429
|
"insert-emoji",
|
|
94426
94430
|
"insert-link",
|
|
94427
|
-
"
|
|
94431
|
+
"DateBoxCommandProvider",
|
|
94428
94432
|
"insert-status",
|
|
94429
94433
|
"insert-math",
|
|
94430
|
-
"insert-
|
|
94434
|
+
"insert-known-link",
|
|
94435
|
+
"insert-task-link"
|
|
94431
94436
|
];
|
|
94432
94437
|
if (textOnlyCommands.includes(c.id)) {
|
|
94433
94438
|
return true;
|
|
@@ -95515,7 +95520,7 @@ ${JSON.stringify(error2, null, 2)}`);
|
|
|
95515
95520
|
}
|
|
95516
95521
|
}
|
|
95517
95522
|
});
|
|
95518
|
-
editor.version = "2.9.8-beta.
|
|
95523
|
+
editor.version = "2.9.8-beta.29";
|
|
95519
95524
|
return editor;
|
|
95520
95525
|
}
|
|
95521
95526
|
function isDoc(doc2) {
|
|
@@ -95647,7 +95652,7 @@ ${JSON.stringify(error2, null, 2)}`);
|
|
|
95647
95652
|
OnesEditorDropTarget.register(editor);
|
|
95648
95653
|
OnesEditorTocProvider.register(editor);
|
|
95649
95654
|
OnesEditorExclusiveBlock.register(editor);
|
|
95650
|
-
editor.version = "2.9.8-beta.
|
|
95655
|
+
editor.version = "2.9.8-beta.29";
|
|
95651
95656
|
return editor;
|
|
95652
95657
|
}
|
|
95653
95658
|
async function showDocVersions(editor, options, serverUrl) {
|