From 28a282b4ee48cc9ce200d0c33764a07e8c1dccf0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 7 Aug 2026 08:43:01 +0000 Subject: [PATCH] chore: version packages --- .changeset/code-and-table-ux.md | 7 ------- .changeset/editor-bugfixes.md | 7 ------- .changeset/multi-select-toolbar.md | 7 ------- .changeset/toggle-headings.md | 7 ------- .changeset/web-bookmark-block.md | 7 ------- examples/react-demo/package.json | 2 +- examples/vue-demo/package.json | 2 +- packages/core/CHANGELOG.md | 13 +++++++++++++ packages/core/package.json | 2 +- packages/react/CHANGELOG.md | 19 +++++++++++++++++++ packages/react/package.json | 4 ++-- packages/vue/CHANGELOG.md | 19 +++++++++++++++++++ packages/vue/package.json | 4 ++-- site/package.json | 2 +- 14 files changed, 59 insertions(+), 43 deletions(-) delete mode 100644 .changeset/code-and-table-ux.md delete mode 100644 .changeset/editor-bugfixes.md delete mode 100644 .changeset/multi-select-toolbar.md delete mode 100644 .changeset/toggle-headings.md delete mode 100644 .changeset/web-bookmark-block.md diff --git a/.changeset/code-and-table-ux.md b/.changeset/code-and-table-ux.md deleted file mode 100644 index 5e6bb87..0000000 --- a/.changeset/code-and-table-ux.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@xproeditor/core": minor -"@xproeditor/react": minor -"@xproeditor/vue": minor ---- - -Polish code-block chrome (language control, soft-wrap via a `wrap` prop) and table editing UX (sizing, cell controls, style panel), with matching styles in both adapters. diff --git a/.changeset/editor-bugfixes.md b/.changeset/editor-bugfixes.md deleted file mode 100644 index 0990773..0000000 --- a/.changeset/editor-bugfixes.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@xproeditor/core": patch -"@xproeditor/react": patch -"@xproeditor/vue": patch ---- - -Fix undo/redo when focus is inside a contenteditable or field, Select All staging across blocks, applying marks over a multi-block selection, link editing edge cases, bookmark URL re-edit, table width persistence, and dark-mode token gaps in editor chrome. diff --git a/.changeset/multi-select-toolbar.md b/.changeset/multi-select-toolbar.md deleted file mode 100644 index 3f2d3d6..0000000 --- a/.changeset/multi-select-toolbar.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@xproeditor/core": minor -"@xproeditor/react": minor -"@xproeditor/vue": minor ---- - -Improve multi-block selection: a shared formatting popover when several blocks are selected, richer block context menus, and core helpers for cross-block text ranges, marks, staged Select All, and document-level undo/redo shortcuts. diff --git a/.changeset/toggle-headings.md b/.changeset/toggle-headings.md deleted file mode 100644 index 87f5480..0000000 --- a/.changeset/toggle-headings.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@xproeditor/core": minor -"@xproeditor/react": minor -"@xproeditor/vue": minor ---- - -Add collapsible **toggle headings** (`toggle_heading_1`–`3`) alongside toggle lists, with slash / turn-into support and helpers for subtree clone, remove, and collapsed visibility filtering. diff --git a/.changeset/web-bookmark-block.md b/.changeset/web-bookmark-block.md deleted file mode 100644 index 9449467..0000000 --- a/.changeset/web-bookmark-block.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@xproeditor/core": minor -"@xproeditor/react": minor -"@xproeditor/vue": minor ---- - -Add a **web bookmark** block with link-preview cards (title, description, favicon, image). Hosts can optionally pass `fetchBookmarkMeta` to hydrate Open Graph metadata when a URL is pasted or edited. diff --git a/examples/react-demo/package.json b/examples/react-demo/package.json index e7a5662..39465e8 100644 --- a/examples/react-demo/package.json +++ b/examples/react-demo/package.json @@ -9,7 +9,7 @@ "preview": "vite preview" }, "dependencies": { - "@xproeditor/react": "0.4.0", + "@xproeditor/react": "0.5.0", "react": "^18.3.1", "react-dom": "^18.3.1" }, diff --git a/examples/vue-demo/package.json b/examples/vue-demo/package.json index bf6dc05..ec176c0 100644 --- a/examples/vue-demo/package.json +++ b/examples/vue-demo/package.json @@ -9,7 +9,7 @@ "preview": "vite preview" }, "dependencies": { - "@xproeditor/vue": "0.4.0", + "@xproeditor/vue": "0.5.0", "vue": "^3.5.13" }, "devDependencies": { diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 9e6cf42..03a8a7b 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,18 @@ # @xproeditor/core +## 0.4.0 + +### Minor Changes + +- 77f7845: Polish code-block chrome (language control, soft-wrap via a `wrap` prop) and table editing UX (sizing, cell controls, style panel), with matching styles in both adapters. +- 77f7845: Improve multi-block selection: a shared formatting popover when several blocks are selected, richer block context menus, and core helpers for cross-block text ranges, marks, staged Select All, and document-level undo/redo shortcuts. +- 77f7845: Add collapsible **toggle headings** (`toggle_heading_1`–`3`) alongside toggle lists, with slash / turn-into support and helpers for subtree clone, remove, and collapsed visibility filtering. +- 77f7845: Add a **web bookmark** block with link-preview cards (title, description, favicon, image). Hosts can optionally pass `fetchBookmarkMeta` to hydrate Open Graph metadata when a URL is pasted or edited. + +### Patch Changes + +- 77f7845: Fix undo/redo when focus is inside a contenteditable or field, Select All staging across blocks, applying marks over a multi-block selection, link editing edge cases, bookmark URL re-edit, table width persistence, and dark-mode token gaps in editor chrome. + ## 0.3.0 ### Minor Changes diff --git a/packages/core/package.json b/packages/core/package.json index 2ce9bbd..5955800 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@xproeditor/core", - "version": "0.3.0", + "version": "0.4.0", "description": "Framework-agnostic engine for the XProEditor Notion-like block editor: block model, selection, clipboard, HTML conversion, and table operations.", "type": "module", "license": "MIT", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 3b06e41..e67b293 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,24 @@ # @xproeditor/react +## 0.5.0 + +### Minor Changes + +- 77f7845: Polish code-block chrome (language control, soft-wrap via a `wrap` prop) and table editing UX (sizing, cell controls, style panel), with matching styles in both adapters. +- 77f7845: Improve multi-block selection: a shared formatting popover when several blocks are selected, richer block context menus, and core helpers for cross-block text ranges, marks, staged Select All, and document-level undo/redo shortcuts. +- 77f7845: Add collapsible **toggle headings** (`toggle_heading_1`–`3`) alongside toggle lists, with slash / turn-into support and helpers for subtree clone, remove, and collapsed visibility filtering. +- 77f7845: Add a **web bookmark** block with link-preview cards (title, description, favicon, image). Hosts can optionally pass `fetchBookmarkMeta` to hydrate Open Graph metadata when a URL is pasted or edited. + +### Patch Changes + +- 77f7845: Fix undo/redo when focus is inside a contenteditable or field, Select All staging across blocks, applying marks over a multi-block selection, link editing edge cases, bookmark URL re-edit, table width persistence, and dark-mode token gaps in editor chrome. +- Updated dependencies [77f7845] +- Updated dependencies [77f7845] +- Updated dependencies [77f7845] +- Updated dependencies [77f7845] +- Updated dependencies [77f7845] + - @xproeditor/core@0.4.0 + ## 0.4.0 ### Minor Changes diff --git a/packages/react/package.json b/packages/react/package.json index f342c94..340db0f 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@xproeditor/react", - "version": "0.4.0", + "version": "0.5.0", "description": "Notion-like block editor for React — supports a sticky format toolbar and/or a floating Notion-like bubble toolbar + slash menu.", "type": "module", "license": "MIT", @@ -49,7 +49,7 @@ "react-dom": "^18.0.0 || ^19.0.0" }, "dependencies": { - "@xproeditor/core": "0.3.0", + "@xproeditor/core": "0.4.0", "highlight.js": "^11.10.0", "lucide-react": "^0.469.0" }, diff --git a/packages/vue/CHANGELOG.md b/packages/vue/CHANGELOG.md index f3b3f40..55d6f62 100644 --- a/packages/vue/CHANGELOG.md +++ b/packages/vue/CHANGELOG.md @@ -1,5 +1,24 @@ # @xproeditor/vue +## 0.5.0 + +### Minor Changes + +- 77f7845: Polish code-block chrome (language control, soft-wrap via a `wrap` prop) and table editing UX (sizing, cell controls, style panel), with matching styles in both adapters. +- 77f7845: Improve multi-block selection: a shared formatting popover when several blocks are selected, richer block context menus, and core helpers for cross-block text ranges, marks, staged Select All, and document-level undo/redo shortcuts. +- 77f7845: Add collapsible **toggle headings** (`toggle_heading_1`–`3`) alongside toggle lists, with slash / turn-into support and helpers for subtree clone, remove, and collapsed visibility filtering. +- 77f7845: Add a **web bookmark** block with link-preview cards (title, description, favicon, image). Hosts can optionally pass `fetchBookmarkMeta` to hydrate Open Graph metadata when a URL is pasted or edited. + +### Patch Changes + +- 77f7845: Fix undo/redo when focus is inside a contenteditable or field, Select All staging across blocks, applying marks over a multi-block selection, link editing edge cases, bookmark URL re-edit, table width persistence, and dark-mode token gaps in editor chrome. +- Updated dependencies [77f7845] +- Updated dependencies [77f7845] +- Updated dependencies [77f7845] +- Updated dependencies [77f7845] +- Updated dependencies [77f7845] + - @xproeditor/core@0.4.0 + ## 0.4.0 ### Minor Changes diff --git a/packages/vue/package.json b/packages/vue/package.json index 029391f..cbfb3ad 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -1,6 +1,6 @@ { "name": "@xproeditor/vue", - "version": "0.4.0", + "version": "0.5.0", "description": "Notion-like block editor for Vue 3 — supports a sticky format toolbar and/or a floating Notion-like bubble toolbar + slash menu.", "type": "module", "license": "MIT", @@ -48,7 +48,7 @@ "vue": "^3.4.0" }, "dependencies": { - "@xproeditor/core": "0.3.0", + "@xproeditor/core": "0.4.0", "highlight.js": "^11.10.0", "lucide-vue-next": "^0.469.0" }, diff --git a/site/package.json b/site/package.json index 5f65df2..bb8eeef 100644 --- a/site/package.json +++ b/site/package.json @@ -10,7 +10,7 @@ "typecheck": "tsc --noEmit" }, "dependencies": { - "@xproeditor/react": "0.4.0", + "@xproeditor/react": "0.5.0", "lucide-react": "^0.469.0", "react": "^18.3.1", "react-dom": "^18.3.1"