@iyulab/modern-app 0.19.6 → 0.19.7

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.19.7] - 2026-09-16
4
+
5
+ ### Changed
6
+
7
+ - **Follow `@iyulab/router` 0.14.0, which declares the outlet's own box model.** Until now the
8
+ route outlet the shell inserts had no `display` declaration, so it fell back to the default
9
+ `inline` — a box that stays in layout but does not pass a height down. The shell gives its
10
+ content area the full height, and that chain stopped at the outlet: a route screen asking for
11
+ `height: 100%` resolved against the shell instead, or not at all. Router 0.14.0 declares
12
+ `:where(u-outlet) { display: block; height: 100%; }`, and this release widens the dependency
13
+ range so the fix actually reaches apps that install the shell rather than the router directly
14
+ (a `^0.13.0` range does not admit 0.14.0 — semver treats a 0.x minor as a major).
15
+ Override either declaration from your own stylesheet without `!important`; the rule carries
16
+ zero specificity.
17
+
3
18
  ## [0.19.6] - 2026-09-15
4
19
 
5
20
  ### Fixed
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@iyulab/modern-app",
3
3
  "description": "web-framework by iyulab based on lit-element",
4
- "version": "0.19.6",
4
+ "version": "0.19.7",
5
5
  "keywords": [
6
6
  "iyulab",
7
7
  "web-framework",
@@ -60,7 +60,7 @@
60
60
  "typecheck": "tsc --noEmit"
61
61
  },
62
62
  "dependencies": {
63
- "@iyulab/router": "^0.13.0",
63
+ "@iyulab/router": "^0.14.0",
64
64
  "i18next": "^26.3.6",
65
65
  "lit": "^3.3.3"
66
66
  },