@nubase/frontend 0.1.34 → 0.1.37
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/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +295 -42
- package/dist/index.d.ts +295 -42
- package/dist/index.js +13504 -12236
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12542 -11292
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +230 -38
- package/package.json +25 -25
package/dist/styles.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! tailwindcss v4.2.
|
|
1
|
+
/*! tailwindcss v4.2.4 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
3
|
@layer theme, base, components, utilities;
|
|
4
4
|
@layer theme {
|
|
@@ -601,6 +601,12 @@
|
|
|
601
601
|
.h-\[200px\] {
|
|
602
602
|
height: 200px;
|
|
603
603
|
}
|
|
604
|
+
.h-\[400px\] {
|
|
605
|
+
height: 400px;
|
|
606
|
+
}
|
|
607
|
+
.h-\[500px\] {
|
|
608
|
+
height: 500px;
|
|
609
|
+
}
|
|
604
610
|
.h-\[calc\(100\%-1px\)\] {
|
|
605
611
|
height: calc(100% - 1px);
|
|
606
612
|
}
|
|
@@ -751,6 +757,12 @@
|
|
|
751
757
|
.w-\[600px\] {
|
|
752
758
|
width: 600px;
|
|
753
759
|
}
|
|
760
|
+
.w-\[640px\] {
|
|
761
|
+
width: 640px;
|
|
762
|
+
}
|
|
763
|
+
.w-\[720px\] {
|
|
764
|
+
width: 720px;
|
|
765
|
+
}
|
|
754
766
|
.w-auto {
|
|
755
767
|
width: auto;
|
|
756
768
|
}
|
|
@@ -763,6 +775,9 @@
|
|
|
763
775
|
.w-lg {
|
|
764
776
|
width: var(--container-lg);
|
|
765
777
|
}
|
|
778
|
+
.w-px {
|
|
779
|
+
width: 1px;
|
|
780
|
+
}
|
|
766
781
|
.w-screen {
|
|
767
782
|
width: 100vw;
|
|
768
783
|
}
|
|
@@ -796,6 +811,15 @@
|
|
|
796
811
|
.min-w-5 {
|
|
797
812
|
min-width: calc(var(--spacing) * 5);
|
|
798
813
|
}
|
|
814
|
+
.min-w-8 {
|
|
815
|
+
min-width: calc(var(--spacing) * 8);
|
|
816
|
+
}
|
|
817
|
+
.min-w-9 {
|
|
818
|
+
min-width: calc(var(--spacing) * 9);
|
|
819
|
+
}
|
|
820
|
+
.min-w-10 {
|
|
821
|
+
min-width: calc(var(--spacing) * 10);
|
|
822
|
+
}
|
|
799
823
|
.min-w-80 {
|
|
800
824
|
min-width: calc(var(--spacing) * 80);
|
|
801
825
|
}
|
|
@@ -805,9 +829,6 @@
|
|
|
805
829
|
.flex-1 {
|
|
806
830
|
flex: 1;
|
|
807
831
|
}
|
|
808
|
-
.flex-shrink-0 {
|
|
809
|
-
flex-shrink: 0;
|
|
810
|
-
}
|
|
811
832
|
.shrink-0 {
|
|
812
833
|
flex-shrink: 0;
|
|
813
834
|
}
|
|
@@ -870,6 +891,9 @@
|
|
|
870
891
|
.cursor-text {
|
|
871
892
|
cursor: text;
|
|
872
893
|
}
|
|
894
|
+
.touch-none {
|
|
895
|
+
touch-action: none;
|
|
896
|
+
}
|
|
873
897
|
.resize {
|
|
874
898
|
resize: both;
|
|
875
899
|
}
|
|
@@ -1145,6 +1169,12 @@
|
|
|
1145
1169
|
border-color: color-mix(in oklab, var(--color-destructive) 20%, transparent);
|
|
1146
1170
|
}
|
|
1147
1171
|
}
|
|
1172
|
+
.border-destructive\/30 {
|
|
1173
|
+
border-color: var(--color-destructive);
|
|
1174
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1175
|
+
border-color: color-mix(in oklab, var(--color-destructive) 30%, transparent);
|
|
1176
|
+
}
|
|
1177
|
+
}
|
|
1148
1178
|
.border-gray-200 {
|
|
1149
1179
|
border-color: var(--color-gray-200);
|
|
1150
1180
|
}
|
|
@@ -1445,9 +1475,6 @@
|
|
|
1445
1475
|
.pt-1 {
|
|
1446
1476
|
padding-top: calc(var(--spacing) * 1);
|
|
1447
1477
|
}
|
|
1448
|
-
.pt-2 {
|
|
1449
|
-
padding-top: calc(var(--spacing) * 2);
|
|
1450
|
-
}
|
|
1451
1478
|
.pt-3 {
|
|
1452
1479
|
padding-top: calc(var(--spacing) * 3);
|
|
1453
1480
|
}
|
|
@@ -1734,6 +1761,10 @@
|
|
|
1734
1761
|
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1735
1762
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1736
1763
|
}
|
|
1764
|
+
.shadow-\[-12px_0_32px_-8px_rgba\(0\,0\,0\,0\.18\)\] {
|
|
1765
|
+
--tw-shadow: -12px 0 32px -8px var(--tw-shadow-color, rgba(0,0,0,0.18));
|
|
1766
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1767
|
+
}
|
|
1737
1768
|
.shadow-lg {
|
|
1738
1769
|
--tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1739
1770
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1790,6 +1821,10 @@
|
|
|
1790
1821
|
outline-offset: 2px;
|
|
1791
1822
|
}
|
|
1792
1823
|
}
|
|
1824
|
+
.outline {
|
|
1825
|
+
outline-style: var(--tw-outline-style);
|
|
1826
|
+
outline-width: 1px;
|
|
1827
|
+
}
|
|
1793
1828
|
.outline-0 {
|
|
1794
1829
|
outline-style: var(--tw-outline-style);
|
|
1795
1830
|
outline-width: 0px;
|
|
@@ -1867,6 +1902,13 @@
|
|
|
1867
1902
|
.slide-in-from-right-full {
|
|
1868
1903
|
--tw-enter-translate-x: calc(1*100%);
|
|
1869
1904
|
}
|
|
1905
|
+
.group-hover\:bg-ring {
|
|
1906
|
+
&:is(:where(.group):hover *) {
|
|
1907
|
+
@media (hover: hover) {
|
|
1908
|
+
background-color: var(--color-ring);
|
|
1909
|
+
}
|
|
1910
|
+
}
|
|
1911
|
+
}
|
|
1870
1912
|
.selection\:bg-primary {
|
|
1871
1913
|
& *::selection {
|
|
1872
1914
|
background-color: var(--color-primary);
|
|
@@ -1944,16 +1986,47 @@
|
|
|
1944
1986
|
content: var(--tw-content);
|
|
1945
1987
|
}
|
|
1946
1988
|
}
|
|
1989
|
+
.first\:rounded-l-md {
|
|
1990
|
+
&:first-child {
|
|
1991
|
+
border-top-left-radius: var(--radius-md);
|
|
1992
|
+
border-bottom-left-radius: var(--radius-md);
|
|
1993
|
+
}
|
|
1994
|
+
}
|
|
1947
1995
|
.first\:fill-muted {
|
|
1948
1996
|
&:first-child {
|
|
1949
1997
|
fill: var(--color-muted);
|
|
1950
1998
|
}
|
|
1951
1999
|
}
|
|
2000
|
+
.last\:rounded-r-md {
|
|
2001
|
+
&:last-child {
|
|
2002
|
+
border-top-right-radius: var(--radius-md);
|
|
2003
|
+
border-bottom-right-radius: var(--radius-md);
|
|
2004
|
+
}
|
|
2005
|
+
}
|
|
1952
2006
|
.last\:fill-background {
|
|
1953
2007
|
&:last-child {
|
|
1954
2008
|
fill: var(--color-background);
|
|
1955
2009
|
}
|
|
1956
2010
|
}
|
|
2011
|
+
.focus-within\:border-ring {
|
|
2012
|
+
&:focus-within {
|
|
2013
|
+
border-color: var(--color-ring);
|
|
2014
|
+
}
|
|
2015
|
+
}
|
|
2016
|
+
.focus-within\:ring-\[3px\] {
|
|
2017
|
+
&:focus-within {
|
|
2018
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2019
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2020
|
+
}
|
|
2021
|
+
}
|
|
2022
|
+
.focus-within\:ring-ring\/50 {
|
|
2023
|
+
&:focus-within {
|
|
2024
|
+
--tw-ring-color: var(--color-ring);
|
|
2025
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2026
|
+
--tw-ring-color: color-mix(in oklab, var(--color-ring) 50%, transparent);
|
|
2027
|
+
}
|
|
2028
|
+
}
|
|
2029
|
+
}
|
|
1957
2030
|
.hover\:border-primary {
|
|
1958
2031
|
&:hover {
|
|
1959
2032
|
@media (hover: hover) {
|
|
@@ -2125,6 +2198,11 @@
|
|
|
2125
2198
|
}
|
|
2126
2199
|
}
|
|
2127
2200
|
}
|
|
2201
|
+
.focus\:z-10 {
|
|
2202
|
+
&:focus {
|
|
2203
|
+
z-index: 10;
|
|
2204
|
+
}
|
|
2205
|
+
}
|
|
2128
2206
|
.focus\:border-primary {
|
|
2129
2207
|
&:focus {
|
|
2130
2208
|
border-color: var(--color-primary);
|
|
@@ -2187,6 +2265,11 @@
|
|
|
2187
2265
|
outline-style: none;
|
|
2188
2266
|
}
|
|
2189
2267
|
}
|
|
2268
|
+
.focus-visible\:z-10 {
|
|
2269
|
+
&:focus-visible {
|
|
2270
|
+
z-index: 10;
|
|
2271
|
+
}
|
|
2272
|
+
}
|
|
2190
2273
|
.focus-visible\:border-ring {
|
|
2191
2274
|
&:focus-visible {
|
|
2192
2275
|
border-color: var(--color-ring);
|
|
@@ -2223,6 +2306,11 @@
|
|
|
2223
2306
|
}
|
|
2224
2307
|
}
|
|
2225
2308
|
}
|
|
2309
|
+
.focus-visible\:ring-ring {
|
|
2310
|
+
&:focus-visible {
|
|
2311
|
+
--tw-ring-color: var(--color-ring);
|
|
2312
|
+
}
|
|
2313
|
+
}
|
|
2226
2314
|
.focus-visible\:ring-ring\/50 {
|
|
2227
2315
|
&:focus-visible {
|
|
2228
2316
|
--tw-ring-color: var(--color-ring);
|
|
@@ -2268,6 +2356,11 @@
|
|
|
2268
2356
|
opacity: 50%;
|
|
2269
2357
|
}
|
|
2270
2358
|
}
|
|
2359
|
+
.has-\[\>svg\]\:px-2\.5 {
|
|
2360
|
+
&:has(>svg) {
|
|
2361
|
+
padding-inline: calc(var(--spacing) * 2.5);
|
|
2362
|
+
}
|
|
2363
|
+
}
|
|
2271
2364
|
.has-\[\>svg\]\:px-3 {
|
|
2272
2365
|
&:has(>svg) {
|
|
2273
2366
|
padding-inline: calc(var(--spacing) * 3);
|
|
@@ -2286,19 +2379,6 @@
|
|
|
2286
2379
|
}
|
|
2287
2380
|
}
|
|
2288
2381
|
}
|
|
2289
|
-
.data-\[closed\]\:scale-95 {
|
|
2290
|
-
&[data-closed] {
|
|
2291
|
-
--tw-scale-x: 95%;
|
|
2292
|
-
--tw-scale-y: 95%;
|
|
2293
|
-
--tw-scale-z: 95%;
|
|
2294
|
-
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
2295
|
-
}
|
|
2296
|
-
}
|
|
2297
|
-
.data-\[closed\]\:opacity-0 {
|
|
2298
|
-
&[data-closed] {
|
|
2299
|
-
opacity: 0%;
|
|
2300
|
-
}
|
|
2301
|
-
}
|
|
2302
2382
|
.data-\[disabled\]\:pointer-events-none {
|
|
2303
2383
|
&[data-disabled] {
|
|
2304
2384
|
pointer-events: none;
|
|
@@ -2393,6 +2473,26 @@
|
|
|
2393
2473
|
--tw-exit-scale: .95;
|
|
2394
2474
|
}
|
|
2395
2475
|
}
|
|
2476
|
+
.data-\[state\=closed\]\:fade-out {
|
|
2477
|
+
&[data-state="closed"] {
|
|
2478
|
+
--tw-exit-opacity: 0;
|
|
2479
|
+
}
|
|
2480
|
+
}
|
|
2481
|
+
.data-\[state\=closed\]\:slide-out-to-right {
|
|
2482
|
+
&[data-state="closed"] {
|
|
2483
|
+
--tw-exit-translate-x: 100%;
|
|
2484
|
+
}
|
|
2485
|
+
}
|
|
2486
|
+
.data-\[state\=on\]\:bg-accent {
|
|
2487
|
+
&[data-state="on"] {
|
|
2488
|
+
background-color: var(--color-accent);
|
|
2489
|
+
}
|
|
2490
|
+
}
|
|
2491
|
+
.data-\[state\=on\]\:text-accent-foreground {
|
|
2492
|
+
&[data-state="on"] {
|
|
2493
|
+
color: var(--color-accent-foreground);
|
|
2494
|
+
}
|
|
2495
|
+
}
|
|
2396
2496
|
.data-\[state\=open\]\:animate-in {
|
|
2397
2497
|
&[data-state="open"] {
|
|
2398
2498
|
animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
@@ -2420,6 +2520,16 @@
|
|
|
2420
2520
|
--tw-enter-scale: .95;
|
|
2421
2521
|
}
|
|
2422
2522
|
}
|
|
2523
|
+
.data-\[state\=open\]\:fade-in {
|
|
2524
|
+
&[data-state="open"] {
|
|
2525
|
+
--tw-enter-opacity: 0;
|
|
2526
|
+
}
|
|
2527
|
+
}
|
|
2528
|
+
.data-\[state\=open\]\:slide-in-from-right {
|
|
2529
|
+
&[data-state="open"] {
|
|
2530
|
+
--tw-enter-translate-x: 100%;
|
|
2531
|
+
}
|
|
2532
|
+
}
|
|
2423
2533
|
.data-\[state\=selected\]\:bg-muted {
|
|
2424
2534
|
&[data-state="selected"] {
|
|
2425
2535
|
background-color: var(--color-muted);
|
|
@@ -2453,21 +2563,71 @@
|
|
|
2453
2563
|
}
|
|
2454
2564
|
}
|
|
2455
2565
|
}
|
|
2566
|
+
.data-\[variant\=outline\]\:border-l-0 {
|
|
2567
|
+
&[data-variant="outline"] {
|
|
2568
|
+
border-left-style: var(--tw-border-style);
|
|
2569
|
+
border-left-width: 0px;
|
|
2570
|
+
}
|
|
2571
|
+
}
|
|
2572
|
+
.data-\[variant\=outline\]\:shadow-xs {
|
|
2573
|
+
&[data-variant="outline"] {
|
|
2574
|
+
--tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
|
|
2575
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2576
|
+
}
|
|
2577
|
+
}
|
|
2578
|
+
.data-\[variant\=outline\]\:first\:border-l {
|
|
2579
|
+
&[data-variant="outline"] {
|
|
2580
|
+
&:first-child {
|
|
2581
|
+
border-left-style: var(--tw-border-style);
|
|
2582
|
+
border-left-width: 1px;
|
|
2583
|
+
}
|
|
2584
|
+
}
|
|
2585
|
+
}
|
|
2456
2586
|
.sm\:block {
|
|
2457
2587
|
@media (width >= 40rem) {
|
|
2458
2588
|
display: block;
|
|
2459
2589
|
}
|
|
2460
2590
|
}
|
|
2591
|
+
.sm\:w-\[var\(--schema-form-label-width\,8rem\)\] {
|
|
2592
|
+
@media (width >= 40rem) {
|
|
2593
|
+
width: var(--schema-form-label-width,8rem);
|
|
2594
|
+
}
|
|
2595
|
+
}
|
|
2596
|
+
.sm\:shrink-0 {
|
|
2597
|
+
@media (width >= 40rem) {
|
|
2598
|
+
flex-shrink: 0;
|
|
2599
|
+
}
|
|
2600
|
+
}
|
|
2601
|
+
.sm\:flex-row {
|
|
2602
|
+
@media (width >= 40rem) {
|
|
2603
|
+
flex-direction: row;
|
|
2604
|
+
}
|
|
2605
|
+
}
|
|
2606
|
+
.sm\:items-start {
|
|
2607
|
+
@media (width >= 40rem) {
|
|
2608
|
+
align-items: flex-start;
|
|
2609
|
+
}
|
|
2610
|
+
}
|
|
2461
2611
|
.sm\:gap-2\.5 {
|
|
2462
2612
|
@media (width >= 40rem) {
|
|
2463
2613
|
gap: calc(var(--spacing) * 2.5);
|
|
2464
2614
|
}
|
|
2465
2615
|
}
|
|
2616
|
+
.sm\:gap-4 {
|
|
2617
|
+
@media (width >= 40rem) {
|
|
2618
|
+
gap: calc(var(--spacing) * 4);
|
|
2619
|
+
}
|
|
2620
|
+
}
|
|
2466
2621
|
.sm\:px-6 {
|
|
2467
2622
|
@media (width >= 40rem) {
|
|
2468
2623
|
padding-inline: calc(var(--spacing) * 6);
|
|
2469
2624
|
}
|
|
2470
2625
|
}
|
|
2626
|
+
.sm\:pt-2 {
|
|
2627
|
+
@media (width >= 40rem) {
|
|
2628
|
+
padding-top: calc(var(--spacing) * 2);
|
|
2629
|
+
}
|
|
2630
|
+
}
|
|
2471
2631
|
.sm\:pt-6 {
|
|
2472
2632
|
@media (width >= 40rem) {
|
|
2473
2633
|
padding-top: calc(var(--spacing) * 6);
|
|
@@ -2754,6 +2914,38 @@
|
|
|
2754
2914
|
justify-content: center;
|
|
2755
2915
|
}
|
|
2756
2916
|
}
|
|
2917
|
+
.\[\&\>\*\]\:rounded-none {
|
|
2918
|
+
&>* {
|
|
2919
|
+
border-radius: 0;
|
|
2920
|
+
}
|
|
2921
|
+
}
|
|
2922
|
+
.\[\&\>\*\:first-child\]\:rounded-l-md {
|
|
2923
|
+
&>*:first-child {
|
|
2924
|
+
border-top-left-radius: var(--radius-md);
|
|
2925
|
+
border-bottom-left-radius: var(--radius-md);
|
|
2926
|
+
}
|
|
2927
|
+
}
|
|
2928
|
+
.\[\&\>\*\:focus-visible\]\:z-10 {
|
|
2929
|
+
&>*:focus-visible {
|
|
2930
|
+
z-index: 10;
|
|
2931
|
+
}
|
|
2932
|
+
}
|
|
2933
|
+
.\[\&\>\*\:hover\]\:z-10 {
|
|
2934
|
+
&>*:hover {
|
|
2935
|
+
z-index: 10;
|
|
2936
|
+
}
|
|
2937
|
+
}
|
|
2938
|
+
.\[\&\>\*\:last-child\]\:rounded-r-md {
|
|
2939
|
+
&>*:last-child {
|
|
2940
|
+
border-top-right-radius: var(--radius-md);
|
|
2941
|
+
border-bottom-right-radius: var(--radius-md);
|
|
2942
|
+
}
|
|
2943
|
+
}
|
|
2944
|
+
.\[\&\>\*\:not\(\:first-child\)\]\:-ml-px {
|
|
2945
|
+
&>*:not(:first-child) {
|
|
2946
|
+
margin-left: -1px;
|
|
2947
|
+
}
|
|
2948
|
+
}
|
|
2757
2949
|
.\[\&\>\[role\=checkbox\]\]\:translate-y-\[2px\] {
|
|
2758
2950
|
&>[role=checkbox] {
|
|
2759
2951
|
--tw-translate-y: 2px;
|
|
@@ -3240,6 +3432,24 @@
|
|
|
3240
3432
|
background: transparent;
|
|
3241
3433
|
}
|
|
3242
3434
|
}
|
|
3435
|
+
.monaco-editor .suggest-widget, .monaco-editor-hover {
|
|
3436
|
+
border-radius: var(--radius-md);
|
|
3437
|
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
|
|
3438
|
+
font-family: inherit;
|
|
3439
|
+
}
|
|
3440
|
+
.monaco-editor .suggest-widget .monaco-list .monaco-list-row {
|
|
3441
|
+
font-family: inherit;
|
|
3442
|
+
padding: 2px 6px;
|
|
3443
|
+
}
|
|
3444
|
+
.nql-editor-shell .monaco-editor, .nql-editor-shell .monaco-editor .inputarea {
|
|
3445
|
+
font-family: inherit;
|
|
3446
|
+
}
|
|
3447
|
+
.nql-editor-shell .monaco-editor, .nql-editor-shell .monaco-editor .overflow-guard {
|
|
3448
|
+
background: transparent;
|
|
3449
|
+
border: 0;
|
|
3450
|
+
outline: none;
|
|
3451
|
+
box-shadow: none;
|
|
3452
|
+
}
|
|
3243
3453
|
@property --tw-translate-x {
|
|
3244
3454
|
syntax: "*";
|
|
3245
3455
|
inherits: false;
|
|
@@ -3500,21 +3710,6 @@
|
|
|
3500
3710
|
initial-value: "";
|
|
3501
3711
|
inherits: false;
|
|
3502
3712
|
}
|
|
3503
|
-
@property --tw-scale-x {
|
|
3504
|
-
syntax: "*";
|
|
3505
|
-
inherits: false;
|
|
3506
|
-
initial-value: 1;
|
|
3507
|
-
}
|
|
3508
|
-
@property --tw-scale-y {
|
|
3509
|
-
syntax: "*";
|
|
3510
|
-
inherits: false;
|
|
3511
|
-
initial-value: 1;
|
|
3512
|
-
}
|
|
3513
|
-
@property --tw-scale-z {
|
|
3514
|
-
syntax: "*";
|
|
3515
|
-
inherits: false;
|
|
3516
|
-
initial-value: 1;
|
|
3517
|
-
}
|
|
3518
3713
|
@keyframes spin {
|
|
3519
3714
|
to {
|
|
3520
3715
|
transform: rotate(360deg);
|
|
@@ -3601,9 +3796,6 @@
|
|
|
3601
3796
|
--tw-duration: initial;
|
|
3602
3797
|
--tw-ease: initial;
|
|
3603
3798
|
--tw-content: "";
|
|
3604
|
-
--tw-scale-x: 1;
|
|
3605
|
-
--tw-scale-y: 1;
|
|
3606
|
-
--tw-scale-z: 1;
|
|
3607
3799
|
--tw-animation-delay: 0s;
|
|
3608
3800
|
--tw-animation-direction: normal;
|
|
3609
3801
|
--tw-animation-duration: initial;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nubase/frontend",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.37",
|
|
4
4
|
"description": "React components and utilities for nubase",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -38,42 +38,40 @@
|
|
|
38
38
|
"lint": "biome check .",
|
|
39
39
|
"lint:fix": "biome check . --write --unsafe",
|
|
40
40
|
"prepublishOnly": "npm run build",
|
|
41
|
-
"publish:latest": "npm publish --access public",
|
|
42
|
-
"publish:dev": "npm publish --access public --tag dev",
|
|
43
41
|
"watch:ts": "tsup --watch",
|
|
44
42
|
"watch:css": "tailwindcss -i ./src/styles.css -o ./dist/styles.css --watch",
|
|
45
43
|
"storybook": "storybook dev -p 6006",
|
|
46
44
|
"dev": "concurrently \"npm:watch:ts\" \"npm:watch:css\" \"npm:storybook\""
|
|
47
45
|
},
|
|
48
46
|
"peerDependencies": {
|
|
49
|
-
"react": "^19.2.
|
|
47
|
+
"react": "^19.2.5"
|
|
50
48
|
},
|
|
51
49
|
"devDependencies": {
|
|
52
50
|
"@faker-js/faker": "^10.3.0",
|
|
53
|
-
"@storybook/addon-docs": "^10.
|
|
54
|
-
"@storybook/addon-onboarding": "^10.
|
|
55
|
-
"@storybook/addon-themes": "^10.
|
|
56
|
-
"@storybook/react-vite": "^10.
|
|
57
|
-
"@tailwindcss/cli": "^4.2.
|
|
58
|
-
"@tailwindcss/postcss": "^4.2.
|
|
51
|
+
"@storybook/addon-docs": "^10.3.5",
|
|
52
|
+
"@storybook/addon-onboarding": "^10.3.5",
|
|
53
|
+
"@storybook/addon-themes": "^10.3.5",
|
|
54
|
+
"@storybook/react-vite": "^10.3.5",
|
|
55
|
+
"@tailwindcss/cli": "^4.2.4",
|
|
56
|
+
"@tailwindcss/postcss": "^4.2.4",
|
|
59
57
|
"@types/lodash-es": "^4.17.12",
|
|
60
58
|
"@types/react": "^19.2.14",
|
|
61
59
|
"@types/react-grid-layout": "^1.3.6",
|
|
62
60
|
"@types/typo-js": "^1.2.2",
|
|
63
|
-
"@vitejs/plugin-react": "^
|
|
61
|
+
"@vitejs/plugin-react": "^6.0.1",
|
|
64
62
|
"autoprefixer": "^10.4.27",
|
|
65
63
|
"concurrently": "^9.2.1",
|
|
66
64
|
"postcss": "^8.5.8",
|
|
67
|
-
"storybook": "^10.
|
|
68
|
-
"tailwindcss": "^4.2.
|
|
65
|
+
"storybook": "^10.3.5",
|
|
66
|
+
"tailwindcss": "^4.2.4",
|
|
69
67
|
"tsup": "^8.5.1",
|
|
70
68
|
"tw-animate-css": "^1.4.0",
|
|
71
69
|
"typescript": "^5.9.3",
|
|
72
|
-
"vite": "^
|
|
73
|
-
"vitest": "^4.
|
|
70
|
+
"vite": "^8.0.10",
|
|
71
|
+
"vitest": "^4.1.5"
|
|
74
72
|
},
|
|
75
73
|
"dependencies": {
|
|
76
|
-
"@biomejs/biome": "^2.4.
|
|
74
|
+
"@biomejs/biome": "^2.4.13",
|
|
77
75
|
"@headlessui/react": "^2.2.9",
|
|
78
76
|
"@monaco-editor/loader": "^1.7.0",
|
|
79
77
|
"@nubase/core": "*",
|
|
@@ -85,29 +83,31 @@
|
|
|
85
83
|
"@radix-ui/react-slot": "^1.2.4",
|
|
86
84
|
"@radix-ui/react-switch": "^1.2.6",
|
|
87
85
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
86
|
+
"@radix-ui/react-toggle": "^1.1.10",
|
|
87
|
+
"@radix-ui/react-toggle-group": "^1.1.11",
|
|
88
88
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
89
|
-
"@tailwindcss/cli": "^4.2.
|
|
90
|
-
"@tailwindcss/postcss": "^4.2.
|
|
91
|
-
"@tanstack/react-form": "^1.
|
|
92
|
-
"@tanstack/react-query": "^5.
|
|
93
|
-
"@tanstack/react-router": "^1.
|
|
94
|
-
"@tanstack/react-router-devtools": "^1.166.
|
|
89
|
+
"@tailwindcss/cli": "^4.2.4",
|
|
90
|
+
"@tailwindcss/postcss": "^4.2.4",
|
|
91
|
+
"@tanstack/react-form": "^1.29.1",
|
|
92
|
+
"@tanstack/react-query": "^5.100.1",
|
|
93
|
+
"@tanstack/react-router": "^1.168.24",
|
|
94
|
+
"@tanstack/react-router-devtools": "^1.166.13",
|
|
95
95
|
"@tanstack/react-table": "^8.21.3",
|
|
96
96
|
"class-variance-authority": "^0.7.1",
|
|
97
97
|
"clsx": "^2.1.1",
|
|
98
98
|
"downshift": "^9.3.2",
|
|
99
99
|
"lodash-es": "^4.17.22",
|
|
100
100
|
"lucide-react": "^0.577.0",
|
|
101
|
-
"monaco-editor": "^0.
|
|
101
|
+
"monaco-editor": "^0.52.2",
|
|
102
102
|
"monaco-spellchecker": "^0.6.0",
|
|
103
103
|
"postcss": "^8.5.8",
|
|
104
|
-
"react-dom": "^19.2.
|
|
104
|
+
"react-dom": "^19.2.5",
|
|
105
105
|
"react-grid-layout": "^2.2.2",
|
|
106
106
|
"react-hotkeys-hook": "^5.2.4",
|
|
107
107
|
"react-monaco-editor": "^0.59.0",
|
|
108
108
|
"recharts": "^3.8.0",
|
|
109
109
|
"tailwind-merge": "^3.5.0",
|
|
110
|
-
"tailwindcss": "^4.2.
|
|
110
|
+
"tailwindcss": "^4.2.4",
|
|
111
111
|
"typo-js": "^1.3.1",
|
|
112
112
|
"zod": "^4.3.6"
|
|
113
113
|
}
|