Skip to content

Commit

Permalink
v0.14.0 (#5728)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivailop7 authored Mar 18, 2024
1 parent f5a15bd commit f642472
Show file tree
Hide file tree
Showing 28 changed files with 174 additions and 112 deletions.
62 changes: 62 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,65 @@
## v0.14.0 (2024-03-17)

- Fix height and width parsing in ImportDOM for ExcalidrawNode (#5721) Ivaylo Pavlov
- ImportDOM and ExportDOM for LayoutContainerNode (#5722) Ivaylo Pavlov
- Fix dont call importDOM methods more than once (#5726) Georgii Dolzhykov
- Add test for multiple leading # characters in a hashtag (#5723) wnhlee
- Fix to count tabs as list indentation on importing markdown (#5706) wnhlee
- Update CharacterLimitPlugin to support custom renderer (#5715) wnhlee
- docs Added links to API docs for respective packages (#5719) Vlad Fedosov
- docs Creating a Plugin page example (#5717) Vlad Fedosov
- Add code snippets for ClearEditorPlugin and MarkdownShortcutPlugin (#5711) Nick
- Send click event in read-only editor (#5714) Ivaylo Pavlov
- Fix deletion issues when using Chromium Android (#5644) Aman Harwara
- Export table row height in JSON (#5696) Ivaylo Pavlov
- Fix Bulleting a Node Selection (#5699) Ivaylo Pavlov
- fix Typo in the collaboration nodes (#5702) Pranav Bakre
- Fix endless renders with editorRef callback (#5701) wnhlee
- style fix broken eslint check of #5625 (#5694) yf-yang
- Fix forward word deletion destructing element nodes (#5625) Ivaylo Pavlov
- fix(tables) Add missing paragraph node when copying empty cells from external resources (#5670) Simon Pasquereau
- chore(docs) Changed stackblitz.com links to point at this repo (#5685) Vlad Fedosov
- docs Added conceptual view of the Lexical Core Design (#5677) Vlad Fedosov
- Add support for grid selection in text alignment. (#5652) Serey Roth
- docs Added reasoning on why State is necessary (#5678) Vlad Fedosov
- docs Improved Getting Started with React guide (#5676) Vlad Fedosov
- docs add a tip about discrete state update (#5664) Micha Dzienisiewicz
- fix Fix E2E tests in Safari (Webkit) (#5672) Vlad Fedosov
- Configure ESLint enable curly rule, fix on save (#5666) Georgii Dolzhykov
- docs Interactive Vanilla JS example (#5668) Vlad Fedosov
- support multiple windows (#5070) Rob Figueiredo
- docs Added visualization of the Lexical modular architecture (#5667) Vlad Fedosov
- Refactor simplify getFirstDescendant and getLastDescendant (#5665) Georgii Dolzhykov
- Unbullet one list item not the whole list (#5621) Ivaylo Pavlov
- Preserve bullet item indent on newline (#5578) Ivaylo Pavlov
- fix unify class name splittingfiltering with normalizeClassNames (#5649) Bob Ippolito
- Move to native UUID (#5622) Ivaylo Pavlov
- Escape Layout Plugin (#5626) Ivaylo Pavlov
- 0.14 Remove unused canExtractContents (#5628) Ivaylo Pavlov
- Revert Fix hashtag regex blocking transform to heading (#5636) Acy Watson
- Fix hashtag regex blocking transform to heading (#5376) wnhlee
- Fix shiftarrow down selection for tables in sequence. (#5617) Serey Roth
- Revert Fixed position for lexical menu (#5602) (#5614) Gerard Rovira
- fix disable markdown shortcuts for collaboration (#5591) junhsss
- fix Improve performance of updateChildrenListItemValue (#5590) Bob Ippolito
- Fixed position for lexical menu (#5602) Ebad
- Bug Right Align in Toolbar for RTL direction shows Left Align Icon (#5561) Muhammad Fahad
- fix hide Firefoxs text size buttons (#5588) Martin
- IME Input via CDP with latest Playwright (#5584) Ivaylo Pavlov
- Fix list selection when first node followed by an element node (#5583) Ivaylo Pavlov
- fix update docs example (#5586) James Pulec
- Fix Double Deletion on Backspace (#5580) Ivaylo Pavlov
- Fix Poll Node (#5579) Ivaylo Pavlov
- Fix computeTableMap flow (#5574) Gerard Rovira
- Update react documentation (#5568) Pavel Shermayster
- Edit Link modal fix (#5551) Harry Sanders
- Add lexicalhtml to docs (#5557) wnhlee
- Prevent file img conversion (#5563) Gerard Rovira
- Fix add class to elements exported from CodeNode (#5558) wnhlee
- v0.13.1 (#5556) Gerard Rovira
- Fix Flow getCharacterOffsets (#5555) Gerard Rovira
- v0.13.1 Lexical GitHub Actions Bot

## v0.13.1 (2024-01-27)

- Update InlineImageNode.tsx (#5552) lvvl
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@lexical/monorepo",
"description": "Lexical is an extensible text editor framework that provides excellent reliability, accessibility and performance.",
"version": "0.13.1",
"version": "0.14.0",
"license": "MIT",
"private": true,
"workspaces": [
Expand Down
12 changes: 6 additions & 6 deletions packages/lexical-clipboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
"paste"
],
"license": "MIT",
"version": "0.13.1",
"version": "0.14.0",
"main": "LexicalClipboard.js",
"peerDependencies": {
"lexical": "0.13.1"
"lexical": "0.14.0"
},
"dependencies": {
"@lexical/utils": "0.13.1",
"@lexical/list": "0.13.1",
"@lexical/selection": "0.13.1",
"@lexical/html": "0.13.1"
"@lexical/utils": "0.14.0",
"@lexical/list": "0.14.0",
"@lexical/selection": "0.14.0",
"@lexical/html": "0.14.0"
},
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/lexical-code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"code"
],
"license": "MIT",
"version": "0.13.1",
"version": "0.14.0",
"main": "LexicalCode.js",
"peerDependencies": {
"lexical": "0.13.1"
"lexical": "0.14.0"
},
"dependencies": {
"@lexical/utils": "0.13.1",
"@lexical/utils": "0.14.0",
"prismjs": "^1.27.0"
},
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions packages/lexical-dragon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
"accessibility"
],
"license": "MIT",
"version": "0.13.1",
"version": "0.14.0",
"main": "LexicalDragon.js",
"peerDependencies": {
"lexical": "0.13.1"
"lexical": "0.14.0"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/lexical-file/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
"export"
],
"license": "MIT",
"version": "0.13.1",
"version": "0.14.0",
"main": "LexicalFile.js",
"peerDependencies": {
"lexical": "0.13.1"
"lexical": "0.14.0"
},
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/lexical-hashtag/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"hashtag"
],
"license": "MIT",
"version": "0.13.1",
"version": "0.14.0",
"main": "LexicalHashtag.js",
"peerDependencies": {
"lexical": "0.13.1"
"lexical": "0.14.0"
},
"dependencies": {
"@lexical/utils": "0.13.1"
"@lexical/utils": "0.14.0"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/lexical-headless/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"headless"
],
"license": "MIT",
"version": "0.13.1",
"version": "0.14.0",
"main": "LexicalHeadless.js",
"peerDependencies": {
"lexical": "0.13.1"
"lexical": "0.14.0"
},
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/lexical-history/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"history"
],
"license": "MIT",
"version": "0.13.1",
"version": "0.14.0",
"main": "LexicalHistory.js",
"peerDependencies": {
"lexical": "0.13.1"
"lexical": "0.14.0"
},
"dependencies": {
"@lexical/utils": "0.13.1"
"@lexical/utils": "0.14.0"
},
"repository": {
"type": "git",
Expand Down
8 changes: 4 additions & 4 deletions packages/lexical-html/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@
"html"
],
"license": "MIT",
"version": "0.13.1",
"version": "0.14.0",
"main": "LexicalHtml.js",
"peerDependencies": {
"lexical": "0.13.1"
"lexical": "0.14.0"
},
"repository": {
"type": "git",
"url": "https://github.com/facebook/lexical",
"directory": "packages/lexical-html"
},
"dependencies": {
"@lexical/selection": "0.13.1",
"@lexical/utils": "0.13.1"
"@lexical/selection": "0.14.0",
"@lexical/utils": "0.14.0"
},
"module": "LexicalHtml.esm.js",
"sideEffects": false
Expand Down
6 changes: 3 additions & 3 deletions packages/lexical-link/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"link"
],
"license": "MIT",
"version": "0.13.1",
"version": "0.14.0",
"main": "LexicalLink.js",
"peerDependencies": {
"lexical": "0.13.1"
"lexical": "0.14.0"
},
"dependencies": {
"@lexical/utils": "0.13.1"
"@lexical/utils": "0.14.0"
},
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/lexical-list/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"list"
],
"license": "MIT",
"version": "0.13.1",
"version": "0.14.0",
"main": "LexicalList.js",
"peerDependencies": {
"lexical": "0.13.1"
"lexical": "0.14.0"
},
"dependencies": {
"@lexical/utils": "0.13.1"
"@lexical/utils": "0.14.0"
},
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/lexical-mark/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"mark"
],
"license": "MIT",
"version": "0.13.1",
"version": "0.14.0",
"main": "LexicalMark.js",
"peerDependencies": {
"lexical": "0.13.1"
"lexical": "0.14.0"
},
"dependencies": {
"@lexical/utils": "0.13.1"
"@lexical/utils": "0.14.0"
},
"repository": {
"type": "git",
Expand Down
16 changes: 8 additions & 8 deletions packages/lexical-markdown/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@
"markdown"
],
"license": "MIT",
"version": "0.13.1",
"version": "0.14.0",
"main": "LexicalMarkdown.js",
"peerDependencies": {
"lexical": "0.13.1"
"lexical": "0.14.0"
},
"dependencies": {
"@lexical/utils": "0.13.1",
"@lexical/code": "0.13.1",
"@lexical/text": "0.13.1",
"@lexical/rich-text": "0.13.1",
"@lexical/list": "0.13.1",
"@lexical/link": "0.13.1"
"@lexical/utils": "0.14.0",
"@lexical/code": "0.14.0",
"@lexical/text": "0.14.0",
"@lexical/rich-text": "0.14.0",
"@lexical/list": "0.14.0",
"@lexical/link": "0.14.0"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/lexical-offset/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"offset"
],
"license": "MIT",
"version": "0.13.1",
"version": "0.14.0",
"main": "LexicalOffset.js",
"peerDependencies": {
"lexical": "0.13.1"
"lexical": "0.14.0"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/lexical-overflow/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"overflow"
],
"license": "MIT",
"version": "0.13.1",
"version": "0.14.0",
"main": "LexicalOverflow.js",
"peerDependencies": {
"lexical": "0.13.1"
"lexical": "0.14.0"
},
"repository": {
"type": "git",
Expand Down
10 changes: 5 additions & 5 deletions packages/lexical-plain-text/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
"plain-text"
],
"license": "MIT",
"version": "0.13.1",
"version": "0.14.0",
"main": "LexicalPlainText.js",
"peerDependencies": {
"lexical": "0.13.1",
"@lexical/utils": "0.13.1",
"@lexical/selection": "0.13.1",
"@lexical/clipboard": "0.13.1"
"lexical": "0.14.0",
"@lexical/utils": "0.14.0",
"@lexical/selection": "0.14.0",
"@lexical/clipboard": "0.14.0"
},
"repository": {
"type": "git",
Expand Down
32 changes: 16 additions & 16 deletions packages/lexical-playground/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lexical-playground",
"version": "0.13.1",
"version": "0.14.0",
"private": true,
"scripts": {
"dev": "vite --host",
Expand All @@ -11,22 +11,22 @@
},
"dependencies": {
"@excalidraw/excalidraw": "^0.17.0",
"@lexical/clipboard": "0.13.1",
"@lexical/code": "0.13.1",
"@lexical/file": "0.13.1",
"@lexical/hashtag": "0.13.1",
"@lexical/link": "0.13.1",
"@lexical/list": "0.13.1",
"@lexical/mark": "0.13.1",
"@lexical/overflow": "0.13.1",
"@lexical/plain-text": "0.13.1",
"@lexical/react": "0.13.1",
"@lexical/rich-text": "0.13.1",
"@lexical/selection": "0.13.1",
"@lexical/table": "0.13.1",
"@lexical/utils": "0.13.1",
"@lexical/clipboard": "0.14.0",
"@lexical/code": "0.14.0",
"@lexical/file": "0.14.0",
"@lexical/hashtag": "0.14.0",
"@lexical/link": "0.14.0",
"@lexical/list": "0.14.0",
"@lexical/mark": "0.14.0",
"@lexical/overflow": "0.14.0",
"@lexical/plain-text": "0.14.0",
"@lexical/react": "0.14.0",
"@lexical/rich-text": "0.14.0",
"@lexical/selection": "0.14.0",
"@lexical/table": "0.14.0",
"@lexical/utils": "0.14.0",
"katex": "^0.15.2",
"lexical": "0.13.1",
"lexical": "0.14.0",
"lodash-es": "^4.17.21",
"prettier": "^2.3.2",
"react": "^18.2.0",
Expand Down
Loading

0 comments on commit f642472

Please sign in to comment.