@mlw-packages/react-components 1.10.17 → 1.10.18
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 +173 -3
- package/dist/index.d.mts +6 -3
- package/dist/index.d.ts +6 -3
- package/dist/index.js +216 -178
- package/dist/index.mjs +216 -178
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -421,6 +421,9 @@ body {
|
|
|
421
421
|
.invisible {
|
|
422
422
|
visibility: hidden;
|
|
423
423
|
}
|
|
424
|
+
.collapse {
|
|
425
|
+
visibility: collapse;
|
|
426
|
+
}
|
|
424
427
|
.static {
|
|
425
428
|
position: static;
|
|
426
429
|
}
|
|
@@ -749,6 +752,9 @@ body {
|
|
|
749
752
|
.-me-2 {
|
|
750
753
|
margin-inline-end: -0.5rem;
|
|
751
754
|
}
|
|
755
|
+
.-mr-0\.5 {
|
|
756
|
+
margin-right: -0.125rem;
|
|
757
|
+
}
|
|
752
758
|
.-mt-1 {
|
|
753
759
|
margin-top: -0.25rem;
|
|
754
760
|
}
|
|
@@ -926,6 +932,10 @@ body {
|
|
|
926
932
|
.aspect-square {
|
|
927
933
|
aspect-ratio: 1 / 1;
|
|
928
934
|
}
|
|
935
|
+
.size-10 {
|
|
936
|
+
width: 2.5rem;
|
|
937
|
+
height: 2.5rem;
|
|
938
|
+
}
|
|
929
939
|
.size-2 {
|
|
930
940
|
width: 0.5rem;
|
|
931
941
|
height: 0.5rem;
|
|
@@ -970,6 +980,10 @@ body {
|
|
|
970
980
|
width: 16rem;
|
|
971
981
|
height: 16rem;
|
|
972
982
|
}
|
|
983
|
+
.size-7 {
|
|
984
|
+
width: 1.75rem;
|
|
985
|
+
height: 1.75rem;
|
|
986
|
+
}
|
|
973
987
|
.size-72 {
|
|
974
988
|
width: 18rem;
|
|
975
989
|
height: 18rem;
|
|
@@ -1222,6 +1236,12 @@ body {
|
|
|
1222
1236
|
.min-h-\[300px\] {
|
|
1223
1237
|
min-height: 300px;
|
|
1224
1238
|
}
|
|
1239
|
+
.min-h-\[360px\] {
|
|
1240
|
+
min-height: 360px;
|
|
1241
|
+
}
|
|
1242
|
+
.min-h-\[36px\] {
|
|
1243
|
+
min-height: 36px;
|
|
1244
|
+
}
|
|
1225
1245
|
.min-h-\[3rem\] {
|
|
1226
1246
|
min-height: 3rem;
|
|
1227
1247
|
}
|
|
@@ -1300,9 +1320,6 @@ body {
|
|
|
1300
1320
|
.w-3\/4 {
|
|
1301
1321
|
width: 75%;
|
|
1302
1322
|
}
|
|
1303
|
-
.w-3\/6 {
|
|
1304
|
-
width: 50%;
|
|
1305
|
-
}
|
|
1306
1323
|
.w-32 {
|
|
1307
1324
|
width: 8rem;
|
|
1308
1325
|
}
|
|
@@ -1423,6 +1440,9 @@ body {
|
|
|
1423
1440
|
.w-\[90\%\] {
|
|
1424
1441
|
width: 90%;
|
|
1425
1442
|
}
|
|
1443
|
+
.w-\[95\%\] {
|
|
1444
|
+
width: 95%;
|
|
1445
|
+
}
|
|
1426
1446
|
.w-\[95vw\] {
|
|
1427
1447
|
width: 95vw;
|
|
1428
1448
|
}
|
|
@@ -1497,9 +1517,15 @@ body {
|
|
|
1497
1517
|
.min-w-\[2rem\] {
|
|
1498
1518
|
min-width: 2rem;
|
|
1499
1519
|
}
|
|
1520
|
+
.min-w-\[540px\] {
|
|
1521
|
+
min-width: 540px;
|
|
1522
|
+
}
|
|
1500
1523
|
.min-w-\[600px\] {
|
|
1501
1524
|
min-width: 600px;
|
|
1502
1525
|
}
|
|
1526
|
+
.min-w-\[80px\] {
|
|
1527
|
+
min-width: 80px;
|
|
1528
|
+
}
|
|
1503
1529
|
.min-w-\[8rem\] {
|
|
1504
1530
|
min-width: 8rem;
|
|
1505
1531
|
}
|
|
@@ -1546,6 +1572,12 @@ body {
|
|
|
1546
1572
|
.max-w-\[1100px\] {
|
|
1547
1573
|
max-width: 1100px;
|
|
1548
1574
|
}
|
|
1575
|
+
.max-w-\[140px\] {
|
|
1576
|
+
max-width: 140px;
|
|
1577
|
+
}
|
|
1578
|
+
.max-w-\[160px\] {
|
|
1579
|
+
max-width: 160px;
|
|
1580
|
+
}
|
|
1549
1581
|
.max-w-\[200px\] {
|
|
1550
1582
|
max-width: 200px;
|
|
1551
1583
|
}
|
|
@@ -1715,6 +1747,11 @@ body {
|
|
|
1715
1747
|
--tw-scale-y: 1.1;
|
|
1716
1748
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1717
1749
|
}
|
|
1750
|
+
.scale-125 {
|
|
1751
|
+
--tw-scale-x: 1.25;
|
|
1752
|
+
--tw-scale-y: 1.25;
|
|
1753
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1754
|
+
}
|
|
1718
1755
|
.scale-\[1\.02\] {
|
|
1719
1756
|
--tw-scale-x: 1.02;
|
|
1720
1757
|
--tw-scale-y: 1.02;
|
|
@@ -1745,6 +1782,9 @@ body {
|
|
|
1745
1782
|
.cursor-context-menu {
|
|
1746
1783
|
cursor: context-menu;
|
|
1747
1784
|
}
|
|
1785
|
+
.cursor-crosshair {
|
|
1786
|
+
cursor: crosshair;
|
|
1787
|
+
}
|
|
1748
1788
|
.cursor-default {
|
|
1749
1789
|
cursor: default;
|
|
1750
1790
|
}
|
|
@@ -1769,6 +1809,9 @@ body {
|
|
|
1769
1809
|
.cursor-pointer {
|
|
1770
1810
|
cursor: pointer;
|
|
1771
1811
|
}
|
|
1812
|
+
.cursor-text {
|
|
1813
|
+
cursor: text;
|
|
1814
|
+
}
|
|
1772
1815
|
.touch-none {
|
|
1773
1816
|
touch-action: none;
|
|
1774
1817
|
}
|
|
@@ -2210,6 +2253,9 @@ body {
|
|
|
2210
2253
|
.border-b {
|
|
2211
2254
|
border-bottom-width: 1px;
|
|
2212
2255
|
}
|
|
2256
|
+
.border-b-0 {
|
|
2257
|
+
border-bottom-width: 0px;
|
|
2258
|
+
}
|
|
2213
2259
|
.border-b-2 {
|
|
2214
2260
|
border-bottom-width: 2px;
|
|
2215
2261
|
}
|
|
@@ -2231,6 +2277,9 @@ body {
|
|
|
2231
2277
|
.border-t {
|
|
2232
2278
|
border-top-width: 1px;
|
|
2233
2279
|
}
|
|
2280
|
+
.border-t-0 {
|
|
2281
|
+
border-top-width: 0px;
|
|
2282
|
+
}
|
|
2234
2283
|
.border-t-2 {
|
|
2235
2284
|
border-top-width: 2px;
|
|
2236
2285
|
}
|
|
@@ -2292,12 +2341,19 @@ body {
|
|
|
2292
2341
|
.border-border\/50 {
|
|
2293
2342
|
border-color: hsl(var(--border) / 0.5);
|
|
2294
2343
|
}
|
|
2344
|
+
.border-border\/60 {
|
|
2345
|
+
border-color: hsl(var(--border) / 0.6);
|
|
2346
|
+
}
|
|
2295
2347
|
.border-border\/70 {
|
|
2296
2348
|
border-color: hsl(var(--border) / 0.7);
|
|
2297
2349
|
}
|
|
2298
2350
|
.border-cyan-200\/70 {
|
|
2299
2351
|
border-color: rgb(165 243 252 / 0.7);
|
|
2300
2352
|
}
|
|
2353
|
+
.border-cyan-300 {
|
|
2354
|
+
--tw-border-opacity: 1;
|
|
2355
|
+
border-color: rgb(103 232 249 / var(--tw-border-opacity, 1));
|
|
2356
|
+
}
|
|
2301
2357
|
.border-destructive {
|
|
2302
2358
|
border-color: hsl(var(--destructive));
|
|
2303
2359
|
}
|
|
@@ -2318,6 +2374,12 @@ body {
|
|
|
2318
2374
|
.border-emerald-500\/10 {
|
|
2319
2375
|
border-color: rgb(16 185 129 / 0.1);
|
|
2320
2376
|
}
|
|
2377
|
+
.border-foreground\/20 {
|
|
2378
|
+
border-color: hsl(var(--foreground) / 0.2);
|
|
2379
|
+
}
|
|
2380
|
+
.border-foreground\/70 {
|
|
2381
|
+
border-color: hsl(var(--foreground) / 0.7);
|
|
2382
|
+
}
|
|
2321
2383
|
.border-fuchsia-200\/70 {
|
|
2322
2384
|
border-color: rgb(245 208 254 / 0.7);
|
|
2323
2385
|
}
|
|
@@ -2372,6 +2434,10 @@ body {
|
|
|
2372
2434
|
.border-orange-200\/70 {
|
|
2373
2435
|
border-color: rgb(254 215 170 / 0.7);
|
|
2374
2436
|
}
|
|
2437
|
+
.border-orange-300 {
|
|
2438
|
+
--tw-border-opacity: 1;
|
|
2439
|
+
border-color: rgb(253 186 116 / var(--tw-border-opacity, 1));
|
|
2440
|
+
}
|
|
2375
2441
|
.border-orange-400 {
|
|
2376
2442
|
--tw-border-opacity: 1;
|
|
2377
2443
|
border-color: rgb(251 146 60 / var(--tw-border-opacity, 1));
|
|
@@ -2388,6 +2454,9 @@ body {
|
|
|
2388
2454
|
.border-primary\/50 {
|
|
2389
2455
|
border-color: hsl(var(--primary) / 0.5);
|
|
2390
2456
|
}
|
|
2457
|
+
.border-primary\/60 {
|
|
2458
|
+
border-color: hsl(var(--primary) / 0.6);
|
|
2459
|
+
}
|
|
2391
2460
|
.border-primary\/70 {
|
|
2392
2461
|
border-color: hsl(var(--primary) / 0.7);
|
|
2393
2462
|
}
|
|
@@ -2469,6 +2538,10 @@ body {
|
|
|
2469
2538
|
--tw-border-opacity: 1;
|
|
2470
2539
|
border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
|
|
2471
2540
|
}
|
|
2541
|
+
.border-yellow-300 {
|
|
2542
|
+
--tw-border-opacity: 1;
|
|
2543
|
+
border-color: rgb(253 224 71 / var(--tw-border-opacity, 1));
|
|
2544
|
+
}
|
|
2472
2545
|
.border-zinc-300 {
|
|
2473
2546
|
--tw-border-opacity: 1;
|
|
2474
2547
|
border-color: rgb(212 212 216 / var(--tw-border-opacity, 1));
|
|
@@ -2618,6 +2691,12 @@ body {
|
|
|
2618
2691
|
.bg-border {
|
|
2619
2692
|
background-color: hsl(var(--border));
|
|
2620
2693
|
}
|
|
2694
|
+
.bg-border\/50 {
|
|
2695
|
+
background-color: hsl(var(--border) / 0.5);
|
|
2696
|
+
}
|
|
2697
|
+
.bg-border\/60 {
|
|
2698
|
+
background-color: hsl(var(--border) / 0.6);
|
|
2699
|
+
}
|
|
2621
2700
|
.bg-card {
|
|
2622
2701
|
background-color: hsl(var(--card));
|
|
2623
2702
|
}
|
|
@@ -2687,6 +2766,12 @@ body {
|
|
|
2687
2766
|
.bg-foreground {
|
|
2688
2767
|
background-color: hsl(var(--foreground));
|
|
2689
2768
|
}
|
|
2769
|
+
.bg-foreground\/10 {
|
|
2770
|
+
background-color: hsl(var(--foreground) / 0.1);
|
|
2771
|
+
}
|
|
2772
|
+
.bg-foreground\/5 {
|
|
2773
|
+
background-color: hsl(var(--foreground) / 0.05);
|
|
2774
|
+
}
|
|
2690
2775
|
.bg-fuchsia-100 {
|
|
2691
2776
|
--tw-bg-opacity: 1;
|
|
2692
2777
|
background-color: rgb(250 232 255 / var(--tw-bg-opacity, 1));
|
|
@@ -3479,6 +3564,10 @@ body {
|
|
|
3479
3564
|
padding-left: 0.75rem;
|
|
3480
3565
|
padding-right: 0.75rem;
|
|
3481
3566
|
}
|
|
3567
|
+
.px-3\.5 {
|
|
3568
|
+
padding-left: 0.875rem;
|
|
3569
|
+
padding-right: 0.875rem;
|
|
3570
|
+
}
|
|
3482
3571
|
.px-4 {
|
|
3483
3572
|
padding-left: 1rem;
|
|
3484
3573
|
padding-right: 1rem;
|
|
@@ -3907,6 +3996,10 @@ body {
|
|
|
3907
3996
|
.text-current {
|
|
3908
3997
|
color: currentColor;
|
|
3909
3998
|
}
|
|
3999
|
+
.text-cyan-600 {
|
|
4000
|
+
--tw-text-opacity: 1;
|
|
4001
|
+
color: rgb(8 145 178 / var(--tw-text-opacity, 1));
|
|
4002
|
+
}
|
|
3910
4003
|
.text-cyan-900 {
|
|
3911
4004
|
--tw-text-opacity: 1;
|
|
3912
4005
|
color: rgb(22 78 99 / var(--tw-text-opacity, 1));
|
|
@@ -3917,6 +4010,9 @@ body {
|
|
|
3917
4010
|
.text-destructive-foreground {
|
|
3918
4011
|
color: hsl(var(--destructive-foreground));
|
|
3919
4012
|
}
|
|
4013
|
+
.text-destructive\/60 {
|
|
4014
|
+
color: hsl(var(--destructive) / 0.6);
|
|
4015
|
+
}
|
|
3920
4016
|
.text-emerald-500 {
|
|
3921
4017
|
--tw-text-opacity: 1;
|
|
3922
4018
|
color: rgb(16 185 129 / var(--tw-text-opacity, 1));
|
|
@@ -3939,6 +4035,15 @@ body {
|
|
|
3939
4035
|
.text-foreground {
|
|
3940
4036
|
color: hsl(var(--foreground));
|
|
3941
4037
|
}
|
|
4038
|
+
.text-foreground\/30 {
|
|
4039
|
+
color: hsl(var(--foreground) / 0.3);
|
|
4040
|
+
}
|
|
4041
|
+
.text-foreground\/40 {
|
|
4042
|
+
color: hsl(var(--foreground) / 0.4);
|
|
4043
|
+
}
|
|
4044
|
+
.text-foreground\/60 {
|
|
4045
|
+
color: hsl(var(--foreground) / 0.6);
|
|
4046
|
+
}
|
|
3942
4047
|
.text-foreground\/70 {
|
|
3943
4048
|
color: hsl(var(--foreground) / 0.7);
|
|
3944
4049
|
}
|
|
@@ -4095,6 +4200,9 @@ body {
|
|
|
4095
4200
|
.text-primary-foreground\/60 {
|
|
4096
4201
|
color: hsl(var(--primary-foreground) / 0.6);
|
|
4097
4202
|
}
|
|
4203
|
+
.text-primary\/60 {
|
|
4204
|
+
color: hsl(var(--primary) / 0.6);
|
|
4205
|
+
}
|
|
4098
4206
|
.text-primary\/70 {
|
|
4099
4207
|
color: hsl(var(--primary) / 0.7);
|
|
4100
4208
|
}
|
|
@@ -4250,6 +4358,9 @@ body {
|
|
|
4250
4358
|
.no-underline {
|
|
4251
4359
|
text-decoration-line: none;
|
|
4252
4360
|
}
|
|
4361
|
+
.underline-offset-2 {
|
|
4362
|
+
text-underline-offset: 2px;
|
|
4363
|
+
}
|
|
4253
4364
|
.underline-offset-4 {
|
|
4254
4365
|
text-underline-offset: 4px;
|
|
4255
4366
|
}
|
|
@@ -4268,6 +4379,9 @@ body {
|
|
|
4268
4379
|
.opacity-15 {
|
|
4269
4380
|
opacity: 0.15;
|
|
4270
4381
|
}
|
|
4382
|
+
.opacity-30 {
|
|
4383
|
+
opacity: 0.3;
|
|
4384
|
+
}
|
|
4271
4385
|
.opacity-40 {
|
|
4272
4386
|
opacity: 0.4;
|
|
4273
4387
|
}
|
|
@@ -4316,6 +4430,14 @@ body {
|
|
|
4316
4430
|
var(--tw-ring-shadow, 0 0 #0000),
|
|
4317
4431
|
var(--tw-shadow);
|
|
4318
4432
|
}
|
|
4433
|
+
.shadow-\[0_2px_16px_rgba\(0\,0\,0\,0\.06\)\] {
|
|
4434
|
+
--tw-shadow: 0 2px 16px rgba(0,0,0,0.06);
|
|
4435
|
+
--tw-shadow-colored: 0 2px 16px var(--tw-shadow-color);
|
|
4436
|
+
box-shadow:
|
|
4437
|
+
var(--tw-ring-offset-shadow, 0 0 #0000),
|
|
4438
|
+
var(--tw-ring-shadow, 0 0 #0000),
|
|
4439
|
+
var(--tw-shadow);
|
|
4440
|
+
}
|
|
4319
4441
|
.shadow-\[0_6px_18px_rgba\(0\,0\,0\,0\.12\)\] {
|
|
4320
4442
|
--tw-shadow: 0 6px 18px rgba(0,0,0,0.12);
|
|
4321
4443
|
--tw-shadow-colored: 0 6px 18px var(--tw-shadow-color);
|
|
@@ -5105,6 +5227,18 @@ body {
|
|
|
5105
5227
|
--tw-bg-opacity: 1;
|
|
5106
5228
|
background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
|
|
5107
5229
|
}
|
|
5230
|
+
.empty\:before\:pointer-events-none:empty::before {
|
|
5231
|
+
content: var(--tw-content);
|
|
5232
|
+
pointer-events: none;
|
|
5233
|
+
}
|
|
5234
|
+
.empty\:before\:text-muted-foreground\/40:empty::before {
|
|
5235
|
+
content: var(--tw-content);
|
|
5236
|
+
color: hsl(var(--muted-foreground) / 0.4);
|
|
5237
|
+
}
|
|
5238
|
+
.empty\:before\:content-\[attr\(data-placeholder\)\]:empty::before {
|
|
5239
|
+
--tw-content: attr(data-placeholder);
|
|
5240
|
+
content: var(--tw-content);
|
|
5241
|
+
}
|
|
5108
5242
|
.focus-within\:relative:focus-within {
|
|
5109
5243
|
position: relative;
|
|
5110
5244
|
}
|
|
@@ -5133,6 +5267,9 @@ body {
|
|
|
5133
5267
|
.focus-within\:ring-destructive:focus-within {
|
|
5134
5268
|
--tw-ring-color: hsl(var(--destructive));
|
|
5135
5269
|
}
|
|
5270
|
+
.focus-within\:ring-primary\/15:focus-within {
|
|
5271
|
+
--tw-ring-color: hsl(var(--primary) / 0.15);
|
|
5272
|
+
}
|
|
5136
5273
|
.focus-within\:ring-ring\/50:focus-within {
|
|
5137
5274
|
--tw-ring-color: hsl(var(--ring) / 0.5);
|
|
5138
5275
|
}
|
|
@@ -5203,6 +5340,9 @@ body {
|
|
|
5203
5340
|
.hover\:bg-background\/20:hover {
|
|
5204
5341
|
background-color: hsl(var(--background) / 0.2);
|
|
5205
5342
|
}
|
|
5343
|
+
.hover\:bg-background\/40:hover {
|
|
5344
|
+
background-color: hsl(var(--background) / 0.4);
|
|
5345
|
+
}
|
|
5206
5346
|
.hover\:bg-black\/70:hover {
|
|
5207
5347
|
background-color: rgb(0 0 0 / 0.7);
|
|
5208
5348
|
}
|
|
@@ -5226,6 +5366,9 @@ body {
|
|
|
5226
5366
|
.hover\:bg-destructive\/10:hover {
|
|
5227
5367
|
background-color: hsl(var(--destructive) / 0.1);
|
|
5228
5368
|
}
|
|
5369
|
+
.hover\:bg-destructive\/5:hover {
|
|
5370
|
+
background-color: hsl(var(--destructive) / 0.05);
|
|
5371
|
+
}
|
|
5229
5372
|
.hover\:bg-destructive\/90:hover {
|
|
5230
5373
|
background-color: hsl(var(--destructive) / 0.9);
|
|
5231
5374
|
}
|
|
@@ -5290,6 +5433,9 @@ body {
|
|
|
5290
5433
|
.hover\:bg-muted\/20:hover {
|
|
5291
5434
|
background-color: hsl(var(--muted) / 0.2);
|
|
5292
5435
|
}
|
|
5436
|
+
.hover\:bg-muted\/30:hover {
|
|
5437
|
+
background-color: hsl(var(--muted) / 0.3);
|
|
5438
|
+
}
|
|
5293
5439
|
.hover\:bg-muted\/5:hover {
|
|
5294
5440
|
background-color: hsl(var(--muted) / 0.05);
|
|
5295
5441
|
}
|
|
@@ -5417,6 +5563,12 @@ body {
|
|
|
5417
5563
|
.hover\:text-foreground:hover {
|
|
5418
5564
|
color: hsl(var(--foreground));
|
|
5419
5565
|
}
|
|
5566
|
+
.hover\:text-foreground\/70:hover {
|
|
5567
|
+
color: hsl(var(--foreground) / 0.7);
|
|
5568
|
+
}
|
|
5569
|
+
.hover\:text-foreground\/80:hover {
|
|
5570
|
+
color: hsl(var(--foreground) / 0.8);
|
|
5571
|
+
}
|
|
5420
5572
|
.hover\:text-primary:hover {
|
|
5421
5573
|
color: hsl(var(--primary));
|
|
5422
5574
|
}
|
|
@@ -5450,6 +5602,9 @@ body {
|
|
|
5450
5602
|
.hover\:underline:hover {
|
|
5451
5603
|
text-decoration-line: underline;
|
|
5452
5604
|
}
|
|
5605
|
+
.hover\:\!opacity-80:hover {
|
|
5606
|
+
opacity: 0.8 !important;
|
|
5607
|
+
}
|
|
5453
5608
|
.hover\:opacity-100:hover {
|
|
5454
5609
|
opacity: 1;
|
|
5455
5610
|
}
|
|
@@ -5729,6 +5884,9 @@ body {
|
|
|
5729
5884
|
.disabled\:bg-muted\/30:disabled {
|
|
5730
5885
|
background-color: hsl(var(--muted) / 0.3);
|
|
5731
5886
|
}
|
|
5887
|
+
.disabled\:opacity-20:disabled {
|
|
5888
|
+
opacity: 0.2;
|
|
5889
|
+
}
|
|
5732
5890
|
.disabled\:opacity-50:disabled {
|
|
5733
5891
|
opacity: 0.5;
|
|
5734
5892
|
}
|
|
@@ -5806,6 +5964,9 @@ body {
|
|
|
5806
5964
|
.group:hover .group-hover\:opacity-100 {
|
|
5807
5965
|
opacity: 1;
|
|
5808
5966
|
}
|
|
5967
|
+
.group:hover .group-hover\:opacity-40 {
|
|
5968
|
+
opacity: 0.4;
|
|
5969
|
+
}
|
|
5809
5970
|
.group.toast .group-\[\.toast\]\:text-neutral-600 {
|
|
5810
5971
|
--tw-text-opacity: 1;
|
|
5811
5972
|
color: rgb(82 82 82 / var(--tw-text-opacity, 1));
|
|
@@ -7434,6 +7595,9 @@ body {
|
|
|
7434
7595
|
.sm\:max-w-\[425px\] {
|
|
7435
7596
|
max-width: 425px;
|
|
7436
7597
|
}
|
|
7598
|
+
.sm\:max-w-lg {
|
|
7599
|
+
max-width: 32rem;
|
|
7600
|
+
}
|
|
7437
7601
|
.sm\:max-w-md {
|
|
7438
7602
|
max-width: 28rem;
|
|
7439
7603
|
}
|
|
@@ -8001,6 +8165,12 @@ body {
|
|
|
8001
8165
|
.\[\&_\[cmdk-item\]_svg\]\:w-5 [cmdk-item] svg {
|
|
8002
8166
|
width: 1.25rem;
|
|
8003
8167
|
}
|
|
8168
|
+
.\[\&_a\]\:text-primary a {
|
|
8169
|
+
color: hsl(var(--primary));
|
|
8170
|
+
}
|
|
8171
|
+
.\[\&_a\]\:underline a {
|
|
8172
|
+
text-decoration-line: underline;
|
|
8173
|
+
}
|
|
8004
8174
|
.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-3 svg:not([class*=size-]) {
|
|
8005
8175
|
width: 0.75rem;
|
|
8006
8176
|
height: 0.75rem;
|
package/dist/index.d.mts
CHANGED
|
@@ -79,13 +79,15 @@ declare const badgeVariants: (props?: ({
|
|
|
79
79
|
size?: "sm" | "lg" | "md" | null | undefined;
|
|
80
80
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
81
81
|
type BadgeColorType = "green" | "gray" | "red" | "yellow" | "blue" | "purple";
|
|
82
|
+
type BadgeRankType = "diamond" | "gold" | "silver" | "bronze";
|
|
82
83
|
interface BadgeBaseProps extends ComponentProps<"span">, VariantProps<typeof badgeVariants> {
|
|
83
84
|
asChild?: boolean;
|
|
84
85
|
color?: BadgeColorType;
|
|
86
|
+
rank?: BadgeRankType;
|
|
85
87
|
size?: "sm" | "md" | "lg";
|
|
86
88
|
status?: string;
|
|
87
89
|
}
|
|
88
|
-
declare function Badge({ className, color, size, asChild, children, style, ...props }: BadgeBaseProps): react_jsx_runtime.JSX.Element;
|
|
90
|
+
declare function Badge({ className, color, rank, size, asChild, children, style, ...props }: BadgeBaseProps): react_jsx_runtime.JSX.Element;
|
|
89
91
|
|
|
90
92
|
type CalendarProps = React$1.ComponentProps<typeof DayPicker>;
|
|
91
93
|
declare function CalendarBase({ className, classNames, showOutsideDays, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
|
|
@@ -812,8 +814,9 @@ interface DateTimePickerProps extends ErrorMessageProps {
|
|
|
812
814
|
className?: string;
|
|
813
815
|
error?: string;
|
|
814
816
|
hideClear?: boolean;
|
|
817
|
+
triggerIcon?: boolean;
|
|
815
818
|
}
|
|
816
|
-
declare function DateTimePicker({ label, date, onChange, onConfirm, displayFormat, hideTime, hideSeconds, fromDate, toDate, disabled, className, error, hideClear, }: DateTimePickerProps): react_jsx_runtime.JSX.Element;
|
|
819
|
+
declare function DateTimePicker({ label, date, onChange, onConfirm, displayFormat, hideTime, hideSeconds, fromDate, toDate, disabled, className, error, hideClear, triggerIcon, }: DateTimePickerProps): react_jsx_runtime.JSX.Element;
|
|
817
820
|
|
|
818
821
|
interface RangePickerProps extends ErrorMessageProps {
|
|
819
822
|
value?: DateRange;
|
|
@@ -2671,4 +2674,4 @@ declare const useDrag: (options?: UseDragOptions) => {
|
|
|
2671
2674
|
isDragging: boolean;
|
|
2672
2675
|
};
|
|
2673
2676
|
|
|
2674
|
-
export { AddButton, Agenda, AgendaDaysToShow, AgendaDaysToShowAgenda, AgendaView, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarCombobox, type AvatarComboboxItem, type AvatarComboboxProps, type AvatarComboboxPropsWithGroupItems, type AvatarComboboxPropsWithItems, type AvatarComboboxTestIds, AvatarFallbackBase, AvatarImageBase, BackButton, Badge, type BadgeColorType, type BannerProps, type BiaxialConfig, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, Brush, ButtonBase, ButtonGroupBase, type ButtonProps, CENTER_INDEX, CalendarBase, CalendarDndProvider, CalendarDndProviderAgenda, type CalendarEvent, type CalendarEventAgenda, type CalendarProps, type CalendarView, type CalendarViewAgenda, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, CarouselBase, type CarouselBaseProps, type CarouselItem, ChangeButton, Chart, ChartControls, type ChartData$3 as ChartData, ChartHeader, type ChartHooksArgs, type ChartProps, ChartTotalLegend, CheckButton, CheckboxBase, CheckboxTree, CircularProgress, type CircularProgressProps, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDebouncedInputBase, CommandDialogBase, CommandEmptyBase, type CommandGroup, CommandGroupBase, CommandInputBase, type CommandItem, CommandItemBase, CommandItemRow, CommandListBase, CommandPalette, type CommandPaletteProps, CommandSeparatorBase, CommandShortcutBase, type Connection, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, ControlledCombobox, type ControlledComboboxItem, type ControlledComboboxProps, type ControlledComboboxTestIds, CopyButton, type DataMapper, DateTimePicker, DayView, DayViewAgenda, DebouncedInput, type DebouncedInputProps, type DefaultAvatarComboboxProps, DefaultEndHour, DefaultEndHourAgenda, type DefaultMultiSelectProps, type DefaultSelectProps, DefaultStartHour, DefaultStartHourAgenda, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, DownloadButton, DraggableEvent, DraggableTooltip, DrawerBase, DrawerCloseBase, DrawerContentBase, DrawerDescriptionBase, DrawerFooterBase, DrawerHeaderBase, DrawerOverlayBase, DrawerPortalBase, DrawerTitleBase, DrawerTriggerBase, DropDownMenuBase, DropDownMenuCheckboxItemBase, DropDownMenuContentBase, DropDownMenuGroupBase, DropDownMenuItemBase, DropDownMenuLabelBase, DropDownMenuPortalBase, DropDownMenuRadioGroupBase, DropDownMenuRadioItemBase, DropDownMenuSeparatorBase, DropDownMenuShortcutBase, DropDownMenuSubBase, DropDownMenuSubContentBase, DropDownMenuSubTriggerBase, DropDownMenuTriggerBase, DroppableCell, DroppableCellAgenda, EditButton, EndHour, EndHourAgenda, ErrorMessage, EventAgenda, EventCalendar, type EventColor, type EventColorAgenda, EventDetailModalAgenda, EventDialog, EventGap, EventGapAgenda, EventHeight, EventHeightAgenda, EventItem, EventItemAgenda, EventsPopup, FavoriteButton, FileAccept, FileUploader, type FileUploaderProps, type FileWithPreview, type FilesAccepted, FilterButton, type FinalValueFormatter, GroupLabel, HideButton, Highlights, HorizontalChart, HorizontalLegend, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, ITEM_HEIGHT, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, type Integration, type IntegrationConnection, type IntegrationData, IntegrationModal, type IntegrationModalProps, type IntegrationProperties, type IntegrationProps, Kbd, KbdGroup, LabelBase, type LabelListContent, Leaderboard, type LeaderboardItem, type LeaderboardProps, type LegendItem, LikeButton, LoadingBase, LockButton, type MapperConfig, type MapperConfigEntry, type Margins, type MenuItem, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MonthView, MonthViewAgenda, MoreButton, MultiCombobox, type MultiComboboxProps, type MultiComboboxTestIds, MultiDayOverlay, MultiSelect, MultiSelectBase, MultiSelectContentBase, type MultiSelectContextType, MultiSelectGroupBase, type MultiSelectItem, MultiSelectItemBase, type MultiSelectProps, type MultiSelectPropsWithGroupItems, type MultiSelectPropsWithItems, MultiSelectSeparatorBase, type MultiSelectTestIds, MultiSelectTriggerBase, MultiSelectValueBase, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, type Neo4jIntegration, type Neo4jNode, type Neo4jRelationship, type NewSelectProps, NoData, type Node, NotificationButton, NumericInput, type Padding, type Period, PeriodsDropdown, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, type Position$1 as Position, type Primitive, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, type PropsLabelList, RadialMenu, RangePicker, type RangePickerProps, RefreshButton, type Relationship, SaveButton, ScrollAreaBase, ScrollBarBase, SearchButton, Select, SelectBase, SelectContentBase, SelectEmpty, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, type SelectPropsWithGroupItems, type SelectPropsWithItems, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, type SelectTestIds, SelectTriggerBase, SelectValueBase, SeparatorBase, type SeriesConfig, type SeriesCounts, type SeriesEntry, type SeriesOrder, type SeriesProp, SettingsButton, SheetBase, SheetCloseBase, SheetContentBase, SheetDescriptionBase, SheetFooterBase, SheetHeaderBase, SheetOverlayBase, SheetPortalBase, SheetTitleBase, SheetTriggerBase, ShowOnly, SidebarBase, SidebarContentBase, SidebarFooterBase, SidebarGroupActionBase, SidebarGroupBase, SidebarGroupContentBase, SidebarGroupLabelBase, SidebarHeaderBase, SidebarInputBase, SidebarInsetBase, SidebarMenuActionBase, SidebarMenuBadgeBase, SidebarMenuBase, SidebarMenuButtonBase, SidebarMenuItemBase, SidebarMenuSkeletonBase, SidebarMenuSubBase, SidebarMenuSubButtonBase, SidebarMenuSubItemBase, SidebarProviderBase, SidebarRailBase, SidebarSeparatorBase, SidebarTriggerBase, SkeletonBase, SlideBase, type SliderBaseProps, StartHour, StartHourAgenda, StatusIndicator, type StatusProps, SwitchBase, type SystemData, SystemTooltip, TableBase, TableBodyBase, TableCaptionBase, TableCellBase, TableFooterBase, TableHeadBase, TableHeaderBase, TableRowBase, TabsBase, TabsContentBase, TabsListBase, TabsTriggerBase, TextAreaBase, type TextAreaBaseProps, type Theme, ThemeProviderBase, TimePicker, TimePickerInput, type TimePickerInputProps, type TimePickerType, TimeSeries, type TimeSeriesConfig, Toaster, type TooltipAdaptedRow, TooltipBase, TooltipContentBase, type TooltipItem$2 as TooltipItem, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UndatedEvents, UniversalTooltipRenderer, UnlockButton, UploadButton, UseSideBarBase, VISIBLE_ITEMS, type ValueFormatter, type ValueFormatterType, ViewButton, VisibilityButton, WeekCellsHeight, WeekCellsHeightAgenda, WeekView, WeekViewAgenda, type XAxisConfig, type YAxes, type YAxisMap, type YAxisOptions, type YAxisSide, YearViewAgenda, adaptDataForTooltip, addHoursToDate, addHoursToDateAgenda, addMinutesToDateAgenda, badgeVariants, buttonVariantsBase, compactTick, computeChartWidth, computeNiceMax, computeYAxisTickWidth, convert12HourTo24Hour, createGroup, createItem, createValueFormatter, createYTickFormatter, detectDataFields, detectXAxis, display12HourValue, filterAndScore, formatDurationAgenda, formatDurationAgendaDays, formatFieldName, formatLinePercentage, generateAdditionalColors, generateColorMap, getAgendaEventsForDay, getAgendaEventsForDayAgenda, getAllEventsForDay, getAllEventsForDayAgenda, getArrowByType, getAutoColorAgenda, getBorderRadiusClasses, getBorderRadiusClassesAgenda, getDateByType, getEventColorClasses, getEventColorClassesAgenda, getEventEndDate, getEventStartDate, getEventsForDay, getEventsForDayAgenda, getItems, getMaxDataValue, getMinDataValue, getSpanningEventsForDay, getSpanningEventsForDayAgenda, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isMultiDayEvent, isMultiDayEventAgenda, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, normaliseGroups, normalizeAttendDate, normalizeStr, processIntegrationData, processNeo4jData, renderInsideBarLabel, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, scoreMatch, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, sortEventsAgenda, startOfLocalDay, toast, unionGroups, useBiaxial, useCalendarDnd, useCalendarDndAgenda, useChartClick, useChartDimensions, useChartHighlights, useChartLayout, useChartMinMax, useChartTooltips, useCommandPalette, useCurrentTimeIndicator, useCurrentTimeIndicatorAgenda, useDrag, useEventVisibility, useEventVisibilityAgenda, useIsMobile, useIsTruncated, useOpenTooltipForPeriod, useProcessedData, useRecents, useSeriesOpacity, useTheme, useTimeSeriesRange, type valueFormatter, visualForItem };
|
|
2677
|
+
export { AddButton, Agenda, AgendaDaysToShow, AgendaDaysToShowAgenda, AgendaView, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarCombobox, type AvatarComboboxItem, type AvatarComboboxProps, type AvatarComboboxPropsWithGroupItems, type AvatarComboboxPropsWithItems, type AvatarComboboxTestIds, AvatarFallbackBase, AvatarImageBase, BackButton, Badge, type BadgeColorType, type BadgeRankType, type BannerProps, type BiaxialConfig, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, Brush, ButtonBase, ButtonGroupBase, type ButtonProps, CENTER_INDEX, CalendarBase, CalendarDndProvider, CalendarDndProviderAgenda, type CalendarEvent, type CalendarEventAgenda, type CalendarProps, type CalendarView, type CalendarViewAgenda, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, CarouselBase, type CarouselBaseProps, type CarouselItem, ChangeButton, Chart, ChartControls, type ChartData$3 as ChartData, ChartHeader, type ChartHooksArgs, type ChartProps, ChartTotalLegend, CheckButton, CheckboxBase, CheckboxTree, CircularProgress, type CircularProgressProps, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDebouncedInputBase, CommandDialogBase, CommandEmptyBase, type CommandGroup, CommandGroupBase, CommandInputBase, type CommandItem, CommandItemBase, CommandItemRow, CommandListBase, CommandPalette, type CommandPaletteProps, CommandSeparatorBase, CommandShortcutBase, type Connection, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, ControlledCombobox, type ControlledComboboxItem, type ControlledComboboxProps, type ControlledComboboxTestIds, CopyButton, type DataMapper, DateTimePicker, DayView, DayViewAgenda, DebouncedInput, type DebouncedInputProps, type DefaultAvatarComboboxProps, DefaultEndHour, DefaultEndHourAgenda, type DefaultMultiSelectProps, type DefaultSelectProps, DefaultStartHour, DefaultStartHourAgenda, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, DownloadButton, DraggableEvent, DraggableTooltip, DrawerBase, DrawerCloseBase, DrawerContentBase, DrawerDescriptionBase, DrawerFooterBase, DrawerHeaderBase, DrawerOverlayBase, DrawerPortalBase, DrawerTitleBase, DrawerTriggerBase, DropDownMenuBase, DropDownMenuCheckboxItemBase, DropDownMenuContentBase, DropDownMenuGroupBase, DropDownMenuItemBase, DropDownMenuLabelBase, DropDownMenuPortalBase, DropDownMenuRadioGroupBase, DropDownMenuRadioItemBase, DropDownMenuSeparatorBase, DropDownMenuShortcutBase, DropDownMenuSubBase, DropDownMenuSubContentBase, DropDownMenuSubTriggerBase, DropDownMenuTriggerBase, DroppableCell, DroppableCellAgenda, EditButton, EndHour, EndHourAgenda, ErrorMessage, EventAgenda, EventCalendar, type EventColor, type EventColorAgenda, EventDetailModalAgenda, EventDialog, EventGap, EventGapAgenda, EventHeight, EventHeightAgenda, EventItem, EventItemAgenda, EventsPopup, FavoriteButton, FileAccept, FileUploader, type FileUploaderProps, type FileWithPreview, type FilesAccepted, FilterButton, type FinalValueFormatter, GroupLabel, HideButton, Highlights, HorizontalChart, HorizontalLegend, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, ITEM_HEIGHT, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, type Integration, type IntegrationConnection, type IntegrationData, IntegrationModal, type IntegrationModalProps, type IntegrationProperties, type IntegrationProps, Kbd, KbdGroup, LabelBase, type LabelListContent, Leaderboard, type LeaderboardItem, type LeaderboardProps, type LegendItem, LikeButton, LoadingBase, LockButton, type MapperConfig, type MapperConfigEntry, type Margins, type MenuItem, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MonthView, MonthViewAgenda, MoreButton, MultiCombobox, type MultiComboboxProps, type MultiComboboxTestIds, MultiDayOverlay, MultiSelect, MultiSelectBase, MultiSelectContentBase, type MultiSelectContextType, MultiSelectGroupBase, type MultiSelectItem, MultiSelectItemBase, type MultiSelectProps, type MultiSelectPropsWithGroupItems, type MultiSelectPropsWithItems, MultiSelectSeparatorBase, type MultiSelectTestIds, MultiSelectTriggerBase, MultiSelectValueBase, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, type Neo4jIntegration, type Neo4jNode, type Neo4jRelationship, type NewSelectProps, NoData, type Node, NotificationButton, NumericInput, type Padding, type Period, PeriodsDropdown, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, type Position$1 as Position, type Primitive, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, type PropsLabelList, RadialMenu, RangePicker, type RangePickerProps, RefreshButton, type Relationship, SaveButton, ScrollAreaBase, ScrollBarBase, SearchButton, Select, SelectBase, SelectContentBase, SelectEmpty, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, type SelectPropsWithGroupItems, type SelectPropsWithItems, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, type SelectTestIds, SelectTriggerBase, SelectValueBase, SeparatorBase, type SeriesConfig, type SeriesCounts, type SeriesEntry, type SeriesOrder, type SeriesProp, SettingsButton, SheetBase, SheetCloseBase, SheetContentBase, SheetDescriptionBase, SheetFooterBase, SheetHeaderBase, SheetOverlayBase, SheetPortalBase, SheetTitleBase, SheetTriggerBase, ShowOnly, SidebarBase, SidebarContentBase, SidebarFooterBase, SidebarGroupActionBase, SidebarGroupBase, SidebarGroupContentBase, SidebarGroupLabelBase, SidebarHeaderBase, SidebarInputBase, SidebarInsetBase, SidebarMenuActionBase, SidebarMenuBadgeBase, SidebarMenuBase, SidebarMenuButtonBase, SidebarMenuItemBase, SidebarMenuSkeletonBase, SidebarMenuSubBase, SidebarMenuSubButtonBase, SidebarMenuSubItemBase, SidebarProviderBase, SidebarRailBase, SidebarSeparatorBase, SidebarTriggerBase, SkeletonBase, SlideBase, type SliderBaseProps, StartHour, StartHourAgenda, StatusIndicator, type StatusProps, SwitchBase, type SystemData, SystemTooltip, TableBase, TableBodyBase, TableCaptionBase, TableCellBase, TableFooterBase, TableHeadBase, TableHeaderBase, TableRowBase, TabsBase, TabsContentBase, TabsListBase, TabsTriggerBase, TextAreaBase, type TextAreaBaseProps, type Theme, ThemeProviderBase, TimePicker, TimePickerInput, type TimePickerInputProps, type TimePickerType, TimeSeries, type TimeSeriesConfig, Toaster, type TooltipAdaptedRow, TooltipBase, TooltipContentBase, type TooltipItem$2 as TooltipItem, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UndatedEvents, UniversalTooltipRenderer, UnlockButton, UploadButton, UseSideBarBase, VISIBLE_ITEMS, type ValueFormatter, type ValueFormatterType, ViewButton, VisibilityButton, WeekCellsHeight, WeekCellsHeightAgenda, WeekView, WeekViewAgenda, type XAxisConfig, type YAxes, type YAxisMap, type YAxisOptions, type YAxisSide, YearViewAgenda, adaptDataForTooltip, addHoursToDate, addHoursToDateAgenda, addMinutesToDateAgenda, badgeVariants, buttonVariantsBase, compactTick, computeChartWidth, computeNiceMax, computeYAxisTickWidth, convert12HourTo24Hour, createGroup, createItem, createValueFormatter, createYTickFormatter, detectDataFields, detectXAxis, display12HourValue, filterAndScore, formatDurationAgenda, formatDurationAgendaDays, formatFieldName, formatLinePercentage, generateAdditionalColors, generateColorMap, getAgendaEventsForDay, getAgendaEventsForDayAgenda, getAllEventsForDay, getAllEventsForDayAgenda, getArrowByType, getAutoColorAgenda, getBorderRadiusClasses, getBorderRadiusClassesAgenda, getDateByType, getEventColorClasses, getEventColorClassesAgenda, getEventEndDate, getEventStartDate, getEventsForDay, getEventsForDayAgenda, getItems, getMaxDataValue, getMinDataValue, getSpanningEventsForDay, getSpanningEventsForDayAgenda, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isMultiDayEvent, isMultiDayEventAgenda, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, normaliseGroups, normalizeAttendDate, normalizeStr, processIntegrationData, processNeo4jData, renderInsideBarLabel, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, scoreMatch, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, sortEventsAgenda, startOfLocalDay, toast, unionGroups, useBiaxial, useCalendarDnd, useCalendarDndAgenda, useChartClick, useChartDimensions, useChartHighlights, useChartLayout, useChartMinMax, useChartTooltips, useCommandPalette, useCurrentTimeIndicator, useCurrentTimeIndicatorAgenda, useDrag, useEventVisibility, useEventVisibilityAgenda, useIsMobile, useIsTruncated, useOpenTooltipForPeriod, useProcessedData, useRecents, useSeriesOpacity, useTheme, useTimeSeriesRange, type valueFormatter, visualForItem };
|
package/dist/index.d.ts
CHANGED
|
@@ -79,13 +79,15 @@ declare const badgeVariants: (props?: ({
|
|
|
79
79
|
size?: "sm" | "lg" | "md" | null | undefined;
|
|
80
80
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
81
81
|
type BadgeColorType = "green" | "gray" | "red" | "yellow" | "blue" | "purple";
|
|
82
|
+
type BadgeRankType = "diamond" | "gold" | "silver" | "bronze";
|
|
82
83
|
interface BadgeBaseProps extends ComponentProps<"span">, VariantProps<typeof badgeVariants> {
|
|
83
84
|
asChild?: boolean;
|
|
84
85
|
color?: BadgeColorType;
|
|
86
|
+
rank?: BadgeRankType;
|
|
85
87
|
size?: "sm" | "md" | "lg";
|
|
86
88
|
status?: string;
|
|
87
89
|
}
|
|
88
|
-
declare function Badge({ className, color, size, asChild, children, style, ...props }: BadgeBaseProps): react_jsx_runtime.JSX.Element;
|
|
90
|
+
declare function Badge({ className, color, rank, size, asChild, children, style, ...props }: BadgeBaseProps): react_jsx_runtime.JSX.Element;
|
|
89
91
|
|
|
90
92
|
type CalendarProps = React$1.ComponentProps<typeof DayPicker>;
|
|
91
93
|
declare function CalendarBase({ className, classNames, showOutsideDays, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
|
|
@@ -812,8 +814,9 @@ interface DateTimePickerProps extends ErrorMessageProps {
|
|
|
812
814
|
className?: string;
|
|
813
815
|
error?: string;
|
|
814
816
|
hideClear?: boolean;
|
|
817
|
+
triggerIcon?: boolean;
|
|
815
818
|
}
|
|
816
|
-
declare function DateTimePicker({ label, date, onChange, onConfirm, displayFormat, hideTime, hideSeconds, fromDate, toDate, disabled, className, error, hideClear, }: DateTimePickerProps): react_jsx_runtime.JSX.Element;
|
|
819
|
+
declare function DateTimePicker({ label, date, onChange, onConfirm, displayFormat, hideTime, hideSeconds, fromDate, toDate, disabled, className, error, hideClear, triggerIcon, }: DateTimePickerProps): react_jsx_runtime.JSX.Element;
|
|
817
820
|
|
|
818
821
|
interface RangePickerProps extends ErrorMessageProps {
|
|
819
822
|
value?: DateRange;
|
|
@@ -2671,4 +2674,4 @@ declare const useDrag: (options?: UseDragOptions) => {
|
|
|
2671
2674
|
isDragging: boolean;
|
|
2672
2675
|
};
|
|
2673
2676
|
|
|
2674
|
-
export { AddButton, Agenda, AgendaDaysToShow, AgendaDaysToShowAgenda, AgendaView, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarCombobox, type AvatarComboboxItem, type AvatarComboboxProps, type AvatarComboboxPropsWithGroupItems, type AvatarComboboxPropsWithItems, type AvatarComboboxTestIds, AvatarFallbackBase, AvatarImageBase, BackButton, Badge, type BadgeColorType, type BannerProps, type BiaxialConfig, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, Brush, ButtonBase, ButtonGroupBase, type ButtonProps, CENTER_INDEX, CalendarBase, CalendarDndProvider, CalendarDndProviderAgenda, type CalendarEvent, type CalendarEventAgenda, type CalendarProps, type CalendarView, type CalendarViewAgenda, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, CarouselBase, type CarouselBaseProps, type CarouselItem, ChangeButton, Chart, ChartControls, type ChartData$3 as ChartData, ChartHeader, type ChartHooksArgs, type ChartProps, ChartTotalLegend, CheckButton, CheckboxBase, CheckboxTree, CircularProgress, type CircularProgressProps, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDebouncedInputBase, CommandDialogBase, CommandEmptyBase, type CommandGroup, CommandGroupBase, CommandInputBase, type CommandItem, CommandItemBase, CommandItemRow, CommandListBase, CommandPalette, type CommandPaletteProps, CommandSeparatorBase, CommandShortcutBase, type Connection, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, ControlledCombobox, type ControlledComboboxItem, type ControlledComboboxProps, type ControlledComboboxTestIds, CopyButton, type DataMapper, DateTimePicker, DayView, DayViewAgenda, DebouncedInput, type DebouncedInputProps, type DefaultAvatarComboboxProps, DefaultEndHour, DefaultEndHourAgenda, type DefaultMultiSelectProps, type DefaultSelectProps, DefaultStartHour, DefaultStartHourAgenda, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, DownloadButton, DraggableEvent, DraggableTooltip, DrawerBase, DrawerCloseBase, DrawerContentBase, DrawerDescriptionBase, DrawerFooterBase, DrawerHeaderBase, DrawerOverlayBase, DrawerPortalBase, DrawerTitleBase, DrawerTriggerBase, DropDownMenuBase, DropDownMenuCheckboxItemBase, DropDownMenuContentBase, DropDownMenuGroupBase, DropDownMenuItemBase, DropDownMenuLabelBase, DropDownMenuPortalBase, DropDownMenuRadioGroupBase, DropDownMenuRadioItemBase, DropDownMenuSeparatorBase, DropDownMenuShortcutBase, DropDownMenuSubBase, DropDownMenuSubContentBase, DropDownMenuSubTriggerBase, DropDownMenuTriggerBase, DroppableCell, DroppableCellAgenda, EditButton, EndHour, EndHourAgenda, ErrorMessage, EventAgenda, EventCalendar, type EventColor, type EventColorAgenda, EventDetailModalAgenda, EventDialog, EventGap, EventGapAgenda, EventHeight, EventHeightAgenda, EventItem, EventItemAgenda, EventsPopup, FavoriteButton, FileAccept, FileUploader, type FileUploaderProps, type FileWithPreview, type FilesAccepted, FilterButton, type FinalValueFormatter, GroupLabel, HideButton, Highlights, HorizontalChart, HorizontalLegend, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, ITEM_HEIGHT, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, type Integration, type IntegrationConnection, type IntegrationData, IntegrationModal, type IntegrationModalProps, type IntegrationProperties, type IntegrationProps, Kbd, KbdGroup, LabelBase, type LabelListContent, Leaderboard, type LeaderboardItem, type LeaderboardProps, type LegendItem, LikeButton, LoadingBase, LockButton, type MapperConfig, type MapperConfigEntry, type Margins, type MenuItem, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MonthView, MonthViewAgenda, MoreButton, MultiCombobox, type MultiComboboxProps, type MultiComboboxTestIds, MultiDayOverlay, MultiSelect, MultiSelectBase, MultiSelectContentBase, type MultiSelectContextType, MultiSelectGroupBase, type MultiSelectItem, MultiSelectItemBase, type MultiSelectProps, type MultiSelectPropsWithGroupItems, type MultiSelectPropsWithItems, MultiSelectSeparatorBase, type MultiSelectTestIds, MultiSelectTriggerBase, MultiSelectValueBase, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, type Neo4jIntegration, type Neo4jNode, type Neo4jRelationship, type NewSelectProps, NoData, type Node, NotificationButton, NumericInput, type Padding, type Period, PeriodsDropdown, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, type Position$1 as Position, type Primitive, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, type PropsLabelList, RadialMenu, RangePicker, type RangePickerProps, RefreshButton, type Relationship, SaveButton, ScrollAreaBase, ScrollBarBase, SearchButton, Select, SelectBase, SelectContentBase, SelectEmpty, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, type SelectPropsWithGroupItems, type SelectPropsWithItems, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, type SelectTestIds, SelectTriggerBase, SelectValueBase, SeparatorBase, type SeriesConfig, type SeriesCounts, type SeriesEntry, type SeriesOrder, type SeriesProp, SettingsButton, SheetBase, SheetCloseBase, SheetContentBase, SheetDescriptionBase, SheetFooterBase, SheetHeaderBase, SheetOverlayBase, SheetPortalBase, SheetTitleBase, SheetTriggerBase, ShowOnly, SidebarBase, SidebarContentBase, SidebarFooterBase, SidebarGroupActionBase, SidebarGroupBase, SidebarGroupContentBase, SidebarGroupLabelBase, SidebarHeaderBase, SidebarInputBase, SidebarInsetBase, SidebarMenuActionBase, SidebarMenuBadgeBase, SidebarMenuBase, SidebarMenuButtonBase, SidebarMenuItemBase, SidebarMenuSkeletonBase, SidebarMenuSubBase, SidebarMenuSubButtonBase, SidebarMenuSubItemBase, SidebarProviderBase, SidebarRailBase, SidebarSeparatorBase, SidebarTriggerBase, SkeletonBase, SlideBase, type SliderBaseProps, StartHour, StartHourAgenda, StatusIndicator, type StatusProps, SwitchBase, type SystemData, SystemTooltip, TableBase, TableBodyBase, TableCaptionBase, TableCellBase, TableFooterBase, TableHeadBase, TableHeaderBase, TableRowBase, TabsBase, TabsContentBase, TabsListBase, TabsTriggerBase, TextAreaBase, type TextAreaBaseProps, type Theme, ThemeProviderBase, TimePicker, TimePickerInput, type TimePickerInputProps, type TimePickerType, TimeSeries, type TimeSeriesConfig, Toaster, type TooltipAdaptedRow, TooltipBase, TooltipContentBase, type TooltipItem$2 as TooltipItem, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UndatedEvents, UniversalTooltipRenderer, UnlockButton, UploadButton, UseSideBarBase, VISIBLE_ITEMS, type ValueFormatter, type ValueFormatterType, ViewButton, VisibilityButton, WeekCellsHeight, WeekCellsHeightAgenda, WeekView, WeekViewAgenda, type XAxisConfig, type YAxes, type YAxisMap, type YAxisOptions, type YAxisSide, YearViewAgenda, adaptDataForTooltip, addHoursToDate, addHoursToDateAgenda, addMinutesToDateAgenda, badgeVariants, buttonVariantsBase, compactTick, computeChartWidth, computeNiceMax, computeYAxisTickWidth, convert12HourTo24Hour, createGroup, createItem, createValueFormatter, createYTickFormatter, detectDataFields, detectXAxis, display12HourValue, filterAndScore, formatDurationAgenda, formatDurationAgendaDays, formatFieldName, formatLinePercentage, generateAdditionalColors, generateColorMap, getAgendaEventsForDay, getAgendaEventsForDayAgenda, getAllEventsForDay, getAllEventsForDayAgenda, getArrowByType, getAutoColorAgenda, getBorderRadiusClasses, getBorderRadiusClassesAgenda, getDateByType, getEventColorClasses, getEventColorClassesAgenda, getEventEndDate, getEventStartDate, getEventsForDay, getEventsForDayAgenda, getItems, getMaxDataValue, getMinDataValue, getSpanningEventsForDay, getSpanningEventsForDayAgenda, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isMultiDayEvent, isMultiDayEventAgenda, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, normaliseGroups, normalizeAttendDate, normalizeStr, processIntegrationData, processNeo4jData, renderInsideBarLabel, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, scoreMatch, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, sortEventsAgenda, startOfLocalDay, toast, unionGroups, useBiaxial, useCalendarDnd, useCalendarDndAgenda, useChartClick, useChartDimensions, useChartHighlights, useChartLayout, useChartMinMax, useChartTooltips, useCommandPalette, useCurrentTimeIndicator, useCurrentTimeIndicatorAgenda, useDrag, useEventVisibility, useEventVisibilityAgenda, useIsMobile, useIsTruncated, useOpenTooltipForPeriod, useProcessedData, useRecents, useSeriesOpacity, useTheme, useTimeSeriesRange, type valueFormatter, visualForItem };
|
|
2677
|
+
export { AddButton, Agenda, AgendaDaysToShow, AgendaDaysToShowAgenda, AgendaView, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarCombobox, type AvatarComboboxItem, type AvatarComboboxProps, type AvatarComboboxPropsWithGroupItems, type AvatarComboboxPropsWithItems, type AvatarComboboxTestIds, AvatarFallbackBase, AvatarImageBase, BackButton, Badge, type BadgeColorType, type BadgeRankType, type BannerProps, type BiaxialConfig, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, Brush, ButtonBase, ButtonGroupBase, type ButtonProps, CENTER_INDEX, CalendarBase, CalendarDndProvider, CalendarDndProviderAgenda, type CalendarEvent, type CalendarEventAgenda, type CalendarProps, type CalendarView, type CalendarViewAgenda, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, CarouselBase, type CarouselBaseProps, type CarouselItem, ChangeButton, Chart, ChartControls, type ChartData$3 as ChartData, ChartHeader, type ChartHooksArgs, type ChartProps, ChartTotalLegend, CheckButton, CheckboxBase, CheckboxTree, CircularProgress, type CircularProgressProps, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDebouncedInputBase, CommandDialogBase, CommandEmptyBase, type CommandGroup, CommandGroupBase, CommandInputBase, type CommandItem, CommandItemBase, CommandItemRow, CommandListBase, CommandPalette, type CommandPaletteProps, CommandSeparatorBase, CommandShortcutBase, type Connection, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, ControlledCombobox, type ControlledComboboxItem, type ControlledComboboxProps, type ControlledComboboxTestIds, CopyButton, type DataMapper, DateTimePicker, DayView, DayViewAgenda, DebouncedInput, type DebouncedInputProps, type DefaultAvatarComboboxProps, DefaultEndHour, DefaultEndHourAgenda, type DefaultMultiSelectProps, type DefaultSelectProps, DefaultStartHour, DefaultStartHourAgenda, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, DownloadButton, DraggableEvent, DraggableTooltip, DrawerBase, DrawerCloseBase, DrawerContentBase, DrawerDescriptionBase, DrawerFooterBase, DrawerHeaderBase, DrawerOverlayBase, DrawerPortalBase, DrawerTitleBase, DrawerTriggerBase, DropDownMenuBase, DropDownMenuCheckboxItemBase, DropDownMenuContentBase, DropDownMenuGroupBase, DropDownMenuItemBase, DropDownMenuLabelBase, DropDownMenuPortalBase, DropDownMenuRadioGroupBase, DropDownMenuRadioItemBase, DropDownMenuSeparatorBase, DropDownMenuShortcutBase, DropDownMenuSubBase, DropDownMenuSubContentBase, DropDownMenuSubTriggerBase, DropDownMenuTriggerBase, DroppableCell, DroppableCellAgenda, EditButton, EndHour, EndHourAgenda, ErrorMessage, EventAgenda, EventCalendar, type EventColor, type EventColorAgenda, EventDetailModalAgenda, EventDialog, EventGap, EventGapAgenda, EventHeight, EventHeightAgenda, EventItem, EventItemAgenda, EventsPopup, FavoriteButton, FileAccept, FileUploader, type FileUploaderProps, type FileWithPreview, type FilesAccepted, FilterButton, type FinalValueFormatter, GroupLabel, HideButton, Highlights, HorizontalChart, HorizontalLegend, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, ITEM_HEIGHT, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, type Integration, type IntegrationConnection, type IntegrationData, IntegrationModal, type IntegrationModalProps, type IntegrationProperties, type IntegrationProps, Kbd, KbdGroup, LabelBase, type LabelListContent, Leaderboard, type LeaderboardItem, type LeaderboardProps, type LegendItem, LikeButton, LoadingBase, LockButton, type MapperConfig, type MapperConfigEntry, type Margins, type MenuItem, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MonthView, MonthViewAgenda, MoreButton, MultiCombobox, type MultiComboboxProps, type MultiComboboxTestIds, MultiDayOverlay, MultiSelect, MultiSelectBase, MultiSelectContentBase, type MultiSelectContextType, MultiSelectGroupBase, type MultiSelectItem, MultiSelectItemBase, type MultiSelectProps, type MultiSelectPropsWithGroupItems, type MultiSelectPropsWithItems, MultiSelectSeparatorBase, type MultiSelectTestIds, MultiSelectTriggerBase, MultiSelectValueBase, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, type Neo4jIntegration, type Neo4jNode, type Neo4jRelationship, type NewSelectProps, NoData, type Node, NotificationButton, NumericInput, type Padding, type Period, PeriodsDropdown, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, type Position$1 as Position, type Primitive, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, type PropsLabelList, RadialMenu, RangePicker, type RangePickerProps, RefreshButton, type Relationship, SaveButton, ScrollAreaBase, ScrollBarBase, SearchButton, Select, SelectBase, SelectContentBase, SelectEmpty, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, type SelectPropsWithGroupItems, type SelectPropsWithItems, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, type SelectTestIds, SelectTriggerBase, SelectValueBase, SeparatorBase, type SeriesConfig, type SeriesCounts, type SeriesEntry, type SeriesOrder, type SeriesProp, SettingsButton, SheetBase, SheetCloseBase, SheetContentBase, SheetDescriptionBase, SheetFooterBase, SheetHeaderBase, SheetOverlayBase, SheetPortalBase, SheetTitleBase, SheetTriggerBase, ShowOnly, SidebarBase, SidebarContentBase, SidebarFooterBase, SidebarGroupActionBase, SidebarGroupBase, SidebarGroupContentBase, SidebarGroupLabelBase, SidebarHeaderBase, SidebarInputBase, SidebarInsetBase, SidebarMenuActionBase, SidebarMenuBadgeBase, SidebarMenuBase, SidebarMenuButtonBase, SidebarMenuItemBase, SidebarMenuSkeletonBase, SidebarMenuSubBase, SidebarMenuSubButtonBase, SidebarMenuSubItemBase, SidebarProviderBase, SidebarRailBase, SidebarSeparatorBase, SidebarTriggerBase, SkeletonBase, SlideBase, type SliderBaseProps, StartHour, StartHourAgenda, StatusIndicator, type StatusProps, SwitchBase, type SystemData, SystemTooltip, TableBase, TableBodyBase, TableCaptionBase, TableCellBase, TableFooterBase, TableHeadBase, TableHeaderBase, TableRowBase, TabsBase, TabsContentBase, TabsListBase, TabsTriggerBase, TextAreaBase, type TextAreaBaseProps, type Theme, ThemeProviderBase, TimePicker, TimePickerInput, type TimePickerInputProps, type TimePickerType, TimeSeries, type TimeSeriesConfig, Toaster, type TooltipAdaptedRow, TooltipBase, TooltipContentBase, type TooltipItem$2 as TooltipItem, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UndatedEvents, UniversalTooltipRenderer, UnlockButton, UploadButton, UseSideBarBase, VISIBLE_ITEMS, type ValueFormatter, type ValueFormatterType, ViewButton, VisibilityButton, WeekCellsHeight, WeekCellsHeightAgenda, WeekView, WeekViewAgenda, type XAxisConfig, type YAxes, type YAxisMap, type YAxisOptions, type YAxisSide, YearViewAgenda, adaptDataForTooltip, addHoursToDate, addHoursToDateAgenda, addMinutesToDateAgenda, badgeVariants, buttonVariantsBase, compactTick, computeChartWidth, computeNiceMax, computeYAxisTickWidth, convert12HourTo24Hour, createGroup, createItem, createValueFormatter, createYTickFormatter, detectDataFields, detectXAxis, display12HourValue, filterAndScore, formatDurationAgenda, formatDurationAgendaDays, formatFieldName, formatLinePercentage, generateAdditionalColors, generateColorMap, getAgendaEventsForDay, getAgendaEventsForDayAgenda, getAllEventsForDay, getAllEventsForDayAgenda, getArrowByType, getAutoColorAgenda, getBorderRadiusClasses, getBorderRadiusClassesAgenda, getDateByType, getEventColorClasses, getEventColorClassesAgenda, getEventEndDate, getEventStartDate, getEventsForDay, getEventsForDayAgenda, getItems, getMaxDataValue, getMinDataValue, getSpanningEventsForDay, getSpanningEventsForDayAgenda, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isMultiDayEvent, isMultiDayEventAgenda, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, normaliseGroups, normalizeAttendDate, normalizeStr, processIntegrationData, processNeo4jData, renderInsideBarLabel, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, scoreMatch, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, sortEventsAgenda, startOfLocalDay, toast, unionGroups, useBiaxial, useCalendarDnd, useCalendarDndAgenda, useChartClick, useChartDimensions, useChartHighlights, useChartLayout, useChartMinMax, useChartTooltips, useCommandPalette, useCurrentTimeIndicator, useCurrentTimeIndicatorAgenda, useDrag, useEventVisibility, useEventVisibilityAgenda, useIsMobile, useIsTruncated, useOpenTooltipForPeriod, useProcessedData, useRecents, useSeriesOpacity, useTheme, useTimeSeriesRange, type valueFormatter, visualForItem };
|