@openeditor/ui 0.0.29 → 0.0.30
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/README.md +34 -1
- package/dist/index.css +125 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +9 -2
- package/dist/index.js +348 -128
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -7,11 +7,44 @@ Optional styled UI components for OpenEditor.
|
|
|
7
7
|
- `OpenEditor` for a composed editor surface
|
|
8
8
|
- `OpenEditorSlashMenu` for the default slash menu UI
|
|
9
9
|
- `OpenEditorSelectionBubble` for inline formatting UI
|
|
10
|
+
- `OpenEditorTableMenu` for selection-aware row, column, header, cell, and table actions
|
|
10
11
|
- `OpenEditorButton`, `OpenEditorToggle`, `OpenEditorToggleGroup`, and `OpenEditorInput` as Base UI-backed app primitives
|
|
11
12
|
- `OpenEditorContent` and `useOpenEditorController` re-exported from `@openeditor/react`
|
|
12
13
|
|
|
13
14
|
The UI package owns the default CSS and interactive primitives. User-facing controls are built on Base UI so focus management, keyboard behavior, dismiss behavior, and overlay positioning share one foundation.
|
|
14
15
|
|
|
16
|
+
## Editor interaction contract
|
|
17
|
+
|
|
18
|
+
OpenEditor keeps keyboard ownership in the editable surface unless the user
|
|
19
|
+
explicitly enters another control:
|
|
20
|
+
|
|
21
|
+
- Selecting text shows the formatting toolbar without moving focus. Delete,
|
|
22
|
+
Backspace, typing, arrow keys, and formatting/history shortcuts therefore keep
|
|
23
|
+
their normal editing meaning. The toolbar follows its document selection in
|
|
24
|
+
the editor's actual scroll container and hides once that selection is clipped.
|
|
25
|
+
Pointer presses on toolbar actions preserve the document selection. `Alt+F10`
|
|
26
|
+
moves focus into the toolbar, its arrow keys move between controls, and
|
|
27
|
+
`Escape` returns focus to the document.
|
|
28
|
+
- Typing `/` opens one flat, filtered command list. Focus stays in the document;
|
|
29
|
+
`ArrowUp`/`ArrowDown`, `Home`/`End`, and `PageUp`/`PageDown` change the active
|
|
30
|
+
command, `Enter` runs it, and `Escape` dismisses the current slash session.
|
|
31
|
+
Its anchor is resolved live from the document position while scrolling and is
|
|
32
|
+
hidden when clipped. A dismissed session does not reopen merely because more
|
|
33
|
+
query characters are typed.
|
|
34
|
+
- The block handle menu is an explicit focus-owning menu. `Enter` or `Space`
|
|
35
|
+
opens it, menu arrow keys navigate it, `Enter` runs an action, and `Escape` or
|
|
36
|
+
an outside press closes it. Closing, dragging, and running an action all pass
|
|
37
|
+
through the same unlock transition, so hover targeting cannot remain frozen.
|
|
38
|
+
- Selecting a table cell shows a toolbar anchored to the table. Row and column
|
|
39
|
+
menus preserve the cell selection while insert/delete commands run, and
|
|
40
|
+
header, merge/split, and whole-table actions use the same transactional table
|
|
41
|
+
controller as custom host UI.
|
|
42
|
+
|
|
43
|
+
Formatting and history shortcuts come from Tiptap's registered mark and history
|
|
44
|
+
extensions. OpenEditor keeps focus in the editor so those extension-owned
|
|
45
|
+
bindings receive `Cmd` on macOS and `Ctrl` elsewhere without a competing global
|
|
46
|
+
shortcut layer.
|
|
47
|
+
|
|
15
48
|
## Theming
|
|
16
49
|
|
|
17
50
|
Use the typed theme contract instead of targeting OpenEditor implementation classes or defining global custom properties. The provider scopes tokens to editor content and automatically forwards them to portaled menus and dialogs.
|
|
@@ -47,7 +80,7 @@ export function Editor() {
|
|
|
47
80
|
export function HeadlessComposition() {
|
|
48
81
|
return (
|
|
49
82
|
<OpenEditorThemeProvider theme={theme}>
|
|
50
|
-
{/* OpenEditorContent, OpenEditorSelectionBubble, OpenEditorSlashMenu */}
|
|
83
|
+
{/* OpenEditorContent, OpenEditorSelectionBubble, OpenEditorTableMenu, OpenEditorSlashMenu */}
|
|
51
84
|
</OpenEditorThemeProvider>
|
|
52
85
|
);
|
|
53
86
|
}
|
package/dist/index.css
CHANGED
|
@@ -815,6 +815,15 @@ details.oe-toggle-list-item > summary {
|
|
|
815
815
|
table-layout: fixed;
|
|
816
816
|
width: 100%;
|
|
817
817
|
}
|
|
818
|
+
.oe-prosemirror .tableWrapper {
|
|
819
|
+
margin: 18px 0;
|
|
820
|
+
max-width: 100%;
|
|
821
|
+
overflow-x: auto;
|
|
822
|
+
padding: 2px;
|
|
823
|
+
}
|
|
824
|
+
.oe-prosemirror .tableWrapper > table {
|
|
825
|
+
margin: 0;
|
|
826
|
+
}
|
|
818
827
|
.oe-prosemirror .tableWrapper > table th,
|
|
819
828
|
.oe-prosemirror .tableWrapper > table td,
|
|
820
829
|
.oe-prosemirror table[data-openeditor-table] th,
|
|
@@ -832,6 +841,31 @@ details.oe-toggle-list-item > summary {
|
|
|
832
841
|
.oe-viewer table[data-openeditor-table] th {
|
|
833
842
|
font-weight: 700;
|
|
834
843
|
}
|
|
844
|
+
.oe-prosemirror .selectedCell {
|
|
845
|
+
position: relative;
|
|
846
|
+
}
|
|
847
|
+
.oe-prosemirror .selectedCell::after {
|
|
848
|
+
background: color-mix(in srgb, var(--oe-accent-strong, #171717) 10%, transparent);
|
|
849
|
+
border: 2px solid var(--oe-accent-strong, #171717);
|
|
850
|
+
content: "";
|
|
851
|
+
inset: -1px;
|
|
852
|
+
pointer-events: none;
|
|
853
|
+
position: absolute;
|
|
854
|
+
z-index: 1;
|
|
855
|
+
}
|
|
856
|
+
.oe-prosemirror .column-resize-handle {
|
|
857
|
+
background: var(--oe-accent-strong, #171717);
|
|
858
|
+
bottom: -1px;
|
|
859
|
+
pointer-events: none;
|
|
860
|
+
position: absolute;
|
|
861
|
+
right: -2px;
|
|
862
|
+
top: -1px;
|
|
863
|
+
width: 3px;
|
|
864
|
+
z-index: 2;
|
|
865
|
+
}
|
|
866
|
+
.oe-prosemirror.resize-cursor {
|
|
867
|
+
cursor: col-resize;
|
|
868
|
+
}
|
|
835
869
|
.oe-button,
|
|
836
870
|
.oe-input {
|
|
837
871
|
border: 1px solid var(--oe-border-strong, #d4d4d4);
|
|
@@ -877,6 +911,10 @@ details.oe-toggle-list-item > summary {
|
|
|
877
911
|
outline: none;
|
|
878
912
|
z-index: 1002;
|
|
879
913
|
}
|
|
914
|
+
.oe-anchored-overlay-positioner[data-anchor-hidden] {
|
|
915
|
+
visibility: hidden;
|
|
916
|
+
pointer-events: none;
|
|
917
|
+
}
|
|
880
918
|
.oe-cascade-panel {
|
|
881
919
|
flex: 0 0 auto;
|
|
882
920
|
}
|
|
@@ -965,6 +1003,93 @@ details.oe-toggle-list-item > summary {
|
|
|
965
1003
|
padding: 3px;
|
|
966
1004
|
z-index: 1000;
|
|
967
1005
|
}
|
|
1006
|
+
.oe-table-menu {
|
|
1007
|
+
background: var(--oe-surface, #ffffff);
|
|
1008
|
+
border-radius: 999px;
|
|
1009
|
+
box-shadow: 0 0 0 1px var(--oe-shadow, rgb(0 0 0 / 7%)), 0 10px 28px var(--oe-shadow, rgb(0 0 0 / 12%));
|
|
1010
|
+
padding: 3px;
|
|
1011
|
+
z-index: 1000;
|
|
1012
|
+
}
|
|
1013
|
+
.oe-table-toolbar {
|
|
1014
|
+
align-items: center;
|
|
1015
|
+
display: flex;
|
|
1016
|
+
gap: 2px;
|
|
1017
|
+
}
|
|
1018
|
+
.oe-table-toolbar-button,
|
|
1019
|
+
.oe-table-toolbar-trigger {
|
|
1020
|
+
align-items: center;
|
|
1021
|
+
background: transparent;
|
|
1022
|
+
border: 0;
|
|
1023
|
+
border-radius: 999px;
|
|
1024
|
+
color: var(--oe-text, #171717);
|
|
1025
|
+
cursor: pointer;
|
|
1026
|
+
display: inline-flex;
|
|
1027
|
+
font: inherit;
|
|
1028
|
+
font-size: 12px;
|
|
1029
|
+
font-weight: 650;
|
|
1030
|
+
gap: 5px;
|
|
1031
|
+
justify-content: center;
|
|
1032
|
+
min-height: 28px;
|
|
1033
|
+
min-width: 28px;
|
|
1034
|
+
padding: 0 8px;
|
|
1035
|
+
white-space: nowrap;
|
|
1036
|
+
}
|
|
1037
|
+
.oe-table-toolbar-button:hover,
|
|
1038
|
+
.oe-table-toolbar-button:focus-visible,
|
|
1039
|
+
.oe-table-toolbar-button[data-active],
|
|
1040
|
+
.oe-table-toolbar-trigger:hover,
|
|
1041
|
+
.oe-table-toolbar-trigger:focus-visible,
|
|
1042
|
+
.oe-table-toolbar-trigger[data-popup-open] {
|
|
1043
|
+
background: var(--oe-surface-muted, #f5f5f5);
|
|
1044
|
+
outline: none;
|
|
1045
|
+
}
|
|
1046
|
+
.oe-table-toolbar-button[data-danger] {
|
|
1047
|
+
color: #b42318;
|
|
1048
|
+
}
|
|
1049
|
+
.oe-table-toolbar-button:disabled,
|
|
1050
|
+
.oe-table-action-item:disabled {
|
|
1051
|
+
cursor: default;
|
|
1052
|
+
opacity: 0.38;
|
|
1053
|
+
}
|
|
1054
|
+
.oe-table-toolbar-separator {
|
|
1055
|
+
background: var(--oe-border, #e5e5e5);
|
|
1056
|
+
height: 18px;
|
|
1057
|
+
margin: 0 2px;
|
|
1058
|
+
width: 1px;
|
|
1059
|
+
}
|
|
1060
|
+
.oe-table-action-menu {
|
|
1061
|
+
background: var(--oe-surface, #ffffff);
|
|
1062
|
+
border-radius: 16px;
|
|
1063
|
+
box-shadow: 0 0 0 1px var(--oe-shadow, rgb(0 0 0 / 7%)), 0 12px 32px var(--oe-shadow, rgb(0 0 0 / 14%));
|
|
1064
|
+
display: grid;
|
|
1065
|
+
gap: 2px;
|
|
1066
|
+
min-width: 190px;
|
|
1067
|
+
padding: 5px;
|
|
1068
|
+
z-index: 1002;
|
|
1069
|
+
}
|
|
1070
|
+
.oe-table-action-item {
|
|
1071
|
+
align-items: center;
|
|
1072
|
+
background: transparent;
|
|
1073
|
+
border: 0;
|
|
1074
|
+
border-radius: 12px;
|
|
1075
|
+
color: var(--oe-text, #171717);
|
|
1076
|
+
cursor: pointer;
|
|
1077
|
+
display: flex;
|
|
1078
|
+
font-size: 13px;
|
|
1079
|
+
font-weight: 620;
|
|
1080
|
+
gap: 9px;
|
|
1081
|
+
min-height: 34px;
|
|
1082
|
+
outline: none;
|
|
1083
|
+
padding: 0 10px;
|
|
1084
|
+
}
|
|
1085
|
+
.oe-table-action-item:hover,
|
|
1086
|
+
.oe-table-action-item:focus-visible,
|
|
1087
|
+
.oe-table-action-item[data-highlighted] {
|
|
1088
|
+
background: var(--oe-surface-muted, #f5f5f5);
|
|
1089
|
+
}
|
|
1090
|
+
.oe-table-action-item[data-danger] {
|
|
1091
|
+
color: #b42318;
|
|
1092
|
+
}
|
|
968
1093
|
.oe-selection-toolbar {
|
|
969
1094
|
align-items: center;
|
|
970
1095
|
display: flex;
|
package/dist/index.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/styles.css"],"sourcesContent":[".oe-editor-surface {\n container-type: inline-size;\n display: grid;\n gap: 12px;\n position: relative;\n}\n\n.oe-block-handle-anchor {\n align-items: flex-start;\n box-sizing: border-box;\n cursor: grab;\n display: flex;\n justify-content: flex-end;\n padding-right: 6px;\n width: var(--oe-block-gutter-width, 42px);\n z-index: 40;\n}\n\n.oe-block-handle-anchor[data-dragging=\"true\"] { cursor: grabbing; }\n\n.oe-block-handle {\n align-items: center;\n background: transparent;\n border: 0;\n border-radius: 7px;\n color: var(--oe-muted, #737373);\n display: flex;\n height: 28px;\n justify-content: center;\n padding: 0;\n pointer-events: none;\n position: static;\n transition: background-color 100ms ease, color 100ms ease;\n width: 28px;\n z-index: 40;\n}\n\n.oe-block-handle-anchor:hover .oe-block-handle,\n.oe-block-handle-anchor:focus-visible .oe-block-handle,\n.oe-block-handle-anchor[aria-expanded=\"true\"] .oe-block-handle {\n background: var(--oe-surface-muted, #f5f5f5);\n color: var(--oe-text, #171717);\n}\n\n.oe-block-handle-anchor:focus-visible { outline: none; }\n\n.oe-block-handle-anchor:focus-visible .oe-block-handle {\n outline: 2px solid var(--oe-accent-strong, #171717);\n outline-offset: 2px;\n}\n\n.oe-block-menu {\n background: var(--oe-surface, #fff);\n border: 0;\n border-radius: 12px;\n min-width: 188px;\n outline: none;\n padding: 5px;\n z-index: 1000;\n}\n\n.oe-block-menu:focus,\n.oe-block-menu:focus-visible {\n outline: none;\n}\n\n.oe-block-menu-item {\n align-items: center;\n border-radius: 8px;\n color: var(--oe-text, #171717);\n cursor: default;\n display: flex;\n font-size: 13px;\n gap: 9px;\n min-height: 34px;\n outline: none;\n padding: 0 9px;\n}\n\n.oe-block-menu-item[data-highlighted] { background: var(--oe-surface-muted, #f5f5f5); }\n.oe-block-menu-item[data-danger] { color: #c83232; }\n.oe-block-menu-item[data-disabled] { opacity: .45; }\n.oe-block-menu-icon-placeholder { display: block; width: 15px; }\n.oe-block-menu-separator { background: var(--oe-border, #e5e5e5); height: 1px; margin: 4px; }\n\n.oe-prosemirror .ProseMirror-selectednode { outline: none; }\n\n.oe-canvas {\n --oe-block-gutter-outset: 0px;\n --oe-block-gutter-width: 42px;\n container-type: inline-size;\n min-height: calc(100vh - 96px);\n position: relative;\n}\n\n.oe-prosemirror,\n.oe-viewer {\n color: var(--oe-text, #171717);\n font-family: var(--oe-font-sans, inherit);\n font-size: var(--oe-body-font-size, 16px);\n line-height: var(--oe-body-line-height, 1.6);\n}\n\n.oe-editor-surface,\n.oe-prosemirror,\n.oe-viewer,\n.oe-slash-menu,\n.oe-dialog {\n scrollbar-color: color-mix(in srgb, var(--oe-muted, #737373) 72%, transparent) transparent;\n scrollbar-width: thin;\n}\n\n.oe-editor-surface::-webkit-scrollbar,\n.oe-editor-surface *::-webkit-scrollbar,\n.oe-prosemirror::-webkit-scrollbar,\n.oe-viewer::-webkit-scrollbar,\n.oe-slash-menu::-webkit-scrollbar,\n.oe-dialog::-webkit-scrollbar {\n height: 10px;\n width: 10px;\n}\n\n.oe-editor-surface::-webkit-scrollbar-track,\n.oe-editor-surface *::-webkit-scrollbar-track,\n.oe-prosemirror::-webkit-scrollbar-track,\n.oe-viewer::-webkit-scrollbar-track,\n.oe-slash-menu::-webkit-scrollbar-track,\n.oe-dialog::-webkit-scrollbar-track {\n background: transparent;\n}\n\n.oe-editor-surface::-webkit-scrollbar-thumb,\n.oe-editor-surface *::-webkit-scrollbar-thumb,\n.oe-prosemirror::-webkit-scrollbar-thumb,\n.oe-viewer::-webkit-scrollbar-thumb,\n.oe-slash-menu::-webkit-scrollbar-thumb,\n.oe-dialog::-webkit-scrollbar-thumb {\n background-clip: content-box;\n background-color: color-mix(in srgb, var(--oe-muted, #737373) 58%, transparent);\n border: 3px solid transparent;\n border-radius: 999px;\n}\n\n.oe-editor-surface::-webkit-scrollbar-thumb:hover,\n.oe-editor-surface *::-webkit-scrollbar-thumb:hover,\n.oe-prosemirror::-webkit-scrollbar-thumb:hover,\n.oe-viewer::-webkit-scrollbar-thumb:hover,\n.oe-slash-menu::-webkit-scrollbar-thumb:hover,\n.oe-dialog::-webkit-scrollbar-thumb:hover {\n background-color: color-mix(in srgb, var(--oe-muted, #737373) 78%, transparent);\n}\n\n.ProseMirror.oe-prosemirror,\n.oe-prosemirror,\n.oe-viewer {\n overflow-wrap: anywhere;\n word-wrap: anywhere;\n}\n\n.oe-prosemirror {\n box-sizing: border-box;\n margin-left: calc(-1 * var(--oe-block-gutter-outset));\n min-height: calc(100vh - 96px);\n outline: none;\n padding-left: var(--oe-block-gutter-width);\n white-space: break-spaces;\n width: calc(100% + var(--oe-block-gutter-outset));\n}\n\n.oe-prosemirror > *:first-child,\n.oe-viewer > *:first-child {\n margin-top: 0;\n}\n\n.oe-prosemirror > *:last-child,\n.oe-viewer > *:last-child {\n margin-bottom: 0;\n}\n\n.oe-prosemirror .is-empty::before {\n color: var(--oe-placeholder, #a3a3a3);\n content: attr(data-placeholder);\n float: left;\n height: 0;\n pointer-events: none;\n}\n\n.oe-prosemirror img,\n.oe-viewer img {\n border-radius: var(--oe-radius-medium, 8px);\n display: block;\n margin: var(--oe-space-block, 16px) 0;\n max-width: 100%;\n}\n\n.oe-prosemirror blockquote,\n.oe-viewer blockquote {\n border-left: 3px solid var(--oe-structural-line, var(--oe-border, #e5e5e5));\n margin: var(--oe-space-block, 18px) 0;\n padding-left: var(--oe-space-inline, 16px);\n}\n\n.oe-prosemirror pre,\n.oe-viewer pre {\n background: var(--oe-code-background, var(--oe-block-surface, var(--oe-surface-muted, #f5f5f5)));\n border-radius: var(--oe-radius-medium, 8px);\n color: var(--oe-code-text, #171717);\n overflow: auto;\n padding: var(--oe-space-inline, 14px);\n white-space: pre-wrap;\n}\n\n.oe-prosemirror code,\n.oe-viewer code {\n font-family: var(--oe-font-mono, \"SFMono-Regular\", Consolas, \"Liberation Mono\", monospace);\n}\n\n.oe-prosemirror a,\n.oe-viewer a {\n color: var(--oe-link, var(--oe-accent-strong, #171717));\n cursor: pointer;\n text-decoration-color: color-mix(in srgb, var(--oe-link, var(--oe-accent-strong, #171717)) 65%, transparent);\n text-decoration-line: underline;\n text-decoration-thickness: 1.5px;\n text-underline-offset: 0.18em;\n}\n\n.oe-prosemirror a:hover,\n.oe-viewer a:hover {\n color: var(--oe-link-hover, var(--oe-link, var(--oe-accent-strong, #171717)));\n text-decoration-color: currentColor;\n}\n\n.oe-prosemirror p,\n.oe-prosemirror ul,\n.oe-prosemirror ol,\n.oe-viewer p,\n.oe-viewer ul,\n.oe-viewer ol {\n color: var(--oe-text-soft, #262626);\n font-size: var(--oe-body-font-size, 16px);\n line-height: var(--oe-body-line-height, 1.6);\n}\n\n.oe-prosemirror h1,\n.oe-prosemirror h2,\n.oe-prosemirror h3,\n.oe-prosemirror h4,\n.oe-prosemirror h5,\n.oe-prosemirror h6,\n.oe-viewer h1,\n.oe-viewer h2,\n.oe-viewer h3,\n.oe-viewer h4,\n.oe-viewer h5,\n.oe-viewer h6 {\n color: var(--oe-heading, var(--oe-text, #171717));\n font-family: var(--oe-heading-font, var(--oe-font-sans, inherit));\n font-weight: var(--oe-heading-weight, 700);\n line-height: var(--oe-heading-line-height, 1.2);\n margin: 24px 0 10px;\n}\n\n.oe-prosemirror h1,\n.oe-viewer h1 {\n font-size: var(--oe-heading-1-size, 2em);\n}\n\n.oe-prosemirror h2,\n.oe-viewer h2 {\n font-size: var(--oe-heading-2-size, 1.5em);\n}\n\n.oe-prosemirror h3,\n.oe-viewer h3 {\n font-size: var(--oe-heading-3-size, 1.25em);\n}\n\n.oe-prosemirror h4,\n.oe-viewer h4 {\n font-size: var(--oe-heading-4-size, 1.125em);\n}\n\n.oe-prosemirror h5,\n.oe-viewer h5 { font-size: var(--oe-heading-5-size, 1em); }\n\n.oe-prosemirror h6,\n.oe-viewer h6 { font-size: var(--oe-heading-6-size, 1em); }\n\n.oe-prosemirror ul:not([data-type=\"taskList\"]),\n.oe-viewer ul:not([data-type=\"taskList\"]) {\n list-style: disc;\n padding-left: 1.5em;\n}\n\n.oe-prosemirror ol,\n.oe-viewer ol {\n list-style: decimal;\n padding-left: 1.5em;\n}\n\n.oe-prosemirror li,\n.oe-viewer li {\n margin: 4px 0;\n}\n\n.oe-prosemirror [data-openeditor-toggle-list],\n.oe-viewer [data-openeditor-toggle-list] {\n list-style: none;\n margin: 18px 0;\n padding: 0;\n}\n\n.oe-toggle-list-item:not(details) {\n display: grid;\n gap: 8px;\n grid-template-columns: 24px minmax(0, 1fr);\n}\n\ndetails.oe-toggle-list-item {\n display: block;\n margin: 8px 0;\n}\n\ndetails.oe-toggle-list-item > summary {\n cursor: pointer;\n font-weight: 500;\n}\n\n.oe-toggle-list-trigger {\n align-items: center;\n align-self: start;\n background: transparent;\n border: 0;\n color: var(--oe-muted, #737373);\n cursor: pointer;\n display: inline-flex;\n height: 24px;\n justify-content: center;\n margin-top: 1px;\n padding: 0;\n width: 24px;\n}\n\n.oe-toggle-list-trigger:hover,\n.oe-toggle-list-trigger:focus-visible {\n color: var(--oe-text, #171717);\n outline: none;\n}\n\n.oe-toggle-list-trigger:focus-visible .oe-toggle-list-chevron {\n filter: drop-shadow(0 0 2px var(--oe-text, #171717));\n}\n\n.oe-toggle-list-trigger:disabled {\n cursor: default;\n}\n\n.oe-toggle-list-chevron {\n border-bottom: 4px solid transparent;\n border-left: 6px solid currentColor;\n border-top: 4px solid transparent;\n display: block;\n height: 0;\n transform: rotate(0deg);\n transform-origin: 3px center;\n transition: transform 140ms ease;\n width: 0;\n}\n\n.oe-toggle-list-item[data-open=\"true\"] > .oe-toggle-list-trigger .oe-toggle-list-chevron {\n transform: rotate(90deg);\n}\n\n.oe-toggle-list-content > :first-child,\n.oe-toggle-list-content > [data-node-view-content-react] > :first-child {\n margin-top: 0;\n}\n\n.oe-toggle-list-content > :last-child,\n.oe-toggle-list-content > [data-node-view-content-react] > :last-child {\n margin-bottom: 0;\n}\n\n.oe-toggle-list-item[data-open=\"false\"] > .oe-toggle-list-content > :not(:first-child),\n.oe-toggle-list-item[data-open=\"false\"] > .oe-toggle-list-content > [data-node-view-content-react] > :not(:first-child) {\n display: none;\n}\n\n.oe-callout {\n align-items: start;\n background: var(--oe-block-surface, var(--oe-surface-muted, #f5f5f5));\n border: 0;\n border-radius: var(--oe-radius-large, 12px);\n box-sizing: border-box;\n display: grid;\n gap: 8px;\n grid-template-columns: 28px minmax(0, 1fr);\n margin: var(--oe-space-block, 16px) 0;\n padding: var(--oe-space-inline, 14px);\n width: 100%;\n}\n\n.oe-callout-content > :first-child,\n.oe-callout-content > [data-node-view-content-react] > :first-child {\n margin-top: 0;\n}\n\n.oe-callout-content > :last-child,\n.oe-callout-content > [data-node-view-content-react] > :last-child {\n margin-bottom: 0;\n}\n\n.oe-callout-emoji {\n align-items: center;\n align-self: start;\n display: inline-flex;\n font-size: 20px;\n height: 26px;\n justify-content: center;\n line-height: 1;\n width: 28px;\n}\n\n.oe-callout .oe-callout-emoji-trigger {\n height: 26px;\n line-height: 1;\n width: 28px;\n}\n\n.oe-page {\n align-items: center;\n background: transparent;\n border: 0;\n border-radius: 6px;\n color: var(--oe-text, #171717);\n display: flex;\n font: inherit;\n gap: 8px;\n margin: 4px 0;\n min-height: 34px;\n padding: 3px 6px;\n text-align: left;\n width: 100%;\n}\n\n.oe-page:hover,\n.oe-page:focus-within {\n background: var(--oe-surface-muted, #f5f5f5);\n}\n\n.oe-page[data-page-id]:not([data-page-id=\"\"]) {\n cursor: pointer;\n}\n\n.oe-page[data-page-id]:not([data-page-id=\"\"]):focus-visible {\n box-shadow: 0 0 0 2px var(--oe-surface, #ffffff), 0 0 0 4px var(--oe-structural-line, #d4d4d4);\n outline: none;\n}\n\n.oe-page-icon {\n flex: 0 0 auto;\n font-size: 18px;\n line-height: 1;\n text-align: center;\n width: 24px;\n}\n\n.oe-emoji-trigger {\n align-items: center;\n background: transparent;\n border: 0;\n border-radius: 6px;\n color: inherit;\n cursor: pointer;\n display: inline-flex;\n font: inherit;\n font-size: 20px;\n height: 30px;\n justify-content: center;\n padding: 0;\n width: 30px;\n}\n\n.oe-emoji-trigger:hover,\n.oe-emoji-trigger:focus-visible,\n.oe-emoji-trigger[data-popup-open] {\n background: color-mix(in srgb, var(--oe-text, #171717) 8%, transparent);\n outline: none;\n}\n\n.oe-emoji-trigger:focus-visible {\n box-shadow: 0 0 0 2px var(--oe-surface, #ffffff), 0 0 0 4px var(--oe-structural-line, #d4d4d4);\n}\n\n.oe-emoji-trigger:disabled {\n cursor: default;\n}\n\n.oe-page-icon-trigger {\n font-size: 18px;\n height: 28px;\n width: 28px;\n}\n\n.oe-emoji-popover {\n background: var(--oe-surface, #ffffff);\n border-radius: 12px;\n box-shadow:\n 0 0 0 1px var(--oe-shadow, rgb(0 0 0 / 8%)),\n 0 16px 48px var(--oe-shadow, rgb(0 0 0 / 16%));\n color: var(--oe-text, #171717);\n overflow: hidden;\n transform-origin: var(--transform-origin);\n z-index: 1100;\n}\n\n.oe-emoji-picker {\n display: flex;\n height: min(360px, calc(100vh - 32px));\n isolation: isolate;\n width: min(320px, calc(100vw - 24px));\n flex-direction: column;\n}\n\n.oe-emoji-search {\n appearance: none;\n background: var(--oe-block-surface, var(--oe-surface-muted, #f5f5f5));\n border: 0;\n border-radius: 8px;\n color: var(--oe-text, #171717);\n font: inherit;\n font-size: 14px;\n margin: 8px;\n min-height: 38px;\n outline: none;\n padding: 0 11px;\n}\n\n.oe-emoji-search:focus {\n box-shadow: inset 0 0 0 1px var(--oe-structural-line, var(--oe-border, #e5e5e5));\n}\n\n.oe-emoji-viewport {\n min-height: 0;\n outline: none;\n overflow: auto;\n position: relative;\n flex: 1;\n}\n\n.oe-emoji-state {\n align-items: center;\n color: var(--oe-muted, #737373);\n display: flex;\n font-size: 13px;\n inset: 0;\n justify-content: center;\n position: absolute;\n}\n\n.oe-emoji-list {\n padding-bottom: 6px;\n user-select: none;\n}\n\n.oe-emoji-category {\n background: var(--oe-surface, #ffffff);\n color: var(--oe-muted, #737373);\n font-size: 11px;\n font-weight: 650;\n padding: 8px 10px 4px;\n}\n\n.oe-emoji-row {\n display: flex;\n padding: 0 6px;\n scroll-margin-block: 4px;\n}\n\n.oe-emoji-option {\n align-items: center;\n aspect-ratio: 1;\n background: transparent;\n border: 0;\n border-radius: 7px;\n cursor: pointer;\n display: flex;\n flex: 1;\n font-size: 20px;\n justify-content: center;\n min-width: 0;\n padding: 0;\n}\n\n.oe-emoji-option[data-active] {\n background: var(--oe-block-surface, var(--oe-surface-muted, #f5f5f5));\n}\n\n.oe-emoji-footer {\n align-items: center;\n border-top: 1px solid var(--oe-structural-line, var(--oe-border, #e5e5e5));\n color: var(--oe-muted, #737373);\n display: flex;\n font-size: 12px;\n gap: 7px;\n min-height: 42px;\n padding: 5px 8px;\n}\n\n.oe-emoji-footer > span:first-child {\n font-size: 18px;\n}\n\n.oe-emoji-footer [frimousse-skin-tone-selector] {\n background: transparent;\n border: 0;\n border-radius: 6px;\n cursor: pointer;\n font-size: 18px;\n margin-left: auto;\n min-height: 30px;\n min-width: 30px;\n}\n\n.oe-page-title {\n flex: 1 1 auto;\n font-weight: 500;\n min-width: 0;\n text-decoration: underline;\n text-decoration-color: color-mix(in srgb, currentColor 28%, transparent);\n text-underline-offset: 0.18em;\n}\n\n.oe-page-header {\n align-items: center;\n display: flex;\n gap: 8px;\n}\n\n.oe-page-header > .oe-emoji-trigger {\n flex: 0 0 auto;\n font-size: 30px;\n height: 42px;\n width: 42px;\n}\n\n.oe-page-header-title {\n background: transparent;\n border: 0;\n color: var(--oe-heading, var(--oe-text, #171717));\n font: inherit;\n font-size: 2em;\n font-weight: 700;\n line-height: 1.2;\n min-width: 0;\n outline: none;\n padding: 0;\n width: 100%;\n}\n\n.oe-page-action {\n background: transparent;\n border: 0;\n border-radius: 5px;\n color: var(--oe-muted, #737373);\n cursor: pointer;\n flex: 0 0 auto;\n font: inherit;\n font-size: 12px;\n padding: 5px 7px;\n}\n\n.oe-page-action:hover { background: var(--oe-accent, #e5e5e5); color: var(--oe-text, #171717); }\n.oe-page-action:disabled { cursor: progress; opacity: 0.6; }\n.oe-page-error { color: #dc2626; font-size: 12px; }\n.oe-page-viewer { cursor: pointer; text-decoration: none; }\n.oe-page-arrow { color: var(--oe-muted, #737373); }\n\n.oe-diagram {\n background: var(--oe-block-surface, var(--oe-surface-muted, #f5f5f5));\n border: 0;\n border-radius: var(--oe-radius-large, 12px);\n margin: var(--oe-space-block, 18px) 0;\n overflow: hidden;\n}\n\n.oe-diagram-preview {\n background: var(--oe-block-surface, var(--oe-surface-muted, #f5f5f5));\n min-height: 120px;\n overflow: auto;\n padding: var(--oe-space-inline, 18px);\n}\n\n.oe-diagram-preview svg {\n display: block;\n height: auto;\n margin: auto;\n max-width: 100%;\n}\n\n.oe-diagram-source,\n.oe-diagram-error {\n background: var(--oe-block-surface, var(--oe-surface-muted, #f5f5f5));\n border: 0;\n border-top: 1px solid var(--oe-structural-line, var(--oe-border, #e5e5e5));\n box-sizing: border-box;\n color: var(--oe-code-text, #171717);\n display: block;\n font-family: \"SFMono-Regular\", Consolas, \"Liberation Mono\", monospace;\n font-size: 13px;\n line-height: 1.5;\n margin: 0;\n min-height: 112px;\n padding: 12px 14px;\n resize: vertical;\n width: 100%;\n}\n\n.oe-diagram-error {\n color: #dc2626;\n white-space: pre-wrap;\n}\n\n.oe-prosemirror hr,\n.oe-divider,\n.oe-viewer hr {\n border: 0;\n cursor: pointer;\n height: 1px;\n margin: 18px 0;\n padding: 10px 0;\n position: relative;\n}\n\n.oe-prosemirror hr::after,\n.oe-divider::after,\n.oe-viewer hr::after {\n background: var(--oe-structural-line, var(--oe-border, #e5e5e5));\n content: \"\";\n display: block;\n height: 1px;\n left: 0;\n pointer-events: none;\n position: absolute;\n right: 0;\n top: 10px;\n}\n\n.oe-prosemirror hr.ProseMirror-selectednode,\n.oe-divider.ProseMirror-selectednode {\n outline: none;\n}\n\n.oe-prosemirror hr.ProseMirror-selectednode::after,\n.oe-divider.ProseMirror-selectednode::after {\n background: var(--oe-structural-line, var(--oe-border, #e5e5e5));\n box-shadow: 0 0 0 6px var(--oe-accent, #f5f5f5);\n}\n\n.oe-columns {\n --oe-column-count: 2;\n display: grid;\n gap: 12px;\n grid-template-columns: repeat(var(--oe-column-count), minmax(0, 1fr));\n}\n\n.oe-columns[data-openeditor-columns=\"1\"] { --oe-column-count: 1; }\n.oe-columns[data-openeditor-columns=\"2\"] { --oe-column-count: 2; }\n.oe-columns[data-openeditor-columns=\"3\"] { --oe-column-count: 3; }\n.oe-columns[data-openeditor-columns=\"4\"] { --oe-column-count: 4; }\n\n.oe-column,\n.oe-prosemirror [data-openeditor-column],\n.oe-viewer [data-openeditor-column] {\n border-radius: 8px;\n padding: 4px 6px;\n}\n\n.oe-prosemirror [data-openeditor-column] > :first-child,\n.oe-viewer [data-openeditor-column] > :first-child {\n margin-top: 0;\n}\n\n.oe-prosemirror [data-openeditor-column] > :last-child,\n.oe-viewer [data-openeditor-column] > :last-child {\n margin-bottom: 0;\n}\n\n.oe-prosemirror ul[data-type=\"taskList\"],\n.oe-viewer ul[data-type=\"taskList\"] {\n list-style: none;\n padding-left: 0;\n}\n\n.oe-viewer li.oe-task-item > label {\n align-items: start;\n display: grid;\n gap: 8px;\n grid-template-columns: 20px minmax(0, 1fr);\n}\n\n.oe-viewer li.oe-task-item > label > input {\n height: 18px;\n margin: 3px 0 0;\n width: 18px;\n}\n\n.oe-prosemirror ul[data-type=\"taskList\"] > .react-renderer.node-taskItem {\n display: contents;\n}\n\n.oe-prosemirror ul[data-type=\"taskList\"] li,\n.oe-viewer li[data-checked] {\n align-items: start;\n display: grid;\n gap: 8px;\n grid-template-columns: 20px minmax(0, 1fr);\n}\n\n.oe-prosemirror ul[data-type=\"taskList\"] li > .oe-task-item-checkbox,\n.oe-viewer li[data-checked] > .oe-task-item-checkbox {\n align-items: center;\n display: inline-flex;\n flex: 0 0 auto;\n line-height: 1.6;\n margin-top: 3px;\n}\n\n.oe-task-checkbox {\n appearance: none;\n background: var(--oe-block-surface, var(--oe-surface-muted, #f5f5f5));\n border: 0;\n border-radius: 4px;\n box-shadow: none;\n cursor: pointer;\n display: inline-grid;\n height: 20px;\n margin: 0;\n outline: none !important;\n place-items: center;\n width: 20px;\n}\n\n.oe-task-checkbox[data-readonly] {\n cursor: default;\n}\n\n.oe-task-checkbox-indicator {\n border-bottom: 2px solid var(--oe-button-text, #ffffff);\n border-right: 2px solid var(--oe-button-text, #ffffff);\n height: 9px;\n opacity: 0;\n transform: translateY(-1px) rotate(45deg);\n width: 5px;\n}\n\n.oe-task-checkbox[data-checked] {\n background: var(--oe-accent-strong, #171717);\n}\n\n.oe-task-checkbox[data-checked] .oe-task-checkbox-indicator {\n opacity: 1;\n}\n\n.oe-prosemirror ul[data-type=\"taskList\"] li > [data-node-view-content],\n.oe-viewer li[data-checked] > div {\n flex: 1 1 auto;\n min-width: 0;\n}\n\n.oe-prosemirror ul[data-type=\"taskList\"] li [data-node-view-content] p,\n.oe-viewer li[data-checked] > div > p {\n margin: 0;\n min-height: 1.6em;\n}\n\n.oe-prosemirror .tableWrapper > table,\n.oe-prosemirror table[data-openeditor-table],\n.oe-viewer table[data-openeditor-table] {\n border-collapse: collapse;\n margin: 18px 0;\n table-layout: fixed;\n width: 100%;\n}\n\n.oe-prosemirror .tableWrapper > table th,\n.oe-prosemirror .tableWrapper > table td,\n.oe-prosemirror table[data-openeditor-table] th,\n.oe-prosemirror table[data-openeditor-table] td,\n.oe-viewer table[data-openeditor-table] th,\n.oe-viewer table[data-openeditor-table] td {\n background: var(--oe-block-surface, var(--oe-surface-muted, #f5f5f5));\n border: 1px solid var(--oe-structural-line, var(--oe-border, #e5e5e5));\n min-width: 96px;\n padding: 10px;\n vertical-align: top;\n}\n\n.oe-prosemirror .tableWrapper > table th,\n.oe-prosemirror table[data-openeditor-table] th,\n.oe-viewer table[data-openeditor-table] th {\n font-weight: 700;\n}\n\n.oe-button,\n.oe-input {\n border: 1px solid var(--oe-border-strong, #d4d4d4);\n border-radius: 6px;\n color: var(--oe-text, #171717);\n font: inherit;\n min-height: 36px;\n}\n\n.oe-button {\n align-items: center;\n background: var(--oe-button-background, #171717);\n color: var(--oe-button-text, #ffffff);\n cursor: pointer;\n display: inline-flex;\n justify-content: center;\n padding: 0 12px;\n}\n\n.oe-button:hover,\n.oe-button:focus-visible,\n.oe-button[data-pressed] {\n background: var(--oe-accent, #f5f5f5);\n color: var(--oe-accent-text, #171717);\n}\n\n.oe-button-secondary {\n background: transparent;\n color: var(--oe-text, #171717);\n}\n\n.oe-input {\n background: var(--oe-surface, #ffffff);\n color: var(--oe-text, #171717);\n padding: 0 10px;\n width: 100%;\n}\n\n.oe-toggle-group {\n align-items: center;\n display: inline-flex;\n gap: 6px;\n}\n\n.oe-cascade-menu {\n align-items: flex-start;\n display: flex;\n gap: 4px;\n outline: none;\n z-index: 1002;\n}\n\n.oe-cascade-panel {\n flex: 0 0 auto;\n}\n\n.oe-slash-menu {\n background: var(--oe-surface, #ffffff);\n border-radius: 23px;\n overflow: hidden;\n padding: 6px;\n width: min(260px, calc(100vw - 24px));\n z-index: 1000;\n}\n\n.oe-slash-menu,\n.oe-slash-menu *,\n.oe-slash-menu *::before,\n.oe-slash-menu *::after {\n outline: none !important;\n}\n\n.oe-slash-menu-scroll {\n display: grid;\n gap: 2px;\n max-height: 308px;\n overflow-x: hidden;\n overflow-y: auto;\n padding-right: 2px;\n}\n\n.oe-slash-menu-scroll::-webkit-scrollbar {\n width: 8px;\n}\n\n.oe-slash-menu-scroll::-webkit-scrollbar-thumb {\n border-width: 2px;\n}\n\n.oe-slash-menu-item {\n align-items: center;\n background: transparent;\n border: 0;\n border-radius: 17px;\n color: var(--oe-text, #171717);\n cursor: pointer;\n display: flex;\n gap: 9px;\n justify-content: flex-start;\n min-height: 34px;\n outline: none;\n padding: 0 11px 0 9px;\n text-align: left;\n -webkit-tap-highlight-color: transparent;\n}\n\n.oe-slash-menu-item:focus,\n.oe-slash-menu-item:hover,\n.oe-slash-menu-item:focus-visible,\n.oe-slash-menu-item[data-highlighted] {\n background: var(--oe-surface-muted, #f5f5f5);\n box-shadow: none !important;\n outline: none !important;\n}\n\n.oe-slash-menu span {\n font-size: 13px;\n font-weight: 640;\n}\n\n.oe-slash-menu-icon {\n color: var(--oe-muted, #737373);\n flex: 0 0 auto;\n}\n\n.oe-submenu-chevron {\n color: var(--oe-muted, #737373);\n flex: 0 0 auto;\n margin-left: auto;\n}\n\n.oe-slash-submenu {\n display: grid;\n gap: 2px;\n width: 190px;\n}\n\n.oe-slash-menu-item:focus .oe-slash-menu-icon,\n.oe-slash-menu-item:hover .oe-slash-menu-icon,\n.oe-slash-menu-item:focus-visible .oe-slash-menu-icon,\n.oe-slash-menu-item[data-highlighted] .oe-slash-menu-icon {\n color: var(--oe-text, #171717);\n}\n\n.oe-bubble-menu {\n align-items: center;\n background: var(--oe-surface, #ffffff);\n border-radius: 999px;\n display: flex;\n gap: 2px;\n padding: 3px;\n z-index: 1000;\n}\n\n.oe-selection-toolbar {\n align-items: center;\n display: flex;\n gap: 2px;\n}\n\n.oe-toolbar-button {\n background: transparent;\n border: 0;\n border-radius: 999px;\n color: var(--oe-text, #171717);\n cursor: pointer;\n font-size: 12px;\n font-weight: 700;\n min-height: 28px;\n min-width: 28px;\n padding: 0 9px;\n}\n\n.oe-toolbar-icon {\n display: block;\n flex: 0 0 auto;\n}\n\n.oe-toolbar-chevron {\n color: var(--oe-muted, #737373);\n display: block;\n flex: 0 0 auto;\n margin-left: -2px;\n}\n\n.oe-block-transform-trigger {\n align-items: center;\n display: inline-flex;\n gap: 5px;\n justify-content: center;\n padding: 0 9px;\n}\n\n.oe-block-transform-trigger-label {\n font-size: 12px;\n font-weight: 700;\n line-height: 1;\n white-space: nowrap;\n}\n\n.oe-toolbar-button:hover,\n.oe-toolbar-button:focus-visible,\n.oe-toolbar-button[data-active] {\n background: var(--oe-surface-muted, #f5f5f5);\n color: var(--oe-accent-strong, #171717);\n outline: none;\n}\n\n.oe-toolbar-button:hover .oe-toolbar-chevron,\n.oe-toolbar-button:focus-visible .oe-toolbar-chevron,\n.oe-toolbar-button[data-active] .oe-toolbar-chevron {\n color: var(--oe-accent-strong, #171717);\n}\n\n.oe-block-transform-menu {\n background: var(--oe-surface, #ffffff);\n border-radius: 23px;\n display: grid;\n gap: 2px;\n min-width: 174px;\n padding: 6px;\n z-index: 1002;\n}\n\n.oe-block-transform-submenu {\n min-width: 160px;\n}\n\n.oe-block-transform-menu,\n.oe-block-transform-menu *,\n.oe-block-transform-menu *::before,\n.oe-block-transform-menu *::after {\n outline: none !important;\n}\n\n.oe-block-transform-item {\n align-items: center;\n background: transparent;\n border: 0;\n border-radius: 17px;\n color: var(--oe-text, #171717);\n cursor: pointer;\n display: flex;\n gap: 9px;\n min-height: 34px;\n padding: 0 11px 0 9px;\n text-align: left;\n -webkit-tap-highlight-color: transparent;\n}\n\n.oe-block-transform-item span {\n font-size: 13px;\n font-weight: 640;\n}\n\n.oe-block-transform-icon {\n color: var(--oe-muted, #737373);\n flex: 0 0 auto;\n}\n\n.oe-block-transform-item:hover,\n.oe-block-transform-item:focus,\n.oe-block-transform-item:focus-visible,\n.oe-block-transform-item[data-highlighted],\n.oe-block-transform-item[data-active] {\n background: var(--oe-surface-muted, #f5f5f5);\n box-shadow: none !important;\n outline: none !important;\n}\n\n.oe-block-transform-item:hover .oe-block-transform-icon,\n.oe-block-transform-item:focus .oe-block-transform-icon,\n.oe-block-transform-item:focus-visible .oe-block-transform-icon,\n.oe-block-transform-item[data-highlighted] .oe-block-transform-icon,\n.oe-block-transform-item[data-active] .oe-block-transform-icon {\n color: var(--oe-text, #171717);\n}\n\n.oe-dialog-backdrop {\n background: rgb(0 0 0 / 24%);\n inset: 0;\n position: fixed;\n z-index: 1000;\n}\n\n.oe-dialog {\n background: var(--oe-surface, #ffffff);\n border: 0;\n border-radius: 23px;\n box-shadow:\n 0 0 0 1px var(--oe-shadow, rgb(0 0 0 / 6%)),\n 0 18px 48px var(--oe-shadow, rgb(0 0 0 / 14%));\n left: 50%;\n max-width: min(420px, calc(100vw - 32px));\n padding: 8px;\n position: fixed;\n top: 50%;\n transform: translate(-50%, -50%);\n width: 100%;\n z-index: 1001;\n}\n\n.oe-dialog-close {\n align-items: center;\n background: transparent;\n border: 0;\n border-radius: 999px;\n color: var(--oe-muted, #737373);\n cursor: pointer;\n display: flex;\n height: 34px;\n justify-content: center;\n padding: 0;\n position: absolute;\n right: 8px;\n top: 8px;\n transition-duration: 140ms;\n transition-property: color, transform;\n transition-timing-function: cubic-bezier(0.2, 0, 0, 1);\n width: 34px;\n}\n\n.oe-dialog-close:hover,\n.oe-dialog-close:focus-visible {\n color: var(--oe-text, #171717);\n outline: none;\n}\n\n.oe-dialog-close:active {\n transform: scale(0.96);\n}\n\n.oe-link-dialog-form {\n display: grid;\n gap: 8px;\n}\n\n.oe-dialog-title {\n color: var(--oe-text, #171717);\n font-size: 13px;\n font-weight: 640;\n margin: 0;\n padding: 6px 8px 2px;\n}\n\n.oe-dialog .oe-input {\n background: var(--oe-surface-muted, #f5f5f5);\n border: 0;\n border-radius: 17px;\n box-shadow: inset 0 0 0 1px var(--oe-shadow, rgb(0 0 0 / 8%));\n caret-color: var(--oe-text, #171717);\n color: var(--oe-text, #171717);\n font-size: 13px;\n min-height: 38px;\n outline: none;\n padding: 0 12px;\n}\n\n.oe-dialog .oe-input::placeholder {\n color: var(--oe-muted, #737373);\n}\n\n.oe-dialog .oe-input:hover,\n.oe-dialog .oe-input:focus,\n.oe-dialog .oe-input:focus-visible {\n box-shadow:\n inset 0 0 0 1px var(--oe-shadow, rgb(0 0 0 / 12%)),\n 0 0 0 3px var(--oe-surface-muted, #f5f5f5);\n outline: none;\n}\n\n.oe-dialog-actions {\n align-items: center;\n display: flex;\n gap: 4px;\n justify-content: flex-end;\n padding-top: 2px;\n}\n\n.oe-dialog-button {\n border: 0;\n border-radius: 17px;\n box-shadow: none;\n font-size: 13px;\n font-weight: 640;\n min-height: 34px;\n padding: 0 12px;\n transition-duration: 140ms;\n transition-property: background-color, color, transform;\n transition-timing-function: cubic-bezier(0.2, 0, 0, 1);\n}\n\n.oe-dialog-button:hover,\n.oe-dialog-button:focus-visible {\n background: var(--oe-surface-muted, #f5f5f5);\n color: var(--oe-text, #171717);\n outline: none;\n}\n\n.oe-dialog-button:active {\n transform: scale(0.96);\n}\n\n.oe-dialog-button-primary {\n background: var(--oe-text, #171717);\n color: var(--oe-surface, #ffffff);\n}\n\n.oe-dialog-button-remove {\n background: var(--oe-surface-muted, #f5f5f5);\n box-shadow: inset 0 0 0 1px var(--oe-shadow, rgb(0 0 0 / 6%));\n color: var(--oe-text, #171717);\n}\n\n.oe-dialog-button-remove:hover,\n.oe-dialog-button-remove:focus-visible {\n background: var(--oe-surface-muted, #f5f5f5);\n box-shadow: inset 0 0 0 1px var(--oe-shadow, rgb(0 0 0 / 10%));\n color: var(--oe-text, #171717);\n}\n\n.oe-dialog-button-primary:hover,\n.oe-dialog-button-primary:focus-visible {\n background: var(--oe-text, #171717);\n color: var(--oe-surface, #ffffff);\n opacity: 0.88;\n}\n\n.oe-attachment {\n align-items: center;\n background: var(--oe-surface, #fff);\n border: 1px solid var(--oe-border, #e5e5e5);\n border-radius: 12px;\n color: var(--oe-text, #171717);\n display: flex;\n gap: 12px;\n margin: 8px 0;\n min-height: 68px;\n padding: 10px 12px;\n text-align: left;\n text-decoration: none;\n transition: border-color 140ms, box-shadow 140ms, background 140ms;\n width: 100%;\n}\n\n.oe-attachment:hover,\n.oe-attachment:focus-within {\n border-color: var(--oe-border-strong, #d4d4d4);\n box-shadow: 0 4px 18px var(--oe-shadow, rgb(0 0 0 / 8%));\n outline: none;\n}\n\n.oe-attachment[data-state=\"error\"],\n.oe-attachment[data-state=\"missing\"] { border-color: #efb0b0; }\n\n.oe-attachment-icon {\n align-items: center;\n background: var(--oe-surface-muted, #f5f5f5);\n border-radius: 9px;\n display: flex;\n flex: 0 0 42px;\n height: 48px;\n justify-content: center;\n}\n\n.oe-attachment-icon span { color: var(--oe-muted, #737373); font-size: 9px; font-weight: 750; letter-spacing: .04em; }\n.oe-attachment-body { display: flex; flex: 1; flex-direction: column; min-width: 0; }\n.oe-attachment-name { background: transparent; border: 0; color: inherit; font: inherit; font-weight: 650; min-width: 0; outline: none; overflow: hidden; padding: 0; text-overflow: ellipsis; white-space: nowrap; }\n.oe-attachment-meta { color: var(--oe-muted, #737373); display: block; font-size: 12px; margin-top: 3px; }\n.oe-attachment-progress { background: var(--oe-surface-muted, #f5f5f5); border-radius: 2px; height: 4px; margin-top: 8px; overflow: hidden; }\n.oe-attachment-progress span { background: var(--oe-accent-strong, #171717); display: block; height: 100%; transition: width 90ms linear; }\n.oe-attachment-error { color: #b42318; font-size: 12px; margin-top: 4px; }\n.oe-attachment-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 4px; justify-content: flex-end; }\n.oe-attachment-actions button { background: transparent; border: 0; border-radius: 7px; color: var(--oe-muted, #737373); cursor: pointer; font: inherit; font-size: 12px; min-height: 34px; padding: 0 8px; }\n.oe-attachment-actions button:hover, .oe-attachment-actions button:focus-visible { background: var(--oe-surface-muted, #f5f5f5); color: var(--oe-text, #171717); outline: none; }\n.oe-attachment-viewer { cursor: pointer; }\n"],"mappings":"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","names":[]}
|
|
1
|
+
{"version":3,"sources":["../src/styles.css"],"sourcesContent":[".oe-editor-surface {\n container-type: inline-size;\n display: grid;\n gap: 12px;\n position: relative;\n}\n\n.oe-block-handle-anchor {\n align-items: flex-start;\n box-sizing: border-box;\n cursor: grab;\n display: flex;\n justify-content: flex-end;\n padding-right: 6px;\n width: var(--oe-block-gutter-width, 42px);\n z-index: 40;\n}\n\n.oe-block-handle-anchor[data-dragging=\"true\"] { cursor: grabbing; }\n\n.oe-block-handle {\n align-items: center;\n background: transparent;\n border: 0;\n border-radius: 7px;\n color: var(--oe-muted, #737373);\n display: flex;\n height: 28px;\n justify-content: center;\n padding: 0;\n pointer-events: none;\n position: static;\n transition: background-color 100ms ease, color 100ms ease;\n width: 28px;\n z-index: 40;\n}\n\n.oe-block-handle-anchor:hover .oe-block-handle,\n.oe-block-handle-anchor:focus-visible .oe-block-handle,\n.oe-block-handle-anchor[aria-expanded=\"true\"] .oe-block-handle {\n background: var(--oe-surface-muted, #f5f5f5);\n color: var(--oe-text, #171717);\n}\n\n.oe-block-handle-anchor:focus-visible { outline: none; }\n\n.oe-block-handle-anchor:focus-visible .oe-block-handle {\n outline: 2px solid var(--oe-accent-strong, #171717);\n outline-offset: 2px;\n}\n\n.oe-block-menu {\n background: var(--oe-surface, #fff);\n border: 0;\n border-radius: 12px;\n min-width: 188px;\n outline: none;\n padding: 5px;\n z-index: 1000;\n}\n\n.oe-block-menu:focus,\n.oe-block-menu:focus-visible {\n outline: none;\n}\n\n.oe-block-menu-item {\n align-items: center;\n border-radius: 8px;\n color: var(--oe-text, #171717);\n cursor: default;\n display: flex;\n font-size: 13px;\n gap: 9px;\n min-height: 34px;\n outline: none;\n padding: 0 9px;\n}\n\n.oe-block-menu-item[data-highlighted] { background: var(--oe-surface-muted, #f5f5f5); }\n.oe-block-menu-item[data-danger] { color: #c83232; }\n.oe-block-menu-item[data-disabled] { opacity: .45; }\n.oe-block-menu-icon-placeholder { display: block; width: 15px; }\n.oe-block-menu-separator { background: var(--oe-border, #e5e5e5); height: 1px; margin: 4px; }\n\n.oe-prosemirror .ProseMirror-selectednode { outline: none; }\n\n.oe-canvas {\n --oe-block-gutter-outset: 0px;\n --oe-block-gutter-width: 42px;\n container-type: inline-size;\n min-height: calc(100vh - 96px);\n position: relative;\n}\n\n.oe-prosemirror,\n.oe-viewer {\n color: var(--oe-text, #171717);\n font-family: var(--oe-font-sans, inherit);\n font-size: var(--oe-body-font-size, 16px);\n line-height: var(--oe-body-line-height, 1.6);\n}\n\n.oe-editor-surface,\n.oe-prosemirror,\n.oe-viewer,\n.oe-slash-menu,\n.oe-dialog {\n scrollbar-color: color-mix(in srgb, var(--oe-muted, #737373) 72%, transparent) transparent;\n scrollbar-width: thin;\n}\n\n.oe-editor-surface::-webkit-scrollbar,\n.oe-editor-surface *::-webkit-scrollbar,\n.oe-prosemirror::-webkit-scrollbar,\n.oe-viewer::-webkit-scrollbar,\n.oe-slash-menu::-webkit-scrollbar,\n.oe-dialog::-webkit-scrollbar {\n height: 10px;\n width: 10px;\n}\n\n.oe-editor-surface::-webkit-scrollbar-track,\n.oe-editor-surface *::-webkit-scrollbar-track,\n.oe-prosemirror::-webkit-scrollbar-track,\n.oe-viewer::-webkit-scrollbar-track,\n.oe-slash-menu::-webkit-scrollbar-track,\n.oe-dialog::-webkit-scrollbar-track {\n background: transparent;\n}\n\n.oe-editor-surface::-webkit-scrollbar-thumb,\n.oe-editor-surface *::-webkit-scrollbar-thumb,\n.oe-prosemirror::-webkit-scrollbar-thumb,\n.oe-viewer::-webkit-scrollbar-thumb,\n.oe-slash-menu::-webkit-scrollbar-thumb,\n.oe-dialog::-webkit-scrollbar-thumb {\n background-clip: content-box;\n background-color: color-mix(in srgb, var(--oe-muted, #737373) 58%, transparent);\n border: 3px solid transparent;\n border-radius: 999px;\n}\n\n.oe-editor-surface::-webkit-scrollbar-thumb:hover,\n.oe-editor-surface *::-webkit-scrollbar-thumb:hover,\n.oe-prosemirror::-webkit-scrollbar-thumb:hover,\n.oe-viewer::-webkit-scrollbar-thumb:hover,\n.oe-slash-menu::-webkit-scrollbar-thumb:hover,\n.oe-dialog::-webkit-scrollbar-thumb:hover {\n background-color: color-mix(in srgb, var(--oe-muted, #737373) 78%, transparent);\n}\n\n.ProseMirror.oe-prosemirror,\n.oe-prosemirror,\n.oe-viewer {\n overflow-wrap: anywhere;\n word-wrap: anywhere;\n}\n\n.oe-prosemirror {\n box-sizing: border-box;\n margin-left: calc(-1 * var(--oe-block-gutter-outset));\n min-height: calc(100vh - 96px);\n outline: none;\n padding-left: var(--oe-block-gutter-width);\n white-space: break-spaces;\n width: calc(100% + var(--oe-block-gutter-outset));\n}\n\n.oe-prosemirror > *:first-child,\n.oe-viewer > *:first-child {\n margin-top: 0;\n}\n\n.oe-prosemirror > *:last-child,\n.oe-viewer > *:last-child {\n margin-bottom: 0;\n}\n\n.oe-prosemirror .is-empty::before {\n color: var(--oe-placeholder, #a3a3a3);\n content: attr(data-placeholder);\n float: left;\n height: 0;\n pointer-events: none;\n}\n\n.oe-prosemirror img,\n.oe-viewer img {\n border-radius: var(--oe-radius-medium, 8px);\n display: block;\n margin: var(--oe-space-block, 16px) 0;\n max-width: 100%;\n}\n\n.oe-prosemirror blockquote,\n.oe-viewer blockquote {\n border-left: 3px solid var(--oe-structural-line, var(--oe-border, #e5e5e5));\n margin: var(--oe-space-block, 18px) 0;\n padding-left: var(--oe-space-inline, 16px);\n}\n\n.oe-prosemirror pre,\n.oe-viewer pre {\n background: var(--oe-code-background, var(--oe-block-surface, var(--oe-surface-muted, #f5f5f5)));\n border-radius: var(--oe-radius-medium, 8px);\n color: var(--oe-code-text, #171717);\n overflow: auto;\n padding: var(--oe-space-inline, 14px);\n white-space: pre-wrap;\n}\n\n.oe-prosemirror code,\n.oe-viewer code {\n font-family: var(--oe-font-mono, \"SFMono-Regular\", Consolas, \"Liberation Mono\", monospace);\n}\n\n.oe-prosemirror a,\n.oe-viewer a {\n color: var(--oe-link, var(--oe-accent-strong, #171717));\n cursor: pointer;\n text-decoration-color: color-mix(in srgb, var(--oe-link, var(--oe-accent-strong, #171717)) 65%, transparent);\n text-decoration-line: underline;\n text-decoration-thickness: 1.5px;\n text-underline-offset: 0.18em;\n}\n\n.oe-prosemirror a:hover,\n.oe-viewer a:hover {\n color: var(--oe-link-hover, var(--oe-link, var(--oe-accent-strong, #171717)));\n text-decoration-color: currentColor;\n}\n\n.oe-prosemirror p,\n.oe-prosemirror ul,\n.oe-prosemirror ol,\n.oe-viewer p,\n.oe-viewer ul,\n.oe-viewer ol {\n color: var(--oe-text-soft, #262626);\n font-size: var(--oe-body-font-size, 16px);\n line-height: var(--oe-body-line-height, 1.6);\n}\n\n.oe-prosemirror h1,\n.oe-prosemirror h2,\n.oe-prosemirror h3,\n.oe-prosemirror h4,\n.oe-prosemirror h5,\n.oe-prosemirror h6,\n.oe-viewer h1,\n.oe-viewer h2,\n.oe-viewer h3,\n.oe-viewer h4,\n.oe-viewer h5,\n.oe-viewer h6 {\n color: var(--oe-heading, var(--oe-text, #171717));\n font-family: var(--oe-heading-font, var(--oe-font-sans, inherit));\n font-weight: var(--oe-heading-weight, 700);\n line-height: var(--oe-heading-line-height, 1.2);\n margin: 24px 0 10px;\n}\n\n.oe-prosemirror h1,\n.oe-viewer h1 {\n font-size: var(--oe-heading-1-size, 2em);\n}\n\n.oe-prosemirror h2,\n.oe-viewer h2 {\n font-size: var(--oe-heading-2-size, 1.5em);\n}\n\n.oe-prosemirror h3,\n.oe-viewer h3 {\n font-size: var(--oe-heading-3-size, 1.25em);\n}\n\n.oe-prosemirror h4,\n.oe-viewer h4 {\n font-size: var(--oe-heading-4-size, 1.125em);\n}\n\n.oe-prosemirror h5,\n.oe-viewer h5 { font-size: var(--oe-heading-5-size, 1em); }\n\n.oe-prosemirror h6,\n.oe-viewer h6 { font-size: var(--oe-heading-6-size, 1em); }\n\n.oe-prosemirror ul:not([data-type=\"taskList\"]),\n.oe-viewer ul:not([data-type=\"taskList\"]) {\n list-style: disc;\n padding-left: 1.5em;\n}\n\n.oe-prosemirror ol,\n.oe-viewer ol {\n list-style: decimal;\n padding-left: 1.5em;\n}\n\n.oe-prosemirror li,\n.oe-viewer li {\n margin: 4px 0;\n}\n\n.oe-prosemirror [data-openeditor-toggle-list],\n.oe-viewer [data-openeditor-toggle-list] {\n list-style: none;\n margin: 18px 0;\n padding: 0;\n}\n\n.oe-toggle-list-item:not(details) {\n display: grid;\n gap: 8px;\n grid-template-columns: 24px minmax(0, 1fr);\n}\n\ndetails.oe-toggle-list-item {\n display: block;\n margin: 8px 0;\n}\n\ndetails.oe-toggle-list-item > summary {\n cursor: pointer;\n font-weight: 500;\n}\n\n.oe-toggle-list-trigger {\n align-items: center;\n align-self: start;\n background: transparent;\n border: 0;\n color: var(--oe-muted, #737373);\n cursor: pointer;\n display: inline-flex;\n height: 24px;\n justify-content: center;\n margin-top: 1px;\n padding: 0;\n width: 24px;\n}\n\n.oe-toggle-list-trigger:hover,\n.oe-toggle-list-trigger:focus-visible {\n color: var(--oe-text, #171717);\n outline: none;\n}\n\n.oe-toggle-list-trigger:focus-visible .oe-toggle-list-chevron {\n filter: drop-shadow(0 0 2px var(--oe-text, #171717));\n}\n\n.oe-toggle-list-trigger:disabled {\n cursor: default;\n}\n\n.oe-toggle-list-chevron {\n border-bottom: 4px solid transparent;\n border-left: 6px solid currentColor;\n border-top: 4px solid transparent;\n display: block;\n height: 0;\n transform: rotate(0deg);\n transform-origin: 3px center;\n transition: transform 140ms ease;\n width: 0;\n}\n\n.oe-toggle-list-item[data-open=\"true\"] > .oe-toggle-list-trigger .oe-toggle-list-chevron {\n transform: rotate(90deg);\n}\n\n.oe-toggle-list-content > :first-child,\n.oe-toggle-list-content > [data-node-view-content-react] > :first-child {\n margin-top: 0;\n}\n\n.oe-toggle-list-content > :last-child,\n.oe-toggle-list-content > [data-node-view-content-react] > :last-child {\n margin-bottom: 0;\n}\n\n.oe-toggle-list-item[data-open=\"false\"] > .oe-toggle-list-content > :not(:first-child),\n.oe-toggle-list-item[data-open=\"false\"] > .oe-toggle-list-content > [data-node-view-content-react] > :not(:first-child) {\n display: none;\n}\n\n.oe-callout {\n align-items: start;\n background: var(--oe-block-surface, var(--oe-surface-muted, #f5f5f5));\n border: 0;\n border-radius: var(--oe-radius-large, 12px);\n box-sizing: border-box;\n display: grid;\n gap: 8px;\n grid-template-columns: 28px minmax(0, 1fr);\n margin: var(--oe-space-block, 16px) 0;\n padding: var(--oe-space-inline, 14px);\n width: 100%;\n}\n\n.oe-callout-content > :first-child,\n.oe-callout-content > [data-node-view-content-react] > :first-child {\n margin-top: 0;\n}\n\n.oe-callout-content > :last-child,\n.oe-callout-content > [data-node-view-content-react] > :last-child {\n margin-bottom: 0;\n}\n\n.oe-callout-emoji {\n align-items: center;\n align-self: start;\n display: inline-flex;\n font-size: 20px;\n height: 26px;\n justify-content: center;\n line-height: 1;\n width: 28px;\n}\n\n.oe-callout .oe-callout-emoji-trigger {\n height: 26px;\n line-height: 1;\n width: 28px;\n}\n\n.oe-page {\n align-items: center;\n background: transparent;\n border: 0;\n border-radius: 6px;\n color: var(--oe-text, #171717);\n display: flex;\n font: inherit;\n gap: 8px;\n margin: 4px 0;\n min-height: 34px;\n padding: 3px 6px;\n text-align: left;\n width: 100%;\n}\n\n.oe-page:hover,\n.oe-page:focus-within {\n background: var(--oe-surface-muted, #f5f5f5);\n}\n\n.oe-page[data-page-id]:not([data-page-id=\"\"]) {\n cursor: pointer;\n}\n\n.oe-page[data-page-id]:not([data-page-id=\"\"]):focus-visible {\n box-shadow: 0 0 0 2px var(--oe-surface, #ffffff), 0 0 0 4px var(--oe-structural-line, #d4d4d4);\n outline: none;\n}\n\n.oe-page-icon {\n flex: 0 0 auto;\n font-size: 18px;\n line-height: 1;\n text-align: center;\n width: 24px;\n}\n\n.oe-emoji-trigger {\n align-items: center;\n background: transparent;\n border: 0;\n border-radius: 6px;\n color: inherit;\n cursor: pointer;\n display: inline-flex;\n font: inherit;\n font-size: 20px;\n height: 30px;\n justify-content: center;\n padding: 0;\n width: 30px;\n}\n\n.oe-emoji-trigger:hover,\n.oe-emoji-trigger:focus-visible,\n.oe-emoji-trigger[data-popup-open] {\n background: color-mix(in srgb, var(--oe-text, #171717) 8%, transparent);\n outline: none;\n}\n\n.oe-emoji-trigger:focus-visible {\n box-shadow: 0 0 0 2px var(--oe-surface, #ffffff), 0 0 0 4px var(--oe-structural-line, #d4d4d4);\n}\n\n.oe-emoji-trigger:disabled {\n cursor: default;\n}\n\n.oe-page-icon-trigger {\n font-size: 18px;\n height: 28px;\n width: 28px;\n}\n\n.oe-emoji-popover {\n background: var(--oe-surface, #ffffff);\n border-radius: 12px;\n box-shadow:\n 0 0 0 1px var(--oe-shadow, rgb(0 0 0 / 8%)),\n 0 16px 48px var(--oe-shadow, rgb(0 0 0 / 16%));\n color: var(--oe-text, #171717);\n overflow: hidden;\n transform-origin: var(--transform-origin);\n z-index: 1100;\n}\n\n.oe-emoji-picker {\n display: flex;\n height: min(360px, calc(100vh - 32px));\n isolation: isolate;\n width: min(320px, calc(100vw - 24px));\n flex-direction: column;\n}\n\n.oe-emoji-search {\n appearance: none;\n background: var(--oe-block-surface, var(--oe-surface-muted, #f5f5f5));\n border: 0;\n border-radius: 8px;\n color: var(--oe-text, #171717);\n font: inherit;\n font-size: 14px;\n margin: 8px;\n min-height: 38px;\n outline: none;\n padding: 0 11px;\n}\n\n.oe-emoji-search:focus {\n box-shadow: inset 0 0 0 1px var(--oe-structural-line, var(--oe-border, #e5e5e5));\n}\n\n.oe-emoji-viewport {\n min-height: 0;\n outline: none;\n overflow: auto;\n position: relative;\n flex: 1;\n}\n\n.oe-emoji-state {\n align-items: center;\n color: var(--oe-muted, #737373);\n display: flex;\n font-size: 13px;\n inset: 0;\n justify-content: center;\n position: absolute;\n}\n\n.oe-emoji-list {\n padding-bottom: 6px;\n user-select: none;\n}\n\n.oe-emoji-category {\n background: var(--oe-surface, #ffffff);\n color: var(--oe-muted, #737373);\n font-size: 11px;\n font-weight: 650;\n padding: 8px 10px 4px;\n}\n\n.oe-emoji-row {\n display: flex;\n padding: 0 6px;\n scroll-margin-block: 4px;\n}\n\n.oe-emoji-option {\n align-items: center;\n aspect-ratio: 1;\n background: transparent;\n border: 0;\n border-radius: 7px;\n cursor: pointer;\n display: flex;\n flex: 1;\n font-size: 20px;\n justify-content: center;\n min-width: 0;\n padding: 0;\n}\n\n.oe-emoji-option[data-active] {\n background: var(--oe-block-surface, var(--oe-surface-muted, #f5f5f5));\n}\n\n.oe-emoji-footer {\n align-items: center;\n border-top: 1px solid var(--oe-structural-line, var(--oe-border, #e5e5e5));\n color: var(--oe-muted, #737373);\n display: flex;\n font-size: 12px;\n gap: 7px;\n min-height: 42px;\n padding: 5px 8px;\n}\n\n.oe-emoji-footer > span:first-child {\n font-size: 18px;\n}\n\n.oe-emoji-footer [frimousse-skin-tone-selector] {\n background: transparent;\n border: 0;\n border-radius: 6px;\n cursor: pointer;\n font-size: 18px;\n margin-left: auto;\n min-height: 30px;\n min-width: 30px;\n}\n\n.oe-page-title {\n flex: 1 1 auto;\n font-weight: 500;\n min-width: 0;\n text-decoration: underline;\n text-decoration-color: color-mix(in srgb, currentColor 28%, transparent);\n text-underline-offset: 0.18em;\n}\n\n.oe-page-header {\n align-items: center;\n display: flex;\n gap: 8px;\n}\n\n.oe-page-header > .oe-emoji-trigger {\n flex: 0 0 auto;\n font-size: 30px;\n height: 42px;\n width: 42px;\n}\n\n.oe-page-header-title {\n background: transparent;\n border: 0;\n color: var(--oe-heading, var(--oe-text, #171717));\n font: inherit;\n font-size: 2em;\n font-weight: 700;\n line-height: 1.2;\n min-width: 0;\n outline: none;\n padding: 0;\n width: 100%;\n}\n\n.oe-page-action {\n background: transparent;\n border: 0;\n border-radius: 5px;\n color: var(--oe-muted, #737373);\n cursor: pointer;\n flex: 0 0 auto;\n font: inherit;\n font-size: 12px;\n padding: 5px 7px;\n}\n\n.oe-page-action:hover { background: var(--oe-accent, #e5e5e5); color: var(--oe-text, #171717); }\n.oe-page-action:disabled { cursor: progress; opacity: 0.6; }\n.oe-page-error { color: #dc2626; font-size: 12px; }\n.oe-page-viewer { cursor: pointer; text-decoration: none; }\n.oe-page-arrow { color: var(--oe-muted, #737373); }\n\n.oe-diagram {\n background: var(--oe-block-surface, var(--oe-surface-muted, #f5f5f5));\n border: 0;\n border-radius: var(--oe-radius-large, 12px);\n margin: var(--oe-space-block, 18px) 0;\n overflow: hidden;\n}\n\n.oe-diagram-preview {\n background: var(--oe-block-surface, var(--oe-surface-muted, #f5f5f5));\n min-height: 120px;\n overflow: auto;\n padding: var(--oe-space-inline, 18px);\n}\n\n.oe-diagram-preview svg {\n display: block;\n height: auto;\n margin: auto;\n max-width: 100%;\n}\n\n.oe-diagram-source,\n.oe-diagram-error {\n background: var(--oe-block-surface, var(--oe-surface-muted, #f5f5f5));\n border: 0;\n border-top: 1px solid var(--oe-structural-line, var(--oe-border, #e5e5e5));\n box-sizing: border-box;\n color: var(--oe-code-text, #171717);\n display: block;\n font-family: \"SFMono-Regular\", Consolas, \"Liberation Mono\", monospace;\n font-size: 13px;\n line-height: 1.5;\n margin: 0;\n min-height: 112px;\n padding: 12px 14px;\n resize: vertical;\n width: 100%;\n}\n\n.oe-diagram-error {\n color: #dc2626;\n white-space: pre-wrap;\n}\n\n.oe-prosemirror hr,\n.oe-divider,\n.oe-viewer hr {\n border: 0;\n cursor: pointer;\n height: 1px;\n margin: 18px 0;\n padding: 10px 0;\n position: relative;\n}\n\n.oe-prosemirror hr::after,\n.oe-divider::after,\n.oe-viewer hr::after {\n background: var(--oe-structural-line, var(--oe-border, #e5e5e5));\n content: \"\";\n display: block;\n height: 1px;\n left: 0;\n pointer-events: none;\n position: absolute;\n right: 0;\n top: 10px;\n}\n\n.oe-prosemirror hr.ProseMirror-selectednode,\n.oe-divider.ProseMirror-selectednode {\n outline: none;\n}\n\n.oe-prosemirror hr.ProseMirror-selectednode::after,\n.oe-divider.ProseMirror-selectednode::after {\n background: var(--oe-structural-line, var(--oe-border, #e5e5e5));\n box-shadow: 0 0 0 6px var(--oe-accent, #f5f5f5);\n}\n\n.oe-columns {\n --oe-column-count: 2;\n display: grid;\n gap: 12px;\n grid-template-columns: repeat(var(--oe-column-count), minmax(0, 1fr));\n}\n\n.oe-columns[data-openeditor-columns=\"1\"] { --oe-column-count: 1; }\n.oe-columns[data-openeditor-columns=\"2\"] { --oe-column-count: 2; }\n.oe-columns[data-openeditor-columns=\"3\"] { --oe-column-count: 3; }\n.oe-columns[data-openeditor-columns=\"4\"] { --oe-column-count: 4; }\n\n.oe-column,\n.oe-prosemirror [data-openeditor-column],\n.oe-viewer [data-openeditor-column] {\n border-radius: 8px;\n padding: 4px 6px;\n}\n\n.oe-prosemirror [data-openeditor-column] > :first-child,\n.oe-viewer [data-openeditor-column] > :first-child {\n margin-top: 0;\n}\n\n.oe-prosemirror [data-openeditor-column] > :last-child,\n.oe-viewer [data-openeditor-column] > :last-child {\n margin-bottom: 0;\n}\n\n.oe-prosemirror ul[data-type=\"taskList\"],\n.oe-viewer ul[data-type=\"taskList\"] {\n list-style: none;\n padding-left: 0;\n}\n\n.oe-viewer li.oe-task-item > label {\n align-items: start;\n display: grid;\n gap: 8px;\n grid-template-columns: 20px minmax(0, 1fr);\n}\n\n.oe-viewer li.oe-task-item > label > input {\n height: 18px;\n margin: 3px 0 0;\n width: 18px;\n}\n\n.oe-prosemirror ul[data-type=\"taskList\"] > .react-renderer.node-taskItem {\n display: contents;\n}\n\n.oe-prosemirror ul[data-type=\"taskList\"] li,\n.oe-viewer li[data-checked] {\n align-items: start;\n display: grid;\n gap: 8px;\n grid-template-columns: 20px minmax(0, 1fr);\n}\n\n.oe-prosemirror ul[data-type=\"taskList\"] li > .oe-task-item-checkbox,\n.oe-viewer li[data-checked] > .oe-task-item-checkbox {\n align-items: center;\n display: inline-flex;\n flex: 0 0 auto;\n line-height: 1.6;\n margin-top: 3px;\n}\n\n.oe-task-checkbox {\n appearance: none;\n background: var(--oe-block-surface, var(--oe-surface-muted, #f5f5f5));\n border: 0;\n border-radius: 4px;\n box-shadow: none;\n cursor: pointer;\n display: inline-grid;\n height: 20px;\n margin: 0;\n outline: none !important;\n place-items: center;\n width: 20px;\n}\n\n.oe-task-checkbox[data-readonly] {\n cursor: default;\n}\n\n.oe-task-checkbox-indicator {\n border-bottom: 2px solid var(--oe-button-text, #ffffff);\n border-right: 2px solid var(--oe-button-text, #ffffff);\n height: 9px;\n opacity: 0;\n transform: translateY(-1px) rotate(45deg);\n width: 5px;\n}\n\n.oe-task-checkbox[data-checked] {\n background: var(--oe-accent-strong, #171717);\n}\n\n.oe-task-checkbox[data-checked] .oe-task-checkbox-indicator {\n opacity: 1;\n}\n\n.oe-prosemirror ul[data-type=\"taskList\"] li > [data-node-view-content],\n.oe-viewer li[data-checked] > div {\n flex: 1 1 auto;\n min-width: 0;\n}\n\n.oe-prosemirror ul[data-type=\"taskList\"] li [data-node-view-content] p,\n.oe-viewer li[data-checked] > div > p {\n margin: 0;\n min-height: 1.6em;\n}\n\n.oe-prosemirror .tableWrapper > table,\n.oe-prosemirror table[data-openeditor-table],\n.oe-viewer table[data-openeditor-table] {\n border-collapse: collapse;\n margin: 18px 0;\n table-layout: fixed;\n width: 100%;\n}\n\n.oe-prosemirror .tableWrapper {\n margin: 18px 0;\n max-width: 100%;\n overflow-x: auto;\n padding: 2px;\n}\n\n.oe-prosemirror .tableWrapper > table {\n margin: 0;\n}\n\n.oe-prosemirror .tableWrapper > table th,\n.oe-prosemirror .tableWrapper > table td,\n.oe-prosemirror table[data-openeditor-table] th,\n.oe-prosemirror table[data-openeditor-table] td,\n.oe-viewer table[data-openeditor-table] th,\n.oe-viewer table[data-openeditor-table] td {\n background: var(--oe-block-surface, var(--oe-surface-muted, #f5f5f5));\n border: 1px solid var(--oe-structural-line, var(--oe-border, #e5e5e5));\n min-width: 96px;\n padding: 10px;\n vertical-align: top;\n}\n\n.oe-prosemirror .tableWrapper > table th,\n.oe-prosemirror table[data-openeditor-table] th,\n.oe-viewer table[data-openeditor-table] th {\n font-weight: 700;\n}\n\n.oe-prosemirror .selectedCell {\n position: relative;\n}\n\n.oe-prosemirror .selectedCell::after {\n background: color-mix(in srgb, var(--oe-accent-strong, #171717) 10%, transparent);\n border: 2px solid var(--oe-accent-strong, #171717);\n content: \"\";\n inset: -1px;\n pointer-events: none;\n position: absolute;\n z-index: 1;\n}\n\n.oe-prosemirror .column-resize-handle {\n background: var(--oe-accent-strong, #171717);\n bottom: -1px;\n pointer-events: none;\n position: absolute;\n right: -2px;\n top: -1px;\n width: 3px;\n z-index: 2;\n}\n\n.oe-prosemirror.resize-cursor {\n cursor: col-resize;\n}\n\n.oe-button,\n.oe-input {\n border: 1px solid var(--oe-border-strong, #d4d4d4);\n border-radius: 6px;\n color: var(--oe-text, #171717);\n font: inherit;\n min-height: 36px;\n}\n\n.oe-button {\n align-items: center;\n background: var(--oe-button-background, #171717);\n color: var(--oe-button-text, #ffffff);\n cursor: pointer;\n display: inline-flex;\n justify-content: center;\n padding: 0 12px;\n}\n\n.oe-button:hover,\n.oe-button:focus-visible,\n.oe-button[data-pressed] {\n background: var(--oe-accent, #f5f5f5);\n color: var(--oe-accent-text, #171717);\n}\n\n.oe-button-secondary {\n background: transparent;\n color: var(--oe-text, #171717);\n}\n\n.oe-input {\n background: var(--oe-surface, #ffffff);\n color: var(--oe-text, #171717);\n padding: 0 10px;\n width: 100%;\n}\n\n.oe-toggle-group {\n align-items: center;\n display: inline-flex;\n gap: 6px;\n}\n\n.oe-cascade-menu {\n align-items: flex-start;\n display: flex;\n gap: 4px;\n outline: none;\n z-index: 1002;\n}\n\n.oe-anchored-overlay-positioner[data-anchor-hidden] {\n visibility: hidden;\n pointer-events: none;\n}\n\n.oe-cascade-panel {\n flex: 0 0 auto;\n}\n\n.oe-slash-menu {\n background: var(--oe-surface, #ffffff);\n border-radius: 23px;\n overflow: hidden;\n padding: 6px;\n width: min(260px, calc(100vw - 24px));\n z-index: 1000;\n}\n\n.oe-slash-menu,\n.oe-slash-menu *,\n.oe-slash-menu *::before,\n.oe-slash-menu *::after {\n outline: none !important;\n}\n\n.oe-slash-menu-scroll {\n display: grid;\n gap: 2px;\n max-height: 308px;\n overflow-x: hidden;\n overflow-y: auto;\n padding-right: 2px;\n}\n\n.oe-slash-menu-scroll::-webkit-scrollbar {\n width: 8px;\n}\n\n.oe-slash-menu-scroll::-webkit-scrollbar-thumb {\n border-width: 2px;\n}\n\n.oe-slash-menu-item {\n align-items: center;\n background: transparent;\n border: 0;\n border-radius: 17px;\n color: var(--oe-text, #171717);\n cursor: pointer;\n display: flex;\n gap: 9px;\n justify-content: flex-start;\n min-height: 34px;\n outline: none;\n padding: 0 11px 0 9px;\n text-align: left;\n -webkit-tap-highlight-color: transparent;\n}\n\n.oe-slash-menu-item:focus,\n.oe-slash-menu-item:hover,\n.oe-slash-menu-item:focus-visible,\n.oe-slash-menu-item[data-highlighted] {\n background: var(--oe-surface-muted, #f5f5f5);\n box-shadow: none !important;\n outline: none !important;\n}\n\n.oe-slash-menu span {\n font-size: 13px;\n font-weight: 640;\n}\n\n.oe-slash-menu-icon {\n color: var(--oe-muted, #737373);\n flex: 0 0 auto;\n}\n\n.oe-submenu-chevron {\n color: var(--oe-muted, #737373);\n flex: 0 0 auto;\n margin-left: auto;\n}\n\n.oe-slash-submenu {\n display: grid;\n gap: 2px;\n width: 190px;\n}\n\n.oe-slash-menu-item:focus .oe-slash-menu-icon,\n.oe-slash-menu-item:hover .oe-slash-menu-icon,\n.oe-slash-menu-item:focus-visible .oe-slash-menu-icon,\n.oe-slash-menu-item[data-highlighted] .oe-slash-menu-icon {\n color: var(--oe-text, #171717);\n}\n\n.oe-bubble-menu {\n align-items: center;\n background: var(--oe-surface, #ffffff);\n border-radius: 999px;\n display: flex;\n gap: 2px;\n padding: 3px;\n z-index: 1000;\n}\n\n.oe-table-menu {\n background: var(--oe-surface, #ffffff);\n border-radius: 999px;\n box-shadow:\n 0 0 0 1px var(--oe-shadow, rgb(0 0 0 / 7%)),\n 0 10px 28px var(--oe-shadow, rgb(0 0 0 / 12%));\n padding: 3px;\n z-index: 1000;\n}\n\n.oe-table-toolbar {\n align-items: center;\n display: flex;\n gap: 2px;\n}\n\n.oe-table-toolbar-button,\n.oe-table-toolbar-trigger {\n align-items: center;\n background: transparent;\n border: 0;\n border-radius: 999px;\n color: var(--oe-text, #171717);\n cursor: pointer;\n display: inline-flex;\n font: inherit;\n font-size: 12px;\n font-weight: 650;\n gap: 5px;\n justify-content: center;\n min-height: 28px;\n min-width: 28px;\n padding: 0 8px;\n white-space: nowrap;\n}\n\n.oe-table-toolbar-button:hover,\n.oe-table-toolbar-button:focus-visible,\n.oe-table-toolbar-button[data-active],\n.oe-table-toolbar-trigger:hover,\n.oe-table-toolbar-trigger:focus-visible,\n.oe-table-toolbar-trigger[data-popup-open] {\n background: var(--oe-surface-muted, #f5f5f5);\n outline: none;\n}\n\n.oe-table-toolbar-button[data-danger] {\n color: #b42318;\n}\n\n.oe-table-toolbar-button:disabled,\n.oe-table-action-item:disabled {\n cursor: default;\n opacity: 0.38;\n}\n\n.oe-table-toolbar-separator {\n background: var(--oe-border, #e5e5e5);\n height: 18px;\n margin: 0 2px;\n width: 1px;\n}\n\n.oe-table-action-menu {\n background: var(--oe-surface, #ffffff);\n border-radius: 16px;\n box-shadow:\n 0 0 0 1px var(--oe-shadow, rgb(0 0 0 / 7%)),\n 0 12px 32px var(--oe-shadow, rgb(0 0 0 / 14%));\n display: grid;\n gap: 2px;\n min-width: 190px;\n padding: 5px;\n z-index: 1002;\n}\n\n.oe-table-action-item {\n align-items: center;\n background: transparent;\n border: 0;\n border-radius: 12px;\n color: var(--oe-text, #171717);\n cursor: pointer;\n display: flex;\n font-size: 13px;\n font-weight: 620;\n gap: 9px;\n min-height: 34px;\n outline: none;\n padding: 0 10px;\n}\n\n.oe-table-action-item:hover,\n.oe-table-action-item:focus-visible,\n.oe-table-action-item[data-highlighted] {\n background: var(--oe-surface-muted, #f5f5f5);\n}\n\n.oe-table-action-item[data-danger] {\n color: #b42318;\n}\n\n.oe-selection-toolbar {\n align-items: center;\n display: flex;\n gap: 2px;\n}\n\n.oe-toolbar-button {\n background: transparent;\n border: 0;\n border-radius: 999px;\n color: var(--oe-text, #171717);\n cursor: pointer;\n font-size: 12px;\n font-weight: 700;\n min-height: 28px;\n min-width: 28px;\n padding: 0 9px;\n}\n\n.oe-toolbar-icon {\n display: block;\n flex: 0 0 auto;\n}\n\n.oe-toolbar-chevron {\n color: var(--oe-muted, #737373);\n display: block;\n flex: 0 0 auto;\n margin-left: -2px;\n}\n\n.oe-block-transform-trigger {\n align-items: center;\n display: inline-flex;\n gap: 5px;\n justify-content: center;\n padding: 0 9px;\n}\n\n.oe-block-transform-trigger-label {\n font-size: 12px;\n font-weight: 700;\n line-height: 1;\n white-space: nowrap;\n}\n\n.oe-toolbar-button:hover,\n.oe-toolbar-button:focus-visible,\n.oe-toolbar-button[data-active] {\n background: var(--oe-surface-muted, #f5f5f5);\n color: var(--oe-accent-strong, #171717);\n outline: none;\n}\n\n.oe-toolbar-button:hover .oe-toolbar-chevron,\n.oe-toolbar-button:focus-visible .oe-toolbar-chevron,\n.oe-toolbar-button[data-active] .oe-toolbar-chevron {\n color: var(--oe-accent-strong, #171717);\n}\n\n.oe-block-transform-menu {\n background: var(--oe-surface, #ffffff);\n border-radius: 23px;\n display: grid;\n gap: 2px;\n min-width: 174px;\n padding: 6px;\n z-index: 1002;\n}\n\n.oe-block-transform-submenu {\n min-width: 160px;\n}\n\n.oe-block-transform-menu,\n.oe-block-transform-menu *,\n.oe-block-transform-menu *::before,\n.oe-block-transform-menu *::after {\n outline: none !important;\n}\n\n.oe-block-transform-item {\n align-items: center;\n background: transparent;\n border: 0;\n border-radius: 17px;\n color: var(--oe-text, #171717);\n cursor: pointer;\n display: flex;\n gap: 9px;\n min-height: 34px;\n padding: 0 11px 0 9px;\n text-align: left;\n -webkit-tap-highlight-color: transparent;\n}\n\n.oe-block-transform-item span {\n font-size: 13px;\n font-weight: 640;\n}\n\n.oe-block-transform-icon {\n color: var(--oe-muted, #737373);\n flex: 0 0 auto;\n}\n\n.oe-block-transform-item:hover,\n.oe-block-transform-item:focus,\n.oe-block-transform-item:focus-visible,\n.oe-block-transform-item[data-highlighted],\n.oe-block-transform-item[data-active] {\n background: var(--oe-surface-muted, #f5f5f5);\n box-shadow: none !important;\n outline: none !important;\n}\n\n.oe-block-transform-item:hover .oe-block-transform-icon,\n.oe-block-transform-item:focus .oe-block-transform-icon,\n.oe-block-transform-item:focus-visible .oe-block-transform-icon,\n.oe-block-transform-item[data-highlighted] .oe-block-transform-icon,\n.oe-block-transform-item[data-active] .oe-block-transform-icon {\n color: var(--oe-text, #171717);\n}\n\n.oe-dialog-backdrop {\n background: rgb(0 0 0 / 24%);\n inset: 0;\n position: fixed;\n z-index: 1000;\n}\n\n.oe-dialog {\n background: var(--oe-surface, #ffffff);\n border: 0;\n border-radius: 23px;\n box-shadow:\n 0 0 0 1px var(--oe-shadow, rgb(0 0 0 / 6%)),\n 0 18px 48px var(--oe-shadow, rgb(0 0 0 / 14%));\n left: 50%;\n max-width: min(420px, calc(100vw - 32px));\n padding: 8px;\n position: fixed;\n top: 50%;\n transform: translate(-50%, -50%);\n width: 100%;\n z-index: 1001;\n}\n\n.oe-dialog-close {\n align-items: center;\n background: transparent;\n border: 0;\n border-radius: 999px;\n color: var(--oe-muted, #737373);\n cursor: pointer;\n display: flex;\n height: 34px;\n justify-content: center;\n padding: 0;\n position: absolute;\n right: 8px;\n top: 8px;\n transition-duration: 140ms;\n transition-property: color, transform;\n transition-timing-function: cubic-bezier(0.2, 0, 0, 1);\n width: 34px;\n}\n\n.oe-dialog-close:hover,\n.oe-dialog-close:focus-visible {\n color: var(--oe-text, #171717);\n outline: none;\n}\n\n.oe-dialog-close:active {\n transform: scale(0.96);\n}\n\n.oe-link-dialog-form {\n display: grid;\n gap: 8px;\n}\n\n.oe-dialog-title {\n color: var(--oe-text, #171717);\n font-size: 13px;\n font-weight: 640;\n margin: 0;\n padding: 6px 8px 2px;\n}\n\n.oe-dialog .oe-input {\n background: var(--oe-surface-muted, #f5f5f5);\n border: 0;\n border-radius: 17px;\n box-shadow: inset 0 0 0 1px var(--oe-shadow, rgb(0 0 0 / 8%));\n caret-color: var(--oe-text, #171717);\n color: var(--oe-text, #171717);\n font-size: 13px;\n min-height: 38px;\n outline: none;\n padding: 0 12px;\n}\n\n.oe-dialog .oe-input::placeholder {\n color: var(--oe-muted, #737373);\n}\n\n.oe-dialog .oe-input:hover,\n.oe-dialog .oe-input:focus,\n.oe-dialog .oe-input:focus-visible {\n box-shadow:\n inset 0 0 0 1px var(--oe-shadow, rgb(0 0 0 / 12%)),\n 0 0 0 3px var(--oe-surface-muted, #f5f5f5);\n outline: none;\n}\n\n.oe-dialog-actions {\n align-items: center;\n display: flex;\n gap: 4px;\n justify-content: flex-end;\n padding-top: 2px;\n}\n\n.oe-dialog-button {\n border: 0;\n border-radius: 17px;\n box-shadow: none;\n font-size: 13px;\n font-weight: 640;\n min-height: 34px;\n padding: 0 12px;\n transition-duration: 140ms;\n transition-property: background-color, color, transform;\n transition-timing-function: cubic-bezier(0.2, 0, 0, 1);\n}\n\n.oe-dialog-button:hover,\n.oe-dialog-button:focus-visible {\n background: var(--oe-surface-muted, #f5f5f5);\n color: var(--oe-text, #171717);\n outline: none;\n}\n\n.oe-dialog-button:active {\n transform: scale(0.96);\n}\n\n.oe-dialog-button-primary {\n background: var(--oe-text, #171717);\n color: var(--oe-surface, #ffffff);\n}\n\n.oe-dialog-button-remove {\n background: var(--oe-surface-muted, #f5f5f5);\n box-shadow: inset 0 0 0 1px var(--oe-shadow, rgb(0 0 0 / 6%));\n color: var(--oe-text, #171717);\n}\n\n.oe-dialog-button-remove:hover,\n.oe-dialog-button-remove:focus-visible {\n background: var(--oe-surface-muted, #f5f5f5);\n box-shadow: inset 0 0 0 1px var(--oe-shadow, rgb(0 0 0 / 10%));\n color: var(--oe-text, #171717);\n}\n\n.oe-dialog-button-primary:hover,\n.oe-dialog-button-primary:focus-visible {\n background: var(--oe-text, #171717);\n color: var(--oe-surface, #ffffff);\n opacity: 0.88;\n}\n\n.oe-attachment {\n align-items: center;\n background: var(--oe-surface, #fff);\n border: 1px solid var(--oe-border, #e5e5e5);\n border-radius: 12px;\n color: var(--oe-text, #171717);\n display: flex;\n gap: 12px;\n margin: 8px 0;\n min-height: 68px;\n padding: 10px 12px;\n text-align: left;\n text-decoration: none;\n transition: border-color 140ms, box-shadow 140ms, background 140ms;\n width: 100%;\n}\n\n.oe-attachment:hover,\n.oe-attachment:focus-within {\n border-color: var(--oe-border-strong, #d4d4d4);\n box-shadow: 0 4px 18px var(--oe-shadow, rgb(0 0 0 / 8%));\n outline: none;\n}\n\n.oe-attachment[data-state=\"error\"],\n.oe-attachment[data-state=\"missing\"] { border-color: #efb0b0; }\n\n.oe-attachment-icon {\n align-items: center;\n background: var(--oe-surface-muted, #f5f5f5);\n border-radius: 9px;\n display: flex;\n flex: 0 0 42px;\n height: 48px;\n justify-content: center;\n}\n\n.oe-attachment-icon span { color: var(--oe-muted, #737373); font-size: 9px; font-weight: 750; letter-spacing: .04em; }\n.oe-attachment-body { display: flex; flex: 1; flex-direction: column; min-width: 0; }\n.oe-attachment-name { background: transparent; border: 0; color: inherit; font: inherit; font-weight: 650; min-width: 0; outline: none; overflow: hidden; padding: 0; text-overflow: ellipsis; white-space: nowrap; }\n.oe-attachment-meta { color: var(--oe-muted, #737373); display: block; font-size: 12px; margin-top: 3px; }\n.oe-attachment-progress { background: var(--oe-surface-muted, #f5f5f5); border-radius: 2px; height: 4px; margin-top: 8px; overflow: hidden; }\n.oe-attachment-progress span { background: var(--oe-accent-strong, #171717); display: block; height: 100%; transition: width 90ms linear; }\n.oe-attachment-error { color: #b42318; font-size: 12px; margin-top: 4px; }\n.oe-attachment-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 4px; justify-content: flex-end; }\n.oe-attachment-actions button { background: transparent; border: 0; border-radius: 7px; color: var(--oe-muted, #737373); cursor: pointer; font: inherit; font-size: 12px; min-height: 34px; padding: 0 8px; }\n.oe-attachment-actions button:hover, .oe-attachment-actions button:focus-visible { background: var(--oe-surface-muted, #f5f5f5); color: var(--oe-text, #171717); outline: none; }\n.oe-attachment-viewer { cursor: pointer; }\n"],"mappings":"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","names":[]}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import { OpenEditorReactProps, OpenEditorTheme,
|
|
2
|
+
import { OpenEditorController, OpenEditorReactProps, OpenEditorTheme, OpenEditorSlashMenuItem } from '@openeditor/react';
|
|
3
3
|
export { OpenEditorBlockAction, OpenEditorBlockRef, OpenEditorContent, OpenEditorController, OpenEditorReactProps, OpenEditorSlashMenuIcon, OpenEditorSlashMenuIconProps, OpenEditorSlashMenuItem, OpenEditorTheme, OpenEditorThemeProvider, OpenEditorThemeStyle, OpenEditorThemeToken, createOpenEditorThemeStyle, openEditorThemeTokenNames, useOpenEditorController } from '@openeditor/react';
|
|
4
4
|
export { OpenEditorEmojiPicker, OpenEditorEmojiPickerProps } from '@openeditor/emoji';
|
|
5
5
|
import { Button } from '@base-ui/react/button';
|
|
@@ -7,6 +7,13 @@ import { Input } from '@base-ui/react/input';
|
|
|
7
7
|
import { Toggle } from '@base-ui/react/toggle';
|
|
8
8
|
import { ToggleGroup } from '@base-ui/react/toggle-group';
|
|
9
9
|
|
|
10
|
+
type OpenEditorTableMenuProps = {
|
|
11
|
+
controller: OpenEditorController;
|
|
12
|
+
className?: string;
|
|
13
|
+
container?: HTMLElement | null;
|
|
14
|
+
};
|
|
15
|
+
declare const OpenEditorTableMenu: ({ controller, className, container, }: OpenEditorTableMenuProps) => react.JSX.Element | null;
|
|
16
|
+
|
|
10
17
|
type OpenEditorSlashMenuProps = {
|
|
11
18
|
controller: OpenEditorController;
|
|
12
19
|
className?: string;
|
|
@@ -42,4 +49,4 @@ declare const OpenEditorSlashMenu: ({ controller, className, items, container, }
|
|
|
42
49
|
declare const OpenEditorBlockMenu: ({ controller, className, container, }: OpenEditorBlockMenuProps) => react.JSX.Element | null;
|
|
43
50
|
declare const OpenEditor: ({ className, contentClassName, overlayContainer, theme, ...props }: OpenEditorProps) => react.JSX.Element;
|
|
44
51
|
|
|
45
|
-
export { OpenEditor, OpenEditorBlockMenu, type OpenEditorBlockMenuProps, OpenEditorButton, type OpenEditorButtonProps, OpenEditorInput, type OpenEditorInputProps, type OpenEditorProps, OpenEditorSelectionBubble, type OpenEditorSelectionBubbleProps, OpenEditorSlashMenu, type OpenEditorSlashMenuProps, OpenEditorToggle, OpenEditorToggleGroup, type OpenEditorToggleGroupProps, type OpenEditorToggleProps };
|
|
52
|
+
export { OpenEditor, OpenEditorBlockMenu, type OpenEditorBlockMenuProps, OpenEditorButton, type OpenEditorButtonProps, OpenEditorInput, type OpenEditorInputProps, type OpenEditorProps, OpenEditorSelectionBubble, type OpenEditorSelectionBubbleProps, OpenEditorSlashMenu, type OpenEditorSlashMenuProps, OpenEditorTableMenu, type OpenEditorTableMenuProps, OpenEditorToggle, OpenEditorToggleGroup, type OpenEditorToggleGroupProps, type OpenEditorToggleProps };
|