@byline/admin 3.3.1 → 3.4.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.
@@ -169,6 +169,7 @@
169
169
  :is(.content-_P5cdJ, .byline-form-content) {
170
170
  gap: var(--spacing-20);
171
171
  flex-direction: column;
172
+ min-width: 0;
172
173
  max-width: 100%;
173
174
  margin-bottom: 2.75rem;
174
175
  display: flex;
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.3.1",
5
+ "version": "3.4.1",
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.3.1",
150
- "@byline/core": "3.3.1",
151
- "@byline/i18n": "3.3.1",
152
- "@byline/ui": "3.3.1"
149
+ "@byline/auth": "3.4.1",
150
+ "@byline/i18n": "3.4.1",
151
+ "@byline/core": "3.4.1",
152
+ "@byline/ui": "3.4.1"
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