@ones-editor/editor 1.2.0-beta.6 → 1.2.0-beta.7
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/@ones-editor/tsconfig.tsbuildinfo +1 -1
- package/dist/index.js +10 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6098,9 +6098,10 @@ div.editor-root div.editor-content div[data-type=editor-container] div[data-embe
|
|
|
6098
6098
|
justify-content: center;
|
|
6099
6099
|
}
|
|
6100
6100
|
.command-m-bar .child-layout {
|
|
6101
|
-
height:
|
|
6101
|
+
height: 280px;
|
|
6102
6102
|
width: 100%;
|
|
6103
6103
|
display: flex;
|
|
6104
|
+
display: none;
|
|
6104
6105
|
}
|
|
6105
6106
|
.command-m-bar .child-layout .child-item {
|
|
6106
6107
|
width: 80px;
|
|
@@ -75327,7 +75328,9 @@ ${data.flowchartText}
|
|
|
75327
75328
|
__publicField(this, "createLayout", (parent, children) => {
|
|
75328
75329
|
const layout = new Layout(children);
|
|
75329
75330
|
layout.appendTo(parent);
|
|
75330
|
-
|
|
75331
|
+
setTimeout(() => {
|
|
75332
|
+
layout.show();
|
|
75333
|
+
}, 300);
|
|
75331
75334
|
return layout;
|
|
75332
75335
|
});
|
|
75333
75336
|
__publicField(this, "handleChildTouchStart", (item) => {
|
|
@@ -75353,7 +75356,9 @@ ${data.flowchartText}
|
|
|
75353
75356
|
item.hidden();
|
|
75354
75357
|
} else if (keyd === key) {
|
|
75355
75358
|
item == null ? void 0 : item.appendTo(parent);
|
|
75356
|
-
|
|
75359
|
+
setTimeout(() => {
|
|
75360
|
+
item.show();
|
|
75361
|
+
}, 300);
|
|
75357
75362
|
}
|
|
75358
75363
|
});
|
|
75359
75364
|
if (command.id === "add") {
|
|
@@ -76949,7 +76954,7 @@ ${data.flowchartText}
|
|
|
76949
76954
|
}
|
|
76950
76955
|
}
|
|
76951
76956
|
});
|
|
76952
|
-
editor.version = "1.2.0-beta.
|
|
76957
|
+
editor.version = "1.2.0-beta.7";
|
|
76953
76958
|
if (Logger$2.level === LogLevel.DEBUG) {
|
|
76954
76959
|
window.setReauthFail = (fail) => {
|
|
76955
76960
|
window.isReauthError = fail;
|
|
@@ -77042,7 +77047,7 @@ ${data.flowchartText}
|
|
|
77042
77047
|
});
|
|
77043
77048
|
editor.addCustom(DOC_RE_AUTH_KEYS, (editor2) => new DocReAuthCallbacks(editor2));
|
|
77044
77049
|
OnesEditorToolbar.register(editor);
|
|
77045
|
-
editor.version = "1.2.0-beta.
|
|
77050
|
+
editor.version = "1.2.0-beta.7";
|
|
77046
77051
|
return editor;
|
|
77047
77052
|
}
|
|
77048
77053
|
async function showDocVersions(editor, options, serverUrl) {
|