diff --git a/.changeset/add-layout-options.md b/.changeset/add-layout-options.md deleted file mode 100644 index 1b3b86b0..00000000 --- a/.changeset/add-layout-options.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -"hyperbook": minor -"@hyperbook/markdown": minor -"@hyperbook/types": minor ---- - -Add page layout options with automatic iframe detection - -- Added three layout options: default, wide, and standalone -- Wide layout provides full-width content with drawer-only navigation, ideal for tables, galleries, and code examples -- Standalone layout displays content only (no header, sidebar, footer) for clean iframe embedding -- Standalone mode can be activated via frontmatter (`layout: standalone`), URL parameter (`?standalone=true`), or automatic iframe detection -- Automatically hides TOC toggle and QR code buttons when in standalone mode -- Zero-configuration embedding: pages automatically switch to standalone mode when embedded in iframes -- Added comprehensive documentation in Advanced Features section with usage examples and demos -- All changes are backward compatible with existing pages diff --git a/packages/hyperbook/CHANGELOG.md b/packages/hyperbook/CHANGELOG.md index 4df8b124..4abd64b9 100644 --- a/packages/hyperbook/CHANGELOG.md +++ b/packages/hyperbook/CHANGELOG.md @@ -1,5 +1,20 @@ # hyperbook +## 0.61.0 + +### Minor Changes + +- [#1017](https://github.com/openpatch/hyperbook/pull/1017) [`ae25b60`](https://github.com/openpatch/hyperbook/commit/ae25b605ab2b4945c62d4d9e83955af57fa50b00) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - Add page layout options with automatic iframe detection + + - Added three layout options: default, wide, and standalone + - Wide layout provides full-width content with drawer-only navigation, ideal for tables, galleries, and code examples + - Standalone layout displays content only (no header, sidebar, footer) for clean iframe embedding + - Standalone mode can be activated via frontmatter (`layout: standalone`), URL parameter (`?standalone=true`), or automatic iframe detection + - Automatically hides TOC toggle and QR code buttons when in standalone mode + - Zero-configuration embedding: pages automatically switch to standalone mode when embedded in iframes + - Added comprehensive documentation in Advanced Features section with usage examples and demos + - All changes are backward compatible with existing pages + ## 0.60.0 ### Minor Changes diff --git a/packages/hyperbook/package.json b/packages/hyperbook/package.json index be99d50d..7caca24e 100644 --- a/packages/hyperbook/package.json +++ b/packages/hyperbook/package.json @@ -1,6 +1,6 @@ { "name": "hyperbook", - "version": "0.60.0", + "version": "0.61.0", "author": "Mike Barkmin", "homepage": "https://github.com/openpatch/hyperbook#readme", "license": "MIT", diff --git a/packages/markdown/CHANGELOG.md b/packages/markdown/CHANGELOG.md index c83495e4..4d8d1c7f 100644 --- a/packages/markdown/CHANGELOG.md +++ b/packages/markdown/CHANGELOG.md @@ -1,5 +1,20 @@ # @hyperbook/markdown +## 0.36.0 + +### Minor Changes + +- [#1017](https://github.com/openpatch/hyperbook/pull/1017) [`ae25b60`](https://github.com/openpatch/hyperbook/commit/ae25b605ab2b4945c62d4d9e83955af57fa50b00) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - Add page layout options with automatic iframe detection + + - Added three layout options: default, wide, and standalone + - Wide layout provides full-width content with drawer-only navigation, ideal for tables, galleries, and code examples + - Standalone layout displays content only (no header, sidebar, footer) for clean iframe embedding + - Standalone mode can be activated via frontmatter (`layout: standalone`), URL parameter (`?standalone=true`), or automatic iframe detection + - Automatically hides TOC toggle and QR code buttons when in standalone mode + - Zero-configuration embedding: pages automatically switch to standalone mode when embedded in iframes + - Added comprehensive documentation in Advanced Features section with usage examples and demos + - All changes are backward compatible with existing pages + ## 0.35.1 ### Patch Changes diff --git a/packages/markdown/package.json b/packages/markdown/package.json index 5136ad25..213f1034 100644 --- a/packages/markdown/package.json +++ b/packages/markdown/package.json @@ -1,6 +1,6 @@ { "name": "@hyperbook/markdown", - "version": "0.35.1", + "version": "0.36.0", "author": "Mike Barkmin", "homepage": "https://github.com/openpatch/hyperbook#readme", "license": "MIT", diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 529e1115..4cf700ff 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/CHANGELOG.md @@ -1,5 +1,20 @@ # @hyperbook/types +## 0.17.0 + +### Minor Changes + +- [#1017](https://github.com/openpatch/hyperbook/pull/1017) [`ae25b60`](https://github.com/openpatch/hyperbook/commit/ae25b605ab2b4945c62d4d9e83955af57fa50b00) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - Add page layout options with automatic iframe detection + + - Added three layout options: default, wide, and standalone + - Wide layout provides full-width content with drawer-only navigation, ideal for tables, galleries, and code examples + - Standalone layout displays content only (no header, sidebar, footer) for clean iframe embedding + - Standalone mode can be activated via frontmatter (`layout: standalone`), URL parameter (`?standalone=true`), or automatic iframe detection + - Automatically hides TOC toggle and QR code buttons when in standalone mode + - Zero-configuration embedding: pages automatically switch to standalone mode when embedded in iframes + - Added comprehensive documentation in Advanced Features section with usage examples and demos + - All changes are backward compatible with existing pages + ## 0.16.0 ### Minor Changes diff --git a/packages/types/package.json b/packages/types/package.json index a15e373f..f2c6fb95 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@hyperbook/types", - "version": "0.16.0", + "version": "0.17.0", "author": "Mike Barkmin", "homepage": "https://github.com/openpatch/hyperbook#readme", "license": "MIT", diff --git a/platforms/vscode/CHANGELOG.md b/platforms/vscode/CHANGELOG.md index db4c369c..15f66573 100644 --- a/platforms/vscode/CHANGELOG.md +++ b/platforms/vscode/CHANGELOG.md @@ -1,5 +1,13 @@ # @hyperbook/vscode-extension +## 0.38.2 + +### Patch Changes + +- Updated dependencies [[`ae25b60`](https://github.com/openpatch/hyperbook/commit/ae25b605ab2b4945c62d4d9e83955af57fa50b00)]: + - @hyperbook/markdown@0.36.0 + - @hyperbook/fs@0.20.0 + ## 0.38.1 ### Patch Changes diff --git a/platforms/vscode/package.json b/platforms/vscode/package.json index 848f2ed2..0ff3837a 100644 --- a/platforms/vscode/package.json +++ b/platforms/vscode/package.json @@ -11,7 +11,7 @@ }, "homepage": "https://hyperbook.openpatch.org", "main": "./out/extension.js", - "version": "0.38.1", + "version": "0.38.2", "engines": { "vscode": "^1.71.0" },