@trebired/frontend 1.1.0 → 1.2.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 +5 -0
- package/dist/layout/styles/index.scss +2 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,11 @@ This project follows semantic versioning once published.
|
|
|
6
6
|
|
|
7
7
|
## Unreleased
|
|
8
8
|
|
|
9
|
+
## 1.2.0
|
|
10
|
+
|
|
11
|
+
- Fixed package-owned layout roots so `.tbf-layout` and `[data-tbf-layout-root]` always fill their parent width without app-side utility workarounds.
|
|
12
|
+
- Added verification that config-bundled Fontsource assets do not emit duplicated `/assets/assets/` or `/../assets/` URL references.
|
|
13
|
+
|
|
9
14
|
## 1.1.0
|
|
10
15
|
|
|
11
16
|
- Moved the remaining generic app CSS surface into package-owned config CSS: base document reset, config-driven Fontsource font-face generation, global tokens, canvas background, spacing/margin helpers, wrapping row helpers, vertical alignment helpers, and generated spacing utilities.
|
|
@@ -44,6 +44,8 @@ body[data-tbf-sidebar-right-minimized="true"] {
|
|
|
44
44
|
var(--tbf-layout-sidebar-left-active-width, 0px)
|
|
45
45
|
minmax(0, 1fr)
|
|
46
46
|
var(--tbf-layout-sidebar-right-active-width, 0px);
|
|
47
|
+
width: 100%;
|
|
48
|
+
max-width: 100%;
|
|
47
49
|
flex: 1 1 auto;
|
|
48
50
|
min-height: calc(100dvh - var(--tbf-layout-top-offset, 0px));
|
|
49
51
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trebired/frontend",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Generic browser runtime systems for Trebired frontend packages and applications.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"simple-icons": "^16.28.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@trebired/bundler": "^4.
|
|
59
|
+
"@trebired/bundler": "^4.5.1",
|
|
60
60
|
"@trebired/code-discipline": "^4.10.1",
|
|
61
61
|
"@types/bun": "^1.3.14",
|
|
62
62
|
"@types/node": "^24.13.3",
|