@fileverse/ui 4.1.4-patch-3 → 4.1.4-patch-5
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 +210 -44
- package/dist/index.es.d.ts +20 -1
- package/dist/index.es.js +19851 -17499
- package/package.json +2 -2
package/dist/index.css
CHANGED
|
@@ -433,7 +433,7 @@ video {
|
|
|
433
433
|
--color-bg-default-inverse: 0, 0%, 0%, 1; /* Black */
|
|
434
434
|
--color-bg-tertiary: 195, 10%, 92%, 1; /* Tertiary */
|
|
435
435
|
--color-bg-success-light: 124, 79%, 93%, 1; /* Green-100 */
|
|
436
|
-
|
|
436
|
+
|
|
437
437
|
/* Border */
|
|
438
438
|
--color-border-default: 195, 10%, 92%, 1; /* Gray-200 */
|
|
439
439
|
--color-border-hover: 0, 0%, 0%, 1; /* Black */
|
|
@@ -444,13 +444,14 @@ video {
|
|
|
444
444
|
--color-border-disabled: 206, 9%, 66%, 1; /* Gray-500 */
|
|
445
445
|
|
|
446
446
|
/* Icon */
|
|
447
|
-
--color-icon-default:
|
|
447
|
+
--color-icon-default: 0, 0%, 100%, 1; /* White */
|
|
448
448
|
--color-icon-default-hover: 207, 8%, 23%, 1; /* Gray-950 */
|
|
449
449
|
--color-icon-brand: 52, 100%, 52%, 1; /* Yellow-400 */
|
|
450
450
|
--color-icon-secondary: 208, 8%, 50%, 1; /* Gray-700 */
|
|
451
451
|
--color-icon-disabled: 206, 9%, 66%, 1; /* Gray-500 */
|
|
452
452
|
--color-icon-inverse: 0, 0%, 100%, 1; /* White */
|
|
453
453
|
--color-icon-danger: 354, 96%, 59%, 1; /* Red-500 */
|
|
454
|
+
--color-icon-success: 127, 69%, 29%, 1; /* Green-700 */
|
|
454
455
|
|
|
455
456
|
/* Utility */
|
|
456
457
|
--color-utility-overlay: 0, 0%, 0%, 0.72; /* Black 72% */
|
|
@@ -461,6 +462,67 @@ video {
|
|
|
461
462
|
--shadow-elevation-3: 0px 4px 16px rgba (0, 0, 0, 0.15);
|
|
462
463
|
--shadow-elevation-4: 0px 8px 32px rgba (0, 0, 0, 0.15);
|
|
463
464
|
}
|
|
465
|
+
|
|
466
|
+
.dark {
|
|
467
|
+
/* Button */
|
|
468
|
+
--color-button-default: 0, 0%, 31%, 1; /* Gray-700 */
|
|
469
|
+
--color-button-default-hover: 0, 0%, 25%, 1; /* Gray-800 */
|
|
470
|
+
--color-button-secondary: 0, 0%, 12%, 1; /* Gray-950 */
|
|
471
|
+
--color-button-secondary-hover: 0, 0%, 25%, 1; /* Gray-800 */
|
|
472
|
+
--color-button-disabled: 0, 0%, 31%, 1; /* Gray-200 */
|
|
473
|
+
--color-button-danger: 354, 96%, 59%, 1; /* Red-500 */
|
|
474
|
+
--color-button-danger-hover: 354, 84%, 42%, 1; /* Red-700 */
|
|
475
|
+
--color-button-floating: 0, 0%, 31%, 1; /* Gray-700 */
|
|
476
|
+
--color-button-floating-hover: 0, 0%, 25%, 1; /* Gray-800 */
|
|
477
|
+
|
|
478
|
+
/* Text */
|
|
479
|
+
--color-text-default: 0, 0%, 91%, 1; /* Gray-100 */
|
|
480
|
+
--color-text-secondary: 0, 0%, 53%, 1; /* Gray-400 */
|
|
481
|
+
--color-text-disabled: 0, 0%, 43%, 1; /* Gray-500 */
|
|
482
|
+
--color-text-danger: 354, 100%, 70%, 1; /* Red-400 */
|
|
483
|
+
--color-text-success: 127, 69%, 29%, 1; /* Green-700 */
|
|
484
|
+
--color-text-inverse: 0, 0%, 91%, 1; /* Gray-100 */
|
|
485
|
+
--color-text-link: 251, 100%, 83%, 1; /* Blue-700 */
|
|
486
|
+
|
|
487
|
+
/* Background */
|
|
488
|
+
--color-bg-default: 0, 0%, 18%, 1; /* Gray-900 */
|
|
489
|
+
--color-bg-default-hover: 0, 0%, 25%, 1; /* Gray-800 */
|
|
490
|
+
--color-bg-default-active: 50, 74%, 54%, 1; /* Yellow-400 */
|
|
491
|
+
--color-bg-default-selected: 0, 0%, 25%, 1; /* Gray-800 */
|
|
492
|
+
--color-bg-secondary: 0, 0%, 12%, 1; /* Gray-950 */
|
|
493
|
+
--color-bg-secondary-hover: 0, 0%, 18%, 1; /* Gray-900 */
|
|
494
|
+
--color-bg-disabled: 0, 0%, 53%, 1; /* Gray-400 */
|
|
495
|
+
--color-bg-brand: 50, 74%, 54%, 1; /* Yellow-400 */
|
|
496
|
+
--color-bg-brand-hover: 50, 60%, 45%, 1; /* Yellow-500 */
|
|
497
|
+
--color-bg-brand-light: 57, 92%, 76%, 1; /* Yellow-100 */
|
|
498
|
+
--color-bg-danger: 354, 100%, 89%, 1; /* Red-200 */
|
|
499
|
+
--color-bg-danger-light: 356, 100%, 97%, 1; /* Red-50 */
|
|
500
|
+
--color-bg-default-inverse: 0, 0%, 100%, 1; /* White */
|
|
501
|
+
--color-bg-tertiary: 0, 0%, 25%, 1; /* Gray-800 */
|
|
502
|
+
--color-bg-success-light: 124, 79%, 93%, 1; /* Green-100 */
|
|
503
|
+
|
|
504
|
+
/* Border */
|
|
505
|
+
--color-border-default: 0, 0%, 25%, 1; /* Gray-800 */
|
|
506
|
+
--color-border-hover: 0, 0%, 0%, 1; /* Black */
|
|
507
|
+
--color-border-light: 0, 0%, 100%, 1; /* White */
|
|
508
|
+
--color-border-active: 0, 0%, 100%, 1; /* Black */
|
|
509
|
+
--color-border-focused: 260, 100%, 52%, 1; /* Blue-700 */
|
|
510
|
+
--color-border-danger: 354, 100%, 70%, 1; /* Red-400 */
|
|
511
|
+
--color-border-disabled: 0, 0%, 53%, 1; /* Gray-400 */
|
|
512
|
+
|
|
513
|
+
/* Icon */
|
|
514
|
+
--color-icon-default: 0, 0%, 100%, 1; /* White */
|
|
515
|
+
--color-icon-default-hover: 0, 0%, 12%, 1; /* Gray-900 */
|
|
516
|
+
--color-icon-brand: 50, 74%, 54%, 1; /* Yellow-400 */
|
|
517
|
+
--color-icon-secondary: 0, 0%, 53%, 1; /* Gray-400 */
|
|
518
|
+
--color-icon-disabled: 0, 0%, 25%, 1; /* Gray-800 */
|
|
519
|
+
--color-icon-inverse: 207, 8%, 23%, 1; /* Gray-100 */
|
|
520
|
+
--color-icon-danger: 354, 96%, 59%, 1; /* Red-500 */
|
|
521
|
+
--color-icon-success: 127, 69%, 29%, 1; /* Green-700 */
|
|
522
|
+
|
|
523
|
+
/* Utility */
|
|
524
|
+
--color-utility-overlay: 0, 0%, 0%, 0.72; /* Black 72% */
|
|
525
|
+
}
|
|
464
526
|
* {
|
|
465
527
|
border-color: hsl(var(--color-border-default));
|
|
466
528
|
}
|
|
@@ -707,7 +769,7 @@ video {
|
|
|
707
769
|
}
|
|
708
770
|
|
|
709
771
|
.color-button-secondary {
|
|
710
|
-
background-color: hsl(var(--color-button-
|
|
772
|
+
background-color: hsl(var(--color-button-ghost));
|
|
711
773
|
border: 2px solid hsl(var(--color-border-active));
|
|
712
774
|
}
|
|
713
775
|
|
|
@@ -764,15 +826,15 @@ video {
|
|
|
764
826
|
}
|
|
765
827
|
|
|
766
828
|
.color-icon-default-hover {
|
|
767
|
-
|
|
829
|
+
color: hsl(var(--color-icon-default-hover));
|
|
768
830
|
}
|
|
769
831
|
|
|
770
832
|
.color-icon-brand {
|
|
771
|
-
|
|
833
|
+
color: hsl(var(--color-icon-brand));
|
|
772
834
|
}
|
|
773
835
|
|
|
774
836
|
.color-icon-secondary {
|
|
775
|
-
|
|
837
|
+
color: hsl(var(--color-icon-secondary));
|
|
776
838
|
}
|
|
777
839
|
|
|
778
840
|
.color-icon-disabled {
|
|
@@ -780,7 +842,7 @@ video {
|
|
|
780
842
|
}
|
|
781
843
|
|
|
782
844
|
.color-icon-inverse {
|
|
783
|
-
|
|
845
|
+
color: hsl(var(--color-icon-inverse));
|
|
784
846
|
}
|
|
785
847
|
|
|
786
848
|
.color-utility-overlay {
|
|
@@ -1014,6 +1076,9 @@ video {
|
|
|
1014
1076
|
.relative {
|
|
1015
1077
|
position: relative;
|
|
1016
1078
|
}
|
|
1079
|
+
.sticky {
|
|
1080
|
+
position: sticky;
|
|
1081
|
+
}
|
|
1017
1082
|
.inset-0 {
|
|
1018
1083
|
inset: 0px;
|
|
1019
1084
|
}
|
|
@@ -1100,9 +1165,18 @@ video {
|
|
|
1100
1165
|
.top-3 {
|
|
1101
1166
|
top: 0.75rem;
|
|
1102
1167
|
}
|
|
1168
|
+
.top-4 {
|
|
1169
|
+
top: 1rem;
|
|
1170
|
+
}
|
|
1171
|
+
.top-\[4rem\] {
|
|
1172
|
+
top: 4rem;
|
|
1173
|
+
}
|
|
1103
1174
|
.top-\[50\%\] {
|
|
1104
1175
|
top: 50%;
|
|
1105
1176
|
}
|
|
1177
|
+
.\!z-40 {
|
|
1178
|
+
z-index: 40 !important;
|
|
1179
|
+
}
|
|
1106
1180
|
.z-10 {
|
|
1107
1181
|
z-index: 10;
|
|
1108
1182
|
}
|
|
@@ -1185,6 +1259,9 @@ video {
|
|
|
1185
1259
|
.mt-4 {
|
|
1186
1260
|
margin-top: 1rem;
|
|
1187
1261
|
}
|
|
1262
|
+
.mt-5 {
|
|
1263
|
+
margin-top: 1.25rem;
|
|
1264
|
+
}
|
|
1188
1265
|
.line-clamp-5 {
|
|
1189
1266
|
overflow: hidden;
|
|
1190
1267
|
display: -webkit-box;
|
|
@@ -1257,15 +1334,24 @@ video {
|
|
|
1257
1334
|
.h-6 {
|
|
1258
1335
|
height: 1.5rem;
|
|
1259
1336
|
}
|
|
1337
|
+
.h-7 {
|
|
1338
|
+
height: 1.75rem;
|
|
1339
|
+
}
|
|
1260
1340
|
.h-8 {
|
|
1261
1341
|
height: 2rem;
|
|
1262
1342
|
}
|
|
1263
1343
|
.h-9 {
|
|
1264
1344
|
height: 2.25rem;
|
|
1265
1345
|
}
|
|
1346
|
+
.h-\[120px\] {
|
|
1347
|
+
height: 120px;
|
|
1348
|
+
}
|
|
1266
1349
|
.h-\[18px\] {
|
|
1267
1350
|
height: 18px;
|
|
1268
1351
|
}
|
|
1352
|
+
.h-\[200px\] {
|
|
1353
|
+
height: 200px;
|
|
1354
|
+
}
|
|
1269
1355
|
.h-\[208px\] {
|
|
1270
1356
|
height: 208px;
|
|
1271
1357
|
}
|
|
@@ -1293,6 +1379,9 @@ video {
|
|
|
1293
1379
|
.h-\[68px\] {
|
|
1294
1380
|
height: 68px;
|
|
1295
1381
|
}
|
|
1382
|
+
.h-\[85vh\] {
|
|
1383
|
+
height: 85vh;
|
|
1384
|
+
}
|
|
1296
1385
|
.h-\[calc\(100\%-1rem\)\] {
|
|
1297
1386
|
height: calc(100% - 1rem);
|
|
1298
1387
|
}
|
|
@@ -1339,6 +1428,9 @@ video {
|
|
|
1339
1428
|
.min-h-10 {
|
|
1340
1429
|
min-height: 2.5rem;
|
|
1341
1430
|
}
|
|
1431
|
+
.min-h-7 {
|
|
1432
|
+
min-height: 1.75rem;
|
|
1433
|
+
}
|
|
1342
1434
|
.min-h-9 {
|
|
1343
1435
|
min-height: 2.25rem;
|
|
1344
1436
|
}
|
|
@@ -1357,12 +1449,18 @@ video {
|
|
|
1357
1449
|
.\!w-\[95\%\] {
|
|
1358
1450
|
width: 95% !important;
|
|
1359
1451
|
}
|
|
1452
|
+
.\!w-full {
|
|
1453
|
+
width: 100% !important;
|
|
1454
|
+
}
|
|
1360
1455
|
.w-10 {
|
|
1361
1456
|
width: 2.5rem;
|
|
1362
1457
|
}
|
|
1363
1458
|
.w-11 {
|
|
1364
1459
|
width: 2.75rem;
|
|
1365
1460
|
}
|
|
1461
|
+
.w-12 {
|
|
1462
|
+
width: 3rem;
|
|
1463
|
+
}
|
|
1366
1464
|
.w-16 {
|
|
1367
1465
|
width: 4rem;
|
|
1368
1466
|
}
|
|
@@ -1396,6 +1494,9 @@ video {
|
|
|
1396
1494
|
.w-64 {
|
|
1397
1495
|
width: 16rem;
|
|
1398
1496
|
}
|
|
1497
|
+
.w-7 {
|
|
1498
|
+
width: 1.75rem;
|
|
1499
|
+
}
|
|
1399
1500
|
.w-72 {
|
|
1400
1501
|
width: 18rem;
|
|
1401
1502
|
}
|
|
@@ -1423,9 +1524,15 @@ video {
|
|
|
1423
1524
|
.w-\[18px\] {
|
|
1424
1525
|
width: 18px;
|
|
1425
1526
|
}
|
|
1527
|
+
.w-\[200px\] {
|
|
1528
|
+
width: 200px;
|
|
1529
|
+
}
|
|
1426
1530
|
.w-\[20px\] {
|
|
1427
1531
|
width: 20px;
|
|
1428
1532
|
}
|
|
1533
|
+
.w-\[250px\] {
|
|
1534
|
+
width: 250px;
|
|
1535
|
+
}
|
|
1429
1536
|
.w-\[280px\] {
|
|
1430
1537
|
width: 280px;
|
|
1431
1538
|
}
|
|
@@ -1496,6 +1603,9 @@ video {
|
|
|
1496
1603
|
.min-w-5 {
|
|
1497
1604
|
min-width: 1.25rem;
|
|
1498
1605
|
}
|
|
1606
|
+
.min-w-7 {
|
|
1607
|
+
min-width: 1.75rem;
|
|
1608
|
+
}
|
|
1499
1609
|
.min-w-9 {
|
|
1500
1610
|
min-width: 2.25rem;
|
|
1501
1611
|
}
|
|
@@ -1694,9 +1804,17 @@ video {
|
|
|
1694
1804
|
-moz-user-select: none;
|
|
1695
1805
|
user-select: none;
|
|
1696
1806
|
}
|
|
1807
|
+
.select-text {
|
|
1808
|
+
-webkit-user-select: text;
|
|
1809
|
+
-moz-user-select: text;
|
|
1810
|
+
user-select: text;
|
|
1811
|
+
}
|
|
1697
1812
|
.resize-none {
|
|
1698
1813
|
resize: none;
|
|
1699
1814
|
}
|
|
1815
|
+
.list-disc {
|
|
1816
|
+
list-style-type: disc;
|
|
1817
|
+
}
|
|
1700
1818
|
.appearance-none {
|
|
1701
1819
|
-webkit-appearance: none;
|
|
1702
1820
|
-moz-appearance: none;
|
|
@@ -1711,6 +1829,9 @@ video {
|
|
|
1711
1829
|
.grid-cols-2 {
|
|
1712
1830
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1713
1831
|
}
|
|
1832
|
+
.grid-cols-3 {
|
|
1833
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1834
|
+
}
|
|
1714
1835
|
.flex-row {
|
|
1715
1836
|
flex-direction: row;
|
|
1716
1837
|
}
|
|
@@ -1863,6 +1984,9 @@ video {
|
|
|
1863
1984
|
.\!rounded {
|
|
1864
1985
|
border-radius: 0.25rem !important;
|
|
1865
1986
|
}
|
|
1987
|
+
.\!rounded-lg {
|
|
1988
|
+
border-radius: var(--radius) !important;
|
|
1989
|
+
}
|
|
1866
1990
|
.\!rounded-none {
|
|
1867
1991
|
border-radius: 0px !important;
|
|
1868
1992
|
}
|
|
@@ -1939,9 +2063,6 @@ video {
|
|
|
1939
2063
|
.border-b-2 {
|
|
1940
2064
|
border-bottom-width: 2px;
|
|
1941
2065
|
}
|
|
1942
|
-
.border-b-\[0\.5px\] {
|
|
1943
|
-
border-bottom-width: 0.5px;
|
|
1944
|
-
}
|
|
1945
2066
|
.border-r {
|
|
1946
2067
|
border-right-width: 1px;
|
|
1947
2068
|
}
|
|
@@ -1991,9 +2112,6 @@ video {
|
|
|
1991
2112
|
--tw-bg-opacity: 1;
|
|
1992
2113
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1993
2114
|
}
|
|
1994
|
-
.bg-opacity-50 {
|
|
1995
|
-
--tw-bg-opacity: 0.5;
|
|
1996
|
-
}
|
|
1997
2115
|
.bg-none {
|
|
1998
2116
|
background-image: none;
|
|
1999
2117
|
}
|
|
@@ -2011,12 +2129,18 @@ video {
|
|
|
2011
2129
|
.p-0 {
|
|
2012
2130
|
padding: 0px;
|
|
2013
2131
|
}
|
|
2132
|
+
.p-0\.5 {
|
|
2133
|
+
padding: 0.125rem;
|
|
2134
|
+
}
|
|
2014
2135
|
.p-1 {
|
|
2015
2136
|
padding: 0.25rem;
|
|
2016
2137
|
}
|
|
2017
2138
|
.p-2 {
|
|
2018
2139
|
padding: 0.5rem;
|
|
2019
2140
|
}
|
|
2141
|
+
.p-3 {
|
|
2142
|
+
padding: 0.75rem;
|
|
2143
|
+
}
|
|
2020
2144
|
.p-4 {
|
|
2021
2145
|
padding: 1rem;
|
|
2022
2146
|
}
|
|
@@ -2026,8 +2150,8 @@ video {
|
|
|
2026
2150
|
.p-6 {
|
|
2027
2151
|
padding: 1.5rem;
|
|
2028
2152
|
}
|
|
2029
|
-
.p-\[
|
|
2030
|
-
padding:
|
|
2153
|
+
.p-\[4px\] {
|
|
2154
|
+
padding: 4px;
|
|
2031
2155
|
}
|
|
2032
2156
|
.\!px-0 {
|
|
2033
2157
|
padding-left: 0px !important;
|
|
@@ -2126,6 +2250,9 @@ video {
|
|
|
2126
2250
|
.pl-2 {
|
|
2127
2251
|
padding-left: 0.5rem;
|
|
2128
2252
|
}
|
|
2253
|
+
.pl-6 {
|
|
2254
|
+
padding-left: 1.5rem;
|
|
2255
|
+
}
|
|
2129
2256
|
.pr-10 {
|
|
2130
2257
|
padding-right: 2.5rem;
|
|
2131
2258
|
}
|
|
@@ -2144,9 +2271,6 @@ video {
|
|
|
2144
2271
|
.pt-4 {
|
|
2145
2272
|
padding-top: 1rem;
|
|
2146
2273
|
}
|
|
2147
|
-
.pt-6 {
|
|
2148
|
-
padding-top: 1.5rem;
|
|
2149
|
-
}
|
|
2150
2274
|
.text-left {
|
|
2151
2275
|
text-align: left;
|
|
2152
2276
|
}
|
|
@@ -2203,6 +2327,9 @@ video {
|
|
|
2203
2327
|
.leading-6 {
|
|
2204
2328
|
line-height: 1.5rem;
|
|
2205
2329
|
}
|
|
2330
|
+
.leading-\[20px\] {
|
|
2331
|
+
line-height: 20px;
|
|
2332
|
+
}
|
|
2206
2333
|
.leading-none {
|
|
2207
2334
|
line-height: 1;
|
|
2208
2335
|
}
|
|
@@ -2213,6 +2340,10 @@ video {
|
|
|
2213
2340
|
--tw-text-opacity: 1;
|
|
2214
2341
|
color: rgb(119 129 138 / var(--tw-text-opacity));
|
|
2215
2342
|
}
|
|
2343
|
+
.text-gray-400 {
|
|
2344
|
+
--tw-text-opacity: 1;
|
|
2345
|
+
color: rgb(156 163 175 / var(--tw-text-opacity));
|
|
2346
|
+
}
|
|
2216
2347
|
.text-red-500 {
|
|
2217
2348
|
--tw-text-opacity: 1;
|
|
2218
2349
|
color: rgb(239 68 68 / var(--tw-text-opacity));
|
|
@@ -2282,6 +2413,10 @@ video {
|
|
|
2282
2413
|
.ring-offset-white {
|
|
2283
2414
|
--tw-ring-offset-color: #fff;
|
|
2284
2415
|
}
|
|
2416
|
+
.drop-shadow {
|
|
2417
|
+
--tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
|
|
2418
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
2419
|
+
}
|
|
2285
2420
|
.filter {
|
|
2286
2421
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
2287
2422
|
}
|
|
@@ -2488,10 +2623,6 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2488
2623
|
background-color: hsl(var(--color-bg-secondary-hover));
|
|
2489
2624
|
}
|
|
2490
2625
|
|
|
2491
|
-
.hover\:color-bg-disabled:hover {
|
|
2492
|
-
background-color: hsl(var(--color-bg-disabled));
|
|
2493
|
-
}
|
|
2494
|
-
|
|
2495
2626
|
.hover\:\!color-bg-brand:hover {
|
|
2496
2627
|
background-color: hsl(var(--color-bg-brand)) !important;
|
|
2497
2628
|
}
|
|
@@ -2520,14 +2651,6 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2520
2651
|
border-color: hsl(var(--color-border-hover));
|
|
2521
2652
|
}
|
|
2522
2653
|
|
|
2523
|
-
.focus\:color-text-default:focus {
|
|
2524
|
-
color: hsl(var(--color-text-default));
|
|
2525
|
-
}
|
|
2526
|
-
|
|
2527
|
-
.focus\:color-bg-default-selected:focus {
|
|
2528
|
-
background-color: hsl(var(--color-bg-default-selected));
|
|
2529
|
-
}
|
|
2530
|
-
|
|
2531
2654
|
.focus-visible\:color-border-hover:focus-visible {
|
|
2532
2655
|
border-color: hsl(var(--color-border-hover));
|
|
2533
2656
|
}
|
|
@@ -2592,6 +2715,14 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2592
2715
|
border-color: hsl(var(--color-border-default));
|
|
2593
2716
|
}
|
|
2594
2717
|
|
|
2718
|
+
.group.secondary .group-\[\.secondary\]\:color-border-default {
|
|
2719
|
+
border-color: hsl(var(--color-border-default));
|
|
2720
|
+
}
|
|
2721
|
+
|
|
2722
|
+
.group.success .group-\[\.success\]\:color-border-default {
|
|
2723
|
+
border-color: hsl(var(--color-border-default));
|
|
2724
|
+
}
|
|
2725
|
+
|
|
2595
2726
|
.group.secondary .group-\[\.secondary\]\:color-border-hover {
|
|
2596
2727
|
border-color: hsl(var(--color-border-hover));
|
|
2597
2728
|
}
|
|
@@ -2644,6 +2775,10 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2644
2775
|
background-color: hsl(var(--color-bg-default-selected));
|
|
2645
2776
|
}
|
|
2646
2777
|
|
|
2778
|
+
.data-\[highlighted\]\:color-text-default[data-highlighted] {
|
|
2779
|
+
color: hsl(var(--color-text-default));
|
|
2780
|
+
}
|
|
2781
|
+
|
|
2647
2782
|
.data-\[state\=active\]\:color-text-default[data-state=active] {
|
|
2648
2783
|
color: hsl(var(--color-text-default));
|
|
2649
2784
|
}
|
|
@@ -2652,16 +2787,24 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2652
2787
|
color: hsl(var(--color-text-default));
|
|
2653
2788
|
}
|
|
2654
2789
|
|
|
2790
|
+
.data-\[disabled\]\:color-text-disabled[data-disabled] {
|
|
2791
|
+
color: hsl(var(--color-text-disabled));
|
|
2792
|
+
}
|
|
2793
|
+
|
|
2655
2794
|
.data-\[state\=unchecked\]\:color-bg-default-hover[data-state=unchecked] {
|
|
2656
2795
|
background-color: hsl(var(--color-bg-default-hover));
|
|
2657
2796
|
}
|
|
2658
2797
|
|
|
2798
|
+
.data-\[highlighted\]\:color-bg-default-selected[data-highlighted] {
|
|
2799
|
+
background-color: hsl(var(--color-bg-default-selected));
|
|
2800
|
+
}
|
|
2801
|
+
|
|
2659
2802
|
.data-\[state\=open\]\:color-bg-default-selected[data-state=open] {
|
|
2660
2803
|
background-color: hsl(var(--color-bg-default-selected));
|
|
2661
2804
|
}
|
|
2662
2805
|
|
|
2663
|
-
.data-\[state\=selected\]\:color-bg-
|
|
2664
|
-
background-color: hsl(var(--color-bg-
|
|
2806
|
+
.data-\[state\=selected\]\:color-bg-default-selected[data-state=selected] {
|
|
2807
|
+
background-color: hsl(var(--color-bg-default-selected));
|
|
2665
2808
|
}
|
|
2666
2809
|
|
|
2667
2810
|
.data-\[state\=checked\]\:color-bg-brand-hover[data-state=checked] {
|
|
@@ -2680,6 +2823,14 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2680
2823
|
background-color: hsl(var(--color-bg-brand-hover));
|
|
2681
2824
|
}
|
|
2682
2825
|
|
|
2826
|
+
.dark\:color-bg-disabled:is(.dark *) {
|
|
2827
|
+
background-color: hsl(var(--color-bg-disabled));
|
|
2828
|
+
}
|
|
2829
|
+
|
|
2830
|
+
.dark\:data-\[state\=active\]\:color-border-light[data-state=active]:is(.dark *) {
|
|
2831
|
+
border-color: hsl(var(--color-border-light));
|
|
2832
|
+
}
|
|
2833
|
+
|
|
2683
2834
|
@media (min-width: 1024px) {
|
|
2684
2835
|
|
|
2685
2836
|
.lg\:\!text-heading-2xlg {
|
|
@@ -2716,6 +2867,10 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2716
2867
|
color: hsl(var(--color-text-disabled));
|
|
2717
2868
|
}
|
|
2718
2869
|
|
|
2870
|
+
.\[\&_tr\]\:color-border-default tr {
|
|
2871
|
+
border-color: hsl(var(--color-border-default));
|
|
2872
|
+
}
|
|
2873
|
+
|
|
2719
2874
|
.data-\[state\=unchecked\]\:toggle-default[data-state=unchecked] {
|
|
2720
2875
|
background-color: hsl(var(--color-bg-disabled));
|
|
2721
2876
|
}
|
|
@@ -2756,10 +2911,6 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2756
2911
|
background-color: transparent;
|
|
2757
2912
|
}
|
|
2758
2913
|
|
|
2759
|
-
.hover\:bg-opacity-50:hover {
|
|
2760
|
-
--tw-bg-opacity: 0.5;
|
|
2761
|
-
}
|
|
2762
|
-
|
|
2763
2914
|
.hover\:opacity-90:hover {
|
|
2764
2915
|
opacity: 0.9;
|
|
2765
2916
|
}
|
|
@@ -2972,14 +3123,6 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2972
3123
|
border-color: transparent;
|
|
2973
3124
|
}
|
|
2974
3125
|
|
|
2975
|
-
.data-\[state\=active\]\:bg-none[data-state=active] {
|
|
2976
|
-
background-image: none;
|
|
2977
|
-
}
|
|
2978
|
-
|
|
2979
|
-
.data-\[disabled\]\:opacity-50[data-disabled] {
|
|
2980
|
-
opacity: 0.5;
|
|
2981
|
-
}
|
|
2982
|
-
|
|
2983
3126
|
.data-\[swipe\=move\]\:transition-none[data-swipe=move] {
|
|
2984
3127
|
transition-property: none;
|
|
2985
3128
|
}
|
|
@@ -3138,6 +3281,25 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
3138
3281
|
animation-duration: 500ms;
|
|
3139
3282
|
}
|
|
3140
3283
|
|
|
3284
|
+
.dark\:bg-\[\#000\]:is(.dark *) {
|
|
3285
|
+
--tw-bg-opacity: 1;
|
|
3286
|
+
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
|
3287
|
+
}
|
|
3288
|
+
|
|
3289
|
+
.dark\:stroke-black:is(.dark *) {
|
|
3290
|
+
stroke: #000;
|
|
3291
|
+
}
|
|
3292
|
+
|
|
3293
|
+
.dark\:\!text-\[\#363B3F\]:is(.dark *) {
|
|
3294
|
+
--tw-text-opacity: 1 !important;
|
|
3295
|
+
color: rgb(54 59 63 / var(--tw-text-opacity)) !important;
|
|
3296
|
+
}
|
|
3297
|
+
|
|
3298
|
+
.dark\:text-\[\#363B3F\]:is(.dark *) {
|
|
3299
|
+
--tw-text-opacity: 1;
|
|
3300
|
+
color: rgb(54 59 63 / var(--tw-text-opacity));
|
|
3301
|
+
}
|
|
3302
|
+
|
|
3141
3303
|
@media (min-width: 640px) {
|
|
3142
3304
|
|
|
3143
3305
|
.sm\:max-w-fit {
|
|
@@ -3178,6 +3340,10 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
3178
3340
|
|
|
3179
3341
|
@media (min-width: 768px) {
|
|
3180
3342
|
|
|
3343
|
+
.md\:\!right-4 {
|
|
3344
|
+
right: 1rem !important;
|
|
3345
|
+
}
|
|
3346
|
+
|
|
3181
3347
|
.md\:block {
|
|
3182
3348
|
display: block;
|
|
3183
3349
|
}
|
package/dist/index.es.d.ts
CHANGED
|
@@ -371,7 +371,7 @@ export declare interface DynamicDrawerProps {
|
|
|
371
371
|
dismissible?: boolean;
|
|
372
372
|
}
|
|
373
373
|
|
|
374
|
-
export declare const DynamicDrawerV2:
|
|
374
|
+
export declare const DynamicDrawerV2: ({ title, open, onOpenChange, content, className, headerClassName, contentClassName, side, rounded, dismissible, }: DynamicDrawerV2Props) => JSX_2.Element;
|
|
375
375
|
|
|
376
376
|
export declare interface DynamicDrawerV2Props {
|
|
377
377
|
title?: string;
|
|
@@ -596,6 +596,8 @@ export declare const Popover: React_2.FC<PopoverPrimitive.PopoverProps>;
|
|
|
596
596
|
|
|
597
597
|
export declare const PopoverAnchor: React_2.ForwardRefExoticComponent<PopoverPrimitive.PopoverAnchorProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
598
598
|
|
|
599
|
+
export declare const PopoverClose: React_2.ForwardRefExoticComponent<PopoverPrimitive.PopoverCloseProps & React_2.RefAttributes<HTMLButtonElement>>;
|
|
600
|
+
|
|
599
601
|
export declare const PopoverContent: React_2.ForwardRefExoticComponent<PopoverContentProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
600
602
|
|
|
601
603
|
export declare interface PopoverContentProps extends React_2.ComponentPropsWithoutRef<typeof PopoverPrimitive.Content> {
|
|
@@ -664,6 +666,7 @@ export declare const SheetContent: React_2.ForwardRefExoticComponent<SheetConten
|
|
|
664
666
|
declare interface SheetContentProps extends React_2.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
|
|
665
667
|
overlayClasses?: string;
|
|
666
668
|
dismissible?: boolean;
|
|
669
|
+
hideCloseButton?: boolean;
|
|
667
670
|
}
|
|
668
671
|
|
|
669
672
|
export declare const SheetDescription: React_2.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React_2.RefAttributes<HTMLParagraphElement>, "ref"> & React_2.RefAttributes<HTMLParagraphElement>>;
|
|
@@ -870,6 +873,17 @@ export declare interface TextFieldProps extends React_2.InputHTMLAttributes<HTML
|
|
|
870
873
|
onChange?: (e: React_2.ChangeEvent<HTMLInputElement>) => void;
|
|
871
874
|
}
|
|
872
875
|
|
|
876
|
+
declare type Theme = "light" | "dark";
|
|
877
|
+
|
|
878
|
+
export declare const ThemeProvider: ({ children, defaultTheme, }: ThemeProviderProps) => JSX_2.Element;
|
|
879
|
+
|
|
880
|
+
declare type ThemeProviderProps = {
|
|
881
|
+
children: React.ReactNode;
|
|
882
|
+
defaultTheme?: Theme;
|
|
883
|
+
};
|
|
884
|
+
|
|
885
|
+
export declare const ThemeToggle: () => JSX_2.Element;
|
|
886
|
+
|
|
873
887
|
export declare const Toast: React_2.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastProps & React_2.RefAttributes<HTMLLIElement>, "ref"> & VariantProps<(props?: ({
|
|
874
888
|
variant?: "default" | "danger" | "secondary" | "success" | null | undefined;
|
|
875
889
|
position?: "top-right" | "top-left" | "bottom-right" | "bottom-left" | "center-top" | "center-bottom" | null | undefined;
|
|
@@ -963,6 +977,11 @@ export declare function useSortableData(initialData: TableDataProps[], defaultSo
|
|
|
963
977
|
sortData: (keyName: string) => void;
|
|
964
978
|
};
|
|
965
979
|
|
|
980
|
+
export declare const useTheme: () => {
|
|
981
|
+
theme: Theme;
|
|
982
|
+
toggleTheme: () => void;
|
|
983
|
+
};
|
|
984
|
+
|
|
966
985
|
export declare function useToast(): {
|
|
967
986
|
toast: typeof toast;
|
|
968
987
|
dismiss: (toastId?: string) => void;
|