@ones-editor/editor 1.1.30-beta.3 → 1.1.30-beta.5

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
@@ -2143,6 +2143,8 @@ div.editor-root:not(.readonly) div.editor-content div[data-type=editor-container
2143
2143
  div.editor-root div.editor-content div[data-type=editor-container] div[data-type=editor-block] div[data-type=block-content] > span.math-box > span[data-type=box-content] {
2144
2144
  width: 100%;
2145
2145
  overflow-x: auto;
2146
+ display: inline-flex;
2147
+ align-items: center;
2146
2148
  }
2147
2149
  div.editor-root div.editor-content div[data-type=editor-container] div[data-type=editor-block] div[data-type=block-content] > span.math-box .mathjax-tex-text.mathjax-error {
2148
2150
  color: var(--color-0);
@@ -41625,6 +41627,9 @@ ${codeText}
41625
41627
  let scrollbarContainer = tools.querySelector(`.${SCROLL_BAR_CLASS.SCROLL_BAR}`);
41626
41628
  if (!scrollbarContainer) {
41627
41629
  scrollbarContainer = createElement("div", [SCROLL_BAR_CLASS.SCROLL_BAR], tools);
41630
+ if (clientType.isWindows && clientType.isFirefox) {
41631
+ scrollbarContainer.style.minHeight = "10px";
41632
+ }
41628
41633
  }
41629
41634
  assert(logger$21, scrollbarContainer instanceof HTMLDivElement, "invalid child for container tools");
41630
41635
  if (!scrollbarContainer.firstElementChild) {
@@ -77413,7 +77418,7 @@ ${data.flowchartText}
77413
77418
  }
77414
77419
  }
77415
77420
  });
77416
- editor.version = "1.1.30-beta.3";
77421
+ editor.version = "1.1.30-beta.5";
77417
77422
  if (Logger$2.level === LogLevel.DEBUG) {
77418
77423
  window.setReauthFail = (fail) => {
77419
77424
  window.isReauthError = fail;
@@ -77505,7 +77510,7 @@ ${data.flowchartText}
77505
77510
  });
77506
77511
  editor.addCustom(DOC_RE_AUTH_KEYS, (editor2) => new DocReAuthCallbacks(editor2));
77507
77512
  OnesEditorToolbar.register(editor);
77508
- editor.version = "1.1.30-beta.3";
77513
+ editor.version = "1.1.30-beta.5";
77509
77514
  return editor;
77510
77515
  }
77511
77516
  async function showDocVersions(editor, options, serverUrl) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ones-editor/editor",
3
- "version": "1.1.30-beta.3",
3
+ "version": "1.1.30-beta.5",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",