Skip to content

Commit

Permalink
chore(deps): update @lexical packages to version 0.23.0 (#18556)
Browse files Browse the repository at this point in the history
* chore(deps): update @lexical packages to version 0.22

* chore(deps): update @lexical packages to version 0.22.0

* fix: update updateDOM method signature to use 'this' type for better type safety

* chore: bump to v0.23.0
  • Loading branch information
olafsulich authored Jan 7, 2025
1 parent b6dd427 commit 61d19ec
Show file tree
Hide file tree
Showing 3 changed files with 178 additions and 178 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"@datadog/browser-logs": "5.34.1",
"@datadog/browser-rum": "5.34.1",
"@emotion/react": "11.11.4",
"@lexical/code": "0.21.0",
"@lexical/history": "0.21.0",
"@lexical/list": "0.21.0",
"@lexical/markdown": "0.21.0",
"@lexical/react": "0.21.0",
"@lexical/rich-text": "0.21.0",
"@lexical/code": "0.23.0",
"@lexical/history": "0.23.0",
"@lexical/list": "0.23.0",
"@lexical/markdown": "0.23.0",
"@lexical/react": "0.23.0",
"@lexical/rich-text": "0.23.0",
"@mediapipe/tasks-vision": "0.10.20",
"@wireapp/avs": "10.0.4",
"@wireapp/avs-debugger": "0.0.7",
Expand All @@ -34,7 +34,7 @@
"kalium-backup": "./TEMP-crossplatform-backup",
"keyboardjs": "2.7.0",
"knockout": "3.5.1",
"lexical": "0.21.0",
"lexical": "0.23.0",
"libsodium-wrappers": "0.7.15",
"linkify-it": "5.0.0",
"long": "5.2.3",
Expand Down
2 changes: 1 addition & 1 deletion src/script/components/RichTextEditor/nodes/EmojiNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class EmojiNode extends TextNode {
return dom;
}

updateDOM(prevNode: TextNode, dom: HTMLElement, config: EditorConfig): boolean {
updateDOM(prevNode: this, dom: HTMLElement, config: EditorConfig): boolean {
const inner = dom.firstChild;
if (inner === null) {
return true;
Expand Down
Loading

0 comments on commit 61d19ec

Please sign in to comment.