@trebired/frontend 12.3.1 → 12.3.2

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 CHANGED
@@ -4,6 +4,16 @@ All notable changes to `@trebired/frontend` will be documented here.
4
4
 
5
5
  This project follows semantic versioning once published.
6
6
 
7
+ ## 12.3.2
8
+
9
+ ### Fixed
10
+
11
+ - Added the missing `grow` utility rule. `primitiveStackClassName({ grow: true })` and its
12
+ siblings emit a `grow` class, but no stylesheet ever defined it, so every layout relying
13
+ on it silently kept `flex-grow: 0`. The editor viewer was the visible case: its content
14
+ pane collapsed to its intrinsic width and left the rest of the row empty. Every other
15
+ utility in that set (`no-shrink`, `no-stretch`, `fit-content`, ...) was already defined.
16
+
7
17
  ## 12.3.1
8
18
 
9
19
  ### Fixed
@@ -82,6 +82,11 @@ $frontend-hor-alignments: (
82
82
  flex-shrink: 0;
83
83
  }
84
84
 
85
+ .grow {
86
+ flex-grow: 1;
87
+ min-width: 0;
88
+ }
89
+
85
90
  @media (max-width: 900px) {
86
91
  .inline-row.mobile-wrap {
87
92
  flex-wrap: wrap;
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  }
9
9
  },
10
10
  "name": "@trebired/frontend",
11
- "version": "12.3.1",
11
+ "version": "12.3.2",
12
12
  "description": "Generic browser runtime systems for Trebired frontend packages and applications.",
13
13
  "type": "module",
14
14
  "private": false,