@lexical/react
Advanced tools
Comparing version 0.2.4 to 0.2.5
@@ -25,16 +25,6 @@ /** | ||
return utils.mergeRegister(editor.registerCommand(lexical.INDENT_CONTENT_COMMAND, () => { | ||
const hasHandledIndention = list.indentList(); | ||
if (hasHandledIndention) { | ||
return true; | ||
} | ||
list.indentList(); | ||
return false; | ||
}, lexical.COMMAND_PRIORITY_LOW), editor.registerCommand(lexical.OUTDENT_CONTENT_COMMAND, () => { | ||
const hasHandledIndention = list.outdentList(); | ||
if (hasHandledIndention) { | ||
return true; | ||
} | ||
list.outdentList(); | ||
return false; | ||
@@ -41,0 +31,0 @@ }, lexical.COMMAND_PRIORITY_LOW), editor.registerCommand(list.INSERT_ORDERED_LIST_COMMAND, () => { |
@@ -8,3 +8,3 @@ /** | ||
var b=require("@lexical/list"),c=require("@lexical/utils"),d=require("lexical"),e=require("react"); | ||
function f(a){e.useEffect(()=>c.mergeRegister(a.registerCommand(d.INDENT_CONTENT_COMMAND,()=>b.indentList()?!0:!1,d.COMMAND_PRIORITY_LOW),a.registerCommand(d.OUTDENT_CONTENT_COMMAND,()=>b.outdentList()?!0:!1,d.COMMAND_PRIORITY_LOW),a.registerCommand(b.INSERT_ORDERED_LIST_COMMAND,()=>{b.insertList(a,"ol");return!0},d.COMMAND_PRIORITY_LOW),a.registerCommand(b.INSERT_UNORDERED_LIST_COMMAND,()=>{b.insertList(a,"ul");return!0},d.COMMAND_PRIORITY_LOW),a.registerCommand(b.REMOVE_LIST_COMMAND,()=>{b.removeList(a); | ||
return!0},d.COMMAND_PRIORITY_LOW),a.registerCommand(d.INSERT_PARAGRAPH_COMMAND,()=>b.$handleListInsertParagraph()?!0:!1,d.COMMAND_PRIORITY_LOW)),[a])}module.exports=function(a){f(a)}; | ||
function f(a){e.useEffect(()=>c.mergeRegister(a.registerCommand(d.INDENT_CONTENT_COMMAND,()=>{b.indentList();return!1},d.COMMAND_PRIORITY_LOW),a.registerCommand(d.OUTDENT_CONTENT_COMMAND,()=>{b.outdentList();return!1},d.COMMAND_PRIORITY_LOW),a.registerCommand(b.INSERT_ORDERED_LIST_COMMAND,()=>{b.insertList(a,"ol");return!0},d.COMMAND_PRIORITY_LOW),a.registerCommand(b.INSERT_UNORDERED_LIST_COMMAND,()=>{b.insertList(a,"ul");return!0},d.COMMAND_PRIORITY_LOW),a.registerCommand(b.REMOVE_LIST_COMMAND,()=> | ||
{b.removeList(a);return!0},d.COMMAND_PRIORITY_LOW),a.registerCommand(d.INSERT_PARAGRAPH_COMMAND,()=>b.$handleListInsertParagraph()?!0:!1,d.COMMAND_PRIORITY_LOW)),[a])}module.exports=function(a){f(a)}; |
@@ -59,3 +59,2 @@ /** | ||
const newEditor = lexical.createEditor({ | ||
context, | ||
namespace, | ||
@@ -62,0 +61,0 @@ nodes, |
@@ -7,3 +7,3 @@ /** | ||
*/ | ||
var a=require("@lexical/react/LexicalComposerContext"),e=require("lexical"),l=require("react"),m="undefined"!==typeof window&&"undefined"!==typeof window.document&&"undefined"!==typeof window.document.createElement?l.useLayoutEffect:l.useEffect; | ||
module.exports=function({initialConfig:f,children:n}){const k=l.useMemo(()=>{const {theme:b,namespace:c,editor__DEPRECATED:p,nodes:q,onError:r}=f,g=a.createLexicalComposerContext(null,b);let d=p||null;if(null===d){const h=e.createEditor({context:g,namespace:c,nodes:q,onError:t=>r(t,h),readOnly:!0,theme:b});d=h}return[d,g]},[]);m(()=>{const b=f.readOnly,[c]=k;c.setReadOnly(b||!1)},[]);return l.createElement(a.LexicalComposerContext.Provider,{value:k},n)}; | ||
var a=require("@lexical/react/LexicalComposerContext"),e=require("lexical"),k=require("react"),l="undefined"!==typeof window&&"undefined"!==typeof window.document&&"undefined"!==typeof window.document.createElement?k.useLayoutEffect:k.useEffect; | ||
module.exports=function({initialConfig:f,children:m}){const h=k.useMemo(()=>{const {theme:b,namespace:c,editor__DEPRECATED:n,nodes:p,onError:q}=f,r=a.createLexicalComposerContext(null,b);let d=n||null;if(null===d){const g=e.createEditor({namespace:c,nodes:p,onError:t=>q(t,g),readOnly:!0,theme:b});d=g}return[d,r]},[]);l(()=>{const b=f.readOnly,[c]=h;c.setReadOnly(b||!1)},[]);return k.createElement(a.LexicalComposerContext.Provider,{value:h},m)}; |
@@ -20,2 +20,7 @@ /** | ||
class DecoratorBlockNode extends lexical.DecoratorNode { | ||
constructor(format, key) { | ||
super(key); | ||
this.__format = format; | ||
} | ||
createDOM() { | ||
@@ -35,5 +40,2 @@ return document.createElement('div'); | ||
} | ||
function $createDecoratorBlockNode() { | ||
return new DecoratorBlockNode(); | ||
} | ||
function $isDecoratorBlockNode(node) { | ||
@@ -43,4 +45,3 @@ return node instanceof DecoratorBlockNode; | ||
exports.$createDecoratorBlockNode = $createDecoratorBlockNode; | ||
exports.$isDecoratorBlockNode = $isDecoratorBlockNode; | ||
exports.DecoratorBlockNode = DecoratorBlockNode; |
@@ -7,2 +7,2 @@ /** | ||
*/ | ||
var a=require("lexical");class c extends a.DecoratorNode{createDOM(){return document.createElement("div")}updateDOM(){return!1}setFormat(b){this.getWritable().__format=b}}exports.$createDecoratorBlockNode=function(){return new c};exports.$isDecoratorBlockNode=function(b){return b instanceof c};exports.DecoratorBlockNode=c; | ||
var b=require("lexical");class c extends b.DecoratorNode{constructor(a,d){super(d);this.__format=a}createDOM(){return document.createElement("div")}updateDOM(){return!1}setFormat(a){this.getWritable().__format=a}}exports.$isDecoratorBlockNode=function(a){return a instanceof c};exports.DecoratorBlockNode=c; |
@@ -81,2 +81,8 @@ /** | ||
if (link.$isLinkNode(parent)) { | ||
linkNode = parent; | ||
parent.setURL(url); | ||
return; | ||
} | ||
if (!parent.is(prevParent)) { | ||
@@ -83,0 +89,0 @@ prevParent = parent; |
@@ -7,5 +7,5 @@ /** | ||
*/ | ||
var g=require("@lexical/link"),k=require("@lexical/react/LexicalComposerContext"),m=require("lexical"),n=require("react"); | ||
function p(e){var b=m.$getSelection();null!==b&&m.$setSelection(b);b=m.$getSelection();if(null!==b)if(b=b.extract(),null===e)b.forEach(f=>{f=f.getParent();if(g.$isLinkNode(f)){const c=f.getChildren();for(let a=0;a<c.length;a++)f.insertBefore(c[a]);f.remove()}});else{if(1===b.length){var h=b[0];if(g.$isLinkNode(h)){h.setURL(e);return}h=h.getParent();if(g.$isLinkNode(h)){h.setURL(e);return}}let f=null,c=null;b.forEach(a=>{var d=a.getParent();if(d!==c&&null!==d&&(!m.$isElementNode(a)||a.isInline()))if(d.is(f)|| | ||
(f=d,c=g.$createLinkNode(e),g.$isLinkNode(d)?null===a.getPreviousSibling()?d.insertBefore(c):d.insertAfter(c):a.insertBefore(c)),g.$isLinkNode(a)){if(null!==c){d=a.getChildren();for(let l=0;l<d.length;l++)c.append(d[l])}a.remove()}else null!==c&&c.append(a)})}} | ||
module.exports=function(){const [e]=k.useLexicalComposerContext();n.useEffect(()=>{if(!e.hasNodes([g.LinkNode]))throw Error("LinkPlugin: LinkNode not registered on editor");},[e]);n.useEffect(()=>e.registerCommand(g.TOGGLE_LINK_COMMAND,b=>{p(b);return!0},m.COMMAND_PRIORITY_EDITOR),[e]);return null}; | ||
var f=require("@lexical/link"),k=require("@lexical/react/LexicalComposerContext"),m=require("lexical"),n=require("react"); | ||
function p(e){var d=m.$getSelection();null!==d&&m.$setSelection(d);d=m.$getSelection();if(null!==d)if(d=d.extract(),null===e)d.forEach(g=>{g=g.getParent();if(f.$isLinkNode(g)){const a=g.getChildren();for(let b=0;b<a.length;b++)g.insertBefore(a[b]);g.remove()}});else{if(1===d.length){var h=d[0];if(f.$isLinkNode(h)){h.setURL(e);return}h=h.getParent();if(f.$isLinkNode(h)){h.setURL(e);return}}let g=null,a=null;d.forEach(b=>{var c=b.getParent();if(c!==a&&null!==c&&(!m.$isElementNode(b)||b.isInline()))if(f.$isLinkNode(c))a= | ||
c,c.setURL(e);else if(c.is(g)||(g=c,a=f.$createLinkNode(e),f.$isLinkNode(c)?null===b.getPreviousSibling()?c.insertBefore(a):c.insertAfter(a):b.insertBefore(a)),f.$isLinkNode(b)){if(null!==a){c=b.getChildren();for(let l=0;l<c.length;l++)a.append(c[l])}b.remove()}else null!==a&&a.append(b)})}} | ||
module.exports=function(){const [e]=k.useLexicalComposerContext();n.useEffect(()=>{if(!e.hasNodes([f.LinkNode]))throw Error("LinkPlugin: LinkNode not registered on editor");},[e]);n.useEffect(()=>e.registerCommand(f.TOGGLE_LINK_COMMAND,d=>{p(d);return!0},m.COMMAND_PRIORITY_EDITOR),[e]);return null}; |
@@ -26,16 +26,6 @@ /** | ||
return utils.mergeRegister(editor.registerCommand(lexical.INDENT_CONTENT_COMMAND, () => { | ||
const hasHandledIndention = list.indentList(); | ||
if (hasHandledIndention) { | ||
return true; | ||
} | ||
list.indentList(); | ||
return false; | ||
}, lexical.COMMAND_PRIORITY_LOW), editor.registerCommand(lexical.OUTDENT_CONTENT_COMMAND, () => { | ||
const hasHandledIndention = list.outdentList(); | ||
if (hasHandledIndention) { | ||
return true; | ||
} | ||
list.outdentList(); | ||
return false; | ||
@@ -42,0 +32,0 @@ }, lexical.COMMAND_PRIORITY_LOW), editor.registerCommand(list.INSERT_ORDERED_LIST_COMMAND, () => { |
@@ -8,3 +8,3 @@ /** | ||
var b=require("@lexical/react/LexicalComposerContext"),c=require("@lexical/list"),d=require("@lexical/utils"),e=require("lexical"),f=require("react"); | ||
function g(a){f.useEffect(()=>d.mergeRegister(a.registerCommand(e.INDENT_CONTENT_COMMAND,()=>c.indentList()?!0:!1,e.COMMAND_PRIORITY_LOW),a.registerCommand(e.OUTDENT_CONTENT_COMMAND,()=>c.outdentList()?!0:!1,e.COMMAND_PRIORITY_LOW),a.registerCommand(c.INSERT_ORDERED_LIST_COMMAND,()=>{c.insertList(a,"ol");return!0},e.COMMAND_PRIORITY_LOW),a.registerCommand(c.INSERT_UNORDERED_LIST_COMMAND,()=>{c.insertList(a,"ul");return!0},e.COMMAND_PRIORITY_LOW),a.registerCommand(c.REMOVE_LIST_COMMAND,()=>{c.removeList(a); | ||
return!0},e.COMMAND_PRIORITY_LOW),a.registerCommand(e.INSERT_PARAGRAPH_COMMAND,()=>c.$handleListInsertParagraph()?!0:!1,e.COMMAND_PRIORITY_LOW)),[a])}module.exports=function(){const [a]=b.useLexicalComposerContext();g(a);return null}; | ||
function g(a){f.useEffect(()=>d.mergeRegister(a.registerCommand(e.INDENT_CONTENT_COMMAND,()=>{c.indentList();return!1},e.COMMAND_PRIORITY_LOW),a.registerCommand(e.OUTDENT_CONTENT_COMMAND,()=>{c.outdentList();return!1},e.COMMAND_PRIORITY_LOW),a.registerCommand(c.INSERT_ORDERED_LIST_COMMAND,()=>{c.insertList(a,"ol");return!0},e.COMMAND_PRIORITY_LOW),a.registerCommand(c.INSERT_UNORDERED_LIST_COMMAND,()=>{c.insertList(a,"ul");return!0},e.COMMAND_PRIORITY_LOW),a.registerCommand(c.REMOVE_LIST_COMMAND,()=> | ||
{c.removeList(a);return!0},e.COMMAND_PRIORITY_LOW),a.registerCommand(e.INSERT_PARAGRAPH_COMMAND,()=>c.$handleListInsertParagraph()?!0:!1,e.COMMAND_PRIORITY_LOW)),[a])}module.exports=function(){const [a]=b.useLexicalComposerContext();g(a);return null}; |
@@ -11,3 +11,5 @@ /** | ||
export default function OnChangePlugin(arg0: { | ||
ignoreInitialChange?: boolean; | ||
ignoreSelectionChange?: boolean; | ||
onChange: (editorState: EditorState, editor: LexicalEditor) => void; | ||
}): null; |
@@ -189,3 +189,3 @@ /** | ||
function printGridSelection(selection) { | ||
return `: grid\n └ { grid: ${selection.gridKey}, anchorCell: ${selection.anchorCellKey}, focusCell: ${selection.focusCellKey} }`; | ||
return `: grid\n └ { grid: ${selection.gridKey}, anchorCell: ${selection.anchor.key}, focusCell: ${selection.focus.key} }`; | ||
} | ||
@@ -244,3 +244,3 @@ | ||
const FORMAT_PREDICATES = [node => node.hasFormat('bold') && 'Bold', node => node.hasFormat('code') && 'Code', node => node.hasFormat('italic') && 'Italic', node => node.hasFormat('strikethrough') && 'Strikethrough', node => node.hasFormat('underline') && 'Underline']; | ||
const FORMAT_PREDICATES = [node => node.hasFormat('bold') && 'Bold', node => node.hasFormat('code') && 'Code', node => node.hasFormat('italic') && 'Italic', node => node.hasFormat('strikethrough') && 'Strikethrough', node => node.hasFormat('subscript') && 'Subscript', node => node.hasFormat('superscript') && 'Superscript', node => node.hasFormat('underline') && 'Underline']; | ||
const DETAIL_PREDICATES = [node => node.isDirectionless() && 'Directionless', node => node.isUnmergeable() && 'Unmergeable']; | ||
@@ -247,0 +247,0 @@ const MODE_PREDICATES = [node => node.isToken() && 'Token', node => node.isSegmented() && 'Segmented', node => node.isInert() && 'Inert']; |
@@ -10,6 +10,6 @@ /** | ||
function H(a){let b=" root\n";a=a.read(()=>{const c=k.$getSelection();J(k.$getRoot(),(e,d)=>{const f=`(${e.getKey()})`,g=e.getType()||"",m=e.isSelected();var v=b,u=m?E.selectedLine:" ",r=d.join(" ");if(k.$isTextNode(e)){var l=e.getTextContent(!0);const n=0===l.length?"(empty)":`"${K(l)}"`;l=[G(e),L(e),M(e)].filter(Boolean).join(", ");l=[n,0!==l.length?`{ ${l} }`:null].filter(Boolean).join(" ").trim()}else l="";b=v+`${u} ${r} ${f} ${g} ${l}\n`;b+=N({indent:d,isSelected:m,node:e,nodeKeyDisplay:f,selection:c, | ||
typeDisplay:g})});return null===c?": null":k.$isRangeSelection(c)?F(c):k.$isGridSelection(c)?`: grid\n \u2514 { grid: ${c.gridKey}, anchorCell: ${c.anchorCellKey}, focusCell: ${c.focusCellKey} }`:`: node\n \u2514 [${Array.from(c._nodes).join(", ")}]`});return b+"\n selection"+a} | ||
function J(a,b,c=[]){a=a.getChildren();const e=a.length;a.forEach((d,f)=>{b(d,c.concat(f===e-1?E.isLastChild:E.hasNextSibling));k.$isElementNode(d)&&J(d,b,c.concat(f===e-1?E.ancestorIsLastChild:E.ancestorHasNextSibling))})}function K(a){return Object.entries(t).reduce((b,[c,e])=>b.replace(new RegExp(c,"g"),String(e)),a)} | ||
const O=[a=>a.hasFormat("bold")&&"Bold",a=>a.hasFormat("code")&&"Code",a=>a.hasFormat("italic")&&"Italic",a=>a.hasFormat("strikethrough")&&"Strikethrough",a=>a.hasFormat("underline")&&"Underline"],P=[a=>a.isDirectionless()&&"Directionless",a=>a.isUnmergeable()&&"Unmergeable"],Q=[a=>a.isToken()&&"Token",a=>a.isSegmented()&&"Segmented",a=>a.isInert()&&"Inert"];function L(a){let b=P.map(c=>c(a)).filter(Boolean).join(", ").toLocaleLowerCase();""!==b&&(b="detail: "+b);return b} | ||
function M(a){let b=Q.map(c=>c(a)).filter(Boolean).join(", ").toLocaleLowerCase();""!==b&&(b="mode: "+b);return b}function G(a){let b=O.map(c=>c(a)).filter(Boolean).join(", ").toLocaleLowerCase();""!==b&&(b="format: "+b);return b} | ||
typeDisplay:g})});return null===c?": null":k.$isRangeSelection(c)?F(c):k.$isGridSelection(c)?`: grid\n \u2514 { grid: ${c.gridKey}, anchorCell: ${c.anchor.key}, focusCell: ${c.focus.key} }`:`: node\n \u2514 [${Array.from(c._nodes).join(", ")}]`});return b+"\n selection"+a}function J(a,b,c=[]){a=a.getChildren();const e=a.length;a.forEach((d,f)=>{b(d,c.concat(f===e-1?E.isLastChild:E.hasNextSibling));k.$isElementNode(d)&&J(d,b,c.concat(f===e-1?E.ancestorIsLastChild:E.ancestorHasNextSibling))})} | ||
function K(a){return Object.entries(t).reduce((b,[c,e])=>b.replace(new RegExp(c,"g"),String(e)),a)} | ||
const O=[a=>a.hasFormat("bold")&&"Bold",a=>a.hasFormat("code")&&"Code",a=>a.hasFormat("italic")&&"Italic",a=>a.hasFormat("strikethrough")&&"Strikethrough",a=>a.hasFormat("subscript")&&"Subscript",a=>a.hasFormat("superscript")&&"Superscript",a=>a.hasFormat("underline")&&"Underline"],P=[a=>a.isDirectionless()&&"Directionless",a=>a.isUnmergeable()&&"Unmergeable"],Q=[a=>a.isToken()&&"Token",a=>a.isSegmented()&&"Segmented",a=>a.isInert()&&"Inert"]; | ||
function L(a){let b=P.map(c=>c(a)).filter(Boolean).join(", ").toLocaleLowerCase();""!==b&&(b="detail: "+b);return b}function M(a){let b=Q.map(c=>c(a)).filter(Boolean).join(", ").toLocaleLowerCase();""!==b&&(b="mode: "+b);return b}function G(a){let b=O.map(c=>c(a)).filter(Boolean).join(", ").toLocaleLowerCase();""!==b&&(b="format: "+b);return b} | ||
function N({indent:a,isSelected:b,node:c,nodeKeyDisplay:e,selection:d,typeDisplay:f}){if(!k.$isTextNode(c)||!k.$isRangeSelection(d)||!b||k.$isElementNode(c))return"";b=d.anchor;var g=d.focus;if(""===c.getTextContent()||b.getNode()===d.focus.getNode()&&b.offset===g.offset)return"";g=d.anchor;const m=d.focus,v=c.getTextContent(!0),u=v.length;b=d=-1;if("text"===g.type&&"text"===m.type){const n=g.getNode(),w=m.getNode();n===w&&c===n&&g.offset!==m.offset?[d,b]=g.offset<m.offset?[g.offset,m.offset]:[m.offset, | ||
@@ -16,0 +16,0 @@ g.offset]:c===n?[d,b]=n.isBefore(w)?[g.offset,u]:[0,g.offset]:c===w?[d,b]=w.isBefore(n)?[m.offset,u]:[0,m.offset]:[d,b]=[0,u]}c=(v.slice(0,d).match(D)||[]).length;g=(v.slice(d,b).match(D)||[]).length;const [r,l]=[d+c,b+c+g];if(r===l)return"";c=a[a.length-1]===E.hasNextSibling?E.ancestorHasNextSibling:E.ancestorIsLastChild;a=[...a.slice(0,a.length-1),c];c=Array(r).fill(" ");d=Array(l-r).fill(E.selectedChar);e=Array(e.length+(f.length+3)).fill(" ");return[E.selectedLine,a.join(" "),[...e,...c,...d].join("")].join(" ")+ |
@@ -11,23 +11,23 @@ { | ||
"license": "MIT", | ||
"version": "0.2.4", | ||
"version": "0.2.5", | ||
"dependencies": { | ||
"@lexical/clipboard": "0.2.4", | ||
"@lexical/list": "0.2.4", | ||
"@lexical/table": "0.2.4", | ||
"@lexical/yjs": "0.2.4", | ||
"@lexical/hashtag": "0.2.4", | ||
"@lexical/selection": "0.2.4", | ||
"@lexical/utils": "0.2.4", | ||
"@lexical/dragon": "0.2.4", | ||
"@lexical/plain-text": "0.2.4", | ||
"@lexical/rich-text": "0.2.4", | ||
"@lexical/code": "0.2.4", | ||
"@lexical/text": "0.2.4", | ||
"@lexical/link": "0.2.4", | ||
"@lexical/overflow": "0.2.4", | ||
"@lexical/history": "0.2.4", | ||
"@lexical/markdown": "0.2.4" | ||
"@lexical/clipboard": "0.2.5", | ||
"@lexical/list": "0.2.5", | ||
"@lexical/table": "0.2.5", | ||
"@lexical/yjs": "0.2.5", | ||
"@lexical/hashtag": "0.2.5", | ||
"@lexical/selection": "0.2.5", | ||
"@lexical/utils": "0.2.5", | ||
"@lexical/dragon": "0.2.5", | ||
"@lexical/plain-text": "0.2.5", | ||
"@lexical/rich-text": "0.2.5", | ||
"@lexical/code": "0.2.5", | ||
"@lexical/text": "0.2.5", | ||
"@lexical/link": "0.2.5", | ||
"@lexical/overflow": "0.2.5", | ||
"@lexical/history": "0.2.5", | ||
"@lexical/markdown": "0.2.5" | ||
}, | ||
"peerDependencies": { | ||
"lexical": "0.2.4", | ||
"lexical": "0.2.5", | ||
"react": ">=17.x", | ||
@@ -34,0 +34,0 @@ "react-dom": ">=17.x" |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 2 instances in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 2 instances in 1 package
219197
0
4427
+ Added@lexical/clipboard@0.2.5(transitive)
+ Added@lexical/code@0.2.5(transitive)
+ Added@lexical/dragon@0.2.5(transitive)
+ Added@lexical/hashtag@0.2.5(transitive)
+ Added@lexical/history@0.2.5(transitive)
+ Added@lexical/link@0.2.5(transitive)
+ Added@lexical/list@0.2.5(transitive)
+ Added@lexical/markdown@0.2.5(transitive)
+ Added@lexical/offset@0.2.5(transitive)
+ Added@lexical/overflow@0.2.5(transitive)
+ Added@lexical/plain-text@0.2.5(transitive)
+ Added@lexical/rich-text@0.2.5(transitive)
+ Added@lexical/selection@0.2.5(transitive)
+ Added@lexical/table@0.2.5(transitive)
+ Added@lexical/text@0.2.5(transitive)
+ Added@lexical/utils@0.2.5(transitive)
+ Added@lexical/yjs@0.2.5(transitive)
+ Addedlexical@0.2.5(transitive)
- Removed@lexical/clipboard@0.2.4(transitive)
- Removed@lexical/code@0.2.4(transitive)
- Removed@lexical/dragon@0.2.4(transitive)
- Removed@lexical/hashtag@0.2.4(transitive)
- Removed@lexical/history@0.2.4(transitive)
- Removed@lexical/link@0.2.4(transitive)
- Removed@lexical/list@0.2.4(transitive)
- Removed@lexical/markdown@0.2.4(transitive)
- Removed@lexical/offset@0.2.4(transitive)
- Removed@lexical/overflow@0.2.4(transitive)
- Removed@lexical/plain-text@0.2.4(transitive)
- Removed@lexical/rich-text@0.2.4(transitive)
- Removed@lexical/selection@0.2.4(transitive)
- Removed@lexical/table@0.2.4(transitive)
- Removed@lexical/text@0.2.4(transitive)
- Removed@lexical/utils@0.2.4(transitive)
- Removed@lexical/yjs@0.2.4(transitive)
- Removedlexical@0.2.4(transitive)
Updated@lexical/clipboard@0.2.5
Updated@lexical/code@0.2.5
Updated@lexical/dragon@0.2.5
Updated@lexical/hashtag@0.2.5
Updated@lexical/history@0.2.5
Updated@lexical/link@0.2.5
Updated@lexical/list@0.2.5
Updated@lexical/markdown@0.2.5
Updated@lexical/overflow@0.2.5
Updated@lexical/plain-text@0.2.5
Updated@lexical/rich-text@0.2.5
Updated@lexical/selection@0.2.5
Updated@lexical/table@0.2.5
Updated@lexical/text@0.2.5
Updated@lexical/utils@0.2.5
Updated@lexical/yjs@0.2.5