@dyrected/next 2.5.45 → 2.5.47
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/dist/admin.css +50 -0
- package/package.json +4 -4
package/dist/admin.css
CHANGED
|
@@ -191,10 +191,60 @@
|
|
|
191
191
|
--sidebar-accent-foreground: 259 100% 62%;
|
|
192
192
|
--sidebar-border: 256 51% 90%;
|
|
193
193
|
--sidebar-ring: 259 100% 62%;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.dy-admin-ui.dark,
|
|
197
|
+
.dy-admin-ui[data-theme="dark"] {
|
|
198
|
+
--background: 240 10% 4%; /* #09090B charcoal */
|
|
199
|
+
--foreground: 78 38% 95%; /* warm lime-white */
|
|
200
|
+
|
|
201
|
+
--card: 240 8% 7%; /* #111114 */
|
|
202
|
+
--card-foreground: 78 38% 95%;
|
|
203
|
+
|
|
204
|
+
--popover: 240 8% 7%;
|
|
205
|
+
--popover-foreground: 78 38% 95%;
|
|
206
|
+
|
|
207
|
+
--primary: 81 100% 59%; /* Signal Lime */
|
|
208
|
+
--primary-foreground: 60 3% 6%;
|
|
209
|
+
--intelligence: 259 100% 70%; /* Brighter Violet */
|
|
210
|
+
--intelligence-foreground: 0 0% 100%;
|
|
211
|
+
|
|
212
|
+
--secondary: 259 45% 15%;
|
|
213
|
+
--secondary-foreground: 266 82% 92%;
|
|
214
|
+
|
|
215
|
+
--muted: 240 7% 13%;
|
|
216
|
+
--muted-foreground: 252 9% 68%;
|
|
217
|
+
|
|
218
|
+
--accent: 259 44% 16%;
|
|
219
|
+
--accent-foreground: 266 82% 88%;
|
|
220
|
+
|
|
221
|
+
--destructive: 0 72% 58%;
|
|
222
|
+
--destructive-foreground: 0 0% 100%;
|
|
223
|
+
|
|
224
|
+
--border: 256 20% 21%;
|
|
225
|
+
--input: 256 20% 21%;
|
|
226
|
+
--ring: 259 100% 70% / 0.34;
|
|
227
|
+
|
|
228
|
+
--sidebar-background: 240 10% 4%;
|
|
229
|
+
--sidebar-foreground: 78 38% 95%;
|
|
230
|
+
--sidebar-primary: 81 100% 59%;
|
|
231
|
+
--sidebar-primary-foreground: 60 3% 6%;
|
|
232
|
+
--sidebar-accent: 259 44% 16%;
|
|
233
|
+
--sidebar-accent-foreground: 266 82% 88%;
|
|
234
|
+
--sidebar-border: 256 20% 21%;
|
|
235
|
+
--sidebar-ring: 259 100% 70%;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.dy-admin-ui {
|
|
194
239
|
color-scheme: light;
|
|
195
240
|
font-family: var(--font-sans), ui-sans-serif, system-ui, sans-serif;
|
|
196
241
|
}
|
|
197
242
|
|
|
243
|
+
.dy-admin-ui.dark,
|
|
244
|
+
.dy-admin-ui[data-theme="dark"] {
|
|
245
|
+
color-scheme: dark;
|
|
246
|
+
}
|
|
247
|
+
|
|
198
248
|
.dy-admin-ui :where(h1, h2, h3, h4, h5, h6){
|
|
199
249
|
font-family: var(--font-serif), ui-serif, Georgia, serif;
|
|
200
250
|
font-weight: 500;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dyrected/next",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.47",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"hono": "^4.0.0",
|
|
34
|
-
"@dyrected/core": "2.5.
|
|
35
|
-
"@dyrected/
|
|
36
|
-
"@dyrected/
|
|
34
|
+
"@dyrected/core": "2.5.47",
|
|
35
|
+
"@dyrected/sdk": "2.5.47",
|
|
36
|
+
"@dyrected/react": "2.5.47"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/node": "^20.12.12",
|