Skip to content

Commit

Permalink
v0.14.3 (#5816)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivailop7 authored Apr 3, 2024
1 parent a08fed7 commit 25ed236
Show file tree
Hide file tree
Showing 31 changed files with 367 additions and 320 deletions.
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
## v0.14.3 (2024-04-03)

- fix removed overwrite of copyright (#5811) Sven ani
- remove duplicate list merging (#5810) Sherry
- fix Table selection stuck (#5807) Alex Reznik
- #4618 combine list if next sibling is list node (#5803) Sherry
- docs clarify readupdate language in intro, readme editor state (#5809) Bob Ippolito
- chore Removed invalid GH action config (#5808) Vlad Fedosov
- feat(lexicaldevtools) Added basic extension scaffolding (#5747) Vlad Fedosov
- Improve table selection and navigation (#5767) Serey Roth
- Fix typo in docs (#5805) John Flockton
- fix avoid auto-embed menu overflowing off right side of page (#5804) wangqi
- Fix #5543 insertText() was inserting Text as child of table node instead of root before tablerow resulting in table node not getting deleted (#5799) Sahejkm
- Editable immediately when adding link from Floating toolbar (#5801) Ivaylo Pavlov
- Quick fix for #5754 Numbered list does not increment in ImageNode caption #5754 (#5798) Sherry
- Node fork modules moduleResolution bundler (#5774) Bob Ippolito
- Node-aware Context Menu Items (#5791) Ivaylo Pavlov
- Fix #5720 update the resolvedOffset correctly on image selection and drag (#5795) Sahejkm
- fix Address more flaky collab tests (#5788) Bob Ippolito
- fix Update iframes to prevent focus stealing (#5784) Bob Ippolito
- fix restore playground esm build (#5781) Bob Ippolito
- fix Double input of text when composing at TextNode boundaries (#5762) matsuyama-k1
- lexicalplayground Moved Vite config to TS and removed code duplication (#5744) Vlad Fedosov
- Fix selection started from inside of the table (#5766) Alex Reznik
- Respect CSS zoom (#5772) Ebad
- Revert fixed #5233 firefox related issue for backspace deletion wh (#5776) Gerard Rovira
- Fix clear formatting in table (#5765) Alex Reznik
- Generate default entry in package.json exports last use .mjs for esm modules (#5737) Bob Ippolito
- Update build script to exclude WWW from ESM modules (#5753) John Flockton
- chore(lexicaltext) Split into several files for better readability and to simplify further expansion (#5718) Vlad Fedosov
- fixed #5233 firefox related issue for backspace deletion where focus offset is of type element instead of text (#5734) Sahejkm
- Update the publish script channel (#5736) Ivaylo Pavlov
- v0.14.2 (#5735) Ivaylo Pavlov
- v0.14.2 Lexical GitHub Actions Bot

## v0.14.2 (2024-03-18)

- Fix order of exports in lexical-react (#5732) Brian Birtles
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.14.2",
"version": "0.14.3",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@lexical/react": "0.14.2",
"lexical": "0.14.2",
"@lexical/react": "0.14.3",
"lexical": "0.14.3",
"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.14.2",
"version": "0.14.3",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@lexical/dragon": "0.14.2",
"@lexical/history": "0.14.2",
"@lexical/rich-text": "0.14.2",
"@lexical/utils": "0.14.2",
"@lexical/dragon": "0.14.3",
"@lexical/history": "0.14.3",
"@lexical/rich-text": "0.14.3",
"@lexical/utils": "0.14.3",
"emoji-datasource-facebook": "15.1.2",
"lexical": "0.14.2"
"lexical": "0.14.3"
},
"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.14.2",
"version": "0.14.3",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@lexical/dragon": "0.14.2",
"@lexical/history": "0.14.2",
"@lexical/rich-text": "0.14.2",
"@lexical/utils": "0.14.2",
"lexical": "0.14.2"
"@lexical/dragon": "0.14.3",
"@lexical/history": "0.14.3",
"@lexical/rich-text": "0.14.3",
"@lexical/utils": "0.14.3",
"lexical": "0.14.3"
},
"devDependencies": {
"typescript": "^5.2.2",
Expand Down
Loading

0 comments on commit 25ed236

Please sign in to comment.