@ones-editor/editor 2.1.1-beta.84 → 2.1.1-beta.85
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 +20 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1265,6 +1265,7 @@ div[data-command-bar-id=mobile-bottom-menu] .editor-command-bar .command-item .m
|
|
|
1265
1265
|
div[data-command-bar-id=mobile-bottom-menu] .editor-command-bar .command-item .menu-item-icon svg {
|
|
1266
1266
|
width: 20px;
|
|
1267
1267
|
height: 20px;
|
|
1268
|
+
stroke-width: 1.5;
|
|
1268
1269
|
}
|
|
1269
1270
|
div[data-command-bar-id=mobile-bottom-menu] .editor-command-bar .command-item .menu-item-name {
|
|
1270
1271
|
flex: 1;
|
|
@@ -1345,6 +1346,9 @@ div[data-command-bar-id=mobile-bottom-menu] .tippy-content .mobile-menu-wrap .mo
|
|
|
1345
1346
|
margin-right: 12px;
|
|
1346
1347
|
color: #2d2d2e;
|
|
1347
1348
|
}
|
|
1349
|
+
div[data-command-bar-id=mobile-bottom-menu] .tippy-content .mobile-menu-wrap .mobile-menu-header [data-button-id=mobile-bottom-menu-close] svg {
|
|
1350
|
+
stroke-width: 1.5;
|
|
1351
|
+
}
|
|
1348
1352
|
div[data-command-bar-id=mobile-bottom-menu] .editor-command-bar-root {
|
|
1349
1353
|
box-shadow: none !important;
|
|
1350
1354
|
}.editor-text-button {
|
|
@@ -2030,6 +2034,12 @@ div.tippy-box[data-theme=editor-tooltip] > .tippy-content {
|
|
|
2030
2034
|
[data-command-bar-id=paste-special-button].mobile .tippy-box,
|
|
2031
2035
|
[data-command-bar-id=editor-toolbar].mobile .tippy-box {
|
|
2032
2036
|
border-radius: 8px;
|
|
2037
|
+
background: none;
|
|
2038
|
+
}
|
|
2039
|
+
[data-command-bar-id=cursor-toolbar].mobile .tippy-box .tippy-content .editor-command-bar-root,
|
|
2040
|
+
[data-command-bar-id=paste-special-button].mobile .tippy-box .tippy-content .editor-command-bar-root,
|
|
2041
|
+
[data-command-bar-id=editor-toolbar].mobile .tippy-box .tippy-content .editor-command-bar-root {
|
|
2042
|
+
box-shadow: none;
|
|
2033
2043
|
}
|
|
2034
2044
|
[data-command-bar-id=cursor-toolbar].mobile .tippy-content,
|
|
2035
2045
|
[data-command-bar-id=cursor-toolbar].mobile .editor-command-bar-root,
|
|
@@ -2055,12 +2065,17 @@ div.tippy-box[data-theme=editor-tooltip] > .tippy-content {
|
|
|
2055
2065
|
[data-command-bar-id=editor-toolbar].mobile .editor-command-bar.toolbar .command-item:not(.separator) {
|
|
2056
2066
|
height: 40px;
|
|
2057
2067
|
padding: 0 16px;
|
|
2068
|
+
line-height: 1.5;
|
|
2058
2069
|
}
|
|
2059
2070
|
[data-command-bar-id=cursor-toolbar].mobile .editor-command-bar.toolbar .command-item.separator,
|
|
2060
2071
|
[data-command-bar-id=paste-special-button].mobile .editor-command-bar.toolbar .command-item.separator,
|
|
2061
2072
|
[data-command-bar-id=editor-toolbar].mobile .editor-command-bar.toolbar .command-item.separator {
|
|
2062
2073
|
height: 40px;
|
|
2074
|
+
transform: scaleX(0.5);
|
|
2063
2075
|
background-color: var(--Fills-Vibrant-Secondary, rgba(127, 127, 127, 0.4));
|
|
2076
|
+
}
|
|
2077
|
+
.editor-command-bar.toolbar.mobile .command-item svg {
|
|
2078
|
+
stroke-width: 1.5;
|
|
2064
2079
|
}div[data-type=editor-block].block-exclusive:after {
|
|
2065
2080
|
content: attr(data-exclusive-tips);
|
|
2066
2081
|
position: absolute;
|
|
@@ -2586,6 +2601,9 @@ div.editor-root:not(.readonly) div.editor-content div[data-type=editor-container
|
|
|
2586
2601
|
display: flex;
|
|
2587
2602
|
align-items: center;
|
|
2588
2603
|
}
|
|
2604
|
+
[data-command-bar-id=mobile-bottom-menu] .link-popup .editor-command-bar-header .link-popup-header .link-popup-button-wrap svg {
|
|
2605
|
+
stroke-width: 1.5;
|
|
2606
|
+
}
|
|
2589
2607
|
[data-command-bar-id=mobile-bottom-menu] .link-popup .editor-command-bar-header .link-popup-header .link-popup-button-wrap:last-of-type {
|
|
2590
2608
|
justify-content: flex-end;
|
|
2591
2609
|
}
|
|
@@ -2614,9 +2632,6 @@ div.editor-root:not(.readonly) div.editor-content div[data-type=editor-container
|
|
|
2614
2632
|
[data-command-bar-id=mobile-bottom-menu] .link-popup .editor-command-bar .command-item[data-id=link-popup] .link-form-content {
|
|
2615
2633
|
width: 100%;
|
|
2616
2634
|
}
|
|
2617
|
-
[data-command-bar-id=mobile-bottom-menu] .link-popup .editor-command-bar .command-item[data-id=link-popup] .link-form-content .editor-input-wrap {
|
|
2618
|
-
padding: 0px 15px;
|
|
2619
|
-
}
|
|
2620
2635
|
[data-command-bar-id=mobile-bottom-menu] .link-popup .editor-command-bar .command-item[data-id=link-popup] .link-form-content .editor-input-wrap.error .editor-input-container.textarea {
|
|
2621
2636
|
border: 1px solid #e82100;
|
|
2622
2637
|
}
|
|
@@ -86830,7 +86845,7 @@ ${data2.flowchartText}
|
|
|
86830
86845
|
}
|
|
86831
86846
|
}
|
|
86832
86847
|
});
|
|
86833
|
-
editor.version = "2.1.1-beta.
|
|
86848
|
+
editor.version = "2.1.1-beta.85";
|
|
86834
86849
|
if (Logger$2.level === LogLevel.DEBUG) {
|
|
86835
86850
|
window.setReauthFail = (fail) => {
|
|
86836
86851
|
window.isReauthError = fail;
|
|
@@ -86931,7 +86946,7 @@ ${data2.flowchartText}
|
|
|
86931
86946
|
});
|
|
86932
86947
|
editor.addCustom(DOC_RE_AUTH_KEYS, (editor2) => new DocReAuthCallbacks(editor2));
|
|
86933
86948
|
OnesEditorToolbar.register(editor);
|
|
86934
|
-
editor.version = "2.1.1-beta.
|
|
86949
|
+
editor.version = "2.1.1-beta.85";
|
|
86935
86950
|
return editor;
|
|
86936
86951
|
}
|
|
86937
86952
|
async function showDocVersions(editor, options, serverUrl) {
|