@iyulab/canopy-page 0.2.0 → 0.4.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 +23 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,29 @@ 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.4.0] — 2026-08-08
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **Upgraded to canopy 0.4.0.** A site's on-page outline now stays pinned to the viewport while
|
|
15
|
+
scrolling, matching the sidebar, and every page fits a narrow screen without scrolling
|
|
16
|
+
horizontally — both fixes apply automatically on the next build, no `settings.json` field
|
|
17
|
+
changed. Canopy also gained `--search-index`, which canopy-page does not call yet — a site
|
|
18
|
+
built with this version carries no search index or search UI. See
|
|
19
|
+
[canopy's changelog](https://github.com/iyulab/canopy/blob/main/CHANGELOG.md#040--2026-08-08)
|
|
20
|
+
for the full set of changes.
|
|
21
|
+
|
|
22
|
+
## [0.3.0] — 2026-08-08
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
|
|
26
|
+
- **Upgraded to canopy 0.3.0.** A site that sets `title`, `logo`, or `home` now gets a full-width
|
|
27
|
+
top bar above the sidebar/main layout on its next build, rather than that content living in the
|
|
28
|
+
sidebar's own header — no `settings.json` field changed, the new layout applies automatically.
|
|
29
|
+
See [canopy's changelog](https://github.com/iyulab/canopy/blob/main/CHANGELOG.md#030--2026-08-08)
|
|
30
|
+
for the underlying markup and CSS selector changes, relevant to a site with custom CSS layered
|
|
31
|
+
over the default stylesheet.
|
|
32
|
+
|
|
10
33
|
## [0.2.0] — 2026-08-07
|
|
11
34
|
|
|
12
35
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iyulab/canopy-page",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.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.4.0"
|
|
53
53
|
}
|
|
54
54
|
}
|