@ones-editor/editor 2.9.8-beta.24 → 2.9.8-beta.25
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
|
@@ -29941,7 +29941,7 @@ ${codeText}
|
|
|
29941
29941
|
const remoteResourcesMap = /* @__PURE__ */ new Map();
|
|
29942
29942
|
Object.entries(resources).forEach(([resourceId, resourceUrl]) => {
|
|
29943
29943
|
if (localResourcesMap.get(resourceId) === void 0) {
|
|
29944
|
-
if (resourceId !== resourceUrl) {
|
|
29944
|
+
if (resourceId !== resourceUrl && resourceId.indexOf(":") === -1) {
|
|
29945
29945
|
remoteResourcesMap.set(resourceId, resourceUrl);
|
|
29946
29946
|
}
|
|
29947
29947
|
}
|
|
@@ -95468,7 +95468,7 @@ ${JSON.stringify(error2, null, 2)}`);
|
|
|
95468
95468
|
}
|
|
95469
95469
|
}
|
|
95470
95470
|
});
|
|
95471
|
-
editor.version = "2.9.8-beta.
|
|
95471
|
+
editor.version = "2.9.8-beta.25";
|
|
95472
95472
|
return editor;
|
|
95473
95473
|
}
|
|
95474
95474
|
function isDoc(doc2) {
|
|
@@ -95600,7 +95600,7 @@ ${JSON.stringify(error2, null, 2)}`);
|
|
|
95600
95600
|
OnesEditorDropTarget.register(editor);
|
|
95601
95601
|
OnesEditorTocProvider.register(editor);
|
|
95602
95602
|
OnesEditorExclusiveBlock.register(editor);
|
|
95603
|
-
editor.version = "2.9.8-beta.
|
|
95603
|
+
editor.version = "2.9.8-beta.25";
|
|
95604
95604
|
return editor;
|
|
95605
95605
|
}
|
|
95606
95606
|
async function showDocVersions(editor, options, serverUrl) {
|