@ones-editor/editor 2.2.13-beta.3 → 2.2.13-beta.4

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
@@ -86481,6 +86481,7 @@ ${data2.flowchartText}
86481
86481
  childDoc.uploadResource = doc2.uploadResource.bind(doc2);
86482
86482
  childDoc.buildResourceUrl = doc2.buildResourceUrl.bind(doc2);
86483
86483
  const commentOptions = parentEditor.getComponentOptions("comment");
86484
+ const customOptions = parentEditor.getComponentOptions("custom");
86484
86485
  const options = {
86485
86486
  image: {
86486
86487
  defaultAlign: "left"
@@ -86490,7 +86491,8 @@ ${data2.flowchartText}
86490
86491
  hideCellMenu: true,
86491
86492
  hideToolbar: true
86492
86493
  },
86493
- ...commentOptions == null ? void 0 : commentOptions.componentsOptions
86494
+ ...commentOptions == null ? void 0 : commentOptions.componentsOptions,
86495
+ ...customOptions == null ? void 0 : customOptions.componentsOptions
86494
86496
  };
86495
86497
  const blocks = [];
86496
86498
  parentEditor.editorBlocks.forEach((block) => {
@@ -88342,7 +88344,7 @@ ${data2.flowchartText}
88342
88344
  }
88343
88345
  }
88344
88346
  });
88345
- editor.version = "2.2.13-beta.3";
88347
+ editor.version = "2.2.13-beta.4";
88346
88348
  return editor;
88347
88349
  }
88348
88350
  function isDoc(doc2) {
@@ -88437,7 +88439,7 @@ ${data2.flowchartText}
88437
88439
  });
88438
88440
  editor.addCustom(DOC_RE_AUTH_KEYS, (editor2) => new DocReAuthCallbacks(editor2));
88439
88441
  OnesEditorToolbar.register(editor);
88440
- editor.version = "2.2.13-beta.3";
88442
+ editor.version = "2.2.13-beta.4";
88441
88443
  return editor;
88442
88444
  }
88443
88445
  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.2.13-beta.3",
3
+ "version": "2.2.13-beta.4",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",