Skip to content

Commit acdda87

Browse files
author
Lexical GitHub Actions Bot
committed
v0.26.0
1 parent 2a08be2 commit acdda87

File tree

47 files changed

+436
-405
lines changed

Some content is hidden

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

47 files changed

+436
-405
lines changed

.flowconfig

-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ module.name_mapper='^@lexical/react/LexicalPlainTextPlugin$' -> '<PROJECT_ROOT>/
7171
module.name_mapper='^@lexical/react/LexicalRichTextPlugin$' -> '<PROJECT_ROOT>/packages/lexical-react/flow/LexicalRichTextPlugin.js.flow'
7272
module.name_mapper='^@lexical/react/LexicalSelectionAlwaysOnDisplay$' -> '<PROJECT_ROOT>/packages/lexical-react/flow/LexicalSelectionAlwaysOnDisplay.js.flow'
7373
module.name_mapper='^@lexical/react/LexicalTabIndentationPlugin$' -> '<PROJECT_ROOT>/packages/lexical-react/flow/LexicalTabIndentationPlugin.js.flow'
74-
module.name_mapper='^@lexical/react/LexicalTableOfContents$' -> '<PROJECT_ROOT>/packages/lexical-react/flow/LexicalTableOfContents.js.flow'
7574
module.name_mapper='^@lexical/react/LexicalTableOfContentsPlugin$' -> '<PROJECT_ROOT>/packages/lexical-react/flow/LexicalTableOfContentsPlugin.js.flow'
7675
module.name_mapper='^@lexical/react/LexicalTablePlugin$' -> '<PROJECT_ROOT>/packages/lexical-react/flow/LexicalTablePlugin.js.flow'
7776
module.name_mapper='^@lexical/react/LexicalTreeView$' -> '<PROJECT_ROOT>/packages/lexical-react/flow/LexicalTreeView.js.flow'

CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
## v0.26.0 (2025-03-01)
2+
3+
- Fix selection shifting when deleting paragraphs on android (#7239) Wayne
4+
- lexicalreact Bug Fix anchor element not cleanup when component unmount (#7264) Y2
5+
- lexical Bug Fix Point.isBefore could return incorrect result due to normalization (#7256) Bob Ippolito
6+
- lexical Feature add a generic state property to all nodes (#7117) Germn Jabloski
7+
- lexicallexical-mark Bug Fix Identify mark as inline element (#7255) Peter Dekkers
8+
- lexical-playgroundexamples Refactor Unify vite devprodexample configurations (#7208) Bob Ippolito
9+
- lexicallexical-utils Chore Add some missing flow types for NodeCaret and table related functionality (#7253) Bob Ippolito
10+
- lexical-playground Bug Fix Table Action Menu dropdown positioning (#7229) Syed Umar Anis
11+
- fix Add missing flow types for node event plugin (#7252) Maksim Horbachevsky
12+
- lexical fix typo in Caret error msg (#7249) Sherry
13+
- Breaking Changeslexicallexical-listlexical-playground Bug Fix deleteCharacter through ListNode-ListItemNode (#7248) Bob Ippolito
14+
- Update Upgrade docusaurus version (#7244) Yuncheng Lu
15+
- lexical-react fix ensure attributes are set immediately on menu (#7237) Dennis Soehnen
16+
- lexical-table Bug Fix Prevent adjacent cell selection on triple-click (#7213) Kiran Dash
17+
- lexical-list Bullet item color matches text color (#7024) Ivaylo Pavlov
18+
- lexicallexical-code Refactor Use NodeCaret to implement RangeSelection.getNodes() (#7135) Bob Ippolito
19+
- lexical-playground Refactor Image component rerenders on every editor update (#7233) Jash Vithlani
20+
- Feature Add linter to check that flow types are consistent with typescript types (#7230) Bob Ippolito
21+
- lexical-playground fix hard coded theme classes for table hover actions (#7182) Syed Umar Anis
22+
- lexical-list Bug Fix retain selection styling when exiting nested list (#7225) Divyansh Kumar
23+
- lexicallist Feature export ListNodeTagType (#7228) Dani Guardiola
24+
- lexical-table Docs Fix lexicaltable README.md (#7224) Bob Ippolito
25+
- lexical-yjs Bug Fix Normalize multiple adjacent merge conflicts in one block (#7217) James Fitzsimmons
26+
- Breaking Changelexicalreact Chore Remove deprecated default exports (#7219) Kiran Dash
27+
- v0.25.0 (#7221) Bob Ippolito
28+
- 2024 recap shortcut (#7223) Gerard Rovira
29+
- v0.25.0 Lexical GitHub Actions Bot
30+
131
## v0.25.0 (2025-02-20)
232

333
- lexical-playground Refactor Remove redundant Suspense from node decorators (#7215) Kiran Dash

examples/react-plain-text/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@lexical/react-plain-text-example",
33
"private": true,
4-
"version": "0.25.0",
4+
"version": "0.26.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -10,8 +10,8 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"@lexical/react": "0.25.0",
14-
"lexical": "0.25.0",
13+
"@lexical/react": "0.26.0",
14+
"lexical": "0.26.0",
1515
"react": "^18.2.0",
1616
"react-dom": "^18.2.0"
1717
},

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.25.0",
4+
"version": "0.26.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -14,9 +14,9 @@
1414
"server:webrtc": "cross-env HOST=localhost PORT=1235 npx y-webrtc"
1515
},
1616
"dependencies": {
17-
"@lexical/react": "0.25.0",
18-
"@lexical/yjs": "0.25.0",
19-
"lexical": "0.25.0",
17+
"@lexical/react": "0.26.0",
18+
"@lexical/yjs": "0.26.0",
19+
"lexical": "0.26.0",
2020
"react": "^18.2.0",
2121
"react-dom": "^18.2.0",
2222
"y-webrtc": "^10.3.0",

examples/react-rich/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@lexical/react-rich-example",
33
"private": true,
4-
"version": "0.25.0",
4+
"version": "0.26.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -10,8 +10,8 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"@lexical/react": "0.25.0",
14-
"lexical": "0.25.0",
13+
"@lexical/react": "0.26.0",
14+
"lexical": "0.26.0",
1515
"react": "^18.2.0",
1616
"react-dom": "^18.2.0"
1717
},

examples/react-table/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@lexical/react-table-example",
33
"private": true,
4-
"version": "0.25.0",
4+
"version": "0.26.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -10,8 +10,8 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"@lexical/react": "0.25.0",
14-
"lexical": "0.25.0",
13+
"@lexical/react": "0.26.0",
14+
"lexical": "0.26.0",
1515
"react": "^18.2.0",
1616
"react-dom": "^18.2.0"
1717
},

examples/vanilla-js-iframe/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@lexical/vanilla-js-iframe-example",
33
"private": true,
4-
"version": "0.25.0",
4+
"version": "0.26.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -10,11 +10,11 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"@lexical/dragon": "0.25.0",
14-
"@lexical/history": "0.25.0",
15-
"@lexical/rich-text": "0.25.0",
16-
"@lexical/utils": "0.25.0",
17-
"lexical": "0.25.0"
13+
"@lexical/dragon": "0.26.0",
14+
"@lexical/history": "0.26.0",
15+
"@lexical/rich-text": "0.26.0",
16+
"@lexical/utils": "0.26.0",
17+
"lexical": "0.26.0"
1818
},
1919
"devDependencies": {
2020
"cross-env": "^7.0.3",

examples/vanilla-js-plugin/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@lexical/vanilla-js-plugin-example",
33
"private": true,
4-
"version": "0.25.0",
4+
"version": "0.26.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -10,12 +10,12 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"@lexical/dragon": "0.25.0",
14-
"@lexical/history": "0.25.0",
15-
"@lexical/rich-text": "0.25.0",
16-
"@lexical/utils": "0.25.0",
13+
"@lexical/dragon": "0.26.0",
14+
"@lexical/history": "0.26.0",
15+
"@lexical/rich-text": "0.26.0",
16+
"@lexical/utils": "0.26.0",
1717
"emoji-datasource-facebook": "15.1.2",
18-
"lexical": "0.25.0"
18+
"lexical": "0.26.0"
1919
},
2020
"devDependencies": {
2121
"cross-env": "^7.0.3",

examples/vanilla-js/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@lexical/vanilla-js-example",
33
"private": true,
4-
"version": "0.25.0",
4+
"version": "0.26.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -10,11 +10,11 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"@lexical/dragon": "0.25.0",
14-
"@lexical/history": "0.25.0",
15-
"@lexical/rich-text": "0.25.0",
16-
"@lexical/utils": "0.25.0",
17-
"lexical": "0.25.0"
13+
"@lexical/dragon": "0.26.0",
14+
"@lexical/history": "0.26.0",
15+
"@lexical/rich-text": "0.26.0",
16+
"@lexical/utils": "0.26.0",
17+
"lexical": "0.26.0"
1818
},
1919
"devDependencies": {
2020
"cross-env": "^7.0.3",

0 commit comments

Comments
 (0)