@byline/admin 3.3.1 → 3.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/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@byline/admin",
|
|
3
3
|
"private": false,
|
|
4
4
|
"license": "MPL-2.0",
|
|
5
|
-
"version": "3.
|
|
5
|
+
"version": "3.4.0",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": ">=20.9.0"
|
|
8
8
|
},
|
|
@@ -146,10 +146,10 @@
|
|
|
146
146
|
"uuid": "^14.0.0",
|
|
147
147
|
"zod": "^4.4.3",
|
|
148
148
|
"zod-form-data": "^3.0.1",
|
|
149
|
-
"@byline/auth": "3.
|
|
150
|
-
"@byline/core": "3.
|
|
151
|
-
"@byline/i18n": "3.
|
|
152
|
-
"@byline/ui": "3.
|
|
149
|
+
"@byline/auth": "3.4.0",
|
|
150
|
+
"@byline/core": "3.4.0",
|
|
151
|
+
"@byline/i18n": "3.4.0",
|
|
152
|
+
"@byline/ui": "3.4.0"
|
|
153
153
|
},
|
|
154
154
|
"peerDependencies": {
|
|
155
155
|
"react": "^19.0.0",
|
|
@@ -233,6 +233,11 @@
|
|
|
233
233
|
flex-direction: column;
|
|
234
234
|
gap: var(--spacing-20);
|
|
235
235
|
max-width: 100%;
|
|
236
|
+
/* Grid item default min-width:auto refuses to shrink below its content's
|
|
237
|
+
* min-content size — a horizontally-scrolling code block (white-space:pre)
|
|
238
|
+
* has a huge min-content, which would blow this column across the sidebar.
|
|
239
|
+
* min-width:0 lets the column respect its minmax(0,1fr) track instead. */
|
|
240
|
+
min-width: 0;
|
|
236
241
|
margin-bottom: 2.75rem;
|
|
237
242
|
}
|
|
238
243
|
|