@nswds/app 1.11.0 → 1.12.0

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,732 +1,1806 @@
1
- import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import * as React$1 from 'react';
3
- import React__default, { Dispatch, SetStateAction, ReactNode } from 'react';
4
- import * as AccordionPrimitive from '@radix-ui/react-accordion';
5
- import * as class_variance_authority_types from 'class-variance-authority/types';
6
- import { VariantProps } from 'class-variance-authority';
7
- import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
8
- import * as AvatarPrimitive from '@radix-ui/react-avatar';
9
- import * as url from 'url';
10
- import * as Headless from '@headlessui/react';
11
- import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
12
- import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
13
- import { Command as Command$1 } from 'cmdk';
14
- import * as DialogPrimitive from '@radix-ui/react-dialog';
15
- import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
16
- import { Drawer as Drawer$1 } from 'vaul';
17
- import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
18
- import * as LabelPrimitive from '@radix-ui/react-label';
19
- import * as MenubarPrimitive from '@radix-ui/react-menubar';
20
- import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
21
- import * as PopoverPrimitive from '@radix-ui/react-popover';
22
- import * as ProgressPrimitive from '@radix-ui/react-progress';
23
- import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
24
- import * as ResizablePrimitive from 'react-resizable-panels';
25
- import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
26
- import * as SelectPrimitive from '@radix-ui/react-select';
27
- import * as SeparatorPrimitive from '@radix-ui/react-separator';
28
- import * as SliderPrimitive from '@radix-ui/react-slider';
29
- import { ToasterProps } from 'sonner';
30
- import * as SwitchPrimitive from '@radix-ui/react-switch';
31
- import * as TabsPrimitive from '@radix-ui/react-tabs';
32
- import { ThemeProviderProps } from 'next-themes';
33
- import * as TogglePrimitive from '@radix-ui/react-toggle';
34
- import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
35
- import * as TooltipPrimitive from '@radix-ui/react-tooltip';
36
- import { ClassValue } from 'clsx';
37
- import * as _sindresorhus_slugify from '@sindresorhus/slugify';
38
-
39
- declare function Accordion({ ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Root>): react_jsx_runtime.JSX.Element;
40
- declare function AccordionItem({ className, ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Item>): react_jsx_runtime.JSX.Element;
41
- declare function AccordionTrigger({ className, children, ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
42
- declare function AccordionContent({ className, children, ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Content>): react_jsx_runtime.JSX.Element;
43
-
44
- declare const alertVariants: (props?: ({
45
- variant?: "default" | "destructive" | null | undefined;
46
- } & class_variance_authority_types.ClassProp) | undefined) => string;
47
- declare function Alert({ className, variant, ...props }: React$1.ComponentProps<'div'> & VariantProps<typeof alertVariants>): react_jsx_runtime.JSX.Element;
48
- declare function AlertTitle({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
49
- declare function AlertDescription({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
50
-
51
- declare function AspectRatio({ ...props }: React.ComponentProps<typeof AspectRatioPrimitive.Root>): react_jsx_runtime.JSX.Element;
52
-
53
- declare function Avatar({ className, ...props }: React$1.ComponentProps<typeof AvatarPrimitive.Root>): react_jsx_runtime.JSX.Element;
54
- declare function AvatarImage({ className, ...props }: React$1.ComponentProps<typeof AvatarPrimitive.Image>): react_jsx_runtime.JSX.Element;
55
- declare function AvatarFallback({ className, ...props }: React$1.ComponentProps<typeof AvatarPrimitive.Fallback>): react_jsx_runtime.JSX.Element;
56
-
57
- declare const badgeVariants: (props?: ({
58
- variant?: "primary/neutral" | "light" | "primary/white" | "white" | "neutral" | "primary" | "secondary" | "tertiary" | "accent" | "outline" | "ghost" | "error" | "success" | "warning" | "info" | null | undefined;
59
- } & class_variance_authority_types.ClassProp) | undefined) => string;
60
- declare function Badge({ variant, className, ...props }: VariantProps<typeof badgeVariants> & React__default.ComponentPropsWithoutRef<'span'>): react_jsx_runtime.JSX.Element;
61
- declare const BadgeButton: React__default.ForwardRefExoticComponent<(VariantProps<(props?: ({
62
- variant?: "primary/neutral" | "light" | "primary/white" | "white" | "neutral" | "primary" | "secondary" | "tertiary" | "accent" | "outline" | "ghost" | "error" | "success" | "warning" | "info" | null | undefined;
63
- } & class_variance_authority_types.ClassProp) | undefined) => string> & ({
64
- className?: string;
65
- children: React__default.ReactNode;
66
- } & (Omit<Headless.ButtonProps<"button">, "className" | "as"> | Omit<Omit<{
67
- href: string | url.UrlObject;
68
- as?: string | url.UrlObject;
69
- replace?: boolean;
70
- scroll?: boolean;
71
- shallow?: boolean;
72
- passHref?: boolean;
73
- prefetch?: boolean | null;
74
- locale?: string | false;
75
- legacyBehavior?: boolean;
76
- onMouseEnter?: React__default.MouseEventHandler<HTMLAnchorElement>;
77
- onTouchStart?: React__default.TouchEventHandler<HTMLAnchorElement>;
78
- onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
79
- } & Omit<React__default.DetailedHTMLProps<React__default.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & React__default.RefAttributes<HTMLAnchorElement>, "ref">, "className">))) & React__default.RefAttributes<HTMLElement>>;
80
-
81
- declare function Breadcrumb({ ...props }: React$1.ComponentProps<'nav'>): react_jsx_runtime.JSX.Element;
82
- declare function BreadcrumbList({ className, ...props }: React$1.ComponentProps<'ol'>): react_jsx_runtime.JSX.Element;
83
- declare function BreadcrumbItem({ className, ...props }: React$1.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
84
- declare function BreadcrumbLink({ asChild, className, ...props }: React$1.ComponentProps<'a'> & {
85
- asChild?: boolean;
86
- }): react_jsx_runtime.JSX.Element;
87
- declare function BreadcrumbPage({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
88
- declare function BreadcrumbSeparator({ children, className, ...props }: React$1.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
89
- declare function BreadcrumbEllipsis({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
90
-
91
- declare const Link$1: React__default.ForwardRefExoticComponent<{
92
- href: string | url.UrlObject;
93
- as?: string | url.UrlObject;
94
- replace?: boolean;
95
- scroll?: boolean;
96
- shallow?: boolean;
97
- passHref?: boolean;
98
- prefetch?: boolean | null;
99
- locale?: string | false;
100
- legacyBehavior?: boolean;
101
- onMouseEnter?: React__default.MouseEventHandler<HTMLAnchorElement>;
102
- onTouchStart?: React__default.TouchEventHandler<HTMLAnchorElement>;
103
- onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
104
- } & Omit<React__default.DetailedHTMLProps<React__default.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & React__default.RefAttributes<HTMLAnchorElement>>;
105
-
106
- declare const buttonVariants: (props?: ({
107
- variant?: "link" | "primary/neutral" | "light" | "primary/white" | "white" | "neutral" | "primary" | "secondary" | "tertiary" | "accent" | "outline" | "ghost" | "error" | null | undefined;
108
- size?: "default" | "sm" | "lg" | "icon" | null | undefined;
109
- } & class_variance_authority_types.ClassProp) | undefined) => string;
1
+ import * as react_jsx_runtime from 'react/jsx-runtime'
2
+ import * as React$1 from 'react'
3
+ import React__default, { Dispatch, SetStateAction, ReactNode } from 'react'
4
+ import * as AccordionPrimitive from '@radix-ui/react-accordion'
5
+ import * as class_variance_authority_types from 'class-variance-authority/types'
6
+ import { VariantProps } from 'class-variance-authority'
7
+ import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio'
8
+ import * as AvatarPrimitive from '@radix-ui/react-avatar'
9
+ import * as url from 'url'
10
+ import * as Headless from '@headlessui/react'
11
+ import * as CheckboxPrimitive from '@radix-ui/react-checkbox'
12
+ import * as CollapsiblePrimitive from '@radix-ui/react-collapsible'
13
+ import { Command as Command$1 } from 'cmdk'
14
+ import * as DialogPrimitive from '@radix-ui/react-dialog'
15
+ import * as ContextMenuPrimitive from '@radix-ui/react-context-menu'
16
+ import { Drawer as Drawer$1 } from 'vaul'
17
+ import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu'
18
+ import * as LabelPrimitive from '@radix-ui/react-label'
19
+ import * as MenubarPrimitive from '@radix-ui/react-menubar'
20
+ import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu'
21
+ import * as PopoverPrimitive from '@radix-ui/react-popover'
22
+ import * as ProgressPrimitive from '@radix-ui/react-progress'
23
+ import * as RadioGroupPrimitive from '@radix-ui/react-radio-group'
24
+ import * as ResizablePrimitive from 'react-resizable-panels'
25
+ import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area'
26
+ import * as SelectPrimitive from '@radix-ui/react-select'
27
+ import * as SeparatorPrimitive from '@radix-ui/react-separator'
28
+ import * as SliderPrimitive from '@radix-ui/react-slider'
29
+ import { ToasterProps } from 'sonner'
30
+ import * as SwitchPrimitive from '@radix-ui/react-switch'
31
+ import * as TabsPrimitive from '@radix-ui/react-tabs'
32
+ import { ThemeProviderProps } from 'next-themes'
33
+ import * as TogglePrimitive from '@radix-ui/react-toggle'
34
+ import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group'
35
+ import * as TooltipPrimitive from '@radix-ui/react-tooltip'
36
+ import { ClassValue } from 'clsx'
37
+ import * as _sindresorhus_slugify from '@sindresorhus/slugify'
38
+
39
+ declare function Accordion({
40
+ ...props
41
+ }: React$1.ComponentProps<typeof AccordionPrimitive.Root>): react_jsx_runtime.JSX.Element
42
+ declare function AccordionItem({
43
+ className,
44
+ ...props
45
+ }: React$1.ComponentProps<typeof AccordionPrimitive.Item>): react_jsx_runtime.JSX.Element
46
+ declare function AccordionTrigger({
47
+ className,
48
+ children,
49
+ ...props
50
+ }: React$1.ComponentProps<typeof AccordionPrimitive.Trigger>): react_jsx_runtime.JSX.Element
51
+ declare function AccordionContent({
52
+ className,
53
+ children,
54
+ ...props
55
+ }: React$1.ComponentProps<typeof AccordionPrimitive.Content>): react_jsx_runtime.JSX.Element
56
+
57
+ declare const alertVariants: (
58
+ props?:
59
+ | ({
60
+ variant?: 'default' | 'destructive' | null | undefined
61
+ } & class_variance_authority_types.ClassProp)
62
+ | undefined,
63
+ ) => string
64
+ declare function Alert({
65
+ className,
66
+ variant,
67
+ ...props
68
+ }: React$1.ComponentProps<'div'> &
69
+ VariantProps<typeof alertVariants>): react_jsx_runtime.JSX.Element
70
+ declare function AlertTitle({
71
+ className,
72
+ ...props
73
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element
74
+ declare function AlertDescription({
75
+ className,
76
+ ...props
77
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element
78
+
79
+ declare function AspectRatio({
80
+ ...props
81
+ }: React.ComponentProps<typeof AspectRatioPrimitive.Root>): react_jsx_runtime.JSX.Element
82
+
83
+ declare function Avatar({
84
+ className,
85
+ ...props
86
+ }: React$1.ComponentProps<typeof AvatarPrimitive.Root>): react_jsx_runtime.JSX.Element
87
+ declare function AvatarImage({
88
+ className,
89
+ ...props
90
+ }: React$1.ComponentProps<typeof AvatarPrimitive.Image>): react_jsx_runtime.JSX.Element
91
+ declare function AvatarFallback({
92
+ className,
93
+ ...props
94
+ }: React$1.ComponentProps<typeof AvatarPrimitive.Fallback>): react_jsx_runtime.JSX.Element
95
+
96
+ declare const badgeVariants: (
97
+ props?:
98
+ | ({
99
+ variant?:
100
+ | 'primary/neutral'
101
+ | 'light'
102
+ | 'primary/white'
103
+ | 'white'
104
+ | 'neutral'
105
+ | 'primary'
106
+ | 'secondary'
107
+ | 'tertiary'
108
+ | 'accent'
109
+ | 'outline'
110
+ | 'ghost'
111
+ | 'error'
112
+ | 'success'
113
+ | 'warning'
114
+ | 'info'
115
+ | null
116
+ | undefined
117
+ } & class_variance_authority_types.ClassProp)
118
+ | undefined,
119
+ ) => string
120
+ declare function Badge({
121
+ variant,
122
+ className,
123
+ ...props
124
+ }: VariantProps<typeof badgeVariants> &
125
+ React__default.ComponentPropsWithoutRef<'span'>): react_jsx_runtime.JSX.Element
126
+ declare const BadgeButton: React__default.ForwardRefExoticComponent<
127
+ (VariantProps<
128
+ (
129
+ props?:
130
+ | ({
131
+ variant?:
132
+ | 'primary/neutral'
133
+ | 'light'
134
+ | 'primary/white'
135
+ | 'white'
136
+ | 'neutral'
137
+ | 'primary'
138
+ | 'secondary'
139
+ | 'tertiary'
140
+ | 'accent'
141
+ | 'outline'
142
+ | 'ghost'
143
+ | 'error'
144
+ | 'success'
145
+ | 'warning'
146
+ | 'info'
147
+ | null
148
+ | undefined
149
+ } & class_variance_authority_types.ClassProp)
150
+ | undefined,
151
+ ) => string
152
+ > &
153
+ ({
154
+ className?: string
155
+ children: React__default.ReactNode
156
+ } & (
157
+ | Omit<Headless.ButtonProps<'button'>, 'className' | 'as'>
158
+ | Omit<
159
+ Omit<
160
+ {
161
+ href: string | url.UrlObject
162
+ as?: string | url.UrlObject
163
+ replace?: boolean
164
+ scroll?: boolean
165
+ shallow?: boolean
166
+ passHref?: boolean
167
+ prefetch?: boolean | null
168
+ locale?: string | false
169
+ legacyBehavior?: boolean
170
+ onMouseEnter?: React__default.MouseEventHandler<HTMLAnchorElement>
171
+ onTouchStart?: React__default.TouchEventHandler<HTMLAnchorElement>
172
+ onClick?: React__default.MouseEventHandler<HTMLAnchorElement>
173
+ } & Omit<
174
+ React__default.DetailedHTMLProps<
175
+ React__default.AnchorHTMLAttributes<HTMLAnchorElement>,
176
+ HTMLAnchorElement
177
+ >,
178
+ 'ref'
179
+ > &
180
+ React__default.RefAttributes<HTMLAnchorElement>,
181
+ 'ref'
182
+ >,
183
+ 'className'
184
+ >
185
+ ))) &
186
+ React__default.RefAttributes<HTMLElement>
187
+ >
188
+
189
+ declare function Breadcrumb({
190
+ ...props
191
+ }: React$1.ComponentProps<'nav'>): react_jsx_runtime.JSX.Element
192
+ declare function BreadcrumbList({
193
+ className,
194
+ ...props
195
+ }: React$1.ComponentProps<'ol'>): react_jsx_runtime.JSX.Element
196
+ declare function BreadcrumbItem({
197
+ className,
198
+ ...props
199
+ }: React$1.ComponentProps<'li'>): react_jsx_runtime.JSX.Element
200
+ declare function BreadcrumbLink({
201
+ asChild,
202
+ className,
203
+ ...props
204
+ }: React$1.ComponentProps<'a'> & {
205
+ asChild?: boolean
206
+ }): react_jsx_runtime.JSX.Element
207
+ declare function BreadcrumbPage({
208
+ className,
209
+ ...props
210
+ }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element
211
+ declare function BreadcrumbSeparator({
212
+ children,
213
+ className,
214
+ ...props
215
+ }: React$1.ComponentProps<'li'>): react_jsx_runtime.JSX.Element
216
+ declare function BreadcrumbEllipsis({
217
+ className,
218
+ ...props
219
+ }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element
220
+
221
+ declare const Link$1: React__default.ForwardRefExoticComponent<
222
+ {
223
+ href: string | url.UrlObject
224
+ as?: string | url.UrlObject
225
+ replace?: boolean
226
+ scroll?: boolean
227
+ shallow?: boolean
228
+ passHref?: boolean
229
+ prefetch?: boolean | null
230
+ locale?: string | false
231
+ legacyBehavior?: boolean
232
+ onMouseEnter?: React__default.MouseEventHandler<HTMLAnchorElement>
233
+ onTouchStart?: React__default.TouchEventHandler<HTMLAnchorElement>
234
+ onClick?: React__default.MouseEventHandler<HTMLAnchorElement>
235
+ } & Omit<
236
+ React__default.DetailedHTMLProps<
237
+ React__default.AnchorHTMLAttributes<HTMLAnchorElement>,
238
+ HTMLAnchorElement
239
+ >,
240
+ 'ref'
241
+ > &
242
+ React__default.RefAttributes<HTMLAnchorElement>
243
+ >
244
+
245
+ declare const buttonVariants: (
246
+ props?:
247
+ | ({
248
+ variant?:
249
+ | 'link'
250
+ | 'primary/neutral'
251
+ | 'light'
252
+ | 'primary/white'
253
+ | 'white'
254
+ | 'neutral'
255
+ | 'primary'
256
+ | 'secondary'
257
+ | 'tertiary'
258
+ | 'accent'
259
+ | 'outline'
260
+ | 'ghost'
261
+ | 'error'
262
+ | null
263
+ | undefined
264
+ size?: 'default' | 'icon' | 'sm' | 'lg' | null | undefined
265
+ } & class_variance_authority_types.ClassProp)
266
+ | undefined,
267
+ ) => string
110
268
  type ButtonProps = VariantProps<typeof buttonVariants> & {
111
- className?: string;
112
- children: React__default.ReactNode;
113
- } & (Omit<Headless.ButtonProps, 'as' | 'className'> | Omit<React__default.ComponentPropsWithoutRef<typeof Link$1>, 'className'>);
114
- declare const Button: React__default.ForwardRefExoticComponent<ButtonProps & React__default.RefAttributes<HTMLElement>>;
269
+ className?: string
270
+ children: React__default.ReactNode
271
+ } & (
272
+ | Omit<Headless.ButtonProps, 'as' | 'className'>
273
+ | Omit<React__default.ComponentPropsWithoutRef<typeof Link$1>, 'className'>
274
+ )
275
+ declare const Button: React__default.ForwardRefExoticComponent<
276
+ ButtonProps & React__default.RefAttributes<HTMLElement>
277
+ >
115
278
  /**
116
279
  * Expand the hit area to at least 44×44px on touch devices
117
280
  */
118
- declare function TouchTarget({ children }: {
119
- children: React__default.ReactNode;
120
- }): react_jsx_runtime.JSX.Element;
281
+ declare function TouchTarget({
282
+ children,
283
+ }: {
284
+ children: React__default.ReactNode
285
+ }): react_jsx_runtime.JSX.Element
121
286
 
122
- declare function Card({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
123
- declare function CardHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
124
- declare function CardTitle({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
125
- declare function CardDescription({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
126
- declare function CardAction({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
127
- declare function CardContent({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
128
- declare function CardFooter({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
287
+ declare function Card({
288
+ className,
289
+ ...props
290
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element
291
+ declare function CardHeader({
292
+ className,
293
+ ...props
294
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element
295
+ declare function CardTitle({
296
+ className,
297
+ ...props
298
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element
299
+ declare function CardDescription({
300
+ className,
301
+ ...props
302
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element
303
+ declare function CardAction({
304
+ className,
305
+ ...props
306
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element
307
+ declare function CardContent({
308
+ className,
309
+ ...props
310
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element
311
+ declare function CardFooter({
312
+ className,
313
+ ...props
314
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element
129
315
 
130
- declare function Checkbox({ className, ...props }: React$1.ComponentProps<typeof CheckboxPrimitive.Root>): react_jsx_runtime.JSX.Element;
316
+ declare function Checkbox({
317
+ className,
318
+ ...props
319
+ }: React$1.ComponentProps<typeof CheckboxPrimitive.Root>): react_jsx_runtime.JSX.Element
131
320
 
132
- declare function Collapsible({ ...props }: React.ComponentProps<typeof CollapsiblePrimitive.Root>): react_jsx_runtime.JSX.Element;
133
- declare function CollapsibleTrigger({ ...props }: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>): react_jsx_runtime.JSX.Element;
134
- declare function CollapsibleContent({ ...props }: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>): react_jsx_runtime.JSX.Element;
321
+ declare function Collapsible({
322
+ ...props
323
+ }: React.ComponentProps<typeof CollapsiblePrimitive.Root>): react_jsx_runtime.JSX.Element
324
+ declare function CollapsibleTrigger({
325
+ ...props
326
+ }: React.ComponentProps<
327
+ typeof CollapsiblePrimitive.CollapsibleTrigger
328
+ >): react_jsx_runtime.JSX.Element
329
+ declare function CollapsibleContent({
330
+ ...props
331
+ }: React.ComponentProps<
332
+ typeof CollapsiblePrimitive.CollapsibleContent
333
+ >): react_jsx_runtime.JSX.Element
135
334
 
136
- type IconProps = React.HTMLAttributes<SVGElement>;
335
+ type IconProps = React.HTMLAttributes<SVGElement>
137
336
  interface LayoutProps {
138
- children: React.ReactNode;
139
- sitename?: string;
140
- toc?: boolean;
337
+ children: React.ReactNode
338
+ sitename?: string
339
+ toc?: boolean
141
340
  }
142
341
  type ColorProperty = {
143
- value: string | {
144
- colorSpace: string;
145
- channels: number[];
146
- alpha: number;
147
- };
148
- type: 'color';
149
- };
342
+ value:
343
+ | string
344
+ | {
345
+ colorSpace: string
346
+ channels: number[]
347
+ alpha: number
348
+ }
349
+ type: 'color'
350
+ }
351
+ type colorCategories = {
352
+ name: string
353
+ colors: {
354
+ token: string
355
+ oklch: string
356
+ hex: string
357
+ rgb: string
358
+ hsl: string
359
+ name?: string
360
+ }[]
361
+ }
150
362
  type ColorThemes = {
151
- [key: string]: {
152
- [key: string]: {
153
- name: string;
154
- colors: {
155
- token: string;
156
- oklch: string;
157
- hex: string;
158
- rgb: string;
159
- hsl: string;
160
- name?: string;
161
- }[];
162
- };
163
- };
164
- };
165
- type ColorFormat = 'hex' | 'rgb' | 'hsl' | 'oklch';
166
- type ViewMode = 'grid' | 'list';
167
- type ThemeOption = string;
363
+ [key: string]: {
364
+ [key: string]: colorCategories
365
+ }
366
+ }
367
+ type ColorFormat = 'hex' | 'rgb' | 'hsl' | 'oklch'
368
+ type ViewMode = 'grid' | 'list'
369
+ type ThemeOption = string
168
370
  type ColorTheme = {
169
- [key: string]: {
170
- name: string;
171
- colors: {
172
- token: string;
173
- oklch: string;
174
- hex: string;
175
- rgb: string;
176
- hsl: string;
177
- name?: string;
178
- }[];
179
- };
180
- };
371
+ [key: string]: {
372
+ name: string
373
+ colors: {
374
+ token: string
375
+ oklch: string
376
+ hex: string
377
+ rgb: string
378
+ hsl: string
379
+ name?: string
380
+ }[]
381
+ }
382
+ }
181
383
  interface ColorCardProps {
182
- name: string;
183
- token: string;
184
- hex: string;
185
- rgb: string;
186
- hsl: string;
187
- oklch: string;
188
- format: 'hex' | 'rgb' | 'hsl' | 'oklch';
189
- viewMode: 'grid' | 'list';
384
+ name: string
385
+ token: string
386
+ hex: string
387
+ rgb: string
388
+ hsl: string
389
+ oklch: string
390
+ format: 'hex' | 'rgb' | 'hsl' | 'oklch'
391
+ viewMode: 'grid' | 'list'
190
392
  }
191
393
  interface ViewToggleProps {
192
- viewMode: ViewMode;
193
- setViewMode: (mode: ViewMode) => void;
394
+ viewMode: ViewMode
395
+ setViewMode: (mode: ViewMode) => void
194
396
  }
195
397
  interface Color {
196
- token: string;
197
- oklch: string;
198
- hex: string;
199
- rgb: string;
200
- hsl: string;
201
- name?: string;
398
+ token: string
399
+ oklch: string
400
+ hex: string
401
+ rgb: string
402
+ hsl: string
403
+ name?: string
202
404
  }
203
- type ThemeCategory = 'brand' | 'aboriginal';
405
+ type ThemeCategory = 'brand' | 'aboriginal'
204
406
  interface ThemeSelectorProps {
205
- themeCategory: ThemeCategory;
206
- setThemeCategory: (category: ThemeCategory) => void;
207
- primaryColor: string;
208
- setPrimaryColor: (color: string) => void;
209
- accentColor: string;
210
- setAccentColor: (color: string) => void;
211
- availableAccentColors: string[];
212
- colorThemes: ColorThemes;
407
+ themeCategory: ThemeCategory
408
+ setThemeCategory: (category: ThemeCategory) => void
409
+ primaryColor: string
410
+ setPrimaryColor: (color: string) => void
411
+ accentColor: string
412
+ setAccentColor: (color: string) => void
413
+ availableAccentColors: string[]
414
+ colorThemes: ColorThemes
213
415
  }
214
416
  interface FormatToggleProps {
215
- format: ColorFormat;
216
- setFormat: (format: ColorFormat) => void;
417
+ format: ColorFormat
418
+ setFormat: (format: ColorFormat) => void
217
419
  }
218
420
  type SimpleNode = {
219
- type: string;
220
- attributes: {
221
- content?: string;
222
- [key: string]: string | number | boolean | undefined;
223
- };
224
- children?: SimpleNode[];
225
- };
421
+ type: string
422
+ attributes: {
423
+ content?: string
424
+ [key: string]: string | number | boolean | undefined
425
+ }
426
+ children?: SimpleNode[]
427
+ }
226
428
  type HeadingNode = {
227
- level: number;
228
- id: string;
229
- title: string;
230
- children: HeadingNode[];
231
- };
429
+ level: number
430
+ id: string
431
+ title: string
432
+ children: HeadingNode[]
433
+ }
232
434
  type Link = {
233
- href: string;
234
- title: string;
235
- links?: Link[];
236
- };
435
+ href: string
436
+ title: string
437
+ links?: Link[]
438
+ }
237
439
  interface ColorData {
238
- oklch: string;
239
- hex: string;
240
- rgb: string;
241
- hsl: string;
242
- [key: string]: string;
440
+ oklch: string
441
+ hex: string
442
+ rgb: string
443
+ hsl: string
444
+ [key: string]: string
243
445
  }
244
- type Format = 'hex' | 'oklch' | 'hsl' | 'rgb';
245
- type Variant = 'shades' | 'theme';
246
- type Output = 'css' | 'ts' | 'scss' | 'less' | 'tailwind' | 'json' | 'json-DTFM' | 'js';
446
+ type Format = 'hex' | 'oklch' | 'hsl' | 'rgb'
447
+ type Variant = 'shades' | 'theme'
448
+ type Output = 'css' | 'ts' | 'scss' | 'less' | 'tailwind' | 'json' | 'json-DTFM' | 'js'
247
449
  interface ColorsDisplayProps {
248
- baseColors: string[];
249
- themeColor: string | undefined;
250
- colorsToUse: ColorData[];
251
- paletteName: string;
252
- variant: Variant;
450
+ baseColors: string[]
451
+ themeColor: string | undefined
452
+ colorsToUse: ColorData[]
453
+ paletteName: string
454
+ variant: Variant
253
455
  }
254
456
  interface ColourOutputProps {
255
- colorsToUse: ColorData[];
256
- paletteName: string;
257
- format: Format;
258
- output: Output;
259
- variant: Variant;
457
+ colorsToUse: ColorData[]
458
+ paletteName: string
459
+ format: Format
460
+ output: Output
461
+ variant: Variant
260
462
  }
261
463
  interface DesignTokensShades {
262
- [paletteName: string]: {
263
- [shade: string]: {
264
- $type: 'color';
265
- $value: string | {
266
- colorSpace: string;
267
- channels: number[];
268
- alpha: number;
269
- };
270
- };
271
- };
464
+ [paletteName: string]: {
465
+ [shade: string]: {
466
+ $type: 'color'
467
+ $value:
468
+ | string
469
+ | {
470
+ colorSpace: string
471
+ channels: number[]
472
+ alpha: number
473
+ }
474
+ }
475
+ }
272
476
  }
273
477
  interface StructuredColor {
274
- colorSpace: string;
275
- channels: number[];
276
- alpha: number;
478
+ colorSpace: string
479
+ channels: number[]
480
+ alpha: number
277
481
  }
278
482
  interface DesignTokensTheme {
279
- [paletteName: string]: {
280
- value: string | StructuredColor;
281
- type: 'color';
282
- variants: Record<string, {
283
- value: string | StructuredColor;
284
- type: 'color';
285
- }>;
286
- };
483
+ [paletteName: string]: {
484
+ value: string | StructuredColor
485
+ type: 'color'
486
+ variants: Record<
487
+ string,
488
+ {
489
+ value: string | StructuredColor
490
+ type: 'color'
491
+ }
492
+ >
493
+ }
287
494
  }
288
495
  type NavigationLink = {
289
- title: string;
290
- href: string;
291
- links?: NavigationLink[];
292
- };
496
+ title: string
497
+ href: string
498
+ links?: NavigationLink[]
499
+ }
293
500
  type NavigationSection = {
294
- title: string;
295
- links: NavigationLink[];
296
- };
501
+ title: string
502
+ links: NavigationLink[]
503
+ }
297
504
  interface PrevNextLinksProps {
298
- navigation: NavigationSection[];
505
+ navigation: NavigationSection[]
299
506
  }
300
507
  type SidebarLinkProps = {
301
- link: Link;
302
- pathname: string;
303
- onLinkClick?: React.MouseEventHandler<HTMLAnchorElement>;
304
- depth: number;
305
- };
508
+ link: Link
509
+ pathname: string
510
+ onLinkClick?: React.MouseEventHandler<HTMLAnchorElement>
511
+ depth: number
512
+ }
306
513
  type TableOfContentsItem = {
307
- id: string;
308
- children: TableOfContentsItem[];
309
- title: string;
310
- };
514
+ id: string
515
+ children: TableOfContentsItem[]
516
+ title: string
517
+ }
311
518
  type TableOfContentsProps = {
312
- tableOfContents: TableOfContentsItem[];
313
- };
519
+ tableOfContents: TableOfContentsItem[]
520
+ }
314
521
  interface TocContextType {
315
- toc: boolean;
316
- setToc: Dispatch<SetStateAction<boolean>>;
522
+ toc: boolean
523
+ setToc: Dispatch<SetStateAction<boolean>>
317
524
  }
318
525
 
319
- declare function ColorCard({ name, token, hex, rgb, hsl, oklch, format, viewMode }: ColorCardProps): react_jsx_runtime.JSX.Element;
320
-
321
- declare function Dialog({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Root>): react_jsx_runtime.JSX.Element;
322
- declare function DialogTrigger({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
323
- declare function DialogPortal({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Portal>): react_jsx_runtime.JSX.Element;
324
- declare function DialogClose({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Close>): react_jsx_runtime.JSX.Element;
325
- declare function DialogOverlay({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Overlay>): react_jsx_runtime.JSX.Element;
326
- declare function DialogContent({ className, children, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Content>): react_jsx_runtime.JSX.Element;
327
- declare function DialogHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
328
- declare function DialogFooter({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
329
- declare function DialogTitle({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Title>): react_jsx_runtime.JSX.Element;
330
- declare function DialogDescription({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Description>): react_jsx_runtime.JSX.Element;
331
-
332
- declare function Command({ className, ...props }: React$1.ComponentProps<typeof Command$1>): react_jsx_runtime.JSX.Element;
333
- declare function CommandDialog({ title, description, children, ...props }: React$1.ComponentProps<typeof Dialog> & {
334
- title?: string;
335
- description?: string;
336
- }): react_jsx_runtime.JSX.Element;
337
- declare function CommandInput({ className, ...props }: React$1.ComponentProps<typeof Command$1.Input>): react_jsx_runtime.JSX.Element;
338
- declare function CommandList({ className, ...props }: React$1.ComponentProps<typeof Command$1.List>): react_jsx_runtime.JSX.Element;
339
- declare function CommandEmpty({ ...props }: React$1.ComponentProps<typeof Command$1.Empty>): react_jsx_runtime.JSX.Element;
340
- declare function CommandGroup({ className, ...props }: React$1.ComponentProps<typeof Command$1.Group>): react_jsx_runtime.JSX.Element;
341
- declare function CommandSeparator({ className, ...props }: React$1.ComponentProps<typeof Command$1.Separator>): react_jsx_runtime.JSX.Element;
342
- declare function CommandItem({ className, ...props }: React$1.ComponentProps<typeof Command$1.Item>): react_jsx_runtime.JSX.Element;
343
- declare function CommandShortcut({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
344
-
345
- declare function ContextMenu({ ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Root>): react_jsx_runtime.JSX.Element;
346
- declare function ContextMenuTrigger({ ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
347
- declare function ContextMenuGroup({ ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Group>): react_jsx_runtime.JSX.Element;
348
- declare function ContextMenuPortal({ ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Portal>): react_jsx_runtime.JSX.Element;
349
- declare function ContextMenuSub({ ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Sub>): react_jsx_runtime.JSX.Element;
350
- declare function ContextMenuRadioGroup({ ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.RadioGroup>): react_jsx_runtime.JSX.Element;
351
- declare function ContextMenuSubTrigger({ className, inset, children, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.SubTrigger> & {
352
- inset?: boolean;
353
- }): react_jsx_runtime.JSX.Element;
354
- declare function ContextMenuSubContent({ className, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.SubContent>): react_jsx_runtime.JSX.Element;
355
- declare function ContextMenuContent({ className, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Content>): react_jsx_runtime.JSX.Element;
356
- declare function ContextMenuItem({ className, inset, variant, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Item> & {
357
- inset?: boolean;
358
- variant?: 'default' | 'destructive';
359
- }): react_jsx_runtime.JSX.Element;
360
- declare function ContextMenuCheckboxItem({ className, children, checked, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.CheckboxItem>): react_jsx_runtime.JSX.Element;
361
- declare function ContextMenuRadioItem({ className, children, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.RadioItem>): react_jsx_runtime.JSX.Element;
362
- declare function ContextMenuLabel({ className, inset, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Label> & {
363
- inset?: boolean;
364
- }): react_jsx_runtime.JSX.Element;
365
- declare function ContextMenuSeparator({ className, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Separator>): react_jsx_runtime.JSX.Element;
366
- declare function ContextMenuShortcut({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
367
-
368
- declare function Drawer({ ...props }: React$1.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime.JSX.Element;
369
- declare function DrawerTrigger({ ...props }: React$1.ComponentProps<typeof Drawer$1.Trigger>): react_jsx_runtime.JSX.Element;
370
- declare function DrawerPortal({ ...props }: React$1.ComponentProps<typeof Drawer$1.Portal>): react_jsx_runtime.JSX.Element;
371
- declare function DrawerClose({ ...props }: React$1.ComponentProps<typeof Drawer$1.Close>): react_jsx_runtime.JSX.Element;
372
- declare function DrawerOverlay({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Overlay>): react_jsx_runtime.JSX.Element;
373
- declare function DrawerContent({ className, children, ...props }: React$1.ComponentProps<typeof Drawer$1.Content>): react_jsx_runtime.JSX.Element;
374
- declare function DrawerHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
375
- declare function DrawerFooter({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
376
- declare function DrawerTitle({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Title>): react_jsx_runtime.JSX.Element;
377
- declare function DrawerDescription({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Description>): react_jsx_runtime.JSX.Element;
378
-
379
- declare function DropdownMenu({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Root>): react_jsx_runtime.JSX.Element;
380
- declare function DropdownMenuPortal({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Portal>): react_jsx_runtime.JSX.Element;
381
- declare function DropdownMenuTrigger({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
382
- declare function DropdownMenuContent({ className, sideOffset, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Content>): react_jsx_runtime.JSX.Element;
383
- declare function DropdownMenuGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Group>): react_jsx_runtime.JSX.Element;
384
- declare function DropdownMenuItem({ className, inset, variant, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Item> & {
385
- inset?: boolean;
386
- variant?: 'default' | 'destructive';
387
- }): react_jsx_runtime.JSX.Element;
388
- declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>): react_jsx_runtime.JSX.Element;
389
- declare function DropdownMenuRadioGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): react_jsx_runtime.JSX.Element;
390
- declare function DropdownMenuRadioItem({ className, children, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): react_jsx_runtime.JSX.Element;
391
- declare function DropdownMenuLabel({ className, inset, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Label> & {
392
- inset?: boolean;
393
- }): react_jsx_runtime.JSX.Element;
394
- declare function DropdownMenuSeparator({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Separator>): react_jsx_runtime.JSX.Element;
395
- declare function DropdownMenuShortcut({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
396
- declare function DropdownMenuSub({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime.JSX.Element;
397
- declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.SubTrigger> & {
398
- inset?: boolean;
399
- }): react_jsx_runtime.JSX.Element;
400
- declare function DropdownMenuSubContent({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): react_jsx_runtime.JSX.Element;
526
+ declare function ColorCard({
527
+ name,
528
+ token,
529
+ hex,
530
+ rgb,
531
+ hsl,
532
+ oklch,
533
+ format,
534
+ viewMode,
535
+ }: ColorCardProps): react_jsx_runtime.JSX.Element
536
+
537
+ declare function Dialog({
538
+ ...props
539
+ }: React$1.ComponentProps<typeof DialogPrimitive.Root>): react_jsx_runtime.JSX.Element
540
+ declare function DialogTrigger({
541
+ ...props
542
+ }: React$1.ComponentProps<typeof DialogPrimitive.Trigger>): react_jsx_runtime.JSX.Element
543
+ declare function DialogPortal({
544
+ ...props
545
+ }: React$1.ComponentProps<typeof DialogPrimitive.Portal>): react_jsx_runtime.JSX.Element
546
+ declare function DialogClose({
547
+ ...props
548
+ }: React$1.ComponentProps<typeof DialogPrimitive.Close>): react_jsx_runtime.JSX.Element
549
+ declare function DialogOverlay({
550
+ className,
551
+ ...props
552
+ }: React$1.ComponentProps<typeof DialogPrimitive.Overlay>): react_jsx_runtime.JSX.Element
553
+ declare function DialogContent({
554
+ className,
555
+ children,
556
+ ...props
557
+ }: React$1.ComponentProps<typeof DialogPrimitive.Content>): react_jsx_runtime.JSX.Element
558
+ declare function DialogHeader({
559
+ className,
560
+ ...props
561
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element
562
+ declare function DialogFooter({
563
+ className,
564
+ ...props
565
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element
566
+ declare function DialogTitle({
567
+ className,
568
+ ...props
569
+ }: React$1.ComponentProps<typeof DialogPrimitive.Title>): react_jsx_runtime.JSX.Element
570
+ declare function DialogDescription({
571
+ className,
572
+ ...props
573
+ }: React$1.ComponentProps<typeof DialogPrimitive.Description>): react_jsx_runtime.JSX.Element
574
+
575
+ declare function Command({
576
+ className,
577
+ ...props
578
+ }: React$1.ComponentProps<typeof Command$1>): react_jsx_runtime.JSX.Element
579
+ declare function CommandDialog({
580
+ title,
581
+ description,
582
+ children,
583
+ ...props
584
+ }: React$1.ComponentProps<typeof Dialog> & {
585
+ title?: string
586
+ description?: string
587
+ }): react_jsx_runtime.JSX.Element
588
+ declare function CommandInput({
589
+ className,
590
+ ...props
591
+ }: React$1.ComponentProps<typeof Command$1.Input>): react_jsx_runtime.JSX.Element
592
+ declare function CommandList({
593
+ className,
594
+ ...props
595
+ }: React$1.ComponentProps<typeof Command$1.List>): react_jsx_runtime.JSX.Element
596
+ declare function CommandEmpty({
597
+ ...props
598
+ }: React$1.ComponentProps<typeof Command$1.Empty>): react_jsx_runtime.JSX.Element
599
+ declare function CommandGroup({
600
+ className,
601
+ ...props
602
+ }: React$1.ComponentProps<typeof Command$1.Group>): react_jsx_runtime.JSX.Element
603
+ declare function CommandSeparator({
604
+ className,
605
+ ...props
606
+ }: React$1.ComponentProps<typeof Command$1.Separator>): react_jsx_runtime.JSX.Element
607
+ declare function CommandItem({
608
+ className,
609
+ ...props
610
+ }: React$1.ComponentProps<typeof Command$1.Item>): react_jsx_runtime.JSX.Element
611
+ declare function CommandShortcut({
612
+ className,
613
+ ...props
614
+ }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element
615
+
616
+ declare function ContextMenu({
617
+ ...props
618
+ }: React$1.ComponentProps<typeof ContextMenuPrimitive.Root>): react_jsx_runtime.JSX.Element
619
+ declare function ContextMenuTrigger({
620
+ ...props
621
+ }: React$1.ComponentProps<typeof ContextMenuPrimitive.Trigger>): react_jsx_runtime.JSX.Element
622
+ declare function ContextMenuGroup({
623
+ ...props
624
+ }: React$1.ComponentProps<typeof ContextMenuPrimitive.Group>): react_jsx_runtime.JSX.Element
625
+ declare function ContextMenuPortal({
626
+ ...props
627
+ }: React$1.ComponentProps<typeof ContextMenuPrimitive.Portal>): react_jsx_runtime.JSX.Element
628
+ declare function ContextMenuSub({
629
+ ...props
630
+ }: React$1.ComponentProps<typeof ContextMenuPrimitive.Sub>): react_jsx_runtime.JSX.Element
631
+ declare function ContextMenuRadioGroup({
632
+ ...props
633
+ }: React$1.ComponentProps<typeof ContextMenuPrimitive.RadioGroup>): react_jsx_runtime.JSX.Element
634
+ declare function ContextMenuSubTrigger({
635
+ className,
636
+ inset,
637
+ children,
638
+ ...props
639
+ }: React$1.ComponentProps<typeof ContextMenuPrimitive.SubTrigger> & {
640
+ inset?: boolean
641
+ }): react_jsx_runtime.JSX.Element
642
+ declare function ContextMenuSubContent({
643
+ className,
644
+ ...props
645
+ }: React$1.ComponentProps<typeof ContextMenuPrimitive.SubContent>): react_jsx_runtime.JSX.Element
646
+ declare function ContextMenuContent({
647
+ className,
648
+ ...props
649
+ }: React$1.ComponentProps<typeof ContextMenuPrimitive.Content>): react_jsx_runtime.JSX.Element
650
+ declare function ContextMenuItem({
651
+ className,
652
+ inset,
653
+ variant,
654
+ ...props
655
+ }: React$1.ComponentProps<typeof ContextMenuPrimitive.Item> & {
656
+ inset?: boolean
657
+ variant?: 'default' | 'destructive'
658
+ }): react_jsx_runtime.JSX.Element
659
+ declare function ContextMenuCheckboxItem({
660
+ className,
661
+ children,
662
+ checked,
663
+ ...props
664
+ }: React$1.ComponentProps<typeof ContextMenuPrimitive.CheckboxItem>): react_jsx_runtime.JSX.Element
665
+ declare function ContextMenuRadioItem({
666
+ className,
667
+ children,
668
+ ...props
669
+ }: React$1.ComponentProps<typeof ContextMenuPrimitive.RadioItem>): react_jsx_runtime.JSX.Element
670
+ declare function ContextMenuLabel({
671
+ className,
672
+ inset,
673
+ ...props
674
+ }: React$1.ComponentProps<typeof ContextMenuPrimitive.Label> & {
675
+ inset?: boolean
676
+ }): react_jsx_runtime.JSX.Element
677
+ declare function ContextMenuSeparator({
678
+ className,
679
+ ...props
680
+ }: React$1.ComponentProps<typeof ContextMenuPrimitive.Separator>): react_jsx_runtime.JSX.Element
681
+ declare function ContextMenuShortcut({
682
+ className,
683
+ ...props
684
+ }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element
685
+
686
+ declare function Drawer({
687
+ ...props
688
+ }: React$1.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime.JSX.Element
689
+ declare function DrawerTrigger({
690
+ ...props
691
+ }: React$1.ComponentProps<typeof Drawer$1.Trigger>): react_jsx_runtime.JSX.Element
692
+ declare function DrawerPortal({
693
+ ...props
694
+ }: React$1.ComponentProps<typeof Drawer$1.Portal>): react_jsx_runtime.JSX.Element
695
+ declare function DrawerClose({
696
+ ...props
697
+ }: React$1.ComponentProps<typeof Drawer$1.Close>): react_jsx_runtime.JSX.Element
698
+ declare function DrawerOverlay({
699
+ className,
700
+ ...props
701
+ }: React$1.ComponentProps<typeof Drawer$1.Overlay>): react_jsx_runtime.JSX.Element
702
+ declare function DrawerContent({
703
+ className,
704
+ children,
705
+ ...props
706
+ }: React$1.ComponentProps<typeof Drawer$1.Content>): react_jsx_runtime.JSX.Element
707
+ declare function DrawerHeader({
708
+ className,
709
+ ...props
710
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element
711
+ declare function DrawerFooter({
712
+ className,
713
+ ...props
714
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element
715
+ declare function DrawerTitle({
716
+ className,
717
+ ...props
718
+ }: React$1.ComponentProps<typeof Drawer$1.Title>): react_jsx_runtime.JSX.Element
719
+ declare function DrawerDescription({
720
+ className,
721
+ ...props
722
+ }: React$1.ComponentProps<typeof Drawer$1.Description>): react_jsx_runtime.JSX.Element
723
+
724
+ declare function DropdownMenu({
725
+ ...props
726
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Root>): react_jsx_runtime.JSX.Element
727
+ declare function DropdownMenuPortal({
728
+ ...props
729
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Portal>): react_jsx_runtime.JSX.Element
730
+ declare function DropdownMenuTrigger({
731
+ ...props
732
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime.JSX.Element
733
+ declare function DropdownMenuContent({
734
+ className,
735
+ sideOffset,
736
+ ...props
737
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Content>): react_jsx_runtime.JSX.Element
738
+ declare function DropdownMenuGroup({
739
+ ...props
740
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Group>): react_jsx_runtime.JSX.Element
741
+ declare function DropdownMenuItem({
742
+ className,
743
+ inset,
744
+ variant,
745
+ ...props
746
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Item> & {
747
+ inset?: boolean
748
+ variant?: 'default' | 'destructive'
749
+ }): react_jsx_runtime.JSX.Element
750
+ declare function DropdownMenuCheckboxItem({
751
+ className,
752
+ children,
753
+ checked,
754
+ ...props
755
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>): react_jsx_runtime.JSX.Element
756
+ declare function DropdownMenuRadioGroup({
757
+ ...props
758
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): react_jsx_runtime.JSX.Element
759
+ declare function DropdownMenuRadioItem({
760
+ className,
761
+ children,
762
+ ...props
763
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): react_jsx_runtime.JSX.Element
764
+ declare function DropdownMenuLabel({
765
+ className,
766
+ inset,
767
+ ...props
768
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Label> & {
769
+ inset?: boolean
770
+ }): react_jsx_runtime.JSX.Element
771
+ declare function DropdownMenuSeparator({
772
+ className,
773
+ ...props
774
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Separator>): react_jsx_runtime.JSX.Element
775
+ declare function DropdownMenuShortcut({
776
+ className,
777
+ ...props
778
+ }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element
779
+ declare function DropdownMenuSub({
780
+ ...props
781
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime.JSX.Element
782
+ declare function DropdownMenuSubTrigger({
783
+ className,
784
+ inset,
785
+ children,
786
+ ...props
787
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.SubTrigger> & {
788
+ inset?: boolean
789
+ }): react_jsx_runtime.JSX.Element
790
+ declare function DropdownMenuSubContent({
791
+ className,
792
+ ...props
793
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): react_jsx_runtime.JSX.Element
401
794
 
402
795
  interface DynamicFaviconProps {
403
- lightModeFavicon: string;
404
- darkModeFavicon: string;
796
+ lightModeFavicon: string
797
+ darkModeFavicon: string
405
798
  }
406
- declare function DynamicFavicon({ lightModeFavicon, darkModeFavicon }: DynamicFaviconProps): null;
799
+ declare function DynamicFavicon({ lightModeFavicon, darkModeFavicon }: DynamicFaviconProps): null
407
800
 
408
- declare function FooterSocialLink({ href, icon: Icon, children, }: {
409
- href: string;
801
+ declare function FooterSocialLink({
802
+ href,
803
+ icon: Icon,
804
+ children,
805
+ }: {
806
+ href: string
807
+ icon: React.ComponentType<{
808
+ className?: string
809
+ }>
810
+ children: React.ReactNode
811
+ }): react_jsx_runtime.JSX.Element
812
+ declare function FooterAcknowledgement(): react_jsx_runtime.JSX.Element
813
+ declare function FooterSmallPrint({
814
+ socialLinks,
815
+ department,
816
+ }: {
817
+ socialLinks?: Array<{
818
+ name: string
819
+ href: string
820
+ icon: React.ComponentType<{
821
+ className?: string
822
+ }>
823
+ }>
824
+ department?: string
825
+ }): react_jsx_runtime.JSX.Element
826
+ declare function FooterLegalLinks({
827
+ legalLinks,
828
+ }: {
829
+ legalLinks: Array<{
830
+ name: string
831
+ href: string
832
+ }>
833
+ }): react_jsx_runtime.JSX.Element
834
+ declare function Footer({
835
+ legalLinks,
836
+ department,
837
+ socialLinks,
838
+ }: {
839
+ legalLinks: Array<{
840
+ name: string
841
+ href: string
842
+ }>
843
+ department?: string
844
+ socialLinks?: Array<{
845
+ name: string
846
+ href: string
410
847
  icon: React.ComponentType<{
411
- className?: string;
412
- }>;
413
- children: React.ReactNode;
414
- }): react_jsx_runtime.JSX.Element;
415
- declare function FooterAcknowledgement(): react_jsx_runtime.JSX.Element;
416
- declare function FooterSmallPrint({ socialLinks, department, }: {
417
- socialLinks?: Array<{
418
- name: string;
419
- href: string;
420
- icon: React.ComponentType<{
421
- className?: string;
422
- }>;
423
- }>;
424
- department?: string;
425
- }): react_jsx_runtime.JSX.Element;
426
- declare function FooterLegalLinks({ legalLinks }: {
427
- legalLinks: Array<{
428
- name: string;
429
- href: string;
430
- }>;
431
- }): react_jsx_runtime.JSX.Element;
432
- declare function Footer({ legalLinks, department, socialLinks, }: {
433
- legalLinks: Array<{
434
- name: string;
435
- href: string;
436
- }>;
437
- department?: string;
438
- socialLinks?: Array<{
439
- name: string;
440
- href: string;
441
- icon: React.ComponentType<{
442
- className?: string;
443
- }>;
444
- }>;
445
- }): react_jsx_runtime.JSX.Element;
446
-
447
- declare function FormatToggle({ format, setFormat }: FormatToggleProps): react_jsx_runtime.JSX.Element;
848
+ className?: string
849
+ }>
850
+ }>
851
+ }): react_jsx_runtime.JSX.Element
852
+
853
+ declare function FormatToggle({
854
+ format,
855
+ setFormat,
856
+ }: FormatToggleProps): react_jsx_runtime.JSX.Element
448
857
 
449
858
  declare const Icons: {
450
- account_circle: (props: IconProps) => react_jsx_runtime.JSX.Element;
451
- add: (props: IconProps) => react_jsx_runtime.JSX.Element;
452
- attach_file: (props: IconProps) => react_jsx_runtime.JSX.Element;
453
- cancel: (props: IconProps) => react_jsx_runtime.JSX.Element;
454
- check_circle: (props: IconProps) => react_jsx_runtime.JSX.Element;
455
- check: (props: IconProps) => react_jsx_runtime.JSX.Element;
456
- chevron_down: (props: IconProps) => react_jsx_runtime.JSX.Element;
457
- chevron_left: (props: IconProps) => react_jsx_runtime.JSX.Element;
458
- chevron_right: (props: IconProps) => react_jsx_runtime.JSX.Element;
459
- chevron_up: (props: IconProps) => react_jsx_runtime.JSX.Element;
460
- close: (props: IconProps) => react_jsx_runtime.JSX.Element;
461
- collapse_all: (props: IconProps) => react_jsx_runtime.JSX.Element;
462
- computer: (props: IconProps) => react_jsx_runtime.JSX.Element;
463
- copy: (props: IconProps) => react_jsx_runtime.JSX.Element;
464
- dark_mode: (props: IconProps) => react_jsx_runtime.JSX.Element;
465
- dock_to_left: (props: IconProps) => react_jsx_runtime.JSX.Element;
466
- dock_to_right: (props: IconProps) => react_jsx_runtime.JSX.Element;
467
- delete: (props: IconProps) => react_jsx_runtime.JSX.Element;
468
- desktop: (props: IconProps) => react_jsx_runtime.JSX.Element;
469
- display_settings: (props: IconProps) => react_jsx_runtime.JSX.Element;
470
- double_arrow_left: (props: IconProps) => react_jsx_runtime.JSX.Element;
471
- double_arrow_right: (props: IconProps) => react_jsx_runtime.JSX.Element;
472
- download: (props: IconProps) => react_jsx_runtime.JSX.Element;
473
- east: (props: IconProps) => react_jsx_runtime.JSX.Element;
474
- error: (props: IconProps) => react_jsx_runtime.JSX.Element;
475
- exclamation: (props: IconProps) => react_jsx_runtime.JSX.Element;
476
- grid_view: (props: IconProps) => react_jsx_runtime.JSX.Element;
477
- help: (props: IconProps) => react_jsx_runtime.JSX.Element;
478
- info: (props: IconProps) => react_jsx_runtime.JSX.Element;
479
- light_mode: (props: IconProps) => react_jsx_runtime.JSX.Element;
480
- link: (props: IconProps) => react_jsx_runtime.JSX.Element;
481
- list: (props: IconProps) => react_jsx_runtime.JSX.Element;
482
- login: (props: IconProps) => react_jsx_runtime.JSX.Element;
483
- logout: (props: IconProps) => react_jsx_runtime.JSX.Element;
484
- menu: (props: IconProps) => react_jsx_runtime.JSX.Element;
485
- more_horiz: (props: IconProps) => react_jsx_runtime.JSX.Element;
486
- more_vert: (props: IconProps) => react_jsx_runtime.JSX.Element;
487
- north: (props: IconProps) => react_jsx_runtime.JSX.Element;
488
- open_in_new: (props: IconProps) => react_jsx_runtime.JSX.Element;
489
- palette: (props: IconProps) => react_jsx_runtime.JSX.Element;
490
- print: (props: IconProps) => react_jsx_runtime.JSX.Element;
491
- progress_activity: (props: IconProps) => react_jsx_runtime.JSX.Element;
492
- remove: (props: IconProps) => react_jsx_runtime.JSX.Element;
493
- search: (props: IconProps) => react_jsx_runtime.JSX.Element;
494
- settings_brightness: (props: IconProps) => react_jsx_runtime.JSX.Element;
495
- share: (props: IconProps) => react_jsx_runtime.JSX.Element;
496
- side_navigation: (props: IconProps) => react_jsx_runtime.JSX.Element;
497
- south: (props: IconProps) => react_jsx_runtime.JSX.Element;
498
- unfold_less: (props: IconProps) => react_jsx_runtime.JSX.Element;
499
- unfold_more: (props: IconProps) => react_jsx_runtime.JSX.Element;
500
- upload: (props: IconProps) => react_jsx_runtime.JSX.Element;
501
- west: (props: IconProps) => react_jsx_runtime.JSX.Element;
502
- };
503
-
504
- declare function Input({ className, type, ...props }: React$1.ComponentProps<'input'>): react_jsx_runtime.JSX.Element;
505
-
506
- declare function Label({ className, ...props }: React$1.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime.JSX.Element;
507
-
508
- declare function Logo(props: React.ComponentPropsWithoutRef<'svg'>): react_jsx_runtime.JSX.Element;
509
-
510
- declare function Masthead(): react_jsx_runtime.JSX.Element;
511
-
512
- declare function Menubar({ className, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Root>): react_jsx_runtime.JSX.Element;
513
- declare function MenubarMenu({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Menu>): react_jsx_runtime.JSX.Element;
514
- declare function MenubarGroup({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Group>): react_jsx_runtime.JSX.Element;
515
- declare function MenubarPortal({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Portal>): react_jsx_runtime.JSX.Element;
516
- declare function MenubarRadioGroup({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.RadioGroup>): react_jsx_runtime.JSX.Element;
517
- declare function MenubarTrigger({ className, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
518
- declare function MenubarContent({ className, align, alignOffset, sideOffset, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Content>): react_jsx_runtime.JSX.Element;
519
- declare function MenubarItem({ className, inset, variant, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Item> & {
520
- inset?: boolean;
521
- variant?: 'default' | 'destructive';
522
- }): react_jsx_runtime.JSX.Element;
523
- declare function MenubarCheckboxItem({ className, children, checked, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.CheckboxItem>): react_jsx_runtime.JSX.Element;
524
- declare function MenubarRadioItem({ className, children, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.RadioItem>): react_jsx_runtime.JSX.Element;
525
- declare function MenubarLabel({ className, inset, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Label> & {
526
- inset?: boolean;
527
- }): react_jsx_runtime.JSX.Element;
528
- declare function MenubarSeparator({ className, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Separator>): react_jsx_runtime.JSX.Element;
529
- declare function MenubarShortcut({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
530
- declare function MenubarSub({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Sub>): react_jsx_runtime.JSX.Element;
531
- declare function MenubarSubTrigger({ className, inset, children, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.SubTrigger> & {
532
- inset?: boolean;
533
- }): react_jsx_runtime.JSX.Element;
534
- declare function MenubarSubContent({ className, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.SubContent>): react_jsx_runtime.JSX.Element;
535
-
536
- declare function Navigation({ className, onLinkClick, navigation, }: {
537
- className?: string;
538
- onLinkClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
539
- navigation: NavigationSection[];
540
- }): react_jsx_runtime.JSX.Element;
541
-
542
- declare function NavigationMenu({ className, children, viewport, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Root> & {
543
- viewport?: boolean;
544
- }): react_jsx_runtime.JSX.Element;
545
- declare function NavigationMenuList({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.List>): react_jsx_runtime.JSX.Element;
546
- declare function NavigationMenuItem({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Item>): react_jsx_runtime.JSX.Element;
547
- declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types.ClassProp | undefined) => string;
548
- declare function NavigationMenuTrigger({ className, children, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
549
- declare function NavigationMenuContent({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Content>): react_jsx_runtime.JSX.Element;
550
- declare function NavigationMenuViewport({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Viewport>): react_jsx_runtime.JSX.Element;
551
- declare function NavigationMenuLink({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Link>): react_jsx_runtime.JSX.Element;
552
- declare function NavigationMenuIndicator({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Indicator>): react_jsx_runtime.JSX.Element;
553
-
554
- declare function Pagination({ className, ...props }: React$1.ComponentProps<'nav'>): react_jsx_runtime.JSX.Element;
555
- declare function PaginationContent({ className, ...props }: React$1.ComponentProps<'ul'>): react_jsx_runtime.JSX.Element;
556
- declare function PaginationItem({ ...props }: React$1.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
859
+ account_circle: (props: IconProps) => react_jsx_runtime.JSX.Element
860
+ add: (props: IconProps) => react_jsx_runtime.JSX.Element
861
+ attach_file: (props: IconProps) => react_jsx_runtime.JSX.Element
862
+ calendar_month: (props: IconProps) => react_jsx_runtime.JSX.Element
863
+ calendar_today: (props: IconProps) => react_jsx_runtime.JSX.Element
864
+ cancel: (props: IconProps) => react_jsx_runtime.JSX.Element
865
+ circle: (props: IconProps) => react_jsx_runtime.JSX.Element
866
+ contrast: (props: IconProps) => react_jsx_runtime.JSX.Element
867
+ check_circle: (props: IconProps) => react_jsx_runtime.JSX.Element
868
+ check: (props: IconProps) => react_jsx_runtime.JSX.Element
869
+ chevron_down: (props: IconProps) => react_jsx_runtime.JSX.Element
870
+ chevron_left: (props: IconProps) => react_jsx_runtime.JSX.Element
871
+ chevron_right: (props: IconProps) => react_jsx_runtime.JSX.Element
872
+ chevron_up: (props: IconProps) => react_jsx_runtime.JSX.Element
873
+ close: (props: IconProps) => react_jsx_runtime.JSX.Element
874
+ collapse_all: (props: IconProps) => react_jsx_runtime.JSX.Element
875
+ computer: (props: IconProps) => react_jsx_runtime.JSX.Element
876
+ copy: (props: IconProps) => react_jsx_runtime.JSX.Element
877
+ dark_mode: (props: IconProps) => react_jsx_runtime.JSX.Element
878
+ dock_to_left: (props: IconProps) => react_jsx_runtime.JSX.Element
879
+ dock_to_right: (props: IconProps) => react_jsx_runtime.JSX.Element
880
+ delete: (props: IconProps) => react_jsx_runtime.JSX.Element
881
+ desktop: (props: IconProps) => react_jsx_runtime.JSX.Element
882
+ display_settings: (props: IconProps) => react_jsx_runtime.JSX.Element
883
+ double_arrow_left: (props: IconProps) => react_jsx_runtime.JSX.Element
884
+ double_arrow_right: (props: IconProps) => react_jsx_runtime.JSX.Element
885
+ download: (props: IconProps) => react_jsx_runtime.JSX.Element
886
+ drag_indicator: (props: IconProps) => react_jsx_runtime.JSX.Element
887
+ east: (props: IconProps) => react_jsx_runtime.JSX.Element
888
+ error: (props: IconProps) => react_jsx_runtime.JSX.Element
889
+ exclamation: (props: IconProps) => react_jsx_runtime.JSX.Element
890
+ format_align_center: (props: IconProps) => react_jsx_runtime.JSX.Element
891
+ format_align_justify: (props: IconProps) => react_jsx_runtime.JSX.Element
892
+ format_align_left: (props: IconProps) => react_jsx_runtime.JSX.Element
893
+ format_align_right: (props: IconProps) => react_jsx_runtime.JSX.Element
894
+ format_bold: (props: IconProps) => react_jsx_runtime.JSX.Element
895
+ format_color_text: (props: IconProps) => react_jsx_runtime.JSX.Element
896
+ format_h1: (props: IconProps) => react_jsx_runtime.JSX.Element
897
+ format_h2: (props: IconProps) => react_jsx_runtime.JSX.Element
898
+ format_h3: (props: IconProps) => react_jsx_runtime.JSX.Element
899
+ format_h4: (props: IconProps) => react_jsx_runtime.JSX.Element
900
+ format_italic: (props: IconProps) => react_jsx_runtime.JSX.Element
901
+ format_list_bulleted: (props: IconProps) => react_jsx_runtime.JSX.Element
902
+ format_list_numbered: (props: IconProps) => react_jsx_runtime.JSX.Element
903
+ format_quote: (props: IconProps) => react_jsx_runtime.JSX.Element
904
+ format_size: (props: IconProps) => react_jsx_runtime.JSX.Element
905
+ format_underlined: (props: IconProps) => react_jsx_runtime.JSX.Element
906
+ grid_on: (props: IconProps) => react_jsx_runtime.JSX.Element
907
+ grid_view: (props: IconProps) => react_jsx_runtime.JSX.Element
908
+ help: (props: IconProps) => react_jsx_runtime.JSX.Element
909
+ info: (props: IconProps) => react_jsx_runtime.JSX.Element
910
+ light_mode: (props: IconProps) => react_jsx_runtime.JSX.Element
911
+ link: (props: IconProps) => react_jsx_runtime.JSX.Element
912
+ list: (props: IconProps) => react_jsx_runtime.JSX.Element
913
+ login: (props: IconProps) => react_jsx_runtime.JSX.Element
914
+ logout: (props: IconProps) => react_jsx_runtime.JSX.Element
915
+ mail: (props: IconProps) => react_jsx_runtime.JSX.Element
916
+ menu: (props: IconProps) => react_jsx_runtime.JSX.Element
917
+ more_horiz: (props: IconProps) => react_jsx_runtime.JSX.Element
918
+ more_vert: (props: IconProps) => react_jsx_runtime.JSX.Element
919
+ north: (props: IconProps) => react_jsx_runtime.JSX.Element
920
+ notifications: (props: IconProps) => react_jsx_runtime.JSX.Element
921
+ open_in_new: (props: IconProps) => react_jsx_runtime.JSX.Element
922
+ palette: (props: IconProps) => react_jsx_runtime.JSX.Element
923
+ person: (props: IconProps) => react_jsx_runtime.JSX.Element
924
+ print: (props: IconProps) => react_jsx_runtime.JSX.Element
925
+ progress_activity: (props: IconProps) => react_jsx_runtime.JSX.Element
926
+ remove: (props: IconProps) => react_jsx_runtime.JSX.Element
927
+ search: (props: IconProps) => react_jsx_runtime.JSX.Element
928
+ sentiment_dissatisfied: (props: IconProps) => react_jsx_runtime.JSX.Element
929
+ sentiment_neutral: (props: IconProps) => react_jsx_runtime.JSX.Element
930
+ sentiment_satisfied: (props: IconProps) => react_jsx_runtime.JSX.Element
931
+ sentiment_very_dissatisfied: (props: IconProps) => react_jsx_runtime.JSX.Element
932
+ sentiment_very_satisfied: (props: IconProps) => react_jsx_runtime.JSX.Element
933
+ settings: (props: IconProps) => react_jsx_runtime.JSX.Element
934
+ settings_brightness: (props: IconProps) => react_jsx_runtime.JSX.Element
935
+ share: (props: IconProps) => react_jsx_runtime.JSX.Element
936
+ side_navigation: (props: IconProps) => react_jsx_runtime.JSX.Element
937
+ south: (props: IconProps) => react_jsx_runtime.JSX.Element
938
+ toc: (props: IconProps) => react_jsx_runtime.JSX.Element
939
+ unfold_less: (props: IconProps) => react_jsx_runtime.JSX.Element
940
+ unfold_more: (props: IconProps) => react_jsx_runtime.JSX.Element
941
+ upload: (props: IconProps) => react_jsx_runtime.JSX.Element
942
+ view_column: (props: IconProps) => react_jsx_runtime.JSX.Element
943
+ view_list: (props: IconProps) => react_jsx_runtime.JSX.Element
944
+ warning: (props: IconProps) => react_jsx_runtime.JSX.Element
945
+ west: (props: IconProps) => react_jsx_runtime.JSX.Element
946
+ }
947
+
948
+ declare function Input({
949
+ className,
950
+ type,
951
+ ...props
952
+ }: React$1.ComponentProps<'input'>): react_jsx_runtime.JSX.Element
953
+
954
+ declare function Label({
955
+ className,
956
+ ...props
957
+ }: React$1.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime.JSX.Element
958
+
959
+ declare function Logo(props: React.ComponentPropsWithoutRef<'svg'>): react_jsx_runtime.JSX.Element
960
+
961
+ declare function Masthead(): react_jsx_runtime.JSX.Element
962
+
963
+ declare function Menubar({
964
+ className,
965
+ ...props
966
+ }: React$1.ComponentProps<typeof MenubarPrimitive.Root>): react_jsx_runtime.JSX.Element
967
+ declare function MenubarMenu({
968
+ ...props
969
+ }: React$1.ComponentProps<typeof MenubarPrimitive.Menu>): react_jsx_runtime.JSX.Element
970
+ declare function MenubarGroup({
971
+ ...props
972
+ }: React$1.ComponentProps<typeof MenubarPrimitive.Group>): react_jsx_runtime.JSX.Element
973
+ declare function MenubarPortal({
974
+ ...props
975
+ }: React$1.ComponentProps<typeof MenubarPrimitive.Portal>): react_jsx_runtime.JSX.Element
976
+ declare function MenubarRadioGroup({
977
+ ...props
978
+ }: React$1.ComponentProps<typeof MenubarPrimitive.RadioGroup>): react_jsx_runtime.JSX.Element
979
+ declare function MenubarTrigger({
980
+ className,
981
+ ...props
982
+ }: React$1.ComponentProps<typeof MenubarPrimitive.Trigger>): react_jsx_runtime.JSX.Element
983
+ declare function MenubarContent({
984
+ className,
985
+ align,
986
+ alignOffset,
987
+ sideOffset,
988
+ ...props
989
+ }: React$1.ComponentProps<typeof MenubarPrimitive.Content>): react_jsx_runtime.JSX.Element
990
+ declare function MenubarItem({
991
+ className,
992
+ inset,
993
+ variant,
994
+ ...props
995
+ }: React$1.ComponentProps<typeof MenubarPrimitive.Item> & {
996
+ inset?: boolean
997
+ variant?: 'default' | 'destructive'
998
+ }): react_jsx_runtime.JSX.Element
999
+ declare function MenubarCheckboxItem({
1000
+ className,
1001
+ children,
1002
+ checked,
1003
+ ...props
1004
+ }: React$1.ComponentProps<typeof MenubarPrimitive.CheckboxItem>): react_jsx_runtime.JSX.Element
1005
+ declare function MenubarRadioItem({
1006
+ className,
1007
+ children,
1008
+ ...props
1009
+ }: React$1.ComponentProps<typeof MenubarPrimitive.RadioItem>): react_jsx_runtime.JSX.Element
1010
+ declare function MenubarLabel({
1011
+ className,
1012
+ inset,
1013
+ ...props
1014
+ }: React$1.ComponentProps<typeof MenubarPrimitive.Label> & {
1015
+ inset?: boolean
1016
+ }): react_jsx_runtime.JSX.Element
1017
+ declare function MenubarSeparator({
1018
+ className,
1019
+ ...props
1020
+ }: React$1.ComponentProps<typeof MenubarPrimitive.Separator>): react_jsx_runtime.JSX.Element
1021
+ declare function MenubarShortcut({
1022
+ className,
1023
+ ...props
1024
+ }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element
1025
+ declare function MenubarSub({
1026
+ ...props
1027
+ }: React$1.ComponentProps<typeof MenubarPrimitive.Sub>): react_jsx_runtime.JSX.Element
1028
+ declare function MenubarSubTrigger({
1029
+ className,
1030
+ inset,
1031
+ children,
1032
+ ...props
1033
+ }: React$1.ComponentProps<typeof MenubarPrimitive.SubTrigger> & {
1034
+ inset?: boolean
1035
+ }): react_jsx_runtime.JSX.Element
1036
+ declare function MenubarSubContent({
1037
+ className,
1038
+ ...props
1039
+ }: React$1.ComponentProps<typeof MenubarPrimitive.SubContent>): react_jsx_runtime.JSX.Element
1040
+
1041
+ declare function Navigation({
1042
+ className,
1043
+ onLinkClick,
1044
+ navigation,
1045
+ }: {
1046
+ className?: string
1047
+ onLinkClick?: React__default.MouseEventHandler<HTMLAnchorElement>
1048
+ navigation: NavigationSection[]
1049
+ }): react_jsx_runtime.JSX.Element
1050
+
1051
+ declare function NavigationMenu({
1052
+ className,
1053
+ children,
1054
+ viewport,
1055
+ ...props
1056
+ }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Root> & {
1057
+ viewport?: boolean
1058
+ }): react_jsx_runtime.JSX.Element
1059
+ declare function NavigationMenuList({
1060
+ className,
1061
+ ...props
1062
+ }: React$1.ComponentProps<typeof NavigationMenuPrimitive.List>): react_jsx_runtime.JSX.Element
1063
+ declare function NavigationMenuItem({
1064
+ className,
1065
+ ...props
1066
+ }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Item>): react_jsx_runtime.JSX.Element
1067
+ declare const navigationMenuTriggerStyle: (
1068
+ props?: class_variance_authority_types.ClassProp | undefined,
1069
+ ) => string
1070
+ declare function NavigationMenuTrigger({
1071
+ className,
1072
+ children,
1073
+ ...props
1074
+ }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Trigger>): react_jsx_runtime.JSX.Element
1075
+ declare function NavigationMenuContent({
1076
+ className,
1077
+ ...props
1078
+ }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Content>): react_jsx_runtime.JSX.Element
1079
+ declare function NavigationMenuViewport({
1080
+ className,
1081
+ ...props
1082
+ }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Viewport>): react_jsx_runtime.JSX.Element
1083
+ declare function NavigationMenuLink({
1084
+ className,
1085
+ ...props
1086
+ }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Link>): react_jsx_runtime.JSX.Element
1087
+ declare function NavigationMenuIndicator({
1088
+ className,
1089
+ ...props
1090
+ }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Indicator>): react_jsx_runtime.JSX.Element
1091
+
1092
+ declare function Pagination({
1093
+ className,
1094
+ ...props
1095
+ }: React$1.ComponentProps<'nav'>): react_jsx_runtime.JSX.Element
1096
+ declare function PaginationContent({
1097
+ className,
1098
+ ...props
1099
+ }: React$1.ComponentProps<'ul'>): react_jsx_runtime.JSX.Element
1100
+ declare function PaginationItem({
1101
+ ...props
1102
+ }: React$1.ComponentProps<'li'>): react_jsx_runtime.JSX.Element
557
1103
  type PaginationLinkProps = {
558
- isActive?: boolean;
559
- } & Pick<React$1.ComponentProps<typeof Button>, 'size'> & React$1.ComponentProps<'a'>;
560
- declare function PaginationLink({ className, isActive, size, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
561
- declare function PaginationPrevious({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
562
- declare function PaginationNext({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
563
- declare function PaginationEllipsis({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
564
-
565
- declare function Popover({ ...props }: React$1.ComponentProps<typeof PopoverPrimitive.Root>): react_jsx_runtime.JSX.Element;
566
- declare function PopoverTrigger({ ...props }: React$1.ComponentProps<typeof PopoverPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
567
- declare function PopoverContent({ className, align, sideOffset, ...props }: React$1.ComponentProps<typeof PopoverPrimitive.Content>): react_jsx_runtime.JSX.Element;
568
- declare function PopoverAnchor({ ...props }: React$1.ComponentProps<typeof PopoverPrimitive.Anchor>): react_jsx_runtime.JSX.Element;
569
-
570
- declare function PrevNextLinksPageLink({ title, href, dir, ...props }: Omit<React.ComponentPropsWithoutRef<'div'>, 'dir' | 'title'> & {
571
- title: string;
572
- href: string;
573
- dir?: 'previous' | 'next';
574
- }): react_jsx_runtime.JSX.Element;
575
- declare function PrevNextLinks({ navigation }: PrevNextLinksProps): react_jsx_runtime.JSX.Element | null;
576
-
577
- declare function Progress({ className, value, ...props }: React$1.ComponentProps<typeof ProgressPrimitive.Root>): react_jsx_runtime.JSX.Element;
578
-
579
- declare function RadioGroup({ className, ...props }: React$1.ComponentProps<typeof RadioGroupPrimitive.Root>): react_jsx_runtime.JSX.Element;
580
- declare function RadioGroupItem({ className, ...props }: React$1.ComponentProps<typeof RadioGroupPrimitive.Item>): react_jsx_runtime.JSX.Element;
581
-
582
- declare function ResizablePanelGroup({ className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>): react_jsx_runtime.JSX.Element;
583
- declare function ResizablePanel({ ...props }: React$1.ComponentProps<typeof ResizablePrimitive.Panel>): react_jsx_runtime.JSX.Element;
584
- declare function ResizableHandle({ withHandle, className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {
585
- withHandle?: boolean;
586
- }): react_jsx_runtime.JSX.Element;
587
-
588
- declare function ScrollArea({ className, children, ...props }: React$1.ComponentProps<typeof ScrollAreaPrimitive.Root>): react_jsx_runtime.JSX.Element;
589
- declare function ScrollBar({ className, orientation, ...props }: React$1.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): react_jsx_runtime.JSX.Element;
590
-
591
- declare function Select({ ...props }: React$1.ComponentProps<typeof SelectPrimitive.Root>): react_jsx_runtime.JSX.Element;
592
- declare function SelectGroup({ ...props }: React$1.ComponentProps<typeof SelectPrimitive.Group>): react_jsx_runtime.JSX.Element;
593
- declare function SelectValue({ ...props }: React$1.ComponentProps<typeof SelectPrimitive.Value>): react_jsx_runtime.JSX.Element;
594
- declare function SelectTrigger({ className, size, children, ...props }: React$1.ComponentProps<typeof SelectPrimitive.Trigger> & {
595
- size?: 'sm' | 'default';
596
- }): react_jsx_runtime.JSX.Element;
597
- declare function SelectContent({ className, children, position, ...props }: React$1.ComponentProps<typeof SelectPrimitive.Content>): react_jsx_runtime.JSX.Element;
598
- declare function SelectLabel({ className, ...props }: React$1.ComponentProps<typeof SelectPrimitive.Label>): react_jsx_runtime.JSX.Element;
599
- declare function SelectItem({ className, children, ...props }: React$1.ComponentProps<typeof SelectPrimitive.Item>): react_jsx_runtime.JSX.Element;
600
- declare function SelectSeparator({ className, ...props }: React$1.ComponentProps<typeof SelectPrimitive.Separator>): react_jsx_runtime.JSX.Element;
601
- declare function SelectScrollUpButton({ className, ...props }: React$1.ComponentProps<typeof SelectPrimitive.ScrollUpButton>): react_jsx_runtime.JSX.Element;
602
- declare function SelectScrollDownButton({ className, ...props }: React$1.ComponentProps<typeof SelectPrimitive.ScrollDownButton>): react_jsx_runtime.JSX.Element;
603
-
604
- declare function Separator({ className, orientation, decorative, ...props }: React$1.ComponentProps<typeof SeparatorPrimitive.Root>): react_jsx_runtime.JSX.Element;
605
-
606
- declare function Sheet({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Root>): react_jsx_runtime.JSX.Element;
607
- declare function SheetTrigger({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
608
- declare function SheetClose({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Close>): react_jsx_runtime.JSX.Element;
609
- declare function SheetContent({ className, children, side, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Content> & {
610
- side?: 'top' | 'right' | 'bottom' | 'left';
611
- }): react_jsx_runtime.JSX.Element;
612
- declare function SheetHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
613
- declare function SheetFooter({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
614
- declare function SheetTitle({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Title>): react_jsx_runtime.JSX.Element;
615
- declare function SheetDescription({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Description>): react_jsx_runtime.JSX.Element;
616
-
617
- declare function SidebarNavigation({ className, onLinkClick, navigation, }: {
618
- className?: string;
619
- onLinkClick?: React$1.MouseEventHandler<HTMLAnchorElement>;
620
- navigation: NavigationSection[];
621
- }): react_jsx_runtime.JSX.Element;
622
- declare function SidebarLink({ link, pathname, onLinkClick, depth }: SidebarLinkProps): react_jsx_runtime.JSX.Element;
623
-
624
- declare function Skeleton({ className, ...props }: React.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
625
-
626
- declare function Slider({ className, defaultValue, value, min, max, ...props }: React$1.ComponentProps<typeof SliderPrimitive.Root>): react_jsx_runtime.JSX.Element;
1104
+ isActive?: boolean
1105
+ } & Pick<React$1.ComponentProps<typeof Button>, 'size'> &
1106
+ React$1.ComponentProps<'a'>
1107
+ declare function PaginationLink({
1108
+ className,
1109
+ isActive,
1110
+ size,
1111
+ ...props
1112
+ }: PaginationLinkProps): react_jsx_runtime.JSX.Element
1113
+ declare function PaginationPrevious({
1114
+ className,
1115
+ ...props
1116
+ }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element
1117
+ declare function PaginationNext({
1118
+ className,
1119
+ ...props
1120
+ }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element
1121
+ declare function PaginationEllipsis({
1122
+ className,
1123
+ ...props
1124
+ }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element
1125
+
1126
+ declare function Popover({
1127
+ ...props
1128
+ }: React$1.ComponentProps<typeof PopoverPrimitive.Root>): react_jsx_runtime.JSX.Element
1129
+ declare function PopoverTrigger({
1130
+ ...props
1131
+ }: React$1.ComponentProps<typeof PopoverPrimitive.Trigger>): react_jsx_runtime.JSX.Element
1132
+ declare function PopoverContent({
1133
+ className,
1134
+ align,
1135
+ sideOffset,
1136
+ ...props
1137
+ }: React$1.ComponentProps<typeof PopoverPrimitive.Content>): react_jsx_runtime.JSX.Element
1138
+ declare function PopoverAnchor({
1139
+ ...props
1140
+ }: React$1.ComponentProps<typeof PopoverPrimitive.Anchor>): react_jsx_runtime.JSX.Element
1141
+
1142
+ declare function PrevNextLinksPageLink({
1143
+ title,
1144
+ href,
1145
+ dir,
1146
+ ...props
1147
+ }: Omit<React.ComponentPropsWithoutRef<'div'>, 'dir' | 'title'> & {
1148
+ title: string
1149
+ href: string
1150
+ dir?: 'previous' | 'next'
1151
+ }): react_jsx_runtime.JSX.Element
1152
+ declare function PrevNextLinks({
1153
+ navigation,
1154
+ }: PrevNextLinksProps): react_jsx_runtime.JSX.Element | null
1155
+
1156
+ declare function Progress({
1157
+ className,
1158
+ value,
1159
+ ...props
1160
+ }: React$1.ComponentProps<typeof ProgressPrimitive.Root>): react_jsx_runtime.JSX.Element
1161
+
1162
+ declare function RadioGroup({
1163
+ className,
1164
+ ...props
1165
+ }: React$1.ComponentProps<typeof RadioGroupPrimitive.Root>): react_jsx_runtime.JSX.Element
1166
+ declare function RadioGroupItem({
1167
+ className,
1168
+ ...props
1169
+ }: React$1.ComponentProps<typeof RadioGroupPrimitive.Item>): react_jsx_runtime.JSX.Element
1170
+
1171
+ declare function ResizablePanelGroup({
1172
+ className,
1173
+ ...props
1174
+ }: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>): react_jsx_runtime.JSX.Element
1175
+ declare function ResizablePanel({
1176
+ ...props
1177
+ }: React$1.ComponentProps<typeof ResizablePrimitive.Panel>): react_jsx_runtime.JSX.Element
1178
+ declare function ResizableHandle({
1179
+ withHandle,
1180
+ className,
1181
+ ...props
1182
+ }: React$1.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {
1183
+ withHandle?: boolean
1184
+ }): react_jsx_runtime.JSX.Element
1185
+
1186
+ declare function ScrollArea({
1187
+ className,
1188
+ children,
1189
+ ...props
1190
+ }: React$1.ComponentProps<typeof ScrollAreaPrimitive.Root>): react_jsx_runtime.JSX.Element
1191
+ declare function ScrollBar({
1192
+ className,
1193
+ orientation,
1194
+ ...props
1195
+ }: React$1.ComponentProps<
1196
+ typeof ScrollAreaPrimitive.ScrollAreaScrollbar
1197
+ >): react_jsx_runtime.JSX.Element
1198
+
1199
+ declare function Select({
1200
+ ...props
1201
+ }: React$1.ComponentProps<typeof SelectPrimitive.Root>): react_jsx_runtime.JSX.Element
1202
+ declare function SelectGroup({
1203
+ ...props
1204
+ }: React$1.ComponentProps<typeof SelectPrimitive.Group>): react_jsx_runtime.JSX.Element
1205
+ declare function SelectValue({
1206
+ ...props
1207
+ }: React$1.ComponentProps<typeof SelectPrimitive.Value>): react_jsx_runtime.JSX.Element
1208
+ declare function SelectTrigger({
1209
+ className,
1210
+ size,
1211
+ children,
1212
+ ...props
1213
+ }: React$1.ComponentProps<typeof SelectPrimitive.Trigger> & {
1214
+ size?: 'sm' | 'default'
1215
+ }): react_jsx_runtime.JSX.Element
1216
+ declare function SelectContent({
1217
+ className,
1218
+ children,
1219
+ position,
1220
+ ...props
1221
+ }: React$1.ComponentProps<typeof SelectPrimitive.Content>): react_jsx_runtime.JSX.Element
1222
+ declare function SelectLabel({
1223
+ className,
1224
+ ...props
1225
+ }: React$1.ComponentProps<typeof SelectPrimitive.Label>): react_jsx_runtime.JSX.Element
1226
+ declare function SelectItem({
1227
+ className,
1228
+ children,
1229
+ ...props
1230
+ }: React$1.ComponentProps<typeof SelectPrimitive.Item>): react_jsx_runtime.JSX.Element
1231
+ declare function SelectSeparator({
1232
+ className,
1233
+ ...props
1234
+ }: React$1.ComponentProps<typeof SelectPrimitive.Separator>): react_jsx_runtime.JSX.Element
1235
+ declare function SelectScrollUpButton({
1236
+ className,
1237
+ ...props
1238
+ }: React$1.ComponentProps<typeof SelectPrimitive.ScrollUpButton>): react_jsx_runtime.JSX.Element
1239
+ declare function SelectScrollDownButton({
1240
+ className,
1241
+ ...props
1242
+ }: React$1.ComponentProps<typeof SelectPrimitive.ScrollDownButton>): react_jsx_runtime.JSX.Element
1243
+
1244
+ declare function Separator({
1245
+ className,
1246
+ orientation,
1247
+ decorative,
1248
+ ...props
1249
+ }: React$1.ComponentProps<typeof SeparatorPrimitive.Root>): react_jsx_runtime.JSX.Element
1250
+
1251
+ declare function Sheet({
1252
+ ...props
1253
+ }: React$1.ComponentProps<typeof DialogPrimitive.Root>): react_jsx_runtime.JSX.Element
1254
+ declare function SheetTrigger({
1255
+ ...props
1256
+ }: React$1.ComponentProps<typeof DialogPrimitive.Trigger>): react_jsx_runtime.JSX.Element
1257
+ declare function SheetClose({
1258
+ ...props
1259
+ }: React$1.ComponentProps<typeof DialogPrimitive.Close>): react_jsx_runtime.JSX.Element
1260
+ declare function SheetContent({
1261
+ className,
1262
+ children,
1263
+ side,
1264
+ ...props
1265
+ }: React$1.ComponentProps<typeof DialogPrimitive.Content> & {
1266
+ side?: 'top' | 'right' | 'bottom' | 'left'
1267
+ }): react_jsx_runtime.JSX.Element
1268
+ declare function SheetHeader({
1269
+ className,
1270
+ ...props
1271
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element
1272
+ declare function SheetFooter({
1273
+ className,
1274
+ ...props
1275
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element
1276
+ declare function SheetTitle({
1277
+ className,
1278
+ ...props
1279
+ }: React$1.ComponentProps<typeof DialogPrimitive.Title>): react_jsx_runtime.JSX.Element
1280
+ declare function SheetDescription({
1281
+ className,
1282
+ ...props
1283
+ }: React$1.ComponentProps<typeof DialogPrimitive.Description>): react_jsx_runtime.JSX.Element
1284
+
1285
+ declare function SidebarNavigation({
1286
+ className,
1287
+ onLinkClick,
1288
+ navigation,
1289
+ }: {
1290
+ className?: string
1291
+ onLinkClick?: React$1.MouseEventHandler<HTMLAnchorElement>
1292
+ navigation: NavigationSection[]
1293
+ }): react_jsx_runtime.JSX.Element
1294
+ declare function SidebarLink({
1295
+ link,
1296
+ pathname,
1297
+ onLinkClick,
1298
+ depth,
1299
+ }: SidebarLinkProps): react_jsx_runtime.JSX.Element
1300
+
1301
+ declare function Skeleton({
1302
+ className,
1303
+ ...props
1304
+ }: React.ComponentProps<'div'>): react_jsx_runtime.JSX.Element
1305
+
1306
+ declare function Slider({
1307
+ className,
1308
+ defaultValue,
1309
+ value,
1310
+ min,
1311
+ max,
1312
+ ...props
1313
+ }: React$1.ComponentProps<typeof SliderPrimitive.Root>): react_jsx_runtime.JSX.Element
627
1314
 
628
1315
  declare const Social: {
629
- Facebook: (props: IconProps) => react_jsx_runtime.JSX.Element;
630
- Github: (props: IconProps) => react_jsx_runtime.JSX.Element;
631
- Instagram: (props: IconProps) => react_jsx_runtime.JSX.Element;
632
- LinkedIn: (props: IconProps) => react_jsx_runtime.JSX.Element;
633
- X: (props: IconProps) => react_jsx_runtime.JSX.Element;
634
- YouTube: (props: IconProps) => react_jsx_runtime.JSX.Element;
635
- };
636
-
637
- declare const Toaster: ({ ...props }: ToasterProps) => react_jsx_runtime.JSX.Element;
638
-
639
- declare function Switch({ className, ...props }: React$1.ComponentProps<typeof SwitchPrimitive.Root>): react_jsx_runtime.JSX.Element;
640
-
641
- declare function Table({ className, ...props }: React$1.ComponentProps<'table'>): react_jsx_runtime.JSX.Element;
642
- declare function TableHeader({ className, ...props }: React$1.ComponentProps<'thead'>): react_jsx_runtime.JSX.Element;
643
- declare function TableBody({ className, ...props }: React$1.ComponentProps<'tbody'>): react_jsx_runtime.JSX.Element;
644
- declare function TableFooter({ className, ...props }: React$1.ComponentProps<'tfoot'>): react_jsx_runtime.JSX.Element;
645
- declare function TableRow({ className, ...props }: React$1.ComponentProps<'tr'>): react_jsx_runtime.JSX.Element;
646
- declare function TableHead({ className, ...props }: React$1.ComponentProps<'th'>): react_jsx_runtime.JSX.Element;
647
- declare function TableCell({ className, ...props }: React$1.ComponentProps<'td'>): react_jsx_runtime.JSX.Element;
648
- declare function TableCaption({ className, ...props }: React$1.ComponentProps<'caption'>): react_jsx_runtime.JSX.Element;
649
-
650
- declare function TableOfContents({ tableOfContents }: TableOfContentsProps): react_jsx_runtime.JSX.Element;
651
-
652
- declare function Tabs({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.Root>): react_jsx_runtime.JSX.Element;
653
- declare function TabsList({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.List>): react_jsx_runtime.JSX.Element;
654
- declare function TabsTrigger({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
655
- declare function TabsContent({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.Content>): react_jsx_runtime.JSX.Element;
656
-
657
- declare function Textarea({ className, ...props }: React$1.ComponentProps<'textarea'>): react_jsx_runtime.JSX.Element;
658
-
659
- declare function ThemeProvider({ children, ...props }: ThemeProviderProps): react_jsx_runtime.JSX.Element;
660
-
661
- declare function ThemeSelector({ themeCategory, setThemeCategory, primaryColor, setPrimaryColor, accentColor, setAccentColor, availableAccentColors, colorThemes, }: ThemeSelectorProps): react_jsx_runtime.JSX.Element;
662
-
663
- declare function ThemeSwitcher(): react_jsx_runtime.JSX.Element;
664
-
665
- declare const TocContext: React$1.Context<TocContextType>;
666
- declare function TocProvider({ children }: {
667
- children: ReactNode;
668
- }): react_jsx_runtime.JSX.Element;
669
- declare function useToc(): TocContextType;
670
-
671
- declare const toggleVariants: (props?: ({
672
- variant?: "default" | "outline" | null | undefined;
673
- size?: "default" | "sm" | "lg" | null | undefined;
674
- } & class_variance_authority_types.ClassProp) | undefined) => string;
675
- declare function Toggle({ className, variant, size, ...props }: React$1.ComponentProps<typeof TogglePrimitive.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
676
-
677
- declare function ToggleGroup({ className, variant, size, children, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
678
- declare function ToggleGroupItem({ className, children, variant, size, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
679
-
680
- declare function TooltipProvider({ delayDuration, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Provider>): react_jsx_runtime.JSX.Element;
681
- declare function Tooltip({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Root>): react_jsx_runtime.JSX.Element;
682
- declare function TooltipTrigger({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
683
- declare function TooltipContent({ className, sideOffset, children, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Content>): react_jsx_runtime.JSX.Element;
684
-
685
- declare function ViewToggle({ viewMode, setViewMode }: ViewToggleProps): react_jsx_runtime.JSX.Element;
686
-
687
- declare function cn(...inputs: ClassValue[]): string;
688
- declare function truncate(text: string, maxLength: number): string;
689
- declare function kebabCase(str: string): string;
690
- declare function camelCase(str: string): string;
691
-
692
- declare function getNodeText(node: HTMLElement | SimpleNode): string;
693
- declare function domToSimple(node: Node): SimpleNode;
694
- declare function getHeadings(slugify?: _sindresorhus_slugify.CountableSlugify): HeadingNode[];
695
-
696
- declare const shades: string[];
697
- declare const darkenColor: (color: string, factor?: number) => string;
698
- declare const lightenColor: (color: string, factor?: number) => string;
699
- declare const addStartStopToColorArray: (colorArray: string[]) => string[];
700
- declare const interpolateColors: (color1: string, color2: string, steps: number) => ColorData[];
701
- declare const GenerateInterpolatedColors: (colorArray: string[]) => ColorData[];
702
- declare const getSurroundingColors: (colors: ColorData[], themeColor: string) => ColorData[];
703
- declare const colorDataArray: (colorsToUse: ColorData[], paletteName: string, format: Format, output: Output, variant: Variant) => string[];
704
- declare function createColorArray(colorArray: ColorData[], name: string, type: string): {
705
- name: string;
706
- colors: {
707
- name?: string | undefined;
708
- oklch: string;
709
- hex: string;
710
- rgb: string;
711
- hsl: string;
712
- token: string;
713
- }[];
714
- }[];
715
- declare const isLightColor: (hexColor: string) => boolean;
716
- declare const renderColorOutput: (colorsToUse: ColorData[], paletteName: string, format: Format, output: Output, variant: Variant) => string;
717
- declare const renderColorOutputToDTFM: (colorsToUse: ColorData[], paletteName: string, format: Format, variant: Variant) => string;
718
- declare const themeIndices: number[];
719
- declare const themeTokens: number[];
720
- declare const generateColorThemes: (colors: ColorThemes) => ColorThemes;
721
- declare function oklchConverter(hex: string): string;
722
- declare const getColorValue: (color: {
723
- oklch: string;
724
- hex: string;
725
- rgb: string;
726
- hsl: string;
727
- }, colorFormat: "oklch" | "rgb" | "hsl" | "hex") => string;
728
-
729
- declare const colors: ColorThemes;
730
- declare const colorThemes: ColorThemes;
731
-
732
- export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, BadgeButton, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, type Color, ColorCard, type ColorCardProps, type ColorData, type ColorFormat, type ColorProperty, type ColorTheme, type ColorThemes, type ColorsDisplayProps, type ColourOutputProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, type DesignTokensShades, type DesignTokensTheme, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, DynamicFavicon, Footer, FooterAcknowledgement, FooterLegalLinks, FooterSmallPrint, FooterSocialLink, type Format, FormatToggle, type FormatToggleProps, GenerateInterpolatedColors, type HeadingNode, type IconProps, Icons, Input, Label, type LayoutProps, Link$1 as Link, Logo, Masthead, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Navigation, type NavigationLink, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, type NavigationSection, type Output, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PrevNextLinks, PrevNextLinksPageLink, type PrevNextLinksProps, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, SidebarLink, type SidebarLinkProps, SidebarNavigation, type SimpleNode, Skeleton, Slider, Social, type StructuredColor, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableOfContents, type TableOfContentsItem, type TableOfContentsProps, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type ThemeCategory, type ThemeOption, ThemeProvider, ThemeSelector, type ThemeSelectorProps, ThemeSwitcher, Toaster, TocContext, type TocContextType, TocProvider, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TouchTarget, type Variant, type ViewMode, ViewToggle, type ViewToggleProps, addStartStopToColorArray, badgeVariants, buttonVariants, camelCase, cn, colorDataArray, colorThemes, colors, createColorArray, darkenColor, domToSimple, generateColorThemes, getColorValue, getHeadings, getNodeText, getSurroundingColors, interpolateColors, isLightColor, kebabCase, lightenColor, navigationMenuTriggerStyle, oklchConverter, renderColorOutput, renderColorOutputToDTFM, shades, themeIndices, themeTokens, toggleVariants, truncate, useToc };
1316
+ Facebook: (props: IconProps) => react_jsx_runtime.JSX.Element
1317
+ Github: (props: IconProps) => react_jsx_runtime.JSX.Element
1318
+ Instagram: (props: IconProps) => react_jsx_runtime.JSX.Element
1319
+ LinkedIn: (props: IconProps) => react_jsx_runtime.JSX.Element
1320
+ X: (props: IconProps) => react_jsx_runtime.JSX.Element
1321
+ YouTube: (props: IconProps) => react_jsx_runtime.JSX.Element
1322
+ }
1323
+
1324
+ declare const Toaster: ({ ...props }: ToasterProps) => react_jsx_runtime.JSX.Element
1325
+
1326
+ declare function Switch({
1327
+ className,
1328
+ ...props
1329
+ }: React$1.ComponentProps<typeof SwitchPrimitive.Root>): react_jsx_runtime.JSX.Element
1330
+
1331
+ declare function Table({
1332
+ className,
1333
+ ...props
1334
+ }: React$1.ComponentProps<'table'>): react_jsx_runtime.JSX.Element
1335
+ declare function TableHeader({
1336
+ className,
1337
+ ...props
1338
+ }: React$1.ComponentProps<'thead'>): react_jsx_runtime.JSX.Element
1339
+ declare function TableBody({
1340
+ className,
1341
+ ...props
1342
+ }: React$1.ComponentProps<'tbody'>): react_jsx_runtime.JSX.Element
1343
+ declare function TableFooter({
1344
+ className,
1345
+ ...props
1346
+ }: React$1.ComponentProps<'tfoot'>): react_jsx_runtime.JSX.Element
1347
+ declare function TableRow({
1348
+ className,
1349
+ ...props
1350
+ }: React$1.ComponentProps<'tr'>): react_jsx_runtime.JSX.Element
1351
+ declare function TableHead({
1352
+ className,
1353
+ ...props
1354
+ }: React$1.ComponentProps<'th'>): react_jsx_runtime.JSX.Element
1355
+ declare function TableCell({
1356
+ className,
1357
+ ...props
1358
+ }: React$1.ComponentProps<'td'>): react_jsx_runtime.JSX.Element
1359
+ declare function TableCaption({
1360
+ className,
1361
+ ...props
1362
+ }: React$1.ComponentProps<'caption'>): react_jsx_runtime.JSX.Element
1363
+
1364
+ declare function TableOfContents({
1365
+ tableOfContents,
1366
+ }: TableOfContentsProps): react_jsx_runtime.JSX.Element
1367
+
1368
+ declare function Tabs({
1369
+ className,
1370
+ ...props
1371
+ }: React$1.ComponentProps<typeof TabsPrimitive.Root>): react_jsx_runtime.JSX.Element
1372
+ declare function TabsList({
1373
+ className,
1374
+ ...props
1375
+ }: React$1.ComponentProps<typeof TabsPrimitive.List>): react_jsx_runtime.JSX.Element
1376
+ declare function TabsTrigger({
1377
+ className,
1378
+ ...props
1379
+ }: React$1.ComponentProps<typeof TabsPrimitive.Trigger>): react_jsx_runtime.JSX.Element
1380
+ declare function TabsContent({
1381
+ className,
1382
+ ...props
1383
+ }: React$1.ComponentProps<typeof TabsPrimitive.Content>): react_jsx_runtime.JSX.Element
1384
+
1385
+ declare function Textarea({
1386
+ className,
1387
+ ...props
1388
+ }: React$1.ComponentProps<'textarea'>): react_jsx_runtime.JSX.Element
1389
+
1390
+ declare function ThemeProvider({
1391
+ children,
1392
+ ...props
1393
+ }: ThemeProviderProps): react_jsx_runtime.JSX.Element
1394
+
1395
+ declare function ThemeSelector({
1396
+ themeCategory,
1397
+ setThemeCategory,
1398
+ primaryColor,
1399
+ setPrimaryColor,
1400
+ accentColor,
1401
+ setAccentColor,
1402
+ availableAccentColors,
1403
+ colorThemes,
1404
+ }: ThemeSelectorProps): react_jsx_runtime.JSX.Element
1405
+
1406
+ declare function ThemeSwitcher(): react_jsx_runtime.JSX.Element
1407
+
1408
+ declare const TocContext: React$1.Context<TocContextType>
1409
+ declare function TocProvider({ children }: { children: ReactNode }): react_jsx_runtime.JSX.Element
1410
+ declare function useToc(): TocContextType
1411
+
1412
+ declare const toggleVariants: (
1413
+ props?:
1414
+ | ({
1415
+ variant?: 'outline' | 'ghost' | null | undefined
1416
+ size?: 'default' | 'sm' | 'lg' | null | undefined
1417
+ } & class_variance_authority_types.ClassProp)
1418
+ | undefined,
1419
+ ) => string
1420
+ declare function Toggle({
1421
+ className,
1422
+ variant,
1423
+ size,
1424
+ ...props
1425
+ }: React$1.ComponentProps<typeof TogglePrimitive.Root> &
1426
+ VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element
1427
+
1428
+ declare function ToggleGroup({
1429
+ className,
1430
+ variant,
1431
+ size,
1432
+ children,
1433
+ ...props
1434
+ }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Root> &
1435
+ VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element
1436
+ declare function ToggleGroupItem({
1437
+ className,
1438
+ children,
1439
+ variant,
1440
+ size,
1441
+ ...props
1442
+ }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Item> &
1443
+ VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element
1444
+
1445
+ declare function TooltipProvider({
1446
+ delayDuration,
1447
+ ...props
1448
+ }: React$1.ComponentProps<typeof TooltipPrimitive.Provider>): react_jsx_runtime.JSX.Element
1449
+ declare function Tooltip({
1450
+ ...props
1451
+ }: React$1.ComponentProps<typeof TooltipPrimitive.Root>): react_jsx_runtime.JSX.Element
1452
+ declare function TooltipTrigger({
1453
+ ...props
1454
+ }: React$1.ComponentProps<typeof TooltipPrimitive.Trigger>): react_jsx_runtime.JSX.Element
1455
+ declare function TooltipContent({
1456
+ className,
1457
+ sideOffset,
1458
+ children,
1459
+ ...props
1460
+ }: React$1.ComponentProps<typeof TooltipPrimitive.Content>): react_jsx_runtime.JSX.Element
1461
+
1462
+ declare function ViewToggle({
1463
+ viewMode,
1464
+ setViewMode,
1465
+ }: ViewToggleProps): react_jsx_runtime.JSX.Element
1466
+
1467
+ declare function cn(...inputs: ClassValue[]): string
1468
+ declare function truncate(text: string, maxLength: number): string
1469
+ declare function kebabCase(str: string): string
1470
+ declare function camelCase(str: string): string
1471
+
1472
+ declare function getNodeText(node: HTMLElement | SimpleNode): string
1473
+ declare function domToSimple(node: Node): SimpleNode
1474
+ declare function getHeadings(slugify?: _sindresorhus_slugify.CountableSlugify): HeadingNode[]
1475
+
1476
+ declare const shades: string[]
1477
+ declare const darkenColor: (color: string, factor?: number) => string
1478
+ declare const lightenColor: (color: string, factor?: number) => string
1479
+ declare const addStartStopToColorArray: (colorArray: string[]) => string[]
1480
+ declare const interpolateColors: (color1: string, color2: string, steps: number) => ColorData[]
1481
+ declare const GenerateInterpolatedColors: (colorArray: string[]) => ColorData[]
1482
+ declare const getSurroundingColors: (colors: ColorData[], themeColor: string) => ColorData[]
1483
+ declare const colorDataArray: (
1484
+ colorsToUse: ColorData[],
1485
+ paletteName: string,
1486
+ format: Format,
1487
+ output: Output,
1488
+ variant: Variant,
1489
+ ) => string[]
1490
+ declare function createColorArray(
1491
+ colorArray: ColorData[],
1492
+ name: string,
1493
+ type: string,
1494
+ ): {
1495
+ name: string
1496
+ colors: {
1497
+ name?: string | undefined
1498
+ oklch: string
1499
+ hex: string
1500
+ rgb: string
1501
+ hsl: string
1502
+ token: string
1503
+ }[]
1504
+ }[]
1505
+ declare const isLightColor: (hexColor: string) => boolean
1506
+ declare const renderColorOutput: (
1507
+ colorsToUse: ColorData[],
1508
+ paletteName: string,
1509
+ format: Format,
1510
+ output: Output,
1511
+ variant: Variant,
1512
+ ) => string
1513
+ declare const renderColorOutputToDTFM: (
1514
+ colorsToUse: ColorData[],
1515
+ paletteName: string,
1516
+ format: Format,
1517
+ variant: Variant,
1518
+ ) => string
1519
+ declare const themeIndices: number[]
1520
+ declare const themeTokens: number[]
1521
+ declare const generateColorThemes: (colors: ColorThemes) => ColorThemes
1522
+ declare function oklchConverter(hex: string): string
1523
+ declare const getColorValue: (
1524
+ color: {
1525
+ oklch: string
1526
+ hex: string
1527
+ rgb: string
1528
+ hsl: string
1529
+ },
1530
+ colorFormat: 'oklch' | 'rgb' | 'hsl' | 'hex',
1531
+ ) => string
1532
+
1533
+ declare const colors: ColorThemes
1534
+ declare const colorThemes: ColorThemes
1535
+
1536
+ export {
1537
+ Accordion,
1538
+ AccordionContent,
1539
+ AccordionItem,
1540
+ AccordionTrigger,
1541
+ Alert,
1542
+ AlertDescription,
1543
+ AlertTitle,
1544
+ AspectRatio,
1545
+ Avatar,
1546
+ AvatarFallback,
1547
+ AvatarImage,
1548
+ Badge,
1549
+ BadgeButton,
1550
+ Breadcrumb,
1551
+ BreadcrumbEllipsis,
1552
+ BreadcrumbItem,
1553
+ BreadcrumbLink,
1554
+ BreadcrumbList,
1555
+ BreadcrumbPage,
1556
+ BreadcrumbSeparator,
1557
+ Button,
1558
+ Card,
1559
+ CardAction,
1560
+ CardContent,
1561
+ CardDescription,
1562
+ CardFooter,
1563
+ CardHeader,
1564
+ CardTitle,
1565
+ Checkbox,
1566
+ Collapsible,
1567
+ CollapsibleContent,
1568
+ CollapsibleTrigger,
1569
+ type Color,
1570
+ ColorCard,
1571
+ type ColorCardProps,
1572
+ type ColorData,
1573
+ type ColorFormat,
1574
+ type ColorProperty,
1575
+ type ColorTheme,
1576
+ type ColorThemes,
1577
+ type ColorsDisplayProps,
1578
+ type ColourOutputProps,
1579
+ Command,
1580
+ CommandDialog,
1581
+ CommandEmpty,
1582
+ CommandGroup,
1583
+ CommandInput,
1584
+ CommandItem,
1585
+ CommandList,
1586
+ CommandSeparator,
1587
+ CommandShortcut,
1588
+ ContextMenu,
1589
+ ContextMenuCheckboxItem,
1590
+ ContextMenuContent,
1591
+ ContextMenuGroup,
1592
+ ContextMenuItem,
1593
+ ContextMenuLabel,
1594
+ ContextMenuPortal,
1595
+ ContextMenuRadioGroup,
1596
+ ContextMenuRadioItem,
1597
+ ContextMenuSeparator,
1598
+ ContextMenuShortcut,
1599
+ ContextMenuSub,
1600
+ ContextMenuSubContent,
1601
+ ContextMenuSubTrigger,
1602
+ ContextMenuTrigger,
1603
+ type DesignTokensShades,
1604
+ type DesignTokensTheme,
1605
+ Dialog,
1606
+ DialogClose,
1607
+ DialogContent,
1608
+ DialogDescription,
1609
+ DialogFooter,
1610
+ DialogHeader,
1611
+ DialogOverlay,
1612
+ DialogPortal,
1613
+ DialogTitle,
1614
+ DialogTrigger,
1615
+ Drawer,
1616
+ DrawerClose,
1617
+ DrawerContent,
1618
+ DrawerDescription,
1619
+ DrawerFooter,
1620
+ DrawerHeader,
1621
+ DrawerOverlay,
1622
+ DrawerPortal,
1623
+ DrawerTitle,
1624
+ DrawerTrigger,
1625
+ DropdownMenu,
1626
+ DropdownMenuCheckboxItem,
1627
+ DropdownMenuContent,
1628
+ DropdownMenuGroup,
1629
+ DropdownMenuItem,
1630
+ DropdownMenuLabel,
1631
+ DropdownMenuPortal,
1632
+ DropdownMenuRadioGroup,
1633
+ DropdownMenuRadioItem,
1634
+ DropdownMenuSeparator,
1635
+ DropdownMenuShortcut,
1636
+ DropdownMenuSub,
1637
+ DropdownMenuSubContent,
1638
+ DropdownMenuSubTrigger,
1639
+ DropdownMenuTrigger,
1640
+ DynamicFavicon,
1641
+ Footer,
1642
+ FooterAcknowledgement,
1643
+ FooterLegalLinks,
1644
+ FooterSmallPrint,
1645
+ FooterSocialLink,
1646
+ type Format,
1647
+ FormatToggle,
1648
+ type FormatToggleProps,
1649
+ GenerateInterpolatedColors,
1650
+ type HeadingNode,
1651
+ type IconProps,
1652
+ Icons,
1653
+ Input,
1654
+ Label,
1655
+ type LayoutProps,
1656
+ Link$1 as Link,
1657
+ Logo,
1658
+ Masthead,
1659
+ Menubar,
1660
+ MenubarCheckboxItem,
1661
+ MenubarContent,
1662
+ MenubarGroup,
1663
+ MenubarItem,
1664
+ MenubarLabel,
1665
+ MenubarMenu,
1666
+ MenubarPortal,
1667
+ MenubarRadioGroup,
1668
+ MenubarRadioItem,
1669
+ MenubarSeparator,
1670
+ MenubarShortcut,
1671
+ MenubarSub,
1672
+ MenubarSubContent,
1673
+ MenubarSubTrigger,
1674
+ MenubarTrigger,
1675
+ Navigation,
1676
+ type NavigationLink,
1677
+ NavigationMenu,
1678
+ NavigationMenuContent,
1679
+ NavigationMenuIndicator,
1680
+ NavigationMenuItem,
1681
+ NavigationMenuLink,
1682
+ NavigationMenuList,
1683
+ NavigationMenuTrigger,
1684
+ NavigationMenuViewport,
1685
+ type NavigationSection,
1686
+ type Output,
1687
+ Pagination,
1688
+ PaginationContent,
1689
+ PaginationEllipsis,
1690
+ PaginationItem,
1691
+ PaginationLink,
1692
+ PaginationNext,
1693
+ PaginationPrevious,
1694
+ Popover,
1695
+ PopoverAnchor,
1696
+ PopoverContent,
1697
+ PopoverTrigger,
1698
+ PrevNextLinks,
1699
+ PrevNextLinksPageLink,
1700
+ type PrevNextLinksProps,
1701
+ Progress,
1702
+ RadioGroup,
1703
+ RadioGroupItem,
1704
+ ResizableHandle,
1705
+ ResizablePanel,
1706
+ ResizablePanelGroup,
1707
+ ScrollArea,
1708
+ ScrollBar,
1709
+ Select,
1710
+ SelectContent,
1711
+ SelectGroup,
1712
+ SelectItem,
1713
+ SelectLabel,
1714
+ SelectScrollDownButton,
1715
+ SelectScrollUpButton,
1716
+ SelectSeparator,
1717
+ SelectTrigger,
1718
+ SelectValue,
1719
+ Separator,
1720
+ Sheet,
1721
+ SheetClose,
1722
+ SheetContent,
1723
+ SheetDescription,
1724
+ SheetFooter,
1725
+ SheetHeader,
1726
+ SheetTitle,
1727
+ SheetTrigger,
1728
+ SidebarLink,
1729
+ type SidebarLinkProps,
1730
+ SidebarNavigation,
1731
+ type SimpleNode,
1732
+ Skeleton,
1733
+ Slider,
1734
+ Social,
1735
+ type StructuredColor,
1736
+ Switch,
1737
+ Table,
1738
+ TableBody,
1739
+ TableCaption,
1740
+ TableCell,
1741
+ TableFooter,
1742
+ TableHead,
1743
+ TableHeader,
1744
+ TableOfContents,
1745
+ type TableOfContentsItem,
1746
+ type TableOfContentsProps,
1747
+ TableRow,
1748
+ Tabs,
1749
+ TabsContent,
1750
+ TabsList,
1751
+ TabsTrigger,
1752
+ Textarea,
1753
+ type ThemeCategory,
1754
+ type ThemeOption,
1755
+ ThemeProvider,
1756
+ ThemeSelector,
1757
+ type ThemeSelectorProps,
1758
+ ThemeSwitcher,
1759
+ Toaster,
1760
+ TocContext,
1761
+ type TocContextType,
1762
+ TocProvider,
1763
+ Toggle,
1764
+ ToggleGroup,
1765
+ ToggleGroupItem,
1766
+ Tooltip,
1767
+ TooltipContent,
1768
+ TooltipProvider,
1769
+ TooltipTrigger,
1770
+ TouchTarget,
1771
+ type Variant,
1772
+ type ViewMode,
1773
+ ViewToggle,
1774
+ type ViewToggleProps,
1775
+ addStartStopToColorArray,
1776
+ badgeVariants,
1777
+ buttonVariants,
1778
+ camelCase,
1779
+ cn,
1780
+ type colorCategories,
1781
+ colorDataArray,
1782
+ colorThemes,
1783
+ colors,
1784
+ createColorArray,
1785
+ darkenColor,
1786
+ domToSimple,
1787
+ generateColorThemes,
1788
+ getColorValue,
1789
+ getHeadings,
1790
+ getNodeText,
1791
+ getSurroundingColors,
1792
+ interpolateColors,
1793
+ isLightColor,
1794
+ kebabCase,
1795
+ lightenColor,
1796
+ navigationMenuTriggerStyle,
1797
+ oklchConverter,
1798
+ renderColorOutput,
1799
+ renderColorOutputToDTFM,
1800
+ shades,
1801
+ themeIndices,
1802
+ themeTokens,
1803
+ toggleVariants,
1804
+ truncate,
1805
+ useToc,
1806
+ }