@falcondev-oss/nuxt-layers-base 0.42.3 → 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
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
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.
|
|
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": {
|
|
@@ -26,20 +26,43 @@
|
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"@falcondev-oss/form-core": ">=0.23.5",
|
|
28
28
|
"@falcondev-oss/form-vue": ">=0.23.5",
|
|
29
|
+
"@falcondev-oss/trpc-vue-query": ">=0.6.1",
|
|
29
30
|
"@internationalized/date": ">=3.12.1",
|
|
30
31
|
"@nuxt/ui": ">=4.9.0",
|
|
32
|
+
"@tanstack/vue-query": ">=5.102.1",
|
|
33
|
+
"@trpc/client": ">=11.18.0",
|
|
34
|
+
"@trpc/server": ">=11.18.0",
|
|
35
|
+
"reka-ui": ">=2.10.3",
|
|
31
36
|
"tailwind-variants": ">=3.2.2",
|
|
32
|
-
"
|
|
37
|
+
"tailwindcss": ">=4.3.3",
|
|
38
|
+
"vue": ">=3.5.40",
|
|
39
|
+
"vue-router": ">=5.2.0"
|
|
40
|
+
},
|
|
41
|
+
"peerDependenciesMeta": {
|
|
42
|
+
"@falcondev-oss/trpc-vue-query": {
|
|
43
|
+
"optional": true
|
|
44
|
+
},
|
|
45
|
+
"@trpc/client": {
|
|
46
|
+
"optional": true
|
|
47
|
+
},
|
|
48
|
+
"@trpc/server": {
|
|
49
|
+
"optional": true
|
|
50
|
+
},
|
|
51
|
+
"reka-ui": {
|
|
52
|
+
"optional": true
|
|
53
|
+
},
|
|
54
|
+
"tailwindcss": {
|
|
55
|
+
"optional": true
|
|
56
|
+
},
|
|
57
|
+
"vue-router": {
|
|
58
|
+
"optional": true
|
|
59
|
+
}
|
|
33
60
|
},
|
|
34
61
|
"dependencies": {
|
|
35
62
|
"@falcondev-oss/trpc-typed-form-data": "^0.5.3",
|
|
36
|
-
"@falcondev-oss/trpc-vue-query": "^0.6.1",
|
|
37
63
|
"@iconify-json/lucide": "^1.2.125",
|
|
38
64
|
"@nuxt/icon": "^2.5.0",
|
|
39
65
|
"@nuxtjs/color-mode": "^4.0.1",
|
|
40
|
-
"@tanstack/vue-query": "^5.102.1",
|
|
41
|
-
"@trpc/client": "^11.18.0",
|
|
42
|
-
"@trpc/server": "^11.18.0",
|
|
43
66
|
"@vue/devtools-api": "^8.2.1",
|
|
44
67
|
"@vueuse/core": "^14.4.0",
|
|
45
68
|
"@vueuse/nuxt": "^14.4.0",
|
|
@@ -48,19 +71,23 @@
|
|
|
48
71
|
"consola": "^3.4.2",
|
|
49
72
|
"defu": "^6.1.7",
|
|
50
73
|
"maska": "^3.2.0",
|
|
51
|
-
"reka-ui": "~2.10.3",
|
|
52
74
|
"remeda": "^2.43.0",
|
|
53
75
|
"superjson": "^2.2.6",
|
|
54
|
-
"tailwindcss": "^4.3.3",
|
|
55
76
|
"trpc-nuxt": "^2.1.2",
|
|
56
|
-
"type-fest": "^5.8.0"
|
|
57
|
-
"vue-router": "^5.2.0"
|
|
77
|
+
"type-fest": "^5.8.0"
|
|
58
78
|
},
|
|
59
79
|
"devDependencies": {
|
|
80
|
+
"@falcondev-oss/trpc-vue-query": "^0.6.1",
|
|
81
|
+
"@tanstack/vue-query": "^5.102.1",
|
|
82
|
+
"@trpc/client": "^11.18.0",
|
|
83
|
+
"@trpc/server": "^11.18.0",
|
|
60
84
|
"@types/luxon": "^3.7.5",
|
|
61
85
|
"luxon": "^3.7.2",
|
|
62
86
|
"nuxt": "^4.5.2",
|
|
87
|
+
"reka-ui": "~2.10.3",
|
|
88
|
+
"tailwindcss": "^4.3.3",
|
|
63
89
|
"typescript": "^5.9.3",
|
|
90
|
+
"vue-router": "^5.2.0",
|
|
64
91
|
"zod": "^4.4.3"
|
|
65
92
|
},
|
|
66
93
|
"scripts": {
|