@opencosmos/ui 1.3.1
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/.claude/CLAUDE.md +239 -0
- package/README.md +161 -0
- package/dist/cli.mjs +151 -0
- package/dist/dates.d.mts +20 -0
- package/dist/dates.d.ts +20 -0
- package/dist/dates.js +240 -0
- package/dist/dates.js.map +1 -0
- package/dist/dates.mjs +203 -0
- package/dist/dates.mjs.map +1 -0
- package/dist/dnd.d.mts +126 -0
- package/dist/dnd.d.ts +126 -0
- package/dist/dnd.js +274 -0
- package/dist/dnd.js.map +1 -0
- package/dist/dnd.mjs +250 -0
- package/dist/dnd.mjs.map +1 -0
- package/dist/fontThemes-Dh8mtXES.d.mts +868 -0
- package/dist/fontThemes-Dh8mtXES.d.ts +868 -0
- package/dist/forms.d.mts +38 -0
- package/dist/forms.d.ts +38 -0
- package/dist/forms.js +198 -0
- package/dist/forms.js.map +1 -0
- package/dist/forms.mjs +159 -0
- package/dist/forms.mjs.map +1 -0
- package/dist/hooks-1b8WaQf1.d.mts +225 -0
- package/dist/hooks-CKW8vE9H.d.ts +225 -0
- package/dist/hooks.d.mts +3 -0
- package/dist/hooks.d.ts +3 -0
- package/dist/hooks.js +971 -0
- package/dist/hooks.js.map +1 -0
- package/dist/hooks.mjs +943 -0
- package/dist/hooks.mjs.map +1 -0
- package/dist/index-DscTIrZ2.d.mts +29 -0
- package/dist/index-DscTIrZ2.d.ts +29 -0
- package/dist/index.d.mts +3382 -0
- package/dist/index.d.ts +3382 -0
- package/dist/index.js +15146 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +14802 -0
- package/dist/index.mjs.map +1 -0
- package/dist/providers-CXPDMsl7.d.mts +30 -0
- package/dist/providers-Dn_Msjvz.d.ts +30 -0
- package/dist/providers.d.mts +3 -0
- package/dist/providers.d.ts +3 -0
- package/dist/providers.js +1885 -0
- package/dist/providers.js.map +1 -0
- package/dist/providers.mjs +1859 -0
- package/dist/providers.mjs.map +1 -0
- package/dist/tables.d.mts +10 -0
- package/dist/tables.d.ts +10 -0
- package/dist/tables.js +248 -0
- package/dist/tables.js.map +1 -0
- package/dist/tables.mjs +218 -0
- package/dist/tables.mjs.map +1 -0
- package/dist/tokens.d.mts +1065 -0
- package/dist/tokens.d.ts +1065 -0
- package/dist/tokens.js +2637 -0
- package/dist/tokens.js.map +1 -0
- package/dist/tokens.mjs +2555 -0
- package/dist/tokens.mjs.map +1 -0
- package/dist/utils-CIIM7dAC.d.ts +986 -0
- package/dist/utils-Cs04sxth.d.mts +986 -0
- package/dist/utils.d.mts +4 -0
- package/dist/utils.d.ts +4 -0
- package/dist/utils.js +874 -0
- package/dist/utils.js.map +1 -0
- package/dist/utils.mjs +806 -0
- package/dist/utils.mjs.map +1 -0
- package/dist/validation-Bj1ye-v_.d.mts +114 -0
- package/dist/validation-Bj1ye-v_.d.ts +114 -0
- package/dist/webgl.d.mts +104 -0
- package/dist/webgl.d.ts +104 -0
- package/dist/webgl.js +226 -0
- package/dist/webgl.js.map +1 -0
- package/dist/webgl.mjs +195 -0
- package/dist/webgl.mjs.map +1 -0
- package/package.json +267 -0
- package/src/cli.ts +206 -0
- package/src/component-registry.ts +183 -0
- package/src/components/actions/Button.test.tsx +61 -0
- package/src/components/actions/Button.tsx +70 -0
- package/src/components/actions/Link.tsx +78 -0
- package/src/components/actions/Magnetic.tsx +68 -0
- package/src/components/actions/Toggle.test.tsx +40 -0
- package/src/components/actions/Toggle.tsx +47 -0
- package/src/components/actions/ToggleGroup.tsx +70 -0
- package/src/components/actions/index.ts +5 -0
- package/src/components/backgrounds/FaultyTerminal.tsx +426 -0
- package/src/components/backgrounds/OrbBackground.tsx +424 -0
- package/src/components/backgrounds/WarpBackground.tsx +358 -0
- package/src/components/backgrounds/index.ts +3 -0
- package/src/components/blocks/Hero.tsx +142 -0
- package/src/components/blocks/social/OpenGraphCard.tsx +243 -0
- package/src/components/cursor/SplashCursor.tsx +1315 -0
- package/src/components/cursor/TargetCursor.tsx +187 -0
- package/src/components/cursor/index.ts +2 -0
- package/src/components/data-display/AspectImage.tsx +73 -0
- package/src/components/data-display/Avatar.test.tsx +35 -0
- package/src/components/data-display/Avatar.tsx +55 -0
- package/src/components/data-display/Badge.test.tsx +43 -0
- package/src/components/data-display/Badge.tsx +84 -0
- package/src/components/data-display/Brand.tsx +123 -0
- package/src/components/data-display/Calendar.tsx +70 -0
- package/src/components/data-display/Card.test.tsx +92 -0
- package/src/components/data-display/Card.tsx +115 -0
- package/src/components/data-display/Code.tsx +210 -0
- package/src/components/data-display/CollapsibleCodeBlock.tsx +238 -0
- package/src/components/data-display/DataTable.tsx +119 -0
- package/src/components/data-display/DescriptionList.tsx +41 -0
- package/src/components/data-display/GitHubIcon.tsx +44 -0
- package/src/components/data-display/Heading.test.tsx +36 -0
- package/src/components/data-display/Heading.tsx +83 -0
- package/src/components/data-display/StatCard.tsx +195 -0
- package/src/components/data-display/Table.tsx +133 -0
- package/src/components/data-display/Text.test.tsx +48 -0
- package/src/components/data-display/Text.tsx +144 -0
- package/src/components/data-display/Timeline.tsx +194 -0
- package/src/components/data-display/TreeView.tsx +226 -0
- package/src/components/data-display/Typewriter.tsx +119 -0
- package/src/components/data-display/VariableWeightText.tsx +130 -0
- package/src/components/data-display/index.ts +19 -0
- package/src/components/feedback/Alert.test.tsx +44 -0
- package/src/components/feedback/Alert.tsx +65 -0
- package/src/components/feedback/EmptyState.tsx +113 -0
- package/src/components/feedback/Progress.test.tsx +60 -0
- package/src/components/feedback/Progress.tsx +30 -0
- package/src/components/feedback/ProgressBar.tsx +158 -0
- package/src/components/feedback/Skeleton.test.tsx +39 -0
- package/src/components/feedback/Skeleton.tsx +45 -0
- package/src/components/feedback/Sonner.tsx +28 -0
- package/src/components/feedback/Spinner.test.tsx +33 -0
- package/src/components/feedback/Spinner.tsx +99 -0
- package/src/components/feedback/Stepper.tsx +307 -0
- package/src/components/feedback/Toast/Toast.tsx +243 -0
- package/src/components/feedback/Toast/index.ts +2 -0
- package/src/components/feedback/index.ts +9 -0
- package/src/components/forms/Checkbox.test.tsx +40 -0
- package/src/components/forms/Checkbox.tsx +31 -0
- package/src/components/forms/ColorPicker.tsx +118 -0
- package/src/components/forms/Combobox.tsx +96 -0
- package/src/components/forms/DragDrop.tsx +440 -0
- package/src/components/forms/FileUpload.tsx +252 -0
- package/src/components/forms/FilterButton.tsx +65 -0
- package/src/components/forms/Form.tsx +197 -0
- package/src/components/forms/Input.test.tsx +46 -0
- package/src/components/forms/Input.tsx +43 -0
- package/src/components/forms/InputOTP.tsx +81 -0
- package/src/components/forms/Label.test.tsx +20 -0
- package/src/components/forms/Label.tsx +25 -0
- package/src/components/forms/RadioGroup.tsx +51 -0
- package/src/components/forms/SearchBar.tsx +215 -0
- package/src/components/forms/Select.test.tsx +118 -0
- package/src/components/forms/Select.tsx +274 -0
- package/src/components/forms/Slider.tsx +29 -0
- package/src/components/forms/Switch.test.tsx +76 -0
- package/src/components/forms/Switch.tsx +30 -0
- package/src/components/forms/TextField.tsx +152 -0
- package/src/components/forms/Textarea.test.tsx +41 -0
- package/src/components/forms/Textarea.tsx +29 -0
- package/src/components/forms/ThemeSwitcher.tsx +290 -0
- package/src/components/forms/ThemeToggle.tsx +151 -0
- package/src/components/forms/index.ts +19 -0
- package/src/components/layout/Accordion.test.tsx +66 -0
- package/src/components/layout/Accordion.tsx +64 -0
- package/src/components/layout/AspectRatio.tsx +7 -0
- package/src/components/layout/Carousel.tsx +277 -0
- package/src/components/layout/Collapsible.test.tsx +40 -0
- package/src/components/layout/Collapsible.tsx +31 -0
- package/src/components/layout/Container.test.tsx +45 -0
- package/src/components/layout/Container.tsx +99 -0
- package/src/components/layout/CustomizerPanel.tsx +400 -0
- package/src/components/layout/DatePicker.tsx +57 -0
- package/src/components/layout/Footer/Footer.tsx +175 -0
- package/src/components/layout/Footer/index.ts +2 -0
- package/src/components/layout/GlassSurface.tsx +82 -0
- package/src/components/layout/Grid.test.tsx +31 -0
- package/src/components/layout/Grid.tsx +130 -0
- package/src/components/layout/Header/Header.tsx +450 -0
- package/src/components/layout/Header/index.ts +2 -0
- package/src/components/layout/PageLayout.tsx +180 -0
- package/src/components/layout/PageTemplate.tsx +158 -0
- package/src/components/layout/Resizable.tsx +48 -0
- package/src/components/layout/ScrollArea.tsx +53 -0
- package/src/components/layout/Separator.test.tsx +28 -0
- package/src/components/layout/Separator.tsx +29 -0
- package/src/components/layout/Sidebar.tsx +171 -0
- package/src/components/layout/Stack.test.tsx +41 -0
- package/src/components/layout/Stack.tsx +89 -0
- package/src/components/layout/glass-surface.css +60 -0
- package/src/components/layout/index.ts +18 -0
- package/src/components/motion/AnimatedBeam.tsx +159 -0
- package/src/components/navigation/Breadcrumb.test.tsx +57 -0
- package/src/components/navigation/Breadcrumb.tsx +119 -0
- package/src/components/navigation/Breadcrumbs.tsx +221 -0
- package/src/components/navigation/Command.tsx +159 -0
- package/src/components/navigation/Menubar.tsx +115 -0
- package/src/components/navigation/NavLink.tsx +55 -0
- package/src/components/navigation/NavigationMenu.tsx +125 -0
- package/src/components/navigation/Pagination.tsx +121 -0
- package/src/components/navigation/SecondaryNav.tsx +100 -0
- package/src/components/navigation/Tabs.test.tsx +47 -0
- package/src/components/navigation/Tabs.tsx +60 -0
- package/src/components/navigation/TertiaryNav.tsx +90 -0
- package/src/components/navigation/index.ts +10 -0
- package/src/components/overlays/AlertDialog.test.tsx +69 -0
- package/src/components/overlays/AlertDialog.tsx +166 -0
- package/src/components/overlays/ContextMenu.tsx +243 -0
- package/src/components/overlays/Dialog.test.tsx +79 -0
- package/src/components/overlays/Dialog.tsx +158 -0
- package/src/components/overlays/Drawer.tsx +128 -0
- package/src/components/overlays/Dropdown.tsx +253 -0
- package/src/components/overlays/DropdownMenu.tsx +242 -0
- package/src/components/overlays/HoverCard.tsx +32 -0
- package/src/components/overlays/Modal.tsx +250 -0
- package/src/components/overlays/NotificationCenter.tsx +364 -0
- package/src/components/overlays/Popover.test.tsx +40 -0
- package/src/components/overlays/Popover.tsx +46 -0
- package/src/components/overlays/Sheet.tsx +163 -0
- package/src/components/overlays/Tooltip.test.tsx +33 -0
- package/src/components/overlays/Tooltip.tsx +32 -0
- package/src/components/overlays/index.ts +12 -0
- package/src/dates.ts +2 -0
- package/src/dnd.ts +1 -0
- package/src/forms.ts +1 -0
- package/src/globals.css +187 -0
- package/src/hooks/index.ts +6 -0
- package/src/hooks/useForm.ts +247 -0
- package/src/hooks/useMotionPreference.test.ts +102 -0
- package/src/hooks/useMotionPreference.ts +78 -0
- package/src/hooks/useTheme.ts +58 -0
- package/src/hooks.ts +9 -0
- package/src/index.ts +168 -0
- package/src/lib/animations.ts +356 -0
- package/src/lib/breadcrumbs.ts +94 -0
- package/src/lib/colors.ts +493 -0
- package/src/lib/store/customizer.ts +482 -0
- package/src/lib/store/index.ts +3 -0
- package/src/lib/store/theme.ts +55 -0
- package/src/lib/syntax-parser/index.ts +50 -0
- package/src/lib/syntax-parser/patterns.ts +64 -0
- package/src/lib/syntax-parser/tokenizer.ts +117 -0
- package/src/lib/syntax-parser/types.ts +27 -0
- package/src/lib/utils.ts +6 -0
- package/src/lib/validation.ts +204 -0
- package/src/lib/webgl/Color.ts +11 -0
- package/src/lib/webgl/Mesh.ts +41 -0
- package/src/lib/webgl/Program.ts +118 -0
- package/src/lib/webgl/Renderer.ts +51 -0
- package/src/lib/webgl/Triangle.ts +27 -0
- package/src/lib/webgl/Vec3.ts +18 -0
- package/src/lib/webgl/index.ts +13 -0
- package/src/nativewind-env.d.ts +1 -0
- package/src/providers/ThemeProvider.tsx +461 -0
- package/src/providers/index.ts +1 -0
- package/src/providers.ts +7 -0
- package/src/tables.ts +1 -0
- package/src/test/setup.ts +39 -0
- package/src/theme.css +158 -0
- package/src/tokens.ts +7 -0
- package/src/utils.ts +12 -0
- package/src/webgl.ts +1 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,3382 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
3
|
+
import * as React$1 from 'react';
|
|
4
|
+
import React__default, { ComponentPropsWithoutRef, ElementRef, ReactNode, CSSProperties, Ref } from 'react';
|
|
5
|
+
import { VariantProps } from 'class-variance-authority';
|
|
6
|
+
import * as TogglePrimitive from '@radix-ui/react-toggle';
|
|
7
|
+
import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
|
|
8
|
+
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
9
|
+
import { DragDropHandle, DragDropHandleProps, DragDropItem, DragDropList, DragDropListProps, DragDropTable, DragDropTableProps } from './dnd.js';
|
|
10
|
+
import { Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, useFormField } from './forms.js';
|
|
11
|
+
import { OTPInput } from 'input-otp';
|
|
12
|
+
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
13
|
+
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
|
14
|
+
import * as _radix_ui_react_select from '@radix-ui/react-select';
|
|
15
|
+
import { Content, Item, Label as Label$1, ScrollDownButton, ScrollUpButton, Separator as Separator$1, Trigger } from '@radix-ui/react-select';
|
|
16
|
+
import * as SliderPrimitive from '@radix-ui/react-slider';
|
|
17
|
+
import * as SwitchPrimitives from '@radix-ui/react-switch';
|
|
18
|
+
import { Accept, FileRejection } from 'react-dropzone';
|
|
19
|
+
import { S as SyntaxType, a as SyntaxToken, B as BreadcrumbItemLegacy, b as Breadcrumbs, c as BreadcrumbsProps } from './utils-CIIM7dAC.js';
|
|
20
|
+
export { L as Language, R as RouteConfig, T as Transition, V as Variant, d as Variants, e as adjustLightness, f as adjustOpacity, g as adjustSaturation, h as cn, i as collapseVariants, j as colorTokens, k as colorUtils, l as createAnimation, m as detectLanguage, n as drawerVariants, o as durations, p as easings, q as fadeVariants, r as generateBreadcrumbs, s as generateColorScale, t as getCSSVariable, u as getContrastRatio, v as getForegroundColor, w as getLuminance, x as getOptimalForeground, y as getSemanticColorPair, z as hexToHSL, A as hexToRgb, C as hslToHex, D as listVariants, E as meetsContrastRequirements, F as modalVariants, G as parseCode, H as presets, I as rotateHue, J as rotateVariants, K as scaleDuration, M as scaleVariants, N as semanticColors, O as setCSSVariable, P as slideVariants, Q as tokenize, U as transitions } from './utils-CIIM7dAC.js';
|
|
21
|
+
import { Command as Command$1 } from 'cmdk';
|
|
22
|
+
import * as SheetPrimitive from '@radix-ui/react-dialog';
|
|
23
|
+
import * as MenubarPrimitive from '@radix-ui/react-menubar';
|
|
24
|
+
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
|
25
|
+
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
26
|
+
import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
|
27
|
+
import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
|
|
28
|
+
import { Drawer as Drawer$1 } from 'vaul';
|
|
29
|
+
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
30
|
+
import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
|
|
31
|
+
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
32
|
+
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
33
|
+
import * as ProgressPrimitive from '@radix-ui/react-progress';
|
|
34
|
+
import { Toaster as Toaster$1 } from 'sonner';
|
|
35
|
+
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
36
|
+
import { Calendar, CalendarProps, DatePicker, DatePickerProps } from './dates.js';
|
|
37
|
+
import { DataTable } from './tables.js';
|
|
38
|
+
import { HTMLMotionProps } from 'framer-motion';
|
|
39
|
+
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
40
|
+
import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
|
|
41
|
+
import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
|
|
42
|
+
import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
|
|
43
|
+
import { T as ThemeName$1, C as ColorMode$1 } from './index-DscTIrZ2.js';
|
|
44
|
+
import { Separator as Separator$2, Panel, Group } from 'react-resizable-panels';
|
|
45
|
+
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
46
|
+
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
47
|
+
export { p as Providers, T as ThemeProvider, a as ThemeProviderProps } from './providers-Dn_Msjvz.js';
|
|
48
|
+
export { h as Hooks, M as MotionPreference, T as ThemeHook, U as UseFormOptions, a as UseFormReturn, u as useForm, b as useMotionPreference, c as useTheme } from './hooks-CKW8vE9H.js';
|
|
49
|
+
import * as zustand_middleware from 'zustand/middleware';
|
|
50
|
+
import * as zustand from 'zustand';
|
|
51
|
+
import { a as FontTheme } from './fontThemes-Dh8mtXES.js';
|
|
52
|
+
export { C as typographySystem } from './fontThemes-Dh8mtXES.js';
|
|
53
|
+
export { F as FieldValidation, a as FormErrors, V as ValidationRule, h as hasErrors, p as patterns, r as rules, v as validateField, b as validateForm } from './validation-Bj1ye-v_.js';
|
|
54
|
+
import '@dnd-kit/sortable';
|
|
55
|
+
import 'react-hook-form';
|
|
56
|
+
import '@radix-ui/react-slot';
|
|
57
|
+
import 'clsx';
|
|
58
|
+
import 'react-day-picker';
|
|
59
|
+
import '@tanstack/react-table';
|
|
60
|
+
|
|
61
|
+
declare const buttonVariants: (props?: ({
|
|
62
|
+
variant?: "default" | "primary" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null | undefined;
|
|
63
|
+
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
64
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
65
|
+
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
66
|
+
asChild?: boolean;
|
|
67
|
+
}
|
|
68
|
+
declare const Button: ({ ref, className, variant, size, asChild, children, ...props }: ButtonProps & {
|
|
69
|
+
ref?: React$1.Ref<HTMLButtonElement>;
|
|
70
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
71
|
+
|
|
72
|
+
interface LinkProps extends React__default.AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
73
|
+
children: React__default.ReactNode;
|
|
74
|
+
/**
|
|
75
|
+
* Visual style variant for the link
|
|
76
|
+
* @default 'default'
|
|
77
|
+
*/
|
|
78
|
+
variant?: 'default' | 'inline';
|
|
79
|
+
/**
|
|
80
|
+
* Whether to apply hover effect (only for 'default' variant).
|
|
81
|
+
* @default true
|
|
82
|
+
*/
|
|
83
|
+
hoverEffect?: boolean;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Link Component
|
|
87
|
+
*
|
|
88
|
+
* A theme-aware link with multiple style variants.
|
|
89
|
+
*
|
|
90
|
+
* Variants:
|
|
91
|
+
* - **default**: Background highlight on hover, good for standalone links
|
|
92
|
+
* - **inline**: Underlined text link, good for inline links within paragraphs
|
|
93
|
+
*
|
|
94
|
+
* Features:
|
|
95
|
+
* - Theme-aware colors using CSS variables
|
|
96
|
+
* - Smooth transition respecting motion preferences
|
|
97
|
+
* - Accessible focus states
|
|
98
|
+
* - Works with Next.js Link or standard anchor tags
|
|
99
|
+
*
|
|
100
|
+
* Usage:
|
|
101
|
+
* ```tsx
|
|
102
|
+
* <Link href="/about">About</Link>
|
|
103
|
+
* <Link variant="inline" href="/contact">Contact</Link>
|
|
104
|
+
* <Link href="https://example.com" target="_blank">External</Link>
|
|
105
|
+
* ```
|
|
106
|
+
*/
|
|
107
|
+
declare const Link: ({ ref, children, className, variant, hoverEffect, ...props }: LinkProps & {
|
|
108
|
+
ref?: React__default.Ref<HTMLAnchorElement>;
|
|
109
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
110
|
+
|
|
111
|
+
declare const toggleVariants: (props?: ({
|
|
112
|
+
variant?: "default" | "outline" | null | undefined;
|
|
113
|
+
size?: "lg" | "sm" | "default" | null | undefined;
|
|
114
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
115
|
+
declare const Toggle: ({ ref, className, variant, size, ...props }: React$1.ComponentPropsWithoutRef<typeof TogglePrimitive.Root> & VariantProps<typeof toggleVariants> & {
|
|
116
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof TogglePrimitive.Root>>;
|
|
117
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
118
|
+
|
|
119
|
+
declare const ToggleGroup: ({ ref, className, variant, size, children, ...props }: React$1.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants> & {
|
|
120
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof ToggleGroupPrimitive.Root>>;
|
|
121
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
122
|
+
declare const ToggleGroupItem: ({ ref, className, children, variant, size, ...props }: React$1.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants> & {
|
|
123
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof ToggleGroupPrimitive.Item>>;
|
|
124
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
125
|
+
|
|
126
|
+
interface MagneticProps {
|
|
127
|
+
children: React__default.ReactNode;
|
|
128
|
+
/**
|
|
129
|
+
* The strength of the magnetic pull. Higher numbers = strong pull.
|
|
130
|
+
* @default 0.2
|
|
131
|
+
*/
|
|
132
|
+
strength?: number;
|
|
133
|
+
/**
|
|
134
|
+
* The active area padding around the element in pixels.
|
|
135
|
+
* @default 100
|
|
136
|
+
*/
|
|
137
|
+
range?: number;
|
|
138
|
+
className?: string;
|
|
139
|
+
}
|
|
140
|
+
declare function Magnetic({ children, strength, range, className }: MagneticProps): react_jsx_runtime.JSX.Element;
|
|
141
|
+
|
|
142
|
+
declare const Checkbox: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root> & {
|
|
143
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof CheckboxPrimitive.Root>>;
|
|
144
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
145
|
+
|
|
146
|
+
interface ColorPickerProps {
|
|
147
|
+
label?: string;
|
|
148
|
+
description?: string;
|
|
149
|
+
value: string;
|
|
150
|
+
onChange: (hex: string) => void;
|
|
151
|
+
optional?: boolean;
|
|
152
|
+
disabled?: boolean;
|
|
153
|
+
}
|
|
154
|
+
declare function ColorPicker({ label, description, value, onChange, optional, disabled, }: ColorPickerProps): react_jsx_runtime.JSX.Element;
|
|
155
|
+
|
|
156
|
+
interface ComboboxOption {
|
|
157
|
+
value: string;
|
|
158
|
+
label: string;
|
|
159
|
+
}
|
|
160
|
+
interface ComboboxProps {
|
|
161
|
+
options: ComboboxOption[];
|
|
162
|
+
value?: string;
|
|
163
|
+
onValueChange?: (value: string) => void;
|
|
164
|
+
placeholder?: string;
|
|
165
|
+
searchPlaceholder?: string;
|
|
166
|
+
emptyMessage?: string;
|
|
167
|
+
className?: string;
|
|
168
|
+
disabled?: boolean;
|
|
169
|
+
}
|
|
170
|
+
declare function Combobox({ options, value, onValueChange, placeholder, searchPlaceholder, emptyMessage, className, disabled, }: ComboboxProps): react_jsx_runtime.JSX.Element;
|
|
171
|
+
|
|
172
|
+
interface FilterButtonProps extends React__default.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
173
|
+
active?: boolean;
|
|
174
|
+
count?: number;
|
|
175
|
+
children: React__default.ReactNode;
|
|
176
|
+
/**
|
|
177
|
+
* Shape of the button
|
|
178
|
+
* @default 'pill'
|
|
179
|
+
*/
|
|
180
|
+
shape?: 'pill' | 'rounded';
|
|
181
|
+
}
|
|
182
|
+
declare const FilterButton: ({ ref, active, count, children, shape, className, ...props }: FilterButtonProps & {
|
|
183
|
+
ref?: React__default.Ref<HTMLButtonElement>;
|
|
184
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
185
|
+
|
|
186
|
+
interface InputProps extends React$1.InputHTMLAttributes<HTMLInputElement> {
|
|
187
|
+
}
|
|
188
|
+
declare const Input: ({ ref, className, type, style, ...props }: InputProps & {
|
|
189
|
+
ref?: React$1.Ref<HTMLInputElement>;
|
|
190
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
191
|
+
|
|
192
|
+
declare const InputOTP: ({ ref, className, containerClassName, ...props }: React$1.ComponentPropsWithoutRef<typeof OTPInput> & {
|
|
193
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof OTPInput>>;
|
|
194
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
195
|
+
declare const InputOTPGroup: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<"div"> & {
|
|
196
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
197
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
198
|
+
declare const InputOTPSlot: ({ ref, index, className, ...props }: React$1.ComponentPropsWithoutRef<"div"> & {
|
|
199
|
+
index: number;
|
|
200
|
+
} & {
|
|
201
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
202
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
203
|
+
declare const InputOTPSeparator: ({ ref, ...props }: React$1.ComponentPropsWithoutRef<"div"> & {
|
|
204
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
205
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
206
|
+
|
|
207
|
+
declare const labelVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
208
|
+
declare const Label: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof LabelPrimitive.Root> & VariantProps<typeof labelVariants> & {
|
|
209
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof LabelPrimitive.Root>>;
|
|
210
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
211
|
+
|
|
212
|
+
declare const RadioGroup: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof RadioGroupPrimitive.Root> & {
|
|
213
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof RadioGroupPrimitive.Root>>;
|
|
214
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
215
|
+
declare const RadioGroupItem: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof RadioGroupPrimitive.Item> & {
|
|
216
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof RadioGroupPrimitive.Item>>;
|
|
217
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
218
|
+
|
|
219
|
+
interface TextFieldProps extends Omit<React__default.InputHTMLAttributes<HTMLInputElement>, 'size'> {
|
|
220
|
+
/**
|
|
221
|
+
* Visual variant of the text field
|
|
222
|
+
* @default 'outlined'
|
|
223
|
+
*/
|
|
224
|
+
variant?: 'outlined' | 'filled';
|
|
225
|
+
/**
|
|
226
|
+
* Size of the text field
|
|
227
|
+
* @default 'md'
|
|
228
|
+
*/
|
|
229
|
+
size?: 'sm' | 'md' | 'lg';
|
|
230
|
+
/**
|
|
231
|
+
* Error state
|
|
232
|
+
* @default false
|
|
233
|
+
*/
|
|
234
|
+
error?: boolean;
|
|
235
|
+
/**
|
|
236
|
+
* Helper text displayed below the input
|
|
237
|
+
*/
|
|
238
|
+
helperText?: string;
|
|
239
|
+
/**
|
|
240
|
+
* Label for the input
|
|
241
|
+
*/
|
|
242
|
+
label?: string;
|
|
243
|
+
/**
|
|
244
|
+
* Whether the field is required
|
|
245
|
+
* @default false
|
|
246
|
+
*/
|
|
247
|
+
required?: boolean;
|
|
248
|
+
}
|
|
249
|
+
/**
|
|
250
|
+
* TextField Component
|
|
251
|
+
*
|
|
252
|
+
* A text input field with support for outlined and filled variants,
|
|
253
|
+
* multiple sizes, error states, and helper text.
|
|
254
|
+
*
|
|
255
|
+
* Features:
|
|
256
|
+
* - Two visual variants (outlined, filled)
|
|
257
|
+
* - Three size options (sm, md, lg)
|
|
258
|
+
* - Error state with red border
|
|
259
|
+
* - Optional label and helper text
|
|
260
|
+
* - Theme-aware colors using CSS variables
|
|
261
|
+
* - Full keyboard accessibility
|
|
262
|
+
* - Ref forwarding support
|
|
263
|
+
*/
|
|
264
|
+
declare const TextField: ({ ref, variant, size, error, helperText, label, required, className, id, ...props }: TextFieldProps & {
|
|
265
|
+
ref?: React__default.Ref<HTMLInputElement>;
|
|
266
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
267
|
+
|
|
268
|
+
interface SearchBarProps extends Omit<TextFieldProps, 'variant'> {
|
|
269
|
+
/**
|
|
270
|
+
* Callback fired when search value changes (after debounce)
|
|
271
|
+
*/
|
|
272
|
+
onSearch?: (value: string) => void;
|
|
273
|
+
/**
|
|
274
|
+
* Debounce delay in milliseconds
|
|
275
|
+
* @default 300
|
|
276
|
+
*/
|
|
277
|
+
debounceMs?: number;
|
|
278
|
+
/**
|
|
279
|
+
* Show clear button when input has value
|
|
280
|
+
* @default true
|
|
281
|
+
*/
|
|
282
|
+
showClearButton?: boolean;
|
|
283
|
+
/**
|
|
284
|
+
* Callback fired when clear button is clicked
|
|
285
|
+
*/
|
|
286
|
+
onClear?: () => void;
|
|
287
|
+
/**
|
|
288
|
+
* Keyboard shortcut to display when empty (e.g. "⌘K")
|
|
289
|
+
* @default "⌘K"
|
|
290
|
+
*/
|
|
291
|
+
shortcut?: React__default.ReactNode;
|
|
292
|
+
}
|
|
293
|
+
/**
|
|
294
|
+
* SearchBar Component
|
|
295
|
+
*
|
|
296
|
+
* A specialized text field for search functionality with built-in
|
|
297
|
+
* search icon, optional clear button, shortcut badge, and debounced onChange.
|
|
298
|
+
*
|
|
299
|
+
* **Note:** SearchBar always uses the `outlined` variant and does not
|
|
300
|
+
* accept a variant prop. This ensures consistent search field styling.
|
|
301
|
+
*
|
|
302
|
+
* Features:
|
|
303
|
+
* - Search icon on the left
|
|
304
|
+
* - Optional clear button (X) on the right
|
|
305
|
+
* - Shortcut badge (⌘K) when empty
|
|
306
|
+
* - Debounced search callback to reduce API calls
|
|
307
|
+
* - All TextField features (sizes, error states, etc.)
|
|
308
|
+
* - Theme-aware colors
|
|
309
|
+
* - Keyboard accessible (Escape to clear)
|
|
310
|
+
*
|
|
311
|
+
* Example:
|
|
312
|
+
* ```tsx
|
|
313
|
+
* <SearchBar
|
|
314
|
+
* placeholder="Search products..."
|
|
315
|
+
* onSearch={(query) => fetchResults(query)}
|
|
316
|
+
* debounceMs={500}
|
|
317
|
+
* />
|
|
318
|
+
* ```
|
|
319
|
+
*/
|
|
320
|
+
declare const SearchBar: ({ ref, onSearch, debounceMs, showClearButton, onClear, value: controlledValue, onChange, placeholder, className, shortcut, ...props }: SearchBarProps & {
|
|
321
|
+
ref?: React__default.Ref<HTMLInputElement>;
|
|
322
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
323
|
+
|
|
324
|
+
declare const Select: React$1.FC<_radix_ui_react_select.SelectProps>;
|
|
325
|
+
declare const SelectGroup: React$1.ForwardRefExoticComponent<_radix_ui_react_select.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
326
|
+
declare const SelectValue: React$1.ForwardRefExoticComponent<_radix_ui_react_select.SelectValueProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
327
|
+
declare const SelectTrigger: ({ ref, className, children, style, label, labelClassName, ...props }: ComponentPropsWithoutRef<typeof Trigger> & {
|
|
328
|
+
ref?: React$1.Ref<ElementRef<typeof Trigger>>;
|
|
329
|
+
/** Optional text label rendered above the trigger. */
|
|
330
|
+
label?: string;
|
|
331
|
+
/** Override classes on the label. */
|
|
332
|
+
labelClassName?: string;
|
|
333
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
334
|
+
declare const SelectScrollUpButton: ({ ref, className, ...props }: ComponentPropsWithoutRef<typeof ScrollUpButton> & {
|
|
335
|
+
ref?: React$1.Ref<ElementRef<typeof ScrollUpButton>>;
|
|
336
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
337
|
+
declare const SelectScrollDownButton: ({ ref, className, ...props }: ComponentPropsWithoutRef<typeof ScrollDownButton> & {
|
|
338
|
+
ref?: React$1.Ref<ElementRef<typeof ScrollDownButton>>;
|
|
339
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
340
|
+
declare const SelectContent: ({ ref, className, children, position, style, ...props }: ComponentPropsWithoutRef<typeof Content> & {
|
|
341
|
+
ref?: React$1.Ref<ElementRef<typeof Content>>;
|
|
342
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
343
|
+
declare const SelectLabel: ({ ref, className, ...props }: ComponentPropsWithoutRef<typeof Label$1> & {
|
|
344
|
+
ref?: React$1.Ref<ElementRef<typeof Label$1>>;
|
|
345
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
346
|
+
declare const SelectItem: ({ ref, className, children, ...props }: ComponentPropsWithoutRef<typeof Item> & {
|
|
347
|
+
ref?: React$1.Ref<ElementRef<typeof Item>>;
|
|
348
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
349
|
+
declare const SelectSeparatorComp: ({ ref, className, ...props }: ComponentPropsWithoutRef<typeof Separator$1> & {
|
|
350
|
+
ref?: React$1.Ref<ElementRef<typeof Separator$1>>;
|
|
351
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
352
|
+
|
|
353
|
+
declare const Slider: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof SliderPrimitive.Root> & {
|
|
354
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof SliderPrimitive.Root>>;
|
|
355
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
356
|
+
|
|
357
|
+
declare const Switch: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof SwitchPrimitives.Root> & {
|
|
358
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof SwitchPrimitives.Root>>;
|
|
359
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
360
|
+
|
|
361
|
+
interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
362
|
+
}
|
|
363
|
+
declare const Textarea: ({ ref, className, ...props }: TextareaProps & {
|
|
364
|
+
ref?: React$1.Ref<HTMLTextAreaElement>;
|
|
365
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
366
|
+
|
|
367
|
+
interface ThemeSwitcherProps {
|
|
368
|
+
/**
|
|
369
|
+
* Size of the switcher
|
|
370
|
+
* @default 'md'
|
|
371
|
+
*/
|
|
372
|
+
size?: 'sm' | 'md' | 'lg';
|
|
373
|
+
/**
|
|
374
|
+
* Initial expanded state
|
|
375
|
+
* @default false
|
|
376
|
+
*/
|
|
377
|
+
defaultExpanded?: boolean;
|
|
378
|
+
/**
|
|
379
|
+
* Additional CSS classes
|
|
380
|
+
*/
|
|
381
|
+
className?: string;
|
|
382
|
+
}
|
|
383
|
+
/**
|
|
384
|
+
* ThemeSwitcher Molecule
|
|
385
|
+
*
|
|
386
|
+
* An enhanced theme control panel with expandable options for comprehensive theme management.
|
|
387
|
+
*
|
|
388
|
+
* Features:
|
|
389
|
+
* - Quick toggle between light and dark modes
|
|
390
|
+
* - Expandable panel with additional controls
|
|
391
|
+
* - System/Auto mode preference
|
|
392
|
+
* - Visual preview of current mode
|
|
393
|
+
* - Smooth animations and transitions
|
|
394
|
+
* - Full keyboard accessibility
|
|
395
|
+
* - Theme-aware colors
|
|
396
|
+
*
|
|
397
|
+
* Example:
|
|
398
|
+
* ```tsx
|
|
399
|
+
* // Basic usage
|
|
400
|
+
* <ThemeSwitcher />
|
|
401
|
+
*
|
|
402
|
+
* // Expanded by default
|
|
403
|
+
* <ThemeSwitcher defaultExpanded />
|
|
404
|
+
*
|
|
405
|
+
* // Large size
|
|
406
|
+
* <ThemeSwitcher size="lg" />
|
|
407
|
+
* ```
|
|
408
|
+
*/
|
|
409
|
+
declare const ThemeSwitcher: React__default.FC<ThemeSwitcherProps>;
|
|
410
|
+
|
|
411
|
+
interface ThemeToggleProps {
|
|
412
|
+
/**
|
|
413
|
+
* Size of the toggle button
|
|
414
|
+
* @default 'md'
|
|
415
|
+
*/
|
|
416
|
+
size?: 'sm' | 'md' | 'lg';
|
|
417
|
+
/**
|
|
418
|
+
* Whether to show the mode label next to the icon
|
|
419
|
+
* @default false
|
|
420
|
+
*/
|
|
421
|
+
showLabel?: boolean;
|
|
422
|
+
/**
|
|
423
|
+
* Additional CSS classes
|
|
424
|
+
*/
|
|
425
|
+
className?: string;
|
|
426
|
+
}
|
|
427
|
+
/**
|
|
428
|
+
* ThemeToggle Molecule
|
|
429
|
+
*
|
|
430
|
+
* A button that toggles between light and dark modes with smooth icon transitions.
|
|
431
|
+
*
|
|
432
|
+
* Features:
|
|
433
|
+
* - Automatic mode detection from theme context
|
|
434
|
+
* - Smooth icon transition between sun (light) and moon (dark)
|
|
435
|
+
* - Three size variants
|
|
436
|
+
* - Optional text label
|
|
437
|
+
* - Full keyboard accessibility
|
|
438
|
+
* - ARIA labels for screen readers
|
|
439
|
+
* - Theme-aware colors
|
|
440
|
+
*
|
|
441
|
+
* Example:
|
|
442
|
+
* ```tsx
|
|
443
|
+
* // Simple icon-only toggle
|
|
444
|
+
* <ThemeToggle />
|
|
445
|
+
*
|
|
446
|
+
* // With label
|
|
447
|
+
* <ThemeToggle showLabel />
|
|
448
|
+
*
|
|
449
|
+
* // Large size with label
|
|
450
|
+
* <ThemeToggle size="lg" showLabel />
|
|
451
|
+
* ```
|
|
452
|
+
*/
|
|
453
|
+
declare const ThemeToggle: React__default.FC<ThemeToggleProps>;
|
|
454
|
+
|
|
455
|
+
declare const fileUploadZoneVariants: (props?: ({
|
|
456
|
+
state?: "disabled" | "active" | "idle" | "reject" | null | undefined;
|
|
457
|
+
size?: "lg" | "sm" | "default" | null | undefined;
|
|
458
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
459
|
+
interface FileUploadProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onDrop'> {
|
|
460
|
+
/** Accepted file types (MIME types) */
|
|
461
|
+
accept?: Accept;
|
|
462
|
+
/** Max file size in bytes */
|
|
463
|
+
maxSize?: number;
|
|
464
|
+
/** Max number of files */
|
|
465
|
+
maxFiles?: number;
|
|
466
|
+
/** Allow multiple file selection */
|
|
467
|
+
multiple?: boolean;
|
|
468
|
+
/** Disabled state */
|
|
469
|
+
disabled?: boolean;
|
|
470
|
+
/** Called when valid files are dropped/selected */
|
|
471
|
+
onFilesSelected?: (files: File[]) => void;
|
|
472
|
+
/** Called when files are rejected */
|
|
473
|
+
onFilesRejected?: (rejections: FileRejection[]) => void;
|
|
474
|
+
/** Label text */
|
|
475
|
+
label?: string;
|
|
476
|
+
/** Description text shown in the drop zone */
|
|
477
|
+
description?: string;
|
|
478
|
+
/** Size variant */
|
|
479
|
+
size?: "sm" | "default" | "lg";
|
|
480
|
+
}
|
|
481
|
+
declare function FileUpload({ className, accept, maxSize, maxFiles, multiple, disabled, onFilesSelected, onFilesRejected, label, description, size, ...props }: FileUploadProps): react_jsx_runtime.JSX.Element;
|
|
482
|
+
|
|
483
|
+
declare const Breadcrumb: ({ ref, ...props }: React$1.ComponentPropsWithoutRef<"nav"> & {
|
|
484
|
+
separator?: React$1.ReactNode;
|
|
485
|
+
} & {
|
|
486
|
+
ref?: React$1.Ref<HTMLElement>;
|
|
487
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
488
|
+
declare const BreadcrumbList: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<"ol"> & {
|
|
489
|
+
ref?: React$1.Ref<HTMLOListElement>;
|
|
490
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
491
|
+
declare const BreadcrumbItem: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<"li"> & {
|
|
492
|
+
ref?: React$1.Ref<HTMLLIElement>;
|
|
493
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
494
|
+
declare const BreadcrumbLink: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<"a"> & {
|
|
495
|
+
asChild?: boolean;
|
|
496
|
+
} & {
|
|
497
|
+
ref?: React$1.Ref<HTMLAnchorElement>;
|
|
498
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
499
|
+
declare const BreadcrumbPage: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<"span"> & {
|
|
500
|
+
ref?: React$1.Ref<HTMLSpanElement>;
|
|
501
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
502
|
+
declare const BreadcrumbSeparator: {
|
|
503
|
+
({ children, className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
504
|
+
displayName: string;
|
|
505
|
+
};
|
|
506
|
+
declare const BreadcrumbEllipsis: {
|
|
507
|
+
({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
508
|
+
displayName: string;
|
|
509
|
+
};
|
|
510
|
+
|
|
511
|
+
declare function Dialog({ ...props }: React$1.ComponentProps<typeof SheetPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
512
|
+
declare function DialogTrigger({ ...props }: React$1.ComponentProps<typeof SheetPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
513
|
+
declare function DialogPortal({ ...props }: React$1.ComponentProps<typeof SheetPrimitive.Portal>): react_jsx_runtime.JSX.Element;
|
|
514
|
+
declare function DialogClose({ ...props }: React$1.ComponentProps<typeof SheetPrimitive.Close>): react_jsx_runtime.JSX.Element;
|
|
515
|
+
declare function DialogOverlay({ className, style, ...props }: React$1.ComponentProps<typeof SheetPrimitive.Overlay>): react_jsx_runtime.JSX.Element;
|
|
516
|
+
declare function DialogContent({ className, children, showCloseButton, style, ...props }: React$1.ComponentProps<typeof SheetPrimitive.Content> & {
|
|
517
|
+
showCloseButton?: boolean;
|
|
518
|
+
}): react_jsx_runtime.JSX.Element;
|
|
519
|
+
declare function DialogHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
520
|
+
declare function DialogFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
521
|
+
declare function DialogTitle({ className, ...props }: React$1.ComponentProps<typeof SheetPrimitive.Title>): react_jsx_runtime.JSX.Element;
|
|
522
|
+
declare function DialogDescription({ className, ...props }: React$1.ComponentProps<typeof SheetPrimitive.Description>): react_jsx_runtime.JSX.Element;
|
|
523
|
+
|
|
524
|
+
declare const Command: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof Command$1> & {
|
|
525
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof Command$1>>;
|
|
526
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
527
|
+
declare const CommandDialog: ({ children, ...props }: React$1.ComponentProps<typeof Dialog>) => react_jsx_runtime.JSX.Element;
|
|
528
|
+
declare const CommandInput: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof Command$1.Input> & {
|
|
529
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof Command$1.Input>>;
|
|
530
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
531
|
+
declare const CommandList: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof Command$1.List> & {
|
|
532
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof Command$1.List>>;
|
|
533
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
534
|
+
declare const CommandEmpty: ({ ref, ...props }: React$1.ComponentPropsWithoutRef<typeof Command$1.Empty> & {
|
|
535
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof Command$1.Empty>>;
|
|
536
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
537
|
+
declare const CommandGroup: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof Command$1.Group> & {
|
|
538
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof Command$1.Group>>;
|
|
539
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
540
|
+
declare const CommandSeparator: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof Command$1.Separator> & {
|
|
541
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof Command$1.Separator>>;
|
|
542
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
543
|
+
declare const CommandItem: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof Command$1.Item> & {
|
|
544
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof Command$1.Item>>;
|
|
545
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
546
|
+
declare const CommandShortcut: {
|
|
547
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
548
|
+
displayName: string;
|
|
549
|
+
};
|
|
550
|
+
|
|
551
|
+
declare const MenubarMenu: typeof MenubarPrimitive.Menu;
|
|
552
|
+
declare const MenubarGroup: typeof MenubarPrimitive.Group;
|
|
553
|
+
declare const MenubarPortal: typeof MenubarPrimitive.Portal;
|
|
554
|
+
declare const MenubarSub: typeof MenubarPrimitive.Sub;
|
|
555
|
+
declare const MenubarRadioGroup: typeof MenubarPrimitive.RadioGroup;
|
|
556
|
+
declare const Menubar: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof MenubarPrimitive.Root> & {
|
|
557
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof MenubarPrimitive.Root>>;
|
|
558
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
559
|
+
declare const MenubarTrigger: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof MenubarPrimitive.Trigger> & {
|
|
560
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof MenubarPrimitive.Trigger>>;
|
|
561
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
562
|
+
declare const MenubarContent: ({ ref, className, align, alignOffset, sideOffset, style, ...props }: React$1.ComponentPropsWithoutRef<typeof MenubarPrimitive.Content> & {
|
|
563
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof MenubarPrimitive.Content>>;
|
|
564
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
565
|
+
declare const MenubarItem: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof MenubarPrimitive.Item> & {
|
|
566
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof MenubarPrimitive.Item>>;
|
|
567
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
568
|
+
declare const MenubarSeparator: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof MenubarPrimitive.Separator> & {
|
|
569
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof MenubarPrimitive.Separator>>;
|
|
570
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
571
|
+
declare const MenubarShortcut: {
|
|
572
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
573
|
+
displayName: string;
|
|
574
|
+
};
|
|
575
|
+
|
|
576
|
+
interface NavLinkProps extends React__default.AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
577
|
+
active?: boolean;
|
|
578
|
+
children?: React__default.ReactNode;
|
|
579
|
+
icon?: React__default.ReactNode;
|
|
580
|
+
variant?: 'pill' | 'minimal';
|
|
581
|
+
}
|
|
582
|
+
declare const NavLink: ({ ref, active, children, icon, variant, className, ...props }: NavLinkProps & {
|
|
583
|
+
ref?: React__default.Ref<HTMLAnchorElement>;
|
|
584
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
585
|
+
|
|
586
|
+
declare const NavigationMenu: ({ ref, className, children, ...props }: React$1.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Root> & {
|
|
587
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof NavigationMenuPrimitive.Root>>;
|
|
588
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
589
|
+
declare const NavigationMenuList: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.List> & {
|
|
590
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof NavigationMenuPrimitive.List>>;
|
|
591
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
592
|
+
declare const NavigationMenuItem: React$1.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuItemProps & React$1.RefAttributes<HTMLLIElement>>;
|
|
593
|
+
declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
594
|
+
declare const NavigationMenuTrigger: ({ ref, className, children, ...props }: React$1.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Trigger> & {
|
|
595
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof NavigationMenuPrimitive.Trigger>>;
|
|
596
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
597
|
+
declare const NavigationMenuContent: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Content> & {
|
|
598
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof NavigationMenuPrimitive.Content>>;
|
|
599
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
600
|
+
declare const NavigationMenuLink: React$1.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuLinkProps & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
601
|
+
declare const NavigationMenuViewport: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Viewport> & {
|
|
602
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof NavigationMenuPrimitive.Viewport>>;
|
|
603
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
604
|
+
declare const NavigationMenuIndicator: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Indicator> & {
|
|
605
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof NavigationMenuPrimitive.Indicator>>;
|
|
606
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
607
|
+
|
|
608
|
+
declare const Pagination: {
|
|
609
|
+
({ className, ...props }: React$1.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
|
|
610
|
+
displayName: string;
|
|
611
|
+
};
|
|
612
|
+
declare const PaginationContent: ({ ref, className, ...props }: React$1.ComponentProps<"ul"> & {
|
|
613
|
+
ref?: React$1.Ref<HTMLUListElement>;
|
|
614
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
615
|
+
declare const PaginationItem: ({ ref, className, ...props }: React$1.ComponentProps<"li"> & {
|
|
616
|
+
ref?: React$1.Ref<HTMLLIElement>;
|
|
617
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
618
|
+
type PaginationLinkProps = {
|
|
619
|
+
isActive?: boolean;
|
|
620
|
+
} & Pick<ButtonProps, "size"> & React$1.ComponentProps<"a">;
|
|
621
|
+
declare const PaginationLink: {
|
|
622
|
+
({ className, isActive, size, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
|
|
623
|
+
displayName: string;
|
|
624
|
+
};
|
|
625
|
+
declare const PaginationPrevious: {
|
|
626
|
+
({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
|
|
627
|
+
displayName: string;
|
|
628
|
+
};
|
|
629
|
+
declare const PaginationNext: {
|
|
630
|
+
({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
|
|
631
|
+
displayName: string;
|
|
632
|
+
};
|
|
633
|
+
declare const PaginationEllipsis: {
|
|
634
|
+
({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
635
|
+
displayName: string;
|
|
636
|
+
};
|
|
637
|
+
|
|
638
|
+
interface SecondaryNavItem {
|
|
639
|
+
id: string;
|
|
640
|
+
label: string;
|
|
641
|
+
icon?: React__default.ReactNode;
|
|
642
|
+
}
|
|
643
|
+
interface SecondaryNavProps {
|
|
644
|
+
/**
|
|
645
|
+
* Array of navigation items
|
|
646
|
+
*/
|
|
647
|
+
items: SecondaryNavItem[];
|
|
648
|
+
/**
|
|
649
|
+
* Currently active item ID
|
|
650
|
+
*/
|
|
651
|
+
activeId: string;
|
|
652
|
+
/**
|
|
653
|
+
* Callback when an item is selected
|
|
654
|
+
*/
|
|
655
|
+
onItemChange: (id: string) => void;
|
|
656
|
+
/**
|
|
657
|
+
* Maximum width for content container (should match page variant)
|
|
658
|
+
* @default 'max-w-7xl'
|
|
659
|
+
*/
|
|
660
|
+
maxWidth?: 'max-w-7xl' | 'max-w-[1440px]' | 'max-w-4xl';
|
|
661
|
+
/**
|
|
662
|
+
* Additional className for customization
|
|
663
|
+
*/
|
|
664
|
+
className?: string;
|
|
665
|
+
/**
|
|
666
|
+
* Sticky behavior mode
|
|
667
|
+
* - 'stacked': Positions automatically below Header (default)
|
|
668
|
+
* - 'standalone': Sticks to top of viewport (0px)
|
|
669
|
+
* @default 'stacked'
|
|
670
|
+
*/
|
|
671
|
+
mode?: 'stacked' | 'standalone';
|
|
672
|
+
/**
|
|
673
|
+
* Top offset for sticky positioning.
|
|
674
|
+
* Overrides 'mode' if provided.
|
|
675
|
+
*/
|
|
676
|
+
top?: string;
|
|
677
|
+
}
|
|
678
|
+
/**
|
|
679
|
+
* Secondary Navigation Component
|
|
680
|
+
* ... (keep existing comment block) ...
|
|
681
|
+
*/
|
|
682
|
+
declare const SecondaryNav: ({ ref, items, activeId, onItemChange, maxWidth, mode, top, className }: SecondaryNavProps & {
|
|
683
|
+
ref?: React__default.Ref<HTMLElement>;
|
|
684
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
685
|
+
|
|
686
|
+
declare const Tabs: React$1.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
687
|
+
declare const TabsList: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof TabsPrimitive.List> & {
|
|
688
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof TabsPrimitive.List>>;
|
|
689
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
690
|
+
declare const TabsTrigger: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof TabsPrimitive.Trigger> & {
|
|
691
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof TabsPrimitive.Trigger>>;
|
|
692
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
693
|
+
declare const TabsContent: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof TabsPrimitive.Content> & {
|
|
694
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof TabsPrimitive.Content>>;
|
|
695
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
696
|
+
|
|
697
|
+
interface TertiaryNavItem {
|
|
698
|
+
id: string;
|
|
699
|
+
label: string;
|
|
700
|
+
}
|
|
701
|
+
interface TertiaryNavProps {
|
|
702
|
+
/**
|
|
703
|
+
* Array of navigation items
|
|
704
|
+
*/
|
|
705
|
+
items: TertiaryNavItem[];
|
|
706
|
+
/**
|
|
707
|
+
* Currently active item ID
|
|
708
|
+
*/
|
|
709
|
+
activeId: string;
|
|
710
|
+
/**
|
|
711
|
+
* Callback when an item is selected
|
|
712
|
+
*/
|
|
713
|
+
onItemChange: (id: string) => void;
|
|
714
|
+
/**
|
|
715
|
+
* Additional className for customization
|
|
716
|
+
*/
|
|
717
|
+
className?: string;
|
|
718
|
+
/**
|
|
719
|
+
* Sticky behavior mode
|
|
720
|
+
* - 'stacked': Positions automatically below SecondaryNav (default)
|
|
721
|
+
* - 'standalone': Sticks to top of viewport (0px)
|
|
722
|
+
* @default 'stacked'
|
|
723
|
+
*/
|
|
724
|
+
mode?: 'stacked' | 'standalone';
|
|
725
|
+
/**
|
|
726
|
+
* Top offset for sticky positioning.
|
|
727
|
+
* Overrides 'mode' if provided.
|
|
728
|
+
*/
|
|
729
|
+
top?: string;
|
|
730
|
+
}
|
|
731
|
+
/**
|
|
732
|
+
* Tertiary Navigation Component
|
|
733
|
+
* ... (keep existing comment block) ...
|
|
734
|
+
*/
|
|
735
|
+
declare const TertiaryNav: ({ ref, items, activeId, onItemChange, mode, top, className }: TertiaryNavProps & {
|
|
736
|
+
ref?: React__default.Ref<HTMLElement>;
|
|
737
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
738
|
+
|
|
739
|
+
declare const AlertDialog: React$1.FC<AlertDialogPrimitive.AlertDialogProps>;
|
|
740
|
+
declare const AlertDialogTrigger: React$1.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
741
|
+
declare const AlertDialogPortal: React$1.FC<AlertDialogPrimitive.AlertDialogPortalProps>;
|
|
742
|
+
declare const AlertDialogOverlay: ({ ref, className, style, ...props }: React$1.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Overlay> & {
|
|
743
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof AlertDialogPrimitive.Overlay>>;
|
|
744
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
745
|
+
declare const AlertDialogContent: ({ ref, className, style, ...props }: React$1.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Content> & {
|
|
746
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof AlertDialogPrimitive.Content>>;
|
|
747
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
748
|
+
declare const AlertDialogHeader: {
|
|
749
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
750
|
+
displayName: string;
|
|
751
|
+
};
|
|
752
|
+
declare const AlertDialogFooter: {
|
|
753
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
754
|
+
displayName: string;
|
|
755
|
+
};
|
|
756
|
+
declare const AlertDialogTitle: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Title> & {
|
|
757
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof AlertDialogPrimitive.Title>>;
|
|
758
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
759
|
+
declare const AlertDialogDescription: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Description> & {
|
|
760
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof AlertDialogPrimitive.Description>>;
|
|
761
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
762
|
+
declare const AlertDialogAction: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Action> & {
|
|
763
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof AlertDialogPrimitive.Action>>;
|
|
764
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
765
|
+
declare const AlertDialogCancel: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Cancel> & {
|
|
766
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof AlertDialogPrimitive.Cancel>>;
|
|
767
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
768
|
+
|
|
769
|
+
declare const ContextMenu: React$1.FC<ContextMenuPrimitive.ContextMenuProps>;
|
|
770
|
+
declare const ContextMenuTrigger: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuTriggerProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
771
|
+
declare const ContextMenuGroup: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
772
|
+
declare const ContextMenuPortal: React$1.FC<ContextMenuPrimitive.ContextMenuPortalProps>;
|
|
773
|
+
declare const ContextMenuSub: React$1.FC<ContextMenuPrimitive.ContextMenuSubProps>;
|
|
774
|
+
declare const ContextMenuRadioGroup: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
775
|
+
declare const ContextMenuSubTrigger: ({ ref, className, inset, children, ...props }: React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.SubTrigger> & {
|
|
776
|
+
inset?: boolean;
|
|
777
|
+
} & {
|
|
778
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof ContextMenuPrimitive.SubTrigger>>;
|
|
779
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
780
|
+
declare const ContextMenuSubContent: ({ ref, className, style, ...props }: React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.SubContent> & {
|
|
781
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof ContextMenuPrimitive.SubContent>>;
|
|
782
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
783
|
+
declare const ContextMenuContent: ({ ref, className, style, ...props }: React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Content> & {
|
|
784
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof ContextMenuPrimitive.Content>>;
|
|
785
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
786
|
+
declare const ContextMenuItem: ({ ref, className, inset, ...props }: React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Item> & {
|
|
787
|
+
inset?: boolean;
|
|
788
|
+
} & {
|
|
789
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof ContextMenuPrimitive.Item>>;
|
|
790
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
791
|
+
declare const ContextMenuCheckboxItem: ({ ref, className, children, checked, ...props }: React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.CheckboxItem> & {
|
|
792
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof ContextMenuPrimitive.CheckboxItem>>;
|
|
793
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
794
|
+
declare const ContextMenuRadioItem: ({ ref, className, children, ...props }: React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.RadioItem> & {
|
|
795
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof ContextMenuPrimitive.RadioItem>>;
|
|
796
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
797
|
+
declare const ContextMenuLabel: ({ ref, className, inset, ...props }: React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Label> & {
|
|
798
|
+
inset?: boolean;
|
|
799
|
+
} & {
|
|
800
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof ContextMenuPrimitive.Label>>;
|
|
801
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
802
|
+
declare const ContextMenuSeparator: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Separator> & {
|
|
803
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof ContextMenuPrimitive.Separator>>;
|
|
804
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
805
|
+
declare const ContextMenuShortcut: {
|
|
806
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
807
|
+
displayName: string;
|
|
808
|
+
};
|
|
809
|
+
|
|
810
|
+
declare const Drawer: typeof Drawer$1.Root;
|
|
811
|
+
declare const DrawerTrigger: typeof Drawer$1.Trigger;
|
|
812
|
+
declare const DrawerPortal: typeof Drawer$1.Portal;
|
|
813
|
+
declare const DrawerClose: typeof Drawer$1.Close;
|
|
814
|
+
declare const DrawerOverlay: ({ ref, className, style, ...props }: React$1.ComponentPropsWithoutRef<typeof Drawer$1.Overlay> & {
|
|
815
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof Drawer$1.Overlay>>;
|
|
816
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
817
|
+
declare const DrawerContent: ({ ref, className, children, style, ...props }: React$1.ComponentPropsWithoutRef<typeof Drawer$1.Content> & {
|
|
818
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof Drawer$1.Content>>;
|
|
819
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
820
|
+
declare const DrawerHeader: {
|
|
821
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
822
|
+
displayName: string;
|
|
823
|
+
};
|
|
824
|
+
declare const DrawerFooter: {
|
|
825
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
826
|
+
displayName: string;
|
|
827
|
+
};
|
|
828
|
+
declare const DrawerTitle: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof Drawer$1.Title> & {
|
|
829
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof Drawer$1.Title>>;
|
|
830
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
831
|
+
declare const DrawerDescription: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof Drawer$1.Description> & {
|
|
832
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof Drawer$1.Description>>;
|
|
833
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
834
|
+
|
|
835
|
+
interface DropdownItem {
|
|
836
|
+
label: string;
|
|
837
|
+
value: string;
|
|
838
|
+
disabled?: boolean;
|
|
839
|
+
icon?: React__default.ReactNode;
|
|
840
|
+
divider?: boolean;
|
|
841
|
+
}
|
|
842
|
+
interface DropdownProps {
|
|
843
|
+
/**
|
|
844
|
+
* Trigger element (button, link, etc.)
|
|
845
|
+
*/
|
|
846
|
+
trigger: React__default.ReactNode;
|
|
847
|
+
/**
|
|
848
|
+
* Dropdown menu items
|
|
849
|
+
*/
|
|
850
|
+
items: DropdownItem[];
|
|
851
|
+
/**
|
|
852
|
+
* Callback when an item is selected
|
|
853
|
+
*/
|
|
854
|
+
onSelect?: (value: string) => void;
|
|
855
|
+
/**
|
|
856
|
+
* Dropdown alignment relative to trigger
|
|
857
|
+
* @default 'left'
|
|
858
|
+
*/
|
|
859
|
+
align?: 'left' | 'right' | 'center';
|
|
860
|
+
/**
|
|
861
|
+
* Additional CSS classes for the dropdown menu
|
|
862
|
+
*/
|
|
863
|
+
className?: string;
|
|
864
|
+
}
|
|
865
|
+
/**
|
|
866
|
+
* Dropdown Component
|
|
867
|
+
*
|
|
868
|
+
* A menu that appears when clicking a trigger element.
|
|
869
|
+
*
|
|
870
|
+
* Features:
|
|
871
|
+
* - Click outside to close
|
|
872
|
+
* - Keyboard navigation (Arrow keys, Enter, Escape)
|
|
873
|
+
* - Flexible trigger element
|
|
874
|
+
* - Optional icons
|
|
875
|
+
* - Dividers between items
|
|
876
|
+
* - Theme-aware styling
|
|
877
|
+
* - Smooth animations
|
|
878
|
+
*
|
|
879
|
+
* Example:
|
|
880
|
+
* ```tsx
|
|
881
|
+
* <Dropdown
|
|
882
|
+
* trigger={<Button>Actions</Button>}
|
|
883
|
+
* items={[
|
|
884
|
+
* { label: 'Edit', value: 'edit', icon: <EditIcon /> },
|
|
885
|
+
* { label: 'Delete', value: 'delete', icon: <DeleteIcon /> },
|
|
886
|
+
* { label: 'Divider', value: 'div', divider: true },
|
|
887
|
+
* { label: 'Archive', value: 'archive' },
|
|
888
|
+
* ]}
|
|
889
|
+
* onSelect={(value) => handleAction(value)}
|
|
890
|
+
* />
|
|
891
|
+
* ```
|
|
892
|
+
*/
|
|
893
|
+
declare const Dropdown: React__default.FC<DropdownProps>;
|
|
894
|
+
|
|
895
|
+
declare const DropdownMenu: React$1.FC<DropdownMenuPrimitive.DropdownMenuProps>;
|
|
896
|
+
declare const DropdownMenuTrigger: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
897
|
+
declare const DropdownMenuGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
898
|
+
declare const DropdownMenuPortal: React$1.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
|
|
899
|
+
declare const DropdownMenuSub: React$1.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
|
|
900
|
+
declare const DropdownMenuRadioGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
901
|
+
declare const DropdownMenuSubTrigger: ({ ref, className, inset, children, ...props }: React$1.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.SubTrigger> & {
|
|
902
|
+
inset?: boolean;
|
|
903
|
+
} & {
|
|
904
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof DropdownMenuPrimitive.SubTrigger>>;
|
|
905
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
906
|
+
declare const DropdownMenuSubContent: ({ ref, className, style, ...props }: React$1.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.SubContent> & {
|
|
907
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof DropdownMenuPrimitive.SubContent>>;
|
|
908
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
909
|
+
declare const DropdownMenuContent: ({ ref, className, sideOffset, style, ...props }: React$1.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Content> & {
|
|
910
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof DropdownMenuPrimitive.Content>>;
|
|
911
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
912
|
+
declare const DropdownMenuItem: ({ ref, className, inset, ...props }: React$1.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Item> & {
|
|
913
|
+
inset?: boolean;
|
|
914
|
+
} & {
|
|
915
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof DropdownMenuPrimitive.Item>>;
|
|
916
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
917
|
+
declare const DropdownMenuCheckboxItem: ({ ref, className, children, checked, ...props }: React$1.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.CheckboxItem> & {
|
|
918
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof DropdownMenuPrimitive.CheckboxItem>>;
|
|
919
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
920
|
+
declare const DropdownMenuRadioItem: ({ ref, className, children, ...props }: React$1.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.RadioItem> & {
|
|
921
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof DropdownMenuPrimitive.RadioItem>>;
|
|
922
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
923
|
+
declare const DropdownMenuLabel: ({ ref, className, inset, ...props }: React$1.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Label> & {
|
|
924
|
+
inset?: boolean;
|
|
925
|
+
} & {
|
|
926
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof DropdownMenuPrimitive.Label>>;
|
|
927
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
928
|
+
declare const DropdownMenuSeparator: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Separator> & {
|
|
929
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof DropdownMenuPrimitive.Separator>>;
|
|
930
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
931
|
+
declare const DropdownMenuShortcut: {
|
|
932
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
933
|
+
displayName: string;
|
|
934
|
+
};
|
|
935
|
+
|
|
936
|
+
declare const HoverCard: React$1.FC<HoverCardPrimitive.HoverCardProps>;
|
|
937
|
+
declare const HoverCardTrigger: React$1.ForwardRefExoticComponent<HoverCardPrimitive.HoverCardTriggerProps & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
938
|
+
declare const HoverCardContent: ({ ref, className, align, sideOffset, ...props }: React$1.ComponentPropsWithoutRef<typeof HoverCardPrimitive.Content> & {
|
|
939
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof HoverCardPrimitive.Content>>;
|
|
940
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
941
|
+
|
|
942
|
+
interface ModalProps {
|
|
943
|
+
/**
|
|
944
|
+
* Whether the modal is open
|
|
945
|
+
*/
|
|
946
|
+
isOpen: boolean;
|
|
947
|
+
/**
|
|
948
|
+
* Callback fired when the modal should close
|
|
949
|
+
*/
|
|
950
|
+
onClose: () => void;
|
|
951
|
+
/**
|
|
952
|
+
* Modal title (optional)
|
|
953
|
+
*/
|
|
954
|
+
title?: string;
|
|
955
|
+
/**
|
|
956
|
+
* Modal content
|
|
957
|
+
*/
|
|
958
|
+
children: React__default.ReactNode;
|
|
959
|
+
/**
|
|
960
|
+
* Footer content (typically buttons)
|
|
961
|
+
*/
|
|
962
|
+
footer?: React__default.ReactNode;
|
|
963
|
+
/**
|
|
964
|
+
* Size of the modal
|
|
965
|
+
* @default 'md'
|
|
966
|
+
*/
|
|
967
|
+
size?: 'sm' | 'md' | 'lg' | 'xl' | 'full';
|
|
968
|
+
/**
|
|
969
|
+
* Whether clicking the overlay closes the modal
|
|
970
|
+
* @default true
|
|
971
|
+
*/
|
|
972
|
+
closeOnOverlayClick?: boolean;
|
|
973
|
+
/**
|
|
974
|
+
* Whether pressing Escape closes the modal
|
|
975
|
+
* @default true
|
|
976
|
+
*/
|
|
977
|
+
closeOnEscape?: boolean;
|
|
978
|
+
/**
|
|
979
|
+
* Additional CSS classes for the modal content
|
|
980
|
+
*/
|
|
981
|
+
className?: string;
|
|
982
|
+
}
|
|
983
|
+
/**
|
|
984
|
+
* Modal Component
|
|
985
|
+
*
|
|
986
|
+
* A dialog overlay for focused user interactions.
|
|
987
|
+
*
|
|
988
|
+
* Features:
|
|
989
|
+
* - Keyboard accessible (Escape to close, focus trap)
|
|
990
|
+
* - Click outside to close (optional)
|
|
991
|
+
* - Multiple size variants
|
|
992
|
+
* - Smooth animations
|
|
993
|
+
* - Blocks body scroll when open
|
|
994
|
+
* - Theme-aware styling
|
|
995
|
+
*
|
|
996
|
+
* Example:
|
|
997
|
+
* ```tsx
|
|
998
|
+
* const [isOpen, setIsOpen] = useState(false);
|
|
999
|
+
*
|
|
1000
|
+
* <Modal
|
|
1001
|
+
* isOpen={isOpen}
|
|
1002
|
+
* onClose={() => setIsOpen(false)}
|
|
1003
|
+
* title="Confirm Action"
|
|
1004
|
+
* footer={
|
|
1005
|
+
* <>
|
|
1006
|
+
* <Button variant="ghost" onClick={() => setIsOpen(false)}>Cancel</Button>
|
|
1007
|
+
* <Button onClick={handleConfirm}>Confirm</Button>
|
|
1008
|
+
* </>
|
|
1009
|
+
* }
|
|
1010
|
+
* >
|
|
1011
|
+
* <p>Are you sure you want to continue?</p>
|
|
1012
|
+
* </Modal>
|
|
1013
|
+
* ```
|
|
1014
|
+
*/
|
|
1015
|
+
declare const Modal: React__default.FC<ModalProps>;
|
|
1016
|
+
|
|
1017
|
+
declare const Popover: React$1.FC<PopoverPrimitive.PopoverProps>;
|
|
1018
|
+
declare const PopoverTrigger: React$1.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1019
|
+
declare const PopoverAnchor: React$1.ForwardRefExoticComponent<PopoverPrimitive.PopoverAnchorProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1020
|
+
declare const PopoverContent: ({ ref, className, align, sideOffset, style, ...props }: React$1.ComponentPropsWithoutRef<typeof PopoverPrimitive.Content> & {
|
|
1021
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof PopoverPrimitive.Content>>;
|
|
1022
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1023
|
+
|
|
1024
|
+
declare const Sheet: React$1.FC<SheetPrimitive.DialogProps>;
|
|
1025
|
+
declare const SheetTrigger: React$1.ForwardRefExoticComponent<SheetPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1026
|
+
declare const SheetClose: React$1.ForwardRefExoticComponent<SheetPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1027
|
+
declare const SheetPortal: React$1.FC<SheetPrimitive.DialogPortalProps>;
|
|
1028
|
+
declare const SheetOverlay: ({ ref, className, style, ...props }: React$1.ComponentPropsWithoutRef<typeof SheetPrimitive.Overlay> & {
|
|
1029
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof SheetPrimitive.Overlay>>;
|
|
1030
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1031
|
+
declare const sheetVariants: (props?: ({
|
|
1032
|
+
side?: "left" | "top" | "bottom" | "right" | null | undefined;
|
|
1033
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1034
|
+
interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof SheetPrimitive.Content>, VariantProps<typeof sheetVariants> {
|
|
1035
|
+
}
|
|
1036
|
+
declare const SheetContent: ({ ref, side, className, children, style, ...props }: SheetContentProps & {
|
|
1037
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof SheetPrimitive.Content>>;
|
|
1038
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1039
|
+
declare const SheetHeader: {
|
|
1040
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
1041
|
+
displayName: string;
|
|
1042
|
+
};
|
|
1043
|
+
declare const SheetFooter: {
|
|
1044
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
1045
|
+
displayName: string;
|
|
1046
|
+
};
|
|
1047
|
+
declare const SheetTitle: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof SheetPrimitive.Title> & {
|
|
1048
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof SheetPrimitive.Title>>;
|
|
1049
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1050
|
+
declare const SheetDescription: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof SheetPrimitive.Description> & {
|
|
1051
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof SheetPrimitive.Description>>;
|
|
1052
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1053
|
+
|
|
1054
|
+
declare const TooltipProvider: React$1.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
1055
|
+
declare const Tooltip: React$1.FC<TooltipPrimitive.TooltipProps>;
|
|
1056
|
+
declare const TooltipTrigger: React$1.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1057
|
+
declare const TooltipContent: ({ ref, className, sideOffset, ...props }: React$1.ComponentPropsWithoutRef<typeof TooltipPrimitive.Content> & {
|
|
1058
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof TooltipPrimitive.Content>>;
|
|
1059
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1060
|
+
|
|
1061
|
+
interface NotificationItem {
|
|
1062
|
+
id: string;
|
|
1063
|
+
title: string;
|
|
1064
|
+
description?: string;
|
|
1065
|
+
timestamp: string | Date;
|
|
1066
|
+
read?: boolean;
|
|
1067
|
+
icon?: React$1.ReactNode;
|
|
1068
|
+
action?: {
|
|
1069
|
+
label: string;
|
|
1070
|
+
onClick: () => void;
|
|
1071
|
+
};
|
|
1072
|
+
}
|
|
1073
|
+
interface NotificationCenterProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1074
|
+
/** Array of notification items */
|
|
1075
|
+
notifications: NotificationItem[];
|
|
1076
|
+
/** Callback when a notification is marked as read */
|
|
1077
|
+
onMarkRead?: (id: string) => void;
|
|
1078
|
+
/** Callback to mark all notifications as read */
|
|
1079
|
+
onMarkAllRead?: () => void;
|
|
1080
|
+
/** Callback when a notification is dismissed */
|
|
1081
|
+
onDismiss?: (id: string) => void;
|
|
1082
|
+
/** Custom trigger element (defaults to bell icon with badge) */
|
|
1083
|
+
trigger?: React$1.ReactNode;
|
|
1084
|
+
/** Maximum height of the notification list */
|
|
1085
|
+
maxHeight?: number;
|
|
1086
|
+
/** Empty state message */
|
|
1087
|
+
emptyMessage?: string;
|
|
1088
|
+
}
|
|
1089
|
+
declare function NotificationCenter({ className, notifications, onMarkRead, onMarkAllRead, onDismiss, trigger, maxHeight, emptyMessage, ...props }: NotificationCenterProps): react_jsx_runtime.JSX.Element;
|
|
1090
|
+
|
|
1091
|
+
declare const alertVariants: (props?: ({
|
|
1092
|
+
variant?: "default" | "destructive" | null | undefined;
|
|
1093
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1094
|
+
declare function Alert({ className, variant, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof alertVariants>): react_jsx_runtime.JSX.Element;
|
|
1095
|
+
declare function AlertTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
1096
|
+
declare function AlertDescription({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
1097
|
+
|
|
1098
|
+
declare const Progress: ({ ref, className, value, ...props }: React$1.ComponentPropsWithoutRef<typeof ProgressPrimitive.Root> & {
|
|
1099
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof ProgressPrimitive.Root>>;
|
|
1100
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1101
|
+
|
|
1102
|
+
interface ProgressBarProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
1103
|
+
/**
|
|
1104
|
+
* Progress value (0-100)
|
|
1105
|
+
*/
|
|
1106
|
+
value: number;
|
|
1107
|
+
/**
|
|
1108
|
+
* Maximum value
|
|
1109
|
+
* @default 100
|
|
1110
|
+
*/
|
|
1111
|
+
max?: number;
|
|
1112
|
+
/**
|
|
1113
|
+
* Size of the progress bar
|
|
1114
|
+
* @default 'md'
|
|
1115
|
+
*/
|
|
1116
|
+
size?: 'sm' | 'md' | 'lg';
|
|
1117
|
+
/**
|
|
1118
|
+
* Color variant
|
|
1119
|
+
* @default 'primary'
|
|
1120
|
+
*/
|
|
1121
|
+
variant?: 'primary' | 'success' | 'warning' | 'error' | 'info';
|
|
1122
|
+
/**
|
|
1123
|
+
* Whether to show the percentage label
|
|
1124
|
+
* @default false
|
|
1125
|
+
*/
|
|
1126
|
+
showLabel?: boolean;
|
|
1127
|
+
/**
|
|
1128
|
+
* Whether to animate the progress bar
|
|
1129
|
+
* @default true
|
|
1130
|
+
*/
|
|
1131
|
+
animated?: boolean;
|
|
1132
|
+
/**
|
|
1133
|
+
* Indeterminate state (ignores value)
|
|
1134
|
+
* @default false
|
|
1135
|
+
*/
|
|
1136
|
+
indeterminate?: boolean;
|
|
1137
|
+
}
|
|
1138
|
+
/**
|
|
1139
|
+
* ProgressBar Component
|
|
1140
|
+
*
|
|
1141
|
+
* A visual indicator of progress or completion.
|
|
1142
|
+
*
|
|
1143
|
+
* Features:
|
|
1144
|
+
* - Determinate and indeterminate modes
|
|
1145
|
+
* - Five color variants
|
|
1146
|
+
* - Three size options
|
|
1147
|
+
* - Optional percentage label
|
|
1148
|
+
* - Smooth animations
|
|
1149
|
+
* - Theme-aware colors
|
|
1150
|
+
* - Accessible ARIA attributes
|
|
1151
|
+
*
|
|
1152
|
+
* Example:
|
|
1153
|
+
* ```tsx
|
|
1154
|
+
* <ProgressBar value={65} showLabel />
|
|
1155
|
+
* <ProgressBar value={100} variant="success" />
|
|
1156
|
+
* <ProgressBar indeterminate variant="primary" />
|
|
1157
|
+
* ```
|
|
1158
|
+
*/
|
|
1159
|
+
declare const ProgressBar: ({ ref, value, max, size, variant, showLabel, animated, indeterminate, className, ...props }: ProgressBarProps & {
|
|
1160
|
+
ref?: React__default.Ref<HTMLDivElement>;
|
|
1161
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1162
|
+
|
|
1163
|
+
interface SkeletonProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1164
|
+
/**
|
|
1165
|
+
* Variant of the skeleton
|
|
1166
|
+
* @default "default"
|
|
1167
|
+
*/
|
|
1168
|
+
variant?: "default" | "circular" | "rectangular" | "text";
|
|
1169
|
+
/**
|
|
1170
|
+
* Width of the skeleton (CSS value)
|
|
1171
|
+
*/
|
|
1172
|
+
width?: string | number;
|
|
1173
|
+
/**
|
|
1174
|
+
* Height of the skeleton (CSS value)
|
|
1175
|
+
*/
|
|
1176
|
+
height?: string | number;
|
|
1177
|
+
}
|
|
1178
|
+
declare function Skeleton({ className, variant, width, height, style, ...props }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
1179
|
+
|
|
1180
|
+
type ToasterProps = React.ComponentProps<typeof Toaster$1>;
|
|
1181
|
+
declare const Toaster: ({ ...props }: ToasterProps) => react_jsx_runtime.JSX.Element;
|
|
1182
|
+
|
|
1183
|
+
interface SpinnerProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
1184
|
+
/**
|
|
1185
|
+
* Size of the spinner
|
|
1186
|
+
* @default 'md'
|
|
1187
|
+
*/
|
|
1188
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1189
|
+
/**
|
|
1190
|
+
* Color variant
|
|
1191
|
+
* @default 'primary'
|
|
1192
|
+
*/
|
|
1193
|
+
variant?: 'primary' | 'secondary' | 'inherit';
|
|
1194
|
+
/**
|
|
1195
|
+
* Optional label for screen readers
|
|
1196
|
+
*/
|
|
1197
|
+
label?: string;
|
|
1198
|
+
}
|
|
1199
|
+
/**
|
|
1200
|
+
* Spinner Component
|
|
1201
|
+
*
|
|
1202
|
+
* A loading indicator with smooth animation.
|
|
1203
|
+
*
|
|
1204
|
+
* Features:
|
|
1205
|
+
* - Five size variants
|
|
1206
|
+
* - Theme-aware colors
|
|
1207
|
+
* - Uses current text color option
|
|
1208
|
+
* - Accessible label for screen readers
|
|
1209
|
+
* - Respects reduced motion preferences
|
|
1210
|
+
*
|
|
1211
|
+
* Example:
|
|
1212
|
+
* ```tsx
|
|
1213
|
+
* <Spinner />
|
|
1214
|
+
* <Spinner size="lg" variant="primary" label="Loading content..." />
|
|
1215
|
+
* <Spinner size="sm" variant="inherit" />
|
|
1216
|
+
* ```
|
|
1217
|
+
*/
|
|
1218
|
+
declare const Spinner: ({ ref, size, variant, label, className, ...props }: SpinnerProps & {
|
|
1219
|
+
ref?: React__default.Ref<HTMLDivElement>;
|
|
1220
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1221
|
+
|
|
1222
|
+
type ToastType = 'success' | 'error' | 'warning' | 'info';
|
|
1223
|
+
interface Toast {
|
|
1224
|
+
id: string;
|
|
1225
|
+
message: string;
|
|
1226
|
+
type: ToastType;
|
|
1227
|
+
duration?: number;
|
|
1228
|
+
}
|
|
1229
|
+
interface ToastProviderProps {
|
|
1230
|
+
children: React__default.ReactNode;
|
|
1231
|
+
/**
|
|
1232
|
+
* Maximum number of toasts to show at once
|
|
1233
|
+
* @default 3
|
|
1234
|
+
*/
|
|
1235
|
+
maxToasts?: number;
|
|
1236
|
+
/**
|
|
1237
|
+
* Default duration in milliseconds
|
|
1238
|
+
* @default 5000
|
|
1239
|
+
*/
|
|
1240
|
+
defaultDuration?: number;
|
|
1241
|
+
/**
|
|
1242
|
+
* Position of toast container
|
|
1243
|
+
* @default 'bottom-right'
|
|
1244
|
+
*/
|
|
1245
|
+
position?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'top-center' | 'bottom-center';
|
|
1246
|
+
}
|
|
1247
|
+
/**
|
|
1248
|
+
* ToastProvider Component
|
|
1249
|
+
*
|
|
1250
|
+
* Provides toast notification functionality to the app.
|
|
1251
|
+
* Wrap your app with this provider to enable toast notifications.
|
|
1252
|
+
*
|
|
1253
|
+
* Example:
|
|
1254
|
+
* ```tsx
|
|
1255
|
+
* <ToastProvider position="bottom-right" maxToasts={3}>
|
|
1256
|
+
* <App />
|
|
1257
|
+
* </ToastProvider>
|
|
1258
|
+
* ```
|
|
1259
|
+
*/
|
|
1260
|
+
declare const ToastProvider: React__default.FC<ToastProviderProps>;
|
|
1261
|
+
/**
|
|
1262
|
+
* useToast Hook
|
|
1263
|
+
*
|
|
1264
|
+
* Hook to trigger toast notifications from anywhere in your app.
|
|
1265
|
+
*
|
|
1266
|
+
* Example:
|
|
1267
|
+
* ```tsx
|
|
1268
|
+
* function MyComponent() {
|
|
1269
|
+
* const { toast } = useToast();
|
|
1270
|
+
*
|
|
1271
|
+
* const handleClick = () => {
|
|
1272
|
+
* toast('Settings saved!', 'success');
|
|
1273
|
+
* };
|
|
1274
|
+
*
|
|
1275
|
+
* return <button onClick={handleClick}>Save</button>;
|
|
1276
|
+
* }
|
|
1277
|
+
* ```
|
|
1278
|
+
*/
|
|
1279
|
+
declare const useToast: () => {
|
|
1280
|
+
toast: (message: string, type?: ToastType, duration?: number) => void;
|
|
1281
|
+
removeToast: (id: string) => void;
|
|
1282
|
+
toasts: Toast[];
|
|
1283
|
+
};
|
|
1284
|
+
|
|
1285
|
+
declare const emptyStateVariants: (props?: ({
|
|
1286
|
+
size?: "lg" | "sm" | "default" | null | undefined;
|
|
1287
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1288
|
+
interface EmptyStateProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof emptyStateVariants> {
|
|
1289
|
+
/** Icon displayed above the title */
|
|
1290
|
+
icon?: React$1.ReactNode;
|
|
1291
|
+
/** Primary message */
|
|
1292
|
+
title: string;
|
|
1293
|
+
/** Secondary explanation text */
|
|
1294
|
+
description?: string;
|
|
1295
|
+
/** Call-to-action element (e.g. Button) */
|
|
1296
|
+
action?: React$1.ReactNode;
|
|
1297
|
+
}
|
|
1298
|
+
declare function EmptyState({ className, size, icon, title, description, action, children, ...props }: EmptyStateProps): react_jsx_runtime.JSX.Element;
|
|
1299
|
+
|
|
1300
|
+
declare const stepperVariants: (props?: ({
|
|
1301
|
+
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
1302
|
+
size?: "lg" | "sm" | "default" | null | undefined;
|
|
1303
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1304
|
+
interface StepperProps extends React$1.HTMLAttributes<HTMLOListElement>, VariantProps<typeof stepperVariants> {
|
|
1305
|
+
/** Zero-based index of the current step */
|
|
1306
|
+
currentStep: number;
|
|
1307
|
+
/** Called when a step is clicked (only when clickable is true) */
|
|
1308
|
+
onStepClick?: (step: number) => void;
|
|
1309
|
+
/** Allow clicking steps to navigate */
|
|
1310
|
+
clickable?: boolean;
|
|
1311
|
+
}
|
|
1312
|
+
interface StepperStepProps extends React$1.HTMLAttributes<HTMLLIElement> {
|
|
1313
|
+
/** Step label text */
|
|
1314
|
+
label: string;
|
|
1315
|
+
/** Optional description below the label */
|
|
1316
|
+
description?: string;
|
|
1317
|
+
/** Custom icon for the indicator */
|
|
1318
|
+
icon?: React$1.ReactNode;
|
|
1319
|
+
/** Status (auto-computed from currentStep if not provided) */
|
|
1320
|
+
status?: "pending" | "active" | "completed" | "error";
|
|
1321
|
+
/** Mark step as optional */
|
|
1322
|
+
optional?: boolean;
|
|
1323
|
+
}
|
|
1324
|
+
declare function Stepper({ className, orientation, size, currentStep, onStepClick, clickable, children, ...props }: StepperProps): react_jsx_runtime.JSX.Element;
|
|
1325
|
+
/** Public sub-component for declaring steps */
|
|
1326
|
+
declare function StepperStep(_props: StepperStepProps): null;
|
|
1327
|
+
|
|
1328
|
+
interface AspectImageProps extends React__default.ImgHTMLAttributes<HTMLImageElement> {
|
|
1329
|
+
/**
|
|
1330
|
+
* Aspect ratio (width / height)
|
|
1331
|
+
* @example 16/9, 4/3, 1
|
|
1332
|
+
* @default 16/9
|
|
1333
|
+
*/
|
|
1334
|
+
ratio?: number;
|
|
1335
|
+
/**
|
|
1336
|
+
* Image source
|
|
1337
|
+
*/
|
|
1338
|
+
src: string;
|
|
1339
|
+
/**
|
|
1340
|
+
* Image alt text
|
|
1341
|
+
*/
|
|
1342
|
+
alt: string;
|
|
1343
|
+
/**
|
|
1344
|
+
* Apply border radius
|
|
1345
|
+
* @default true
|
|
1346
|
+
*/
|
|
1347
|
+
rounded?: boolean;
|
|
1348
|
+
/**
|
|
1349
|
+
* Apply shadow
|
|
1350
|
+
* @default false
|
|
1351
|
+
*/
|
|
1352
|
+
shadow?: boolean;
|
|
1353
|
+
/**
|
|
1354
|
+
* Optional caption
|
|
1355
|
+
*/
|
|
1356
|
+
caption?: React__default.ReactNode;
|
|
1357
|
+
}
|
|
1358
|
+
declare const AspectImage: ({ ref, ratio, src, alt, rounded, shadow, caption, className, style, ...props }: AspectImageProps & {
|
|
1359
|
+
ref?: React__default.Ref<HTMLImageElement>;
|
|
1360
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1361
|
+
|
|
1362
|
+
declare const Avatar: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof AvatarPrimitive.Root> & {
|
|
1363
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof AvatarPrimitive.Root>>;
|
|
1364
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1365
|
+
declare const AvatarImage: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof AvatarPrimitive.Image> & {
|
|
1366
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof AvatarPrimitive.Image>>;
|
|
1367
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1368
|
+
declare const AvatarFallback: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof AvatarPrimitive.Fallback> & {
|
|
1369
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof AvatarPrimitive.Fallback>>;
|
|
1370
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1371
|
+
|
|
1372
|
+
declare const badgeVariants: (props?: ({
|
|
1373
|
+
variant?: "error" | "success" | "warning" | "info" | "secondary" | "default" | "destructive" | "outline" | null | undefined;
|
|
1374
|
+
size?: "lg" | "sm" | "md" | null | undefined;
|
|
1375
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1376
|
+
interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
1377
|
+
dot?: boolean;
|
|
1378
|
+
}
|
|
1379
|
+
declare function Badge({ className, variant, size, dot, children, style, ...props }: BadgeProps & {
|
|
1380
|
+
style?: React$1.CSSProperties;
|
|
1381
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1382
|
+
|
|
1383
|
+
interface BrandProps {
|
|
1384
|
+
/**
|
|
1385
|
+
* Brand name or logo element
|
|
1386
|
+
*/
|
|
1387
|
+
children: React__default.ReactNode;
|
|
1388
|
+
/**
|
|
1389
|
+
* Size variant
|
|
1390
|
+
* @default 'md'
|
|
1391
|
+
*/
|
|
1392
|
+
size?: 'sm' | 'md' | 'lg';
|
|
1393
|
+
/**
|
|
1394
|
+
* Optional href for link behavior
|
|
1395
|
+
* When provided, renders as an anchor tag
|
|
1396
|
+
*/
|
|
1397
|
+
href?: string;
|
|
1398
|
+
/**
|
|
1399
|
+
* Additional className for customization
|
|
1400
|
+
*/
|
|
1401
|
+
className?: string;
|
|
1402
|
+
/**
|
|
1403
|
+
* Click handler (used when href is provided)
|
|
1404
|
+
*/
|
|
1405
|
+
onClick?: (e: React__default.MouseEvent<HTMLAnchorElement>) => void;
|
|
1406
|
+
}
|
|
1407
|
+
/**
|
|
1408
|
+
* Brand Component
|
|
1409
|
+
*
|
|
1410
|
+
* A theme-aware brand/logo component that automatically handles:
|
|
1411
|
+
* - Dark mode support via design system tokens
|
|
1412
|
+
* - Consistent typography and sizing
|
|
1413
|
+
* - Optional link behavior
|
|
1414
|
+
* - Focus states and accessibility
|
|
1415
|
+
*
|
|
1416
|
+
* This component encapsulates the proper styling so you never need to
|
|
1417
|
+
* manually apply `text-[var(--color-text-primary)]` to logos.
|
|
1418
|
+
*
|
|
1419
|
+
* Features:
|
|
1420
|
+
* - Automatic theme-aware text color
|
|
1421
|
+
* - Three size variants (sm, md, lg)
|
|
1422
|
+
* - Works standalone or as a link
|
|
1423
|
+
* - Compatible with Next.js Link wrapper
|
|
1424
|
+
* - Proper focus states
|
|
1425
|
+
*
|
|
1426
|
+
* Usage:
|
|
1427
|
+
* ```tsx
|
|
1428
|
+
* // Standalone brand text
|
|
1429
|
+
* <Brand>Company Name</Brand>
|
|
1430
|
+
*
|
|
1431
|
+
* // As a link (use with Next.js Link)
|
|
1432
|
+
* <Brand href="/">Company Name</Brand>
|
|
1433
|
+
*
|
|
1434
|
+
* // With Next.js Link wrapper
|
|
1435
|
+
* <Brand>
|
|
1436
|
+
* <NextLink href="/">Company Name</NextLink>
|
|
1437
|
+
* </Brand>
|
|
1438
|
+
*
|
|
1439
|
+
* // Different sizes
|
|
1440
|
+
* <Brand size="sm">Brand</Brand>
|
|
1441
|
+
* <Brand size="lg">Brand</Brand>
|
|
1442
|
+
* ```
|
|
1443
|
+
*/
|
|
1444
|
+
declare const Brand: ({ ref, children, size, href, className, onClick }: BrandProps & {
|
|
1445
|
+
ref?: React__default.Ref<HTMLElement>;
|
|
1446
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1447
|
+
|
|
1448
|
+
declare const cardVariants: (props?: ({
|
|
1449
|
+
hoverEffect?: boolean | null | undefined;
|
|
1450
|
+
variant?: "default" | "outline" | "glass" | null | undefined;
|
|
1451
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1452
|
+
interface CardProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardVariants> {
|
|
1453
|
+
}
|
|
1454
|
+
declare const Card: ({ ref, className, variant, hoverEffect, ...props }: CardProps & {
|
|
1455
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
1456
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1457
|
+
declare const CardHeader: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
|
|
1458
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
1459
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1460
|
+
declare const CardTitle: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLHeadingElement> & {
|
|
1461
|
+
ref?: React$1.Ref<HTMLParagraphElement>;
|
|
1462
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1463
|
+
declare const CardDescription: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLParagraphElement> & {
|
|
1464
|
+
ref?: React$1.Ref<HTMLParagraphElement>;
|
|
1465
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1466
|
+
declare const CardContent: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
|
|
1467
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
1468
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1469
|
+
declare const CardFooter: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
|
|
1470
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
1471
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1472
|
+
|
|
1473
|
+
interface CodeProps {
|
|
1474
|
+
/** The code content to display */
|
|
1475
|
+
children: ReactNode;
|
|
1476
|
+
/** Optional syntax highlighting type */
|
|
1477
|
+
syntax?: SyntaxType;
|
|
1478
|
+
/** Whether to render as inline code (default) or block */
|
|
1479
|
+
inline?: boolean;
|
|
1480
|
+
/** Show copy button for block code (default: true) */
|
|
1481
|
+
showCopy?: boolean;
|
|
1482
|
+
/** Additional className for custom styling */
|
|
1483
|
+
className?: string;
|
|
1484
|
+
}
|
|
1485
|
+
/**
|
|
1486
|
+
* Code Atom
|
|
1487
|
+
*
|
|
1488
|
+
* A semantic code wrapper with automatic syntax highlighting and enhanced visual styling.
|
|
1489
|
+
* Features distinct treatments for inline vs block code, with copy-on-hover for blocks.
|
|
1490
|
+
*
|
|
1491
|
+
* **Visual Design:**
|
|
1492
|
+
* - Inline: Pale amber background (#FEF3E7 light / #252525 dark) with subtle border
|
|
1493
|
+
* - Block: Cool gray background (#F8F9FA light / #1E1E1E dark) with generous padding
|
|
1494
|
+
* - Copy button appears on hover for block code with tooltip feedback
|
|
1495
|
+
* - Accessible contrast ratios (WCAG AA 4.5:1)
|
|
1496
|
+
*
|
|
1497
|
+
* @example
|
|
1498
|
+
* ```tsx
|
|
1499
|
+
* // Inline code - perfect for text snippets
|
|
1500
|
+
* <Code>example</Code>
|
|
1501
|
+
* <Code syntax="keyword">const</Code>
|
|
1502
|
+
* <Code syntax="function">useState()</Code>
|
|
1503
|
+
*
|
|
1504
|
+
* // Block code - for larger code examples
|
|
1505
|
+
* <Code inline={false}>const example = "value";</Code>
|
|
1506
|
+
* <Code inline={false} syntax="keyword" showCopy={false}>
|
|
1507
|
+
* const greeting = "Hello World";
|
|
1508
|
+
* </Code>
|
|
1509
|
+
* ```
|
|
1510
|
+
*/
|
|
1511
|
+
declare function Code({ children, syntax, inline, showCopy, className, }: CodeProps): react_jsx_runtime.JSX.Element;
|
|
1512
|
+
|
|
1513
|
+
interface CollapsibleCodeBlockProps {
|
|
1514
|
+
/** Unique identifier for the code block (required for animation) */
|
|
1515
|
+
id: string;
|
|
1516
|
+
/** Title/label for the code block */
|
|
1517
|
+
title?: string;
|
|
1518
|
+
/** Code to display - can be string or array of syntax tokens */
|
|
1519
|
+
code: string | SyntaxToken[];
|
|
1520
|
+
/** Language identifier (e.g., 'typescript', 'css', 'html') */
|
|
1521
|
+
language?: string;
|
|
1522
|
+
/** Initial collapsed state */
|
|
1523
|
+
defaultCollapsed?: boolean;
|
|
1524
|
+
/** Show copy button */
|
|
1525
|
+
showCopy?: boolean;
|
|
1526
|
+
/** Custom className for container */
|
|
1527
|
+
className?: string;
|
|
1528
|
+
}
|
|
1529
|
+
/**
|
|
1530
|
+
* CollapsibleCodeBlock Organism
|
|
1531
|
+
*
|
|
1532
|
+
* A reusable code block component with:
|
|
1533
|
+
* - Smooth spring animation for expand/collapse
|
|
1534
|
+
* - Syntax highlighting with light/dark theme support
|
|
1535
|
+
* - Copy to clipboard functionality
|
|
1536
|
+
* - Preview mode showing first 3 lines
|
|
1537
|
+
* - Gradient overlay in collapsed state
|
|
1538
|
+
*
|
|
1539
|
+
* @example
|
|
1540
|
+
* ```tsx
|
|
1541
|
+
* <CollapsibleCodeBlock
|
|
1542
|
+
* id="example-code"
|
|
1543
|
+
* title="TypeScript Example"
|
|
1544
|
+
* code={[
|
|
1545
|
+
* { text: 'const', type: 'keyword' },
|
|
1546
|
+
* { text: ' example ', type: 'plain' },
|
|
1547
|
+
* { text: '=', type: 'operator' },
|
|
1548
|
+
* { text: ' "Hello"', type: 'string' },
|
|
1549
|
+
* ]}
|
|
1550
|
+
* language="typescript"
|
|
1551
|
+
* />
|
|
1552
|
+
* ```
|
|
1553
|
+
*/
|
|
1554
|
+
declare function CollapsibleCodeBlock({ id, title, code, language, defaultCollapsed, showCopy, className, }: CollapsibleCodeBlockProps): react_jsx_runtime.JSX.Element;
|
|
1555
|
+
|
|
1556
|
+
interface DescriptionListItem {
|
|
1557
|
+
label: string | React__default.ReactNode;
|
|
1558
|
+
value: string | React__default.ReactNode;
|
|
1559
|
+
}
|
|
1560
|
+
interface DescriptionListProps {
|
|
1561
|
+
items: DescriptionListItem[];
|
|
1562
|
+
/**
|
|
1563
|
+
* Layout direction
|
|
1564
|
+
* @default 'row' (side-by-side labels/values in a grid)
|
|
1565
|
+
*/
|
|
1566
|
+
direction?: 'row' | 'column';
|
|
1567
|
+
className?: string;
|
|
1568
|
+
}
|
|
1569
|
+
declare const DescriptionList: React__default.FC<DescriptionListProps>;
|
|
1570
|
+
|
|
1571
|
+
interface GitHubIconProps {
|
|
1572
|
+
/**
|
|
1573
|
+
* Size of the icon in pixels
|
|
1574
|
+
* @default 20
|
|
1575
|
+
*/
|
|
1576
|
+
size?: number;
|
|
1577
|
+
/**
|
|
1578
|
+
* Additional className for customization
|
|
1579
|
+
*/
|
|
1580
|
+
className?: string;
|
|
1581
|
+
}
|
|
1582
|
+
/**
|
|
1583
|
+
* GitHub Icon Component
|
|
1584
|
+
*
|
|
1585
|
+
* Uses currentColor so it inherits the text color from its parent.
|
|
1586
|
+
* Works automatically with light/dark modes through color inheritance.
|
|
1587
|
+
*/
|
|
1588
|
+
declare const GitHubIcon: ({ ref, size, className }: GitHubIconProps & {
|
|
1589
|
+
ref?: React__default.Ref<SVGSVGElement>;
|
|
1590
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1591
|
+
|
|
1592
|
+
interface HeadingProps {
|
|
1593
|
+
/**
|
|
1594
|
+
* Heading content
|
|
1595
|
+
*/
|
|
1596
|
+
children: React__default.ReactNode;
|
|
1597
|
+
/**
|
|
1598
|
+
* Heading level (affects both semantics and styling)
|
|
1599
|
+
*/
|
|
1600
|
+
level: 1 | 2 | 3 | 4 | 5 | 6;
|
|
1601
|
+
/**
|
|
1602
|
+
* Additional className for customization
|
|
1603
|
+
*/
|
|
1604
|
+
className?: string;
|
|
1605
|
+
}
|
|
1606
|
+
/**
|
|
1607
|
+
* Heading Component
|
|
1608
|
+
*
|
|
1609
|
+
* Semantic heading with automatic token-based styling.
|
|
1610
|
+
* No need to manually apply text colors, sizes, or weights.
|
|
1611
|
+
*
|
|
1612
|
+
* **What it handles automatically:**
|
|
1613
|
+
* - Theme-aware text color (`--color-text-primary`)
|
|
1614
|
+
* - Appropriate font size for each level
|
|
1615
|
+
* - Font weight (bold for all levels)
|
|
1616
|
+
* - Line height for readability
|
|
1617
|
+
* - Dark mode support
|
|
1618
|
+
*
|
|
1619
|
+
* **Swiss Grid Typography:**
|
|
1620
|
+
* - H1: 48px (3xl) on mobile, 60px (5xl) on desktop
|
|
1621
|
+
* - H2: 36px (3xl) on mobile, 48px (4xl) on desktop
|
|
1622
|
+
* - H3: 30px (3xl)
|
|
1623
|
+
* - H4: 24px (2xl)
|
|
1624
|
+
* - H5: 20px (xl)
|
|
1625
|
+
* - H6: 18px (lg)
|
|
1626
|
+
*
|
|
1627
|
+
* Usage:
|
|
1628
|
+
* ```tsx
|
|
1629
|
+
* <Heading level={1}>Page Title</Heading>
|
|
1630
|
+
* <Heading level={2}>Section Heading</Heading>
|
|
1631
|
+
* <Heading level={3}>Subsection</Heading>
|
|
1632
|
+
* ```
|
|
1633
|
+
*/
|
|
1634
|
+
declare const Heading: ({ ref, children, level, className }: HeadingProps & {
|
|
1635
|
+
ref?: React__default.Ref<HTMLHeadingElement>;
|
|
1636
|
+
}) => React__default.DetailedReactHTMLElement<{
|
|
1637
|
+
ref: React__default.Ref<HTMLHeadingElement> | undefined;
|
|
1638
|
+
className: string;
|
|
1639
|
+
}, HTMLHeadingElement>;
|
|
1640
|
+
|
|
1641
|
+
declare const Table: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLTableElement> & {
|
|
1642
|
+
ref?: React$1.Ref<HTMLTableElement>;
|
|
1643
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1644
|
+
declare const TableHeader: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLTableSectionElement> & {
|
|
1645
|
+
ref?: React$1.Ref<HTMLTableSectionElement>;
|
|
1646
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1647
|
+
declare const TableBody: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLTableSectionElement> & {
|
|
1648
|
+
ref?: React$1.Ref<HTMLTableSectionElement>;
|
|
1649
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1650
|
+
declare const TableFooter: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLTableSectionElement> & {
|
|
1651
|
+
ref?: React$1.Ref<HTMLTableSectionElement>;
|
|
1652
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1653
|
+
declare const TableRow: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLTableRowElement> & {
|
|
1654
|
+
ref?: React$1.Ref<HTMLTableRowElement>;
|
|
1655
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1656
|
+
declare const TableHead: ({ ref, className, ...props }: React$1.ThHTMLAttributes<HTMLTableCellElement> & {
|
|
1657
|
+
ref?: React$1.Ref<HTMLTableCellElement>;
|
|
1658
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1659
|
+
declare const TableCell: ({ ref, className, ...props }: React$1.TdHTMLAttributes<HTMLTableCellElement> & {
|
|
1660
|
+
ref?: React$1.Ref<HTMLTableCellElement>;
|
|
1661
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1662
|
+
declare const TableCaption: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLTableCaptionElement> & {
|
|
1663
|
+
ref?: React$1.Ref<HTMLTableCaptionElement>;
|
|
1664
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1665
|
+
|
|
1666
|
+
interface TextProps {
|
|
1667
|
+
/**
|
|
1668
|
+
* Text content
|
|
1669
|
+
*/
|
|
1670
|
+
children: React__default.ReactNode;
|
|
1671
|
+
/**
|
|
1672
|
+
* Semantic variant determines both color and meaning
|
|
1673
|
+
* @default 'primary'
|
|
1674
|
+
*/
|
|
1675
|
+
variant?: 'primary' | 'secondary' | 'muted';
|
|
1676
|
+
/**
|
|
1677
|
+
* Text size
|
|
1678
|
+
* @default 'base'
|
|
1679
|
+
*/
|
|
1680
|
+
size?: 'xs' | 'sm' | 'base' | 'lg' | 'xl';
|
|
1681
|
+
/**
|
|
1682
|
+
* Font weight
|
|
1683
|
+
* @default 'normal'
|
|
1684
|
+
*/
|
|
1685
|
+
weight?: 'normal' | 'medium' | 'semibold' | 'bold';
|
|
1686
|
+
/**
|
|
1687
|
+
* HTML element to render as
|
|
1688
|
+
* @default 'p'
|
|
1689
|
+
*/
|
|
1690
|
+
as?: 'p' | 'span' | 'div' | 'label' | 'time';
|
|
1691
|
+
/**
|
|
1692
|
+
* Additional className for customization
|
|
1693
|
+
*/
|
|
1694
|
+
className?: string;
|
|
1695
|
+
}
|
|
1696
|
+
/**
|
|
1697
|
+
* Text Component
|
|
1698
|
+
*
|
|
1699
|
+
* Semantic text with automatic token-based styling.
|
|
1700
|
+
* No need to manually apply CSS variable text color classes.
|
|
1701
|
+
*
|
|
1702
|
+
* **What it handles automatically:**
|
|
1703
|
+
* - Theme-aware text colors
|
|
1704
|
+
* - Semantic color variants (primary, secondary, muted)
|
|
1705
|
+
* - Consistent sizing
|
|
1706
|
+
* - Dark mode support
|
|
1707
|
+
*
|
|
1708
|
+
* **Variants:**
|
|
1709
|
+
* - `primary`: Main content text (`--color-text-primary`)
|
|
1710
|
+
* - `secondary`: Supporting text (`--color-text-secondary`)
|
|
1711
|
+
* - `muted`: De-emphasized text (`--color-text-muted`)
|
|
1712
|
+
*
|
|
1713
|
+
* Usage:
|
|
1714
|
+
* ```tsx
|
|
1715
|
+
* // Primary content text
|
|
1716
|
+
* <Text>Main paragraph content</Text>
|
|
1717
|
+
*
|
|
1718
|
+
* // Secondary supporting text
|
|
1719
|
+
* <Text variant="secondary">Helper text or description</Text>
|
|
1720
|
+
*
|
|
1721
|
+
* // Muted text (least emphasis)
|
|
1722
|
+
* <Text variant="muted">Footnote or metadata</Text>
|
|
1723
|
+
*
|
|
1724
|
+
* // Different sizes
|
|
1725
|
+
* <Text size="lg">Large text</Text>
|
|
1726
|
+
* <Text size="sm">Small text</Text>
|
|
1727
|
+
*
|
|
1728
|
+
* // As different element
|
|
1729
|
+
* <Text as="span">Inline text</Text>
|
|
1730
|
+
* <Text as="label">Form label</Text>
|
|
1731
|
+
* ```
|
|
1732
|
+
*/
|
|
1733
|
+
declare const Text: React__default.FC<TextProps & {
|
|
1734
|
+
ref?: React__default.Ref<HTMLElement>;
|
|
1735
|
+
}>;
|
|
1736
|
+
|
|
1737
|
+
interface VariableWeightTextProps extends Omit<HTMLMotionProps<'div'>, 'children'> {
|
|
1738
|
+
/**
|
|
1739
|
+
* Minimum font weight for the animation
|
|
1740
|
+
* @default 200
|
|
1741
|
+
*/
|
|
1742
|
+
minWeight?: number;
|
|
1743
|
+
/**
|
|
1744
|
+
* Maximum font weight for the animation
|
|
1745
|
+
* @default 700
|
|
1746
|
+
*/
|
|
1747
|
+
maxWeight?: number;
|
|
1748
|
+
/**
|
|
1749
|
+
* Duration of one complete animation cycle (in seconds)
|
|
1750
|
+
* @default 2
|
|
1751
|
+
*/
|
|
1752
|
+
duration?: number;
|
|
1753
|
+
/**
|
|
1754
|
+
* Motion intensity override (0-10). If not provided, uses global customizer setting.
|
|
1755
|
+
*/
|
|
1756
|
+
intensity?: number;
|
|
1757
|
+
/**
|
|
1758
|
+
* Font family to use. Recommended: 'Clash Display' or another variable font.
|
|
1759
|
+
* @default 'Clash Display'
|
|
1760
|
+
*/
|
|
1761
|
+
fontFamily?: string;
|
|
1762
|
+
/**
|
|
1763
|
+
* Text content to animate
|
|
1764
|
+
*/
|
|
1765
|
+
children?: React__default.ReactNode;
|
|
1766
|
+
}
|
|
1767
|
+
/**
|
|
1768
|
+
* VariableWeightText
|
|
1769
|
+
*
|
|
1770
|
+
* A motion component that creates a "breathing" effect by animating font weight.
|
|
1771
|
+
* Works best with variable fonts like Clash Display that support smooth weight transitions.
|
|
1772
|
+
*
|
|
1773
|
+
* **Key Features:**
|
|
1774
|
+
* - Animates font-weight in a continuous loop
|
|
1775
|
+
* - Respects global motion intensity settings
|
|
1776
|
+
* - Automatically centers text to prevent layout shifts during weight changes
|
|
1777
|
+
* - Disables animation when motion intensity is 0 (accessibility)
|
|
1778
|
+
*
|
|
1779
|
+
* **Usage:**
|
|
1780
|
+
* ```tsx
|
|
1781
|
+
* <VariableWeightText minWeight={200} maxWeight={700}>
|
|
1782
|
+
* Variable Font Text
|
|
1783
|
+
* </VariableWeightText>
|
|
1784
|
+
* ```
|
|
1785
|
+
*/
|
|
1786
|
+
declare const VariableWeightText: ({ children, minWeight, maxWeight, duration, intensity, fontFamily, className, style, ...props }: VariableWeightTextProps) => react_jsx_runtime.JSX.Element;
|
|
1787
|
+
|
|
1788
|
+
interface TypewriterProps {
|
|
1789
|
+
text: string | string[];
|
|
1790
|
+
speed?: number;
|
|
1791
|
+
delay?: number;
|
|
1792
|
+
loop?: boolean;
|
|
1793
|
+
loopDelay?: number;
|
|
1794
|
+
cursor?: string;
|
|
1795
|
+
showCursor?: boolean;
|
|
1796
|
+
className?: string;
|
|
1797
|
+
as?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'span' | 'div';
|
|
1798
|
+
}
|
|
1799
|
+
declare function Typewriter({ text, speed, delay, loop, loopDelay, cursor, showCursor, className, as: Component, }: TypewriterProps): react_jsx_runtime.JSX.Element;
|
|
1800
|
+
|
|
1801
|
+
declare const statCardVariants: (props?: ({
|
|
1802
|
+
variant?: "default" | "outline" | "glass" | null | undefined;
|
|
1803
|
+
size?: "lg" | "sm" | "default" | null | undefined;
|
|
1804
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1805
|
+
interface StatCardProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof statCardVariants> {
|
|
1806
|
+
/** The metric label (e.g. "Revenue", "Active Users") */
|
|
1807
|
+
label: string;
|
|
1808
|
+
/** The metric value (e.g. "$1.2M", "12,345") */
|
|
1809
|
+
value: string | number;
|
|
1810
|
+
/** Percentage change (e.g. 5.2 for +5.2%, -3.1 for -3.1%) */
|
|
1811
|
+
change?: number;
|
|
1812
|
+
/** Direction of the trend */
|
|
1813
|
+
trend?: "up" | "down" | "flat";
|
|
1814
|
+
/** Optional icon displayed in the top-right */
|
|
1815
|
+
icon?: React$1.ReactNode;
|
|
1816
|
+
/** Additional description text below the value */
|
|
1817
|
+
description?: string;
|
|
1818
|
+
}
|
|
1819
|
+
declare function StatCard({ className, variant, size, label, value, change, trend, icon, description, ...props }: StatCardProps): react_jsx_runtime.JSX.Element;
|
|
1820
|
+
declare function StatCardGroup({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
1821
|
+
|
|
1822
|
+
declare const timelineVariants: (props?: ({
|
|
1823
|
+
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
1824
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1825
|
+
interface TimelineProps extends React$1.HTMLAttributes<HTMLOListElement>, VariantProps<typeof timelineVariants> {
|
|
1826
|
+
}
|
|
1827
|
+
interface TimelineItemProps extends React$1.HTMLAttributes<HTMLLIElement> {
|
|
1828
|
+
/** Event title */
|
|
1829
|
+
title: string;
|
|
1830
|
+
/** Event description */
|
|
1831
|
+
description?: string;
|
|
1832
|
+
/** Timestamp text */
|
|
1833
|
+
timestamp?: string;
|
|
1834
|
+
/** Custom icon for the indicator */
|
|
1835
|
+
icon?: React$1.ReactNode;
|
|
1836
|
+
/** Status of this event */
|
|
1837
|
+
status?: "pending" | "active" | "completed" | "error";
|
|
1838
|
+
/** Whether this is the last item (hides connector) */
|
|
1839
|
+
isLast?: boolean;
|
|
1840
|
+
/** Size variant */
|
|
1841
|
+
size?: "sm" | "default" | "lg";
|
|
1842
|
+
}
|
|
1843
|
+
declare function Timeline({ className, orientation, children, ...props }: TimelineProps): react_jsx_runtime.JSX.Element;
|
|
1844
|
+
declare function TimelineItem({ className, title, description, timestamp, icon, status, isLast, size, ...props }: TimelineItemProps): react_jsx_runtime.JSX.Element;
|
|
1845
|
+
|
|
1846
|
+
interface TreeNode {
|
|
1847
|
+
/** Unique identifier */
|
|
1848
|
+
id: string;
|
|
1849
|
+
/** Display label */
|
|
1850
|
+
label: string;
|
|
1851
|
+
/** Optional icon */
|
|
1852
|
+
icon?: React$1.ReactNode;
|
|
1853
|
+
/** Child nodes */
|
|
1854
|
+
children?: TreeNode[];
|
|
1855
|
+
/** Whether the node is disabled */
|
|
1856
|
+
disabled?: boolean;
|
|
1857
|
+
}
|
|
1858
|
+
interface TreeViewProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1859
|
+
/** Tree data structure */
|
|
1860
|
+
nodes: TreeNode[];
|
|
1861
|
+
/** Expanded node IDs (controlled) */
|
|
1862
|
+
expanded?: string[];
|
|
1863
|
+
/** Default expanded node IDs (uncontrolled) */
|
|
1864
|
+
defaultExpanded?: string[];
|
|
1865
|
+
/** Called when expanded state changes */
|
|
1866
|
+
onExpandChange?: (expanded: string[]) => void;
|
|
1867
|
+
/** Currently selected node ID */
|
|
1868
|
+
selected?: string;
|
|
1869
|
+
/** Called when selection changes */
|
|
1870
|
+
onSelectChange?: (nodeId: string) => void;
|
|
1871
|
+
}
|
|
1872
|
+
declare const treeNodeVariants: (props?: ({
|
|
1873
|
+
state?: "disabled" | "idle" | "selected" | null | undefined;
|
|
1874
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1875
|
+
declare function TreeView({ className, nodes, expanded: controlledExpanded, defaultExpanded, onExpandChange, selected: controlledSelected, onSelectChange, ...props }: TreeViewProps): react_jsx_runtime.JSX.Element;
|
|
1876
|
+
|
|
1877
|
+
interface GradientConfig {
|
|
1878
|
+
type: 'linear' | 'radial';
|
|
1879
|
+
angle?: number;
|
|
1880
|
+
position?: string;
|
|
1881
|
+
colors: string[];
|
|
1882
|
+
stops?: number[];
|
|
1883
|
+
}
|
|
1884
|
+
interface OpenGraphCardProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
1885
|
+
title?: string;
|
|
1886
|
+
description?: string;
|
|
1887
|
+
variant?: 'primary' | 'secondary' | 'accent' | 'sage' | 'gradient';
|
|
1888
|
+
icon?: React__default.ReactNode | null;
|
|
1889
|
+
gradient?: GradientConfig;
|
|
1890
|
+
primaryColor?: string;
|
|
1891
|
+
secondaryColor?: string;
|
|
1892
|
+
accentColor?: string;
|
|
1893
|
+
titleFontSize?: number;
|
|
1894
|
+
descriptionFontSize?: number;
|
|
1895
|
+
fontFamily?: string;
|
|
1896
|
+
}
|
|
1897
|
+
/**
|
|
1898
|
+
* OpenGraphCard
|
|
1899
|
+
*
|
|
1900
|
+
* A specialized component designed for generating Open Graph images (1200x630px).
|
|
1901
|
+
* Supports custom icons, gradients, and theme color overrides.
|
|
1902
|
+
*
|
|
1903
|
+
* NOTE: This component uses inline styles to ensure compatibility with Next.js Open Graph generation (Satori).
|
|
1904
|
+
* CSS variables cannot be used in OG images - all colors must be explicit hex values.
|
|
1905
|
+
*/
|
|
1906
|
+
declare function OpenGraphCard({ title, description, variant, icon, gradient, primaryColor, secondaryColor, accentColor, titleFontSize, descriptionFontSize, fontFamily, className, ...props }: OpenGraphCardProps): react_jsx_runtime.JSX.Element;
|
|
1907
|
+
|
|
1908
|
+
declare const Accordion: React$1.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React$1.RefAttributes<HTMLDivElement>>;
|
|
1909
|
+
declare const AccordionItem: ({ ref, className, ...props }: React$1.ComponentPropsWithoutRef<typeof AccordionPrimitive.Item> & {
|
|
1910
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof AccordionPrimitive.Item>>;
|
|
1911
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1912
|
+
declare const AccordionTrigger: ({ ref, className, children, ...props }: React$1.ComponentPropsWithoutRef<typeof AccordionPrimitive.Trigger> & {
|
|
1913
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof AccordionPrimitive.Trigger>>;
|
|
1914
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1915
|
+
declare const AccordionContent: ({ ref, className, children, ...props }: React$1.ComponentPropsWithoutRef<typeof AccordionPrimitive.Content> & {
|
|
1916
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof AccordionPrimitive.Content>>;
|
|
1917
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1918
|
+
|
|
1919
|
+
declare const AspectRatio: React$1.ForwardRefExoticComponent<AspectRatioPrimitive.AspectRatioProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1920
|
+
|
|
1921
|
+
type CarouselApi = UseEmblaCarouselType[1];
|
|
1922
|
+
type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
|
|
1923
|
+
type CarouselOptions = UseCarouselParameters[0];
|
|
1924
|
+
type CarouselPlugin = UseCarouselParameters[1];
|
|
1925
|
+
type CarouselProps = {
|
|
1926
|
+
opts?: CarouselOptions;
|
|
1927
|
+
plugins?: CarouselPlugin;
|
|
1928
|
+
orientation?: "horizontal" | "vertical";
|
|
1929
|
+
setApi?: (api: CarouselApi) => void;
|
|
1930
|
+
};
|
|
1931
|
+
declare const Carousel: ({ ref, orientation, opts, setApi, plugins, className, children, ...props }: React$1.HTMLAttributes<HTMLDivElement> & CarouselProps & {
|
|
1932
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
1933
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1934
|
+
declare const CarouselContent: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
|
|
1935
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
1936
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1937
|
+
declare const CarouselItem: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
|
|
1938
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
1939
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1940
|
+
declare const CarouselPrevious: ({ ref, className, variant, size, ...props }: React$1.ComponentProps<typeof Button> & {
|
|
1941
|
+
ref?: React$1.Ref<HTMLButtonElement>;
|
|
1942
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1943
|
+
declare const CarouselNext: ({ ref, className, variant, size, ...props }: React$1.ComponentProps<typeof Button> & {
|
|
1944
|
+
ref?: React$1.Ref<HTMLButtonElement>;
|
|
1945
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1946
|
+
|
|
1947
|
+
declare const Collapsible: React$1.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1948
|
+
declare const CollapsibleTrigger: React$1.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1949
|
+
declare const CollapsibleContent: ({ ref, className, children, ...props }: React$1.ComponentPropsWithoutRef<typeof CollapsiblePrimitive.CollapsibleContent> & {
|
|
1950
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof CollapsiblePrimitive.CollapsibleContent>>;
|
|
1951
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1952
|
+
|
|
1953
|
+
interface ContainerProps {
|
|
1954
|
+
/**
|
|
1955
|
+
* Content to wrap
|
|
1956
|
+
*/
|
|
1957
|
+
children: React__default.ReactNode;
|
|
1958
|
+
/**
|
|
1959
|
+
* Maximum width variant
|
|
1960
|
+
* @default 'standard'
|
|
1961
|
+
*/
|
|
1962
|
+
variant?: 'standard' | 'wide' | 'narrow';
|
|
1963
|
+
/**
|
|
1964
|
+
* Add horizontal padding
|
|
1965
|
+
* @default true
|
|
1966
|
+
*/
|
|
1967
|
+
padding?: boolean;
|
|
1968
|
+
/**
|
|
1969
|
+
* Additional className for customization
|
|
1970
|
+
*/
|
|
1971
|
+
className?: string;
|
|
1972
|
+
/**
|
|
1973
|
+
* HTML element to render as
|
|
1974
|
+
* @default 'div'
|
|
1975
|
+
*/
|
|
1976
|
+
as?: 'div' | 'section' | 'article' | 'main' | 'aside' | 'header' | 'footer';
|
|
1977
|
+
}
|
|
1978
|
+
/**
|
|
1979
|
+
* Container Component
|
|
1980
|
+
*
|
|
1981
|
+
* Manages consistent max-widths and horizontal padding across the design system.
|
|
1982
|
+
* This component ensures perfect alignment between header, content, and footer
|
|
1983
|
+
* without manually coordinating max-width classes.
|
|
1984
|
+
*
|
|
1985
|
+
* **Swiss Grid Integration:**
|
|
1986
|
+
* - Uses standard max-widths that align with the 8px base unit
|
|
1987
|
+
* - Coordinates with PageTemplate variant system
|
|
1988
|
+
* - Provides consistent horizontal padding
|
|
1989
|
+
*
|
|
1990
|
+
* **Why This Component Exists:**
|
|
1991
|
+
* Before Container, every component had hardcoded max-widths:
|
|
1992
|
+
* - Header: max-w-[1440px]
|
|
1993
|
+
* - SecondaryNav: max-w-7xl
|
|
1994
|
+
* - Content: max-w-4xl
|
|
1995
|
+
*
|
|
1996
|
+
* This caused misalignment. Container solves this by centralizing width management.
|
|
1997
|
+
*
|
|
1998
|
+
* Usage:
|
|
1999
|
+
* ```tsx
|
|
2000
|
+
* // Standard width (1280px)
|
|
2001
|
+
* <Container>Content</Container>
|
|
2002
|
+
*
|
|
2003
|
+
* // Wide width (1440px) - for dashboards, data-heavy pages
|
|
2004
|
+
* <Container variant="wide">Dashboard</Container>
|
|
2005
|
+
*
|
|
2006
|
+
* // Narrow width (896px) - for reading-focused content
|
|
2007
|
+
* <Container variant="narrow">Article</Container>
|
|
2008
|
+
*
|
|
2009
|
+
* // Without padding (when you need edge-to-edge content)
|
|
2010
|
+
* <Container padding={false}>Full bleed content</Container>
|
|
2011
|
+
*
|
|
2012
|
+
* // As different HTML element
|
|
2013
|
+
* <Container as="main">Main content</Container>
|
|
2014
|
+
* ```
|
|
2015
|
+
*/
|
|
2016
|
+
declare const Container: ({ ref, children, variant, padding, className, as: Component }: ContainerProps & {
|
|
2017
|
+
ref?: React__default.Ref<HTMLElement>;
|
|
2018
|
+
}) => React__default.DetailedReactHTMLElement<{
|
|
2019
|
+
ref: React__default.Ref<HTMLElement> | undefined;
|
|
2020
|
+
className: string;
|
|
2021
|
+
}, HTMLElement>;
|
|
2022
|
+
|
|
2023
|
+
interface CustomizerPanelProps {
|
|
2024
|
+
/**
|
|
2025
|
+
* Mode of the customizer:
|
|
2026
|
+
* - "full": Shows all controls (theme, mode, motion)
|
|
2027
|
+
* - "lightweight": Shows only light/dark mode toggle
|
|
2028
|
+
* @default "full"
|
|
2029
|
+
*/
|
|
2030
|
+
mode?: 'full' | 'lightweight';
|
|
2031
|
+
/**
|
|
2032
|
+
* Whether to show the Motion Intensity slider
|
|
2033
|
+
* @default false
|
|
2034
|
+
*/
|
|
2035
|
+
showMotionIntensity?: boolean;
|
|
2036
|
+
/**
|
|
2037
|
+
* Which themes to show in the selector.
|
|
2038
|
+
* Defaults to public themes only (studio, terra, volt).
|
|
2039
|
+
* Pass ['speedboat'] to lock to Speedboat, or include it
|
|
2040
|
+
* explicitly to make it visible alongside other themes.
|
|
2041
|
+
*/
|
|
2042
|
+
themes?: ThemeName$1[];
|
|
2043
|
+
}
|
|
2044
|
+
declare const CustomizerPanel: ({ mode, showMotionIntensity, themes }: CustomizerPanelProps) => react_jsx_runtime.JSX.Element | null;
|
|
2045
|
+
|
|
2046
|
+
interface FooterLink {
|
|
2047
|
+
label: string;
|
|
2048
|
+
href: string;
|
|
2049
|
+
external?: boolean;
|
|
2050
|
+
}
|
|
2051
|
+
interface FooterSection {
|
|
2052
|
+
title: string;
|
|
2053
|
+
links: FooterLink[];
|
|
2054
|
+
}
|
|
2055
|
+
interface FooterProps {
|
|
2056
|
+
/**
|
|
2057
|
+
* Brand/logo element or text
|
|
2058
|
+
*/
|
|
2059
|
+
logo?: React__default.ReactNode;
|
|
2060
|
+
/**
|
|
2061
|
+
* Sections with links organized in columns
|
|
2062
|
+
*/
|
|
2063
|
+
sections?: FooterSection[];
|
|
2064
|
+
/**
|
|
2065
|
+
* Social links (will be displayed with icons)
|
|
2066
|
+
*/
|
|
2067
|
+
socialLinks?: {
|
|
2068
|
+
github?: string;
|
|
2069
|
+
linkedin?: string;
|
|
2070
|
+
email?: string;
|
|
2071
|
+
};
|
|
2072
|
+
/**
|
|
2073
|
+
* Copyright text
|
|
2074
|
+
*/
|
|
2075
|
+
copyright?: string;
|
|
2076
|
+
/**
|
|
2077
|
+
* Additional className for customization
|
|
2078
|
+
*/
|
|
2079
|
+
className?: string;
|
|
2080
|
+
}
|
|
2081
|
+
/**
|
|
2082
|
+
* Footer Organism
|
|
2083
|
+
*
|
|
2084
|
+
* Inspired by Swiss Grid design principles:
|
|
2085
|
+
* - 8px base unit spacing system
|
|
2086
|
+
* - Clear typographic hierarchy with structured columns
|
|
2087
|
+
* - Generous whitespace for breathing room
|
|
2088
|
+
* - Grid-based layout with precise alignment
|
|
2089
|
+
* - Minimal, functional aesthetic
|
|
2090
|
+
*
|
|
2091
|
+
* Features:
|
|
2092
|
+
* - Responsive multi-column layout
|
|
2093
|
+
* - Social links with icons
|
|
2094
|
+
* - Organized content sections
|
|
2095
|
+
* - Clean typography and spacing
|
|
2096
|
+
*/
|
|
2097
|
+
declare const Footer: ({ ref, logo, sections, socialLinks, copyright, className }: FooterProps & {
|
|
2098
|
+
ref?: React__default.Ref<HTMLElement>;
|
|
2099
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2100
|
+
|
|
2101
|
+
type ResponsiveValue<T> = T | {
|
|
2102
|
+
base?: T;
|
|
2103
|
+
sm?: T;
|
|
2104
|
+
md?: T;
|
|
2105
|
+
lg?: T;
|
|
2106
|
+
xl?: T;
|
|
2107
|
+
};
|
|
2108
|
+
interface GridProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
2109
|
+
children: React__default.ReactNode;
|
|
2110
|
+
/**
|
|
2111
|
+
* Number of columns. Supports responsive object.
|
|
2112
|
+
* @example columns={3} or columns={{ base: 1, md: 3 }}
|
|
2113
|
+
*/
|
|
2114
|
+
columns?: ResponsiveValue<number>;
|
|
2115
|
+
/**
|
|
2116
|
+
* Gap between items. Supports responsive object.
|
|
2117
|
+
* Maps to Tailwind gap scale.
|
|
2118
|
+
*/
|
|
2119
|
+
gap?: ResponsiveValue<number>;
|
|
2120
|
+
/**
|
|
2121
|
+
* HTML element to render as
|
|
2122
|
+
*/
|
|
2123
|
+
as?: any;
|
|
2124
|
+
}
|
|
2125
|
+
declare const Grid: ({ ref, children, columns, gap, as: Component, className, ...props }: GridProps & {
|
|
2126
|
+
ref?: React__default.Ref<HTMLDivElement>;
|
|
2127
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2128
|
+
interface GridItemProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
2129
|
+
children: React__default.ReactNode;
|
|
2130
|
+
colSpan?: ResponsiveValue<number>;
|
|
2131
|
+
rowSpan?: ResponsiveValue<number>;
|
|
2132
|
+
colStart?: ResponsiveValue<number>;
|
|
2133
|
+
as?: any;
|
|
2134
|
+
}
|
|
2135
|
+
declare const GridItem: ({ ref, children, colSpan, rowSpan, colStart, as: Component, className, ...props }: GridItemProps & {
|
|
2136
|
+
ref?: React__default.Ref<HTMLDivElement>;
|
|
2137
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2138
|
+
|
|
2139
|
+
interface HeaderNavLink {
|
|
2140
|
+
label: string;
|
|
2141
|
+
href?: string;
|
|
2142
|
+
/**
|
|
2143
|
+
* Whether this link represents the current/active page
|
|
2144
|
+
* @default false
|
|
2145
|
+
*/
|
|
2146
|
+
active?: boolean;
|
|
2147
|
+
/**
|
|
2148
|
+
* Nested links for dropdown menus
|
|
2149
|
+
*/
|
|
2150
|
+
children?: Array<{
|
|
2151
|
+
label: string;
|
|
2152
|
+
href: string;
|
|
2153
|
+
active?: boolean;
|
|
2154
|
+
}>;
|
|
2155
|
+
}
|
|
2156
|
+
interface HeaderProps {
|
|
2157
|
+
/**
|
|
2158
|
+
* Brand/logo element or text
|
|
2159
|
+
*/
|
|
2160
|
+
logo?: React__default.ReactNode;
|
|
2161
|
+
/**
|
|
2162
|
+
* Array of navigation links
|
|
2163
|
+
*/
|
|
2164
|
+
navLinks?: HeaderNavLink[];
|
|
2165
|
+
/**
|
|
2166
|
+
* Content for the right side (e.g., Sign In, CTA buttons)
|
|
2167
|
+
*/
|
|
2168
|
+
actions?: React__default.ReactNode;
|
|
2169
|
+
/**
|
|
2170
|
+
* Whether to apply glass morphism effect on scroll
|
|
2171
|
+
* @default true
|
|
2172
|
+
*/
|
|
2173
|
+
glassOnScroll?: boolean;
|
|
2174
|
+
/**
|
|
2175
|
+
* Scroll threshold in pixels before applying glass effect
|
|
2176
|
+
* @default 10
|
|
2177
|
+
*/
|
|
2178
|
+
scrollThreshold?: number;
|
|
2179
|
+
/**
|
|
2180
|
+
* Whether the header is sticky (fixed position)
|
|
2181
|
+
* @default true
|
|
2182
|
+
*/
|
|
2183
|
+
sticky?: boolean;
|
|
2184
|
+
/**
|
|
2185
|
+
* Font size for desktop navigation links
|
|
2186
|
+
* @default 'text-sm' (14px)
|
|
2187
|
+
*/
|
|
2188
|
+
navLinkSize?: 'text-xs' | 'text-sm' | 'text-base' | 'text-lg';
|
|
2189
|
+
/**
|
|
2190
|
+
* Font family for navigation links
|
|
2191
|
+
* Uses CSS variable --font-header-nav by default
|
|
2192
|
+
* Logo font is controlled by the logo ReactNode itself or --font-header-logo
|
|
2193
|
+
* @default 'var(--font-header-nav)'
|
|
2194
|
+
*/
|
|
2195
|
+
fontFamily?: string;
|
|
2196
|
+
/**
|
|
2197
|
+
* Maximum width for header content
|
|
2198
|
+
* @default 'max-w-7xl' (1280px)
|
|
2199
|
+
*/
|
|
2200
|
+
maxWidth?: 'max-w-7xl' | 'max-w-[1440px]' | 'max-w-4xl';
|
|
2201
|
+
/**
|
|
2202
|
+
* Alignment of the navigation links
|
|
2203
|
+
* @default 'center'
|
|
2204
|
+
*/
|
|
2205
|
+
navAlignment?: 'center' | 'left' | 'right';
|
|
2206
|
+
/**
|
|
2207
|
+
* Additional className for customization
|
|
2208
|
+
*/
|
|
2209
|
+
className?: string;
|
|
2210
|
+
}
|
|
2211
|
+
declare const Header: ({ ref, logo, navLinks, actions, glassOnScroll, scrollThreshold, sticky, navLinkSize, navAlignment, fontFamily, maxWidth, className }: HeaderProps & {
|
|
2212
|
+
ref?: React__default.Ref<HTMLElement>;
|
|
2213
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2214
|
+
|
|
2215
|
+
interface PageLayoutProps {
|
|
2216
|
+
/** Optional header configuration */
|
|
2217
|
+
header?: React__default.ReactNode;
|
|
2218
|
+
/** Whether the header is sticky (adds top padding to first content element) */
|
|
2219
|
+
stickyHeader?: boolean;
|
|
2220
|
+
/** Optional breadcrumbs */
|
|
2221
|
+
breadcrumbs?: React__default.ReactNode;
|
|
2222
|
+
/** Breadcrumbs position: 'top' (sticky below header) or 'below-title' (static below title+subtitle) */
|
|
2223
|
+
breadcrumbsPosition?: 'top' | 'below-title';
|
|
2224
|
+
/** Optional page title - rendered in content-width container */
|
|
2225
|
+
title?: React__default.ReactNode;
|
|
2226
|
+
/** Optional page subtitle - rendered below title */
|
|
2227
|
+
subtitle?: React__default.ReactNode;
|
|
2228
|
+
/** Apply Swiss Grid Design spacing to title/subtitle area */
|
|
2229
|
+
swissGridSpacing?: boolean;
|
|
2230
|
+
/** Maximum width for title/subtitle area - should match content width for alignment */
|
|
2231
|
+
contentMaxWidth?: 'max-w-7xl' | 'max-w-[1440px]' | 'max-w-4xl';
|
|
2232
|
+
/** Optional secondary navigation (first stack) */
|
|
2233
|
+
secondaryNav?: React__default.ReactNode;
|
|
2234
|
+
/** Optional tertiary navigation (second stack) */
|
|
2235
|
+
tertiaryNav?: React__default.ReactNode;
|
|
2236
|
+
/** Optional footer */
|
|
2237
|
+
footer?: React__default.ReactNode;
|
|
2238
|
+
/** Main content */
|
|
2239
|
+
children: React__default.ReactNode;
|
|
2240
|
+
/** Optional className for main content */
|
|
2241
|
+
className?: string;
|
|
2242
|
+
}
|
|
2243
|
+
/**
|
|
2244
|
+
* PageLayout Component
|
|
2245
|
+
*
|
|
2246
|
+
* A flexible layout organism that composes Header, Breadcrumbs, SecondaryNav,
|
|
2247
|
+
* TertiaryNav, and Footer with automatic z-index and sticky positioning management.
|
|
2248
|
+
*
|
|
2249
|
+
* Features:
|
|
2250
|
+
* - Automatic z-index stacking (50 → 45 → 40 → 30)
|
|
2251
|
+
* - Dynamic sticky positioning calculations
|
|
2252
|
+
* - Optional title/subtitle slots with Swiss Grid spacing
|
|
2253
|
+
* - Flexible breadcrumb positioning (sticky top or static below title)
|
|
2254
|
+
* - Optional composition (all props optional)
|
|
2255
|
+
* - Handles full-height layouts
|
|
2256
|
+
* - Theme-aware styling
|
|
2257
|
+
*
|
|
2258
|
+
* Z-Index Stack:
|
|
2259
|
+
* - Header: z-50, h-16 lg:h-20
|
|
2260
|
+
* - Breadcrumbs (if position='top'): z-45, sticky below header
|
|
2261
|
+
* - SecondaryNav: z-40, first navigation stack
|
|
2262
|
+
* - TertiaryNav: z-30, second navigation stack
|
|
2263
|
+
*
|
|
2264
|
+
* Swiss Grid Design:
|
|
2265
|
+
* - Title/subtitle area uses structured spacing (48-96px sections)
|
|
2266
|
+
* - Typography hierarchy: text-4xl/5xl title, text-lg subtitle
|
|
2267
|
+
* - Content-width container (max-w-7xl) for proper alignment
|
|
2268
|
+
*
|
|
2269
|
+
* Example:
|
|
2270
|
+
* ```tsx
|
|
2271
|
+
* <PageLayout
|
|
2272
|
+
* header={<Header logo={logo} navLinks={links} />}
|
|
2273
|
+
* title={<h1>Page Title</h1>}
|
|
2274
|
+
* subtitle={<p>Page subtitle</p>}
|
|
2275
|
+
* breadcrumbs={<Breadcrumbs items={breadcrumbItems} />}
|
|
2276
|
+
* breadcrumbsPosition="below-title"
|
|
2277
|
+
* swissGridSpacing
|
|
2278
|
+
* secondaryNav={<SecondaryNav items={sections} />}
|
|
2279
|
+
* >
|
|
2280
|
+
* <article>Your content here</article>
|
|
2281
|
+
* </PageLayout>
|
|
2282
|
+
* ```
|
|
2283
|
+
*/
|
|
2284
|
+
declare function PageLayout({ header, stickyHeader, breadcrumbs, breadcrumbsPosition, title, subtitle, swissGridSpacing, contentMaxWidth, secondaryNav, tertiaryNav, footer, children, className, }: PageLayoutProps): react_jsx_runtime.JSX.Element;
|
|
2285
|
+
|
|
2286
|
+
interface PageTemplateHeaderConfig {
|
|
2287
|
+
/** Logo or brand element */
|
|
2288
|
+
logo: React__default.ReactNode;
|
|
2289
|
+
/** Navigation links with optional dropdowns */
|
|
2290
|
+
navLinks?: HeaderNavLink[];
|
|
2291
|
+
/** Actions (e.g., Sign In button, CTA) */
|
|
2292
|
+
actions?: React__default.ReactNode;
|
|
2293
|
+
/** Whether header should be sticky (default: true) */
|
|
2294
|
+
sticky?: boolean;
|
|
2295
|
+
}
|
|
2296
|
+
interface PageTemplateSecondaryNavConfig {
|
|
2297
|
+
/** Secondary navigation items */
|
|
2298
|
+
items: SecondaryNavItem[];
|
|
2299
|
+
/** Currently active item ID */
|
|
2300
|
+
activeId: string;
|
|
2301
|
+
/** Callback when item changes */
|
|
2302
|
+
onItemChange: (id: string) => void;
|
|
2303
|
+
}
|
|
2304
|
+
interface PageTemplateProps {
|
|
2305
|
+
/** Header configuration */
|
|
2306
|
+
header: PageTemplateHeaderConfig;
|
|
2307
|
+
/** Page title (required) */
|
|
2308
|
+
title: string;
|
|
2309
|
+
/** Optional page subtitle */
|
|
2310
|
+
subtitle?: string;
|
|
2311
|
+
/** Breadcrumb navigation items */
|
|
2312
|
+
breadcrumbs: BreadcrumbItemLegacy[];
|
|
2313
|
+
/** Optional secondary navigation */
|
|
2314
|
+
secondaryNav?: PageTemplateSecondaryNavConfig;
|
|
2315
|
+
/** Main page content */
|
|
2316
|
+
children: React__default.ReactNode;
|
|
2317
|
+
/** Optional footer */
|
|
2318
|
+
footer?: React__default.ReactNode;
|
|
2319
|
+
/** Show customizer panel (default: true) */
|
|
2320
|
+
showCustomizer?: boolean;
|
|
2321
|
+
/** Content width variant */
|
|
2322
|
+
variant?: 'standard' | 'wide' | 'narrow';
|
|
2323
|
+
}
|
|
2324
|
+
/**
|
|
2325
|
+
* PageTemplate Component
|
|
2326
|
+
*
|
|
2327
|
+
* An opinionated page layout template based on Swiss Grid Design principles.
|
|
2328
|
+
* This template provides a structured, clean layout with sensible defaults for
|
|
2329
|
+
* standard pages (blogs, docs, app pages).
|
|
2330
|
+
*
|
|
2331
|
+
* Swiss Grid Design Principles:
|
|
2332
|
+
* - Structured spacing: 48-96px between major sections
|
|
2333
|
+
* - Clear typography hierarchy: 36-48px title, 18px subtitle
|
|
2334
|
+
* - Grid-based alignment with consistent content widths
|
|
2335
|
+
* - Generous whitespace for breathing room
|
|
2336
|
+
* - Minimal, functional aesthetic
|
|
2337
|
+
*
|
|
2338
|
+
* Features:
|
|
2339
|
+
* - Sticky header with glass morphism effect
|
|
2340
|
+
* - Breadcrumbs positioned below page title (static)
|
|
2341
|
+
* - Always-sticky secondary navigation
|
|
2342
|
+
* - Optional customizer panel
|
|
2343
|
+
* - Three width variants: standard (1280px), wide (1440px), narrow (896px)
|
|
2344
|
+
* - Automatic Swiss Grid spacing
|
|
2345
|
+
*
|
|
2346
|
+
* Example:
|
|
2347
|
+
* ```tsx
|
|
2348
|
+
* <PageTemplate
|
|
2349
|
+
* header={{
|
|
2350
|
+
* logo: <Link href="/">Brand</Link>,
|
|
2351
|
+
* navLinks: navigationItems,
|
|
2352
|
+
* sticky: true
|
|
2353
|
+
* }}
|
|
2354
|
+
* title="Welcome to Our Platform"
|
|
2355
|
+
* subtitle="Build amazing experiences with our tools"
|
|
2356
|
+
* breadcrumbs={[
|
|
2357
|
+
* { label: 'Home', href: '/' },
|
|
2358
|
+
* { label: 'Platform' }
|
|
2359
|
+
* ]}
|
|
2360
|
+
* >
|
|
2361
|
+
* <article>Your content here</article>
|
|
2362
|
+
* </PageTemplate>
|
|
2363
|
+
* ```
|
|
2364
|
+
*/
|
|
2365
|
+
declare function PageTemplate({ header, title, subtitle, breadcrumbs, secondaryNav, children, footer, showCustomizer, variant, }: PageTemplateProps): react_jsx_runtime.JSX.Element;
|
|
2366
|
+
|
|
2367
|
+
declare const ResizablePanelGroup: ({ className, ...props }: React$1.ComponentProps<typeof Group>) => react_jsx_runtime.JSX.Element;
|
|
2368
|
+
declare const ResizablePanel: typeof Panel;
|
|
2369
|
+
declare const ResizableHandle: ({ withHandle, className, ...props }: React$1.ComponentProps<typeof Separator$2> & {
|
|
2370
|
+
withHandle?: boolean;
|
|
2371
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2372
|
+
|
|
2373
|
+
declare const ScrollArea: ({ ref, className, children, ...props }: React$1.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.Root> & {
|
|
2374
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof ScrollAreaPrimitive.Root>>;
|
|
2375
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2376
|
+
declare const ScrollBar: ({ ref, className, orientation, ...props }: React$1.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.Scrollbar> & {
|
|
2377
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof ScrollAreaPrimitive.Scrollbar>>;
|
|
2378
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2379
|
+
|
|
2380
|
+
declare const Separator: ({ ref, className, orientation, decorative, ...props }: React$1.ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root> & {
|
|
2381
|
+
ref?: React$1.Ref<React$1.ElementRef<typeof SeparatorPrimitive.Root>>;
|
|
2382
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2383
|
+
|
|
2384
|
+
declare const Sidebar: ({ ref, className, children, isOpen, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
|
|
2385
|
+
isOpen?: boolean;
|
|
2386
|
+
} & {
|
|
2387
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
2388
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2389
|
+
declare const SidebarOverlay: ({ ref, className, isOpen, onDismiss, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
|
|
2390
|
+
isOpen?: boolean;
|
|
2391
|
+
onDismiss?: () => void;
|
|
2392
|
+
} & {
|
|
2393
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
2394
|
+
}) => react_jsx_runtime.JSX.Element | null;
|
|
2395
|
+
declare const SidebarHeader: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
|
|
2396
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
2397
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2398
|
+
declare const SidebarContent: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
|
|
2399
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
2400
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2401
|
+
declare const SidebarFooter: ({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
|
|
2402
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
2403
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2404
|
+
interface SidebarItemProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
2405
|
+
isActive?: boolean;
|
|
2406
|
+
icon?: React$1.ReactNode;
|
|
2407
|
+
showIcon?: boolean;
|
|
2408
|
+
depth?: number;
|
|
2409
|
+
hasChildren?: boolean;
|
|
2410
|
+
isExpanded?: boolean;
|
|
2411
|
+
asChild?: boolean;
|
|
2412
|
+
}
|
|
2413
|
+
declare const SidebarItem: ({ ref, className, isActive, icon, showIcon, depth, hasChildren, isExpanded, children, asChild, ...props }: SidebarItemProps & {
|
|
2414
|
+
ref?: React$1.Ref<HTMLButtonElement>;
|
|
2415
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2416
|
+
|
|
2417
|
+
interface StackProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
2418
|
+
/**
|
|
2419
|
+
* Content to arrange
|
|
2420
|
+
*/
|
|
2421
|
+
children: React__default.ReactNode;
|
|
2422
|
+
/**
|
|
2423
|
+
* Direction of flow
|
|
2424
|
+
* @default 'column'
|
|
2425
|
+
*/
|
|
2426
|
+
direction?: 'row' | 'column' | 'row-reverse' | 'column-reverse';
|
|
2427
|
+
/**
|
|
2428
|
+
* Spacing between items (scale: 0-12, or px values)
|
|
2429
|
+
* Maps to Tailwind gap utility (e.g. 4 -> gap-4)
|
|
2430
|
+
* @default 4
|
|
2431
|
+
*/
|
|
2432
|
+
gap?: number;
|
|
2433
|
+
/**
|
|
2434
|
+
* Alignment on the cross axis (align-items)
|
|
2435
|
+
*/
|
|
2436
|
+
align?: 'start' | 'end' | 'center' | 'baseline' | 'stretch';
|
|
2437
|
+
/**
|
|
2438
|
+
* Distribution on the main axis (justify-content)
|
|
2439
|
+
*/
|
|
2440
|
+
justify?: 'start' | 'end' | 'center' | 'between' | 'around' | 'evenly';
|
|
2441
|
+
/**
|
|
2442
|
+
* Whether to allow wrapping (for row layouts)
|
|
2443
|
+
*/
|
|
2444
|
+
wrap?: boolean;
|
|
2445
|
+
/**
|
|
2446
|
+
* HTML element to render as
|
|
2447
|
+
* @default 'div'
|
|
2448
|
+
*/
|
|
2449
|
+
as?: any;
|
|
2450
|
+
}
|
|
2451
|
+
declare const Stack: ({ ref, children, direction, gap, align, justify, wrap, as: Component, className, ...props }: StackProps & {
|
|
2452
|
+
ref?: React__default.Ref<HTMLDivElement>;
|
|
2453
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2454
|
+
|
|
2455
|
+
type GlassThickness = 'ultrathin' | 'thin' | 'medium' | 'thick' | 'ultrathick';
|
|
2456
|
+
/** 0 = pure white, 9 = pure black. 10 even steps. */
|
|
2457
|
+
type GlassTint = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9;
|
|
2458
|
+
interface GlassSurfaceProps {
|
|
2459
|
+
/** Whether the frosted glass effect is active (background + shadow). */
|
|
2460
|
+
active?: boolean;
|
|
2461
|
+
/** Shadow direction: 'top' casts downward, 'bottom' casts upward. */
|
|
2462
|
+
position?: 'top' | 'bottom';
|
|
2463
|
+
/** Glass opacity tier (default 'thin').
|
|
2464
|
+
* ultrathin 28% → thin 38% → medium 48% → thick 58% → ultrathick 68%. */
|
|
2465
|
+
thickness?: GlassThickness;
|
|
2466
|
+
/** Glass fill color for light mode: 0 = white, 9 = black (default 2). */
|
|
2467
|
+
tint?: GlassTint;
|
|
2468
|
+
/** Glass fill color for dark mode. Defaults to `9 - tint` (auto-invert). */
|
|
2469
|
+
darkTint?: GlassTint;
|
|
2470
|
+
className?: string;
|
|
2471
|
+
style?: CSSProperties;
|
|
2472
|
+
children: ReactNode;
|
|
2473
|
+
ref?: Ref<HTMLDivElement>;
|
|
2474
|
+
}
|
|
2475
|
+
/**
|
|
2476
|
+
* Liquid glass surface with five thickness tiers and a 10-step tint scale.
|
|
2477
|
+
*
|
|
2478
|
+
* `backdrop-filter: blur(20px) saturate(180%)` provides the frosted
|
|
2479
|
+
* blur; `thickness` controls opacity; `tint` controls the fill color
|
|
2480
|
+
* from pure white (0) through neutral gray to pure black (9).
|
|
2481
|
+
*/
|
|
2482
|
+
declare function GlassSurface({ active, position, thickness, tint, darkTint, className, style, children, ref, }: GlassSurfaceProps): react_jsx_runtime.JSX.Element;
|
|
2483
|
+
|
|
2484
|
+
interface WarpBackgroundProps {
|
|
2485
|
+
focal?: [number, number];
|
|
2486
|
+
rotation?: [number, number];
|
|
2487
|
+
starSpeed?: number;
|
|
2488
|
+
density?: number;
|
|
2489
|
+
hueShift?: number;
|
|
2490
|
+
disableAnimation?: boolean;
|
|
2491
|
+
speed?: number;
|
|
2492
|
+
mouseInteraction?: boolean;
|
|
2493
|
+
glowIntensity?: number;
|
|
2494
|
+
saturation?: number;
|
|
2495
|
+
mouseRepulsion?: boolean;
|
|
2496
|
+
repulsionStrength?: number;
|
|
2497
|
+
twinkleIntensity?: number;
|
|
2498
|
+
rotationSpeed?: number;
|
|
2499
|
+
autoCenterRepulsion?: number;
|
|
2500
|
+
transparent?: boolean;
|
|
2501
|
+
className?: string;
|
|
2502
|
+
[key: string]: any;
|
|
2503
|
+
}
|
|
2504
|
+
declare function WarpBackground({ focal, rotation, starSpeed, density, hueShift, disableAnimation, speed, mouseInteraction, glowIntensity, saturation, mouseRepulsion, repulsionStrength, twinkleIntensity, rotationSpeed, autoCenterRepulsion, transparent, className, ...rest }: WarpBackgroundProps): react_jsx_runtime.JSX.Element;
|
|
2505
|
+
|
|
2506
|
+
interface FaultyTerminalProps {
|
|
2507
|
+
scale?: number;
|
|
2508
|
+
gridMul?: [number, number];
|
|
2509
|
+
digitSize?: number;
|
|
2510
|
+
timeScale?: number;
|
|
2511
|
+
pause?: boolean;
|
|
2512
|
+
scanlineIntensity?: number;
|
|
2513
|
+
glitchAmount?: number;
|
|
2514
|
+
flickerAmount?: number;
|
|
2515
|
+
noiseAmp?: number;
|
|
2516
|
+
chromaticAberration?: number;
|
|
2517
|
+
dither?: number | boolean;
|
|
2518
|
+
curvature?: number;
|
|
2519
|
+
tint?: string;
|
|
2520
|
+
mouseReact?: boolean;
|
|
2521
|
+
mouseStrength?: number;
|
|
2522
|
+
dpr?: number;
|
|
2523
|
+
pageLoadAnimation?: boolean;
|
|
2524
|
+
brightness?: number;
|
|
2525
|
+
className?: string;
|
|
2526
|
+
style?: React.CSSProperties;
|
|
2527
|
+
[key: string]: any;
|
|
2528
|
+
}
|
|
2529
|
+
declare function FaultyTerminal({ scale, gridMul, digitSize, timeScale, pause, scanlineIntensity, glitchAmount, flickerAmount, noiseAmp, chromaticAberration, dither, curvature, tint, mouseReact, mouseStrength, dpr, // Defaulting loosely, avoid window access in default param if SSR
|
|
2530
|
+
pageLoadAnimation, brightness, className, style, ...rest }: FaultyTerminalProps): react_jsx_runtime.JSX.Element;
|
|
2531
|
+
|
|
2532
|
+
interface AnimatedBeamProps {
|
|
2533
|
+
className?: string;
|
|
2534
|
+
containerRef: React.RefObject<HTMLElement | null>;
|
|
2535
|
+
fromRef?: React.RefObject<HTMLElement | null>;
|
|
2536
|
+
toRef?: React.RefObject<HTMLElement | null>;
|
|
2537
|
+
curvature?: number;
|
|
2538
|
+
reverse?: boolean;
|
|
2539
|
+
pathColor?: string;
|
|
2540
|
+
pathWidth?: number;
|
|
2541
|
+
pathOpacity?: number;
|
|
2542
|
+
gradientStartColor?: string;
|
|
2543
|
+
gradientStopColor?: string;
|
|
2544
|
+
delay?: number;
|
|
2545
|
+
duration?: number;
|
|
2546
|
+
startX?: number;
|
|
2547
|
+
startY?: number;
|
|
2548
|
+
endX?: number;
|
|
2549
|
+
endY?: number;
|
|
2550
|
+
}
|
|
2551
|
+
declare const AnimatedBeam: ({ className, containerRef, fromRef, toRef, curvature, reverse, duration, delay, pathColor, pathWidth, pathOpacity, gradientStartColor, gradientStopColor, startX, startY, endX, endY, }: AnimatedBeamProps) => react_jsx_runtime.JSX.Element;
|
|
2552
|
+
|
|
2553
|
+
interface OrbBackgroundProps {
|
|
2554
|
+
className?: string;
|
|
2555
|
+
hue?: number;
|
|
2556
|
+
hoverIntensity?: number;
|
|
2557
|
+
rotateOnHover?: boolean;
|
|
2558
|
+
forceHoverState?: boolean;
|
|
2559
|
+
/**
|
|
2560
|
+
* Background color (hex). If not provided, uses CSS variable --color-background.
|
|
2561
|
+
* @default undefined (reads from theme)
|
|
2562
|
+
*/
|
|
2563
|
+
backgroundColor?: string;
|
|
2564
|
+
/**
|
|
2565
|
+
* Primary orb color (hex). Creates the main vibrant tone.
|
|
2566
|
+
* @default '#9c43fe' (purple)
|
|
2567
|
+
*/
|
|
2568
|
+
orbColor1?: string;
|
|
2569
|
+
/**
|
|
2570
|
+
* Secondary orb color (hex). Adds cool cyan tones.
|
|
2571
|
+
* @default '#4cc2e9' (cyan)
|
|
2572
|
+
*/
|
|
2573
|
+
orbColor2?: string;
|
|
2574
|
+
/**
|
|
2575
|
+
* Tertiary orb color (hex). Provides deep blue accent tones.
|
|
2576
|
+
* @default '#101499' (deep blue)
|
|
2577
|
+
*/
|
|
2578
|
+
orbColor3?: string;
|
|
2579
|
+
}
|
|
2580
|
+
declare function OrbBackground({ className, hue, hoverIntensity, rotateOnHover, forceHoverState, backgroundColor, orbColor1, orbColor2, orbColor3, }: OrbBackgroundProps): react_jsx_runtime.JSX.Element;
|
|
2581
|
+
|
|
2582
|
+
interface HeroBlockProps {
|
|
2583
|
+
className?: string;
|
|
2584
|
+
badge?: string;
|
|
2585
|
+
headline: string | React.ReactNode;
|
|
2586
|
+
description: string;
|
|
2587
|
+
primaryCta?: {
|
|
2588
|
+
label: string;
|
|
2589
|
+
onClick?: () => void;
|
|
2590
|
+
href?: string;
|
|
2591
|
+
variant?: "default" | "secondary" | "outline" | "ghost" | "link" | "destructive";
|
|
2592
|
+
};
|
|
2593
|
+
secondaryCta?: {
|
|
2594
|
+
label: string;
|
|
2595
|
+
onClick?: () => void;
|
|
2596
|
+
href?: string;
|
|
2597
|
+
};
|
|
2598
|
+
background?: React.ReactNode;
|
|
2599
|
+
children?: React.ReactNode;
|
|
2600
|
+
}
|
|
2601
|
+
declare function HeroBlock({ className, badge, headline, description, primaryCta, secondaryCta, background, children, }: HeroBlockProps): react_jsx_runtime.JSX.Element;
|
|
2602
|
+
|
|
2603
|
+
interface ColorRGB {
|
|
2604
|
+
r: number;
|
|
2605
|
+
g: number;
|
|
2606
|
+
b: number;
|
|
2607
|
+
}
|
|
2608
|
+
interface SplashCursorProps {
|
|
2609
|
+
SIM_RESOLUTION?: number;
|
|
2610
|
+
DYE_RESOLUTION?: number;
|
|
2611
|
+
CAPTURE_RESOLUTION?: number;
|
|
2612
|
+
DENSITY_DISSIPATION?: number;
|
|
2613
|
+
VELOCITY_DISSIPATION?: number;
|
|
2614
|
+
PRESSURE?: number;
|
|
2615
|
+
PRESSURE_ITERATIONS?: number;
|
|
2616
|
+
CURL?: number;
|
|
2617
|
+
SPLAT_RADIUS?: number;
|
|
2618
|
+
SPLAT_FORCE?: number;
|
|
2619
|
+
SHADING?: boolean;
|
|
2620
|
+
COLOR_UPDATE_SPEED?: number;
|
|
2621
|
+
BACK_COLOR?: ColorRGB;
|
|
2622
|
+
TRANSPARENT?: boolean;
|
|
2623
|
+
className?: string;
|
|
2624
|
+
style?: React__default.CSSProperties;
|
|
2625
|
+
}
|
|
2626
|
+
declare function SplashCursor({ SIM_RESOLUTION, DYE_RESOLUTION, CAPTURE_RESOLUTION, DENSITY_DISSIPATION, VELOCITY_DISSIPATION, PRESSURE, PRESSURE_ITERATIONS, CURL, SPLAT_RADIUS, SPLAT_FORCE, SHADING, COLOR_UPDATE_SPEED, BACK_COLOR, TRANSPARENT, className, style }: SplashCursorProps): react_jsx_runtime.JSX.Element;
|
|
2627
|
+
|
|
2628
|
+
interface TargetCursorProps {
|
|
2629
|
+
color?: string;
|
|
2630
|
+
outerSize?: number;
|
|
2631
|
+
innerSize?: number;
|
|
2632
|
+
outerAlpha?: number;
|
|
2633
|
+
innerScale?: number;
|
|
2634
|
+
outerScale?: number;
|
|
2635
|
+
clickScale?: number;
|
|
2636
|
+
blendMode?: boolean;
|
|
2637
|
+
}
|
|
2638
|
+
declare function TargetCursor({ color, outerSize, innerSize, outerAlpha, innerScale, outerScale, clickScale, blendMode }: TargetCursorProps): react_jsx_runtime.JSX.Element | null;
|
|
2639
|
+
|
|
2640
|
+
interface ThemeState {
|
|
2641
|
+
theme: ThemeName$1;
|
|
2642
|
+
mode: ColorMode$1;
|
|
2643
|
+
setTheme: (theme: ThemeName$1) => void;
|
|
2644
|
+
setMode: (mode: ColorMode$1) => void;
|
|
2645
|
+
toggleMode: () => void;
|
|
2646
|
+
themeConfig: {
|
|
2647
|
+
name: ThemeName$1;
|
|
2648
|
+
mode: ColorMode$1;
|
|
2649
|
+
};
|
|
2650
|
+
}
|
|
2651
|
+
declare const useThemeStore: zustand.UseBoundStore<Omit<zustand.StoreApi<ThemeState>, "setState" | "persist"> & {
|
|
2652
|
+
setState(partial: ThemeState | Partial<ThemeState> | ((state: ThemeState) => ThemeState | Partial<ThemeState>), replace?: false | undefined): unknown;
|
|
2653
|
+
setState(state: ThemeState | ((state: ThemeState) => ThemeState), replace: true): unknown;
|
|
2654
|
+
persist: {
|
|
2655
|
+
setOptions: (options: Partial<zustand_middleware.PersistOptions<ThemeState, {
|
|
2656
|
+
theme: "studio" | "terra" | "volt" | "speedboat";
|
|
2657
|
+
mode: "light" | "dark";
|
|
2658
|
+
}, unknown>>) => void;
|
|
2659
|
+
clearStorage: () => void;
|
|
2660
|
+
rehydrate: () => Promise<void> | void;
|
|
2661
|
+
hasHydrated: () => boolean;
|
|
2662
|
+
onHydrate: (fn: (state: ThemeState) => void) => () => void;
|
|
2663
|
+
onFinishHydration: (fn: (state: ThemeState) => void) => () => void;
|
|
2664
|
+
getOptions: () => Partial<zustand_middleware.PersistOptions<ThemeState, {
|
|
2665
|
+
theme: "studio" | "terra" | "volt" | "speedboat";
|
|
2666
|
+
mode: "light" | "dark";
|
|
2667
|
+
}, unknown>>;
|
|
2668
|
+
};
|
|
2669
|
+
}>;
|
|
2670
|
+
|
|
2671
|
+
type CustomizationMode = 'simple' | 'advanced';
|
|
2672
|
+
interface ColorPalette {
|
|
2673
|
+
name?: string;
|
|
2674
|
+
description?: string;
|
|
2675
|
+
primary: string;
|
|
2676
|
+
primaryForeground: string;
|
|
2677
|
+
secondary?: string;
|
|
2678
|
+
secondaryForeground?: string;
|
|
2679
|
+
accent?: string;
|
|
2680
|
+
accentForeground?: string;
|
|
2681
|
+
scale: Record<number, string>;
|
|
2682
|
+
derivedTokens: Record<string, string>;
|
|
2683
|
+
}
|
|
2684
|
+
interface SavedPalette {
|
|
2685
|
+
id: string;
|
|
2686
|
+
name: string;
|
|
2687
|
+
description: string;
|
|
2688
|
+
primary: string;
|
|
2689
|
+
accent: string;
|
|
2690
|
+
secondary?: string;
|
|
2691
|
+
category: 'custom';
|
|
2692
|
+
wcagAA: boolean;
|
|
2693
|
+
wcagAAA: boolean;
|
|
2694
|
+
createdAt: number;
|
|
2695
|
+
mood: string[];
|
|
2696
|
+
bestFor?: string[];
|
|
2697
|
+
harmony?: string;
|
|
2698
|
+
rationale?: string;
|
|
2699
|
+
}
|
|
2700
|
+
interface SavedFontTheme extends FontTheme {
|
|
2701
|
+
id: string;
|
|
2702
|
+
createdAt: number;
|
|
2703
|
+
category: 'custom';
|
|
2704
|
+
}
|
|
2705
|
+
type ThemeName = 'studio' | 'terra' | 'volt' | 'speedboat';
|
|
2706
|
+
type ColorMode = 'light' | 'dark';
|
|
2707
|
+
interface CustomizerState {
|
|
2708
|
+
motion: number;
|
|
2709
|
+
prefersReducedMotion: boolean;
|
|
2710
|
+
customizationMode: CustomizationMode;
|
|
2711
|
+
customColors: {
|
|
2712
|
+
[theme in ThemeName]?: {
|
|
2713
|
+
[mode in ColorMode]?: ColorPalette;
|
|
2714
|
+
};
|
|
2715
|
+
};
|
|
2716
|
+
savedPalettes: SavedPalette[];
|
|
2717
|
+
customFontThemes: {
|
|
2718
|
+
[theme in ThemeName]?: {
|
|
2719
|
+
[mode in ColorMode]?: FontTheme;
|
|
2720
|
+
};
|
|
2721
|
+
};
|
|
2722
|
+
savedFontThemes: SavedFontTheme[];
|
|
2723
|
+
setMotion: (level: number) => void;
|
|
2724
|
+
setPrefersReducedMotion: (value: boolean) => void;
|
|
2725
|
+
setCustomizationMode: (mode: CustomizationMode) => void;
|
|
2726
|
+
setCustomPrimaryColor: (theme: ThemeName, mode: ColorMode, hexColor: string) => void;
|
|
2727
|
+
setCustomSecondaryColor: (theme: ThemeName, mode: ColorMode, hexColor: string) => void;
|
|
2728
|
+
setCustomAccentColor: (theme: ThemeName, mode: ColorMode, hexColor: string) => void;
|
|
2729
|
+
applyColorPalette: (theme: ThemeName, mode: ColorMode, colors: {
|
|
2730
|
+
primary: string;
|
|
2731
|
+
secondary?: string;
|
|
2732
|
+
accent?: string;
|
|
2733
|
+
name?: string;
|
|
2734
|
+
description?: string;
|
|
2735
|
+
}) => void;
|
|
2736
|
+
resetCustomColors: (theme: ThemeName, mode?: ColorMode) => void;
|
|
2737
|
+
getActiveColorPalette: (theme: ThemeName, mode: ColorMode) => ColorPalette | null;
|
|
2738
|
+
savePalette: (palette: Omit<SavedPalette, 'id' | 'createdAt' | 'category'>) => void;
|
|
2739
|
+
updatePalette: (id: string, updates: Partial<SavedPalette>) => void;
|
|
2740
|
+
renamePalette: (id: string, newName: string) => void;
|
|
2741
|
+
deletePalette: (id: string) => void;
|
|
2742
|
+
reorderPalettes: (palettes: SavedPalette[]) => void;
|
|
2743
|
+
getSavedPalettes: () => SavedPalette[];
|
|
2744
|
+
applyFontTheme: (theme: ThemeName, mode: ColorMode, fontTheme: FontTheme) => void;
|
|
2745
|
+
resetCustomFonts: (theme: ThemeName, mode?: ColorMode) => void;
|
|
2746
|
+
getActiveFontTheme: (theme: ThemeName, mode: ColorMode) => FontTheme | null;
|
|
2747
|
+
saveFontTheme: (fontTheme: Omit<SavedFontTheme, 'id' | 'createdAt' | 'category'>) => void;
|
|
2748
|
+
updateFontTheme: (id: string, updates: Partial<SavedFontTheme>) => void;
|
|
2749
|
+
renameFontTheme: (id: string, newName: string) => void;
|
|
2750
|
+
deleteFontTheme: (id: string) => void;
|
|
2751
|
+
reorderFontThemes: (fontThemes: SavedFontTheme[]) => void;
|
|
2752
|
+
getSavedFontThemes: () => SavedFontTheme[];
|
|
2753
|
+
}
|
|
2754
|
+
declare const useCustomizer: zustand.UseBoundStore<Omit<zustand.StoreApi<CustomizerState>, "setState" | "persist"> & {
|
|
2755
|
+
setState(partial: CustomizerState | Partial<CustomizerState> | ((state: CustomizerState) => CustomizerState | Partial<CustomizerState>), replace?: false | undefined): unknown;
|
|
2756
|
+
setState(state: CustomizerState | ((state: CustomizerState) => CustomizerState), replace: true): unknown;
|
|
2757
|
+
persist: {
|
|
2758
|
+
setOptions: (options: Partial<zustand_middleware.PersistOptions<CustomizerState, {
|
|
2759
|
+
motion: number;
|
|
2760
|
+
prefersReducedMotion: boolean;
|
|
2761
|
+
customizationMode: CustomizationMode;
|
|
2762
|
+
customColors: {
|
|
2763
|
+
studio?: {
|
|
2764
|
+
light?: ColorPalette | undefined;
|
|
2765
|
+
dark?: ColorPalette | undefined;
|
|
2766
|
+
} | undefined;
|
|
2767
|
+
terra?: {
|
|
2768
|
+
light?: ColorPalette | undefined;
|
|
2769
|
+
dark?: ColorPalette | undefined;
|
|
2770
|
+
} | undefined;
|
|
2771
|
+
volt?: {
|
|
2772
|
+
light?: ColorPalette | undefined;
|
|
2773
|
+
dark?: ColorPalette | undefined;
|
|
2774
|
+
} | undefined;
|
|
2775
|
+
speedboat?: {
|
|
2776
|
+
light?: ColorPalette | undefined;
|
|
2777
|
+
dark?: ColorPalette | undefined;
|
|
2778
|
+
} | undefined;
|
|
2779
|
+
};
|
|
2780
|
+
savedPalettes: SavedPalette[];
|
|
2781
|
+
customFontThemes: {
|
|
2782
|
+
studio?: {
|
|
2783
|
+
light?: FontTheme | undefined;
|
|
2784
|
+
dark?: FontTheme | undefined;
|
|
2785
|
+
} | undefined;
|
|
2786
|
+
terra?: {
|
|
2787
|
+
light?: FontTheme | undefined;
|
|
2788
|
+
dark?: FontTheme | undefined;
|
|
2789
|
+
} | undefined;
|
|
2790
|
+
volt?: {
|
|
2791
|
+
light?: FontTheme | undefined;
|
|
2792
|
+
dark?: FontTheme | undefined;
|
|
2793
|
+
} | undefined;
|
|
2794
|
+
speedboat?: {
|
|
2795
|
+
light?: FontTheme | undefined;
|
|
2796
|
+
dark?: FontTheme | undefined;
|
|
2797
|
+
} | undefined;
|
|
2798
|
+
};
|
|
2799
|
+
savedFontThemes: SavedFontTheme[];
|
|
2800
|
+
}, unknown>>) => void;
|
|
2801
|
+
clearStorage: () => void;
|
|
2802
|
+
rehydrate: () => Promise<void> | void;
|
|
2803
|
+
hasHydrated: () => boolean;
|
|
2804
|
+
onHydrate: (fn: (state: CustomizerState) => void) => () => void;
|
|
2805
|
+
onFinishHydration: (fn: (state: CustomizerState) => void) => () => void;
|
|
2806
|
+
getOptions: () => Partial<zustand_middleware.PersistOptions<CustomizerState, {
|
|
2807
|
+
motion: number;
|
|
2808
|
+
prefersReducedMotion: boolean;
|
|
2809
|
+
customizationMode: CustomizationMode;
|
|
2810
|
+
customColors: {
|
|
2811
|
+
studio?: {
|
|
2812
|
+
light?: ColorPalette | undefined;
|
|
2813
|
+
dark?: ColorPalette | undefined;
|
|
2814
|
+
} | undefined;
|
|
2815
|
+
terra?: {
|
|
2816
|
+
light?: ColorPalette | undefined;
|
|
2817
|
+
dark?: ColorPalette | undefined;
|
|
2818
|
+
} | undefined;
|
|
2819
|
+
volt?: {
|
|
2820
|
+
light?: ColorPalette | undefined;
|
|
2821
|
+
dark?: ColorPalette | undefined;
|
|
2822
|
+
} | undefined;
|
|
2823
|
+
speedboat?: {
|
|
2824
|
+
light?: ColorPalette | undefined;
|
|
2825
|
+
dark?: ColorPalette | undefined;
|
|
2826
|
+
} | undefined;
|
|
2827
|
+
};
|
|
2828
|
+
savedPalettes: SavedPalette[];
|
|
2829
|
+
customFontThemes: {
|
|
2830
|
+
studio?: {
|
|
2831
|
+
light?: FontTheme | undefined;
|
|
2832
|
+
dark?: FontTheme | undefined;
|
|
2833
|
+
} | undefined;
|
|
2834
|
+
terra?: {
|
|
2835
|
+
light?: FontTheme | undefined;
|
|
2836
|
+
dark?: FontTheme | undefined;
|
|
2837
|
+
} | undefined;
|
|
2838
|
+
volt?: {
|
|
2839
|
+
light?: FontTheme | undefined;
|
|
2840
|
+
dark?: FontTheme | undefined;
|
|
2841
|
+
} | undefined;
|
|
2842
|
+
speedboat?: {
|
|
2843
|
+
light?: FontTheme | undefined;
|
|
2844
|
+
dark?: FontTheme | undefined;
|
|
2845
|
+
} | undefined;
|
|
2846
|
+
};
|
|
2847
|
+
savedFontThemes: SavedFontTheme[];
|
|
2848
|
+
}, unknown>>;
|
|
2849
|
+
};
|
|
2850
|
+
}>;
|
|
2851
|
+
|
|
2852
|
+
/**
|
|
2853
|
+
* Component Registry - Source of Truth
|
|
2854
|
+
*
|
|
2855
|
+
* This file serves as the authoritative source for component counts,
|
|
2856
|
+
* categories, and organization. Used by:
|
|
2857
|
+
* - Documentation (Sage Studio)
|
|
2858
|
+
* - MCP Server registry
|
|
2859
|
+
* - Marketing materials
|
|
2860
|
+
* - Internal tooling
|
|
2861
|
+
*
|
|
2862
|
+
* ⚠️ IMPORTANT: When adding a new component, follow the complete workflow:
|
|
2863
|
+
* See: /.agent/workflows/register-new-component.md
|
|
2864
|
+
*
|
|
2865
|
+
* The workflow includes:
|
|
2866
|
+
* - Creating the component in packages/ui
|
|
2867
|
+
* - Registering in Sage Studio (apps/web)
|
|
2868
|
+
* - Updating THIS registry file
|
|
2869
|
+
* - Updating MCP server registry
|
|
2870
|
+
* - Version bumping and npm publishing
|
|
2871
|
+
*
|
|
2872
|
+
* Last Updated: 2026-02-28
|
|
2873
|
+
*/
|
|
2874
|
+
declare const BRAND: {
|
|
2875
|
+
readonly productName: "Sage Design Engine";
|
|
2876
|
+
readonly productNameShort: "Sage";
|
|
2877
|
+
readonly themeNames: {
|
|
2878
|
+
readonly organic: "Terra";
|
|
2879
|
+
readonly technical: "Volt";
|
|
2880
|
+
readonly neutral: "Studio";
|
|
2881
|
+
};
|
|
2882
|
+
readonly tagline: "The Solopreneur's Development Stack";
|
|
2883
|
+
readonly mission: "AI-Native components for velocity";
|
|
2884
|
+
};
|
|
2885
|
+
declare const COMPONENT_REGISTRY: {
|
|
2886
|
+
/**
|
|
2887
|
+
* Total count of all exported UI components from @thesage/ui
|
|
2888
|
+
*/
|
|
2889
|
+
readonly totalCount: 100;
|
|
2890
|
+
/**
|
|
2891
|
+
* Core categories following functional organization pattern
|
|
2892
|
+
* (what components DO, not abstract hierarchy)
|
|
2893
|
+
*/
|
|
2894
|
+
readonly coreCategories: {
|
|
2895
|
+
readonly actions: {
|
|
2896
|
+
readonly count: 5;
|
|
2897
|
+
readonly description: "Components that trigger behavior";
|
|
2898
|
+
readonly examples: readonly ["Button", "Link", "Toggle", "ToggleGroup", "Magnetic"];
|
|
2899
|
+
};
|
|
2900
|
+
readonly forms: {
|
|
2901
|
+
readonly count: 19;
|
|
2902
|
+
readonly description: "Components that collect user input";
|
|
2903
|
+
readonly examples: readonly ["Input", "Select", "Checkbox", "Switch", "Textarea", "ColorPicker", "SearchBar", "FileUpload"];
|
|
2904
|
+
};
|
|
2905
|
+
readonly navigation: {
|
|
2906
|
+
readonly count: 10;
|
|
2907
|
+
readonly description: "Components that help users move through content";
|
|
2908
|
+
readonly examples: readonly ["Tabs", "Breadcrumb", "Pagination", "NavigationMenu", "Command"];
|
|
2909
|
+
};
|
|
2910
|
+
readonly overlays: {
|
|
2911
|
+
readonly count: 12;
|
|
2912
|
+
readonly description: "Components that display contextual content";
|
|
2913
|
+
readonly examples: readonly ["Dialog", "Tooltip", "Popover", "Drawer", "Modal", "Sheet", "NotificationCenter"];
|
|
2914
|
+
};
|
|
2915
|
+
readonly feedback: {
|
|
2916
|
+
readonly count: 9;
|
|
2917
|
+
readonly description: "Components that communicate system state";
|
|
2918
|
+
readonly examples: readonly ["Alert", "Toast", "Progress", "Spinner", "Skeleton", "EmptyState", "Stepper"];
|
|
2919
|
+
};
|
|
2920
|
+
readonly 'data-display': {
|
|
2921
|
+
readonly count: 19;
|
|
2922
|
+
readonly description: "Components that present information";
|
|
2923
|
+
readonly examples: readonly ["Card", "Table", "Badge", "Avatar", "Heading", "Text", "Code", "Calendar", "StatCard", "Timeline", "TreeView"];
|
|
2924
|
+
};
|
|
2925
|
+
readonly layout: {
|
|
2926
|
+
readonly count: 18;
|
|
2927
|
+
readonly description: "Components for spatial organization";
|
|
2928
|
+
readonly examples: readonly ["Accordion", "Separator", "Stack", "Grid", "Container", "ScrollArea", "GlassSurface"];
|
|
2929
|
+
};
|
|
2930
|
+
};
|
|
2931
|
+
/**
|
|
2932
|
+
* Specialty categories for advanced interactions and effects
|
|
2933
|
+
*/
|
|
2934
|
+
readonly specialtyCategories: {
|
|
2935
|
+
readonly backgrounds: {
|
|
2936
|
+
readonly count: 2;
|
|
2937
|
+
readonly description: "Animated background effects";
|
|
2938
|
+
readonly examples: readonly ["WarpBackground", "FaultyTerminal"];
|
|
2939
|
+
};
|
|
2940
|
+
readonly cursor: {
|
|
2941
|
+
readonly count: 2;
|
|
2942
|
+
readonly description: "Interactive cursor effects";
|
|
2943
|
+
readonly examples: readonly ["SplashCursor", "TargetCursor"];
|
|
2944
|
+
};
|
|
2945
|
+
readonly blocks: {
|
|
2946
|
+
readonly count: 1;
|
|
2947
|
+
readonly description: "Composed page blocks";
|
|
2948
|
+
readonly examples: readonly ["Hero", "OpenGraphCard"];
|
|
2949
|
+
};
|
|
2950
|
+
};
|
|
2951
|
+
/**
|
|
2952
|
+
* Supporting APIs (not counted as components)
|
|
2953
|
+
*/
|
|
2954
|
+
readonly supportingAPIs: {
|
|
2955
|
+
readonly providers: readonly ["ThemeProvider"];
|
|
2956
|
+
readonly hooks: readonly ["useTheme", "useMotionPreference", "useForm"];
|
|
2957
|
+
readonly utilities: readonly ["animations", "breadcrumbs", "colors", "utils", "validation", "syntax-parser"];
|
|
2958
|
+
readonly stores: readonly ["themeStore", "customizerStore"];
|
|
2959
|
+
};
|
|
2960
|
+
};
|
|
2961
|
+
/**
|
|
2962
|
+
* Computed totals
|
|
2963
|
+
*/
|
|
2964
|
+
declare const COMPONENT_COUNTS: {
|
|
2965
|
+
readonly core: number;
|
|
2966
|
+
readonly specialty: number;
|
|
2967
|
+
readonly total: 100;
|
|
2968
|
+
};
|
|
2969
|
+
/**
|
|
2970
|
+
* Marketing-friendly descriptions
|
|
2971
|
+
*/
|
|
2972
|
+
declare const MARKETING_COPY: {
|
|
2973
|
+
readonly short: "100 production-ready components";
|
|
2974
|
+
readonly medium: "100 components across 7 core categories, plus specialty backgrounds and motion effects";
|
|
2975
|
+
readonly long: "100 thoughtfully designed components organized by function: actions, forms, navigation, overlays, feedback, data display, and layout—plus specialty components for backgrounds, cursor interactions, and animated effects.";
|
|
2976
|
+
};
|
|
2977
|
+
/**
|
|
2978
|
+
* Documentation usage examples
|
|
2979
|
+
*/
|
|
2980
|
+
declare const DOC_EXAMPLES: {
|
|
2981
|
+
readonly overview: `100 components across ${number} core categories`;
|
|
2982
|
+
readonly breakdown: string;
|
|
2983
|
+
};
|
|
2984
|
+
|
|
2985
|
+
declare const index$8_Button: typeof Button;
|
|
2986
|
+
type index$8_ButtonProps = ButtonProps;
|
|
2987
|
+
declare const index$8_Link: typeof Link;
|
|
2988
|
+
type index$8_LinkProps = LinkProps;
|
|
2989
|
+
declare const index$8_Magnetic: typeof Magnetic;
|
|
2990
|
+
type index$8_MagneticProps = MagneticProps;
|
|
2991
|
+
declare const index$8_Toggle: typeof Toggle;
|
|
2992
|
+
declare const index$8_ToggleGroup: typeof ToggleGroup;
|
|
2993
|
+
declare const index$8_ToggleGroupItem: typeof ToggleGroupItem;
|
|
2994
|
+
declare const index$8_buttonVariants: typeof buttonVariants;
|
|
2995
|
+
declare const index$8_toggleVariants: typeof toggleVariants;
|
|
2996
|
+
declare namespace index$8 {
|
|
2997
|
+
export { index$8_Button as Button, type index$8_ButtonProps as ButtonProps, index$8_Link as Link, type index$8_LinkProps as LinkProps, index$8_Magnetic as Magnetic, type index$8_MagneticProps as MagneticProps, index$8_Toggle as Toggle, index$8_ToggleGroup as ToggleGroup, index$8_ToggleGroupItem as ToggleGroupItem, index$8_buttonVariants as buttonVariants, index$8_toggleVariants as toggleVariants };
|
|
2998
|
+
}
|
|
2999
|
+
|
|
3000
|
+
declare const index$7_Checkbox: typeof Checkbox;
|
|
3001
|
+
declare const index$7_ColorPicker: typeof ColorPicker;
|
|
3002
|
+
type index$7_ColorPickerProps = ColorPickerProps;
|
|
3003
|
+
declare const index$7_Combobox: typeof Combobox;
|
|
3004
|
+
type index$7_ComboboxOption = ComboboxOption;
|
|
3005
|
+
type index$7_ComboboxProps = ComboboxProps;
|
|
3006
|
+
declare const index$7_DragDropHandle: typeof DragDropHandle;
|
|
3007
|
+
declare const index$7_DragDropHandleProps: typeof DragDropHandleProps;
|
|
3008
|
+
declare const index$7_DragDropItem: typeof DragDropItem;
|
|
3009
|
+
declare const index$7_DragDropList: typeof DragDropList;
|
|
3010
|
+
declare const index$7_DragDropListProps: typeof DragDropListProps;
|
|
3011
|
+
declare const index$7_DragDropTable: typeof DragDropTable;
|
|
3012
|
+
declare const index$7_DragDropTableProps: typeof DragDropTableProps;
|
|
3013
|
+
declare const index$7_FileUpload: typeof FileUpload;
|
|
3014
|
+
type index$7_FileUploadProps = FileUploadProps;
|
|
3015
|
+
declare const index$7_FilterButton: typeof FilterButton;
|
|
3016
|
+
type index$7_FilterButtonProps = FilterButtonProps;
|
|
3017
|
+
declare const index$7_Form: typeof Form;
|
|
3018
|
+
declare const index$7_FormControl: typeof FormControl;
|
|
3019
|
+
declare const index$7_FormDescription: typeof FormDescription;
|
|
3020
|
+
declare const index$7_FormField: typeof FormField;
|
|
3021
|
+
declare const index$7_FormItem: typeof FormItem;
|
|
3022
|
+
declare const index$7_FormLabel: typeof FormLabel;
|
|
3023
|
+
declare const index$7_FormMessage: typeof FormMessage;
|
|
3024
|
+
declare const index$7_Input: typeof Input;
|
|
3025
|
+
declare const index$7_InputOTP: typeof InputOTP;
|
|
3026
|
+
declare const index$7_InputOTPGroup: typeof InputOTPGroup;
|
|
3027
|
+
declare const index$7_InputOTPSeparator: typeof InputOTPSeparator;
|
|
3028
|
+
declare const index$7_InputOTPSlot: typeof InputOTPSlot;
|
|
3029
|
+
type index$7_InputProps = InputProps;
|
|
3030
|
+
declare const index$7_Label: typeof Label;
|
|
3031
|
+
declare const index$7_RadioGroup: typeof RadioGroup;
|
|
3032
|
+
declare const index$7_RadioGroupItem: typeof RadioGroupItem;
|
|
3033
|
+
declare const index$7_SearchBar: typeof SearchBar;
|
|
3034
|
+
type index$7_SearchBarProps = SearchBarProps;
|
|
3035
|
+
declare const index$7_Select: typeof Select;
|
|
3036
|
+
declare const index$7_SelectContent: typeof SelectContent;
|
|
3037
|
+
declare const index$7_SelectGroup: typeof SelectGroup;
|
|
3038
|
+
declare const index$7_SelectItem: typeof SelectItem;
|
|
3039
|
+
declare const index$7_SelectLabel: typeof SelectLabel;
|
|
3040
|
+
declare const index$7_SelectScrollDownButton: typeof SelectScrollDownButton;
|
|
3041
|
+
declare const index$7_SelectScrollUpButton: typeof SelectScrollUpButton;
|
|
3042
|
+
declare const index$7_SelectTrigger: typeof SelectTrigger;
|
|
3043
|
+
declare const index$7_SelectValue: typeof SelectValue;
|
|
3044
|
+
declare const index$7_Slider: typeof Slider;
|
|
3045
|
+
declare const index$7_Switch: typeof Switch;
|
|
3046
|
+
declare const index$7_TextField: typeof TextField;
|
|
3047
|
+
type index$7_TextFieldProps = TextFieldProps;
|
|
3048
|
+
declare const index$7_Textarea: typeof Textarea;
|
|
3049
|
+
type index$7_TextareaProps = TextareaProps;
|
|
3050
|
+
declare const index$7_ThemeSwitcher: typeof ThemeSwitcher;
|
|
3051
|
+
type index$7_ThemeSwitcherProps = ThemeSwitcherProps;
|
|
3052
|
+
declare const index$7_ThemeToggle: typeof ThemeToggle;
|
|
3053
|
+
type index$7_ThemeToggleProps = ThemeToggleProps;
|
|
3054
|
+
declare const index$7_fileUploadZoneVariants: typeof fileUploadZoneVariants;
|
|
3055
|
+
declare const index$7_labelVariants: typeof labelVariants;
|
|
3056
|
+
declare const index$7_useFormField: typeof useFormField;
|
|
3057
|
+
declare namespace index$7 {
|
|
3058
|
+
export { index$7_Checkbox as Checkbox, index$7_ColorPicker as ColorPicker, type index$7_ColorPickerProps as ColorPickerProps, index$7_Combobox as Combobox, type index$7_ComboboxOption as ComboboxOption, type index$7_ComboboxProps as ComboboxProps, index$7_DragDropHandle as DragDropHandle, index$7_DragDropHandleProps as DragDropHandleProps, index$7_DragDropItem as DragDropItem, index$7_DragDropList as DragDropList, index$7_DragDropListProps as DragDropListProps, index$7_DragDropTable as DragDropTable, index$7_DragDropTableProps as DragDropTableProps, index$7_FileUpload as FileUpload, type index$7_FileUploadProps as FileUploadProps, index$7_FilterButton as FilterButton, type index$7_FilterButtonProps as FilterButtonProps, index$7_Form as Form, index$7_FormControl as FormControl, index$7_FormDescription as FormDescription, index$7_FormField as FormField, index$7_FormItem as FormItem, index$7_FormLabel as FormLabel, index$7_FormMessage as FormMessage, index$7_Input as Input, index$7_InputOTP as InputOTP, index$7_InputOTPGroup as InputOTPGroup, index$7_InputOTPSeparator as InputOTPSeparator, index$7_InputOTPSlot as InputOTPSlot, type index$7_InputProps as InputProps, index$7_Label as Label, index$7_RadioGroup as RadioGroup, index$7_RadioGroupItem as RadioGroupItem, index$7_SearchBar as SearchBar, type index$7_SearchBarProps as SearchBarProps, index$7_Select as Select, index$7_SelectContent as SelectContent, index$7_SelectGroup as SelectGroup, index$7_SelectItem as SelectItem, index$7_SelectLabel as SelectLabel, index$7_SelectScrollDownButton as SelectScrollDownButton, index$7_SelectScrollUpButton as SelectScrollUpButton, SelectSeparatorComp as SelectSeparator, index$7_SelectTrigger as SelectTrigger, index$7_SelectValue as SelectValue, index$7_Slider as Slider, index$7_Switch as Switch, index$7_TextField as TextField, type index$7_TextFieldProps as TextFieldProps, index$7_Textarea as Textarea, type index$7_TextareaProps as TextareaProps, index$7_ThemeSwitcher as ThemeSwitcher, type index$7_ThemeSwitcherProps as ThemeSwitcherProps, index$7_ThemeToggle as ThemeToggle, type index$7_ThemeToggleProps as ThemeToggleProps, index$7_fileUploadZoneVariants as fileUploadZoneVariants, index$7_labelVariants as labelVariants, index$7_useFormField as useFormField };
|
|
3059
|
+
}
|
|
3060
|
+
|
|
3061
|
+
declare const index$6_Breadcrumb: typeof Breadcrumb;
|
|
3062
|
+
declare const index$6_BreadcrumbEllipsis: typeof BreadcrumbEllipsis;
|
|
3063
|
+
declare const index$6_BreadcrumbItem: typeof BreadcrumbItem;
|
|
3064
|
+
declare const index$6_BreadcrumbItemLegacy: typeof BreadcrumbItemLegacy;
|
|
3065
|
+
declare const index$6_BreadcrumbLink: typeof BreadcrumbLink;
|
|
3066
|
+
declare const index$6_BreadcrumbList: typeof BreadcrumbList;
|
|
3067
|
+
declare const index$6_BreadcrumbPage: typeof BreadcrumbPage;
|
|
3068
|
+
declare const index$6_BreadcrumbSeparator: typeof BreadcrumbSeparator;
|
|
3069
|
+
declare const index$6_Breadcrumbs: typeof Breadcrumbs;
|
|
3070
|
+
declare const index$6_BreadcrumbsProps: typeof BreadcrumbsProps;
|
|
3071
|
+
declare const index$6_Command: typeof Command;
|
|
3072
|
+
declare const index$6_CommandDialog: typeof CommandDialog;
|
|
3073
|
+
declare const index$6_CommandEmpty: typeof CommandEmpty;
|
|
3074
|
+
declare const index$6_CommandGroup: typeof CommandGroup;
|
|
3075
|
+
declare const index$6_CommandInput: typeof CommandInput;
|
|
3076
|
+
declare const index$6_CommandItem: typeof CommandItem;
|
|
3077
|
+
declare const index$6_CommandList: typeof CommandList;
|
|
3078
|
+
declare const index$6_CommandSeparator: typeof CommandSeparator;
|
|
3079
|
+
declare const index$6_CommandShortcut: typeof CommandShortcut;
|
|
3080
|
+
declare const index$6_Menubar: typeof Menubar;
|
|
3081
|
+
declare const index$6_MenubarContent: typeof MenubarContent;
|
|
3082
|
+
declare const index$6_MenubarGroup: typeof MenubarGroup;
|
|
3083
|
+
declare const index$6_MenubarItem: typeof MenubarItem;
|
|
3084
|
+
declare const index$6_MenubarMenu: typeof MenubarMenu;
|
|
3085
|
+
declare const index$6_MenubarPortal: typeof MenubarPortal;
|
|
3086
|
+
declare const index$6_MenubarRadioGroup: typeof MenubarRadioGroup;
|
|
3087
|
+
declare const index$6_MenubarSeparator: typeof MenubarSeparator;
|
|
3088
|
+
declare const index$6_MenubarShortcut: typeof MenubarShortcut;
|
|
3089
|
+
declare const index$6_MenubarSub: typeof MenubarSub;
|
|
3090
|
+
declare const index$6_MenubarTrigger: typeof MenubarTrigger;
|
|
3091
|
+
declare const index$6_NavLink: typeof NavLink;
|
|
3092
|
+
type index$6_NavLinkProps = NavLinkProps;
|
|
3093
|
+
declare const index$6_NavigationMenu: typeof NavigationMenu;
|
|
3094
|
+
declare const index$6_NavigationMenuContent: typeof NavigationMenuContent;
|
|
3095
|
+
declare const index$6_NavigationMenuIndicator: typeof NavigationMenuIndicator;
|
|
3096
|
+
declare const index$6_NavigationMenuItem: typeof NavigationMenuItem;
|
|
3097
|
+
declare const index$6_NavigationMenuLink: typeof NavigationMenuLink;
|
|
3098
|
+
declare const index$6_NavigationMenuList: typeof NavigationMenuList;
|
|
3099
|
+
declare const index$6_NavigationMenuTrigger: typeof NavigationMenuTrigger;
|
|
3100
|
+
declare const index$6_NavigationMenuViewport: typeof NavigationMenuViewport;
|
|
3101
|
+
declare const index$6_Pagination: typeof Pagination;
|
|
3102
|
+
declare const index$6_PaginationContent: typeof PaginationContent;
|
|
3103
|
+
declare const index$6_PaginationEllipsis: typeof PaginationEllipsis;
|
|
3104
|
+
declare const index$6_PaginationItem: typeof PaginationItem;
|
|
3105
|
+
declare const index$6_PaginationLink: typeof PaginationLink;
|
|
3106
|
+
declare const index$6_PaginationNext: typeof PaginationNext;
|
|
3107
|
+
declare const index$6_PaginationPrevious: typeof PaginationPrevious;
|
|
3108
|
+
declare const index$6_SecondaryNav: typeof SecondaryNav;
|
|
3109
|
+
type index$6_SecondaryNavItem = SecondaryNavItem;
|
|
3110
|
+
type index$6_SecondaryNavProps = SecondaryNavProps;
|
|
3111
|
+
declare const index$6_Tabs: typeof Tabs;
|
|
3112
|
+
declare const index$6_TabsContent: typeof TabsContent;
|
|
3113
|
+
declare const index$6_TabsList: typeof TabsList;
|
|
3114
|
+
declare const index$6_TabsTrigger: typeof TabsTrigger;
|
|
3115
|
+
declare const index$6_TertiaryNav: typeof TertiaryNav;
|
|
3116
|
+
type index$6_TertiaryNavItem = TertiaryNavItem;
|
|
3117
|
+
type index$6_TertiaryNavProps = TertiaryNavProps;
|
|
3118
|
+
declare const index$6_navigationMenuTriggerStyle: typeof navigationMenuTriggerStyle;
|
|
3119
|
+
declare namespace index$6 {
|
|
3120
|
+
export { index$6_Breadcrumb as Breadcrumb, index$6_BreadcrumbEllipsis as BreadcrumbEllipsis, index$6_BreadcrumbItem as BreadcrumbItem, index$6_BreadcrumbItemLegacy as BreadcrumbItemLegacy, index$6_BreadcrumbLink as BreadcrumbLink, index$6_BreadcrumbList as BreadcrumbList, index$6_BreadcrumbPage as BreadcrumbPage, index$6_BreadcrumbSeparator as BreadcrumbSeparator, index$6_Breadcrumbs as Breadcrumbs, index$6_BreadcrumbsProps as BreadcrumbsProps, index$6_Command as Command, index$6_CommandDialog as CommandDialog, index$6_CommandEmpty as CommandEmpty, index$6_CommandGroup as CommandGroup, index$6_CommandInput as CommandInput, index$6_CommandItem as CommandItem, index$6_CommandList as CommandList, index$6_CommandSeparator as CommandSeparator, index$6_CommandShortcut as CommandShortcut, index$6_Menubar as Menubar, index$6_MenubarContent as MenubarContent, index$6_MenubarGroup as MenubarGroup, index$6_MenubarItem as MenubarItem, index$6_MenubarMenu as MenubarMenu, index$6_MenubarPortal as MenubarPortal, index$6_MenubarRadioGroup as MenubarRadioGroup, index$6_MenubarSeparator as MenubarSeparator, index$6_MenubarShortcut as MenubarShortcut, index$6_MenubarSub as MenubarSub, index$6_MenubarTrigger as MenubarTrigger, index$6_NavLink as NavLink, type index$6_NavLinkProps as NavLinkProps, index$6_NavigationMenu as NavigationMenu, index$6_NavigationMenuContent as NavigationMenuContent, index$6_NavigationMenuIndicator as NavigationMenuIndicator, index$6_NavigationMenuItem as NavigationMenuItem, index$6_NavigationMenuLink as NavigationMenuLink, index$6_NavigationMenuList as NavigationMenuList, index$6_NavigationMenuTrigger as NavigationMenuTrigger, index$6_NavigationMenuViewport as NavigationMenuViewport, index$6_Pagination as Pagination, index$6_PaginationContent as PaginationContent, index$6_PaginationEllipsis as PaginationEllipsis, index$6_PaginationItem as PaginationItem, index$6_PaginationLink as PaginationLink, index$6_PaginationNext as PaginationNext, index$6_PaginationPrevious as PaginationPrevious, index$6_SecondaryNav as SecondaryNav, type index$6_SecondaryNavItem as SecondaryNavItem, type index$6_SecondaryNavProps as SecondaryNavProps, index$6_Tabs as Tabs, index$6_TabsContent as TabsContent, index$6_TabsList as TabsList, index$6_TabsTrigger as TabsTrigger, index$6_TertiaryNav as TertiaryNav, type index$6_TertiaryNavItem as TertiaryNavItem, type index$6_TertiaryNavProps as TertiaryNavProps, index$6_navigationMenuTriggerStyle as navigationMenuTriggerStyle };
|
|
3121
|
+
}
|
|
3122
|
+
|
|
3123
|
+
declare const index$5_AlertDialog: typeof AlertDialog;
|
|
3124
|
+
declare const index$5_AlertDialogAction: typeof AlertDialogAction;
|
|
3125
|
+
declare const index$5_AlertDialogCancel: typeof AlertDialogCancel;
|
|
3126
|
+
declare const index$5_AlertDialogContent: typeof AlertDialogContent;
|
|
3127
|
+
declare const index$5_AlertDialogDescription: typeof AlertDialogDescription;
|
|
3128
|
+
declare const index$5_AlertDialogFooter: typeof AlertDialogFooter;
|
|
3129
|
+
declare const index$5_AlertDialogHeader: typeof AlertDialogHeader;
|
|
3130
|
+
declare const index$5_AlertDialogOverlay: typeof AlertDialogOverlay;
|
|
3131
|
+
declare const index$5_AlertDialogPortal: typeof AlertDialogPortal;
|
|
3132
|
+
declare const index$5_AlertDialogTitle: typeof AlertDialogTitle;
|
|
3133
|
+
declare const index$5_AlertDialogTrigger: typeof AlertDialogTrigger;
|
|
3134
|
+
declare const index$5_ContextMenu: typeof ContextMenu;
|
|
3135
|
+
declare const index$5_ContextMenuCheckboxItem: typeof ContextMenuCheckboxItem;
|
|
3136
|
+
declare const index$5_ContextMenuContent: typeof ContextMenuContent;
|
|
3137
|
+
declare const index$5_ContextMenuGroup: typeof ContextMenuGroup;
|
|
3138
|
+
declare const index$5_ContextMenuItem: typeof ContextMenuItem;
|
|
3139
|
+
declare const index$5_ContextMenuLabel: typeof ContextMenuLabel;
|
|
3140
|
+
declare const index$5_ContextMenuPortal: typeof ContextMenuPortal;
|
|
3141
|
+
declare const index$5_ContextMenuRadioGroup: typeof ContextMenuRadioGroup;
|
|
3142
|
+
declare const index$5_ContextMenuRadioItem: typeof ContextMenuRadioItem;
|
|
3143
|
+
declare const index$5_ContextMenuSeparator: typeof ContextMenuSeparator;
|
|
3144
|
+
declare const index$5_ContextMenuShortcut: typeof ContextMenuShortcut;
|
|
3145
|
+
declare const index$5_ContextMenuSub: typeof ContextMenuSub;
|
|
3146
|
+
declare const index$5_ContextMenuSubContent: typeof ContextMenuSubContent;
|
|
3147
|
+
declare const index$5_ContextMenuSubTrigger: typeof ContextMenuSubTrigger;
|
|
3148
|
+
declare const index$5_ContextMenuTrigger: typeof ContextMenuTrigger;
|
|
3149
|
+
declare const index$5_Dialog: typeof Dialog;
|
|
3150
|
+
declare const index$5_DialogClose: typeof DialogClose;
|
|
3151
|
+
declare const index$5_DialogContent: typeof DialogContent;
|
|
3152
|
+
declare const index$5_DialogDescription: typeof DialogDescription;
|
|
3153
|
+
declare const index$5_DialogFooter: typeof DialogFooter;
|
|
3154
|
+
declare const index$5_DialogHeader: typeof DialogHeader;
|
|
3155
|
+
declare const index$5_DialogOverlay: typeof DialogOverlay;
|
|
3156
|
+
declare const index$5_DialogPortal: typeof DialogPortal;
|
|
3157
|
+
declare const index$5_DialogTitle: typeof DialogTitle;
|
|
3158
|
+
declare const index$5_DialogTrigger: typeof DialogTrigger;
|
|
3159
|
+
declare const index$5_Drawer: typeof Drawer;
|
|
3160
|
+
declare const index$5_DrawerClose: typeof DrawerClose;
|
|
3161
|
+
declare const index$5_DrawerContent: typeof DrawerContent;
|
|
3162
|
+
declare const index$5_DrawerDescription: typeof DrawerDescription;
|
|
3163
|
+
declare const index$5_DrawerFooter: typeof DrawerFooter;
|
|
3164
|
+
declare const index$5_DrawerHeader: typeof DrawerHeader;
|
|
3165
|
+
declare const index$5_DrawerOverlay: typeof DrawerOverlay;
|
|
3166
|
+
declare const index$5_DrawerPortal: typeof DrawerPortal;
|
|
3167
|
+
declare const index$5_DrawerTitle: typeof DrawerTitle;
|
|
3168
|
+
declare const index$5_DrawerTrigger: typeof DrawerTrigger;
|
|
3169
|
+
declare const index$5_Dropdown: typeof Dropdown;
|
|
3170
|
+
type index$5_DropdownItem = DropdownItem;
|
|
3171
|
+
declare const index$5_DropdownMenu: typeof DropdownMenu;
|
|
3172
|
+
declare const index$5_DropdownMenuCheckboxItem: typeof DropdownMenuCheckboxItem;
|
|
3173
|
+
declare const index$5_DropdownMenuContent: typeof DropdownMenuContent;
|
|
3174
|
+
declare const index$5_DropdownMenuGroup: typeof DropdownMenuGroup;
|
|
3175
|
+
declare const index$5_DropdownMenuItem: typeof DropdownMenuItem;
|
|
3176
|
+
declare const index$5_DropdownMenuLabel: typeof DropdownMenuLabel;
|
|
3177
|
+
declare const index$5_DropdownMenuPortal: typeof DropdownMenuPortal;
|
|
3178
|
+
declare const index$5_DropdownMenuRadioGroup: typeof DropdownMenuRadioGroup;
|
|
3179
|
+
declare const index$5_DropdownMenuRadioItem: typeof DropdownMenuRadioItem;
|
|
3180
|
+
declare const index$5_DropdownMenuSeparator: typeof DropdownMenuSeparator;
|
|
3181
|
+
declare const index$5_DropdownMenuShortcut: typeof DropdownMenuShortcut;
|
|
3182
|
+
declare const index$5_DropdownMenuSub: typeof DropdownMenuSub;
|
|
3183
|
+
declare const index$5_DropdownMenuSubContent: typeof DropdownMenuSubContent;
|
|
3184
|
+
declare const index$5_DropdownMenuSubTrigger: typeof DropdownMenuSubTrigger;
|
|
3185
|
+
declare const index$5_DropdownMenuTrigger: typeof DropdownMenuTrigger;
|
|
3186
|
+
type index$5_DropdownProps = DropdownProps;
|
|
3187
|
+
declare const index$5_HoverCard: typeof HoverCard;
|
|
3188
|
+
declare const index$5_HoverCardContent: typeof HoverCardContent;
|
|
3189
|
+
declare const index$5_HoverCardTrigger: typeof HoverCardTrigger;
|
|
3190
|
+
declare const index$5_Modal: typeof Modal;
|
|
3191
|
+
type index$5_ModalProps = ModalProps;
|
|
3192
|
+
declare const index$5_NotificationCenter: typeof NotificationCenter;
|
|
3193
|
+
type index$5_NotificationCenterProps = NotificationCenterProps;
|
|
3194
|
+
type index$5_NotificationItem = NotificationItem;
|
|
3195
|
+
declare const index$5_Popover: typeof Popover;
|
|
3196
|
+
declare const index$5_PopoverAnchor: typeof PopoverAnchor;
|
|
3197
|
+
declare const index$5_PopoverContent: typeof PopoverContent;
|
|
3198
|
+
declare const index$5_PopoverTrigger: typeof PopoverTrigger;
|
|
3199
|
+
declare const index$5_Sheet: typeof Sheet;
|
|
3200
|
+
declare const index$5_SheetClose: typeof SheetClose;
|
|
3201
|
+
declare const index$5_SheetContent: typeof SheetContent;
|
|
3202
|
+
declare const index$5_SheetDescription: typeof SheetDescription;
|
|
3203
|
+
declare const index$5_SheetFooter: typeof SheetFooter;
|
|
3204
|
+
declare const index$5_SheetHeader: typeof SheetHeader;
|
|
3205
|
+
declare const index$5_SheetOverlay: typeof SheetOverlay;
|
|
3206
|
+
declare const index$5_SheetPortal: typeof SheetPortal;
|
|
3207
|
+
declare const index$5_SheetTitle: typeof SheetTitle;
|
|
3208
|
+
declare const index$5_SheetTrigger: typeof SheetTrigger;
|
|
3209
|
+
declare const index$5_Tooltip: typeof Tooltip;
|
|
3210
|
+
declare const index$5_TooltipContent: typeof TooltipContent;
|
|
3211
|
+
declare const index$5_TooltipProvider: typeof TooltipProvider;
|
|
3212
|
+
declare const index$5_TooltipTrigger: typeof TooltipTrigger;
|
|
3213
|
+
declare const index$5_sheetVariants: typeof sheetVariants;
|
|
3214
|
+
declare namespace index$5 {
|
|
3215
|
+
export { index$5_AlertDialog as AlertDialog, index$5_AlertDialogAction as AlertDialogAction, index$5_AlertDialogCancel as AlertDialogCancel, index$5_AlertDialogContent as AlertDialogContent, index$5_AlertDialogDescription as AlertDialogDescription, index$5_AlertDialogFooter as AlertDialogFooter, index$5_AlertDialogHeader as AlertDialogHeader, index$5_AlertDialogOverlay as AlertDialogOverlay, index$5_AlertDialogPortal as AlertDialogPortal, index$5_AlertDialogTitle as AlertDialogTitle, index$5_AlertDialogTrigger as AlertDialogTrigger, index$5_ContextMenu as ContextMenu, index$5_ContextMenuCheckboxItem as ContextMenuCheckboxItem, index$5_ContextMenuContent as ContextMenuContent, index$5_ContextMenuGroup as ContextMenuGroup, index$5_ContextMenuItem as ContextMenuItem, index$5_ContextMenuLabel as ContextMenuLabel, index$5_ContextMenuPortal as ContextMenuPortal, index$5_ContextMenuRadioGroup as ContextMenuRadioGroup, index$5_ContextMenuRadioItem as ContextMenuRadioItem, index$5_ContextMenuSeparator as ContextMenuSeparator, index$5_ContextMenuShortcut as ContextMenuShortcut, index$5_ContextMenuSub as ContextMenuSub, index$5_ContextMenuSubContent as ContextMenuSubContent, index$5_ContextMenuSubTrigger as ContextMenuSubTrigger, index$5_ContextMenuTrigger as ContextMenuTrigger, index$5_Dialog as Dialog, index$5_DialogClose as DialogClose, index$5_DialogContent as DialogContent, index$5_DialogDescription as DialogDescription, index$5_DialogFooter as DialogFooter, index$5_DialogHeader as DialogHeader, index$5_DialogOverlay as DialogOverlay, index$5_DialogPortal as DialogPortal, index$5_DialogTitle as DialogTitle, index$5_DialogTrigger as DialogTrigger, index$5_Drawer as Drawer, index$5_DrawerClose as DrawerClose, index$5_DrawerContent as DrawerContent, index$5_DrawerDescription as DrawerDescription, index$5_DrawerFooter as DrawerFooter, index$5_DrawerHeader as DrawerHeader, index$5_DrawerOverlay as DrawerOverlay, index$5_DrawerPortal as DrawerPortal, index$5_DrawerTitle as DrawerTitle, index$5_DrawerTrigger as DrawerTrigger, index$5_Dropdown as Dropdown, type index$5_DropdownItem as DropdownItem, index$5_DropdownMenu as DropdownMenu, index$5_DropdownMenuCheckboxItem as DropdownMenuCheckboxItem, index$5_DropdownMenuContent as DropdownMenuContent, index$5_DropdownMenuGroup as DropdownMenuGroup, index$5_DropdownMenuItem as DropdownMenuItem, index$5_DropdownMenuLabel as DropdownMenuLabel, index$5_DropdownMenuPortal as DropdownMenuPortal, index$5_DropdownMenuRadioGroup as DropdownMenuRadioGroup, index$5_DropdownMenuRadioItem as DropdownMenuRadioItem, index$5_DropdownMenuSeparator as DropdownMenuSeparator, index$5_DropdownMenuShortcut as DropdownMenuShortcut, index$5_DropdownMenuSub as DropdownMenuSub, index$5_DropdownMenuSubContent as DropdownMenuSubContent, index$5_DropdownMenuSubTrigger as DropdownMenuSubTrigger, index$5_DropdownMenuTrigger as DropdownMenuTrigger, type index$5_DropdownProps as DropdownProps, index$5_HoverCard as HoverCard, index$5_HoverCardContent as HoverCardContent, index$5_HoverCardTrigger as HoverCardTrigger, index$5_Modal as Modal, type index$5_ModalProps as ModalProps, index$5_NotificationCenter as NotificationCenter, type index$5_NotificationCenterProps as NotificationCenterProps, type index$5_NotificationItem as NotificationItem, index$5_Popover as Popover, index$5_PopoverAnchor as PopoverAnchor, index$5_PopoverContent as PopoverContent, index$5_PopoverTrigger as PopoverTrigger, index$5_Sheet as Sheet, index$5_SheetClose as SheetClose, index$5_SheetContent as SheetContent, index$5_SheetDescription as SheetDescription, index$5_SheetFooter as SheetFooter, index$5_SheetHeader as SheetHeader, index$5_SheetOverlay as SheetOverlay, index$5_SheetPortal as SheetPortal, index$5_SheetTitle as SheetTitle, index$5_SheetTrigger as SheetTrigger, index$5_Tooltip as Tooltip, index$5_TooltipContent as TooltipContent, index$5_TooltipProvider as TooltipProvider, index$5_TooltipTrigger as TooltipTrigger, index$5_sheetVariants as sheetVariants };
|
|
3216
|
+
}
|
|
3217
|
+
|
|
3218
|
+
declare const index$4_Alert: typeof Alert;
|
|
3219
|
+
declare const index$4_AlertDescription: typeof AlertDescription;
|
|
3220
|
+
declare const index$4_AlertTitle: typeof AlertTitle;
|
|
3221
|
+
declare const index$4_EmptyState: typeof EmptyState;
|
|
3222
|
+
type index$4_EmptyStateProps = EmptyStateProps;
|
|
3223
|
+
declare const index$4_Progress: typeof Progress;
|
|
3224
|
+
declare const index$4_ProgressBar: typeof ProgressBar;
|
|
3225
|
+
type index$4_ProgressBarProps = ProgressBarProps;
|
|
3226
|
+
declare const index$4_Skeleton: typeof Skeleton;
|
|
3227
|
+
type index$4_SkeletonProps = SkeletonProps;
|
|
3228
|
+
declare const index$4_Spinner: typeof Spinner;
|
|
3229
|
+
type index$4_SpinnerProps = SpinnerProps;
|
|
3230
|
+
declare const index$4_Stepper: typeof Stepper;
|
|
3231
|
+
type index$4_StepperProps = StepperProps;
|
|
3232
|
+
declare const index$4_StepperStep: typeof StepperStep;
|
|
3233
|
+
type index$4_StepperStepProps = StepperStepProps;
|
|
3234
|
+
type index$4_Toast = Toast;
|
|
3235
|
+
declare const index$4_ToastProvider: typeof ToastProvider;
|
|
3236
|
+
type index$4_ToastProviderProps = ToastProviderProps;
|
|
3237
|
+
type index$4_ToastType = ToastType;
|
|
3238
|
+
declare const index$4_Toaster: typeof Toaster;
|
|
3239
|
+
declare const index$4_alertVariants: typeof alertVariants;
|
|
3240
|
+
declare const index$4_emptyStateVariants: typeof emptyStateVariants;
|
|
3241
|
+
declare const index$4_stepperVariants: typeof stepperVariants;
|
|
3242
|
+
declare const index$4_useToast: typeof useToast;
|
|
3243
|
+
declare namespace index$4 {
|
|
3244
|
+
export { index$4_Alert as Alert, index$4_AlertDescription as AlertDescription, index$4_AlertTitle as AlertTitle, index$4_EmptyState as EmptyState, type index$4_EmptyStateProps as EmptyStateProps, index$4_Progress as Progress, index$4_ProgressBar as ProgressBar, type index$4_ProgressBarProps as ProgressBarProps, index$4_Skeleton as Skeleton, type index$4_SkeletonProps as SkeletonProps, index$4_Spinner as Spinner, type index$4_SpinnerProps as SpinnerProps, index$4_Stepper as Stepper, type index$4_StepperProps as StepperProps, index$4_StepperStep as StepperStep, type index$4_StepperStepProps as StepperStepProps, type index$4_Toast as Toast, index$4_ToastProvider as ToastProvider, type index$4_ToastProviderProps as ToastProviderProps, type index$4_ToastType as ToastType, index$4_Toaster as Toaster, index$4_alertVariants as alertVariants, index$4_emptyStateVariants as emptyStateVariants, index$4_stepperVariants as stepperVariants, index$4_useToast as useToast };
|
|
3245
|
+
}
|
|
3246
|
+
|
|
3247
|
+
declare const index$3_AspectImage: typeof AspectImage;
|
|
3248
|
+
type index$3_AspectImageProps = AspectImageProps;
|
|
3249
|
+
declare const index$3_Avatar: typeof Avatar;
|
|
3250
|
+
declare const index$3_AvatarFallback: typeof AvatarFallback;
|
|
3251
|
+
declare const index$3_AvatarImage: typeof AvatarImage;
|
|
3252
|
+
declare const index$3_Badge: typeof Badge;
|
|
3253
|
+
type index$3_BadgeProps = BadgeProps;
|
|
3254
|
+
declare const index$3_Brand: typeof Brand;
|
|
3255
|
+
type index$3_BrandProps = BrandProps;
|
|
3256
|
+
declare const index$3_Calendar: typeof Calendar;
|
|
3257
|
+
declare const index$3_CalendarProps: typeof CalendarProps;
|
|
3258
|
+
declare const index$3_Card: typeof Card;
|
|
3259
|
+
declare const index$3_CardContent: typeof CardContent;
|
|
3260
|
+
declare const index$3_CardDescription: typeof CardDescription;
|
|
3261
|
+
declare const index$3_CardFooter: typeof CardFooter;
|
|
3262
|
+
declare const index$3_CardHeader: typeof CardHeader;
|
|
3263
|
+
type index$3_CardProps = CardProps;
|
|
3264
|
+
declare const index$3_CardTitle: typeof CardTitle;
|
|
3265
|
+
declare const index$3_Code: typeof Code;
|
|
3266
|
+
type index$3_CodeProps = CodeProps;
|
|
3267
|
+
declare const index$3_CollapsibleCodeBlock: typeof CollapsibleCodeBlock;
|
|
3268
|
+
type index$3_CollapsibleCodeBlockProps = CollapsibleCodeBlockProps;
|
|
3269
|
+
declare const index$3_DataTable: typeof DataTable;
|
|
3270
|
+
declare const index$3_DescriptionList: typeof DescriptionList;
|
|
3271
|
+
type index$3_DescriptionListItem = DescriptionListItem;
|
|
3272
|
+
type index$3_DescriptionListProps = DescriptionListProps;
|
|
3273
|
+
declare const index$3_GitHubIcon: typeof GitHubIcon;
|
|
3274
|
+
type index$3_GitHubIconProps = GitHubIconProps;
|
|
3275
|
+
declare const index$3_Heading: typeof Heading;
|
|
3276
|
+
type index$3_HeadingProps = HeadingProps;
|
|
3277
|
+
declare const index$3_StatCard: typeof StatCard;
|
|
3278
|
+
declare const index$3_StatCardGroup: typeof StatCardGroup;
|
|
3279
|
+
type index$3_StatCardProps = StatCardProps;
|
|
3280
|
+
declare const index$3_Table: typeof Table;
|
|
3281
|
+
declare const index$3_TableBody: typeof TableBody;
|
|
3282
|
+
declare const index$3_TableCaption: typeof TableCaption;
|
|
3283
|
+
declare const index$3_TableCell: typeof TableCell;
|
|
3284
|
+
declare const index$3_TableFooter: typeof TableFooter;
|
|
3285
|
+
declare const index$3_TableHead: typeof TableHead;
|
|
3286
|
+
declare const index$3_TableHeader: typeof TableHeader;
|
|
3287
|
+
declare const index$3_TableRow: typeof TableRow;
|
|
3288
|
+
declare const index$3_Text: typeof Text;
|
|
3289
|
+
type index$3_TextProps = TextProps;
|
|
3290
|
+
declare const index$3_Timeline: typeof Timeline;
|
|
3291
|
+
declare const index$3_TimelineItem: typeof TimelineItem;
|
|
3292
|
+
type index$3_TimelineItemProps = TimelineItemProps;
|
|
3293
|
+
type index$3_TimelineProps = TimelineProps;
|
|
3294
|
+
type index$3_TreeNode = TreeNode;
|
|
3295
|
+
declare const index$3_TreeView: typeof TreeView;
|
|
3296
|
+
type index$3_TreeViewProps = TreeViewProps;
|
|
3297
|
+
declare const index$3_Typewriter: typeof Typewriter;
|
|
3298
|
+
type index$3_TypewriterProps = TypewriterProps;
|
|
3299
|
+
declare const index$3_VariableWeightText: typeof VariableWeightText;
|
|
3300
|
+
declare const index$3_badgeVariants: typeof badgeVariants;
|
|
3301
|
+
declare const index$3_cardVariants: typeof cardVariants;
|
|
3302
|
+
declare const index$3_statCardVariants: typeof statCardVariants;
|
|
3303
|
+
declare const index$3_timelineVariants: typeof timelineVariants;
|
|
3304
|
+
declare const index$3_treeNodeVariants: typeof treeNodeVariants;
|
|
3305
|
+
declare namespace index$3 {
|
|
3306
|
+
export { index$3_AspectImage as AspectImage, type index$3_AspectImageProps as AspectImageProps, index$3_Avatar as Avatar, index$3_AvatarFallback as AvatarFallback, index$3_AvatarImage as AvatarImage, index$3_Badge as Badge, type index$3_BadgeProps as BadgeProps, index$3_Brand as Brand, type index$3_BrandProps as BrandProps, index$3_Calendar as Calendar, index$3_CalendarProps as CalendarProps, index$3_Card as Card, index$3_CardContent as CardContent, index$3_CardDescription as CardDescription, index$3_CardFooter as CardFooter, index$3_CardHeader as CardHeader, type index$3_CardProps as CardProps, index$3_CardTitle as CardTitle, index$3_Code as Code, type index$3_CodeProps as CodeProps, index$3_CollapsibleCodeBlock as CollapsibleCodeBlock, type index$3_CollapsibleCodeBlockProps as CollapsibleCodeBlockProps, index$3_DataTable as DataTable, index$3_DescriptionList as DescriptionList, type index$3_DescriptionListItem as DescriptionListItem, type index$3_DescriptionListProps as DescriptionListProps, index$3_GitHubIcon as GitHubIcon, type index$3_GitHubIconProps as GitHubIconProps, index$3_Heading as Heading, type index$3_HeadingProps as HeadingProps, index$3_StatCard as StatCard, index$3_StatCardGroup as StatCardGroup, type index$3_StatCardProps as StatCardProps, index$3_Table as Table, index$3_TableBody as TableBody, index$3_TableCaption as TableCaption, index$3_TableCell as TableCell, index$3_TableFooter as TableFooter, index$3_TableHead as TableHead, index$3_TableHeader as TableHeader, index$3_TableRow as TableRow, index$3_Text as Text, type index$3_TextProps as TextProps, index$3_Timeline as Timeline, index$3_TimelineItem as TimelineItem, type index$3_TimelineItemProps as TimelineItemProps, type index$3_TimelineProps as TimelineProps, type index$3_TreeNode as TreeNode, index$3_TreeView as TreeView, type index$3_TreeViewProps as TreeViewProps, index$3_Typewriter as Typewriter, type index$3_TypewriterProps as TypewriterProps, index$3_VariableWeightText as VariableWeightText, index$3_badgeVariants as badgeVariants, index$3_cardVariants as cardVariants, index$3_statCardVariants as statCardVariants, index$3_timelineVariants as timelineVariants, index$3_treeNodeVariants as treeNodeVariants };
|
|
3307
|
+
}
|
|
3308
|
+
|
|
3309
|
+
declare const index$2_Accordion: typeof Accordion;
|
|
3310
|
+
declare const index$2_AccordionContent: typeof AccordionContent;
|
|
3311
|
+
declare const index$2_AccordionItem: typeof AccordionItem;
|
|
3312
|
+
declare const index$2_AccordionTrigger: typeof AccordionTrigger;
|
|
3313
|
+
declare const index$2_AspectRatio: typeof AspectRatio;
|
|
3314
|
+
declare const index$2_Carousel: typeof Carousel;
|
|
3315
|
+
type index$2_CarouselApi = CarouselApi;
|
|
3316
|
+
declare const index$2_CarouselContent: typeof CarouselContent;
|
|
3317
|
+
declare const index$2_CarouselItem: typeof CarouselItem;
|
|
3318
|
+
declare const index$2_CarouselNext: typeof CarouselNext;
|
|
3319
|
+
declare const index$2_CarouselPrevious: typeof CarouselPrevious;
|
|
3320
|
+
declare const index$2_Collapsible: typeof Collapsible;
|
|
3321
|
+
declare const index$2_CollapsibleContent: typeof CollapsibleContent;
|
|
3322
|
+
declare const index$2_CollapsibleTrigger: typeof CollapsibleTrigger;
|
|
3323
|
+
declare const index$2_Container: typeof Container;
|
|
3324
|
+
type index$2_ContainerProps = ContainerProps;
|
|
3325
|
+
declare const index$2_CustomizerPanel: typeof CustomizerPanel;
|
|
3326
|
+
type index$2_CustomizerPanelProps = CustomizerPanelProps;
|
|
3327
|
+
declare const index$2_DatePicker: typeof DatePicker;
|
|
3328
|
+
declare const index$2_DatePickerProps: typeof DatePickerProps;
|
|
3329
|
+
declare const index$2_Footer: typeof Footer;
|
|
3330
|
+
type index$2_FooterLink = FooterLink;
|
|
3331
|
+
type index$2_FooterProps = FooterProps;
|
|
3332
|
+
type index$2_FooterSection = FooterSection;
|
|
3333
|
+
declare const index$2_GlassSurface: typeof GlassSurface;
|
|
3334
|
+
type index$2_GlassSurfaceProps = GlassSurfaceProps;
|
|
3335
|
+
type index$2_GlassThickness = GlassThickness;
|
|
3336
|
+
type index$2_GlassTint = GlassTint;
|
|
3337
|
+
declare const index$2_Grid: typeof Grid;
|
|
3338
|
+
declare const index$2_GridItem: typeof GridItem;
|
|
3339
|
+
type index$2_GridItemProps = GridItemProps;
|
|
3340
|
+
type index$2_GridProps = GridProps;
|
|
3341
|
+
declare const index$2_Header: typeof Header;
|
|
3342
|
+
type index$2_HeaderNavLink = HeaderNavLink;
|
|
3343
|
+
type index$2_HeaderProps = HeaderProps;
|
|
3344
|
+
declare const index$2_PageLayout: typeof PageLayout;
|
|
3345
|
+
type index$2_PageLayoutProps = PageLayoutProps;
|
|
3346
|
+
declare const index$2_PageTemplate: typeof PageTemplate;
|
|
3347
|
+
type index$2_PageTemplateHeaderConfig = PageTemplateHeaderConfig;
|
|
3348
|
+
type index$2_PageTemplateProps = PageTemplateProps;
|
|
3349
|
+
type index$2_PageTemplateSecondaryNavConfig = PageTemplateSecondaryNavConfig;
|
|
3350
|
+
declare const index$2_ResizableHandle: typeof ResizableHandle;
|
|
3351
|
+
declare const index$2_ResizablePanel: typeof ResizablePanel;
|
|
3352
|
+
declare const index$2_ResizablePanelGroup: typeof ResizablePanelGroup;
|
|
3353
|
+
declare const index$2_ScrollArea: typeof ScrollArea;
|
|
3354
|
+
declare const index$2_ScrollBar: typeof ScrollBar;
|
|
3355
|
+
declare const index$2_Separator: typeof Separator;
|
|
3356
|
+
declare const index$2_Sidebar: typeof Sidebar;
|
|
3357
|
+
declare const index$2_SidebarContent: typeof SidebarContent;
|
|
3358
|
+
declare const index$2_SidebarFooter: typeof SidebarFooter;
|
|
3359
|
+
declare const index$2_SidebarHeader: typeof SidebarHeader;
|
|
3360
|
+
declare const index$2_SidebarItem: typeof SidebarItem;
|
|
3361
|
+
declare const index$2_SidebarOverlay: typeof SidebarOverlay;
|
|
3362
|
+
declare const index$2_Stack: typeof Stack;
|
|
3363
|
+
type index$2_StackProps = StackProps;
|
|
3364
|
+
declare namespace index$2 {
|
|
3365
|
+
export { index$2_Accordion as Accordion, index$2_AccordionContent as AccordionContent, index$2_AccordionItem as AccordionItem, index$2_AccordionTrigger as AccordionTrigger, index$2_AspectRatio as AspectRatio, index$2_Carousel as Carousel, type index$2_CarouselApi as CarouselApi, index$2_CarouselContent as CarouselContent, index$2_CarouselItem as CarouselItem, index$2_CarouselNext as CarouselNext, index$2_CarouselPrevious as CarouselPrevious, index$2_Collapsible as Collapsible, index$2_CollapsibleContent as CollapsibleContent, index$2_CollapsibleTrigger as CollapsibleTrigger, index$2_Container as Container, type index$2_ContainerProps as ContainerProps, index$2_CustomizerPanel as CustomizerPanel, type index$2_CustomizerPanelProps as CustomizerPanelProps, index$2_DatePicker as DatePicker, index$2_DatePickerProps as DatePickerProps, index$2_Footer as Footer, type index$2_FooterLink as FooterLink, type index$2_FooterProps as FooterProps, type index$2_FooterSection as FooterSection, index$2_GlassSurface as GlassSurface, type index$2_GlassSurfaceProps as GlassSurfaceProps, type index$2_GlassThickness as GlassThickness, type index$2_GlassTint as GlassTint, index$2_Grid as Grid, index$2_GridItem as GridItem, type index$2_GridItemProps as GridItemProps, type index$2_GridProps as GridProps, index$2_Header as Header, type index$2_HeaderNavLink as HeaderNavLink, type index$2_HeaderProps as HeaderProps, index$2_PageLayout as PageLayout, type index$2_PageLayoutProps as PageLayoutProps, index$2_PageTemplate as PageTemplate, type index$2_PageTemplateHeaderConfig as PageTemplateHeaderConfig, type index$2_PageTemplateProps as PageTemplateProps, type index$2_PageTemplateSecondaryNavConfig as PageTemplateSecondaryNavConfig, index$2_ResizableHandle as ResizableHandle, index$2_ResizablePanel as ResizablePanel, index$2_ResizablePanelGroup as ResizablePanelGroup, index$2_ScrollArea as ScrollArea, index$2_ScrollBar as ScrollBar, index$2_Separator as Separator, index$2_Sidebar as Sidebar, index$2_SidebarContent as SidebarContent, index$2_SidebarFooter as SidebarFooter, index$2_SidebarHeader as SidebarHeader, index$2_SidebarItem as SidebarItem, index$2_SidebarOverlay as SidebarOverlay, index$2_Stack as Stack, type index$2_StackProps as StackProps };
|
|
3366
|
+
}
|
|
3367
|
+
|
|
3368
|
+
declare const index$1_FaultyTerminal: typeof FaultyTerminal;
|
|
3369
|
+
declare const index$1_OrbBackground: typeof OrbBackground;
|
|
3370
|
+
type index$1_OrbBackgroundProps = OrbBackgroundProps;
|
|
3371
|
+
declare const index$1_WarpBackground: typeof WarpBackground;
|
|
3372
|
+
declare namespace index$1 {
|
|
3373
|
+
export { index$1_FaultyTerminal as FaultyTerminal, index$1_OrbBackground as OrbBackground, type index$1_OrbBackgroundProps as OrbBackgroundProps, index$1_WarpBackground as WarpBackground };
|
|
3374
|
+
}
|
|
3375
|
+
|
|
3376
|
+
declare const index_SplashCursor: typeof SplashCursor;
|
|
3377
|
+
declare const index_TargetCursor: typeof TargetCursor;
|
|
3378
|
+
declare namespace index {
|
|
3379
|
+
export { index_SplashCursor as SplashCursor, index_TargetCursor as TargetCursor };
|
|
3380
|
+
}
|
|
3381
|
+
|
|
3382
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, index$8 as Actions, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AnimatedBeam, type AnimatedBeamProps, AspectImage, type AspectImageProps, AspectRatio, Avatar, AvatarFallback, AvatarImage, BRAND, index$1 as Backgrounds, Badge, type BadgeProps, Brand, type BrandProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbItemLegacy, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Breadcrumbs, BreadcrumbsProps, Button, type ButtonProps, COMPONENT_COUNTS, COMPONENT_REGISTRY, Calendar, CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Code, type CodeProps, Collapsible, CollapsibleCodeBlock, type CollapsibleCodeBlockProps, CollapsibleContent, CollapsibleTrigger, ColorMode$1 as ColorMode, ColorPicker, type ColorPickerProps, Combobox, type ComboboxOption, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Container, type ContainerProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CustomizerPanel, type CustomizerPanelProps, DOC_EXAMPLES, index$3 as DataDisplay, DataTable, DatePicker, DatePickerProps, DescriptionList, type DescriptionListItem, type DescriptionListProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DragDropHandle, DragDropHandleProps, DragDropItem, DragDropList, DragDropListProps, DragDropTable, DragDropTableProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, Dropdown, type DropdownItem, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, type DropdownProps, EmptyState, type EmptyStateProps, FaultyTerminal, index$4 as Feedback, FileUpload, type FileUploadProps, FilterButton, type FilterButtonProps, Footer, type FooterLink, type FooterProps, type FooterSection, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, index$7 as Forms, GitHubIcon, type GitHubIconProps, GlassSurface, type GlassSurfaceProps, type GlassThickness, type GlassTint, type GradientConfig, Grid, GridItem, type GridItemProps, type GridProps, Header, type HeaderNavLink, type HeaderProps, Heading, type HeadingProps, HeroBlock, type HeroBlockProps, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, index$2 as Layout, Link, type LinkProps, MARKETING_COPY, Magnetic, type MagneticProps, Menubar, MenubarContent, MenubarGroup, MenubarItem, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarTrigger, Modal, type ModalProps, index as Motion, NavLink, type NavLinkProps, index$6 as Navigation, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NotificationCenter, type NotificationCenterProps, type NotificationItem, OpenGraphCard, type OpenGraphCardProps, OrbBackground, type OrbBackgroundProps, index$5 as Overlays, PageLayout, type PageLayoutProps, PageTemplate, type PageTemplateHeaderConfig, type PageTemplateProps, type PageTemplateSecondaryNavConfig, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, ProgressBar, type ProgressBarProps, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SearchBar, type SearchBarProps, SecondaryNav, type SecondaryNavItem, type SecondaryNavProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparatorComp as SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarHeader, SidebarItem, SidebarOverlay, Skeleton, type SkeletonProps, Slider, Spinner, type SpinnerProps, SplashCursor, Stack, type StackProps, StatCard, StatCardGroup, type StatCardProps, Stepper, type StepperProps, StepperStep, type StepperStepProps, Switch, SyntaxToken, SyntaxType, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TargetCursor, TertiaryNav, type TertiaryNavItem, type TertiaryNavProps, Text, TextField, type TextFieldProps, type TextProps, Textarea, type TextareaProps, ThemeName$1 as ThemeName, ThemeSwitcher, type ThemeSwitcherProps, ThemeToggle, type ThemeToggleProps, Timeline, TimelineItem, type TimelineItemProps, type TimelineProps, type Toast, ToastProvider, type ToastProviderProps, type ToastType, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type TreeNode, TreeView, type TreeViewProps, Typewriter, type TypewriterProps, VariableWeightText, WarpBackground, alertVariants, badgeVariants, buttonVariants, cardVariants, emptyStateVariants, fileUploadZoneVariants, labelVariants, navigationMenuTriggerStyle, sheetVariants, statCardVariants, stepperVariants, timelineVariants, toggleVariants, treeNodeVariants, useCustomizer, useFormField, useThemeStore, useToast };
|