@ones-editor/editor 2.1.1-beta.40 → 2.1.1-beta.41

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
@@ -45992,7 +45992,7 @@ ${codeText}
45992
45992
  return children;
45993
45993
  }
45994
45994
  getAvailableCommands(editor, block, range, params) {
45995
- const disable = !isTextKindBlock(editor, block);
45995
+ const disable = !isTextKindBlock(editor, block) || isTitleBlock$2(block);
45996
45996
  if (disable && (params == null ? void 0 : params.isFilter)) {
45997
45997
  return [];
45998
45998
  }
@@ -48631,7 +48631,7 @@ ${codeText}
48631
48631
  return commands;
48632
48632
  }
48633
48633
  getAvailableCommands(editor, block, range, params) {
48634
- const disabled = !isTextKindBlock(editor, block) || isSelectBoxOnly(editor);
48634
+ const disabled = !isTextKindBlock(editor, block) || isSelectBoxOnly(editor) || isTitleBlock$2(block);
48635
48635
  if (disabled && (params == null ? void 0 : params.isFilter)) {
48636
48636
  return [];
48637
48637
  }
@@ -48733,7 +48733,7 @@ ${codeText}
48733
48733
  this.editor = editor;
48734
48734
  }
48735
48735
  getAvailableCommands(editor, block, range, params) {
48736
- const disabled = !isTextKindBlock(editor, block) || isSelectBoxOnly(editor);
48736
+ const disabled = !isTextKindBlock(editor, block) || isSelectBoxOnly(editor) || isTitleBlock$2(block);
48737
48737
  if (disabled && (params == null ? void 0 : params.isFilter)) {
48738
48738
  return [];
48739
48739
  }
@@ -49044,7 +49044,7 @@ ${codeText}
49044
49044
  class LinkProvider {
49045
49045
  constructor(editor) {
49046
49046
  __publicField(this, "id", "LinkProvider");
49047
- __publicField(this, "isDisabled", (editor, block, range) => isSelectBoxOnly(editor) || !editor.selection.range.isSimple() || getAllSelectedBlocks(editor).length > 1);
49047
+ __publicField(this, "isDisabled", (editor, block, range) => isSelectBoxOnly(editor) || !editor.selection.range.isSimple() || getAllSelectedBlocks(editor).length > 1 || isTitleBlock$2(block));
49048
49048
  __publicField(this, "getAvailableCommands", (editor, block, range, params) => {
49049
49049
  const disabled = this.isDisabled(editor, block, range);
49050
49050
  if (disabled && (params == null ? void 0 : params.isFilter)) {
@@ -49146,6 +49146,9 @@ ${codeText}
49146
49146
  if (isSelectBoxOnly(this.editor)) {
49147
49147
  return true;
49148
49148
  }
49149
+ if (isTitleBlock$2(block)) {
49150
+ return true;
49151
+ }
49149
49152
  return false;
49150
49153
  }
49151
49154
  getAvailableCommands(editor, block, range, params) {
@@ -58127,7 +58130,7 @@ $$${mathData.mathjaxText}$$
58127
58130
  this.editor = editor;
58128
58131
  }
58129
58132
  getAvailableCommands(editor, block, range, params) {
58130
- const disable = !isTextKindBlock(editor, block) || isSelectBoxOnly(editor);
58133
+ const disable = !isTextKindBlock(editor, block) || isSelectBoxOnly(editor) || isTitleBlock$2(block);
58131
58134
  if (disable && (params == null ? void 0 : params.isFilter)) {
58132
58135
  return [];
58133
58136
  }
@@ -58220,7 +58223,7 @@ $$${mathData.mathjaxText}$$
58220
58223
  return this.editor.getCustom("block-attributes-handler");
58221
58224
  }
58222
58225
  getAvailableCommands(editor, block, range, params) {
58223
- const disable = !isTextKindBlock(editor, block) || isSelectBoxOnly(editor);
58226
+ const disable = !isTextKindBlock(editor, block) || isSelectBoxOnly(editor) || isTitleBlock$2(block);
58224
58227
  if (disable && (params == null ? void 0 : params.isFilter)) {
58225
58228
  return [];
58226
58229
  }
@@ -58514,7 +58517,7 @@ $$${mathData.mathjaxText}$$
58514
58517
  this.editor = editor;
58515
58518
  }
58516
58519
  getAvailableCommands(editor, block, range, params) {
58517
- const disable = !isTextKindBlock(editor, block) || isSelectBoxOnly(editor);
58520
+ const disable = !isTextKindBlock(editor, block) || isSelectBoxOnly(editor) || isTitleBlock$2(block);
58518
58521
  if (disable && (params == null ? void 0 : params.isFilter)) {
58519
58522
  return [];
58520
58523
  }
@@ -85036,7 +85039,7 @@ ${data2.flowchartText}
85036
85039
  }
85037
85040
  }
85038
85041
  });
85039
- editor.version = "2.1.1-beta.40";
85042
+ editor.version = "2.1.1-beta.41";
85040
85043
  if (Logger$2.level === LogLevel.DEBUG) {
85041
85044
  window.setReauthFail = (fail) => {
85042
85045
  window.isReauthError = fail;
@@ -85135,7 +85138,7 @@ ${data2.flowchartText}
85135
85138
  });
85136
85139
  editor.addCustom(DOC_RE_AUTH_KEYS, (editor2) => new DocReAuthCallbacks(editor2));
85137
85140
  OnesEditorToolbar.register(editor);
85138
- editor.version = "2.1.1-beta.40";
85141
+ editor.version = "2.1.1-beta.41";
85139
85142
  return editor;
85140
85143
  }
85141
85144
  async function showDocVersions(editor, options, serverUrl) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ones-editor/editor",
3
- "version": "2.1.1-beta.40",
3
+ "version": "2.1.1-beta.41",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",