- @tiptap/core@2.0.0-beta.141
 - @tiptap/extension-color@2.0.0-beta.9
 - @tiptap/html@2.0.0-beta.140
 - @tiptap/starter-kit@2.0.0-beta.143
This commit is contained in:
Philipp Kühn 2021-11-22 10:17:43 +01:00
parent eb88567a74
commit 53f6ad47bc
8 changed files with 49 additions and 6 deletions

View File

@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-beta.141](https://github.com/ueberdosis/tiptap/compare/@tiptap/core@2.0.0-beta.140...@tiptap/core@2.0.0-beta.141) (2021-11-22)
### Bug Fixes
* improve default gapcursor position when surrounded by margins ([cd14731](https://github.com/ueberdosis/tiptap/commit/cd14731612b40fc460675e9fbaaab1618ac02abf))
### Features
* add 'all' option to focus command, fix [#2181](https://github.com/ueberdosis/tiptap/issues/2181) ([3c571c9](https://github.com/ueberdosis/tiptap/commit/3c571c9a3f2fdbf1d70e9efa27294fbdf6bcbd3c))
# [2.0.0-beta.140](https://github.com/ueberdosis/tiptap/compare/@tiptap/core@2.0.0-beta.139...@tiptap/core@2.0.0-beta.140) (2021-11-18) # [2.0.0-beta.140](https://github.com/ueberdosis/tiptap/compare/@tiptap/core@2.0.0-beta.139...@tiptap/core@2.0.0-beta.140) (2021-11-18)

View File

@ -1,7 +1,7 @@
{ {
"name": "@tiptap/core", "name": "@tiptap/core",
"description": "headless rich text editor", "description": "headless rich text editor",
"version": "2.0.0-beta.140", "version": "2.0.0-beta.141",
"homepage": "https://tiptap.dev", "homepage": "https://tiptap.dev",
"keywords": [ "keywords": [
"tiptap", "tiptap",

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-beta.9](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-color@2.0.0-beta.8...@tiptap/extension-color@2.0.0-beta.9) (2021-11-22)
### Bug Fixes
* Export type ColorOptions ([#2180](https://github.com/ueberdosis/tiptap/issues/2180)) ([bc242fe](https://github.com/ueberdosis/tiptap/commit/bc242fe3424300f934b623477158aa8f837cf1c7))
# [2.0.0-beta.8](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-color@2.0.0-beta.7...@tiptap/extension-color@2.0.0-beta.8) (2021-11-09) # [2.0.0-beta.8](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-color@2.0.0-beta.7...@tiptap/extension-color@2.0.0-beta.8) (2021-11-09)
**Note:** Version bump only for package @tiptap/extension-color **Note:** Version bump only for package @tiptap/extension-color

View File

@ -1,7 +1,7 @@
{ {
"name": "@tiptap/extension-color", "name": "@tiptap/extension-color",
"description": "text color extension for tiptap", "description": "text color extension for tiptap",
"version": "2.0.0-beta.8", "version": "2.0.0-beta.9",
"homepage": "https://tiptap.dev", "homepage": "https://tiptap.dev",
"keywords": [ "keywords": [
"tiptap", "tiptap",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-beta.140](https://github.com/ueberdosis/tiptap/compare/@tiptap/html@2.0.0-beta.139...@tiptap/html@2.0.0-beta.140) (2021-11-22)
**Note:** Version bump only for package @tiptap/html
# [2.0.0-beta.139](https://github.com/ueberdosis/tiptap/compare/@tiptap/html@2.0.0-beta.138...@tiptap/html@2.0.0-beta.139) (2021-11-18) # [2.0.0-beta.139](https://github.com/ueberdosis/tiptap/compare/@tiptap/html@2.0.0-beta.138...@tiptap/html@2.0.0-beta.139) (2021-11-18)
**Note:** Version bump only for package @tiptap/html **Note:** Version bump only for package @tiptap/html

View File

@ -1,7 +1,7 @@
{ {
"name": "@tiptap/html", "name": "@tiptap/html",
"description": "utility package to render tiptap JSON as HTML", "description": "utility package to render tiptap JSON as HTML",
"version": "2.0.0-beta.139", "version": "2.0.0-beta.140",
"homepage": "https://tiptap.dev", "homepage": "https://tiptap.dev",
"keywords": [ "keywords": [
"tiptap", "tiptap",
@ -21,7 +21,7 @@
"dist" "dist"
], ],
"dependencies": { "dependencies": {
"@tiptap/core": "^2.0.0-beta.140", "@tiptap/core": "^2.0.0-beta.141",
"prosemirror-model": "^1.15.0", "prosemirror-model": "^1.15.0",
"zeed-dom": "^0.9.16" "zeed-dom": "^0.9.16"
}, },

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-beta.143](https://github.com/ueberdosis/tiptap/compare/@tiptap/starter-kit@2.0.0-beta.142...@tiptap/starter-kit@2.0.0-beta.143) (2021-11-22)
**Note:** Version bump only for package @tiptap/starter-kit
# [2.0.0-beta.142](https://github.com/ueberdosis/tiptap/compare/@tiptap/starter-kit@2.0.0-beta.141...@tiptap/starter-kit@2.0.0-beta.142) (2021-11-18) # [2.0.0-beta.142](https://github.com/ueberdosis/tiptap/compare/@tiptap/starter-kit@2.0.0-beta.141...@tiptap/starter-kit@2.0.0-beta.142) (2021-11-18)
**Note:** Version bump only for package @tiptap/starter-kit **Note:** Version bump only for package @tiptap/starter-kit

View File

@ -1,7 +1,7 @@
{ {
"name": "@tiptap/starter-kit", "name": "@tiptap/starter-kit",
"description": "starter kit for tiptap", "description": "starter kit for tiptap",
"version": "2.0.0-beta.142", "version": "2.0.0-beta.143",
"homepage": "https://tiptap.dev", "homepage": "https://tiptap.dev",
"keywords": [ "keywords": [
"tiptap", "tiptap",
@ -21,7 +21,7 @@
"dist" "dist"
], ],
"dependencies": { "dependencies": {
"@tiptap/core": "^2.0.0-beta.140", "@tiptap/core": "^2.0.0-beta.141",
"@tiptap/extension-blockquote": "^2.0.0-beta.24", "@tiptap/extension-blockquote": "^2.0.0-beta.24",
"@tiptap/extension-bold": "^2.0.0-beta.24", "@tiptap/extension-bold": "^2.0.0-beta.24",
"@tiptap/extension-bullet-list": "^2.0.0-beta.23", "@tiptap/extension-bullet-list": "^2.0.0-beta.23",