@thangph2146/lexical-editor 0.0.7 → 0.0.9
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/editor-x/editor.cjs +6 -16
- package/dist/editor-x/editor.cjs.map +1 -1
- package/dist/editor-x/editor.css +2 -0
- package/dist/editor-x/editor.css.map +1 -1
- package/dist/editor-x/editor.js +6 -16
- package/dist/editor-x/editor.js.map +1 -1
- package/dist/index.cjs +6 -16
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +2 -0
- package/dist/index.css.map +1 -1
- package/dist/index.js +6 -16
- package/dist/index.js.map +1 -1
- package/package.json +87 -86
- package/src/editor-ui/content-editable.tsx +30 -42
- package/src/editor-x/plugins.tsx +3 -1
- package/src/plugins/layout-plugin.tsx +1 -5
- package/src/themes/plugins/_menus-and-pickers.scss +2 -0
package/dist/editor-x/editor.css
CHANGED
|
@@ -2334,6 +2334,8 @@
|
|
|
2334
2334
|
overflow-x: auto;
|
|
2335
2335
|
flex-wrap: nowrap;
|
|
2336
2336
|
border-top: 1px solid var(--border);
|
|
2337
|
+
border-bottom-left-radius: 8px;
|
|
2338
|
+
border-bottom-right-radius: 8px;
|
|
2337
2339
|
padding: 6px 12px;
|
|
2338
2340
|
background-color: color-mix(in srgb, var(--background), transparent 50%);
|
|
2339
2341
|
}
|