@djangocfg/layouts 2.1.462 → 2.1.463

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.462",
3
+ "version": "2.1.463",
4
4
  "description": "Simple, straightforward layout components for Next.js - import and use with props",
5
5
  "keywords": [
6
6
  "layouts",
@@ -89,10 +89,10 @@
89
89
  "check": "tsc --noEmit"
90
90
  },
91
91
  "peerDependencies": {
92
- "@djangocfg/api": "^2.1.462",
93
- "@djangocfg/centrifugo": "^2.1.462",
94
- "@djangocfg/i18n": "^2.1.462",
95
- "@djangocfg/ui-core": "^2.1.462",
92
+ "@djangocfg/api": "^2.1.463",
93
+ "@djangocfg/centrifugo": "^2.1.463",
94
+ "@djangocfg/i18n": "^2.1.463",
95
+ "@djangocfg/ui-core": "^2.1.463",
96
96
  "@hookform/resolvers": "^5.2.2",
97
97
  "consola": "^3.4.2",
98
98
  "lucide-react": "^0.545.0",
@@ -109,7 +109,7 @@
109
109
  "tailwindcss-animate": "^1.0.7",
110
110
  "zod": "^4.3.6",
111
111
  "zustand": "^5.0.0",
112
- "@djangocfg/devtools": "^2.1.462"
112
+ "@djangocfg/devtools": "^2.1.463"
113
113
  },
114
114
  "peerDependenciesMeta": {
115
115
  "@djangocfg/devtools": {
@@ -124,12 +124,12 @@
124
124
  "uuid": "^11.1.0"
125
125
  },
126
126
  "devDependencies": {
127
- "@djangocfg/api": "^2.1.462",
128
- "@djangocfg/centrifugo": "^2.1.462",
129
- "@djangocfg/i18n": "^2.1.462",
130
- "@djangocfg/typescript-config": "^2.1.462",
131
- "@djangocfg/ui-core": "^2.1.462",
132
- "@djangocfg/ui-tools": "^2.1.462",
127
+ "@djangocfg/api": "^2.1.463",
128
+ "@djangocfg/centrifugo": "^2.1.463",
129
+ "@djangocfg/i18n": "^2.1.463",
130
+ "@djangocfg/typescript-config": "^2.1.463",
131
+ "@djangocfg/ui-core": "^2.1.463",
132
+ "@djangocfg/ui-tools": "^2.1.463",
133
133
  "@types/node": "^25.2.3",
134
134
  "@types/react": "^19.2.15",
135
135
  "@types/react-dom": "^19.2.3",
@@ -137,7 +137,7 @@
137
137
  "next-intl": "^4.9.1",
138
138
  "typescript": "^5.9.3",
139
139
  "zustand": "^5.0.9",
140
- "@djangocfg/devtools": "^2.1.462"
140
+ "@djangocfg/devtools": "^2.1.463"
141
141
  },
142
142
  "publishConfig": {
143
143
  "access": "public"
@@ -46,10 +46,10 @@ function subMenuLinkCls(active: boolean) {
46
46
  }
47
47
 
48
48
  // Real glass: low-opacity surface so the blur actually shows the page behind
49
- // it. backdrop-blur-2xl + saturate gives the frosted look; the previous
50
- // bg-card/80 (80% opaque) let almost nothing through, so the blur was invisible.
49
+ // it. The package-level nav-dropdown-glass utility keeps the frosted effect
50
+ // present even when the consuming app does not scan layout sources.
51
51
  const popoverCls =
52
- 'absolute left-0 top-full mt-1 z-[1200] min-w-[14.5rem] rounded-xl border border-white/10 bg-background/55 backdrop-blur-2xl backdrop-saturate-150 dark:bg-card/55 p-1.5 shadow-[0_1px_2px_rgba(0,0,0,0.05),0_8px_28px_rgba(0,0,0,0.18)] dark:shadow-[0_8px_30px_rgba(0,0,0,0.45)]';
52
+ 'absolute left-0 top-full mt-1 z-[1200] min-w-[14.5rem] rounded-xl border border-white/10 nav-dropdown-glass p-1.5 shadow-[0_1px_2px_rgba(0,0,0,0.05),0_8px_28px_rgba(0,0,0,0.18)] dark:shadow-[0_8px_30px_rgba(0,0,0,0.45)]';
53
53
 
54
54
  function NavDesktopItemsRaw({
55
55
  items,