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.5.0 #3059

Merged
merged 1 commit into from
Sep 23, 2022
Merged

v0.5.0 #3059

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
68 changes: 68 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,71 @@
## v0.5.0 (2022-09-23)

- feat(lexical-playground): draggable block (#2860) 子瞻 Luci
- Dispatch CAN_{REDO,UNDO}_COMMAND after clearing history (#3056) Wilberto Morales
- Fix Table Deletion (#3053) Tyler Bainbridge
- Remove previousText check (#3052) Tyler Bainbridge
- Improve table selection handling when there are no siblings (#3051) Tyler Bainbridge
- Fix initialEditorState flow (#3048) Gerard Rovira
- Add Selection View in DevTools (#2955) Will
- Fix (Known) Table Bugs (#3000) Tyler Bainbridge
- Revise Vite compression (#3036) Gerard Rovira
- Fix composition text boundary for canInsertTextAfter (#3045) Gerard Rovira
- Fix nested mark creation when wrapping forward selection (#3027) Ken Powers
- Add position property to menus & disable floating link toolbar for autolink nodes (#3035) Tyler Bainbridge
- Update collab docs (#3033) Maksim Horbachevsky
- feat(lexical-react): add initialEditorState for LexicalCollaborationPlugin (#3011) Dragoș Străinu
- [0.5] Remove deprecated initialEditorState from OnChangePlugin (#3031) Gerard Rovira
- [0.5] Remove initialEditorState from Plain/RichTextPlugin (#3032) Gerard Rovira
- Make -> isEditable mandatory (#3030) Gerard Rovira
- Add optional cursors container prop for a better positioning in scrollable layouts (#3025) Maksim Horbachevsky
- [0.5] Treat undefined selection the same as null in (#2948) Acy Watson
- [0.5] -> (#3020) Gerard Rovira
- getStyleObjectFromCSS to compute when cache miss (#3024) Gerard Rovira
- [0.5] Revise usage of root node vs shadow (#3022) Gerard Rovira
- Fix code highlighter race condition on transform (#3014) Gerard Rovira
- : Selection-agnostic node insertion with Grid/Node selection support (#2638) Gerard Rovira
- add docs (#3019) Acy Watson
- [0.5] Remove INERT mode (#2421) Gerard Rovira
- [0.5] Correct definition of isTopLevel; introduce DecoratorNode->isInline, ElementNode->isShadowRoot (#3009) Gerard Rovira
- Revert md changes from #3001 (#3015) Maksim Horbachevsky
- add install step (#3008) Acy Watson
- Revise RnageSelection dirty toggle (#3007) Dominic Gannaway
- Trim content for newlines only (#3006) Maksim Horbachevsky
- Fix flow type (#3005) Gerard Rovira
- Fix bad TypeaheadMenuPlugin prod build (#3003) Gerard Rovira
- Capture pendingDecorators after garbage collecting detached decorators (#2999) Adrien Wald
- ElementNode -> isTopLevel() (#3001) Gerard Rovira
- Rm unused helpers from older markdown code (#2998) Maksim Horbachevsky
- Add DEPRECATED prefix to Grid APIs (#2966) Dominic Gannaway
- [Automated Releases] Add logging and dry run to release script (#2986) Acy Watson
- Fix www exports (#2994) Maksim Horbachevsky
- Fix WWW import rewrite for React (#2996) Gerard Rovira
- Fix insert column header bug (#2995) Tyler Bainbridge
- docs: loadContent clarification (#2989) ly3xqhl8g9
- docs: Fix URL of rich-text and plain-text (#2985) kimulaco
- Fixed exportDOM for paragraph node (#2981) Hafiz
- remove ff merge from release (#2984) Acy Watson
- fix versioning for ff merge (#2983) Acy Watson
- merge from main Acy Watson
- merge from main Acy Watson
- add back config Acy Watson
- add ssh key Acy Watson
- push config (#2979) Acy Watson
- Clean up redundant newlines during pasting (#2969) Maksim Horbachevsky
- config (#2977) Acy Watson
- Improve docs around the React plugins page (#2976) Dominic Gannaway
- install (#2972) Acy Watson
- Update collab errors, related cleanup (#2971) Maksim Horbachevsky
- Automated releases (#2949) Acy Watson
- Add empty comment in front of 'export' in a bundled file (#2970) Maksim Horbachevsky
- Fix bugs with isEditable (#2967) Dominic Gannaway
- allow escaped markdown within TextFormatTransformer (#2964) Christian Ratz
- Fix link breaking when formatting on (#2954) Patrick McCullough
- fix typo on read-mode / edit-mode page (#2962) Christian Ratz
- fix (#2957) Acy Watson
- Add table cell menu back (#2958) Tyler Bainbridge
- fix (#2956) Acy Watson

## 0.4.1 (September 5, 2022)

- Fix breaking bug for `isEditable` mode in editor initialization (#2945) Tim Laubert
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.4.1",
"version": "0.5.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.4.1",
"version": "0.5.0",
"main": "LexicalClipboard.js",
"peerDependencies": {
"lexical": "0.4.1"
"lexical": "0.5.0"
},
"dependencies": {
"@lexical/utils": "0.4.1",
"@lexical/list": "0.4.1",
"@lexical/selection": "0.4.1",
"@lexical/html": "0.4.1"
"@lexical/utils": "0.5.0",
"@lexical/list": "0.5.0",
"@lexical/selection": "0.5.0",
"@lexical/html": "0.5.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.4.1",
"version": "0.5.0",
"main": "LexicalCode.js",
"peerDependencies": {
"lexical": "0.4.1"
"lexical": "0.5.0"
},
"dependencies": {
"@lexical/utils": "0.4.1",
"@lexical/utils": "0.5.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.4.1",
"version": "0.5.0",
"main": "LexicalDragon.js",
"peerDependencies": {
"lexical": "0.4.1"
"lexical": "0.5.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.4.1",
"version": "0.5.0",
"main": "LexicalFile.js",
"peerDependencies": {
"lexical": "0.4.1"
"lexical": "0.5.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.4.1",
"version": "0.5.0",
"main": "LexicalHashtag.js",
"peerDependencies": {
"lexical": "0.4.1"
"lexical": "0.5.0"
},
"dependencies": {
"@lexical/utils": "0.4.1"
"@lexical/utils": "0.5.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.4.1",
"version": "0.5.0",
"main": "LexicalHeadless.js",
"peerDependencies": {
"lexical": "0.4.1"
"lexical": "0.5.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.4.1",
"version": "0.5.0",
"main": "LexicalHistory.js",
"peerDependencies": {
"lexical": "0.4.1"
"lexical": "0.5.0"
},
"dependencies": {
"@lexical/utils": "0.4.1"
"@lexical/utils": "0.5.0"
},
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/lexical-html/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@
"html"
],
"license": "MIT",
"version": "0.4.1",
"version": "0.5.0",
"main": "LexicalHtml.js",
"peerDependencies": {
"lexical": "0.4.1"
"lexical": "0.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/facebook/lexical",
"directory": "packages/lexical-html"
},
"dependencies": {
"@lexical/selection": "0.4.1"
"@lexical/selection": "0.5.0"
}
}
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.4.1",
"version": "0.5.0",
"main": "LexicalLink.js",
"peerDependencies": {
"lexical": "0.4.1"
"lexical": "0.5.0"
},
"dependencies": {
"@lexical/utils": "0.4.1"
"@lexical/utils": "0.5.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.4.1",
"version": "0.5.0",
"main": "LexicalList.js",
"peerDependencies": {
"lexical": "0.4.1"
"lexical": "0.5.0"
},
"dependencies": {
"@lexical/utils": "0.4.1"
"@lexical/utils": "0.5.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.4.1",
"version": "0.5.0",
"main": "LexicalMark.js",
"peerDependencies": {
"lexical": "0.4.1"
"lexical": "0.5.0"
},
"dependencies": {
"@lexical/utils": "0.4.1"
"@lexical/utils": "0.5.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.4.1",
"version": "0.5.0",
"main": "LexicalMarkdown.js",
"peerDependencies": {
"lexical": "0.4.1"
"lexical": "0.5.0"
},
"dependencies": {
"@lexical/utils": "0.4.1",
"@lexical/code": "0.4.1",
"@lexical/text": "0.4.1",
"@lexical/rich-text": "0.4.1",
"@lexical/list": "0.4.1",
"@lexical/link": "0.4.1"
"@lexical/utils": "0.5.0",
"@lexical/code": "0.5.0",
"@lexical/text": "0.5.0",
"@lexical/rich-text": "0.5.0",
"@lexical/list": "0.5.0",
"@lexical/link": "0.5.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.4.1",
"version": "0.5.0",
"main": "LexicalOffset.js",
"peerDependencies": {
"lexical": "0.4.1"
"lexical": "0.5.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.4.1",
"version": "0.5.0",
"main": "LexicalOverflow.js",
"peerDependencies": {
"lexical": "0.4.1"
"lexical": "0.5.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.4.1",
"version": "0.5.0",
"main": "LexicalPlainText.js",
"peerDependencies": {
"lexical": "0.4.1",
"@lexical/utils": "0.4.1",
"@lexical/selection": "0.4.1",
"@lexical/clipboard": "0.4.1"
"lexical": "0.5.0",
"@lexical/utils": "0.5.0",
"@lexical/selection": "0.5.0",
"@lexical/clipboard": "0.5.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.4.1",
"version": "0.5.0",
"private": true,
"scripts": {
"dev": "vite --host",
Expand All @@ -11,22 +11,22 @@
},
"dependencies": {
"@excalidraw/excalidraw": "0.11.0",
"@lexical/clipboard": "0.4.1",
"@lexical/code": "0.4.1",
"@lexical/file": "0.4.1",
"@lexical/hashtag": "0.4.1",
"@lexical/link": "0.4.1",
"@lexical/list": "0.4.1",
"@lexical/mark": "0.4.1",
"@lexical/overflow": "0.4.1",
"@lexical/plain-text": "0.4.1",
"@lexical/react": "0.4.1",
"@lexical/rich-text": "0.4.1",
"@lexical/selection": "0.4.1",
"@lexical/table": "0.4.1",
"@lexical/utils": "0.4.1",
"@lexical/clipboard": "0.5.0",
"@lexical/code": "0.5.0",
"@lexical/file": "0.5.0",
"@lexical/hashtag": "0.5.0",
"@lexical/link": "0.5.0",
"@lexical/list": "0.5.0",
"@lexical/mark": "0.5.0",
"@lexical/overflow": "0.5.0",
"@lexical/plain-text": "0.5.0",
"@lexical/react": "0.5.0",
"@lexical/rich-text": "0.5.0",
"@lexical/selection": "0.5.0",
"@lexical/table": "0.5.0",
"@lexical/utils": "0.5.0",
"katex": "^0.15.2",
"lexical": "0.4.1",
"lexical": "0.5.0",
"link-preview-generator": "1.0.7",
"lodash-es": "^4.17.21",
"prettier": "^2.3.2",
Expand Down
Loading