simvyn 2.2.0 → 2.5.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.
- package/dist/dashboard/assets/{index-B6SC-KfX.css → index-C-atBUQQ.css} +52 -24
- package/dist/dashboard/assets/{index-B_mApJSj.js → index-D67XE6HO.js} +474 -123
- package/dist/dashboard/assets/index-D67XE6HO.js.map +1 -0
- package/dist/dashboard/index.html +2 -2
- package/dist/index.js +31 -3
- package/package.json +1 -1
- package/dist/dashboard/assets/index-B_mApJSj.js.map +0 -1
|
@@ -75,6 +75,7 @@
|
|
|
75
75
|
--color-green-500: oklch(72.3% .219 149.579);
|
|
76
76
|
--color-cyan-400: oklch(78.9% .154 211.53);
|
|
77
77
|
--color-cyan-500: oklch(71.5% .143 215.221);
|
|
78
|
+
--color-blue-300: oklch(80.9% .105 251.813);
|
|
78
79
|
--color-blue-400: oklch(70.7% .165 254.624);
|
|
79
80
|
--color-purple-400: oklch(71.4% .203 305.504);
|
|
80
81
|
--color-purple-500: oklch(62.7% .265 303.9);
|
|
@@ -1926,6 +1927,10 @@
|
|
|
1926
1927
|
font-variant-numeric: var(--tw-ordinal, ) var(--tw-slashed-zero, ) var(--tw-numeric-figure, ) var(--tw-numeric-spacing, ) var(--tw-numeric-fraction, );
|
|
1927
1928
|
}
|
|
1928
1929
|
|
|
1930
|
+
.underline {
|
|
1931
|
+
text-decoration-line: underline;
|
|
1932
|
+
}
|
|
1933
|
+
|
|
1929
1934
|
.accent-\[\#F97316\] {
|
|
1930
1935
|
accent-color: #f97316;
|
|
1931
1936
|
}
|
|
@@ -1996,6 +2001,12 @@
|
|
|
1996
2001
|
backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, ) !important;
|
|
1997
2002
|
}
|
|
1998
2003
|
|
|
2004
|
+
.transition {
|
|
2005
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
|
|
2006
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2007
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2008
|
+
}
|
|
2009
|
+
|
|
1999
2010
|
.transition-all {
|
|
2000
2011
|
transition-property: all;
|
|
2001
2012
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -2145,6 +2156,10 @@
|
|
|
2145
2156
|
}
|
|
2146
2157
|
}
|
|
2147
2158
|
|
|
2159
|
+
.hover\:text-blue-300:hover {
|
|
2160
|
+
color: var(--color-blue-300);
|
|
2161
|
+
}
|
|
2162
|
+
|
|
2148
2163
|
.hover\:text-red-200:hover {
|
|
2149
2164
|
color: var(--color-red-200);
|
|
2150
2165
|
}
|
|
@@ -2307,6 +2322,11 @@ body {
|
|
|
2307
2322
|
scrollbar-color: oklch(45% .015 260 / .35) transparent;
|
|
2308
2323
|
}
|
|
2309
2324
|
|
|
2325
|
+
.dock-sidebar-hitarea {
|
|
2326
|
+
align-self: center;
|
|
2327
|
+
padding: 12px 0 12px 12px;
|
|
2328
|
+
}
|
|
2329
|
+
|
|
2310
2330
|
.dock-sidebar {
|
|
2311
2331
|
z-index: 20;
|
|
2312
2332
|
-webkit-backdrop-filter: blur(24px) saturate(1.5);
|
|
@@ -2315,33 +2335,50 @@ body {
|
|
|
2315
2335
|
border-radius: 16px;
|
|
2316
2336
|
flex-direction: column;
|
|
2317
2337
|
align-self: center;
|
|
2318
|
-
align-items:
|
|
2338
|
+
align-items: stretch;
|
|
2319
2339
|
gap: 2px;
|
|
2320
|
-
|
|
2321
|
-
margin: 12px 0 12px 12px;
|
|
2322
|
-
padding: 8px 0;
|
|
2340
|
+
padding: 8px 6px;
|
|
2323
2341
|
display: flex;
|
|
2324
2342
|
position: relative;
|
|
2325
|
-
overflow:
|
|
2343
|
+
overflow: hidden auto;
|
|
2326
2344
|
box-shadow: 0 8px 32px #0000004d, inset 0 .5px #ffffff14;
|
|
2327
2345
|
}
|
|
2328
2346
|
|
|
2329
2347
|
.dock-icon {
|
|
2330
|
-
width: 38px;
|
|
2331
2348
|
height: 38px;
|
|
2332
2349
|
color: var(--color-text-secondary);
|
|
2333
2350
|
cursor: pointer;
|
|
2334
2351
|
-webkit-user-select: none;
|
|
2335
2352
|
user-select: none;
|
|
2353
|
+
white-space: nowrap;
|
|
2336
2354
|
background: none;
|
|
2337
2355
|
border: none;
|
|
2338
2356
|
border-radius: 10px;
|
|
2339
|
-
justify-content: center;
|
|
2340
2357
|
align-items: center;
|
|
2358
|
+
gap: 10px;
|
|
2359
|
+
padding: 0 7px;
|
|
2341
2360
|
font-family: inherit;
|
|
2342
2361
|
transition: background .15s, color .15s;
|
|
2343
2362
|
display: flex;
|
|
2344
2363
|
position: relative;
|
|
2364
|
+
overflow: hidden;
|
|
2365
|
+
}
|
|
2366
|
+
|
|
2367
|
+
.dock-icon-svg {
|
|
2368
|
+
flex-shrink: 0;
|
|
2369
|
+
justify-content: center;
|
|
2370
|
+
align-items: center;
|
|
2371
|
+
width: 24px;
|
|
2372
|
+
height: 24px;
|
|
2373
|
+
display: flex;
|
|
2374
|
+
}
|
|
2375
|
+
|
|
2376
|
+
.dock-label {
|
|
2377
|
+
color: var(--color-text-secondary);
|
|
2378
|
+
white-space: nowrap;
|
|
2379
|
+
font-size: 12.5px;
|
|
2380
|
+
font-weight: 500;
|
|
2381
|
+
overflow: hidden;
|
|
2345
2382
|
}
|
|
2346
2383
|
|
|
2347
2384
|
.dock-icon:hover {
|
|
@@ -2349,11 +2386,19 @@ body {
|
|
|
2349
2386
|
background: #ffffff14;
|
|
2350
2387
|
}
|
|
2351
2388
|
|
|
2389
|
+
.dock-icon:hover .dock-label {
|
|
2390
|
+
color: var(--color-text-primary);
|
|
2391
|
+
}
|
|
2392
|
+
|
|
2352
2393
|
.dock-icon.active {
|
|
2353
2394
|
color: var(--color-accent-blue);
|
|
2354
2395
|
background: #007aff26;
|
|
2355
2396
|
}
|
|
2356
2397
|
|
|
2398
|
+
.dock-icon.active .dock-label {
|
|
2399
|
+
color: var(--color-accent-blue);
|
|
2400
|
+
}
|
|
2401
|
+
|
|
2357
2402
|
.dock-icon.active:after {
|
|
2358
2403
|
content: "";
|
|
2359
2404
|
background: var(--color-accent-blue);
|
|
@@ -2367,23 +2412,6 @@ body {
|
|
|
2367
2412
|
transform: translateY(-50%);
|
|
2368
2413
|
}
|
|
2369
2414
|
|
|
2370
|
-
.dock-tooltip-fixed {
|
|
2371
|
-
-webkit-backdrop-filter: blur(20px) saturate(1.4);
|
|
2372
|
-
backdrop-filter: blur(20px) saturate(1.4);
|
|
2373
|
-
color: var(--color-text-primary);
|
|
2374
|
-
white-space: nowrap;
|
|
2375
|
-
pointer-events: none;
|
|
2376
|
-
z-index: 1000;
|
|
2377
|
-
background: #1e1e28e6;
|
|
2378
|
-
border: 1px solid #ffffff14;
|
|
2379
|
-
border-radius: 6px;
|
|
2380
|
-
padding: 4px 10px;
|
|
2381
|
-
font-size: 12px;
|
|
2382
|
-
font-weight: 500;
|
|
2383
|
-
position: fixed;
|
|
2384
|
-
transform: translateY(-50%);
|
|
2385
|
-
}
|
|
2386
|
-
|
|
2387
2415
|
[data-sonner-toaster] [data-sonner-toast] {
|
|
2388
2416
|
-webkit-backdrop-filter: blur(20px) saturate(1.4) !important;
|
|
2389
2417
|
color: #e8e8ed !important;
|