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