@mlw-packages/react-components 1.8.8 → 1.8.10
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 +161 -3
- package/dist/index.d.mts +115 -89
- package/dist/index.d.ts +115 -89
- package/dist/index.js +549 -237
- package/dist/index.mjs +550 -239
- package/package.json +3 -3
package/dist/index.css
CHANGED
|
@@ -641,6 +641,10 @@ body {
|
|
|
641
641
|
margin-left: auto;
|
|
642
642
|
margin-right: auto;
|
|
643
643
|
}
|
|
644
|
+
.my-0\.5 {
|
|
645
|
+
margin-top: 0.125rem;
|
|
646
|
+
margin-bottom: 0.125rem;
|
|
647
|
+
}
|
|
644
648
|
.my-1 {
|
|
645
649
|
margin-top: 0.25rem;
|
|
646
650
|
margin-bottom: 0.25rem;
|
|
@@ -982,6 +986,9 @@ body {
|
|
|
982
986
|
.h-\[50vh\] {
|
|
983
987
|
height: 50vh;
|
|
984
988
|
}
|
|
989
|
+
.h-\[95vh\] {
|
|
990
|
+
height: 95vh;
|
|
991
|
+
}
|
|
985
992
|
.h-\[calc\(var\(--week-cells-height\)\/4\)\] {
|
|
986
993
|
height: calc(var(--week-cells-height) / 4);
|
|
987
994
|
}
|
|
@@ -1138,6 +1145,9 @@ body {
|
|
|
1138
1145
|
.w-20 {
|
|
1139
1146
|
width: 5rem;
|
|
1140
1147
|
}
|
|
1148
|
+
.w-24 {
|
|
1149
|
+
width: 6rem;
|
|
1150
|
+
}
|
|
1141
1151
|
.w-28 {
|
|
1142
1152
|
width: 7rem;
|
|
1143
1153
|
}
|
|
@@ -1249,6 +1259,9 @@ body {
|
|
|
1249
1259
|
.w-\[500px\] {
|
|
1250
1260
|
width: 500px;
|
|
1251
1261
|
}
|
|
1262
|
+
.w-\[52rem\] {
|
|
1263
|
+
width: 52rem;
|
|
1264
|
+
}
|
|
1252
1265
|
.w-\[70\%\] {
|
|
1253
1266
|
width: 70%;
|
|
1254
1267
|
}
|
|
@@ -1258,6 +1271,9 @@ body {
|
|
|
1258
1271
|
.w-\[90\%\] {
|
|
1259
1272
|
width: 90%;
|
|
1260
1273
|
}
|
|
1274
|
+
.w-\[95vw\] {
|
|
1275
|
+
width: 95vw;
|
|
1276
|
+
}
|
|
1261
1277
|
.w-auto {
|
|
1262
1278
|
width: auto;
|
|
1263
1279
|
}
|
|
@@ -1363,9 +1379,6 @@ body {
|
|
|
1363
1379
|
.max-w-\[1100px\] {
|
|
1364
1380
|
max-width: 1100px;
|
|
1365
1381
|
}
|
|
1366
|
-
.max-w-\[200px\] {
|
|
1367
|
-
max-width: 200px;
|
|
1368
|
-
}
|
|
1369
1382
|
.max-w-\[210px\] {
|
|
1370
1383
|
max-width: 210px;
|
|
1371
1384
|
}
|
|
@@ -1409,6 +1422,9 @@ body {
|
|
|
1409
1422
|
.max-w-md {
|
|
1410
1423
|
max-width: 28rem;
|
|
1411
1424
|
}
|
|
1425
|
+
.max-w-none {
|
|
1426
|
+
max-width: none;
|
|
1427
|
+
}
|
|
1412
1428
|
.max-w-prose {
|
|
1413
1429
|
max-width: 65ch;
|
|
1414
1430
|
}
|
|
@@ -1501,6 +1517,10 @@ body {
|
|
|
1501
1517
|
--tw-rotate: 0deg;
|
|
1502
1518
|
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));
|
|
1503
1519
|
}
|
|
1520
|
+
.rotate-180 {
|
|
1521
|
+
--tw-rotate: 180deg;
|
|
1522
|
+
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));
|
|
1523
|
+
}
|
|
1504
1524
|
.rotate-45 {
|
|
1505
1525
|
--tw-rotate: 45deg;
|
|
1506
1526
|
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));
|
|
@@ -1964,6 +1984,9 @@ body {
|
|
|
1964
1984
|
.border-2 {
|
|
1965
1985
|
border-width: 2px;
|
|
1966
1986
|
}
|
|
1987
|
+
.border-4 {
|
|
1988
|
+
border-width: 4px;
|
|
1989
|
+
}
|
|
1967
1990
|
.border-\[3px\] {
|
|
1968
1991
|
border-width: 3px;
|
|
1969
1992
|
}
|
|
@@ -1994,6 +2017,9 @@ body {
|
|
|
1994
2017
|
.border-l-4 {
|
|
1995
2018
|
border-left-width: 4px;
|
|
1996
2019
|
}
|
|
2020
|
+
.border-l-8 {
|
|
2021
|
+
border-left-width: 8px;
|
|
2022
|
+
}
|
|
1997
2023
|
.border-r {
|
|
1998
2024
|
border-right-width: 1px;
|
|
1999
2025
|
}
|
|
@@ -2034,9 +2060,15 @@ body {
|
|
|
2034
2060
|
--tw-border-opacity: 1;
|
|
2035
2061
|
border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
|
|
2036
2062
|
}
|
|
2063
|
+
.border-blue-500\/10 {
|
|
2064
|
+
border-color: rgb(59 130 246 / 0.1);
|
|
2065
|
+
}
|
|
2037
2066
|
.border-border {
|
|
2038
2067
|
border-color: hsl(var(--border));
|
|
2039
2068
|
}
|
|
2069
|
+
.border-border\/10 {
|
|
2070
|
+
border-color: hsl(var(--border) / 0.1);
|
|
2071
|
+
}
|
|
2040
2072
|
.border-border\/20 {
|
|
2041
2073
|
border-color: hsl(var(--border) / 0.2);
|
|
2042
2074
|
}
|
|
@@ -2060,6 +2092,9 @@ body {
|
|
|
2060
2092
|
--tw-border-opacity: 1;
|
|
2061
2093
|
border-color: rgb(52 211 153 / var(--tw-border-opacity, 1));
|
|
2062
2094
|
}
|
|
2095
|
+
.border-emerald-500\/10 {
|
|
2096
|
+
border-color: rgb(16 185 129 / 0.1);
|
|
2097
|
+
}
|
|
2063
2098
|
.border-gray-200 {
|
|
2064
2099
|
--tw-border-opacity: 1;
|
|
2065
2100
|
border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
|
|
@@ -2173,9 +2208,39 @@ body {
|
|
|
2173
2208
|
--tw-border-opacity: 1;
|
|
2174
2209
|
border-color: rgb(212 212 216 / var(--tw-border-opacity, 1));
|
|
2175
2210
|
}
|
|
2211
|
+
.border-y-border {
|
|
2212
|
+
border-top-color: hsl(var(--border));
|
|
2213
|
+
border-bottom-color: hsl(var(--border));
|
|
2214
|
+
}
|
|
2215
|
+
.border-l-amber-500 {
|
|
2216
|
+
--tw-border-opacity: 1;
|
|
2217
|
+
border-left-color: rgb(245 158 11 / var(--tw-border-opacity, 1));
|
|
2218
|
+
}
|
|
2219
|
+
.border-l-blue-500 {
|
|
2220
|
+
--tw-border-opacity: 1;
|
|
2221
|
+
border-left-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
|
|
2222
|
+
}
|
|
2223
|
+
.border-l-destructive {
|
|
2224
|
+
border-left-color: hsl(var(--destructive));
|
|
2225
|
+
}
|
|
2226
|
+
.border-l-green-500 {
|
|
2227
|
+
--tw-border-opacity: 1;
|
|
2228
|
+
border-left-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
|
|
2229
|
+
}
|
|
2230
|
+
.border-l-purple-500 {
|
|
2231
|
+
--tw-border-opacity: 1;
|
|
2232
|
+
border-left-color: rgb(168 85 247 / var(--tw-border-opacity, 1));
|
|
2233
|
+
}
|
|
2176
2234
|
.border-l-transparent {
|
|
2177
2235
|
border-left-color: transparent;
|
|
2178
2236
|
}
|
|
2237
|
+
.border-l-yellow-500 {
|
|
2238
|
+
--tw-border-opacity: 1;
|
|
2239
|
+
border-left-color: rgb(234 179 8 / var(--tw-border-opacity, 1));
|
|
2240
|
+
}
|
|
2241
|
+
.border-r-border {
|
|
2242
|
+
border-right-color: hsl(var(--border));
|
|
2243
|
+
}
|
|
2179
2244
|
.border-t-primary {
|
|
2180
2245
|
border-top-color: hsl(var(--primary));
|
|
2181
2246
|
}
|
|
@@ -2215,6 +2280,10 @@ body {
|
|
|
2215
2280
|
--tw-bg-opacity: 1;
|
|
2216
2281
|
background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
|
|
2217
2282
|
}
|
|
2283
|
+
.bg-amber-500 {
|
|
2284
|
+
--tw-bg-opacity: 1;
|
|
2285
|
+
background-color: rgb(245 158 11 / var(--tw-bg-opacity, 1));
|
|
2286
|
+
}
|
|
2218
2287
|
.bg-background {
|
|
2219
2288
|
background-color: hsl(var(--background));
|
|
2220
2289
|
}
|
|
@@ -2230,6 +2299,10 @@ body {
|
|
|
2230
2299
|
.bg-background\/95 {
|
|
2231
2300
|
background-color: hsl(var(--background) / 0.95);
|
|
2232
2301
|
}
|
|
2302
|
+
.bg-black {
|
|
2303
|
+
--tw-bg-opacity: 1;
|
|
2304
|
+
background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
|
|
2305
|
+
}
|
|
2233
2306
|
.bg-black\/40 {
|
|
2234
2307
|
background-color: rgb(0 0 0 / 0.4);
|
|
2235
2308
|
}
|
|
@@ -2260,6 +2333,9 @@ body {
|
|
|
2260
2333
|
--tw-bg-opacity: 1;
|
|
2261
2334
|
background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
|
|
2262
2335
|
}
|
|
2336
|
+
.bg-blue-500\/5 {
|
|
2337
|
+
background-color: rgb(59 130 246 / 0.05);
|
|
2338
|
+
}
|
|
2263
2339
|
.bg-blue-600 {
|
|
2264
2340
|
--tw-bg-opacity: 1;
|
|
2265
2341
|
background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
|
|
@@ -2315,6 +2391,9 @@ body {
|
|
|
2315
2391
|
.bg-emerald-500\/15 {
|
|
2316
2392
|
background-color: rgb(16 185 129 / 0.15);
|
|
2317
2393
|
}
|
|
2394
|
+
.bg-emerald-500\/5 {
|
|
2395
|
+
background-color: rgb(16 185 129 / 0.05);
|
|
2396
|
+
}
|
|
2318
2397
|
.bg-emerald-600 {
|
|
2319
2398
|
--tw-bg-opacity: 1;
|
|
2320
2399
|
background-color: rgb(5 150 105 / var(--tw-bg-opacity, 1));
|
|
@@ -2369,6 +2448,10 @@ body {
|
|
|
2369
2448
|
--tw-bg-opacity: 1;
|
|
2370
2449
|
background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
|
|
2371
2450
|
}
|
|
2451
|
+
.bg-green-600 {
|
|
2452
|
+
--tw-bg-opacity: 1;
|
|
2453
|
+
background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
|
|
2454
|
+
}
|
|
2372
2455
|
.bg-indigo-100 {
|
|
2373
2456
|
--tw-bg-opacity: 1;
|
|
2374
2457
|
background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
|
|
@@ -3093,6 +3176,9 @@ body {
|
|
|
3093
3176
|
.leading-tight {
|
|
3094
3177
|
line-height: 1.25;
|
|
3095
3178
|
}
|
|
3179
|
+
.tracking-\[0\] {
|
|
3180
|
+
letter-spacing: 0;
|
|
3181
|
+
}
|
|
3096
3182
|
.tracking-tight {
|
|
3097
3183
|
letter-spacing: -0.025em;
|
|
3098
3184
|
}
|
|
@@ -3483,6 +3569,22 @@ body {
|
|
|
3483
3569
|
var(--tw-ring-shadow, 0 0 #0000),
|
|
3484
3570
|
var(--tw-shadow);
|
|
3485
3571
|
}
|
|
3572
|
+
.shadow-\[4px_4px_0px_0px_rgba\(0\,0\,0\,1\)\] {
|
|
3573
|
+
--tw-shadow: 4px 4px 0px 0px rgba(0,0,0,1);
|
|
3574
|
+
--tw-shadow-colored: 4px 4px 0px 0px var(--tw-shadow-color);
|
|
3575
|
+
box-shadow:
|
|
3576
|
+
var(--tw-ring-offset-shadow, 0 0 #0000),
|
|
3577
|
+
var(--tw-ring-shadow, 0 0 #0000),
|
|
3578
|
+
var(--tw-shadow);
|
|
3579
|
+
}
|
|
3580
|
+
.shadow-\[8px_8px_0px_0px_rgba\(0\,0\,0\,1\)\] {
|
|
3581
|
+
--tw-shadow: 8px 8px 0px 0px rgba(0,0,0,1);
|
|
3582
|
+
--tw-shadow-colored: 8px 8px 0px 0px var(--tw-shadow-color);
|
|
3583
|
+
box-shadow:
|
|
3584
|
+
var(--tw-ring-offset-shadow, 0 0 #0000),
|
|
3585
|
+
var(--tw-ring-shadow, 0 0 #0000),
|
|
3586
|
+
var(--tw-shadow);
|
|
3587
|
+
}
|
|
3486
3588
|
.shadow-inner {
|
|
3487
3589
|
--tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
|
|
3488
3590
|
--tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color);
|
|
@@ -4217,6 +4319,14 @@ body {
|
|
|
4217
4319
|
--tw-translate-y: -0.25rem;
|
|
4218
4320
|
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));
|
|
4219
4321
|
}
|
|
4322
|
+
.hover\:translate-x-\[2px\]:hover {
|
|
4323
|
+
--tw-translate-x: 2px;
|
|
4324
|
+
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));
|
|
4325
|
+
}
|
|
4326
|
+
.hover\:translate-y-\[2px\]:hover {
|
|
4327
|
+
--tw-translate-y: 2px;
|
|
4328
|
+
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));
|
|
4329
|
+
}
|
|
4220
4330
|
.hover\:rotate-90:hover {
|
|
4221
4331
|
--tw-rotate: 90deg;
|
|
4222
4332
|
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));
|
|
@@ -4246,6 +4356,12 @@ body {
|
|
|
4246
4356
|
--tw-scale-y: 1.02;
|
|
4247
4357
|
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));
|
|
4248
4358
|
}
|
|
4359
|
+
.hover\:border-blue-500\/30:hover {
|
|
4360
|
+
border-color: rgb(59 130 246 / 0.3);
|
|
4361
|
+
}
|
|
4362
|
+
.hover\:border-emerald-500\/30:hover {
|
|
4363
|
+
border-color: rgb(16 185 129 / 0.3);
|
|
4364
|
+
}
|
|
4249
4365
|
.hover\:border-input\/80:hover {
|
|
4250
4366
|
border-color: hsl(var(--input) / 0.8);
|
|
4251
4367
|
}
|
|
@@ -4264,6 +4380,10 @@ body {
|
|
|
4264
4380
|
.hover\:bg-amber-200\/40:hover {
|
|
4265
4381
|
background-color: rgb(253 230 138 / 0.4);
|
|
4266
4382
|
}
|
|
4383
|
+
.hover\:bg-amber-600:hover {
|
|
4384
|
+
--tw-bg-opacity: 1;
|
|
4385
|
+
background-color: rgb(217 119 6 / var(--tw-bg-opacity, 1));
|
|
4386
|
+
}
|
|
4267
4387
|
.hover\:bg-background:hover {
|
|
4268
4388
|
background-color: hsl(var(--background));
|
|
4269
4389
|
}
|
|
@@ -4308,10 +4428,18 @@ body {
|
|
|
4308
4428
|
.hover\:bg-gray-200\/40:hover {
|
|
4309
4429
|
background-color: rgb(229 231 235 / 0.4);
|
|
4310
4430
|
}
|
|
4431
|
+
.hover\:bg-gray-800:hover {
|
|
4432
|
+
--tw-bg-opacity: 1;
|
|
4433
|
+
background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
|
|
4434
|
+
}
|
|
4311
4435
|
.hover\:bg-green-600:hover {
|
|
4312
4436
|
--tw-bg-opacity: 1;
|
|
4313
4437
|
background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
|
|
4314
4438
|
}
|
|
4439
|
+
.hover\:bg-green-700:hover {
|
|
4440
|
+
--tw-bg-opacity: 1;
|
|
4441
|
+
background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
|
|
4442
|
+
}
|
|
4315
4443
|
.hover\:bg-indigo-600:hover {
|
|
4316
4444
|
--tw-bg-opacity: 1;
|
|
4317
4445
|
background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
|
|
@@ -4396,6 +4524,10 @@ body {
|
|
|
4396
4524
|
.hover\:bg-violet-200\/40:hover {
|
|
4397
4525
|
background-color: rgb(221 214 254 / 0.4);
|
|
4398
4526
|
}
|
|
4527
|
+
.hover\:bg-yellow-500:hover {
|
|
4528
|
+
--tw-bg-opacity: 1;
|
|
4529
|
+
background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
|
|
4530
|
+
}
|
|
4399
4531
|
.hover\:bg-yellow-600:hover {
|
|
4400
4532
|
--tw-bg-opacity: 1;
|
|
4401
4533
|
background-color: rgb(202 138 4 / var(--tw-bg-opacity, 1));
|
|
@@ -4487,6 +4619,14 @@ body {
|
|
|
4487
4619
|
var(--tw-ring-shadow, 0 0 #0000),
|
|
4488
4620
|
var(--tw-shadow);
|
|
4489
4621
|
}
|
|
4622
|
+
.hover\:shadow-\[2px_2px_0px_0px_rgba\(0\,0\,0\,1\)\]:hover {
|
|
4623
|
+
--tw-shadow: 2px 2px 0px 0px rgba(0,0,0,1);
|
|
4624
|
+
--tw-shadow-colored: 2px 2px 0px 0px var(--tw-shadow-color);
|
|
4625
|
+
box-shadow:
|
|
4626
|
+
var(--tw-ring-offset-shadow, 0 0 #0000),
|
|
4627
|
+
var(--tw-ring-shadow, 0 0 #0000),
|
|
4628
|
+
var(--tw-shadow);
|
|
4629
|
+
}
|
|
4490
4630
|
.hover\:shadow-lg:hover {
|
|
4491
4631
|
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
4492
4632
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
@@ -5770,6 +5910,10 @@ body {
|
|
|
5770
5910
|
--tw-bg-opacity: 1;
|
|
5771
5911
|
background-color: rgb(63 63 70 / var(--tw-bg-opacity, 1));
|
|
5772
5912
|
}
|
|
5913
|
+
.dark\:bg-zinc-900:is(.dark *) {
|
|
5914
|
+
--tw-bg-opacity: 1;
|
|
5915
|
+
background-color: rgb(24 24 27 / var(--tw-bg-opacity, 1));
|
|
5916
|
+
}
|
|
5773
5917
|
.dark\:from-blue-400:is(.dark *) {
|
|
5774
5918
|
--tw-gradient-from: #60a5fa var(--tw-gradient-from-position);
|
|
5775
5919
|
--tw-gradient-to: rgb(96 165 250 / 0) var(--tw-gradient-to-position);
|
|
@@ -5892,6 +6036,14 @@ body {
|
|
|
5892
6036
|
--tw-text-opacity: 1;
|
|
5893
6037
|
color: rgb(250 204 21 / var(--tw-text-opacity, 1));
|
|
5894
6038
|
}
|
|
6039
|
+
.dark\:shadow-\[8px_8px_0px_0px_rgba\(255\,255\,255\,1\)\]:is(.dark *) {
|
|
6040
|
+
--tw-shadow: 8px 8px 0px 0px rgba(255,255,255,1);
|
|
6041
|
+
--tw-shadow-colored: 8px 8px 0px 0px var(--tw-shadow-color);
|
|
6042
|
+
box-shadow:
|
|
6043
|
+
var(--tw-ring-offset-shadow, 0 0 #0000),
|
|
6044
|
+
var(--tw-ring-shadow, 0 0 #0000),
|
|
6045
|
+
var(--tw-shadow);
|
|
6046
|
+
}
|
|
5895
6047
|
.dark\:shadow-black\/20:is(.dark *) {
|
|
5896
6048
|
--tw-shadow-color: rgb(0 0 0 / 0.2);
|
|
5897
6049
|
--tw-shadow: var(--tw-shadow-colored);
|
|
@@ -6139,6 +6291,9 @@ body {
|
|
|
6139
6291
|
.sm\:justify-end {
|
|
6140
6292
|
justify-content: flex-end;
|
|
6141
6293
|
}
|
|
6294
|
+
.sm\:justify-center {
|
|
6295
|
+
justify-content: center;
|
|
6296
|
+
}
|
|
6142
6297
|
.sm\:justify-between {
|
|
6143
6298
|
justify-content: space-between;
|
|
6144
6299
|
}
|
|
@@ -6210,6 +6365,9 @@ body {
|
|
|
6210
6365
|
.sm\:text-left {
|
|
6211
6366
|
text-align: left;
|
|
6212
6367
|
}
|
|
6368
|
+
.sm\:text-center {
|
|
6369
|
+
text-align: center;
|
|
6370
|
+
}
|
|
6213
6371
|
.sm\:text-\[0\.95rem\] {
|
|
6214
6372
|
font-size: 0.95rem;
|
|
6215
6373
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -1564,83 +1564,6 @@ interface SelectPropsWithGroupItems<T extends string> extends DefaultSelectProps
|
|
|
1564
1564
|
type NewSelectProps<T extends string> = SelectPropsWithItems<T> | SelectPropsWithGroupItems<T>;
|
|
1565
1565
|
declare function Select<T extends string>({ items, groupItems, placeholder, onChange, error, testIds, disabled, selected, label, labelClassname, className, pagination, hideClear, }: NewSelectProps<T>): react_jsx_runtime.JSX.Element;
|
|
1566
1566
|
|
|
1567
|
-
declare const formatFieldName: (fieldName: string) => string;
|
|
1568
|
-
declare const detectDataFields: (data: Record<string, unknown>[], xAxisKey: string) => string[];
|
|
1569
|
-
declare const detectXAxis: (data: Record<string, unknown>[]) => string;
|
|
1570
|
-
declare const generateAdditionalColors: (baseColors: string[], count: number) => string[];
|
|
1571
|
-
declare const niceCeil: (value: number) => number;
|
|
1572
|
-
declare const compactTick: (value: number) => string;
|
|
1573
|
-
type Padding = number | Partial<{
|
|
1574
|
-
left: number;
|
|
1575
|
-
right: number;
|
|
1576
|
-
top: number;
|
|
1577
|
-
bottom: number;
|
|
1578
|
-
}>;
|
|
1579
|
-
type Margins = Partial<{
|
|
1580
|
-
top: number;
|
|
1581
|
-
right: number;
|
|
1582
|
-
left: number;
|
|
1583
|
-
bottom: number;
|
|
1584
|
-
}>;
|
|
1585
|
-
declare const resolveContainerPaddingLeft: (padding?: Padding, containerPaddingLeft?: number, defaultLeft?: number) => number;
|
|
1586
|
-
declare const resolveChartMargins: (margins?: Margins, chartMargins?: Margins, showLabels?: boolean) => {
|
|
1587
|
-
top: number;
|
|
1588
|
-
right: number;
|
|
1589
|
-
left: number;
|
|
1590
|
-
bottom: number;
|
|
1591
|
-
};
|
|
1592
|
-
declare const generateColorMap: (dataKeys: string[], baseColors: string[], mapperConfig: Record<string, {
|
|
1593
|
-
color?: string;
|
|
1594
|
-
}>) => Record<string, string>;
|
|
1595
|
-
declare const computeNiceMax: (maxValue: number) => number;
|
|
1596
|
-
declare const getMaxDataValue: (data: Record<string, unknown>[], keys: string[]) => number;
|
|
1597
|
-
declare const getMinDataValue: (data: Record<string, unknown>[], keys: string[]) => number;
|
|
1598
|
-
interface SeriesConfig {
|
|
1599
|
-
bar?: string[];
|
|
1600
|
-
line?: string[];
|
|
1601
|
-
area?: string[];
|
|
1602
|
-
}
|
|
1603
|
-
declare const computeChartWidth: (width: number | string | undefined, dataLength: number, series: SeriesConfig | undefined, niceMaxLeft: number, niceMaxRight: number) => number;
|
|
1604
|
-
declare const adaptDataForTooltip: <T extends Record<string, unknown>>(data: T, xAxisKey: string) => {
|
|
1605
|
-
name: string;
|
|
1606
|
-
[key: string]: string | number;
|
|
1607
|
-
};
|
|
1608
|
-
type ValueFormatterType = (props: {
|
|
1609
|
-
value: number | string | undefined;
|
|
1610
|
-
formattedValue: string;
|
|
1611
|
-
[key: string]: unknown;
|
|
1612
|
-
}) => string;
|
|
1613
|
-
declare const createValueFormatter: (customFormatter: ValueFormatterType | undefined, formatBR: boolean) => ValueFormatterType | undefined;
|
|
1614
|
-
declare const createYTickFormatter: (finalValueFormatter: ValueFormatterType | undefined) => ((value: number | string) => string);
|
|
1615
|
-
declare const computeYAxisTickWidth: (chartMarginLeft: number | undefined, yAxisLabel: string | undefined, axisLabelMargin: number, yTickFormatter: (value: number | string) => string, minValue: number, maxValue: number) => number;
|
|
1616
|
-
|
|
1617
|
-
type Variant = "filled" | "outline" | "soft";
|
|
1618
|
-
type LabelRendererProps = {
|
|
1619
|
-
x?: number | string;
|
|
1620
|
-
y?: number | string;
|
|
1621
|
-
value?: number | string;
|
|
1622
|
-
index?: number;
|
|
1623
|
-
payload?: unknown;
|
|
1624
|
-
width?: number | string;
|
|
1625
|
-
height?: number | string;
|
|
1626
|
-
viewBox?: {
|
|
1627
|
-
x?: number;
|
|
1628
|
-
y?: number;
|
|
1629
|
-
width?: number;
|
|
1630
|
-
height?: number;
|
|
1631
|
-
} | Record<string, unknown> | undefined;
|
|
1632
|
-
cx?: number | string;
|
|
1633
|
-
cy?: number | string;
|
|
1634
|
-
};
|
|
1635
|
-
type valueFormatter = (props: {
|
|
1636
|
-
value: number | string | undefined;
|
|
1637
|
-
formattedValue: string;
|
|
1638
|
-
[key: string]: unknown;
|
|
1639
|
-
}) => string;
|
|
1640
|
-
declare const renderPillLabel: (color: string, variant: Variant, valueFormatter?: valueFormatter) => (props: LabelRendererProps) => react_jsx_runtime.JSX.Element;
|
|
1641
|
-
|
|
1642
|
-
declare const renderInsideBarLabel: (color: string, valueFormatter?: valueFormatter) => (props: LabelRendererProps) => react_jsx_runtime.JSX.Element;
|
|
1643
|
-
|
|
1644
1567
|
type Primitive = string | number | boolean | null | undefined;
|
|
1645
1568
|
interface ChartData$4 {
|
|
1646
1569
|
[key: string]: Primitive;
|
|
@@ -1741,6 +1664,61 @@ interface LegendItem {
|
|
|
1741
1664
|
};
|
|
1742
1665
|
}
|
|
1743
1666
|
|
|
1667
|
+
declare const formatFieldName: (fieldName: string) => string;
|
|
1668
|
+
declare const detectDataFields: (data: Record<string, unknown>[], xAxisKey: string) => string[];
|
|
1669
|
+
declare const detectXAxis: (data: Record<string, unknown>[]) => string;
|
|
1670
|
+
declare const generateAdditionalColors: (baseColors: string[], count: number) => string[];
|
|
1671
|
+
declare const niceCeil: (value: number) => number;
|
|
1672
|
+
declare const compactTick: (value: number) => string;
|
|
1673
|
+
declare const resolveContainerPaddingLeft: (padding?: Padding, containerPaddingLeft?: number, defaultLeft?: number) => number;
|
|
1674
|
+
declare const resolveChartMargins: (margins?: Margins, chartMargins?: Margins, showLabels?: boolean) => {
|
|
1675
|
+
top: number;
|
|
1676
|
+
right: number;
|
|
1677
|
+
left: number;
|
|
1678
|
+
bottom: number;
|
|
1679
|
+
};
|
|
1680
|
+
declare const generateColorMap: (dataKeys: string[], baseColors: string[], mapperConfig: Record<string, {
|
|
1681
|
+
color?: string;
|
|
1682
|
+
}>) => Record<string, string>;
|
|
1683
|
+
declare const computeNiceMax: (maxValue: number) => number;
|
|
1684
|
+
declare const getMaxDataValue: (data: Record<string, unknown>[], keys: string[]) => number;
|
|
1685
|
+
declare const getMinDataValue: (data: Record<string, unknown>[], keys: string[]) => number;
|
|
1686
|
+
declare const computeChartWidth: (width: number | string | undefined, dataLength: number, series: SeriesConfig | undefined, niceMaxLeft: number, niceMaxRight: number) => number;
|
|
1687
|
+
declare const adaptDataForTooltip: <T extends Record<string, unknown>>(data: T, xAxisKey: string) => {
|
|
1688
|
+
name: string;
|
|
1689
|
+
[key: string]: string | number;
|
|
1690
|
+
};
|
|
1691
|
+
declare const createValueFormatter: (customFormatter: ValueFormatterType | undefined, formatBR: boolean) => ValueFormatterType | undefined;
|
|
1692
|
+
declare const createYTickFormatter: (finalValueFormatter: ValueFormatterType | undefined) => ((value: number | string) => string);
|
|
1693
|
+
declare const computeYAxisTickWidth: (chartMarginLeft: number | undefined, yAxisLabel: string | undefined, axisLabelMargin: number, yTickFormatter: (value: number | string) => string, minValue: number, maxValue: number) => number;
|
|
1694
|
+
|
|
1695
|
+
type Variant = "filled" | "outline" | "soft";
|
|
1696
|
+
type LabelRendererProps = {
|
|
1697
|
+
x?: number | string;
|
|
1698
|
+
y?: number | string;
|
|
1699
|
+
value?: number | string;
|
|
1700
|
+
index?: number;
|
|
1701
|
+
payload?: unknown;
|
|
1702
|
+
width?: number | string;
|
|
1703
|
+
height?: number | string;
|
|
1704
|
+
viewBox?: {
|
|
1705
|
+
x?: number;
|
|
1706
|
+
y?: number;
|
|
1707
|
+
width?: number;
|
|
1708
|
+
height?: number;
|
|
1709
|
+
} | Record<string, unknown> | undefined;
|
|
1710
|
+
cx?: number | string;
|
|
1711
|
+
cy?: number | string;
|
|
1712
|
+
};
|
|
1713
|
+
type valueFormatter = (props: {
|
|
1714
|
+
value: number | string | undefined;
|
|
1715
|
+
formattedValue: string;
|
|
1716
|
+
[key: string]: unknown;
|
|
1717
|
+
}) => string;
|
|
1718
|
+
declare const renderPillLabel: (color: string, variant: Variant, valueFormatter?: valueFormatter) => (props: LabelRendererProps) => react_jsx_runtime.JSX.Element;
|
|
1719
|
+
|
|
1720
|
+
declare const renderInsideBarLabel: (color: string, valueFormatter?: valueFormatter) => (props: LabelRendererProps) => react_jsx_runtime.JSX.Element;
|
|
1721
|
+
|
|
1744
1722
|
interface ChartData$3 {
|
|
1745
1723
|
[key: string]: string | number | boolean | null | undefined;
|
|
1746
1724
|
}
|
|
@@ -1782,11 +1760,6 @@ interface ChartProps {
|
|
|
1782
1760
|
title?: string;
|
|
1783
1761
|
titlePosition?: "left" | "center" | "right";
|
|
1784
1762
|
showLabels?: boolean;
|
|
1785
|
-
labelsVisibility?: {
|
|
1786
|
-
bar?: boolean;
|
|
1787
|
-
line?: boolean;
|
|
1788
|
-
area?: boolean;
|
|
1789
|
-
};
|
|
1790
1763
|
labelMap?: Record<string, string>;
|
|
1791
1764
|
valueFormatter?: valueFormatter;
|
|
1792
1765
|
categoryFormatter?: (value: string | number) => string;
|
|
@@ -1807,7 +1780,35 @@ interface ChartProps {
|
|
|
1807
1780
|
timeSeries?: boolean | TimeSeriesConfig;
|
|
1808
1781
|
timeSeriesLegend?: string;
|
|
1809
1782
|
customLegend?: boolean;
|
|
1783
|
+
labelsVisibility?: {
|
|
1784
|
+
bar: boolean;
|
|
1785
|
+
line: boolean;
|
|
1786
|
+
area: boolean;
|
|
1787
|
+
};
|
|
1788
|
+
}
|
|
1789
|
+
interface SeriesConfig {
|
|
1790
|
+
bar?: string[];
|
|
1791
|
+
line?: string[];
|
|
1792
|
+
area?: string[];
|
|
1810
1793
|
}
|
|
1794
|
+
type ValueFormatterType = (props: {
|
|
1795
|
+
value: number | string | undefined;
|
|
1796
|
+
formattedValue: string;
|
|
1797
|
+
[key: string]: unknown;
|
|
1798
|
+
}) => string;
|
|
1799
|
+
type Padding = number | Partial<{
|
|
1800
|
+
left: number;
|
|
1801
|
+
right: number;
|
|
1802
|
+
top: number;
|
|
1803
|
+
bottom: number;
|
|
1804
|
+
}>;
|
|
1805
|
+
type Margins = Partial<{
|
|
1806
|
+
top: number;
|
|
1807
|
+
right: number;
|
|
1808
|
+
left: number;
|
|
1809
|
+
bottom: number;
|
|
1810
|
+
}>;
|
|
1811
|
+
|
|
1811
1812
|
declare const Chart: React__default.FC<ChartProps>;
|
|
1812
1813
|
|
|
1813
1814
|
interface BarChartData {
|
|
@@ -1969,14 +1970,14 @@ interface TooltipData {
|
|
|
1969
1970
|
name: string;
|
|
1970
1971
|
[key: string]: string | number;
|
|
1971
1972
|
}
|
|
1972
|
-
interface Position$
|
|
1973
|
+
interface Position$2 {
|
|
1973
1974
|
top: number;
|
|
1974
1975
|
left: number;
|
|
1975
1976
|
}
|
|
1976
1977
|
interface DraggableTooltipProps {
|
|
1977
1978
|
id: string;
|
|
1978
1979
|
data: TooltipData;
|
|
1979
|
-
position: Position$
|
|
1980
|
+
position: Position$2;
|
|
1980
1981
|
isDragging?: boolean;
|
|
1981
1982
|
title?: string;
|
|
1982
1983
|
dataKeys: string[];
|
|
@@ -1990,7 +1991,7 @@ interface DraggableTooltipProps {
|
|
|
1990
1991
|
onCloseAll?: () => void;
|
|
1991
1992
|
closeAllButtonPosition?: "top-left" | "top-right" | "top-center";
|
|
1992
1993
|
closeAllButtonVariant?: "floating" | "inline";
|
|
1993
|
-
onPositionChange?: (id: string, position: Position$
|
|
1994
|
+
onPositionChange?: (id: string, position: Position$2) => void;
|
|
1994
1995
|
highlightedSeries?: Set<string>;
|
|
1995
1996
|
toggleHighlight?: (key: string) => void;
|
|
1996
1997
|
showOnlyHighlighted?: boolean;
|
|
@@ -2038,6 +2039,32 @@ interface Props {
|
|
|
2038
2039
|
}
|
|
2039
2040
|
declare const TooltipSimple: React__default.FC<Props>;
|
|
2040
2041
|
|
|
2042
|
+
interface Connection {
|
|
2043
|
+
id: string;
|
|
2044
|
+
name: string;
|
|
2045
|
+
type: "entrada" | "saida";
|
|
2046
|
+
status?: "active" | "inactive" | "warning";
|
|
2047
|
+
}
|
|
2048
|
+
interface SystemData {
|
|
2049
|
+
name: string;
|
|
2050
|
+
description: string;
|
|
2051
|
+
connections: Connection[];
|
|
2052
|
+
}
|
|
2053
|
+
interface Position$1 {
|
|
2054
|
+
top: number;
|
|
2055
|
+
left: number;
|
|
2056
|
+
}
|
|
2057
|
+
interface SystemTooltipProps {
|
|
2058
|
+
id: string;
|
|
2059
|
+
data: SystemData;
|
|
2060
|
+
position: Position$1;
|
|
2061
|
+
title?: string;
|
|
2062
|
+
onMouseDown?: (id: string, e: React__default.MouseEvent | React__default.TouchEvent) => void;
|
|
2063
|
+
onClose: (id: string) => void;
|
|
2064
|
+
onPositionChange?: (id: string, position: Position$1) => void;
|
|
2065
|
+
}
|
|
2066
|
+
declare const SystemTooltip: React__default.FC<SystemTooltipProps>;
|
|
2067
|
+
|
|
2041
2068
|
interface ChartData$2 {
|
|
2042
2069
|
[key: string]: string | number | boolean | null | undefined;
|
|
2043
2070
|
}
|
|
@@ -2175,9 +2202,8 @@ interface LeaderboardProps<T extends string> {
|
|
|
2175
2202
|
className?: string;
|
|
2176
2203
|
isLoading?: boolean;
|
|
2177
2204
|
legend?: string[];
|
|
2178
|
-
best?: boolean;
|
|
2179
2205
|
}
|
|
2180
|
-
declare function Leaderboard<T extends string>({ items, order: initialOrder, title, className, isLoading, legend,
|
|
2206
|
+
declare function Leaderboard<T extends string>({ items, order: initialOrder, title, className, isLoading, legend, }: LeaderboardProps<T>): react_jsx_runtime.JSX.Element;
|
|
2181
2207
|
|
|
2182
2208
|
declare function useIsMobile(): boolean;
|
|
2183
2209
|
|
|
@@ -2191,11 +2217,11 @@ interface UseDragOptions {
|
|
|
2191
2217
|
onDrag?: (id: string, position: Position) => void;
|
|
2192
2218
|
}
|
|
2193
2219
|
declare const useDrag: (options?: UseDragOptions) => {
|
|
2194
|
-
handleMouseDown: (id: string, e: React.MouseEvent) => void;
|
|
2220
|
+
handleMouseDown: (id: string, e: React.MouseEvent | React.TouchEvent) => void;
|
|
2195
2221
|
getPosition: (id: string) => Position;
|
|
2196
2222
|
setPosition: (id: string, position: Position) => void;
|
|
2197
2223
|
isElementDragging: (id: string) => boolean;
|
|
2198
2224
|
isDragging: boolean;
|
|
2199
2225
|
};
|
|
2200
2226
|
|
|
2201
|
-
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, BarChart, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, Brush, ButtonBase, ButtonGroupBase, type ButtonProps, CalendarBase, CalendarDndProvider, CalendarDndProviderAgenda, type CalendarEvent, type CalendarEventAgenda, type CalendarProps, type CalendarView, type CalendarViewAgenda, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, type CarouselApi, CarouselBase, CarouselContentBase, CarouselItemBase, CarouselNextBase, CarouselPreviousBase, ChangeButton, Chart, type ChartData$4 as ChartData, type ChartHooksArgs, ChartTotalLegend, CheckButton, CheckboxBase, CheckboxTree, 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, 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, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, Leaderboard, type LeaderboardItem, type LeaderboardProps, type LegendItem, LikeButton, CustomLineChart as LineChart, LoadingBase, LockButton, type MapperConfig, type MapperConfigEntry,
|
|
2227
|
+
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, BarChart, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, Brush, ButtonBase, ButtonGroupBase, type ButtonProps, CalendarBase, CalendarDndProvider, CalendarDndProviderAgenda, type CalendarEvent, type CalendarEventAgenda, type CalendarProps, type CalendarView, type CalendarViewAgenda, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, type CarouselApi, CarouselBase, CarouselContentBase, CarouselItemBase, CarouselNextBase, CarouselPreviousBase, ChangeButton, Chart, type ChartData$4 as ChartData, type ChartHooksArgs, ChartTotalLegend, CheckButton, CheckboxBase, CheckboxTree, 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, 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, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, Leaderboard, type LeaderboardItem, type LeaderboardProps, type LegendItem, LikeButton, CustomLineChart as LineChart, LoadingBase, LockButton, type MapperConfig, type MapperConfigEntry, 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 NewSelectProps, NoData, NotificationButton, type Period, PeriodsDropdown, CustomPieChart as PieChart, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, type Primitive, 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, type SelectPropsWithGroupItems, type SelectPropsWithItems, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, type SelectTestIds, SelectTriggerBase, SelectValueBase, SeparatorBase, type SeriesCounts, type SeriesEntry, type SeriesProp$1 as 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, 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, type ValueFormatter, ViewButton, VisibilityButton, WeekCellsHeight, WeekCellsHeightAgenda, WeekView, WeekViewAgenda, type XAxisConfig$2 as 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, generateAdditionalColors, generateColorMap, getAgendaEventsForDay, getAgendaEventsForDayAgenda, getAllEventsForDay, getAllEventsForDayAgenda, getArrowByType, getBorderRadiusClasses, getBorderRadiusClassesAgenda, getDateByType, getEventColorClasses, getEventColorClassesAgenda, getEventEndDate, getEventStartDate, getEventsForDay, getEventsForDayAgenda, getMaxDataValue, getMinDataValue, getSpanningEventsForDay, getSpanningEventsForDayAgenda, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isMultiDayEvent, isMultiDayEventAgenda, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, normalizeAttendDate, renderInsideBarLabel, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, sortEventsAgenda, toast, useCalendarDnd, useCalendarDndAgenda, useChartClick, useChartDimensions, useChartHighlights, useChartTooltips, useCurrentTimeIndicator, useCurrentTimeIndicatorAgenda, useDrag, useEventVisibility, useEventVisibilityAgenda, useIsMobile, useTheme, useTimeSeriesRange, type valueFormatter, visualForItem };
|