@djangocfg/layouts 2.1.379 → 2.1.380

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@djangocfg/layouts",
3
- "version": "2.1.379",
3
+ "version": "2.1.380",
4
4
  "description": "Simple, straightforward layout components for Next.js - import and use with props",
5
5
  "keywords": [
6
6
  "layouts",
@@ -84,13 +84,13 @@
84
84
  "check": "tsc --noEmit"
85
85
  },
86
86
  "peerDependencies": {
87
- "@djangocfg/api": "^2.1.379",
88
- "@djangocfg/centrifugo": "^2.1.379",
89
- "@djangocfg/debuger": "^2.1.379",
90
- "@djangocfg/i18n": "^2.1.379",
91
- "@djangocfg/monitor": "^2.1.379",
92
- "@djangocfg/ui-core": "^2.1.379",
93
- "@djangocfg/ui-nextjs": "^2.1.379",
87
+ "@djangocfg/api": "^2.1.380",
88
+ "@djangocfg/centrifugo": "^2.1.380",
89
+ "@djangocfg/debuger": "^2.1.380",
90
+ "@djangocfg/i18n": "^2.1.380",
91
+ "@djangocfg/monitor": "^2.1.380",
92
+ "@djangocfg/ui-core": "^2.1.380",
93
+ "@djangocfg/ui-nextjs": "^2.1.380",
94
94
  "@hookform/resolvers": "^5.2.2",
95
95
  "consola": "^3.4.2",
96
96
  "lucide-react": "^0.545.0",
@@ -121,15 +121,15 @@
121
121
  "uuid": "^11.1.0"
122
122
  },
123
123
  "devDependencies": {
124
- "@djangocfg/api": "^2.1.379",
125
- "@djangocfg/centrifugo": "^2.1.379",
126
- "@djangocfg/debuger": "^2.1.379",
127
- "@djangocfg/i18n": "^2.1.379",
128
- "@djangocfg/monitor": "^2.1.379",
129
- "@djangocfg/typescript-config": "^2.1.379",
130
- "@djangocfg/ui-core": "^2.1.379",
131
- "@djangocfg/ui-nextjs": "^2.1.379",
132
- "@djangocfg/ui-tools": "^2.1.379",
124
+ "@djangocfg/api": "^2.1.380",
125
+ "@djangocfg/centrifugo": "^2.1.380",
126
+ "@djangocfg/debuger": "^2.1.380",
127
+ "@djangocfg/i18n": "^2.1.380",
128
+ "@djangocfg/monitor": "^2.1.380",
129
+ "@djangocfg/typescript-config": "^2.1.380",
130
+ "@djangocfg/ui-core": "^2.1.380",
131
+ "@djangocfg/ui-nextjs": "^2.1.380",
132
+ "@djangocfg/ui-tools": "^2.1.380",
133
133
  "@types/node": "^24.7.2",
134
134
  "@types/react": "^19.1.0",
135
135
  "@types/react-dom": "^19.1.0",
@@ -186,8 +186,8 @@ export function UserMenu({
186
186
  {profileGroups.map((group, groupIndex) => (
187
187
  <div key={groupIndex}>
188
188
  {group.title && (
189
- <div className="px-4 py-2">
190
- <p className="text-xs font-semibold text-muted-foreground uppercase tracking-wider">
189
+ <div className="px-4 pt-2 pb-1">
190
+ <p className="text-[11px] font-normal text-muted-foreground/70">
191
191
  {group.title}
192
192
  </p>
193
193
  </div>
@@ -229,7 +229,7 @@ export function UserMenu({
229
229
  ))}
230
230
  {localeMenu && (
231
231
  <div className="border-t border-border/50 px-4 pt-3">
232
- <p className="text-xs font-semibold uppercase tracking-wider text-muted-foreground">
232
+ <p className="text-[11px] font-normal text-muted-foreground/70">
233
233
  {labels.language}
234
234
  </p>
235
235
  <div className="mt-2 flex flex-wrap gap-2">
@@ -293,7 +293,7 @@ export function UserMenu({
293
293
  {groupIndex > 0 && <DropdownMenuSeparator />}
294
294
  <DropdownMenuGroup>
295
295
  {group.title && (
296
- <DropdownMenuLabel className="text-xs font-semibold text-muted-foreground uppercase tracking-wider">
296
+ <DropdownMenuLabel className="text-[11px] font-normal text-muted-foreground/70 py-1">
297
297
  {group.title}
298
298
  </DropdownMenuLabel>
299
299
  )}