@n-uf/hypr-tiling 26.7.0 → 26.7.1
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 +18 -0
- package/README.md +3 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,24 @@ This package uses calendar-aligned versioning (`YY.M.R`), which cannot signal a
|
|
|
6
6
|
SemVer "major" bump. **Read the per-release notes below for breaking changes** —
|
|
7
7
|
the version number alone does not flag them.
|
|
8
8
|
|
|
9
|
+
## 26.7.1 — npm README absolute URLs + tsconfig cleanup
|
|
10
|
+
|
|
11
|
+
A docs/tooling patch — no runtime or public-API changes. (Calendar-aligned
|
|
12
|
+
versioning `YY.M.R`; the trailing `.1` is the release counter within `26.7`.)
|
|
13
|
+
|
|
14
|
+
- **npm README now uses absolute URLs.** The README rendered on
|
|
15
|
+
[npmjs.org](https://www.npmjs.com/package/@n-uf/hypr-tiling) resolves asset
|
|
16
|
+
and doc references against npm's own CDN, not the GitHub repo, so the
|
|
17
|
+
previous repo-relative paths broke: the logo image 404'd and the
|
|
18
|
+
`etc/hypr-tiling.api.md` API-report links went nowhere. Asset references now
|
|
19
|
+
point at absolute `raw.githubusercontent.com` URLs and doc links at
|
|
20
|
+
`github.com/n-uf/hypr-tiling/blob/main/...`, so the logo renders and the
|
|
21
|
+
API-report links resolve on the npm package page.
|
|
22
|
+
- **Removed an invalid `ignoreDeprecations: "6.0"` value** from the
|
|
23
|
+
`apps/web` and `packages/showcase` tsconfigs. That value is not a legal
|
|
24
|
+
`ignoreDeprecations` target under TypeScript 6.0.3 and was rejected by the
|
|
25
|
+
compiler; dropping it lets those workspaces typecheck cleanly.
|
|
26
|
+
|
|
9
27
|
## 26.7.0 — initial public release
|
|
10
28
|
|
|
11
29
|
First published release of `@n-uf/hypr-tiling`, a dynamic tiling layout engine
|
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<h1 align="center">
|
|
2
|
-
<img src="
|
|
2
|
+
<img src="https://raw.githubusercontent.com/n-uf/hypr-tiling/main/assets/hypr-tiling-logo-transparent.png" alt="hypr-tiling" width="48" align="center" />
|
|
3
3
|
@n-uf/hypr-tiling
|
|
4
4
|
</h1>
|
|
5
5
|
<p align="center">Dynamic tiling for React</p>
|
|
@@ -16,7 +16,7 @@ your app keeps strict, controlled ownership of the layout state.
|
|
|
16
16
|
|
|
17
17
|
- Documentation homepage: <https://hypr-tiling.n-uf.com/>
|
|
18
18
|
- Interactive showcase route: <https://hypr-tiling.n-uf.com/showcase>
|
|
19
|
-
- API report index: [`etc/hypr-tiling.api.md`](etc/hypr-tiling.api.md)
|
|
19
|
+
- API report index: [`etc/hypr-tiling.api.md`](https://github.com/n-uf/hypr-tiling/blob/main/packages/hypr-tiling/etc/hypr-tiling.api.md)
|
|
20
20
|
- Repository issues: <https://github.com/n-uf/hypr-tiling/issues>
|
|
21
21
|
|
|
22
22
|
## Install
|
|
@@ -152,7 +152,7 @@ Other layout-tree helpers are exported for advanced/internal use, but the
|
|
|
152
152
|
reducers above are the stable, documented surface for application code.
|
|
153
153
|
|
|
154
154
|
For complete generated API signatures, see
|
|
155
|
-
[`etc/hypr-tiling.api.md`](etc/hypr-tiling.api.md).
|
|
155
|
+
[`etc/hypr-tiling.api.md`](https://github.com/n-uf/hypr-tiling/blob/main/packages/hypr-tiling/etc/hypr-tiling.api.md).
|
|
156
156
|
|
|
157
157
|
## Features
|
|
158
158
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@n-uf/hypr-tiling",
|
|
3
|
-
"version": "26.7.
|
|
3
|
+
"version": "26.7.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Dynamic tiling for React: a recursive split-tree renderer for drag/drop, resizable, keyboard-controlled panes — inspired by Hyprland.",
|
|
6
6
|
"keywords": [
|
|
@@ -91,6 +91,6 @@
|
|
|
91
91
|
"react-dom": "^19.2.7",
|
|
92
92
|
"ts-jest": "^29.4.5",
|
|
93
93
|
"tsup": "^8.5.0",
|
|
94
|
-
"typescript": "^
|
|
94
|
+
"typescript": "^6.0.3"
|
|
95
95
|
}
|
|
96
96
|
}
|