Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.20.2 #6888

Closed
wants to merge 1 commit into from
Closed

v0.20.2 #6888

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,45 @@
## v0.20.2 (2024-11-29)

- lexical-playground Fix CSS property (#6886) Ivaylo Pavlov
- v0.20.1 (#6887) Sherry
- lexical-table Bug Fix Fix scrollable table exportDOM (#6884) Bob Ippolito
- lexical-table Bug Fix Fix table tab navigation (#6880) Bob Ippolito
- lexical-playground Feature Highlight special strings with format (#6860) C.
- lexical-playground Fix Hidden comment button on narrow screens or vertical monitors (#6871) Oluwasanya Olaoluwa
- lexical-table Bug Fix Fix left arrow key handling for table selection (#6875) Bob Ippolito
- positionNodeOnRange fixes (#6873) Gerard Rovira
- Add SelectionAlwaysOnDisplay plugin (#6872) Gerard Rovira
- Allow passing params to run-all (#6874) Gerard Rovira
- lexical-playground Bug Fix Preserve the selection using the link editor from a table (#6865) Bob Ippolito
- lexical-playground Bug Fix autocomplete format before and after insertion (#6845) Bedru Umer
- lexical-utils Bug Fix Add feature detection to calculateZoomLevel (#6864) Bob Ippolito
- Add Documentation for RootNodes semantic and use case (#6869) C.
- lexical-selection Bug Fix Wrong selection type in setBlocksType (#6867) Simon
- lexical-table Bug Fix get table-cell background selection color from a class (#6658) Hamza
- lexical-table Bug Fix Resolve table selection issue when the mouse crosses over a portal (#6834) Bob Ippolito
- Lexical Chore Update default skipInitialization to false for registerMutationListener (#6857) Fadekemi Adebayo
- tests npm upgrade cross-spawn (#6856) Sherry
- Feature Deprecate nodesOfType function (#6855) Sachin Mahato
- Lexical Bug Fix backspace bug when deleting nodes with canInsertTextAfter set to false (#6268) Dani Lauzurica
- lexical-link Test Appending inline element nodes to ListNode (#6826) Fadekemi Adebayo
- Chore npm upgrade cross-spawn (#6848) Sherry
- Table Action Menu - fix UI issue with Merge Cells item (#6830) Syed Umar Anis
- lexical-utils Bug Fix Add missing Flow type declarations (#6841) Hadi Hamid
- lexical-react Fix(lexical-react) ContentEditable props type rename (#6837) (Ivan)
- lexical-link Test Removing link from node(children) (#6817) Oluwasanya Olaoluwa
- lexical-table Bug Fix Fix down arrow key handling in TableObserver (#6839) Bob Ippolito
- Prevent initial value fn to be called on rerender (#6835) Maksim Horbachevsky
- Link flow types (#6833) Gerard Rovira
- lexical-examples Chore Add DOMExportOutputMap type to the exportMap (#6827) Ajaezo Kingsley
- lexicallexical-table Feature Scrollable tables with experimental getDOMSlot API (#6759) Bob Ippolito
- lexical-rich-textlexical-plain-text workaround for Korean IME issue on iOS (#6819) wnhlee
- Fix Aria attributes for ContentEditable are ignored (#6814) Oluwasanya Olaoluwa
- Mention nodes shouldnt be spellcheckd ) (#6788) Sevki
- lexical-list Bug Fix Handle appending inline element nodes in ListNode.append (#6791) Aman Harwara
- lexical-mark Bug Fix Stop MarkNode ids array deep copy in clone (#6810) Ebad
- v0.20.0 (#6809) Bob Ippolito
- v0.20.0 Lexical GitHub Actions Bot

## v0.20.1 (2024-11-29)

- lexical-table Bug Fix Fix table tab navigation (#6880) Bob Ippolito
Expand Down
6 changes: 3 additions & 3 deletions examples/react-plain-text/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "@lexical/react-plain-text-example",
"private": true,
"version": "0.20.1",
"version": "0.20.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@lexical/react": "0.20.1",
"lexical": "0.20.1",
"@lexical/react": "0.20.2",
"lexical": "0.20.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
8 changes: 4 additions & 4 deletions examples/react-rich-collab/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@lexical/react-rich-collab-example",
"private": true,
"version": "0.20.1",
"version": "0.20.2",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -12,9 +12,9 @@
"server:webrtc": "cross-env HOST=localhost PORT=1235 npx y-webrtc"
},
"dependencies": {
"@lexical/react": "0.20.1",
"@lexical/yjs": "0.20.1",
"lexical": "0.20.1",
"@lexical/react": "0.20.2",
"@lexical/yjs": "0.20.2",
"lexical": "0.20.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"y-webrtc": "^10.3.0",
Expand Down
6 changes: 3 additions & 3 deletions examples/react-rich/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "@lexical/react-rich-example",
"private": true,
"version": "0.20.1",
"version": "0.20.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@lexical/react": "0.20.1",
"lexical": "0.20.1",
"@lexical/react": "0.20.2",
"lexical": "0.20.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
6 changes: 3 additions & 3 deletions examples/react-table/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "@lexical/react-table-example",
"private": true,
"version": "0.20.1",
"version": "0.20.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@lexical/react": "0.20.1",
"lexical": "0.20.1",
"@lexical/react": "0.20.2",
"lexical": "0.20.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
12 changes: 6 additions & 6 deletions examples/vanilla-js-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"name": "@lexical/vanilla-js-plugin-example",
"private": true,
"version": "0.20.1",
"version": "0.20.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@lexical/dragon": "0.20.1",
"@lexical/history": "0.20.1",
"@lexical/rich-text": "0.20.1",
"@lexical/utils": "0.20.1",
"@lexical/dragon": "0.20.2",
"@lexical/history": "0.20.2",
"@lexical/rich-text": "0.20.2",
"@lexical/utils": "0.20.2",
"emoji-datasource-facebook": "15.1.2",
"lexical": "0.20.1"
"lexical": "0.20.2"
},
"devDependencies": {
"typescript": "^5.2.2",
Expand Down
12 changes: 6 additions & 6 deletions examples/vanilla-js/package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "@lexical/vanilla-js-example",
"private": true,
"version": "0.20.1",
"version": "0.20.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@lexical/dragon": "0.20.1",
"@lexical/history": "0.20.1",
"@lexical/rich-text": "0.20.1",
"@lexical/utils": "0.20.1",
"lexical": "0.20.1"
"@lexical/dragon": "0.20.2",
"@lexical/history": "0.20.2",
"@lexical/rich-text": "0.20.2",
"@lexical/utils": "0.20.2",
"lexical": "0.20.2"
},
"devDependencies": {
"typescript": "^5.2.2",
Expand Down
Loading
Loading