@ones-editor/editor 1.1.10-beta.14 → 1.1.10-beta.15

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
@@ -35573,7 +35573,13 @@ ${codeText}
35573
35573
  __publicField(this, "disableLogout");
35574
35574
  __publicField(this, "destroyed", false);
35575
35575
  __publicField(this, "handleNothingPending", () => {
35576
- this.setStatus("clean");
35576
+ if (window.setDelay) {
35577
+ setTimeout(() => {
35578
+ this.setStatus("clean");
35579
+ }, 30 * 1e3);
35580
+ } else {
35581
+ this.setStatus("clean");
35582
+ }
35577
35583
  });
35578
35584
  __publicField(this, "handleCreate", () => {
35579
35585
  this.handleReload("doc created");
@@ -75717,7 +75723,7 @@ ${data.flowchartText}
75717
75723
  }
75718
75724
  }
75719
75725
  });
75720
- editor.version = "1.1.10-beta.14";
75726
+ editor.version = "1.1.10-beta.15";
75721
75727
  return editor;
75722
75728
  }
75723
75729
  function isDoc(doc2) {
@@ -75790,7 +75796,7 @@ ${data.flowchartText}
75790
75796
  });
75791
75797
  editor.addCustom(DOC_RE_AUTH_KEYS, (editor2) => new DocReAuthCallbacks(editor2));
75792
75798
  OnesEditorToolbar.register(editor);
75793
- editor.version = "1.1.10-beta.14";
75799
+ editor.version = "1.1.10-beta.15";
75794
75800
  return editor;
75795
75801
  }
75796
75802
  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.10-beta.14",
3
+ "version": "1.1.10-beta.15",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",