Skip to content

Commit 3d08282

Browse files
author
Lexical GitHub Actions Bot
committed
v0.18.0
1 parent 62c51a9 commit 3d08282

File tree

42 files changed

+446
-387
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

+446
-387
lines changed

CHANGELOG.md

+47
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,50 @@
1+
## v0.18.0 (2024-09-26)
2+
3+
- lexical-markdown set shouldMergeAdjacentLines default to be false (#6660) Sherry
4+
- lexical-link Bug Fix Removing a link from descendants (#6656) Sergey Gorbachev
5+
- lexical-playground Bug Fix Correct ExcalidrawNode DOM handling for proper resizing (#6657) neysanfoo
6+
- lexical-markdown Refactor allows omitting certain properties from TextMatchTransformers, adds jsdocs (#6651) Alessio Gravili
7+
- lexical-table Bug Fix Fix crash in deleteCellHandler (#6650) Bob Ippolito
8+
- lexical-playground Bug Fix empty code block not focused (#6649) Sherry
9+
- lexical-markdown shouldMergeAdjacentLines as an option (#6642) Sherry
10+
- lexical-code Bug Fix Annotate lexicalcode as having side-effects for Prism (#6652) Bob Ippolito
11+
- lexical-reactlexical-playground Bug Fix Workaround for yjs disconnect race in React StrictMode (#6644) Bob Ippolito
12+
- Allow exporting a document fragment from the exportDOM function (#6641) Tom Kubt
13+
- Grammar Issue - Repeated Word (#6643) Adam Pugh
14+
- lexical-tablelexical-playground Feature Add column widths to TableNode (#6625) Patrick Moody
15+
- lexical-playgroundExcalidrawNode Bug Fix Preserve Excalidraw image dimensions after resizing (#6634) neysanfoo
16+
- lexical-table Bug Table formatting and styling not persisting for empty cells (#6626) Katsia
17+
- lexical-markdown Fix normalize markdown in convertFromMarkdownString to comply with CommonMark spec (2nd try) (#6629) Germn Jabloski
18+
- lexical-playground Bug Fix Fix table rowcolumn index when resizing merged cells (#6630) Patrick Moody
19+
- Revert lexical-markdown Fix normalize markdown in convertFromMarkdownString to comply with CommonMark spec (#6608) (#6627) Sherry
20+
- lexical-react Refactor Ensure disconnect is called after connection is established in useYjsCollaboration (#6619) smworld01
21+
- CI tag flaky test (#6620) Sherry
22+
- address micromatch vulnerability (#6616) Sherry
23+
- Bug Fix Fix issue where selecting a cell then dragging outside of table would not select entire table (#6579) Mo
24+
- lexical-markdown Breaking Change rename multilineElement to multiline-element (#6617) Sherry
25+
- lexical Chore Add more helpful invariants to applyNodeReplacement (#6567) Bob Ippolito
26+
- lexical-markdown Fix normalize markdown in convertFromMarkdownString to comply with CommonMark spec (#6608) Germn Jabloski
27+
- Expose getStyleObjectFromCss in lexicalselection (#6612) Melissa Freiser
28+
- lexical-markdown update markdown flow api (#6615) Sherry
29+
- lexical-playground Fix Poll Option not clickable at some place after checked state (#6609) Vinay Kushwaha
30+
- Multiple update tags (#6507) Gerard Rovira
31+
- lexical-codebreaking change Bug Fix explicitly import instead of window. to support code nodes in nodejs (#6562) Nadine Nguyen
32+
- lexical-tablelexical-playground Bug Fix Fix merged cell related edge cases (#6607) Bob Ippolito
33+
- Fix issue where cmdctrl left arrow after a tab character would cause exception (#6588) Mo
34+
- Address svelte vulnerability (#6603) Sherry
35+
- lexical-markdownbreaking change Feature multiline markdown transformers mdx support (#6530) Alessio Gravili
36+
- lexical-table Fix Table Cut Event Handling (#6596) Ivaylo Pavlov
37+
- lexicallexical-overflow Refactor simplified removeText and insertText rewrite (part 1) (#6456) Germn Jabloski
38+
- Fix test results CI path on Windows (#6585) Mo
39+
- lexical-listlexical-react Refactor Create registerList Function Separate from React Shared Utils (#6560) River
40+
- lexical-react Fix incorrect addition of empty cells on table paste (#6578) Shubhanker Srivastava
41+
- lexical-table feat Add row striping (#6547) Ivaylo Pavlov
42+
- Feature Check undeclared dependencies in build (#6574) Bob Ippolito
43+
- lexical-react menu positioning Unrevert PR6510 but with gating (#6566) Sherry
44+
- lexical-table Bug Fix Add lexicalclipboard as a direct dependency of lexicaltable (#6571) Bob Ippolito
45+
- v0.17.1 (#6559) Ivaylo Pavlov
46+
- v0.17.1 Lexical GitHub Actions Bot
47+
148
## v0.17.1 (2024-08-26)
249

350
- lexical-playground Bug Fix fix comment timestamps (#6555) Ira Hopkinson

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.17.1",
4+
"version": "0.18.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.17.1",
13-
"lexical": "0.17.1",
12+
"@lexical/react": "0.18.0",
13+
"lexical": "0.18.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.17.1",
4+
"version": "0.18.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.17.1",
16-
"@lexical/yjs": "0.17.1",
17-
"lexical": "0.17.1",
15+
"@lexical/react": "0.18.0",
16+
"@lexical/yjs": "0.18.0",
17+
"lexical": "0.18.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.17.1",
4+
"version": "0.18.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.17.1",
13-
"lexical": "0.17.1",
12+
"@lexical/react": "0.18.0",
13+
"lexical": "0.18.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.17.1",
4+
"version": "0.18.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.17.1",
13-
"lexical": "0.17.1",
12+
"@lexical/react": "0.18.0",
13+
"lexical": "0.18.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.17.1",
4+
"version": "0.18.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.17.1",
13-
"@lexical/history": "0.17.1",
14-
"@lexical/rich-text": "0.17.1",
15-
"@lexical/utils": "0.17.1",
12+
"@lexical/dragon": "0.18.0",
13+
"@lexical/history": "0.18.0",
14+
"@lexical/rich-text": "0.18.0",
15+
"@lexical/utils": "0.18.0",
1616
"emoji-datasource-facebook": "15.1.2",
17-
"lexical": "0.17.1"
17+
"lexical": "0.18.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.17.1",
4+
"version": "0.18.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.17.1",
13-
"@lexical/history": "0.17.1",
14-
"@lexical/rich-text": "0.17.1",
15-
"@lexical/utils": "0.17.1",
16-
"lexical": "0.17.1"
12+
"@lexical/dragon": "0.18.0",
13+
"@lexical/history": "0.18.0",
14+
"@lexical/rich-text": "0.18.0",
15+
"@lexical/utils": "0.18.0",
16+
"lexical": "0.18.0"
1717
},
1818
"devDependencies": {
1919
"typescript": "^5.2.2",

0 commit comments

Comments
 (0)