@djangocfg/layouts 2.1.424 → 2.1.425
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.
|
|
3
|
+
"version": "2.1.425",
|
|
4
4
|
"description": "Simple, straightforward layout components for Next.js - import and use with props",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"layouts",
|
|
@@ -89,13 +89,13 @@
|
|
|
89
89
|
"check": "tsc --noEmit"
|
|
90
90
|
},
|
|
91
91
|
"peerDependencies": {
|
|
92
|
-
"@djangocfg/api": "^2.1.
|
|
93
|
-
"@djangocfg/centrifugo": "^2.1.
|
|
94
|
-
"@djangocfg/debuger": "^2.1.
|
|
95
|
-
"@djangocfg/i18n": "^2.1.
|
|
96
|
-
"@djangocfg/monitor": "^2.1.
|
|
97
|
-
"@djangocfg/ui-core": "^2.1.
|
|
98
|
-
"@djangocfg/ui-nextjs": "^2.1.
|
|
92
|
+
"@djangocfg/api": "^2.1.425",
|
|
93
|
+
"@djangocfg/centrifugo": "^2.1.425",
|
|
94
|
+
"@djangocfg/debuger": "^2.1.425",
|
|
95
|
+
"@djangocfg/i18n": "^2.1.425",
|
|
96
|
+
"@djangocfg/monitor": "^2.1.425",
|
|
97
|
+
"@djangocfg/ui-core": "^2.1.425",
|
|
98
|
+
"@djangocfg/ui-nextjs": "^2.1.425",
|
|
99
99
|
"@hookform/resolvers": "^5.2.2",
|
|
100
100
|
"consola": "^3.4.2",
|
|
101
101
|
"lucide-react": "^0.545.0",
|
|
@@ -126,15 +126,15 @@
|
|
|
126
126
|
"uuid": "^11.1.0"
|
|
127
127
|
},
|
|
128
128
|
"devDependencies": {
|
|
129
|
-
"@djangocfg/api": "^2.1.
|
|
130
|
-
"@djangocfg/centrifugo": "^2.1.
|
|
131
|
-
"@djangocfg/debuger": "^2.1.
|
|
132
|
-
"@djangocfg/i18n": "^2.1.
|
|
133
|
-
"@djangocfg/monitor": "^2.1.
|
|
134
|
-
"@djangocfg/typescript-config": "^2.1.
|
|
135
|
-
"@djangocfg/ui-core": "^2.1.
|
|
136
|
-
"@djangocfg/ui-nextjs": "^2.1.
|
|
137
|
-
"@djangocfg/ui-tools": "^2.1.
|
|
129
|
+
"@djangocfg/api": "^2.1.425",
|
|
130
|
+
"@djangocfg/centrifugo": "^2.1.425",
|
|
131
|
+
"@djangocfg/debuger": "^2.1.425",
|
|
132
|
+
"@djangocfg/i18n": "^2.1.425",
|
|
133
|
+
"@djangocfg/monitor": "^2.1.425",
|
|
134
|
+
"@djangocfg/typescript-config": "^2.1.425",
|
|
135
|
+
"@djangocfg/ui-core": "^2.1.425",
|
|
136
|
+
"@djangocfg/ui-nextjs": "^2.1.425",
|
|
137
|
+
"@djangocfg/ui-tools": "^2.1.425",
|
|
138
138
|
"@types/node": "^25.2.3",
|
|
139
139
|
"@types/react": "^19.2.15",
|
|
140
140
|
"@types/react-dom": "^19.2.3",
|
|
@@ -124,18 +124,27 @@
|
|
|
124
124
|
inset: 0;
|
|
125
125
|
z-index: 1;
|
|
126
126
|
pointer-events: none;
|
|
127
|
-
/*
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
127
|
+
/* Two stacked scrims:
|
|
128
|
+
1. A strong shadow rising from the bottom (deep under the quote, easing
|
|
129
|
+
to nothing by the upper third) — the main legibility layer.
|
|
130
|
+
2. A faint shadow falling from the top so the brand mark stays readable
|
|
131
|
+
even over a bright sky. Kept light so the photo stays open.
|
|
132
|
+
Eased multi-stop curves avoid a hard "band" edge — natural vignette. */
|
|
133
|
+
background:
|
|
134
|
+
linear-gradient(
|
|
135
|
+
to top,
|
|
136
|
+
hsl(0 0% 0% / 0.78) 0%,
|
|
137
|
+
hsl(0 0% 0% / 0.55) 18%,
|
|
138
|
+
hsl(0 0% 0% / 0.28) 38%,
|
|
139
|
+
hsl(0 0% 0% / 0.08) 60%,
|
|
140
|
+
transparent 80%
|
|
141
|
+
),
|
|
142
|
+
linear-gradient(
|
|
143
|
+
to bottom,
|
|
144
|
+
hsl(0 0% 0% / 0.32) 0%,
|
|
145
|
+
hsl(0 0% 0% / 0.12) 12%,
|
|
146
|
+
transparent 26%
|
|
147
|
+
);
|
|
139
148
|
}
|
|
140
149
|
|
|
141
150
|
/* Sidebar sits above the scrim. */
|