@bloodhoundenterprise/doodleui 1.0.0-alpha.6 → 1.0.0-alpha.9

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.d.ts CHANGED
@@ -1,35 +1,37 @@
1
- import * as AccordionPrimitive_2 from '@radix-ui/react-accordion';
1
+ import * as AccordionPrimitive from '@radix-ui/react-accordion';
2
2
  import { ClassProp } from 'class-variance-authority/types';
3
+ import { ColumnDef } from '@tanstack/react-table';
4
+ import { createColumnHelper } from '@tanstack/react-table';
5
+ import { DayPicker } from 'react-day-picker';
6
+ import { default as default_2 } from 'embla-carousel-react';
7
+ import { DetailedHTMLProps } from 'react';
8
+ import { flexRender } from '@tanstack/react-table';
3
9
  import { ForwardRefExoticComponent } from 'react';
10
+ import { HTMLAttributes } from 'react';
4
11
  import { JSX as JSX_2 } from 'react/jsx-runtime';
12
+ import * as LabelPrimitive from '@radix-ui/react-label';
13
+ import { PluginCreator } from 'tailwindcss/types/config';
14
+ import * as PopoverPrimitive from '@radix-ui/react-popover';
5
15
  import * as React_2 from 'react';
6
16
  import { RefAttributes } from 'react';
7
- import * as SelectPrimitive_2 from '@radix-ui/react-select';
17
+ import * as SelectPrimitive from '@radix-ui/react-select';
8
18
  import * as SwitchPrimitives from '@radix-ui/react-switch';
9
- import * as TooltipPrimitive_2 from '@radix-ui/react-tooltip';
19
+ import { TableOptions } from '@tanstack/react-table';
20
+ import * as TooltipPrimitive from '@radix-ui/react-tooltip';
21
+ import { UseEmblaCarouselType } from 'embla-carousel-react';
10
22
  import { VariantProps } from 'class-variance-authority';
11
23
 
12
- declare const Accordion: React_2.ForwardRefExoticComponent<(AccordionPrimitive_2.AccordionSingleProps | AccordionPrimitive_2.AccordionMultipleProps) & React_2.RefAttributes<HTMLDivElement>>;
24
+ export declare const Accordion: React_2.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React_2.RefAttributes<HTMLDivElement>>;
13
25
 
14
- declare const AccordionContent: React_2.ForwardRefExoticComponent<Omit<AccordionPrimitive_2.AccordionContentProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
26
+ export declare const AccordionContent: React_2.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
15
27
 
16
- declare const AccordionHeader: React_2.ForwardRefExoticComponent<Omit<AccordionPrimitive_2.AccordionTriggerProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
28
+ export declare const AccordionHeader: React_2.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
17
29
 
18
- declare const AccordionItem: React_2.ForwardRefExoticComponent<Omit<AccordionPrimitive_2.AccordionItemProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
19
-
20
- declare namespace AccordionPrimitive {
21
- export {
22
- Accordion,
23
- AccordionItem,
24
- AccordionHeader,
25
- AccordionContent
26
- }
27
- }
28
- export { AccordionPrimitive }
30
+ export declare const AccordionItem: React_2.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionItemProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
29
31
 
30
32
  export declare function Badge(props: BadgeProps): JSX_2.Element;
31
33
 
