@mlw-packages/react-components 1.9.10 → 1.9.12
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 +158 -0
- package/dist/index.d.mts +34 -6
- package/dist/index.d.ts +34 -6
- package/dist/index.js +1181 -444
- package/dist/index.mjs +1181 -446
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -561,6 +561,9 @@ body {
|
|
|
561
561
|
.isolate {
|
|
562
562
|
isolation: isolate;
|
|
563
563
|
}
|
|
564
|
+
.-z-10 {
|
|
565
|
+
z-index: -10;
|
|
566
|
+
}
|
|
564
567
|
.z-10 {
|
|
565
568
|
z-index: 10;
|
|
566
569
|
}
|
|
@@ -585,6 +588,9 @@ body {
|
|
|
585
588
|
.z-\[1\] {
|
|
586
589
|
z-index: 1;
|
|
587
590
|
}
|
|
591
|
+
.z-\[60\] {
|
|
592
|
+
z-index: 60;
|
|
593
|
+
}
|
|
588
594
|
.z-\[9998\] {
|
|
589
595
|
z-index: 9998;
|
|
590
596
|
}
|
|
@@ -854,6 +860,10 @@ body {
|
|
|
854
860
|
width: 0.5rem;
|
|
855
861
|
height: 0.5rem;
|
|
856
862
|
}
|
|
863
|
+
.size-2\.5 {
|
|
864
|
+
width: 0.625rem;
|
|
865
|
+
height: 0.625rem;
|
|
866
|
+
}
|
|
857
867
|
.size-3 {
|
|
858
868
|
width: 0.75rem;
|
|
859
869
|
height: 0.75rem;
|
|
@@ -874,10 +884,18 @@ body {
|
|
|
874
884
|
width: 1.5rem;
|
|
875
885
|
height: 1.5rem;
|
|
876
886
|
}
|
|
887
|
+
.size-64 {
|
|
888
|
+
width: 16rem;
|
|
889
|
+
height: 16rem;
|
|
890
|
+
}
|
|
877
891
|
.size-8 {
|
|
878
892
|
width: 2rem;
|
|
879
893
|
height: 2rem;
|
|
880
894
|
}
|
|
895
|
+
.size-80 {
|
|
896
|
+
width: 20rem;
|
|
897
|
+
height: 20rem;
|
|
898
|
+
}
|
|
881
899
|
.size-9 {
|
|
882
900
|
width: 2.25rem;
|
|
883
901
|
height: 2.25rem;
|
|
@@ -980,12 +998,33 @@ body {
|
|
|
980
998
|
.h-\[2px\] {
|
|
981
999
|
height: 2px;
|
|
982
1000
|
}
|
|
1001
|
+
.h-\[300px\] {
|
|
1002
|
+
height: 300px;
|
|
1003
|
+
}
|
|
983
1004
|
.h-\[34px\] {
|
|
984
1005
|
height: 34px;
|
|
985
1006
|
}
|
|
1007
|
+
.h-\[350px\] {
|
|
1008
|
+
height: 350px;
|
|
1009
|
+
}
|
|
1010
|
+
.h-\[360px\] {
|
|
1011
|
+
height: 360px;
|
|
1012
|
+
}
|
|
1013
|
+
.h-\[400px\] {
|
|
1014
|
+
height: 400px;
|
|
1015
|
+
}
|
|
1016
|
+
.h-\[500px\] {
|
|
1017
|
+
height: 500px;
|
|
1018
|
+
}
|
|
986
1019
|
.h-\[50vh\] {
|
|
987
1020
|
height: 50vh;
|
|
988
1021
|
}
|
|
1022
|
+
.h-\[550px\] {
|
|
1023
|
+
height: 550px;
|
|
1024
|
+
}
|
|
1025
|
+
.h-\[667px\] {
|
|
1026
|
+
height: 667px;
|
|
1027
|
+
}
|
|
989
1028
|
.h-\[95vh\] {
|
|
990
1029
|
height: 95vh;
|
|
991
1030
|
}
|
|
@@ -1082,6 +1121,9 @@ body {
|
|
|
1082
1121
|
.min-h-\[3rem\] {
|
|
1083
1122
|
min-height: 3rem;
|
|
1084
1123
|
}
|
|
1124
|
+
.min-h-\[500px\] {
|
|
1125
|
+
min-height: 500px;
|
|
1126
|
+
}
|
|
1085
1127
|
.min-h-\[600px\] {
|
|
1086
1128
|
min-height: 600px;
|
|
1087
1129
|
}
|
|
@@ -1220,6 +1262,9 @@ body {
|
|
|
1220
1262
|
.w-\[100px\] {
|
|
1221
1263
|
width: 100px;
|
|
1222
1264
|
}
|
|
1265
|
+
.w-\[1200px\] {
|
|
1266
|
+
width: 1200px;
|
|
1267
|
+
}
|
|
1223
1268
|
.w-\[1300px\] {
|
|
1224
1269
|
width: 1300px;
|
|
1225
1270
|
}
|
|
@@ -1244,6 +1289,9 @@ body {
|
|
|
1244
1289
|
.w-\[350px\] {
|
|
1245
1290
|
width: 350px;
|
|
1246
1291
|
}
|
|
1292
|
+
.w-\[375px\] {
|
|
1293
|
+
width: 375px;
|
|
1294
|
+
}
|
|
1247
1295
|
.w-\[400px\] {
|
|
1248
1296
|
width: 400px;
|
|
1249
1297
|
}
|
|
@@ -1259,6 +1307,9 @@ body {
|
|
|
1259
1307
|
.w-\[52rem\] {
|
|
1260
1308
|
width: 52rem;
|
|
1261
1309
|
}
|
|
1310
|
+
.w-\[600px\] {
|
|
1311
|
+
width: 600px;
|
|
1312
|
+
}
|
|
1262
1313
|
.w-\[70\%\] {
|
|
1263
1314
|
width: 70%;
|
|
1264
1315
|
}
|
|
@@ -1583,6 +1634,9 @@ body {
|
|
|
1583
1634
|
.cursor-move {
|
|
1584
1635
|
cursor: move;
|
|
1585
1636
|
}
|
|
1637
|
+
.cursor-none {
|
|
1638
|
+
cursor: none;
|
|
1639
|
+
}
|
|
1586
1640
|
.cursor-not-allowed {
|
|
1587
1641
|
cursor: not-allowed;
|
|
1588
1642
|
}
|
|
@@ -1890,6 +1944,12 @@ body {
|
|
|
1890
1944
|
.rounded-2xl {
|
|
1891
1945
|
border-radius: 1rem;
|
|
1892
1946
|
}
|
|
1947
|
+
.rounded-\[2px\] {
|
|
1948
|
+
border-radius: 2px;
|
|
1949
|
+
}
|
|
1950
|
+
.rounded-\[40px\] {
|
|
1951
|
+
border-radius: 40px;
|
|
1952
|
+
}
|
|
1893
1953
|
.rounded-\[inherit\] {
|
|
1894
1954
|
border-radius: inherit;
|
|
1895
1955
|
}
|
|
@@ -2121,6 +2181,12 @@ body {
|
|
|
2121
2181
|
.border-muted {
|
|
2122
2182
|
border-color: hsl(var(--muted));
|
|
2123
2183
|
}
|
|
2184
|
+
.border-muted-foreground\/10 {
|
|
2185
|
+
border-color: hsl(var(--muted-foreground) / 0.1);
|
|
2186
|
+
}
|
|
2187
|
+
.border-muted-foreground\/20 {
|
|
2188
|
+
border-color: hsl(var(--muted-foreground) / 0.2);
|
|
2189
|
+
}
|
|
2124
2190
|
.border-muted-foreground\/30 {
|
|
2125
2191
|
border-color: hsl(var(--muted-foreground) / 0.3);
|
|
2126
2192
|
}
|
|
@@ -2201,6 +2267,9 @@ body {
|
|
|
2201
2267
|
--tw-border-opacity: 1;
|
|
2202
2268
|
border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
|
|
2203
2269
|
}
|
|
2270
|
+
.border-white\/10 {
|
|
2271
|
+
border-color: rgb(255 255 255 / 0.1);
|
|
2272
|
+
}
|
|
2204
2273
|
.border-white\/20 {
|
|
2205
2274
|
border-color: rgb(255 255 255 / 0.2);
|
|
2206
2275
|
}
|
|
@@ -2287,6 +2356,9 @@ body {
|
|
|
2287
2356
|
.bg-background {
|
|
2288
2357
|
background-color: hsl(var(--background));
|
|
2289
2358
|
}
|
|
2359
|
+
.bg-background\/5 {
|
|
2360
|
+
background-color: hsl(var(--background) / 0.05);
|
|
2361
|
+
}
|
|
2290
2362
|
.bg-background\/50 {
|
|
2291
2363
|
background-color: hsl(var(--background) / 0.5);
|
|
2292
2364
|
}
|
|
@@ -2299,9 +2371,15 @@ body {
|
|
|
2299
2371
|
.bg-background\/95 {
|
|
2300
2372
|
background-color: hsl(var(--background) / 0.95);
|
|
2301
2373
|
}
|
|
2374
|
+
.bg-black\/20 {
|
|
2375
|
+
background-color: rgb(0 0 0 / 0.2);
|
|
2376
|
+
}
|
|
2302
2377
|
.bg-black\/40 {
|
|
2303
2378
|
background-color: rgb(0 0 0 / 0.4);
|
|
2304
2379
|
}
|
|
2380
|
+
.bg-black\/5 {
|
|
2381
|
+
background-color: rgb(0 0 0 / 0.05);
|
|
2382
|
+
}
|
|
2305
2383
|
.bg-black\/50 {
|
|
2306
2384
|
background-color: rgb(0 0 0 / 0.5);
|
|
2307
2385
|
}
|
|
@@ -2459,6 +2537,10 @@ body {
|
|
|
2459
2537
|
.bg-indigo-400\/20 {
|
|
2460
2538
|
background-color: rgb(129 140 248 / 0.2);
|
|
2461
2539
|
}
|
|
2540
|
+
.bg-indigo-50 {
|
|
2541
|
+
--tw-bg-opacity: 1;
|
|
2542
|
+
background-color: rgb(238 242 255 / var(--tw-bg-opacity, 1));
|
|
2543
|
+
}
|
|
2462
2544
|
.bg-indigo-500 {
|
|
2463
2545
|
--tw-bg-opacity: 1;
|
|
2464
2546
|
background-color: rgb(99 102 241 / var(--tw-bg-opacity, 1));
|
|
@@ -2476,6 +2558,12 @@ body {
|
|
|
2476
2558
|
.bg-muted-foreground {
|
|
2477
2559
|
background-color: hsl(var(--muted-foreground));
|
|
2478
2560
|
}
|
|
2561
|
+
.bg-muted-foreground\/10 {
|
|
2562
|
+
background-color: hsl(var(--muted-foreground) / 0.1);
|
|
2563
|
+
}
|
|
2564
|
+
.bg-muted-foreground\/20 {
|
|
2565
|
+
background-color: hsl(var(--muted-foreground) / 0.2);
|
|
2566
|
+
}
|
|
2479
2567
|
.bg-muted\/10 {
|
|
2480
2568
|
background-color: hsl(var(--muted) / 0.1);
|
|
2481
2569
|
}
|
|
@@ -2641,6 +2729,9 @@ body {
|
|
|
2641
2729
|
--tw-bg-opacity: 1;
|
|
2642
2730
|
background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
|
|
2643
2731
|
}
|
|
2732
|
+
.bg-slate-50\/50 {
|
|
2733
|
+
background-color: rgb(248 250 252 / 0.5);
|
|
2734
|
+
}
|
|
2644
2735
|
.bg-slate-900 {
|
|
2645
2736
|
--tw-bg-opacity: 1;
|
|
2646
2737
|
background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
|
|
@@ -2787,6 +2878,12 @@ body {
|
|
|
2787
2878
|
-webkit-background-clip: text;
|
|
2788
2879
|
background-clip: text;
|
|
2789
2880
|
}
|
|
2881
|
+
.fill-background {
|
|
2882
|
+
fill: hsl(var(--background));
|
|
2883
|
+
}
|
|
2884
|
+
.fill-background\/90 {
|
|
2885
|
+
fill: hsl(var(--background) / 0.9);
|
|
2886
|
+
}
|
|
2790
2887
|
.fill-current {
|
|
2791
2888
|
fill: currentColor;
|
|
2792
2889
|
}
|
|
@@ -2799,6 +2896,18 @@ body {
|
|
|
2799
2896
|
.stroke-\[rgba\(0\,0\,0\,0\.06\)\] {
|
|
2800
2897
|
stroke: rgba(0, 0, 0, 0.06);
|
|
2801
2898
|
}
|
|
2899
|
+
.stroke-border {
|
|
2900
|
+
stroke: hsl(var(--border));
|
|
2901
|
+
}
|
|
2902
|
+
.stroke-border\/50 {
|
|
2903
|
+
stroke: hsl(var(--border) / 0.5);
|
|
2904
|
+
}
|
|
2905
|
+
.stroke-primary-foreground\/20 {
|
|
2906
|
+
stroke: hsl(var(--primary-foreground) / 0.2);
|
|
2907
|
+
}
|
|
2908
|
+
.stroke-1 {
|
|
2909
|
+
stroke-width: 1;
|
|
2910
|
+
}
|
|
2802
2911
|
.object-cover {
|
|
2803
2912
|
-o-object-fit: cover;
|
|
2804
2913
|
object-fit: cover;
|
|
@@ -2938,6 +3047,10 @@ body {
|
|
|
2938
3047
|
padding-top: 0.625rem;
|
|
2939
3048
|
padding-bottom: 0.625rem;
|
|
2940
3049
|
}
|
|
3050
|
+
.py-24 {
|
|
3051
|
+
padding-top: 6rem;
|
|
3052
|
+
padding-bottom: 6rem;
|
|
3053
|
+
}
|
|
2941
3054
|
.py-3 {
|
|
2942
3055
|
padding-top: 0.75rem;
|
|
2943
3056
|
padding-bottom: 0.75rem;
|
|
@@ -3228,6 +3341,9 @@ body {
|
|
|
3228
3341
|
--tw-text-opacity: 1;
|
|
3229
3342
|
color: rgb(0 0 0 / var(--tw-text-opacity, 1));
|
|
3230
3343
|
}
|
|
3344
|
+
.text-black\/40 {
|
|
3345
|
+
color: rgb(0 0 0 / 0.4);
|
|
3346
|
+
}
|
|
3231
3347
|
.text-blue-400 {
|
|
3232
3348
|
--tw-text-opacity: 1;
|
|
3233
3349
|
color: rgb(96 165 250 / var(--tw-text-opacity, 1));
|
|
@@ -3775,6 +3891,10 @@ body {
|
|
|
3775
3891
|
--tw-blur: blur(8px);
|
|
3776
3892
|
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);
|
|
3777
3893
|
}
|
|
3894
|
+
.blur-2xl {
|
|
3895
|
+
--tw-blur: blur(40px);
|
|
3896
|
+
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);
|
|
3897
|
+
}
|
|
3778
3898
|
.blur-sm {
|
|
3779
3899
|
--tw-blur: blur(4px);
|
|
3780
3900
|
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);
|
|
@@ -3791,6 +3911,10 @@ body {
|
|
|
3791
3911
|
--tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
|
|
3792
3912
|
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);
|
|
3793
3913
|
}
|
|
3914
|
+
.drop-shadow-xl {
|
|
3915
|
+
--tw-drop-shadow: drop-shadow(0 20px 13px rgb(0 0 0 / 0.03)) drop-shadow(0 8px 5px rgb(0 0 0 / 0.08));
|
|
3916
|
+
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);
|
|
3917
|
+
}
|
|
3794
3918
|
.grayscale {
|
|
3795
3919
|
--tw-grayscale: grayscale(100%);
|
|
3796
3920
|
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);
|
|
@@ -3927,6 +4051,9 @@ body {
|
|
|
3927
4051
|
.ease-out {
|
|
3928
4052
|
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
3929
4053
|
}
|
|
4054
|
+
.will-change-transform {
|
|
4055
|
+
will-change: transform;
|
|
4056
|
+
}
|
|
3930
4057
|
@keyframes enter {
|
|
3931
4058
|
from {
|
|
3932
4059
|
opacity: var(--tw-enter-opacity, 1);
|
|
@@ -4450,6 +4577,9 @@ body {
|
|
|
4450
4577
|
.hover\:bg-background\/20:hover {
|
|
4451
4578
|
background-color: hsl(var(--background) / 0.2);
|
|
4452
4579
|
}
|
|
4580
|
+
.hover\:bg-black\/70:hover {
|
|
4581
|
+
background-color: rgb(0 0 0 / 0.7);
|
|
4582
|
+
}
|
|
4453
4583
|
.hover\:bg-blue-600:hover {
|
|
4454
4584
|
--tw-bg-opacity: 1;
|
|
4455
4585
|
background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
|
|
@@ -4500,6 +4630,10 @@ body {
|
|
|
4500
4630
|
--tw-bg-opacity: 1;
|
|
4501
4631
|
background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
|
|
4502
4632
|
}
|
|
4633
|
+
.hover\:bg-indigo-50:hover {
|
|
4634
|
+
--tw-bg-opacity: 1;
|
|
4635
|
+
background-color: rgb(238 242 255 / var(--tw-bg-opacity, 1));
|
|
4636
|
+
}
|
|
4503
4637
|
.hover\:bg-indigo-600:hover {
|
|
4504
4638
|
--tw-bg-opacity: 1;
|
|
4505
4639
|
background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
|
|
@@ -4612,6 +4746,9 @@ body {
|
|
|
4612
4746
|
--tw-bg-opacity: 1;
|
|
4613
4747
|
background-color: rgb(161 161 170 / var(--tw-bg-opacity, 1));
|
|
4614
4748
|
}
|
|
4749
|
+
.hover\:fill-accent:hover {
|
|
4750
|
+
fill: hsl(var(--accent));
|
|
4751
|
+
}
|
|
4615
4752
|
.hover\:text-accent-foreground:hover {
|
|
4616
4753
|
color: hsl(var(--accent-foreground));
|
|
4617
4754
|
}
|
|
@@ -4911,6 +5048,9 @@ body {
|
|
|
4911
5048
|
--tw-scale-y: .95;
|
|
4912
5049
|
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));
|
|
4913
5050
|
}
|
|
5051
|
+
.active\:cursor-grabbing:active {
|
|
5052
|
+
cursor: grabbing;
|
|
5053
|
+
}
|
|
4914
5054
|
.active\:bg-accent\/80:active {
|
|
4915
5055
|
background-color: hsl(var(--accent) / 0.8);
|
|
4916
5056
|
}
|
|
@@ -6009,6 +6149,9 @@ body {
|
|
|
6009
6149
|
--tw-bg-opacity: 1;
|
|
6010
6150
|
background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
|
|
6011
6151
|
}
|
|
6152
|
+
.dark\:bg-slate-900\/20:is(.dark *) {
|
|
6153
|
+
background-color: rgb(15 23 42 / 0.2);
|
|
6154
|
+
}
|
|
6012
6155
|
.dark\:bg-slate-900\/30:is(.dark *) {
|
|
6013
6156
|
background-color: rgb(15 23 42 / 0.3);
|
|
6014
6157
|
}
|
|
@@ -6229,6 +6372,9 @@ body {
|
|
|
6229
6372
|
.dark\:hover\:bg-emerald-500\/40:hover:is(.dark *) {
|
|
6230
6373
|
background-color: rgb(16 185 129 / 0.4);
|
|
6231
6374
|
}
|
|
6375
|
+
.dark\:hover\:bg-indigo-900\/30:hover:is(.dark *) {
|
|
6376
|
+
background-color: rgb(49 46 129 / 0.3);
|
|
6377
|
+
}
|
|
6232
6378
|
.dark\:hover\:bg-orange-400\/20:hover:is(.dark *) {
|
|
6233
6379
|
background-color: rgb(251 146 60 / 0.2);
|
|
6234
6380
|
}
|
|
@@ -6371,6 +6517,9 @@ body {
|
|
|
6371
6517
|
.sm\:top-4 {
|
|
6372
6518
|
top: 1rem;
|
|
6373
6519
|
}
|
|
6520
|
+
.sm\:col-span-2 {
|
|
6521
|
+
grid-column: span 2 / span 2;
|
|
6522
|
+
}
|
|
6374
6523
|
.sm\:-ms-1 {
|
|
6375
6524
|
margin-inline-start: -0.25rem;
|
|
6376
6525
|
}
|
|
@@ -6783,6 +6932,15 @@ body {
|
|
|
6783
6932
|
}
|
|
6784
6933
|
}
|
|
6785
6934
|
@media (min-width: 1280px) {
|
|
6935
|
+
.xl\:col-span-1 {
|
|
6936
|
+
grid-column: span 1 / span 1;
|
|
6937
|
+
}
|
|
6938
|
+
.xl\:grid-cols-2 {
|
|
6939
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
6940
|
+
}
|
|
6941
|
+
.xl\:grid-cols-3 {
|
|
6942
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
6943
|
+
}
|
|
6786
6944
|
.xl\:grid-cols-4 {
|
|
6787
6945
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
6788
6946
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -28,6 +28,7 @@ import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
|
28
28
|
import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
|
|
29
29
|
import { UniqueIdentifier, DraggableAttributes } from '@dnd-kit/core';
|
|
30
30
|
import { SyntheticListenerMap } from '@dnd-kit/core/dist/hooks/utilities';
|
|
31
|
+
import { IconProps as IconProps$1 } from '@phosphor-icons/react';
|
|
31
32
|
|
|
32
33
|
type ErrorMessageProps = {
|
|
33
34
|
error?: string;
|
|
@@ -1657,8 +1658,8 @@ interface ChartProps {
|
|
|
1657
1658
|
left: number;
|
|
1658
1659
|
bottom: number;
|
|
1659
1660
|
}>;
|
|
1660
|
-
height?: number;
|
|
1661
1661
|
width?: number | string;
|
|
1662
|
+
height?: number;
|
|
1662
1663
|
colors?: string[];
|
|
1663
1664
|
gridColor?: string;
|
|
1664
1665
|
showGrid?: boolean;
|
|
@@ -1834,11 +1835,16 @@ declare const HorizontalChart: React__default.FC<ChartProps>;
|
|
|
1834
1835
|
interface TimeSeriesData {
|
|
1835
1836
|
[key: string]: string | number | boolean | null | undefined;
|
|
1836
1837
|
}
|
|
1837
|
-
interface TimeSeriesProps extends Omit<React__default.ComponentProps<typeof Chart>, "data" | "xAxis" | "timeSeries"> {
|
|
1838
|
+
interface TimeSeriesProps extends Omit<React__default.ComponentProps<typeof Chart>, "data" | "xAxis" | "timeSeries" | "className"> {
|
|
1838
1839
|
data: TimeSeriesData[];
|
|
1839
1840
|
xAxis: string;
|
|
1840
|
-
|
|
1841
|
-
|
|
1841
|
+
/**
|
|
1842
|
+
* className aplicado no wrapper externo do TimeSeries.
|
|
1843
|
+
* Controla a altura total (chart + brush).
|
|
1844
|
+
* Padrão: altura automática (chart 350px + brush natural)
|
|
1845
|
+
* Exemplo: className="h-[500px]" ou className="h-full"
|
|
1846
|
+
*/
|
|
1847
|
+
className?: string;
|
|
1842
1848
|
brushHeight?: number;
|
|
1843
1849
|
start?: number;
|
|
1844
1850
|
end?: number;
|
|
@@ -2323,8 +2329,30 @@ interface CarouselBaseProps {
|
|
|
2323
2329
|
stiffness?: number;
|
|
2324
2330
|
damping?: number;
|
|
2325
2331
|
};
|
|
2332
|
+
zoomEffect?: "lens" | "scale" | null;
|
|
2333
|
+
download?: boolean;
|
|
2334
|
+
isLoading?: boolean;
|
|
2326
2335
|
}
|
|
2327
|
-
declare function CarouselBase({ items, className, containerClassName, imageClassName, width, height, showControls, showIndicators, autoPlay, autoPlayInterval,
|
|
2336
|
+
declare function CarouselBase({ items, className, containerClassName, imageClassName, width, height, showControls, showIndicators, autoPlay, autoPlayInterval, zoomEffect, download, isLoading, }: CarouselBaseProps): react_jsx_runtime.JSX.Element;
|
|
2337
|
+
|
|
2338
|
+
type PhosphorIcon = React$1.ForwardRefExoticComponent<IconProps$1 & React$1.RefAttributes<SVGSVGElement>>;
|
|
2339
|
+
type MenuItem = {
|
|
2340
|
+
id: number;
|
|
2341
|
+
label: string;
|
|
2342
|
+
icon: PhosphorIcon;
|
|
2343
|
+
};
|
|
2344
|
+
type RadialMenuProps = {
|
|
2345
|
+
children?: React$1.ReactNode;
|
|
2346
|
+
menuItems: MenuItem[];
|
|
2347
|
+
size?: number;
|
|
2348
|
+
iconSize?: number;
|
|
2349
|
+
bandWidth?: number;
|
|
2350
|
+
innerGap?: number;
|
|
2351
|
+
outerGap?: number;
|
|
2352
|
+
outerRingWidth?: number;
|
|
2353
|
+
onSelect?: (item: MenuItem) => void;
|
|
2354
|
+
};
|
|
2355
|
+
declare function RadialMenu({ children, menuItems, size, iconSize, bandWidth, innerGap, outerGap, outerRingWidth, onSelect, }: RadialMenuProps): react_jsx_runtime.JSX.Element;
|
|
2328
2356
|
|
|
2329
2357
|
declare function useIsMobile(): boolean;
|
|
2330
2358
|
|
|
@@ -2345,4 +2373,4 @@ declare const useDrag: (options?: UseDragOptions) => {
|
|
|
2345
2373
|
isDragging: boolean;
|
|
2346
2374
|
};
|
|
2347
2375
|
|
|
2348
|
-
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, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDebouncedInputBase, CommandDialogBase, CommandEmptyBase, CommandGroupBase, CommandInputBase, CommandItemBase, CommandListBase, CommandSeparatorBase, CommandShortcutBase, type Connection, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, 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, EventDialog, EventGap, EventGapAgenda, EventHeight, EventHeightAgenda, EventItem, EventItemAgenda, EventsPopup, FavoriteButton, FileUploader, type FileUploaderProps, type FileWithPreview, FilterButton, type FinalValueFormatter, HideButton, Highlights, HorizontalChart, HorizontalLegend, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, ITEM_HEIGHT, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, type IntegrationProperties, LabelBase, type LabelListContent, Leaderboard, type LeaderboardItem, type LeaderboardProps, type LegendItem, LikeButton, LoadingBase, LockButton, type MapperConfig, type MapperConfigEntry, type Margins, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MonthView, MonthViewAgenda, MoreButton, MultiCombobox, type MultiComboboxProps, type MultiComboboxTestIds, 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, NotificationButton, NumericInput, type Padding, type Period, PeriodsDropdown, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, type Primitive, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, type PropsLabelList, RangePicker, type RangePickerProps, RefreshButton, 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, adaptDataForTooltip, addHoursToDate, addHoursToDateAgenda, addMinutesToDateAgenda, badgeVariants, buttonVariantsBase, compactTick, computeChartWidth, computeNiceMax, computeYAxisTickWidth, convert12HourTo24Hour, createValueFormatter, createYTickFormatter, detectDataFields, detectXAxis, display12HourValue, formatFieldName, formatLinePercentage, generateAdditionalColors, generateColorMap, getAgendaEventsForDay, getAgendaEventsForDayAgenda, getAllEventsForDay, getAllEventsForDayAgenda, getArrowByType, 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, normalizeAttendDate, processNeo4jData, renderInsideBarLabel, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, sortEventsAgenda, toast, useBiaxial, useCalendarDnd, useCalendarDndAgenda, useChartClick, useChartDimensions, useChartHighlights, useChartLayout, useChartMinMax, useChartTooltips, useCurrentTimeIndicator, useCurrentTimeIndicatorAgenda, useDrag, useEventVisibility, useEventVisibilityAgenda, useIsMobile, useOpenTooltipForPeriod, useProcessedData, useSeriesOpacity, useTheme, useTimeSeriesRange, type valueFormatter, visualForItem };
|
|
2376
|
+
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, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDebouncedInputBase, CommandDialogBase, CommandEmptyBase, CommandGroupBase, CommandInputBase, CommandItemBase, CommandListBase, CommandSeparatorBase, CommandShortcutBase, type Connection, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, 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, EventDialog, EventGap, EventGapAgenda, EventHeight, EventHeightAgenda, EventItem, EventItemAgenda, EventsPopup, FavoriteButton, FileUploader, type FileUploaderProps, type FileWithPreview, FilterButton, type FinalValueFormatter, HideButton, Highlights, HorizontalChart, HorizontalLegend, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, ITEM_HEIGHT, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, type IntegrationProperties, LabelBase, type LabelListContent, Leaderboard, type LeaderboardItem, type LeaderboardProps, type LegendItem, LikeButton, LoadingBase, LockButton, type MapperConfig, type MapperConfigEntry, type Margins, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MonthView, MonthViewAgenda, MoreButton, MultiCombobox, type MultiComboboxProps, type MultiComboboxTestIds, 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, NotificationButton, NumericInput, type Padding, type Period, PeriodsDropdown, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, type Primitive, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, type PropsLabelList, RadialMenu, RangePicker, type RangePickerProps, RefreshButton, 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, adaptDataForTooltip, addHoursToDate, addHoursToDateAgenda, addMinutesToDateAgenda, badgeVariants, buttonVariantsBase, compactTick, computeChartWidth, computeNiceMax, computeYAxisTickWidth, convert12HourTo24Hour, createValueFormatter, createYTickFormatter, detectDataFields, detectXAxis, display12HourValue, formatFieldName, formatLinePercentage, generateAdditionalColors, generateColorMap, getAgendaEventsForDay, getAgendaEventsForDayAgenda, getAllEventsForDay, getAllEventsForDayAgenda, getArrowByType, 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, normalizeAttendDate, processNeo4jData, renderInsideBarLabel, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, sortEventsAgenda, toast, useBiaxial, useCalendarDnd, useCalendarDndAgenda, useChartClick, useChartDimensions, useChartHighlights, useChartLayout, useChartMinMax, useChartTooltips, useCurrentTimeIndicator, useCurrentTimeIndicatorAgenda, useDrag, useEventVisibility, useEventVisibilityAgenda, useIsMobile, useOpenTooltipForPeriod, useProcessedData, useSeriesOpacity, useTheme, useTimeSeriesRange, type valueFormatter, visualForItem };
|
package/dist/index.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
|
28
28
|
import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
|
|
29
29
|
import { UniqueIdentifier, DraggableAttributes } from '@dnd-kit/core';
|
|
30
30
|
import { SyntheticListenerMap } from '@dnd-kit/core/dist/hooks/utilities';
|
|
31
|
+
import { IconProps as IconProps$1 } from '@phosphor-icons/react';
|
|
31
32
|
|
|
32
33
|
type ErrorMessageProps = {
|
|
33
34
|
error?: string;
|
|
@@ -1657,8 +1658,8 @@ interface ChartProps {
|
|
|
1657
1658
|
left: number;
|
|
1658
1659
|
bottom: number;
|
|
1659
1660
|
}>;
|
|
1660
|
-
height?: number;
|
|
1661
1661
|
width?: number | string;
|
|
1662
|
+
height?: number;
|
|
1662
1663
|
colors?: string[];
|
|
1663
1664
|
gridColor?: string;
|
|
1664
1665
|
showGrid?: boolean;
|
|
@@ -1834,11 +1835,16 @@ declare const HorizontalChart: React__default.FC<ChartProps>;
|
|
|
1834
1835
|
interface TimeSeriesData {
|
|
1835
1836
|
[key: string]: string | number | boolean | null | undefined;
|
|
1836
1837
|
}
|
|
1837
|
-
interface TimeSeriesProps extends Omit<React__default.ComponentProps<typeof Chart>, "data" | "xAxis" | "timeSeries"> {
|
|
1838
|
+
interface TimeSeriesProps extends Omit<React__default.ComponentProps<typeof Chart>, "data" | "xAxis" | "timeSeries" | "className"> {
|
|
1838
1839
|
data: TimeSeriesData[];
|
|
1839
1840
|
xAxis: string;
|
|
1840
|
-
|
|
1841
|
-
|
|
1841
|
+
/**
|
|
1842
|
+
* className aplicado no wrapper externo do TimeSeries.
|
|
1843
|
+
* Controla a altura total (chart + brush).
|
|
1844
|
+
* Padrão: altura automática (chart 350px + brush natural)
|
|
1845
|
+
* Exemplo: className="h-[500px]" ou className="h-full"
|
|
1846
|
+
*/
|
|
1847
|
+
className?: string;
|
|
1842
1848
|
brushHeight?: number;
|
|
1843
1849
|
start?: number;
|
|
1844
1850
|
end?: number;
|
|
@@ -2323,8 +2329,30 @@ interface CarouselBaseProps {
|
|
|
2323
2329
|
stiffness?: number;
|
|
2324
2330
|
damping?: number;
|
|
2325
2331
|
};
|
|
2332
|
+
zoomEffect?: "lens" | "scale" | null;
|
|
2333
|
+
download?: boolean;
|
|
2334
|
+
isLoading?: boolean;
|
|
2326
2335
|
}
|
|
2327
|
-
declare function CarouselBase({ items, className, containerClassName, imageClassName, width, height, showControls, showIndicators, autoPlay, autoPlayInterval,
|
|
2336
|
+
declare function CarouselBase({ items, className, containerClassName, imageClassName, width, height, showControls, showIndicators, autoPlay, autoPlayInterval, zoomEffect, download, isLoading, }: CarouselBaseProps): react_jsx_runtime.JSX.Element;
|
|
2337
|
+
|
|
2338
|
+
type PhosphorIcon = React$1.ForwardRefExoticComponent<IconProps$1 & React$1.RefAttributes<SVGSVGElement>>;
|
|
2339
|
+
type MenuItem = {
|
|
2340
|
+
id: number;
|
|
2341
|
+
label: string;
|
|
2342
|
+
icon: PhosphorIcon;
|
|
2343
|
+
};
|
|
2344
|
+
type RadialMenuProps = {
|
|
2345
|
+
children?: React$1.ReactNode;
|
|
2346
|
+
menuItems: MenuItem[];
|
|
2347
|
+
size?: number;
|
|
2348
|
+
iconSize?: number;
|
|
2349
|
+
bandWidth?: number;
|
|
2350
|
+
innerGap?: number;
|
|
2351
|
+
outerGap?: number;
|
|
2352
|
+
outerRingWidth?: number;
|
|
2353
|
+
onSelect?: (item: MenuItem) => void;
|
|
2354
|
+
};
|
|
2355
|
+
declare function RadialMenu({ children, menuItems, size, iconSize, bandWidth, innerGap, outerGap, outerRingWidth, onSelect, }: RadialMenuProps): react_jsx_runtime.JSX.Element;
|
|
2328
2356
|
|
|
2329
2357
|
declare function useIsMobile(): boolean;
|
|
2330
2358
|
|
|
@@ -2345,4 +2373,4 @@ declare const useDrag: (options?: UseDragOptions) => {
|
|
|
2345
2373
|
isDragging: boolean;
|
|
2346
2374
|
};
|
|
2347
2375
|
|
|
2348
|
-
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, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDebouncedInputBase, CommandDialogBase, CommandEmptyBase, CommandGroupBase, CommandInputBase, CommandItemBase, CommandListBase, CommandSeparatorBase, CommandShortcutBase, type Connection, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, 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, EventDialog, EventGap, EventGapAgenda, EventHeight, EventHeightAgenda, EventItem, EventItemAgenda, EventsPopup, FavoriteButton, FileUploader, type FileUploaderProps, type FileWithPreview, FilterButton, type FinalValueFormatter, HideButton, Highlights, HorizontalChart, HorizontalLegend, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, ITEM_HEIGHT, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, type IntegrationProperties, LabelBase, type LabelListContent, Leaderboard, type LeaderboardItem, type LeaderboardProps, type LegendItem, LikeButton, LoadingBase, LockButton, type MapperConfig, type MapperConfigEntry, type Margins, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MonthView, MonthViewAgenda, MoreButton, MultiCombobox, type MultiComboboxProps, type MultiComboboxTestIds, 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, NotificationButton, NumericInput, type Padding, type Period, PeriodsDropdown, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, type Primitive, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, type PropsLabelList, RangePicker, type RangePickerProps, RefreshButton, 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, adaptDataForTooltip, addHoursToDate, addHoursToDateAgenda, addMinutesToDateAgenda, badgeVariants, buttonVariantsBase, compactTick, computeChartWidth, computeNiceMax, computeYAxisTickWidth, convert12HourTo24Hour, createValueFormatter, createYTickFormatter, detectDataFields, detectXAxis, display12HourValue, formatFieldName, formatLinePercentage, generateAdditionalColors, generateColorMap, getAgendaEventsForDay, getAgendaEventsForDayAgenda, getAllEventsForDay, getAllEventsForDayAgenda, getArrowByType, 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, normalizeAttendDate, processNeo4jData, renderInsideBarLabel, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, sortEventsAgenda, toast, useBiaxial, useCalendarDnd, useCalendarDndAgenda, useChartClick, useChartDimensions, useChartHighlights, useChartLayout, useChartMinMax, useChartTooltips, useCurrentTimeIndicator, useCurrentTimeIndicatorAgenda, useDrag, useEventVisibility, useEventVisibilityAgenda, useIsMobile, useOpenTooltipForPeriod, useProcessedData, useSeriesOpacity, useTheme, useTimeSeriesRange, type valueFormatter, visualForItem };
|
|
2376
|
+
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, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDebouncedInputBase, CommandDialogBase, CommandEmptyBase, CommandGroupBase, CommandInputBase, CommandItemBase, CommandListBase, CommandSeparatorBase, CommandShortcutBase, type Connection, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, 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, EventDialog, EventGap, EventGapAgenda, EventHeight, EventHeightAgenda, EventItem, EventItemAgenda, EventsPopup, FavoriteButton, FileUploader, type FileUploaderProps, type FileWithPreview, FilterButton, type FinalValueFormatter, HideButton, Highlights, HorizontalChart, HorizontalLegend, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, ITEM_HEIGHT, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, type IntegrationProperties, LabelBase, type LabelListContent, Leaderboard, type LeaderboardItem, type LeaderboardProps, type LegendItem, LikeButton, LoadingBase, LockButton, type MapperConfig, type MapperConfigEntry, type Margins, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MonthView, MonthViewAgenda, MoreButton, MultiCombobox, type MultiComboboxProps, type MultiComboboxTestIds, 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, NotificationButton, NumericInput, type Padding, type Period, PeriodsDropdown, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, type Primitive, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, type PropsLabelList, RadialMenu, RangePicker, type RangePickerProps, RefreshButton, 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, adaptDataForTooltip, addHoursToDate, addHoursToDateAgenda, addMinutesToDateAgenda, badgeVariants, buttonVariantsBase, compactTick, computeChartWidth, computeNiceMax, computeYAxisTickWidth, convert12HourTo24Hour, createValueFormatter, createYTickFormatter, detectDataFields, detectXAxis, display12HourValue, formatFieldName, formatLinePercentage, generateAdditionalColors, generateColorMap, getAgendaEventsForDay, getAgendaEventsForDayAgenda, getAllEventsForDay, getAllEventsForDayAgenda, getArrowByType, 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, normalizeAttendDate, processNeo4jData, renderInsideBarLabel, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, sortEventsAgenda, toast, useBiaxial, useCalendarDnd, useCalendarDndAgenda, useChartClick, useChartDimensions, useChartHighlights, useChartLayout, useChartMinMax, useChartTooltips, useCurrentTimeIndicator, useCurrentTimeIndicatorAgenda, useDrag, useEventVisibility, useEventVisibilityAgenda, useIsMobile, useOpenTooltipForPeriod, useProcessedData, useSeriesOpacity, useTheme, useTimeSeriesRange, type valueFormatter, visualForItem };
|