@mlw-packages/react-components 1.7.12 → 1.7.14
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 +90 -15
- package/dist/index.d.mts +47 -9
- package/dist/index.d.ts +47 -9
- package/dist/index.js +589 -197
- package/dist/index.mjs +656 -264
- package/package.json +3 -2
package/dist/index.css
CHANGED
|
@@ -729,6 +729,9 @@ body {
|
|
|
729
729
|
.ml-5 {
|
|
730
730
|
margin-left: 1.25rem;
|
|
731
731
|
}
|
|
732
|
+
.ml-6 {
|
|
733
|
+
margin-left: 1.5rem;
|
|
734
|
+
}
|
|
732
735
|
.ml-64 {
|
|
733
736
|
margin-left: 16rem;
|
|
734
737
|
}
|
|
@@ -750,6 +753,9 @@ body {
|
|
|
750
753
|
.mr-5 {
|
|
751
754
|
margin-right: 1.25rem;
|
|
752
755
|
}
|
|
756
|
+
.ms-6 {
|
|
757
|
+
margin-inline-start: 1.5rem;
|
|
758
|
+
}
|
|
753
759
|
.mt-1 {
|
|
754
760
|
margin-top: 0.25rem;
|
|
755
761
|
}
|
|
@@ -1523,6 +1529,11 @@ body {
|
|
|
1523
1529
|
.list-none {
|
|
1524
1530
|
list-style-type: none;
|
|
1525
1531
|
}
|
|
1532
|
+
.appearance-none {
|
|
1533
|
+
-webkit-appearance: none;
|
|
1534
|
+
-moz-appearance: none;
|
|
1535
|
+
appearance: none;
|
|
1536
|
+
}
|
|
1526
1537
|
.auto-cols-fr {
|
|
1527
1538
|
grid-auto-columns: minmax(0, 1fr);
|
|
1528
1539
|
}
|
|
@@ -2062,6 +2073,10 @@ body {
|
|
|
2062
2073
|
.bg-accent\/5 {
|
|
2063
2074
|
background-color: hsl(var(--accent) / 0.05);
|
|
2064
2075
|
}
|
|
2076
|
+
.bg-amber-100 {
|
|
2077
|
+
--tw-bg-opacity: 1;
|
|
2078
|
+
background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
|
|
2079
|
+
}
|
|
2065
2080
|
.bg-amber-200\/50 {
|
|
2066
2081
|
background-color: rgb(253 230 138 / 0.5);
|
|
2067
2082
|
}
|
|
@@ -2167,6 +2182,10 @@ body {
|
|
|
2167
2182
|
.bg-foreground {
|
|
2168
2183
|
background-color: hsl(var(--foreground));
|
|
2169
2184
|
}
|
|
2185
|
+
.bg-gray-100 {
|
|
2186
|
+
--tw-bg-opacity: 1;
|
|
2187
|
+
background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
|
|
2188
|
+
}
|
|
2170
2189
|
.bg-gray-200 {
|
|
2171
2190
|
--tw-bg-opacity: 1;
|
|
2172
2191
|
background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
|
|
@@ -2203,6 +2222,10 @@ body {
|
|
|
2203
2222
|
--tw-bg-opacity: 1;
|
|
2204
2223
|
background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
|
|
2205
2224
|
}
|
|
2225
|
+
.bg-indigo-100 {
|
|
2226
|
+
--tw-bg-opacity: 1;
|
|
2227
|
+
background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
|
|
2228
|
+
}
|
|
2206
2229
|
.bg-indigo-400\/20 {
|
|
2207
2230
|
background-color: rgb(129 140 248 / 0.2);
|
|
2208
2231
|
}
|
|
@@ -2265,6 +2288,10 @@ body {
|
|
|
2265
2288
|
--tw-bg-opacity: 1;
|
|
2266
2289
|
background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
|
|
2267
2290
|
}
|
|
2291
|
+
.bg-pink-100 {
|
|
2292
|
+
--tw-bg-opacity: 1;
|
|
2293
|
+
background-color: rgb(252 231 243 / var(--tw-bg-opacity, 1));
|
|
2294
|
+
}
|
|
2268
2295
|
.bg-pink-500 {
|
|
2269
2296
|
--tw-bg-opacity: 1;
|
|
2270
2297
|
background-color: rgb(236 72 153 / var(--tw-bg-opacity, 1));
|
|
@@ -2355,9 +2382,17 @@ body {
|
|
|
2355
2382
|
--tw-bg-opacity: 1;
|
|
2356
2383
|
background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
|
|
2357
2384
|
}
|
|
2385
|
+
.bg-teal-100 {
|
|
2386
|
+
--tw-bg-opacity: 1;
|
|
2387
|
+
background-color: rgb(204 251 241 / var(--tw-bg-opacity, 1));
|
|
2388
|
+
}
|
|
2358
2389
|
.bg-transparent {
|
|
2359
2390
|
background-color: transparent;
|
|
2360
2391
|
}
|
|
2392
|
+
.bg-violet-100 {
|
|
2393
|
+
--tw-bg-opacity: 1;
|
|
2394
|
+
background-color: rgb(237 233 254 / var(--tw-bg-opacity, 1));
|
|
2395
|
+
}
|
|
2361
2396
|
.bg-violet-200\/50 {
|
|
2362
2397
|
background-color: rgb(221 214 254 / 0.5);
|
|
2363
2398
|
}
|
|
@@ -2631,6 +2666,9 @@ body {
|
|
|
2631
2666
|
.pe-4 {
|
|
2632
2667
|
padding-inline-end: 1rem;
|
|
2633
2668
|
}
|
|
2669
|
+
.pl-1 {
|
|
2670
|
+
padding-left: 0.25rem;
|
|
2671
|
+
}
|
|
2634
2672
|
.pl-3 {
|
|
2635
2673
|
padding-left: 0.75rem;
|
|
2636
2674
|
}
|
|
@@ -2842,6 +2880,10 @@ body {
|
|
|
2842
2880
|
--tw-text-opacity: 1;
|
|
2843
2881
|
color: rgb(217 119 6 / var(--tw-text-opacity, 1));
|
|
2844
2882
|
}
|
|
2883
|
+
.text-amber-700 {
|
|
2884
|
+
--tw-text-opacity: 1;
|
|
2885
|
+
color: rgb(180 83 9 / var(--tw-text-opacity, 1));
|
|
2886
|
+
}
|
|
2845
2887
|
.text-amber-950\/80 {
|
|
2846
2888
|
color: rgb(69 26 3 / 0.8);
|
|
2847
2889
|
}
|
|
@@ -2903,6 +2945,10 @@ body {
|
|
|
2903
2945
|
--tw-text-opacity: 1;
|
|
2904
2946
|
color: rgb(55 65 81 / var(--tw-text-opacity, 1));
|
|
2905
2947
|
}
|
|
2948
|
+
.text-gray-800 {
|
|
2949
|
+
--tw-text-opacity: 1;
|
|
2950
|
+
color: rgb(31 41 55 / var(--tw-text-opacity, 1));
|
|
2951
|
+
}
|
|
2906
2952
|
.text-green-400 {
|
|
2907
2953
|
--tw-text-opacity: 1;
|
|
2908
2954
|
color: rgb(74 222 128 / var(--tw-text-opacity, 1));
|
|
@@ -2919,6 +2965,10 @@ body {
|
|
|
2919
2965
|
--tw-text-opacity: 1;
|
|
2920
2966
|
color: rgb(21 128 61 / var(--tw-text-opacity, 1));
|
|
2921
2967
|
}
|
|
2968
|
+
.text-green-800 {
|
|
2969
|
+
--tw-text-opacity: 1;
|
|
2970
|
+
color: rgb(22 101 52 / var(--tw-text-opacity, 1));
|
|
2971
|
+
}
|
|
2922
2972
|
.text-indigo-500 {
|
|
2923
2973
|
--tw-text-opacity: 1;
|
|
2924
2974
|
color: rgb(99 102 241 / var(--tw-text-opacity, 1));
|
|
@@ -2927,6 +2977,10 @@ body {
|
|
|
2927
2977
|
--tw-text-opacity: 1;
|
|
2928
2978
|
color: rgb(79 70 229 / var(--tw-text-opacity, 1));
|
|
2929
2979
|
}
|
|
2980
|
+
.text-indigo-700 {
|
|
2981
|
+
--tw-text-opacity: 1;
|
|
2982
|
+
color: rgb(67 56 202 / var(--tw-text-opacity, 1));
|
|
2983
|
+
}
|
|
2930
2984
|
.text-muted-foreground {
|
|
2931
2985
|
color: hsl(var(--muted-foreground));
|
|
2932
2986
|
}
|
|
@@ -2976,6 +3030,10 @@ body {
|
|
|
2976
3030
|
--tw-text-opacity: 1;
|
|
2977
3031
|
color: rgb(236 72 153 / var(--tw-text-opacity, 1));
|
|
2978
3032
|
}
|
|
3033
|
+
.text-pink-700 {
|
|
3034
|
+
--tw-text-opacity: 1;
|
|
3035
|
+
color: rgb(190 24 93 / var(--tw-text-opacity, 1));
|
|
3036
|
+
}
|
|
2979
3037
|
.text-popover-foreground {
|
|
2980
3038
|
color: hsl(var(--popover-foreground));
|
|
2981
3039
|
}
|
|
@@ -3053,6 +3111,14 @@ body {
|
|
|
3053
3111
|
--tw-text-opacity: 1;
|
|
3054
3112
|
color: rgb(15 23 42 / var(--tw-text-opacity, 1));
|
|
3055
3113
|
}
|
|
3114
|
+
.text-teal-700 {
|
|
3115
|
+
--tw-text-opacity: 1;
|
|
3116
|
+
color: rgb(15 118 110 / var(--tw-text-opacity, 1));
|
|
3117
|
+
}
|
|
3118
|
+
.text-violet-700 {
|
|
3119
|
+
--tw-text-opacity: 1;
|
|
3120
|
+
color: rgb(109 40 217 / var(--tw-text-opacity, 1));
|
|
3121
|
+
}
|
|
3056
3122
|
.text-violet-950\/80 {
|
|
3057
3123
|
color: rgb(46 16 101 / 0.8);
|
|
3058
3124
|
}
|
|
@@ -3076,6 +3142,10 @@ body {
|
|
|
3076
3142
|
--tw-text-opacity: 1;
|
|
3077
3143
|
color: rgb(161 98 7 / var(--tw-text-opacity, 1));
|
|
3078
3144
|
}
|
|
3145
|
+
.text-yellow-800 {
|
|
3146
|
+
--tw-text-opacity: 1;
|
|
3147
|
+
color: rgb(133 77 14 / var(--tw-text-opacity, 1));
|
|
3148
|
+
}
|
|
3079
3149
|
.text-zinc-100 {
|
|
3080
3150
|
--tw-text-opacity: 1;
|
|
3081
3151
|
color: rgb(244 244 245 / var(--tw-text-opacity, 1));
|
|
@@ -3783,6 +3853,14 @@ body {
|
|
|
3783
3853
|
.last\:border-r-0:last-child {
|
|
3784
3854
|
border-right-width: 0px;
|
|
3785
3855
|
}
|
|
3856
|
+
.checked\:border-blue-600:checked {
|
|
3857
|
+
--tw-border-opacity: 1;
|
|
3858
|
+
border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
|
|
3859
|
+
}
|
|
3860
|
+
.checked\:bg-blue-600:checked {
|
|
3861
|
+
--tw-bg-opacity: 1;
|
|
3862
|
+
background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
|
|
3863
|
+
}
|
|
3786
3864
|
.focus-within\:relative:focus-within {
|
|
3787
3865
|
position: relative;
|
|
3788
3866
|
}
|
|
@@ -3977,6 +4055,10 @@ body {
|
|
|
3977
4055
|
.hover\:bg-sky-200\/40:hover {
|
|
3978
4056
|
background-color: rgb(186 230 253 / 0.4);
|
|
3979
4057
|
}
|
|
4058
|
+
.hover\:bg-slate-100:hover {
|
|
4059
|
+
--tw-bg-opacity: 1;
|
|
4060
|
+
background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
|
|
4061
|
+
}
|
|
3980
4062
|
.hover\:bg-violet-200\/40:hover {
|
|
3981
4063
|
background-color: rgb(221 214 254 / 0.4);
|
|
3982
4064
|
}
|
|
@@ -4691,9 +4773,6 @@ body {
|
|
|
4691
4773
|
--tw-bg-opacity: 1;
|
|
4692
4774
|
background-color: rgb(167 139 250 / var(--tw-bg-opacity, 1));
|
|
4693
4775
|
}
|
|
4694
|
-
.data-\[state\=indeterminate\]\:bg-primary[data-state=indeterminate] {
|
|
4695
|
-
background-color: hsl(var(--primary));
|
|
4696
|
-
}
|
|
4697
4776
|
.data-\[state\=open\]\:bg-accent[data-state=open] {
|
|
4698
4777
|
background-color: hsl(var(--accent));
|
|
4699
4778
|
}
|
|
@@ -4740,12 +4819,6 @@ body {
|
|
|
4740
4819
|
.data-\[state\=active\]\:text-primary[data-state=active] {
|
|
4741
4820
|
color: hsl(var(--primary));
|
|
4742
4821
|
}
|
|
4743
|
-
.data-\[state\=checked\]\:text-primary-foreground[data-state=checked] {
|
|
4744
|
-
color: hsl(var(--primary-foreground));
|
|
4745
|
-
}
|
|
4746
|
-
.data-\[state\=indeterminate\]\:text-primary-foreground[data-state=indeterminate] {
|
|
4747
|
-
color: hsl(var(--primary-foreground));
|
|
4748
|
-
}
|
|
4749
4822
|
.data-\[state\=open\]\:text-accent-foreground[data-state=open] {
|
|
4750
4823
|
color: hsl(var(--accent-foreground));
|
|
4751
4824
|
}
|
|
@@ -5016,12 +5089,6 @@ body {
|
|
|
5016
5089
|
.group\/navigation-menu[data-viewport=false] .group-data-\[viewport\=false\]\/navigation-menu\:mt-1\.5 {
|
|
5017
5090
|
margin-top: 0.375rem;
|
|
5018
5091
|
}
|
|
5019
|
-
.group[data-state=checked] .group-data-\[state\=checked\]\:block {
|
|
5020
|
-
display: block;
|
|
5021
|
-
}
|
|
5022
|
-
.group[data-state=indeterminate] .group-data-\[state\=indeterminate\]\:block {
|
|
5023
|
-
display: block;
|
|
5024
|
-
}
|
|
5025
5092
|
.group\/drawer-content[data-vaul-drawer-direction=bottom] .group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:block {
|
|
5026
5093
|
display: block;
|
|
5027
5094
|
}
|
|
@@ -5290,6 +5357,10 @@ body {
|
|
|
5290
5357
|
.dark\:bg-slate-800\/60:is(.dark *) {
|
|
5291
5358
|
background-color: rgb(30 41 59 / 0.6);
|
|
5292
5359
|
}
|
|
5360
|
+
.dark\:bg-slate-900:is(.dark *) {
|
|
5361
|
+
--tw-bg-opacity: 1;
|
|
5362
|
+
background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
|
|
5363
|
+
}
|
|
5293
5364
|
.dark\:bg-slate-900\/30:is(.dark *) {
|
|
5294
5365
|
background-color: rgb(15 23 42 / 0.3);
|
|
5295
5366
|
}
|
|
@@ -5438,6 +5509,10 @@ body {
|
|
|
5438
5509
|
--tw-bg-opacity: 1;
|
|
5439
5510
|
background-color: rgb(51 65 85 / var(--tw-bg-opacity, 1));
|
|
5440
5511
|
}
|
|
5512
|
+
.dark\:hover\:bg-slate-800:hover:is(.dark *) {
|
|
5513
|
+
--tw-bg-opacity: 1;
|
|
5514
|
+
background-color: rgb(30 41 59 / var(--tw-bg-opacity, 1));
|
|
5515
|
+
}
|
|
5441
5516
|
.dark\:hover\:bg-violet-400\/20:hover:is(.dark *) {
|
|
5442
5517
|
background-color: rgb(167 139 250 / 0.2);
|
|
5443
5518
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -97,8 +97,9 @@ interface ComboboxProps<T extends string> extends ErrorMessageProps {
|
|
|
97
97
|
label?: string;
|
|
98
98
|
labelClassname?: string;
|
|
99
99
|
testIds?: ComboboxTestIds;
|
|
100
|
+
disabled?: boolean;
|
|
100
101
|
}
|
|
101
|
-
declare function Combobox<T extends string>({ items, selected, onChange, className, placeholder, searchPlaceholder, empty, label, labelClassname, testIds, error, }: ComboboxProps<T>): react_jsx_runtime.JSX.Element;
|
|
102
|
+
declare function Combobox<T extends string>({ items, selected, onChange, className, placeholder, searchPlaceholder, empty, disabled, label, labelClassname, testIds, error, }: ComboboxProps<T>): react_jsx_runtime.JSX.Element;
|
|
102
103
|
|
|
103
104
|
interface MultiComboboxTestIds {
|
|
104
105
|
root?: string;
|
|
@@ -116,8 +117,9 @@ interface MultiComboboxProps<T extends string> extends Omit<ComboboxProps<T>, "s
|
|
|
116
117
|
testIds?: MultiComboboxTestIds;
|
|
117
118
|
keepOpen?: boolean;
|
|
118
119
|
showClearAll?: boolean;
|
|
120
|
+
disabled?: boolean;
|
|
119
121
|
}
|
|
120
|
-
declare function MultiCombobox<T extends string>({ items, selected, onChange, className, placeholder, searchPlaceholder, label, labelClassname, testIds, error, keepOpen, showClearAll, }: MultiComboboxProps<T>): react_jsx_runtime.JSX.Element;
|
|
122
|
+
declare function MultiCombobox<T extends string>({ items, selected, onChange, className, placeholder, searchPlaceholder, label, labelClassname, testIds, error, disabled, keepOpen, showClearAll, empty, }: MultiComboboxProps<T>): react_jsx_runtime.JSX.Element;
|
|
121
123
|
|
|
122
124
|
interface SelectItem<T extends string> {
|
|
123
125
|
label: string;
|
|
@@ -158,10 +160,10 @@ interface SelectPropsWithGroupItems$1<T extends string> extends DefaultSelectPro
|
|
|
158
160
|
type NewSelectProps<T extends string> = SelectPropsWithItems$1<T> | SelectPropsWithGroupItems$1<T>;
|
|
159
161
|
declare function Select<T extends string>({ items, groupItems, placeholder, onChange, error, testIds, disabled, selected, label, labelClassname, className, }: NewSelectProps<T>): react_jsx_runtime.JSX.Element;
|
|
160
162
|
|
|
161
|
-
interface
|
|
163
|
+
interface AvatarComboboxItem<T extends string> {
|
|
162
164
|
label: string;
|
|
163
165
|
value: T;
|
|
164
|
-
avatar?:
|
|
166
|
+
avatar?: ReactNode;
|
|
165
167
|
avatarClassName?: string;
|
|
166
168
|
}
|
|
167
169
|
interface SelectTestIds {
|
|
@@ -183,19 +185,19 @@ interface DefaultSelectProps extends ErrorMessageProps {
|
|
|
183
185
|
colors?: string[];
|
|
184
186
|
}
|
|
185
187
|
interface SelectPropsWithItems<T extends string> extends DefaultSelectProps {
|
|
186
|
-
items:
|
|
188
|
+
items: AvatarComboboxItem<T>[];
|
|
187
189
|
groupItems?: never;
|
|
188
190
|
testIds?: SelectTestIds;
|
|
189
191
|
}
|
|
190
192
|
interface SelectPropsWithGroupItems<T extends string> extends DefaultSelectProps {
|
|
191
193
|
items?: never;
|
|
192
194
|
groupItems: {
|
|
193
|
-
[key: string]:
|
|
195
|
+
[key: string]: AvatarComboboxItem<T>[];
|
|
194
196
|
};
|
|
195
197
|
testIds?: SelectTestIds;
|
|
196
198
|
}
|
|
197
|
-
type
|
|
198
|
-
declare function
|
|
199
|
+
type AvatarComboboxProps<T extends string> = SelectPropsWithItems<T> | SelectPropsWithGroupItems<T>;
|
|
200
|
+
declare function AvatarCombobox<T extends string>({ items, groupItems, placeholder, onChange, error, testIds, disabled, selected, label, labelClassname, className, colors, }: AvatarComboboxProps<T> & {
|
|
199
201
|
selected?: T | null;
|
|
200
202
|
label?: string;
|
|
201
203
|
labelClassname?: string;
|
|
@@ -269,6 +271,19 @@ type SeriesProp = {
|
|
|
269
271
|
interface ChartProps {
|
|
270
272
|
data: ChartData[];
|
|
271
273
|
series?: SeriesProp;
|
|
274
|
+
yAxisMap?: Record<string, "left" | "right">;
|
|
275
|
+
yAxes?: Partial<{
|
|
276
|
+
left: {
|
|
277
|
+
label?: string;
|
|
278
|
+
stroke?: string;
|
|
279
|
+
width?: number;
|
|
280
|
+
};
|
|
281
|
+
right: {
|
|
282
|
+
label?: string;
|
|
283
|
+
stroke?: string;
|
|
284
|
+
width?: number;
|
|
285
|
+
};
|
|
286
|
+
}>;
|
|
272
287
|
className?: string;
|
|
273
288
|
chartMargin?: Partial<{
|
|
274
289
|
top: number;
|
|
@@ -299,6 +314,8 @@ interface ChartProps {
|
|
|
299
314
|
showTooltipTotal?: boolean;
|
|
300
315
|
maxTooltips?: number;
|
|
301
316
|
formatBR?: boolean;
|
|
317
|
+
/** Texto exibido no cabeçalho dos tooltips (ex.: "Período") */
|
|
318
|
+
periodLabel?: string;
|
|
302
319
|
}
|
|
303
320
|
declare const Chart: React__default.FC<ChartProps>;
|
|
304
321
|
|
|
@@ -492,6 +509,8 @@ interface Props$1 {
|
|
|
492
509
|
totalLabel?: string;
|
|
493
510
|
valueFormatter?: valueFormatter;
|
|
494
511
|
categoryFormatter?: (value: string | number) => string;
|
|
512
|
+
yAxisMap?: Record<string, "left" | "right">;
|
|
513
|
+
isBiaxial?: boolean;
|
|
495
514
|
}
|
|
496
515
|
declare const RechartTooltipWithTotal: React__default.FC<Props$1>;
|
|
497
516
|
|
|
@@ -509,6 +528,8 @@ interface Props {
|
|
|
509
528
|
periodLabel?: string;
|
|
510
529
|
valueFormatter?: valueFormatter;
|
|
511
530
|
categoryFormatter?: (value: string | number) => string;
|
|
531
|
+
yAxisMap?: Record<string, "left" | "right">;
|
|
532
|
+
isBiaxial?: boolean;
|
|
512
533
|
}
|
|
513
534
|
declare const TooltipSimple: React__default.FC<Props>;
|
|
514
535
|
|
|
@@ -1528,6 +1549,23 @@ interface WeekViewProps {
|
|
|
1528
1549
|
}
|
|
1529
1550
|
declare function WeekView({ currentDate, events, onEventSelect, onEventCreate, }: WeekViewProps): react_jsx_runtime.JSX.Element;
|
|
1530
1551
|
|
|
1552
|
+
interface TreeNode {
|
|
1553
|
+
id: string;
|
|
1554
|
+
label: string;
|
|
1555
|
+
defaultChecked?: boolean;
|
|
1556
|
+
children?: TreeNode[];
|
|
1557
|
+
}
|
|
1558
|
+
interface CheckboxTreeProps {
|
|
1559
|
+
tree: TreeNode;
|
|
1560
|
+
renderNode: (props: {
|
|
1561
|
+
node: TreeNode;
|
|
1562
|
+
isChecked: boolean | "indeterminate";
|
|
1563
|
+
onCheckedChange: () => void;
|
|
1564
|
+
children: React__default.ReactNode;
|
|
1565
|
+
}) => React__default.ReactNode;
|
|
1566
|
+
}
|
|
1567
|
+
declare function CheckboxTree({ tree, renderNode }: CheckboxTreeProps): React__default.ReactNode;
|
|
1568
|
+
|
|
1531
1569
|
declare function useIsMobile(): boolean;
|
|
1532
1570
|
|
|
1533
1571
|
interface Position {
|
|
@@ -1547,4 +1585,4 @@ declare const useDrag: (options?: UseDragOptions) => {
|
|
|
1547
1585
|
isDragging: boolean;
|
|
1548
1586
|
};
|
|
1549
1587
|
|
|
1550
|
-
export { AddButton, AgendaDaysToShow, AgendaView, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase,
|
|
1588
|
+
export { AddButton, AgendaDaysToShow, AgendaView, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarCombobox, type AvatarComboboxItem, AvatarFallbackBase, AvatarImageBase, BackButton, Badge, type BadgeColorType, BarChart, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, ButtonBase, ButtonGroupBase, type ButtonProps, CalendarBase, CalendarDndProvider, type CalendarEvent, type CalendarProps, type CalendarView, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, type CarouselApi, CarouselBase, CarouselContentBase, CarouselItemBase, CarouselNextBase, CarouselPreviousBase, ChangeButton, Chart, 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, DebouncedInput, type DebouncedInputProps, DefaultEndHour, DefaultStartHour, 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, EditButton, EndHour, ErrorMessage, EventCalendar, type EventColor, EventDialog, EventGap, EventHeight, EventItem, EventsPopup, 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, MonthView, 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, StartHour, StatusIndicator, type StatusProps, 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, WeekCellsHeight, WeekView, addHoursToDate, badgeVariants, buttonVariantsBase, compactTick, convert12HourTo24Hour, detectDataFields, detectXAxis, display12HourValue, formatFieldName, generateAdditionalColors, getAgendaEventsForDay, getAllEventsForDay, getArrowByType, getBorderRadiusClasses, getDateByType, getEventColorClasses, getEventsForDay, getSpanningEventsForDay, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isMultiDayEvent, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, toast, useCalendarDnd, useChartHighlights, useCurrentTimeIndicator, useDrag, useEventVisibility, useIsMobile, useTheme, type valueFormatter };
|
package/dist/index.d.ts
CHANGED
|
@@ -97,8 +97,9 @@ interface ComboboxProps<T extends string> extends ErrorMessageProps {
|
|
|
97
97
|
label?: string;
|
|
98
98
|
labelClassname?: string;
|
|
99
99
|
testIds?: ComboboxTestIds;
|
|
100
|
+
disabled?: boolean;
|
|
100
101
|
}
|
|
101
|
-
declare function Combobox<T extends string>({ items, selected, onChange, className, placeholder, searchPlaceholder, empty, label, labelClassname, testIds, error, }: ComboboxProps<T>): react_jsx_runtime.JSX.Element;
|
|
102
|
+
declare function Combobox<T extends string>({ items, selected, onChange, className, placeholder, searchPlaceholder, empty, disabled, label, labelClassname, testIds, error, }: ComboboxProps<T>): react_jsx_runtime.JSX.Element;
|
|
102
103
|
|
|
103
104
|
interface MultiComboboxTestIds {
|
|
104
105
|
root?: string;
|
|
@@ -116,8 +117,9 @@ interface MultiComboboxProps<T extends string> extends Omit<ComboboxProps<T>, "s
|
|
|
116
117
|
testIds?: MultiComboboxTestIds;
|
|
117
118
|
keepOpen?: boolean;
|
|
118
119
|
showClearAll?: boolean;
|
|
120
|
+
disabled?: boolean;
|
|
119
121
|
}
|
|
120
|
-
declare function MultiCombobox<T extends string>({ items, selected, onChange, className, placeholder, searchPlaceholder, label, labelClassname, testIds, error, keepOpen, showClearAll, }: MultiComboboxProps<T>): react_jsx_runtime.JSX.Element;
|
|
122
|
+
declare function MultiCombobox<T extends string>({ items, selected, onChange, className, placeholder, searchPlaceholder, label, labelClassname, testIds, error, disabled, keepOpen, showClearAll, empty, }: MultiComboboxProps<T>): react_jsx_runtime.JSX.Element;
|
|
121
123
|
|
|
122
124
|
interface SelectItem<T extends string> {
|
|
123
125
|
label: string;
|
|
@@ -158,10 +160,10 @@ interface SelectPropsWithGroupItems$1<T extends string> extends DefaultSelectPro
|
|
|
158
160
|
type NewSelectProps<T extends string> = SelectPropsWithItems$1<T> | SelectPropsWithGroupItems$1<T>;
|
|
159
161
|
declare function Select<T extends string>({ items, groupItems, placeholder, onChange, error, testIds, disabled, selected, label, labelClassname, className, }: NewSelectProps<T>): react_jsx_runtime.JSX.Element;
|
|
160
162
|
|
|
161
|
-
interface
|
|
163
|
+
interface AvatarComboboxItem<T extends string> {
|
|
162
164
|
label: string;
|
|
163
165
|
value: T;
|
|
164
|
-
avatar?:
|
|
166
|
+
avatar?: ReactNode;
|
|
165
167
|
avatarClassName?: string;
|
|
166
168
|
}
|
|
167
169
|
interface SelectTestIds {
|
|
@@ -183,19 +185,19 @@ interface DefaultSelectProps extends ErrorMessageProps {
|
|
|
183
185
|
colors?: string[];
|
|
184
186
|
}
|
|
185
187
|
interface SelectPropsWithItems<T extends string> extends DefaultSelectProps {
|
|
186
|
-
items:
|
|
188
|
+
items: AvatarComboboxItem<T>[];
|
|
187
189
|
groupItems?: never;
|
|
188
190
|
testIds?: SelectTestIds;
|
|
189
191
|
}
|
|
190
192
|
interface SelectPropsWithGroupItems<T extends string> extends DefaultSelectProps {
|
|
191
193
|
items?: never;
|
|
192
194
|
groupItems: {
|
|
193
|
-
[key: string]:
|
|
195
|
+
[key: string]: AvatarComboboxItem<T>[];
|
|
194
196
|
};
|
|
195
197
|
testIds?: SelectTestIds;
|
|
196
198
|
}
|
|
197
|
-
type
|
|
198
|
-
declare function
|
|
199
|
+
type AvatarComboboxProps<T extends string> = SelectPropsWithItems<T> | SelectPropsWithGroupItems<T>;
|
|
200
|
+
declare function AvatarCombobox<T extends string>({ items, groupItems, placeholder, onChange, error, testIds, disabled, selected, label, labelClassname, className, colors, }: AvatarComboboxProps<T> & {
|
|
199
201
|
selected?: T | null;
|
|
200
202
|
label?: string;
|
|
201
203
|
labelClassname?: string;
|
|
@@ -269,6 +271,19 @@ type SeriesProp = {
|
|
|
269
271
|
interface ChartProps {
|
|
270
272
|
data: ChartData[];
|
|
271
273
|
series?: SeriesProp;
|
|
274
|
+
yAxisMap?: Record<string, "left" | "right">;
|
|
275
|
+
yAxes?: Partial<{
|
|
276
|
+
left: {
|
|
277
|
+
label?: string;
|
|
278
|
+
stroke?: string;
|
|
279
|
+
width?: number;
|
|
280
|
+
};
|
|
281
|
+
right: {
|
|
282
|
+
label?: string;
|
|
283
|
+
stroke?: string;
|
|
284
|
+
width?: number;
|
|
285
|
+
};
|
|
286
|
+
}>;
|
|
272
287
|
className?: string;
|
|
273
288
|
chartMargin?: Partial<{
|
|
274
289
|
top: number;
|
|
@@ -299,6 +314,8 @@ interface ChartProps {
|
|
|
299
314
|
showTooltipTotal?: boolean;
|
|
300
315
|
maxTooltips?: number;
|
|
301
316
|
formatBR?: boolean;
|
|
317
|
+
/** Texto exibido no cabeçalho dos tooltips (ex.: "Período") */
|
|
318
|
+
periodLabel?: string;
|
|
302
319
|
}
|
|
303
320
|
declare const Chart: React__default.FC<ChartProps>;
|
|
304
321
|
|
|
@@ -492,6 +509,8 @@ interface Props$1 {
|
|
|
492
509
|
totalLabel?: string;
|
|
493
510
|
valueFormatter?: valueFormatter;
|
|
494
511
|
categoryFormatter?: (value: string | number) => string;
|
|
512
|
+
yAxisMap?: Record<string, "left" | "right">;
|
|
513
|
+
isBiaxial?: boolean;
|
|
495
514
|
}
|
|
496
515
|
declare const RechartTooltipWithTotal: React__default.FC<Props$1>;
|
|
497
516
|
|
|
@@ -509,6 +528,8 @@ interface Props {
|
|
|
509
528
|
periodLabel?: string;
|
|
510
529
|
valueFormatter?: valueFormatter;
|
|
511
530
|
categoryFormatter?: (value: string | number) => string;
|
|
531
|
+
yAxisMap?: Record<string, "left" | "right">;
|
|
532
|
+
isBiaxial?: boolean;
|
|
512
533
|
}
|
|
513
534
|
declare const TooltipSimple: React__default.FC<Props>;
|
|
514
535
|
|
|
@@ -1528,6 +1549,23 @@ interface WeekViewProps {
|
|
|
1528
1549
|
}
|
|
1529
1550
|
declare function WeekView({ currentDate, events, onEventSelect, onEventCreate, }: WeekViewProps): react_jsx_runtime.JSX.Element;
|
|
1530
1551
|
|
|
1552
|
+
interface TreeNode {
|
|
1553
|
+
id: string;
|
|
1554
|
+
label: string;
|
|
1555
|
+
defaultChecked?: boolean;
|
|
1556
|
+
children?: TreeNode[];
|
|
1557
|
+
}
|
|
1558
|
+
interface CheckboxTreeProps {
|
|
1559
|
+
tree: TreeNode;
|
|
1560
|
+
renderNode: (props: {
|
|
1561
|
+
node: TreeNode;
|
|
1562
|
+
isChecked: boolean | "indeterminate";
|
|
1563
|
+
onCheckedChange: () => void;
|
|
1564
|
+
children: React__default.ReactNode;
|
|
1565
|
+
}) => React__default.ReactNode;
|
|
1566
|
+
}
|
|
1567
|
+
declare function CheckboxTree({ tree, renderNode }: CheckboxTreeProps): React__default.ReactNode;
|
|
1568
|
+
|
|
1531
1569
|
declare function useIsMobile(): boolean;
|
|
1532
1570
|
|
|
1533
1571
|
interface Position {
|
|
@@ -1547,4 +1585,4 @@ declare const useDrag: (options?: UseDragOptions) => {
|
|
|
1547
1585
|
isDragging: boolean;
|
|
1548
1586
|
};
|
|
1549
1587
|
|
|
1550
|
-
export { AddButton, AgendaDaysToShow, AgendaView, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase,
|
|
1588
|
+
export { AddButton, AgendaDaysToShow, AgendaView, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarCombobox, type AvatarComboboxItem, AvatarFallbackBase, AvatarImageBase, BackButton, Badge, type BadgeColorType, BarChart, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, ButtonBase, ButtonGroupBase, type ButtonProps, CalendarBase, CalendarDndProvider, type CalendarEvent, type CalendarProps, type CalendarView, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, type CarouselApi, CarouselBase, CarouselContentBase, CarouselItemBase, CarouselNextBase, CarouselPreviousBase, ChangeButton, Chart, 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, DebouncedInput, type DebouncedInputProps, DefaultEndHour, DefaultStartHour, 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, EditButton, EndHour, ErrorMessage, EventCalendar, type EventColor, EventDialog, EventGap, EventHeight, EventItem, EventsPopup, 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, MonthView, 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, StartHour, StatusIndicator, type StatusProps, 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, WeekCellsHeight, WeekView, addHoursToDate, badgeVariants, buttonVariantsBase, compactTick, convert12HourTo24Hour, detectDataFields, detectXAxis, display12HourValue, formatFieldName, generateAdditionalColors, getAgendaEventsForDay, getAllEventsForDay, getArrowByType, getBorderRadiusClasses, getDateByType, getEventColorClasses, getEventsForDay, getSpanningEventsForDay, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isMultiDayEvent, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, toast, useCalendarDnd, useChartHighlights, useCurrentTimeIndicator, useDrag, useEventVisibility, useIsMobile, useTheme, type valueFormatter };
|