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