Skip to content

Commit 6a19350

Browse files
author
Lexical GitHub Actions Bot
committed
v0.22.0
1 parent c415f7a commit 6a19350

File tree

42 files changed

+438
-386
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+438
-386
lines changed

CHANGELOG.md

+45
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,48 @@
1+
## v0.22.0 (2024-12-23)
2+
3+
- lexical Fix flow error change this to any (#6992) Sherry
4+
- Refactor exportJSON (#6983) Germn Jabloski
5+
- feature expose forEachSelectedTextNode (#6981) Germn Jabloski
6+
- lexicallexical-table Bug fix TablePlugin - check is current selection in target table node (#6979) Alex
7+
- Documentationlexical-website Documentation for useLexical node selection hook (#6976) Ajaezo Kingsley
8+
- lexical-table Feature Support google docs colgroup import (via deprecated col width attribute) (#6971) Bob Ippolito
9+
- lexical-markdown Bug Fix preserve the order of markdown tags for markdown combinations, and close the tags when the outmost tag is closed (#5758) yhw5
10+
- lexical-utils Bug Fix Refactor markSelection for getDOMSlot and not using updateDOM (#6961) Bob Ippolito
11+
- lexicallexical-table Bug Fix Allow TableSelection to be preserved during contextmenu events (#6964) Bob Ippolito
12+
- lexical-website Add Discord to the community section of the footer (#6967) Bob Ippolito
13+
- lexicallexical-rich-textlexical-playground Feature Support capitalization format (#6897) Bedru Umer
14+
- lexical-playground Bug Fix Allow scrolling if the table cell content overflows (#6966) Parasaran
15+
- lexical-tablelexical-playground Fix Insertion of multiple rows (#6963) Vinay Kushwaha
16+
- Breaking Changelexical Feature New update tag skip-dom-selection, onUpdate now always called (#6894) Bob Ippolito
17+
- Test234 (#6958) Tranquiliz00
18+
- Revert Test comment for pr testing (#6953) (#6957) bailey-meta
19+
- Revert lexical-onboarding testing sev mitigation (#6952) (#6956) Niels Y.
20+
- Create a test PR (#6955) Tranquiliz00
21+
- Test comment for pr testing (#6953) bailey-meta
22+
- lexical-onboarding testing sev mitigation (#6952) Niels Y.
23+
- lexical-list Revert PR 6912 (#6944) Sherry
24+
- scripts-integration-fixtures Address GitHub detected a vulnerability in the sveltejskit dependency (#6943) Luis Silva
25+
- lexical-table Fix Delete table row in merge cells (#6922) Vinay Kushwaha
26+
- lexical-list Bug Fix Ensure new paragraph node retains selection styling when exiting list (#6917) Aleksandr Lapukin
27+
- lexical-reactBug Fix the location of draggable-block-menu cannot be calculated #6818 (#6915) lin-mt
28+
- lexical-playground Refactor editor styles should in PlaygroundEditorTheme.css (#6934) Syed Umar Anis
29+
- lexical-playground Fix tabs do not show strikethroughunderline (#6811) Oluwasanya Olaoluwa
30+
- Breaking Changelexical-list Fix Preserve original format after indenting list item (#6912) C.
31+
- Bug Fix add mergegroup to the tests workflow (#6932) Bob Ippolito
32+
- Update core-tests workflow triggers (#6928) Gerard Rovira
33+
- Doc nits (#6927) Gerard Rovira
34+
- lexical-playground Chore Update Prettier to v3 (#6920) daichan132
35+
- lexical-playground Fix empty layout item causes 100 CPU usage (#6906) Basile Savouret
36+
- lexicallexicalselection Feature Unify selectAll Implementations (#6902) Hadi Elghoul
37+
- lexical-tablelexical-utilslexical-react Bug Fix Enforce table integrity with transforms and move non-React plugin code to lexicaltable (#6914) Bob Ippolito
38+
- lexical-website Fix docsreact next button links to itself (#6911) Oluwasanya Olaoluwa
39+
- Warn about display flex container for the editor (#6901) Maksim Horbachevsky
40+
- lexical-websitelexical-react Documentation Update documentation for LexicalTreeView plugin (#6898) Ajaezo Kingsley
41+
- lexical-link Bug Fix Preserve the startend of the selection for non-text points when creating a LinkNode (#6883) Bob Ippolito
42+
- v0.21.0 (#6896) Sherry
43+
- Documentation Update Add release protocol to maintainers-guide.md (#6895) Sherry
44+
- v0.21.0 Lexical GitHub Actions Bot
45+
146
## v0.21.0 (2024-12-01)
247

348
- Fix selected table colors (#6892) Gerard Rovira

examples/react-plain-text/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "@lexical/react-plain-text-example",
33
"private": true,
4-
"version": "0.21.0",
4+
"version": "0.22.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
88
"build": "tsc && vite build",
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"@lexical/react": "0.21.0",
13-
"lexical": "0.21.0",
12+
"@lexical/react": "0.22.0",
13+
"lexical": "0.22.0",
1414
"react": "^18.2.0",
1515
"react-dom": "^18.2.0"
1616
},

examples/react-rich-collab/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@lexical/react-rich-collab-example",
33
"private": true,
4-
"version": "0.21.0",
4+
"version": "0.22.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -12,9 +12,9 @@
1212
"server:webrtc": "cross-env HOST=localhost PORT=1235 npx y-webrtc"
1313
},
1414
"dependencies": {
15-
"@lexical/react": "0.21.0",
16-
"@lexical/yjs": "0.21.0",
17-
"lexical": "0.21.0",
15+
"@lexical/react": "0.22.0",
16+
"@lexical/yjs": "0.22.0",
17+
"lexical": "0.22.0",
1818
"react": "^18.2.0",
1919
"react-dom": "^18.2.0",
2020
"y-webrtc": "^10.3.0",

examples/react-rich/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "@lexical/react-rich-example",
33
"private": true,
4-
"version": "0.21.0",
4+
"version": "0.22.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
88
"build": "tsc && vite build",
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"@lexical/react": "0.21.0",
13-
"lexical": "0.21.0",
12+
"@lexical/react": "0.22.0",
13+
"lexical": "0.22.0",
1414
"react": "^18.2.0",
1515
"react-dom": "^18.2.0"
1616
},

examples/react-table/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "@lexical/react-table-example",
33
"private": true,
4-
"version": "0.21.0",
4+
"version": "0.22.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
88
"build": "tsc && vite build",
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"@lexical/react": "0.21.0",
13-
"lexical": "0.21.0",
12+
"@lexical/react": "0.22.0",
13+
"lexical": "0.22.0",
1414
"react": "^18.2.0",
1515
"react-dom": "^18.2.0"
1616
},

examples/vanilla-js-plugin/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
22
"name": "@lexical/vanilla-js-plugin-example",
33
"private": true,
4-
"version": "0.21.0",
4+
"version": "0.22.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
88
"build": "tsc && vite build",
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"@lexical/dragon": "0.21.0",
13-
"@lexical/history": "0.21.0",
14-
"@lexical/rich-text": "0.21.0",
15-
"@lexical/utils": "0.21.0",
12+
"@lexical/dragon": "0.22.0",
13+
"@lexical/history": "0.22.0",
14+
"@lexical/rich-text": "0.22.0",
15+
"@lexical/utils": "0.22.0",
1616
"emoji-datasource-facebook": "15.1.2",
17-
"lexical": "0.21.0"
17+
"lexical": "0.22.0"
1818
},
1919
"devDependencies": {
2020
"typescript": "^5.2.2",

examples/vanilla-js/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
22
"name": "@lexical/vanilla-js-example",
33
"private": true,
4-
"version": "0.21.0",
4+
"version": "0.22.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
88
"build": "tsc && vite build",
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"@lexical/dragon": "0.21.0",
13-
"@lexical/history": "0.21.0",
14-
"@lexical/rich-text": "0.21.0",
15-
"@lexical/utils": "0.21.0",
16-
"lexical": "0.21.0"
12+
"@lexical/dragon": "0.22.0",
13+
"@lexical/history": "0.22.0",
14+
"@lexical/rich-text": "0.22.0",
15+
"@lexical/utils": "0.22.0",
16+
"lexical": "0.22.0"
1717
},
1818
"devDependencies": {
1919
"typescript": "^5.2.2",

0 commit comments

Comments
 (0)