32
- declare interface BadgeProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof BadgePropVariants> {
34
+ export declare interface BadgeProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof BadgePropVariants> {
33
35
  color?: ColorOptions;
34
36
  outlined: boolean;
35
37
  label?: string;
@@ -41,18 +43,63 @@ declare const BadgePropVariants: (props?: ({
41
43
 
42
44
  export declare const Button: React_2.ForwardRefExoticComponent<ButtonProps & React_2.RefAttributes<HTMLButtonElement>>;
43
45
 
44
- declare interface ButtonProps extends React_2.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof ButtonVariants> {
46
+ export declare interface ButtonProps extends React_2.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof ButtonVariants> {
45
47
  asChild?: boolean;
46
48
  }
47
49
 
48
- declare const ButtonVariants: (props?: ({
50
+ export declare const ButtonVariants: (props?: ({
49
51
  variant?: "primary" | "secondary" | "tertiary" | "text" | "icon" | null | undefined;
50
52
  fontColor?: "primary" | null | undefined;
51
53
  size?: "medium" | "large" | "small" | null | undefined;
52
54
  } & ClassProp) | undefined) => string;
53
55
 
56
+ export declare function Calendar({ className, classNames, showOutsideDays, ...props }: CalendarProps): JSX_2.Element;
57
+
58
+ export declare namespace Calendar {
59
+ var displayName: string;
60
+ }
61
+
62
+ export declare type CalendarProps = React_2.ComponentProps<typeof DayPicker>;
63
+
64
+ export declare const Card: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLDivElement> & React_2.RefAttributes<HTMLDivElement>>;
65
+
66
+ export declare const CardContent: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLDivElement> & React_2.RefAttributes<HTMLDivElement>>;
67
+
68
+ export declare const CardDescription: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLParagraphElement> & React_2.RefAttributes<HTMLParagraphElement>>;
69
+
70
+ export declare const CardFooter: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLDivElement> & React_2.RefAttributes<HTMLDivElement>>;
71
+
72
+ export declare const CardHeader: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLDivElement> & React_2.RefAttributes<HTMLDivElement>>;
73
+
74
+ export declare const CardTitle: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLHeadingElement> & React_2.RefAttributes<HTMLParagraphElement>>;
75
+
76
+ export declare const Carousel: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLDivElement> & CarouselProps & React_2.RefAttributes<HTMLDivElement>>;
77
+
78
+ export declare type CarouselApi = UseEmblaCarouselType[1];
79
+
80
+ export declare const CarouselContent: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLDivElement> & React_2.RefAttributes<HTMLDivElement>>;
81
+
82
+ export declare const CarouselDots: React_2.ForwardRefExoticComponent<Omit<ButtonProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
83
+
84
+ export declare const CarouselItem: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLDivElement> & React_2.RefAttributes<HTMLDivElement>>;
85
+
86
+ export declare const CarouselNext: React_2.ForwardRefExoticComponent<Omit<ButtonProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
87
+
88
+ declare type CarouselOptions = UseCarouselParameters[0];
89
+
90
+ export declare const CarouselPrev: React_2.ForwardRefExoticComponent<Omit<ButtonProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
91
+
92
+ declare type CarouselProps = {
93
+ opts?: CarouselOptions;
94
+ autoplay?: boolean;
95
+ orientation?: 'horizontal' | 'vertical';
96
+ setApi?: (api: CarouselApi) => void;
97
+ };
98
+
54
99
  declare type ColorOptions = ThemeOptions | CustomColorOptions;
55
100
 
101
+ export { ColumnDef }
102
+
56
103
  export declare const ComboBadge: (props: ComboBadgeProps) => JSX_2.Element;
57
104
 
58
105
  declare interface ComboBadgeProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'aria-label'> {
@@ -67,12 +114,182 @@ declare interface ComboBadgeProps extends Omit<React.HTMLAttributes<HTMLDivEleme
67
114
  disableAdornment?: boolean;
68
115
  }
69
116
 
70
- declare interface ContentProps extends React_2.ComponentPropsWithoutRef<typeof TooltipPrimitive_2.Content> {
117
+ declare interface ContentProps extends React_2.ComponentPropsWithoutRef<typeof TooltipPrimitive.Content> {
71
118
  contentWidth?: 'default' | 'match_trigger' | 'lg' | 'md' | 'sm';
72
119
  }
73
120
 
121
+ export { createColumnHelper }
122
+
74
123
  declare type CustomColorOptions = `#${string}` | `rgb(${string})` | `rgba(${string})` | `hsl(${string})` | `hsla(${string})`;
75
124
 
125
+ export declare const DataTable: <TData, TValue>(props: DataTableProps<TData, TValue>) => JSX_2.Element;
126
+
127
+ declare interface DataTableProps<TData, TValue> extends React.HTMLAttributes<HTMLDivElement> {
128
+ /**
129
+ * If using DataTable with a high order component and you need to spread ...rest props, consider casting the columns prop `as ColumnDef<unknown, unknown>[]` to avoid a noisy TS error.
130
+ *
131
+ * *[Link to more info](https://github.com/microsoft/TypeScript/issues/28938#issuecomment-450636046)*
132
+ * ***
133
+ * Note: Use `ColumnDef<RowInterface>[]` for intellisense when building columns.
134
+ */
135
+ columns: ColumnDef<TData, TValue>[];
136
+ data: TData[];
137
+ noResultsFallback?: string | React.ReactNode;
138
+ tableOptions?: Omit<TableOptions<TData>, 'columns' | 'data' | 'getCoreRowModel'>;
139
+ TableProps?: React.ComponentPropsWithoutRef<typeof Table>;
140
+ TableHeaderProps?: React.ComponentPropsWithoutRef<typeof TableHeader>;
141
+ TableHeaderRowProps?: React.ComponentPropsWithoutRef<typeof TableRow>;
142
+ TableHeadProps?: React.ComponentPropsWithoutRef<typeof TableHead>;
143
+ TableBodyProps?: React.ComponentPropsWithoutRef<typeof TableBody>;
144
+ TableBodyRowProps?: React.ComponentPropsWithoutRef<typeof TableRow>;
145
+ TableCellProps?: React.ComponentPropsWithoutRef<typeof TableCell>;
146
+ }
147
+
148
+ export declare const DoodleUIPlugin: PluginCreator;
149
+
150
+ export declare const DoodleUIPreset: {
151
+ theme: {
152
+ fontFamily: {
153
+ sans: string[];
154
+ };
155
+ container: {
156
+ center: boolean;
157
+ padding: string;
158
+ screens: {
159
+ '2xl': string;
160
+ };
161
+ };
162
+ extend: {
163
+ colors: {
164
+ primary: string;
165
+ 'primary-variant': string;
166
+ secondary: string;
167
+ 'secondary-variant': string;
168
+ 'secondary-variant-2': string;
169
+ tertiary: string;
170
+ 'tertiary-variant': string;
171
+ 'neutral-light-1': string;
172
+ 'neutral-light-2': string;
173
+ 'neutral-light-3': string;
174
+ 'neutral-light-4': string;
175
+ 'neutral-light-5': string;
176
+ 'neutral-dark-0': string;
177
+ 'neutral-dark-1': string;
178
+ 'neutral-dark-2': string;
179
+ 'neutral-dark-3': string;
180
+ 'neutral-dark-4': string;
181
+ 'neutral-dark-5': string;
182
+ 'error-1': string;
183
+ 'error-2': string;
184
+ 'error-3': string;
185
+ purple: string;
186
+ red: string;
187
+ orange: string;
188
+ yellow: string;
189
+ green: string;
190
+ blue: string;
191
+ };
192
+ keyframes: {
193
+ 'accordion-down': {
194
+ from: {
195
+ height: string;
196
+ };
197
+ to: {
198
+ height: string;
199
+ };
200
+ };
201
+ 'accordion-up': {
202
+ from: {
203
+ height: string;
204
+ };
205
+ to: {
206
+ height: string;
207
+ };
208
+ };
209
+ };
210
+ animation: {
211
+ 'accordion-down': string;
212
+ 'accordion-up': string;
213
+ };
214
+ boxShadow: {
215
+ inner1xl: string;
216
+ 'outer-1': string;
217
+ 'outer-2': string;
218
+ };
219
+ };
220
+ };
221
+ plugins: {
222
+ handler: () => void;
223
+ }[];
224
+ };
225
+
226
+ export { flexRender }
227
+
228
+ export declare const IconBadge: React_2.ForwardRefExoticComponent<IconBadgeProps & React_2.RefAttributes<HTMLDivElement>>;
229
+
230
+ declare interface IconBadgeProps extends React_2.HTMLAttributes<HTMLDivElement> {
231
+ label: string;
232
+ icon?: React_2.ReactNode;
233
+ color?: string;
234
+ }
235
+
236
+ export declare const Input: React_2.ForwardRefExoticComponent<InputProps & React_2.RefAttributes<HTMLInputElement>>;
237
+
238
+ export declare interface InputProps extends React_2.InputHTMLAttributes<HTMLInputElement> {
239
+ }
240
+
241
+ export declare const Label: React_2.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React_2.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: ClassProp | undefined) => string> & React_2.RefAttributes<HTMLLabelElement>>;
242
+
243
+ export declare const Pagination: React.FC<PaginationProps>;
244
+
245
+ export declare const PaginationContent: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & RefAttributes<HTMLDivElement>>;
246
+
247
+ export declare const PaginationEllipsis: {
248
+ ({ className, ...props }: React.ComponentProps<"span">): JSX_2.Element;
249
+ displayName: string;
250
+ };
251
+
252
+ export declare const PaginationLink: {
253
+ ({ className, isActive, asChild, ...props }: PaginationLinkProps): JSX_2.Element;
254
+ displayName: string;
255
+ };
256
+
257
+ declare type PaginationLinkProps = {
258
+ isActive?: boolean;
259
+ asChild?: boolean;
260
+ } & React.ComponentProps<'button'>;
261
+
262
+ export declare const PaginationNav: {
263
+ ({ className, ...props }: React.ComponentProps<"nav">): JSX_2.Element;
264
+ displayName: string;
265
+ };
266
+
267
+ export declare const PaginationNext: {
268
+ ({ onClick, className, ...props }: React.ComponentProps<typeof PaginationLink>): JSX_2.Element;
269
+ displayName: string;
270
+ };
271
+
272
+ export declare const PaginationPrevious: {
273
+ ({ onClick, className, ...props }: React.ComponentProps<typeof PaginationLink>): JSX_2.Element;
274
+ displayName: string;
275
+ };
276
+
277
+ export declare interface PaginationProps extends React.ComponentProps<'nav'> {
278
+ page: number;
279
+ rowsPerPage: number;
280
+ count: number;
281
+ paginationOptions?: string[];
282
+ defaultPaginationValue?: string;
283
+ onPageChange: (page: number) => void;
284
+ onRowsPerPageChange: (rowsPerPage: number) => void;
285
+ }
286
+
287
+ export declare const Popover: React_2.FC<PopoverPrimitive.PopoverProps>;
288
+
289
+ export declare const PopoverContent: React_2.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
290
+
291
+ export declare const PopoverTrigger: React_2.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React_2.RefAttributes<HTMLButtonElement>>;
292
+
76
293
  declare interface Props extends React.HTMLAttributes<HTMLDivElement> {
77
294
  value: number;
78
295
  color: ColorOptions;
@@ -81,46 +298,29 @@ declare interface Props extends React.HTMLAttributes<HTMLDivElement> {
81
298
 
82
299
  export declare function RadialGauge(props: Props): JSX_2.Element;
83
300
 
84
- declare type RootProps = React_2.ComponentPropsWithoutRef<typeof TooltipPrimitive_2.Root>;
301
+ declare type RootProps = React_2.ComponentPropsWithoutRef<typeof TooltipPrimitive.Root>;
85
302
 
86
- declare const Select: React_2.FC<SelectPrimitive_2.SelectProps>;
303
+ export declare const Select: React_2.FC<SelectPrimitive.SelectProps>;
87
304
 
88
- declare const SelectContent: React_2.ForwardRefExoticComponent<Omit<SelectPrimitive_2.SelectContentProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
305
+ export declare const SelectContent: React_2.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
89
306
 
90
- declare const SelectGroup: React_2.ForwardRefExoticComponent<SelectPrimitive_2.SelectGroupProps & React_2.RefAttributes<HTMLDivElement>>;
307
+ export declare const SelectGroup: React_2.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React_2.RefAttributes<HTMLDivElement>>;
91
308
 
92
- declare const SelectItem: React_2.ForwardRefExoticComponent<Omit<SelectPrimitive_2.SelectItemProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
309
+ export declare const SelectItem: React_2.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
93
310
 
94
- declare const SelectLabel: React_2.ForwardRefExoticComponent<Omit<SelectPrimitive_2.SelectLabelProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
311
+ export declare const SelectLabel: React_2.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectLabelProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
95
312
 
96
- declare const SelectPortal: React_2.FC<SelectPrimitive_2.SelectPortalProps>;
313
+ export declare const SelectPortal: React_2.FC<SelectPrimitive.SelectPortalProps>;
97
314
 
98
- declare namespace SelectPrimitive {
99
- export {
100
- Select,
101
- SelectPortal,
102
- SelectGroup,
103
- SelectValue,
104
- SelectTrigger,
105
- SelectContent,
106
- SelectLabel,
107
- SelectItem,
108
- SelectSeparator,
109
- SelectScrollUpButton,
110
- SelectScrollDownButton
111
- }
112
- }
113
- export { SelectPrimitive }
114
-
115
- declare const SelectScrollDownButton: React_2.ForwardRefExoticComponent<Omit<SelectPrimitive_2.SelectScrollDownButtonProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
315
+ export declare const SelectScrollDownButton: React_2.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollDownButtonProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
116
316
 
117
- declare const SelectScrollUpButton: React_2.ForwardRefExoticComponent<Omit<SelectPrimitive_2.SelectScrollUpButtonProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
317
+ export declare const SelectScrollUpButton: React_2.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollUpButtonProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
118
318
 
119
- declare const SelectSeparator: React_2.ForwardRefExoticComponent<Omit<SelectPrimitive_2.SelectSeparatorProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
319
+ export declare const SelectSeparator: React_2.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectSeparatorProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
120
320
 
121
- declare const SelectTrigger: React_2.ForwardRefExoticComponent<Omit<SelectPrimitive_2.SelectTriggerProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
321
+ export declare const SelectTrigger: React_2.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
122
322
 
123
- declare const SelectValue: React_2.ForwardRefExoticComponent<SelectPrimitive_2.SelectValueProps & React_2.RefAttributes<HTMLSpanElement>>;
323
+ export declare const SelectValue: React_2.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React_2.RefAttributes<HTMLSpanElement>>;
124
324
 
125
325
  export declare const Switch: ForwardRefExoticComponent<Omit<SwitchPrimitives.SwitchProps & RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
126
326
  size?: "medium" | "large" | "small" | null | undefined;
@@ -129,27 +329,31 @@ label?: string;
129
329
  labelPosition?: "left" | "right";
130
330
  } & RefAttributes<HTMLButtonElement>>;
131
331
 
332
+ export declare const Table: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLTableElement> & React_2.RefAttributes<HTMLTableElement>>;
333
+
334
+ export declare const TableBody: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLTableSectionElement> & React_2.RefAttributes<HTMLTableSectionElement>>;
335
+
336
+ export declare const TableCaption: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLTableCaptionElement> & React_2.RefAttributes<HTMLTableCaptionElement>>;
337
+
338
+ export declare const TableCell: React_2.ForwardRefExoticComponent<React_2.TdHTMLAttributes<HTMLTableCellElement> & React_2.RefAttributes<HTMLTableCellElement>>;
339
+
340
+ export declare const TableFooter: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLTableSectionElement> & React_2.RefAttributes<HTMLTableSectionElement>>;
341
+
342
+ export declare const TableHead: React_2.ForwardRefExoticComponent<React_2.ThHTMLAttributes<HTMLTableCellElement> & React_2.RefAttributes<HTMLTableCellElement>>;
343
+
344
+ export declare const TableHeader: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLTableSectionElement> & React_2.RefAttributes<HTMLTableSectionElement>>;
345
+
346
+ export declare const TableRow: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLTableRowElement> & React_2.RefAttributes<HTMLTableRowElement>>;
347
+
132
348
  declare type ThemeOptions = (typeof themeOptions)[number];
133
349
 
134
350
  declare const themeOptions: readonly ["primary", "primary-variant", "primary", "primary-variant", "secondary", "secondary-variant", "tertiary", "tertiary-variant", "purple", "red", "orange", "yellow", "green", "blue"];
135
351
 
136
- declare const Tooltip: React_2.FC<TooltipProps>;
352
+ export declare const Tooltip: React_2.FC<TooltipProps>;
137
353
 
138
- declare const TooltipContent: React_2.ForwardRefExoticComponent<ContentProps & React_2.RefAttributes<HTMLDivElement>>;
354
+ export declare const TooltipContent: React_2.ForwardRefExoticComponent<ContentProps & React_2.RefAttributes<HTMLDivElement>>;
139
355
 
140
- declare const TooltipPortal: React_2.FC<TooltipPrimitive_2.TooltipPortalProps>;
141
-
142
- declare namespace TooltipPrimitive {
143
- export {
144
- Tooltip,
145
- TooltipProvider,
146
- TooltipRoot,
147
- TooltipTrigger,
148
- TooltipPortal,
149
- TooltipContent
150
- }
151
- }
152
- export { TooltipPrimitive }
356
+ export declare const TooltipPortal: React_2.FC<TooltipPrimitive.TooltipPortalProps>;
153
357
 
154
358
  declare interface TooltipProps extends React_2.PropsWithChildren {
155
359
  tooltip: string | React_2.ReactNode;
@@ -163,12 +367,20 @@ declare interface TooltipProps extends React_2.PropsWithChildren {
163
367
  contentProps?: Omit<ContentProps, 'contentWidth'>;
164
368
  }
165
369
 
166
- declare const TooltipProvider: React_2.FC<TooltipPrimitive_2.TooltipProviderProps>;
370
+ export declare const TooltipProvider: React_2.FC<TooltipPrimitive.TooltipProviderProps>;
371
+
372
+ export declare const TooltipRoot: React_2.FC<TooltipPrimitive.TooltipProps>;
167
373
 
168
- declare const TooltipRoot: React_2.FC<TooltipPrimitive_2.TooltipProps>;
374
+ export declare const TooltipTrigger: React_2.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipTriggerProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
169
375
 
170
- declare const TooltipTrigger: React_2.ForwardRefExoticComponent<Omit<TooltipPrimitive_2.TooltipTriggerProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
376
+ declare type TriggerProps = React_2.ComponentPropsWithoutRef<typeof TooltipPrimitive.Trigger>;
171
377
 
172
- declare type TriggerProps = React_2.ComponentPropsWithoutRef<typeof TooltipPrimitive_2.Trigger>;
378
+ declare type UseCarouselParameters = Parameters<typeof default_2>;
173
379
 
174
380
  export { }
381
+
382
+
383
+ declare namespace Calendar {
384
+ var displayName: string;
385
+ }
386
+
@@ -0,0 +1 @@
1
+ *,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/*! tailwindcss v3.4.14 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:Roboto,Helvetica,Arial,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}:root{--primary:#33318f;--primary-variant:#261f7a;--secondary:#1a30ff;--secondary-variant:#0524f0;--secondary-variant-2:#99a3ff;--tertiary:#02c577;--tertiary-variant:#5cc791;--neutral-light-1:#fff;--neutral-light-2:#f9f9f9;--neutral-light-3:#eef0f2;--neutral-light-4:#e3e7ea;--neutral-light-5:#dadee1;--neutral-dark-0:#1d192b;--neutral-dark-1:#1d1b20;--neutral-dark-2:#211f26;--neutral-dark-3:#2b2930;--neutral-dark-4:#2b2930;--neutral-dark-5:#36343b;--error-1:#e9827c;--error-2:#e15851;--error-3:#b44641;--purple:#b553ec;--red:#ff3838;--orange:#ffa86d;--yellow:#ffd64c;--green:#99fb98;--blue:#2dccff}.docs-story,body{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.docs-story:is(.dark *),body:is(.dark *){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.visible{visibility:visible}.invisible{visibility:hidden}.absolute{position:absolute}.relative{position:relative}.bottom-0{bottom:0}.left-0{left:0}.left-1{left:.25rem}.left-2{left:.5rem}.right-0{right:0}.right-1{right:.25rem}.right-2{right:.5rem}.top-0{top:0}.z-10{z-index:10}.z-20{z-index:20}.z-50{z-index:50}.col-start-4{grid-column-start:4}.row-start-2{grid-row-start:2}.row-start-4{grid-row-start:4}.row-end-7{grid-row-end:7}.-mx-1{margin-left:-.25rem;margin-right:-.25rem}.mx-1\.5{margin-left:.375rem;margin-right:.375rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.mx-auto{margin-left:auto;margin-right:auto}.my-1{margin-top:.25rem;margin-bottom:.25rem}.-ml-2{margin-left:-.5rem}.-ml-4{margin-left:-1rem}.-mr-2{margin-right:-.5rem}.-mt-4{margin-top:-1rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-\[3px\]{margin-bottom:3px}.ml-1{margin-left:.25rem}.ml-2{margin-left:.5rem}.ml-3{margin-left:.75rem}.ml-4{margin-left:1rem}.mr-2{margin-right:.5rem}.mr-3{margin-right:.75rem}.mr-4{margin-right:1rem}.mr-auto{margin-right:auto}.mt-2{margin-top:.5rem}.mt-4{margin-top:1rem}.inline-block{display:inline-block}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.aspect-square{aspect-ratio:1/1}.size-10{width:2.5rem;height:2.5rem}.size-3{width:.75rem;height:.75rem}.size-4{width:1rem;height:1rem}.size-8{width:2rem;height:2rem}.size-\[32px\]{width:32px;height:32px}.size-full{width:100%;height:100%}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-12{height:3rem}.h-2{height:.5rem}.h-2\.5{height:.625rem}.h-24{height:6rem}.h-3{height:.75rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-\[var\(--radix-select-trigger-height\)\]{height:var(--radix-select-trigger-height)}.h-full{height:100%}.h-px{height:1px}.max-h-96{max-height:24rem}.w-1\/4{width:25%}.w-2{width:.5rem}.w-2\.5{width:.625rem}.w-3{width:.75rem}.w-32{width:8rem}.w-4{width:1rem}.w-48{width:12rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-60{width:15rem}.w-7{width:1.75rem}.w-72{width:18rem}.w-8{width:2rem}.w-9{width:2.25rem}.w-96{width:24rem}.w-\[var\(--radix-tooltip-trigger-width\)\]{width:var(--radix-tooltip-trigger-width)}.w-auto{width:auto}.w-fit{width:-moz-fit-content;width:fit-content}.w-full{width:100%}.min-w-0{min-width:0}.min-w-16{min-width:4rem}.min-w-\[var\(--radix-select-trigger-width\)\]{min-width:var(--radix-select-trigger-width)}.max-w-2{max-width:.5rem}.max-w-\[150px\]{max-width:150px}.max-w-\[200px\]{max-width:200px}.max-w-\[300px\]{max-width:300px}.max-w-sm{max-width:24rem}.max-w-xs{max-width:20rem}.flex-1{flex:1 1 0%}.shrink-0{flex-shrink:0}.grow-0{flex-grow:0}.basis-full{flex-basis:100%}.caption-bottom{caption-side:bottom}.border-collapse{border-collapse:collapse}.origin-center{transform-origin:center}.-translate-x-1{--tw-translate-x:-0.25rem}.-translate-x-1,.-translate-x-2{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))}.-translate-x-2{--tw-translate-x:-0.5rem}.-translate-x-full{--tw-translate-x:-100%}.-translate-x-full,.translate-x-0{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))}.translate-x-0{--tw-translate-x:0px}.translate-x-full{--tw-translate-x:100%}.translate-x-full,.translate-y-1{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))}.translate-y-1{--tw-translate-y:0.25rem}.-rotate-90{--tw-rotate:-90deg}.-rotate-90,.rotate-90{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))}.rotate-90{--tw-rotate:90deg}.transform{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))}.cursor-default{cursor:default}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.grid-cols-\[25px_1fr\]{grid-template-columns:25px 1fr}.grid-rows-7{grid-template-rows:repeat(7,minmax(0,1fr))}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.flex-col{flex-direction:column}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-1\.5{gap:.375rem}.gap-12{gap:3rem}.gap-2{gap:.5rem}.gap-4{gap:1rem}.space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.25rem*var(--tw-space-x-reverse));margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)))}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.5rem*var(--tw-space-x-reverse));margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem*var(--tw-space-y-reverse))}.space-y-1\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.375rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.375rem*var(--tw-space-y-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem*var(--tw-space-y-reverse))}.overflow-auto{overflow:auto}.overflow-hidden,.truncate{overflow:hidden}.truncate{text-overflow:ellipsis}.truncate,.whitespace-nowrap{white-space:nowrap}.text-nowrap{text-wrap:nowrap}.rounded{border-radius:.25rem}.rounded-3xl{border-radius:1.5rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.border{border-width:1px}.border-2{border-width:2px}.border-x{border-left-width:1px;border-right-width:1px}.border-y{border-top-width:1px}.border-b,.border-y{border-bottom-width:1px}.border-b-2{border-bottom-width:2px}.border-b-\[1px\]{border-bottom-width:1px}.border-t{border-top-width:1px}.border-solid{border-style:solid}.border-none{border-style:none}.border-black{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.border-neutral-dark-1{border-color:var(--neutral-dark-1)}.border-neutral-light-5{border-color:var(--neutral-light-5)}.bg-\[\#17E625\]{--tw-bg-opacity:1;background-color:rgb(23 230 37/var(--tw-bg-opacity))}.bg-\[\#DBE617\]{--tw-bg-opacity:1;background-color:rgb(219 230 23/var(--tw-bg-opacity))}.bg-black{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.bg-neutral-dark-1{background-color:var(--neutral-dark-1)}.bg-neutral-dark-5{background-color:var(--neutral-dark-5)}.bg-neutral-light-1{background-color:var(--neutral-light-1)}.bg-neutral-light-2{background-color:var(--neutral-light-2)}.bg-neutral-light-3{background-color:var(--neutral-light-3)}.bg-neutral-light-5{background-color:var(--neutral-light-5)}.bg-primary{background-color:var(--primary)}.bg-sky-500{--tw-bg-opacity:1;background-color:rgb(14 165 233/var(--tw-bg-opacity))}.bg-transparent{background-color:transparent}.stroke-current{stroke:currentColor}.p-0{padding:0}.p-1{padding:.25rem}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pl-0{padding-left:0}.pl-2\.5{padding-left:.625rem}.pl-3{padding-left:.75rem}.pl-4{padding-left:1rem}.pl-8{padding-left:2rem}.pr-2{padding-right:.5rem}.pr-2\.5{padding-right:.625rem}.pr-3{padding-right:.75rem}.pt-0{padding-top:0}.pt-1{padding-top:.25rem}.pt-3{padding-top:.75rem}.pt-4{padding-top:1rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.align-middle{vertical-align:middle}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-\[0\.8rem\]{font-size:.8rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-light{font-weight:300}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.tabular-nums{--tw-numeric-spacing:tabular-nums;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)}.leading-6{line-height:1.5rem}.leading-\[1\],.leading-none{line-height:1}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.text-neutral-dark-0{color:var(--neutral-dark-0)}.text-neutral-dark-1{color:var(--neutral-dark-1)}.text-neutral-dark-5{color:var(--neutral-dark-5)}.text-neutral-light-1{color:var(--neutral-light-1)}.text-neutral-light-4{color:var(--neutral-light-4)}.text-primary{color:var(--primary)}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.decoration-2{text-decoration-thickness:2px}.underline-offset-4{text-underline-offset:4px}.opacity-50{opacity:.5}.opacity-70{opacity:.7}.shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)}.shadow,.shadow-inner1xl{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-inner1xl{--tw-shadow:0px 1px 2px 0px rgba(0,0,0,.2) inset;--tw-shadow-colored:inset 0px 1px 2px 0px var(--tw-shadow-color)}.shadow-md{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.shadow-md,.shadow-none{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-none{--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000}.shadow-outer-1{--tw-shadow:0px 1px 2px 0px rgba(0,0,0,.2);--tw-shadow-colored:0px 1px 2px 0px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline-none{outline:2px solid transparent;outline-offset:2px}.ring-primary{--tw-ring-color:var(--primary)}.ring-offset-neutral-light-1{--tw-ring-offset-color:var(--neutral-light-1)}.drop-shadow{--tw-drop-shadow:drop-shadow(0 1px 2px rgba(0,0,0,.1)) drop-shadow(0 1px 1px rgba(0,0,0,.06))}.drop-shadow,.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition-\[stroke-dashoffset\]{transition-property:stroke-dashoffset;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-\[transform\]{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-300{transition-duration:.3s}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}@keyframes enter{0%{opacity:var(--tw-enter-opacity,1);transform:translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0) scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1)) rotate(var(--tw-enter-rotate,0))}}@keyframes exit{to{opacity:var(--tw-exit-opacity,1);transform:translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0) scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1)) rotate(var(--tw-exit-rotate,0))}}.animate-in{animation-name:enter;animation-duration:.15s;--tw-enter-opacity:initial;--tw-enter-scale:initial;--tw-enter-rotate:initial;--tw-enter-translate-x:initial;--tw-enter-translate-y:initial}.fade-in-0{--tw-enter-opacity:0}.zoom-in-95{--tw-enter-scale:.95}.duration-300{animation-duration:.3s}.ease-in-out{animation-timing-function:cubic-bezier(.4,0,.2,1)}.clip-right-rounded{clip-path:inset(0 .5px 0 -100vw round .25rem)}.clip-left-rounded{clip-path:inset(0 -100vw 0 0 round .25rem)}.TooltipContent[data-side=top]{animation-name:slideUp}.TooltipContent[data-side=bottom]{animation-name:slideDown}@keyframes slideDown{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}@keyframes slideUp{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.file\:border-0::file-selector-button{border-width:0}.file\:bg-transparent::file-selector-button{background-color:transparent}.file\:pr-3::file-selector-button{padding-right:.75rem}.file\:text-sm::file-selector-button{font-size:.875rem;line-height:1.25rem}.file\:font-medium::file-selector-button{font-weight:500}.file\:text-neutral-dark-0::file-selector-button{color:var(--neutral-dark-0)}.first\:pt-3:first-child{padding-top:.75rem}.last\:mb-0:last-child{margin-bottom:0}.last\:pb-0:last-child{padding-bottom:0}.odd\:bg-neutral-light-2:nth-child(odd){background-color:var(--neutral-light-2)}.even\:bg-neutral-light-3:nth-child(2n){background-color:var(--neutral-light-3)}.focus-within\:relative:focus-within{position:relative}.focus-within\:z-20:focus-within{z-index:20}.hover\:cursor-pointer:hover{cursor:pointer}.hover\:border-2:hover{border-width:2px}.hover\:border-secondary:hover{border-color:var(--secondary)}.hover\:border-tertiary:hover{border-color:var(--tertiary)}.hover\:bg-secondary:hover{background-color:var(--secondary)}.hover\:bg-tertiary:hover{background-color:var(--tertiary)}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.hover\:underline:hover{text-decoration-line:underline}.hover\:no-underline:hover{text-decoration-line:none}.hover\:opacity-100:hover{opacity:1}.hover\:ring-2:hover{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.hover\:even\:bg-neutral-light-4:nth-child(2n):hover,.hover\:odd\:bg-neutral-light-4:nth-child(odd):hover{background-color:var(--neutral-light-4)}.focus\:rounded-sm:focus{border-radius:.125rem}.focus\:border-transparent:focus{border-color:transparent}.focus\:bg-neutral-light-3:focus{background-color:var(--neutral-light-3)}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\:ring-primary:focus{--tw-ring-color:var(--primary)}.focus-visible\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.focus-visible\:ring-2:focus-visible{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus-visible\:ring-primary:focus-visible{--tw-ring-color:var(--primary)}.focus-visible\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px}.active\:border-none:active{border-style:none}.active\:no-underline:active{text-decoration-line:none}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:bg-neutral-light-5:disabled{background-color:var(--neutral-light-5)}.disabled\:text-gray-400:disabled{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.disabled\:opacity-50:disabled{opacity:.5}.group:focus .group-focus\:ring-2{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.group:focus-visible .group-focus-visible\:ring-2{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.group:disabled .group-disabled\:hover\:ring-0:hover{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.peer:hover~.peer-hover\:-translate-x-full{--tw-translate-x:-100%}.peer:hover~.peer-hover\:-translate-x-full,.peer:hover~.peer-hover\:translate-x-0{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))}.peer:hover~.peer-hover\:translate-x-0{--tw-translate-x:0px}.peer:hover~.peer-hover\:translate-x-full{--tw-translate-x:100%;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))}.peer:disabled~.peer-disabled\:cursor-not-allowed{cursor:not-allowed}.peer:disabled~.peer-disabled\:opacity-70{opacity:.7}.aria-selected\:bg-neutral-light-3[aria-selected=true]{background-color:var(--neutral-light-3)}.aria-selected\:text-neutral-dark-1[aria-selected=true]{color:var(--neutral-dark-1)}.aria-selected\:opacity-100[aria-selected=true]{opacity:1}.aria-selected\:opacity-30[aria-selected=true]{opacity:.3}.data-\[disabled\]\:pointer-events-none[data-disabled]{pointer-events:none}.data-\[side\=bottom\]\:-translate-y-1[data-side=bottom]{--tw-translate-y:-0.25rem}.data-\[side\=bottom\]\:-translate-y-1[data-side=bottom],.data-\[side\=left\]\:-translate-x-1[data-side=left]{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))}.data-\[side\=left\]\:-translate-x-1[data-side=left]{--tw-translate-x:-0.25rem}.data-\[side\=right\]\:translate-x-1[data-side=right]{--tw-translate-x:0.25rem}.data-\[side\=right\]\:translate-x-1[data-side=right],.data-\[side\=top\]\:-translate-y-1[data-side=top]{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))}.data-\[side\=top\]\:-translate-y-1[data-side=top]{--tw-translate-y:-0.25rem}.data-\[state\=checked\]\:translate-x-3[data-state=checked]{--tw-translate-x:0.75rem}.data-\[state\=checked\]\:translate-x-3[data-state=checked],.data-\[state\=checked\]\:translate-x-4[data-state=checked]{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))}.data-\[state\=checked\]\:translate-x-4[data-state=checked]{--tw-translate-x:1rem}.data-\[state\=checked\]\:translate-x-5[data-state=checked]{--tw-translate-x:1.25rem;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))}@keyframes accordion-up{0%{height:var(--radix-accordion-content-height)}to{height:0}}.data-\[state\=closed\]\:animate-accordion-up[data-state=closed]{animation:accordion-up .2s ease-out}@keyframes accordion-down{0%{height:0}to{height:var(--radix-accordion-content-height)}}.data-\[state\=open\]\:animate-accordion-down[data-state=open]{animation:accordion-down .2s ease-out}.data-\[state\=checked\]\:bg-primary[data-state=checked]{background-color:var(--primary)}.data-\[state\=checked\]\:font-bold[data-state=checked]{font-weight:700}.data-\[state\=checked\]\:text-primary[data-state=checked]{color:var(--primary)}.data-\[disabled\]\:opacity-50[data-disabled]{opacity:.5}.data-\[state\=checked\]\:shadow-outer-2[data-state=checked]{--tw-shadow:0px 2px 2px 0px rgba(0,0,0,.3);--tw-shadow-colored:0px 2px 2px 0px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.data-\[state\=checked\]\:ring-1[data-state=checked]{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.data-\[state\=open\]\:animate-in[data-state=open]{animation-name:enter;animation-duration:.15s;--tw-enter-opacity:initial;--tw-enter-scale:initial;--tw-enter-rotate:initial;--tw-enter-translate-x:initial;--tw-enter-translate-y:initial}.data-\[state\=closed\]\:animate-out[data-state=closed]{animation-name:exit;animation-duration:.15s;--tw-exit-opacity:initial;--tw-exit-scale:initial;--tw-exit-rotate:initial;--tw-exit-translate-x:initial;--tw-exit-translate-y:initial}.data-\[state\=closed\]\:fade-out-0[data-state=closed]{--tw-exit-opacity:0}.data-\[state\=open\]\:fade-in-0[data-state=open]{--tw-enter-opacity:0}.data-\[state\=closed\]\:zoom-out-95[data-state=closed]{--tw-exit-scale:.95}.data-\[state\=open\]\:zoom-in-95[data-state=open]{--tw-enter-scale:.95}.data-\[side\=bottom\]\:slide-in-from-top-2[data-side=bottom]{--tw-enter-translate-y:-0.5rem}.data-\[side\=left\]\:slide-in-from-right-2[data-side=left]{--tw-enter-translate-x:0.5rem}.data-\[side\=right\]\:slide-in-from-left-2[data-side=right]{--tw-enter-translate-x:-0.5rem}.data-\[side\=top\]\:slide-in-from-bottom-2[data-side=top]{--tw-enter-translate-y:0.5rem}.data-\[state\=checked\]\:hover\:ring-2:hover[data-state=checked]{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.dark\:border-neutral-dark-5:is(.dark *){border-color:var(--neutral-dark-5)}.dark\:border-neutral-light-1:is(.dark *){border-color:var(--neutral-light-1)}.dark\:border-neutral-light-5:is(.dark *){border-color:var(--neutral-light-5)}.dark\:border-white:is(.dark *){--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.dark\:bg-neutral-dark-0:is(.dark *){background-color:var(--neutral-dark-0)}.dark\:bg-neutral-dark-2:is(.dark *){background-color:var(--neutral-dark-2)}.dark\:bg-neutral-dark-3:is(.dark *){background-color:var(--neutral-dark-3)}.dark\:bg-neutral-dark-5:is(.dark *){background-color:var(--neutral-dark-5)}.dark\:bg-neutral-light-1:is(.dark *){background-color:var(--neutral-light-1)}.dark\:bg-neutral-light-5:is(.dark *){background-color:var(--neutral-light-5)}.dark\:bg-white:is(.dark *){--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.dark\:text-neutral-light-1:is(.dark *){color:var(--neutral-light-1)}.dark\:text-neutral-light-5:is(.dark *){color:var(--neutral-light-5)}.dark\:text-secondary-variant-2:is(.dark *){color:var(--secondary-variant-2)}.dark\:text-white:is(.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark\:shadow-sm:is(.dark *){--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.dark\:ring-offset-neutral-dark-0:is(.dark *){--tw-ring-offset-color:var(--neutral-dark-0)}.dark\:file\:text-neutral-light-1:is(.dark *)::file-selector-button{color:var(--neutral-light-1)}.dark\:odd\:bg-neutral-dark-2:nth-child(odd):is(.dark *){background-color:var(--neutral-dark-2)}.dark\:even\:bg-neutral-dark-3:nth-child(2n):is(.dark *){background-color:var(--neutral-dark-3)}.hover\:dark\:text-neutral-dark-0:is(.dark *):hover{color:var(--neutral-dark-0)}.dark\:hover\:odd\:bg-neutral-dark-4:nth-child(odd):hover:is(.dark *){background-color:var(--neutral-dark-4)}.dark\:hover\:even\:bg-neutral-dark-4:nth-child(2n):hover:is(.dark *){background-color:var(--neutral-dark-4)}.focus\:dark\:border-transparent:is(.dark *):focus{border-color:transparent}.dark\:focus\:bg-neutral-dark-5:focus:is(.dark *){background-color:var(--neutral-dark-5)}.focus\:dark\:ring-neutral-light-1:is(.dark *):focus{--tw-ring-color:var(--neutral-light-1)}.dark\:focus-visible\:ring-neutral-light-1:focus-visible:is(.dark *){--tw-ring-color:var(--neutral-light-1)}.dark\:aria-selected\:bg-neutral-dark-5[aria-selected=true]:is(.dark *){background-color:var(--neutral-dark-5)}.dark\:data-\[state\=checked\]\:bg-primary[data-state=checked]:is(.dark *){background-color:var(--primary)}.dark\:data-\[state\=checked\]\:text-secondary-variant-2[data-state=checked]:is(.dark *){color:var(--secondary-variant-2)}@media (min-width:640px){.sm\:flex-row{flex-direction:row}.sm\:space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(1rem*var(--tw-space-x-reverse));margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)))}.sm\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(0px*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0px*var(--tw-space-y-reverse))}}.\[\&\&\]\:underline.\[\&\&\]\:underline{text-decoration-line:underline}.\[\&\&\]\:dark\:text-neutral-dark-0:is(.dark *).\[\&\&\]\:dark\:text-neutral-dark-0:is(.dark *){color:var(--neutral-dark-0)}.\[\&\&\]\:dark\:aria-selected\:text-neutral-light-1[aria-selected=true]:is(.dark *).\[\&\&\]\:dark\:aria-selected\:text-neutral-light-1[aria-selected=true]:is(.dark *){color:var(--neutral-light-1)}.\[\&\:has\(\[aria-selected\]\)\]\:bg-neutral-light-3:has([aria-selected]){background-color:var(--neutral-light-3)}.first\:\[\&\:has\(\[aria-selected\]\)\]\:rounded-l-md:has([aria-selected]):first-child{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.last\:\[\&\:has\(\[aria-selected\]\)\]\:rounded-r-md:has([aria-selected]):last-child{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.dark\:\[\&\:has\(\[aria-selected\]\)\]\:bg-neutral-dark-3:has([aria-selected]):is(.dark *){background-color:var(--neutral-dark-3)}.dark\:\[\&\:has\(\[aria-selected\]\)\]\:bg-neutral-dark-5:has([aria-selected]):is(.dark *){background-color:var(--neutral-dark-5)}.\[\&\:has\(\[aria-selected\]\.day-outside\)\]\:bg-neutral-light-2:has([aria-selected].day-outside){background-color:var(--neutral-light-2)}.dark\:\[\&\:has\(\[aria-selected\]\.day-outside\)\]\:bg-neutral-dark-2:has([aria-selected].day-outside):is(.dark *){background-color:var(--neutral-dark-2)}.\[\&\:has\(\[aria-selected\]\.day-range-end\)\]\:rounded-r-md:has([aria-selected].day-range-end){border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.\[\&\:has\(\[aria-selected\]\.day-range-start\)\]\:rounded-l-md:has([aria-selected].day-range-start){border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.\[\&\:has\(\[aria-selected\]\:not\(\.day-range\)\)\]\:rounded-md:has([aria-selected]:not(.day-range)){border-radius:.375rem}.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]){padding-right:0}.\[\&\>span\]\:line-clamp-1>span{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1}.\[\&\>tr\]\:last\:border-b-0:last-child>tr{border-bottom-width:0}.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open]>svg{--tw-rotate:180deg;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))}.\[\&_tr\:last-child\]\:border-0 tr:last-child{border-width:0}.\[\&_tr\]\:border-b tr{border-bottom-width:1px}