@nubase/frontend 0.1.34 → 0.1.35
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.d.mts +89 -9
- package/dist/index.d.ts +89 -9
- package/dist/index.js +6977 -6613
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6913 -6554
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +54 -3
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -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
|
}
|
|
@@ -763,6 +769,9 @@
|
|
|
763
769
|
.w-lg {
|
|
764
770
|
width: var(--container-lg);
|
|
765
771
|
}
|
|
772
|
+
.w-px {
|
|
773
|
+
width: 1px;
|
|
774
|
+
}
|
|
766
775
|
.w-screen {
|
|
767
776
|
width: 100vw;
|
|
768
777
|
}
|
|
@@ -870,6 +879,9 @@
|
|
|
870
879
|
.cursor-text {
|
|
871
880
|
cursor: text;
|
|
872
881
|
}
|
|
882
|
+
.touch-none {
|
|
883
|
+
touch-action: none;
|
|
884
|
+
}
|
|
873
885
|
.resize {
|
|
874
886
|
resize: both;
|
|
875
887
|
}
|
|
@@ -1445,9 +1457,6 @@
|
|
|
1445
1457
|
.pt-1 {
|
|
1446
1458
|
padding-top: calc(var(--spacing) * 1);
|
|
1447
1459
|
}
|
|
1448
|
-
.pt-2 {
|
|
1449
|
-
padding-top: calc(var(--spacing) * 2);
|
|
1450
|
-
}
|
|
1451
1460
|
.pt-3 {
|
|
1452
1461
|
padding-top: calc(var(--spacing) * 3);
|
|
1453
1462
|
}
|
|
@@ -1867,6 +1876,13 @@
|
|
|
1867
1876
|
.slide-in-from-right-full {
|
|
1868
1877
|
--tw-enter-translate-x: calc(1*100%);
|
|
1869
1878
|
}
|
|
1879
|
+
.group-hover\:bg-ring {
|
|
1880
|
+
&:is(:where(.group):hover *) {
|
|
1881
|
+
@media (hover: hover) {
|
|
1882
|
+
background-color: var(--color-ring);
|
|
1883
|
+
}
|
|
1884
|
+
}
|
|
1885
|
+
}
|
|
1870
1886
|
.selection\:bg-primary {
|
|
1871
1887
|
& *::selection {
|
|
1872
1888
|
background-color: var(--color-primary);
|
|
@@ -2223,6 +2239,11 @@
|
|
|
2223
2239
|
}
|
|
2224
2240
|
}
|
|
2225
2241
|
}
|
|
2242
|
+
.focus-visible\:ring-ring {
|
|
2243
|
+
&:focus-visible {
|
|
2244
|
+
--tw-ring-color: var(--color-ring);
|
|
2245
|
+
}
|
|
2246
|
+
}
|
|
2226
2247
|
.focus-visible\:ring-ring\/50 {
|
|
2227
2248
|
&:focus-visible {
|
|
2228
2249
|
--tw-ring-color: var(--color-ring);
|
|
@@ -2458,16 +2479,46 @@
|
|
|
2458
2479
|
display: block;
|
|
2459
2480
|
}
|
|
2460
2481
|
}
|
|
2482
|
+
.sm\:w-\[var\(--schema-form-label-width\,8rem\)\] {
|
|
2483
|
+
@media (width >= 40rem) {
|
|
2484
|
+
width: var(--schema-form-label-width,8rem);
|
|
2485
|
+
}
|
|
2486
|
+
}
|
|
2487
|
+
.sm\:shrink-0 {
|
|
2488
|
+
@media (width >= 40rem) {
|
|
2489
|
+
flex-shrink: 0;
|
|
2490
|
+
}
|
|
2491
|
+
}
|
|
2492
|
+
.sm\:flex-row {
|
|
2493
|
+
@media (width >= 40rem) {
|
|
2494
|
+
flex-direction: row;
|
|
2495
|
+
}
|
|
2496
|
+
}
|
|
2497
|
+
.sm\:items-start {
|
|
2498
|
+
@media (width >= 40rem) {
|
|
2499
|
+
align-items: flex-start;
|
|
2500
|
+
}
|
|
2501
|
+
}
|
|
2461
2502
|
.sm\:gap-2\.5 {
|
|
2462
2503
|
@media (width >= 40rem) {
|
|
2463
2504
|
gap: calc(var(--spacing) * 2.5);
|
|
2464
2505
|
}
|
|
2465
2506
|
}
|
|
2507
|
+
.sm\:gap-4 {
|
|
2508
|
+
@media (width >= 40rem) {
|
|
2509
|
+
gap: calc(var(--spacing) * 4);
|
|
2510
|
+
}
|
|
2511
|
+
}
|
|
2466
2512
|
.sm\:px-6 {
|
|
2467
2513
|
@media (width >= 40rem) {
|
|
2468
2514
|
padding-inline: calc(var(--spacing) * 6);
|
|
2469
2515
|
}
|
|
2470
2516
|
}
|
|
2517
|
+
.sm\:pt-2 {
|
|
2518
|
+
@media (width >= 40rem) {
|
|
2519
|
+
padding-top: calc(var(--spacing) * 2);
|
|
2520
|
+
}
|
|
2521
|
+
}
|
|
2471
2522
|
.sm\:pt-6 {
|
|
2472
2523
|
@media (width >= 40rem) {
|
|
2473
2524
|
padding-top: calc(var(--spacing) * 6);
|