Skip to content

Commit ab1c900

Browse files
authored
Merge branch 'facebook:main' into patch-1
2 parents cb12d93 + 9cb10ea commit ab1c900

File tree

70 files changed

+717
-482
lines changed

Some content is hidden

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

70 files changed

+717
-482
lines changed

CHANGELOG.md

+60
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,63 @@
1+
## v0.17.0 (2024-07-31)
2+
3+
- LexicaCI run extended tests for safari in mac-os and chromefirefox in linuxwindows (#6466) Sahejkm
4+
- lexical-table Bug Fix cannot delete content when a table inside selection (#6412) placeba
5+
- LexicalCI Update canary e2e test os (#6465) Sahejkm
6+
- CI tag flaky tests (#6462) Sherry
7+
- lexical Bug Fix Allow getTopLevelElement to return a DecoratorNode (#6458) Bob Ippolito
8+
- CI dont cancel other test runs if e2e flaky job fails (#6460) Sherry
9+
- Flow add tags type to OnChange plugin (#6457) Gerard Rovira
10+
- lexical-rich-text Bug Fix HeadingNode.insertNewAfter (#6435) Germn Jabloski
11+
- lexical-react sync format in flow file (#6448) Sherry
12+
- lexical Bug Fix getCachedTypeToNodeMap should handle a empty and writable EditorState (#6444) Bob Ippolito
13+
- lexical lexical-selection Preserve paragraph styles between lines (#6437) Ivaylo Pavlov
14+
- LexicalGallery Add tableplugin example to gallery (#6447) Sahejkm
15+
- LexicalCI ignore running unitintegeritye2e tests on examples folder code (#6446) Sahejkm
16+
- LexicalGallery Create Simple Tableplugin example (#6445) Sahejkm
17+
- lexicalauto-link Fix auto link crash editor (#6433) Maksym Plavinskyi
18+
- lexicallexical-selection Bug Fix Respect mode when patching text style (#6428) Adrian Busse
19+
- lexical-historylexical-selectionlexical-react Fix #6409 TextNode change detection (#6420) Bob Ippolito
20+
- lexical-playground Refactor run prettier to fix CI (#6436) Germn Jabloski
21+
- fix(LexicalNode) fix inline decorator isSelected (#5948) Xuan
22+
- lexical-playgroundTableCellResizer Bug Fix Register event handlers on root element (#6416) JBWereRuss
23+
- lexical-react update flow typing for draggable block plugin (#6426) Sherry
24+
- docs fix typo in editor.registerCommand() usage (#6429) Yangshun Tay
25+
- fix(docs) correct typo in Lexical collaboration guide (#6421) Francois Polo
26+
- Fix discrete nested updates (#6419) Gerard Rovira
27+
- CI fix build failure on astro integration tests (#6414) wnhlee
28+
- CI run flaky tests on firefox browsers (#6411) Sherry
29+
- CI tag flaky tests (#6405) Sherry
30+
- lexical-reactlexical-playground sync draggable block plugin to www (#6397) Sherry
31+
- Fix transpile nodesOfType (#6408) Gerard Rovira
32+
- Restore registerRootListener null call (#6403) Gerard Rovira
33+
- Add ref to contenteditable (#6381) Gerard Rovira
34+
- lexical Feature registerMutationListener should initialize its existing nodes (#6357) Bob Ippolito
35+
- lexical Feature Implement Editor.read and EditorState.read with editor argument (#6347) Bob Ippolito
36+
- lexical Bug Fix more accurate line break pasting (#6395) Sherry
37+
- lexical-html Feature support pasting empty block nodes (#6392) Sherry
38+
- lexical-playgroundlexical-table Bug Fix Fix Shift Down Arrow regression for table sequence. (#6393) Serey Roth
39+
- Gallery Add option to filter plugins based on tags (#6391) Sahejkm
40+
- Fix clear rootElement on React (#6389) Gerard Rovira
41+
- CI tag flaky tests (#6388) Sherry
42+
- Prettier sort test attributes (#6384) Gerard Rovira
43+
- Fix integrity test (#6385) Gerard Rovira
44+
- LexicalGallery Convert files to follow typescript (#6383) Sahejkm
45+
- lexicallexical-playground Bug Fix Create line break on paste of content type texthtml (#6376) Janna Wieneke
46+
- examples Chore Use named export of LexicalErrorBoundary in the examples (#6378) Bob Ippolito
47+
- LexicalGallery Add option to search examples in the gallery (#6379) Sahejkm
48+
- lexical-playground Fix Table Hover Actions Noclick Bug (#6375) Ivaylo Pavlov
49+
- Lexical Fix flow errors on syncing build to meta intern (#6373) Sahejkm
50+
- rexical-react Bug Fix Headings inside collapsible sections are lost when Table of Contents is re-initialized (#6371) Katsia
51+
- LexicalGallery Add description in the card, option to render preview card at run time if no image (#6372) Sahejkm
52+
- Lexical Create initial Gallery View with Emoji Plugin Example (#6369) Sahejkm
53+
- CI run e2e flaky tests in a separate job (#6365) Sherry
54+
- Make placeholder accessible (#6171) Gerard Rovira
55+
- lexical-playground Table Hover Action Buttons (#6355) Ivaylo Pavlov
56+
- lexicallexical-table Chore Replace references to old GridSelection with TableSelection (#6366) Bob Ippolito
57+
- lexical-markdown Feature Change Dont trim whitespaces on convertFromMarkdownString (#6360) Sherry
58+
- v0.16.1 (#6363) Ivaylo Pavlov
59+
- v0.16.1 Lexical GitHub Actions Bot
60+
161
## v0.16.1 (2024-07-01)
262

363
- lexical-playgroundlexical-poll Bug Fix Fixes undefined context inside Poll add option (#6361) Roman Lyubimov

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

0 commit comments

Comments
 (0)