@mlw-packages/react-components 1.7.4 → 1.7.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.css CHANGED
@@ -592,6 +592,9 @@ body {
592
592
  .row-span-3 {
593
593
  grid-row: span 3 / span 3;
594
594
  }
595
+ .m-0 {
596
+ margin: 0px;
597
+ }
595
598
  .m-12 {
596
599
  margin: 3rem;
597
600
  }
@@ -606,6 +609,10 @@ body {
606
609
  margin-left: 0.125rem;
607
610
  margin-right: 0.125rem;
608
611
  }
612
+ .mx-1 {
613
+ margin-left: 0.25rem;
614
+ margin-right: 0.25rem;
615
+ }
609
616
  .mx-2 {
610
617
  margin-left: 0.5rem;
611
618
  margin-right: 0.5rem;
@@ -712,6 +719,9 @@ body {
712
719
  .mr-2 {
713
720
  margin-right: 0.5rem;
714
721
  }
722
+ .mr-3 {
723
+ margin-right: 0.75rem;
724
+ }
715
725
  .mr-4 {
716
726
  margin-right: 1rem;
717
727
  }
@@ -896,9 +906,6 @@ body {
896
906
  .h-\[1\.2rem\] {
897
907
  height: 1.2rem;
898
908
  }
899
- .h-\[10\%\] {
900
- height: 10%;
901
- }
902
909
  .h-\[150px\] {
903
910
  height: 150px;
904
911
  }
@@ -968,21 +975,30 @@ body {
968
975
  .max-h-\[var\(--radix-context-menu-content-available-height\)\] {
969
976
  max-height: var(--radix-context-menu-content-available-height);
970
977
  }
978
+ .max-h-screen {
979
+ max-height: 100vh;
980
+ }
971
981
  .min-h-0 {
972
982
  min-height: 0px;
973
983
  }
984
+ .min-h-\[2\.25rem\] {
985
+ min-height: 2.25rem;
986
+ }
987
+ .min-h-\[2\.5rem\] {
988
+ min-height: 2.5rem;
989
+ }
974
990
  .min-h-\[220px\] {
975
991
  min-height: 220px;
976
992
  }
977
- .min-h-\[2rem\] {
978
- min-height: 2rem;
979
- }
980
993
  .min-h-\[300px\] {
981
994
  min-height: 300px;
982
995
  }
983
996
  .min-h-\[36px\] {
984
997
  min-height: 36px;
985
998
  }
999
+ .min-h-\[3rem\] {
1000
+ min-height: 3rem;
1001
+ }
986
1002
  .min-h-\[600px\] {
987
1003
  min-height: 600px;
988
1004
  }
@@ -1174,9 +1190,6 @@ body {
1174
1190
  .min-w-80 {
1175
1191
  min-width: 20rem;
1176
1192
  }
1177
- .min-w-9 {
1178
- min-width: 2.25rem;
1179
- }
1180
1193
  .min-w-\[1\.5rem\] {
1181
1194
  min-width: 1.5rem;
1182
1195
  }
@@ -1192,9 +1205,6 @@ body {
1192
1205
  .min-w-\[2rem\] {
1193
1206
  min-width: 2rem;
1194
1207
  }
1195
- .min-w-\[72px\] {
1196
- min-width: 72px;
1197
- }
1198
1208
  .min-w-\[8rem\] {
1199
1209
  min-width: 8rem;
1200
1210
  }
@@ -1241,8 +1251,8 @@ body {
1241
1251
  .max-w-\[280px\] {
1242
1252
  max-width: 280px;
1243
1253
  }
1244
- .max-w-\[420px\] {
1245
- max-width: 420px;
1254
+ .max-w-\[360px\] {
1255
+ max-width: 360px;
1246
1256
  }
1247
1257
  .max-w-\[6rem\] {
1248
1258
  max-width: 6rem;
@@ -1342,11 +1352,6 @@ body {
1342
1352
  --tw-rotate: 90deg;
1343
1353
  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));
1344
1354
  }
1345
- .\!scale-100 {
1346
- --tw-scale-x: 1 !important;
1347
- --tw-scale-y: 1 !important;
1348
- 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)) !important;
1349
- }
1350
1355
  .scale-0 {
1351
1356
  --tw-scale-x: 0;
1352
1357
  --tw-scale-y: 0;
@@ -1444,6 +1449,12 @@ body {
1444
1449
  .grid-cols-5 {
1445
1450
  grid-template-columns: repeat(5, minmax(0, 1fr));
1446
1451
  }
1452
+ .grid-cols-7 {
1453
+ grid-template-columns: repeat(7, minmax(0, 1fr));
1454
+ }
1455
+ .grid-rows-\[auto_1fr\] {
1456
+ grid-template-rows: auto 1fr;
1457
+ }
1447
1458
  .flex-row {
1448
1459
  flex-direction: row;
1449
1460
  }
@@ -1471,6 +1482,9 @@ body {
1471
1482
  .items-baseline {
1472
1483
  align-items: baseline;
1473
1484
  }
1485
+ .items-stretch {
1486
+ align-items: stretch;
1487
+ }
1474
1488
  .justify-start {
1475
1489
  justify-content: flex-start;
1476
1490
  }
@@ -1726,9 +1740,6 @@ body {
1726
1740
  .rounded-tl-sm {
1727
1741
  border-top-left-radius: calc(var(--radius) - 4px);
1728
1742
  }
1729
- .\!border-0 {
1730
- border-width: 0px !important;
1731
- }
1732
1743
  .border {
1733
1744
  border-width: 1px;
1734
1745
  }
@@ -1752,6 +1763,9 @@ body {
1752
1763
  .border-b {
1753
1764
  border-bottom-width: 1px;
1754
1765
  }
1766
+ .border-b-2 {
1767
+ border-bottom-width: 2px;
1768
+ }
1755
1769
  .border-l {
1756
1770
  border-left-width: 1px;
1757
1771
  }
@@ -1773,6 +1787,10 @@ body {
1773
1787
  .border-none {
1774
1788
  border-style: none;
1775
1789
  }
1790
+ .border-blue-500 {
1791
+ --tw-border-opacity: 1;
1792
+ border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
1793
+ }
1776
1794
  .border-border {
1777
1795
  border-color: hsl(var(--border));
1778
1796
  }
@@ -2229,10 +2247,6 @@ body {
2229
2247
  padding-left: 0.25rem;
2230
2248
  padding-right: 0.25rem;
2231
2249
  }
2232
- .px-10 {
2233
- padding-left: 2.5rem;
2234
- padding-right: 2.5rem;
2235
- }
2236
2250
  .px-2 {
2237
2251
  padding-left: 0.5rem;
2238
2252
  padding-right: 0.5rem;
@@ -2343,6 +2357,9 @@ body {
2343
2357
  .pl-8 {
2344
2358
  padding-left: 2rem;
2345
2359
  }
2360
+ .pr-1 {
2361
+ padding-right: 0.25rem;
2362
+ }
2346
2363
  .pr-10 {
2347
2364
  padding-right: 2.5rem;
2348
2365
  }
@@ -2441,11 +2458,14 @@ body {
2441
2458
  .text-\[28\.5px\] {
2442
2459
  font-size: 28.5px;
2443
2460
  }
2444
- .text-\[clamp\(0\.625rem\,1\.5vw\,0\.75rem\)\] {
2445
- font-size: clamp(0.625rem, 1.5vw, 0.75rem);
2461
+ .text-\[clamp\(0\.575rem\,1\.2vw\,0\.75rem\)\] {
2462
+ font-size: clamp(0.575rem, 1.2vw, 0.75rem);
2463
+ }
2464
+ .text-\[clamp\(0\.775rem\,1\.2vw\,0\.95rem\)\] {
2465
+ font-size: clamp(0.775rem, 1.2vw, 0.95rem);
2446
2466
  }
2447
- .text-\[clamp\(0\.875rem\,2\.5vw\,1\.25rem\)\] {
2448
- font-size: clamp(0.875rem, 2.5vw, 1.25rem);
2467
+ .text-\[clamp\(0\.85rem\,1\.4vw\,1\.125rem\)\] {
2468
+ font-size: clamp(0.85rem, 1.4vw, 1.125rem);
2449
2469
  }
2450
2470
  .text-base {
2451
2471
  font-size: 1rem;
@@ -2507,9 +2527,6 @@ body {
2507
2527
  .leading-none {
2508
2528
  line-height: 1;
2509
2529
  }
2510
- .leading-relaxed {
2511
- line-height: 1.625;
2512
- }
2513
2530
  .leading-snug {
2514
2531
  line-height: 1.375;
2515
2532
  }
@@ -2536,6 +2553,10 @@ body {
2536
2553
  --tw-text-opacity: 1;
2537
2554
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
2538
2555
  }
2556
+ .text-blue-400 {
2557
+ --tw-text-opacity: 1;
2558
+ color: rgb(96 165 250 / var(--tw-text-opacity, 1));
2559
+ }
2539
2560
  .text-blue-500 {
2540
2561
  --tw-text-opacity: 1;
2541
2562
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
@@ -2587,6 +2608,10 @@ body {
2587
2608
  --tw-text-opacity: 1;
2588
2609
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
2589
2610
  }
2611
+ .text-green-400 {
2612
+ --tw-text-opacity: 1;
2613
+ color: rgb(74 222 128 / var(--tw-text-opacity, 1));
2614
+ }
2590
2615
  .text-green-500 {
2591
2616
  --tw-text-opacity: 1;
2592
2617
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
@@ -2626,9 +2651,6 @@ body {
2626
2651
  .text-muted-foreground\/70 {
2627
2652
  color: hsl(var(--muted-foreground) / 0.7);
2628
2653
  }
2629
- .text-muted\/50 {
2630
- color: hsl(var(--muted) / 0.5);
2631
- }
2632
2654
  .text-neutral-500 {
2633
2655
  --tw-text-opacity: 1;
2634
2656
  color: rgb(115 115 115 / var(--tw-text-opacity, 1));
@@ -2724,6 +2746,10 @@ body {
2724
2746
  --tw-text-opacity: 1;
2725
2747
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
2726
2748
  }
2749
+ .text-yellow-400 {
2750
+ --tw-text-opacity: 1;
2751
+ color: rgb(250 204 21 / var(--tw-text-opacity, 1));
2752
+ }
2727
2753
  .text-yellow-500 {
2728
2754
  --tw-text-opacity: 1;
2729
2755
  color: rgb(234 179 8 / var(--tw-text-opacity, 1));
@@ -2865,10 +2891,6 @@ body {
2865
2891
  --tw-shadow-color: rgb(0 0 0 / 0.1);
2866
2892
  --tw-shadow: var(--tw-shadow-colored);
2867
2893
  }
2868
- .\!outline-none {
2869
- outline: 2px solid transparent !important;
2870
- outline-offset: 2px !important;
2871
- }
2872
2894
  .outline-none {
2873
2895
  outline: 2px solid transparent;
2874
2896
  outline-offset: 2px;
@@ -2936,9 +2958,6 @@ body {
2936
2958
  .ring-primary\/30 {
2937
2959
  --tw-ring-color: hsl(var(--primary) / 0.3);
2938
2960
  }
2939
- .ring-primary\/50 {
2940
- --tw-ring-color: hsl(var(--primary) / 0.5);
2941
- }
2942
2961
  .ring-ring {
2943
2962
  --tw-ring-color: hsl(var(--ring));
2944
2963
  }
@@ -3076,6 +3095,9 @@ body {
3076
3095
  .duration-1000 {
3077
3096
  transition-duration: 1000ms;
3078
3097
  }
3098
+ .duration-150 {
3099
+ transition-duration: 150ms;
3100
+ }
3079
3101
  .duration-200 {
3080
3102
  transition-duration: 200ms;
3081
3103
  }
@@ -3130,6 +3152,9 @@ body {
3130
3152
  .duration-1000 {
3131
3153
  animation-duration: 1000ms;
3132
3154
  }
3155
+ .duration-150 {
3156
+ animation-duration: 150ms;
3157
+ }
3133
3158
  .duration-200 {
3134
3159
  animation-duration: 200ms;
3135
3160
  }
@@ -3456,11 +3481,6 @@ body {
3456
3481
  --tw-rotate: 90deg;
3457
3482
  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));
3458
3483
  }
3459
- .hover\:\!scale-100:hover {
3460
- --tw-scale-x: 1 !important;
3461
- --tw-scale-y: 1 !important;
3462
- 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)) !important;
3463
- }
3464
3484
  .hover\:scale-100:hover {
3465
3485
  --tw-scale-x: 1;
3466
3486
  --tw-scale-y: 1;
@@ -3789,6 +3809,9 @@ body {
3789
3809
  .focus\:ring-primary:focus {
3790
3810
  --tw-ring-color: hsl(var(--primary));
3791
3811
  }
3812
+ .focus\:ring-primary\/40:focus {
3813
+ --tw-ring-color: hsl(var(--primary) / 0.4);
3814
+ }
3792
3815
  .focus\:ring-ring:focus {
3793
3816
  --tw-ring-color: hsl(var(--ring));
3794
3817
  }
@@ -3869,11 +3892,6 @@ body {
3869
3892
  --tw-rotate: 0deg;
3870
3893
  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));
3871
3894
  }
3872
- .active\:\!scale-100:active {
3873
- --tw-scale-x: 1 !important;
3874
- --tw-scale-y: 1 !important;
3875
- 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)) !important;
3876
- }
3877
3895
  .active\:scale-125:active {
3878
3896
  --tw-scale-x: 1.25;
3879
3897
  --tw-scale-y: 1.25;
@@ -4021,11 +4039,6 @@ body {
4021
4039
  .aria-disabled\:opacity-50[aria-disabled=true] {
4022
4040
  opacity: 0.5;
4023
4041
  }
4024
- .aria-selected\:\!scale-100[aria-selected=true] {
4025
- --tw-scale-x: 1 !important;
4026
- --tw-scale-y: 1 !important;
4027
- 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)) !important;
4028
- }
4029
4042
  .aria-selected\:bg-muted[aria-selected=true] {
4030
4043
  background-color: hsl(var(--muted));
4031
4044
  }
@@ -4858,6 +4871,10 @@ body {
4858
4871
  --tw-bg-opacity: 1;
4859
4872
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
4860
4873
  }
4874
+ .dark\:hover\:bg-slate-700:hover:is(.dark *) {
4875
+ --tw-bg-opacity: 1;
4876
+ background-color: rgb(51 65 85 / var(--tw-bg-opacity, 1));
4877
+ }
4861
4878
  .dark\:hover\:text-emerald-300:hover:is(.dark *) {
4862
4879
  --tw-text-opacity: 1;
4863
4880
  color: rgb(110 231 183 / var(--tw-text-opacity, 1));
@@ -4919,9 +4936,15 @@ body {
4919
4936
  .sm\:mb-2 {
4920
4937
  margin-bottom: 0.5rem;
4921
4938
  }
4939
+ .sm\:inline {
4940
+ display: inline;
4941
+ }
4922
4942
  .sm\:flex {
4923
4943
  display: flex;
4924
4944
  }
4945
+ .sm\:h-10 {
4946
+ height: 2.5rem;
4947
+ }
4925
4948
  .sm\:h-12 {
4926
4949
  height: 3rem;
4927
4950
  }
@@ -4934,6 +4957,9 @@ body {
4934
4957
  .sm\:h-6 {
4935
4958
  height: 1.5rem;
4936
4959
  }
4960
+ .sm\:h-9 {
4961
+ height: 2.25rem;
4962
+ }
4937
4963
  .sm\:min-h-\[40px\] {
4938
4964
  min-height: 40px;
4939
4965
  }
@@ -4952,9 +4978,15 @@ body {
4952
4978
  .sm\:w-6 {
4953
4979
  width: 1.5rem;
4954
4980
  }
4981
+ .sm\:w-9 {
4982
+ width: 2.25rem;
4983
+ }
4955
4984
  .sm\:w-auto {
4956
4985
  width: auto;
4957
4986
  }
4987
+ .sm\:max-w-\[420px\] {
4988
+ max-width: 420px;
4989
+ }
4958
4990
  .sm\:max-w-md {
4959
4991
  max-width: 28rem;
4960
4992
  }
@@ -4989,6 +5021,9 @@ body {
4989
5021
  .sm\:gap-3 {
4990
5022
  gap: 0.75rem;
4991
5023
  }
5024
+ .sm\:gap-4 {
5025
+ gap: 1rem;
5026
+ }
4992
5027
  .sm\:space-x-2 > :not([hidden]) ~ :not([hidden]) {
4993
5028
  --tw-space-x-reverse: 0;
4994
5029
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
@@ -5033,6 +5068,15 @@ body {
5033
5068
  .sm\:text-left {
5034
5069
  text-align: left;
5035
5070
  }
5071
+ .sm\:text-\[0\.95rem\] {
5072
+ font-size: 0.95rem;
5073
+ }
5074
+ .sm\:text-\[clamp\(0\.65rem\,1\.1vw\,0\.825rem\)\] {
5075
+ font-size: clamp(0.65rem, 1.1vw, 0.825rem);
5076
+ }
5077
+ .sm\:text-\[clamp\(0\.9rem\,1\.6vw\,1\.125rem\)\] {
5078
+ font-size: clamp(0.9rem, 1.6vw, 1.125rem);
5079
+ }
5036
5080
  .sm\:text-base {
5037
5081
  font-size: 1rem;
5038
5082
  line-height: 1.5rem;
@@ -5063,9 +5107,21 @@ body {
5063
5107
  .md\:block {
5064
5108
  display: block;
5065
5109
  }
5110
+ .md\:inline {
5111
+ display: inline;
5112
+ }
5066
5113
  .md\:flex {
5067
5114
  display: flex;
5068
5115
  }
5116
+ .md\:h-10 {
5117
+ height: 2.5rem;
5118
+ }
5119
+ .md\:h-11 {
5120
+ height: 2.75rem;
5121
+ }
5122
+ .md\:w-10 {
5123
+ width: 2.5rem;
5124
+ }
5069
5125
  .md\:w-\[400px\] {
5070
5126
  width: 400px;
5071
5127
  }
@@ -5078,6 +5134,9 @@ body {
5078
5134
  .md\:w-auto {
5079
5135
  width: auto;
5080
5136
  }
5137
+ .md\:max-w-\[520px\] {
5138
+ max-width: 520px;
5139
+ }
5081
5140
  .md\:basis-1\/2 {
5082
5141
  flex-basis: 50%;
5083
5142
  }
@@ -5112,9 +5171,6 @@ body {
5112
5171
  .md\:p-4 {
5113
5172
  padding: 1rem;
5114
5173
  }
5115
- .md\:p-6 {
5116
- padding: 1.5rem;
5117
- }
5118
5174
  .md\:text-left {
5119
5175
  text-align: left;
5120
5176
  }
@@ -5217,18 +5273,10 @@ body {
5217
5273
  --tw-bg-opacity: 1;
5218
5274
  background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
5219
5275
  }
5220
- .first\:\[\&\:has\(\[aria-selected\]\)\]\:rounded-l-lg:has([aria-selected]):first-child {
5221
- border-top-left-radius: var(--radius);
5222
- border-bottom-left-radius: var(--radius);
5223
- }
5224
5276
  .first\:\[\&\:has\(\[aria-selected\]\)\]\:rounded-l-md:has([aria-selected]):first-child {
5225
5277
  border-top-left-radius: calc(var(--radius) - 2px);
5226
5278
  border-bottom-left-radius: calc(var(--radius) - 2px);
5227
5279
  }
5228
- .last\:\[\&\:has\(\[aria-selected\]\)\]\:rounded-r-lg:has([aria-selected]):last-child {
5229
- border-top-right-radius: var(--radius);
5230
- border-bottom-right-radius: var(--radius);
5231
- }
5232
5280
  .last\:\[\&\:has\(\[aria-selected\]\)\]\:rounded-r-md:has([aria-selected]):last-child {
5233
5281
  border-top-right-radius: calc(var(--radius) - 2px);
5234
5282
  border-bottom-right-radius: calc(var(--radius) - 2px);
@@ -5381,14 +5429,6 @@ body {
5381
5429
  .\[\&_tr\]\:border-b tr {
5382
5430
  border-bottom-width: 1px;
5383
5431
  }
5384
- @media (min-width:400px) {
5385
- .\[\@media\(min-width\:400px\)\]\:h-9 {
5386
- height: 2.25rem;
5387
- }
5388
- .\[\@media\(min-width\:400px\)\]\:w-9 {
5389
- width: 2.25rem;
5390
- }
5391
- }
5392
5432
  [data-side=left][data-collapsible=offcanvas] .\[\[data-side\=left\]\[data-collapsible\=offcanvas\]_\&\]\:-right-2 {
5393
5433
  right: -0.5rem;
5394
5434
  }
package/dist/index.d.mts CHANGED
@@ -123,6 +123,7 @@ interface SelectItem<T extends string> {
123
123
  interface DefaultSelectProps extends ErrorMessageProps {
124
124
  placeholder: string;
125
125
  onChange: (value: string) => void;
126
+ disabled?: boolean;
126
127
  }
127
128
  interface SelectTestIds {
128
129
  root?: string;
@@ -149,7 +150,7 @@ interface SelectPropsWithGroupItems<T extends string> extends DefaultSelectProps
149
150
  testIds?: SelectTestIds;
150
151
  }
151
152
  type SelectProps<T extends string> = SelectPropsWithItems<T> | SelectPropsWithGroupItems<T>;
152
- declare function Select<T extends string>({ items, groupItems, placeholder, onChange, error, testIds, }: SelectProps<T>): react_jsx_runtime.JSX.Element;
153
+ declare function Select<T extends string>({ items, groupItems, placeholder, onChange, error, testIds, disabled, }: SelectProps<T>): react_jsx_runtime.JSX.Element;
153
154
 
154
155
  declare const formatFieldName: (fieldName: string) => string;
155
156
  declare const detectDataFields: (data: Record<string, unknown>[], xAxisKey: string) => string[];
@@ -681,6 +682,7 @@ declare const buttonVariantsBase: (props?: ({
681
682
  interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariantsBase> {
682
683
  asChild?: boolean;
683
684
  testid?: string;
685
+ isLoading?: boolean;
684
686
  }
685
687
  declare const ButtonBase: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
686
688
  interface ButtonGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
@@ -1228,6 +1230,36 @@ declare function ContextMenuLabelBase({ className, inset, ...props }: React$1.Co
1228
1230
  declare function ContextMenuSeparatorBase({ className, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Separator>): react_jsx_runtime.JSX.Element;
1229
1231
  declare function ContextMenuShortcutBase({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
1230
1232
 
1233
+ type CodeBlockProps = {
1234
+ language: string;
1235
+ filename: string;
1236
+ highlightLines?: number[];
1237
+ breadcrumb?: string[];
1238
+ showStats?: boolean;
1239
+ loading?: boolean;
1240
+ loaderWords?: string[];
1241
+ } & ({
1242
+ code: string;
1243
+ tabs?: never;
1244
+ } | {
1245
+ code?: never;
1246
+ tabs: Array<{
1247
+ name: string;
1248
+ code: string;
1249
+ language?: string;
1250
+ highlightLines?: number[];
1251
+ }>;
1252
+ } | {
1253
+ code?: string;
1254
+ tabs?: Array<{
1255
+ name: string;
1256
+ code: string;
1257
+ language?: string;
1258
+ highlightLines?: number[];
1259
+ }>;
1260
+ });
1261
+ declare const CodeBlock: ({ language, filename, code, highlightLines, tabs, breadcrumb, showStats, }: CodeBlockProps) => react_jsx_runtime.JSX.Element;
1262
+
1231
1263
  declare function useIsMobile(): boolean;
1232
1264
 
1233
1265
  interface Position {
@@ -1247,4 +1279,4 @@ declare const useDrag: (options?: UseDragOptions) => {
1247
1279
  isDragging: boolean;
1248
1280
  };
1249
1281
 
1250
- export { AddButton, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarFallbackBase, AvatarImageBase, BackButton, BadgeBase, BarChart, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, ButtonBase, ButtonGroupBase, type ButtonProps, CalendarBase, type CalendarProps, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, type CarouselApi, CarouselBase, CarouselContentBase, CarouselItemBase, CarouselNextBase, CarouselPrevious, ChangeButton, Chart, CheckButton, CheckboxBase, CloseAllButton, CloseButton, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDialogBase, CommandEmptyBase, CommandGroupBase, CommandInputBase, CommandItemBase, CommandListBase, CommandSeparatorBase, CommandShortcutBase, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, CopyButton, DateTimePicker, type DebouncedInputProps, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, DownloadButton, 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, EditButton, ErrorMessage, FavoriteButton, FileUploader, type FileUploaderProps, type FileWithPreview, FilterButton, HideButton, Highlights, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, LikeButton, CustomLineChart as LineChart, LoadingBase, LockButton, type Margins, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MoreButton, MultiCombobox, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, NotificationButton, type Padding, type Period, PeriodsDropdown, CustomPieChart as PieChart, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, RangePicker, type RangePickerProps, RefreshButton, SaveButton, ScrollAreaBase, ScrollBarBase, SearchButton, Select, SelectBase, SelectContentBase, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, SelectTriggerBase, SelectValueBase, SeparatorBase, 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, SwitchBase, TableBase, TableBodyBase, TableCaptionBase, TableCellBase, TableFooterBase, TableHeadBase, TableHeaderBase, TableRowBase, TabsBase, TabsContentBase, TabsListBase, TabsTriggerBase, TextAreaBase, type TextAreaBaseProps, type Theme, ThemeProviderBase, TimePicker, TimePickerInput, type TimePickerInputProps, type TimePickerType, Toaster, TooltipBase, TooltipContentBase, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UniversalTooltipRenderer, UnlockButton, UploadButton, UseSideBarBase, ViewButton, VisibilityButton, badgeVariants, buttonVariantsBase, compactTick, convert12HourTo24Hour, detectDataFields, detectXAxis, display12HourValue, formatFieldName, generateAdditionalColors, getArrowByType, getDateByType, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, toast, useChartHighlights, useDrag, useIsMobile, useTheme, type valueFormatter };
1282
+ export { AddButton, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarFallbackBase, AvatarImageBase, BackButton, BadgeBase, BarChart, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, ButtonBase, ButtonGroupBase, type ButtonProps, CalendarBase, type CalendarProps, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, type CarouselApi, CarouselBase, CarouselContentBase, CarouselItemBase, CarouselNextBase, CarouselPrevious, ChangeButton, Chart, CheckButton, CheckboxBase, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDialogBase, CommandEmptyBase, CommandGroupBase, CommandInputBase, CommandItemBase, CommandListBase, CommandSeparatorBase, CommandShortcutBase, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, CopyButton, DateTimePicker, type DebouncedInputProps, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, DownloadButton, 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, EditButton, ErrorMessage, FavoriteButton, FileUploader, type FileUploaderProps, type FileWithPreview, FilterButton, HideButton, Highlights, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, LikeButton, CustomLineChart as LineChart, LoadingBase, LockButton, type Margins, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MoreButton, MultiCombobox, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, NotificationButton, type Padding, type Period, PeriodsDropdown, CustomPieChart as PieChart, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, RangePicker, type RangePickerProps, RefreshButton, SaveButton, ScrollAreaBase, ScrollBarBase, SearchButton, Select, SelectBase, SelectContentBase, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, SelectTriggerBase, SelectValueBase, SeparatorBase, 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, SwitchBase, TableBase, TableBodyBase, TableCaptionBase, TableCellBase, TableFooterBase, TableHeadBase, TableHeaderBase, TableRowBase, TabsBase, TabsContentBase, TabsListBase, TabsTriggerBase, TextAreaBase, type TextAreaBaseProps, type Theme, ThemeProviderBase, TimePicker, TimePickerInput, type TimePickerInputProps, type TimePickerType, Toaster, TooltipBase, TooltipContentBase, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UniversalTooltipRenderer, UnlockButton, UploadButton, UseSideBarBase, ViewButton, VisibilityButton, badgeVariants, buttonVariantsBase, compactTick, convert12HourTo24Hour, detectDataFields, detectXAxis, display12HourValue, formatFieldName, generateAdditionalColors, getArrowByType, getDateByType, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, toast, useChartHighlights, useDrag, useIsMobile, useTheme, type valueFormatter };
package/dist/index.d.ts CHANGED
@@ -123,6 +123,7 @@ interface SelectItem<T extends string> {
123
123
  interface DefaultSelectProps extends ErrorMessageProps {
124
124
  placeholder: string;
125
125
  onChange: (value: string) => void;
126
+ disabled?: boolean;
126
127
  }
127
128
  interface SelectTestIds {
128
129
  root?: string;
@@ -149,7 +150,7 @@ interface SelectPropsWithGroupItems<T extends string> extends DefaultSelectProps
149
150
  testIds?: SelectTestIds;
150
151
  }
151
152
  type SelectProps<T extends string> = SelectPropsWithItems<T> | SelectPropsWithGroupItems<T>;
152
- declare function Select<T extends string>({ items, groupItems, placeholder, onChange, error, testIds, }: SelectProps<T>): react_jsx_runtime.JSX.Element;
153
+ declare function Select<T extends string>({ items, groupItems, placeholder, onChange, error, testIds, disabled, }: SelectProps<T>): react_jsx_runtime.JSX.Element;
153
154
 
154
155
  declare const formatFieldName: (fieldName: string) => string;
155
156
  declare const detectDataFields: (data: Record<string, unknown>[], xAxisKey: string) => string[];
@@ -681,6 +682,7 @@ declare const buttonVariantsBase: (props?: ({
681
682
  interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariantsBase> {
682
683
  asChild?: boolean;
683
684
  testid?: string;
685
+ isLoading?: boolean;
684
686
  }
685
687
  declare const ButtonBase: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
686
688
  interface ButtonGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
@@ -1228,6 +1230,36 @@ declare function ContextMenuLabelBase({ className, inset, ...props }: React$1.Co
1228
1230
  declare function ContextMenuSeparatorBase({ className, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Separator>): react_jsx_runtime.JSX.Element;
1229
1231
  declare function ContextMenuShortcutBase({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
1230
1232
 
1233
+ type CodeBlockProps = {
1234
+ language: string;
1235
+ filename: string;
1236
+ highlightLines?: number[];
1237
+ breadcrumb?: string[];
1238
+ showStats?: boolean;
1239
+ loading?: boolean;
1240
+ loaderWords?: string[];
1241
+ } & ({
1242
+ code: string;
1243
+ tabs?: never;
1244
+ } | {
1245
+ code?: never;
1246
+ tabs: Array<{
1247
+ name: string;
1248
+ code: string;
1249
+ language?: string;
1250
+ highlightLines?: number[];
1251
+ }>;
1252
+ } | {
1253
+ code?: string;
1254
+ tabs?: Array<{
1255
+ name: string;
1256
+ code: string;
1257
+ language?: string;
1258
+ highlightLines?: number[];
1259
+ }>;
1260
+ });
1261
+ declare const CodeBlock: ({ language, filename, code, highlightLines, tabs, breadcrumb, showStats, }: CodeBlockProps) => react_jsx_runtime.JSX.Element;
1262
+
1231
1263
  declare function useIsMobile(): boolean;
1232
1264
 
1233
1265
  interface Position {
@@ -1247,4 +1279,4 @@ declare const useDrag: (options?: UseDragOptions) => {
1247
1279
  isDragging: boolean;
1248
1280
  };
1249
1281
 
1250
- export { AddButton, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarFallbackBase, AvatarImageBase, BackButton, BadgeBase, BarChart, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, ButtonBase, ButtonGroupBase, type ButtonProps, CalendarBase, type CalendarProps, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, type CarouselApi, CarouselBase, CarouselContentBase, CarouselItemBase, CarouselNextBase, CarouselPrevious, ChangeButton, Chart, CheckButton, CheckboxBase, CloseAllButton, CloseButton, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDialogBase, CommandEmptyBase, CommandGroupBase, CommandInputBase, CommandItemBase, CommandListBase, CommandSeparatorBase, CommandShortcutBase, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, CopyButton, DateTimePicker, type DebouncedInputProps, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, DownloadButton, 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, EditButton, ErrorMessage, FavoriteButton, FileUploader, type FileUploaderProps, type FileWithPreview, FilterButton, HideButton, Highlights, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, LikeButton, CustomLineChart as LineChart, LoadingBase, LockButton, type Margins, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MoreButton, MultiCombobox, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, NotificationButton, type Padding, type Period, PeriodsDropdown, CustomPieChart as PieChart, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, RangePicker, type RangePickerProps, RefreshButton, SaveButton, ScrollAreaBase, ScrollBarBase, SearchButton, Select, SelectBase, SelectContentBase, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, SelectTriggerBase, SelectValueBase, SeparatorBase, 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, SwitchBase, TableBase, TableBodyBase, TableCaptionBase, TableCellBase, TableFooterBase, TableHeadBase, TableHeaderBase, TableRowBase, TabsBase, TabsContentBase, TabsListBase, TabsTriggerBase, TextAreaBase, type TextAreaBaseProps, type Theme, ThemeProviderBase, TimePicker, TimePickerInput, type TimePickerInputProps, type TimePickerType, Toaster, TooltipBase, TooltipContentBase, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UniversalTooltipRenderer, UnlockButton, UploadButton, UseSideBarBase, ViewButton, VisibilityButton, badgeVariants, buttonVariantsBase, compactTick, convert12HourTo24Hour, detectDataFields, detectXAxis, display12HourValue, formatFieldName, generateAdditionalColors, getArrowByType, getDateByType, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, toast, useChartHighlights, useDrag, useIsMobile, useTheme, type valueFormatter };
1282
+ export { AddButton, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarFallbackBase, AvatarImageBase, BackButton, BadgeBase, BarChart, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, ButtonBase, ButtonGroupBase, type ButtonProps, CalendarBase, type CalendarProps, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, type CarouselApi, CarouselBase, CarouselContentBase, CarouselItemBase, CarouselNextBase, CarouselPrevious, ChangeButton, Chart, CheckButton, CheckboxBase, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDialogBase, CommandEmptyBase, CommandGroupBase, CommandInputBase, CommandItemBase, CommandListBase, CommandSeparatorBase, CommandShortcutBase, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, CopyButton, DateTimePicker, type DebouncedInputProps, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, DownloadButton, 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, EditButton, ErrorMessage, FavoriteButton, FileUploader, type FileUploaderProps, type FileWithPreview, FilterButton, HideButton, Highlights, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, LikeButton, CustomLineChart as LineChart, LoadingBase, LockButton, type Margins, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MoreButton, MultiCombobox, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, NotificationButton, type Padding, type Period, PeriodsDropdown, CustomPieChart as PieChart, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, RangePicker, type RangePickerProps, RefreshButton, SaveButton, ScrollAreaBase, ScrollBarBase, SearchButton, Select, SelectBase, SelectContentBase, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, SelectTriggerBase, SelectValueBase, SeparatorBase, 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, SwitchBase, TableBase, TableBodyBase, TableCaptionBase, TableCellBase, TableFooterBase, TableHeadBase, TableHeaderBase, TableRowBase, TabsBase, TabsContentBase, TabsListBase, TabsTriggerBase, TextAreaBase, type TextAreaBaseProps, type Theme, ThemeProviderBase, TimePicker, TimePickerInput, type TimePickerInputProps, type TimePickerType, Toaster, TooltipBase, TooltipContentBase, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UniversalTooltipRenderer, UnlockButton, UploadButton, UseSideBarBase, ViewButton, VisibilityButton, badgeVariants, buttonVariantsBase, compactTick, convert12HourTo24Hour, detectDataFields, detectXAxis, display12HourValue, formatFieldName, generateAdditionalColors, getArrowByType, getDateByType, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, toast, useChartHighlights, useDrag, useIsMobile, useTheme, type valueFormatter };