@falcondev-oss/nuxt-layers-base 0.43.0 → 0.43.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.
@@ -173,14 +173,10 @@ export default defineSetupComponent(
173
173
  : []),
174
174
 
175
175
  <div class="flex min-w-0 flex-col items-start gap-0.5">
176
- <div
177
- class={[
178
- 'flex min-w-0 items-center gap-1.5',
179
- // the breadcrumb sets the column's width and the title
180
- // truncates into it, instead of the other way round
181
- props.navbar?.breadcrumb && 'w-0 min-w-full',
182
- ]}
183
- >
176
+ {/* title and breadcrumb both count towards the column's
177
+ width — it is as wide as the wider of the two, and each
178
+ truncates on its own once the column hits `max-w-1/2` */}
179
+ <div class="flex max-w-full min-w-0 items-center gap-1.5">
184
180
  <h1 class="text-highlighted truncate font-semibold">
185
181
  {slots['navbar-title']?.() ?? props.navbar?.title}
186
182
  </h1>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@falcondev-oss/nuxt-layers-base",
3
3
  "type": "module",
4
- "version": "0.43.0",
4
+ "version": "0.43.1",
5
5
  "description": "Nuxt layer with lots of useful helpers and @nuxt/ui components",
6
6
  "license": "MIT",
7
7
  "repository": {