@iyulab/canopy-page 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ Notable changes to canopy-page. The format follows
|
|
|
7
7
|
The `settings.json` contract is what consuming projects plan their upgrades around, so changes
|
|
8
8
|
to it — its fields, its validation, and what the checks reject — are what this file is about.
|
|
9
9
|
|
|
10
|
+
## [0.3.0] — 2026-08-08
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **Upgraded to canopy 0.3.0.** A site that sets `title`, `logo`, or `home` now gets a full-width
|
|
15
|
+
top bar above the sidebar/main layout on its next build, rather than that content living in the
|
|
16
|
+
sidebar's own header — no `settings.json` field changed, the new layout applies automatically.
|
|
17
|
+
See [canopy's changelog](https://github.com/iyulab/canopy/blob/main/CHANGELOG.md#030--2026-08-08)
|
|
18
|
+
for the underlying markup and CSS selector changes, relevant to a site with custom CSS layered
|
|
19
|
+
over the default stylesheet.
|
|
20
|
+
|
|
10
21
|
## [0.2.0] — 2026-08-07
|
|
11
22
|
|
|
12
23
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iyulab/canopy-page",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Authoring pipeline for documentation sites: one settings file, integrity checks, and a build.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -49,6 +49,6 @@
|
|
|
49
49
|
"vitest": "^4.1.9"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@iyulab/canopy": "^0.
|
|
52
|
+
"@iyulab/canopy": "^0.3.0"
|
|
53
53
|
}
|
|
54
54
|
}
|