@nswds/app 1.114.0 → 1.115.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/globals.css +476 -30
- package/dist/index.cjs +261 -83
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +77 -12
- package/dist/index.d.ts +77 -12
- package/dist/index.js +261 -84
- package/dist/index.js.map +1 -1
- package/dist/styles.css +473 -30
- package/dist/styles.css.map +1 -1
- package/package.json +3 -1
package/dist/index.d.cts
CHANGED
|
@@ -74,7 +74,7 @@ declare const Link$1: React__default.ForwardRefExoticComponent<LinkProps<any> &
|
|
|
74
74
|
|
|
75
75
|
declare const buttonVariants$2: (props?: ({
|
|
76
76
|
variant?: "solid" | "soft" | "surface" | "outline" | "ghost" | null | undefined;
|
|
77
|
-
color?: "primary/grey" | "light" | "primary/white" | "white" | "grey" | "primary" | "secondary" | "tertiary" | "accent" |
|
|
77
|
+
color?: "primary/grey" | "light" | "primary/white" | "white" | "grey" | "primary" | "secondary" | "tertiary" | "accent" | null | undefined;
|
|
78
78
|
size?: "default" | "icon" | "sm" | "lg" | null | undefined;
|
|
79
79
|
iconSize?: "default" | "sm" | "lg" | "xl" | null | undefined;
|
|
80
80
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -754,11 +754,18 @@ type CarouselProps$1 = {
|
|
|
754
754
|
orientation?: 'horizontal' | 'vertical';
|
|
755
755
|
setApi?: (api: CarouselApi$1) => void;
|
|
756
756
|
};
|
|
757
|
+
type CarouselButtonProps = Omit<React$1.ComponentPropsWithoutRef<'button'>, 'children' | 'className'> & {
|
|
758
|
+
className?: string;
|
|
759
|
+
color?: React$1.ComponentProps<typeof Button$2>['color'];
|
|
760
|
+
iconSize?: React$1.ComponentProps<typeof Button$2>['iconSize'];
|
|
761
|
+
size?: React$1.ComponentProps<typeof Button$2>['size'];
|
|
762
|
+
variant?: React$1.ComponentProps<typeof Button$2>['variant'];
|
|
763
|
+
};
|
|
757
764
|
declare function Carousel$1({ orientation, opts, setApi, plugins, className, children, ...props }: React$1.ComponentProps<'div'> & CarouselProps$1): react_jsx_runtime.JSX.Element;
|
|
758
765
|
declare function CarouselContent({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
759
766
|
declare function CarouselItem({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
760
|
-
declare function CarouselPrevious({ className, variant, size, ...props }:
|
|
761
|
-
declare function CarouselNext({ className, variant, size, ...props }:
|
|
767
|
+
declare function CarouselPrevious({ className, variant, size, ...props }: CarouselButtonProps): react_jsx_runtime.JSX.Element;
|
|
768
|
+
declare function CarouselNext({ className, variant, size, ...props }: CarouselButtonProps): react_jsx_runtime.JSX.Element;
|
|
762
769
|
|
|
763
770
|
interface CategoryBarProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
764
771
|
values: number[];
|
|
@@ -1218,31 +1225,86 @@ type HeadingProps = ({
|
|
|
1218
1225
|
} & BaseProps$1);
|
|
1219
1226
|
declare function Heading({ className, trim, size, level, display, id: idProp, children, ...props }: HeadingProps): react_jsx_runtime.JSX.Element;
|
|
1220
1227
|
|
|
1228
|
+
declare const heroBannerVariants$1: (props?: ({
|
|
1229
|
+
variant?: "white" | "grey-600" | "grey-800" | "accent-200" | "primary-800" | "primary-600" | "primary-400" | "primary-200" | "grey-400" | "grey-200" | "accent-800" | "accent-600" | "accent-400" | null | undefined;
|
|
1230
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1231
|
+
declare const heroBannerContentAlignments: {
|
|
1232
|
+
readonly center: {
|
|
1233
|
+
readonly content: "text-center";
|
|
1234
|
+
readonly subtitle: "mx-auto";
|
|
1235
|
+
readonly actions: "justify-center";
|
|
1236
|
+
};
|
|
1237
|
+
readonly left: {
|
|
1238
|
+
readonly content: "text-left";
|
|
1239
|
+
readonly subtitle: "";
|
|
1240
|
+
readonly actions: "justify-start";
|
|
1241
|
+
};
|
|
1242
|
+
};
|
|
1243
|
+
interface HeroBannerSimpleProps extends VariantProps<typeof heroBannerVariants$1> {
|
|
1244
|
+
heading: React.ReactNode;
|
|
1245
|
+
subtitle: React.ReactNode;
|
|
1246
|
+
contentAlign?: keyof typeof heroBannerContentAlignments;
|
|
1247
|
+
primaryButton?: {
|
|
1248
|
+
text: React.ReactNode;
|
|
1249
|
+
href?: string;
|
|
1250
|
+
variant?: VariantProps<typeof buttonVariants$2>['variant'];
|
|
1251
|
+
color?: VariantProps<typeof buttonVariants$2>['color'];
|
|
1252
|
+
onClick?: () => void;
|
|
1253
|
+
};
|
|
1254
|
+
secondaryButton?: {
|
|
1255
|
+
text: React.ReactNode;
|
|
1256
|
+
href?: string;
|
|
1257
|
+
variant?: VariantProps<typeof buttonVariants$2>['variant'];
|
|
1258
|
+
color?: VariantProps<typeof buttonVariants$2>['color'];
|
|
1259
|
+
onClick?: () => void;
|
|
1260
|
+
};
|
|
1261
|
+
}
|
|
1262
|
+
declare function HeroBannerSimple({ variant, heading, subtitle, contentAlign, primaryButton, secondaryButton, }: HeroBannerSimpleProps): react_jsx_runtime.JSX.Element;
|
|
1263
|
+
|
|
1221
1264
|
declare const heroBannerVariants: (props?: ({
|
|
1222
|
-
variant?: "white" | "
|
|
1265
|
+
variant?: "white" | "grey-600" | "grey-800" | "accent-200" | "primary-800" | "primary-600" | "primary-400" | "primary-200" | "grey-400" | "grey-200" | "accent-800" | "accent-600" | "accent-400" | null | undefined;
|
|
1223
1266
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1267
|
+
declare const HERO_BANNER_SUPPORTING_IMAGE_COLUMN_SPANS: {
|
|
1268
|
+
readonly 1: "lg:col-span-1";
|
|
1269
|
+
readonly 2: "lg:col-span-2";
|
|
1270
|
+
readonly 3: "lg:col-span-3";
|
|
1271
|
+
readonly 4: "lg:col-span-4";
|
|
1272
|
+
readonly 5: "lg:col-span-5";
|
|
1273
|
+
readonly 6: "lg:col-span-6";
|
|
1274
|
+
readonly 7: "lg:col-span-7";
|
|
1275
|
+
readonly 8: "lg:col-span-8";
|
|
1276
|
+
readonly 9: "lg:col-span-9";
|
|
1277
|
+
readonly 10: "lg:col-span-10";
|
|
1278
|
+
readonly 11: "lg:col-span-11";
|
|
1279
|
+
};
|
|
1280
|
+
type HeroBannerSupportingImageColumnSpan = keyof typeof HERO_BANNER_SUPPORTING_IMAGE_COLUMN_SPANS;
|
|
1281
|
+
interface HeroBannerSupportingImageSplit {
|
|
1282
|
+
left: HeroBannerSupportingImageColumnSpan;
|
|
1283
|
+
right: HeroBannerSupportingImageColumnSpan;
|
|
1284
|
+
}
|
|
1224
1285
|
interface HeroBannerSupportingImageProps extends VariantProps<typeof heroBannerVariants> {
|
|
1225
1286
|
imgAlt: string;
|
|
1226
1287
|
imgSrc: string;
|
|
1227
1288
|
imgBgcolor?: string;
|
|
1228
|
-
heading:
|
|
1289
|
+
heading: ReactNode;
|
|
1229
1290
|
subtitle: string;
|
|
1291
|
+
split?: HeroBannerSupportingImageSplit;
|
|
1230
1292
|
primaryButton?: {
|
|
1231
|
-
text:
|
|
1293
|
+
text: ReactNode;
|
|
1232
1294
|
href?: string;
|
|
1233
1295
|
variant?: VariantProps<typeof buttonVariants$2>['variant'];
|
|
1234
1296
|
color?: VariantProps<typeof buttonVariants$2>['color'];
|
|
1235
1297
|
onClick?: () => void;
|
|
1236
1298
|
};
|
|
1237
1299
|
secondaryButton?: {
|
|
1238
|
-
text:
|
|
1300
|
+
text: ReactNode;
|
|
1239
1301
|
href?: string;
|
|
1240
1302
|
variant?: VariantProps<typeof buttonVariants$2>['variant'];
|
|
1241
1303
|
color?: VariantProps<typeof buttonVariants$2>['color'];
|
|
1242
1304
|
onClick?: () => void;
|
|
1243
1305
|
};
|
|
1244
1306
|
}
|
|
1245
|
-
declare function HeroBannerSupportingImage({ variant, imgAlt, imgSrc, imgBgcolor, heading, subtitle, primaryButton, secondaryButton, }: HeroBannerSupportingImageProps): react_jsx_runtime.JSX.Element;
|
|
1307
|
+
declare function HeroBannerSupportingImage({ variant, imgAlt, imgSrc, imgBgcolor, heading, subtitle, split, primaryButton, secondaryButton, }: HeroBannerSupportingImageProps): react_jsx_runtime.JSX.Element;
|
|
1246
1308
|
|
|
1247
1309
|
declare function HoverCard$1({ ...props }: React$1.ComponentProps<typeof HoverCardPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
1248
1310
|
declare function HoverCardTrigger({ ...props }: React$1.ComponentProps<typeof HoverCardPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
@@ -6366,7 +6428,7 @@ declare const ReasoningContent: React$1.MemoExoticComponent<({ className, childr
|
|
|
6366
6428
|
type ResponseProps = ComponentProps<typeof Streamdown>;
|
|
6367
6429
|
declare const Response: React$1.MemoExoticComponent<({ className, ...props }: ResponseProps) => react_jsx_runtime.JSX.Element>;
|
|
6368
6430
|
|
|
6369
|
-
type SourcesProps = ComponentProps<
|
|
6431
|
+
type SourcesProps = ComponentProps<typeof Collapsible>;
|
|
6370
6432
|
declare const Sources: ({ className, ...props }: SourcesProps) => react_jsx_runtime.JSX.Element;
|
|
6371
6433
|
type SourcesTriggerProps = ComponentProps<typeof CollapsibleTrigger> & {
|
|
6372
6434
|
count: number;
|
|
@@ -6431,10 +6493,13 @@ type WebPreviewNavigationProps = ComponentProps<'div'>;
|
|
|
6431
6493
|
declare const WebPreviewNavigation: ({ className, children, ...props }: WebPreviewNavigationProps) => react_jsx_runtime.JSX.Element;
|
|
6432
6494
|
type WebPreviewUrlProps = ComponentProps<typeof Input>;
|
|
6433
6495
|
declare const WebPreviewUrl: ({ value, onChange, onKeyDown, ...props }: WebPreviewUrlProps) => react_jsx_runtime.JSX.Element;
|
|
6434
|
-
type WebPreviewBodyProps = ComponentProps<'iframe'> & {
|
|
6496
|
+
type WebPreviewBodyProps = Omit<ComponentProps<'iframe'>, 'sandbox'> & {
|
|
6497
|
+
sandbox?: never;
|
|
6498
|
+
/** @deprecated Use `loadingFallback` instead. */
|
|
6435
6499
|
loading?: ReactNode;
|
|
6500
|
+
loadingFallback?: ReactNode;
|
|
6436
6501
|
};
|
|
6437
|
-
declare const WebPreviewBody: ({ className, loading, src, ...props }: WebPreviewBodyProps) => react_jsx_runtime.JSX.Element;
|
|
6502
|
+
declare const WebPreviewBody: ({ className, loading, loadingFallback, sandbox: _sandbox, src, ...props }: WebPreviewBodyProps) => react_jsx_runtime.JSX.Element;
|
|
6438
6503
|
|
|
6439
6504
|
declare function MultiLevelPushMenu({ navigation, onItemClick, onNavigate, onClose, className, showHeader, showFooter, showBreadcrumbs, showStats, showBackButton, initialTitle, }: MultiLevelPushMenuProps): react_jsx_runtime.JSX.Element;
|
|
6440
6505
|
|
|
@@ -6509,4 +6574,4 @@ declare const focusInput: string[];
|
|
|
6509
6574
|
declare const hasErrorInput: string[];
|
|
6510
6575
|
declare const focusRing: string[];
|
|
6511
6576
|
|
|
6512
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Action, Actions, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, type AnimationState, AreaChart, type AreaChartEventProps, Artifact, ArtifactAction, ArtifactActions, ArtifactContent, ArtifactDescription, ArtifactHeader, ArtifactTitle, AspectRatio, type AuthButtonProps, AuthLayout, AvailableChartColors, type AvailableChartColorsKeys, Avatar, AvatarFallback, AvatarImage, Badge$1 as Badge, BadgeButton, BarChart, type BarChartEventProps, BarList, type BarListProps, type BaseCodeData, BaseColorSwatches, Branch, BranchMessages, BranchNext, BranchPage, BranchPrevious, BranchSelector, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Breadcrumbs, type BreadcrumbsProps, Button$2 as Button, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel$1 as Carousel, type CarouselApi$1 as CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, CategoryBar, type CategoryBarProps, ChainOfThought, ChainOfThoughtContent, ChainOfThoughtHeader, ChainOfThoughtImage, ChainOfThoughtSearchResult, ChainOfThoughtSearchResults, ChainOfThoughtStep, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CheckboxSmall, Code, CodeBlock, CodeBlockCopyButton, type CodeData, CodeDemo, type CodeDemoProps, CodeHighlight, type CodeHighlightProps, type CodeItem, type CodeVariant, Collapsible$1 as Collapsible, CollapsibleContent$1 as CollapsibleContent, CollapsibleTrigger$1 as CollapsibleTrigger, type Color$1 as Color, ColorCard, type ColorCardProps, type ColorData, ColorPairingTool, type ColorProperty, ColorSwatches, type ColorSwatchesProps, type ColorTheme, type ColorThemes, type ColorUtility, type ColorsDisplayProps, type ColourOutputProps, ColourScale, type ColourScaleProps, ComboChart, type ComboChartEventProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Context, ContextCacheUsage, ContextContent, ContextContentBody, ContextContentFooter, ContextContentHeader, ContextInputUsage, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ContextOutputUsage, ContextReasoningUsage, ContextTrigger, Conversation, ConversationContent, ConversationEmptyState, ConversationScrollButton, DataTable, DataTableColumnHeader, DataTableFacetedFilter, DataTablePagination, DataTableToolbar, DataTableViewOptions, type DataType, type DataTypeSelectProps, Description, DescriptionDetails, DescriptionList, DescriptionTerm, type DesignTokensShades, type DesignTokensTheme, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DonutChart, type DonutChartEventProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu$1 as DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent$1 as DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem$1 as DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger$1 as DropdownMenuTrigger, DynamicFavicon, ErrorMessage, ExpandableSearch, ExpandableSearchField, Field, FieldGroup, FieldLabel, Fieldset, Footer, FooterAcknowledgement, FooterLegalLinks, FooterSmallPrint, FooterSocialLink, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, type FormStatus, type FormStatusHook, type FormStore, type Format, FormatToggle, type FormatToggleProps, GenerateInterpolatedColors, Header, Heading, type HeadingNode, type HeadingTypeProps, HeroBannerSupportingImage, HoverCard$1 as HoverCard, HoverCardContent$1 as HoverCardContent, HoverCardTrigger, type IFrameData, type IFrameMap, type IFrameOptions, type IFrameProps, type IconProps, Icons, Image, InlineCitation, InlineCitationCard, InlineCitationCardBody, InlineCitationCardTrigger, InlineCitationCarousel, InlineCitationCarouselContent, InlineCitationCarouselHeader, InlineCitationCarouselIndex, InlineCitationCarouselItem, InlineCitationSource, InlineCitationText, Input$1 as Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label, type Language, type LayoutProps, Legend, LineChart, type LineChartEventProps, Link$1 as Link, _List as List, Listbox, ListboxDescription, ListboxLabel, ListboxOption, Loader, Loading, Logo, MainNavigation, Masthead, MegaMenu, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Message, MessageContent, MobileHeader, MobileSearch, MultiLevelPushMenu, type MultiLevelPushMenuProps, NSWCard, NSWCardArrow, NSWCardDescription, NSWCardIcon, NSWCardImg, NSWCardTitle, Navbar, NavbarDivider, NavbarItem, NavbarLabel, NavbarSection, NavbarSpacer, Navigation, type NavigationItem, type NavigationLink, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuMainNavigation, NavigationMenuTrigger, NavigationMenuViewport, type NavigationSection, NotFound, OpenIn, OpenInChatGPT, OpenInClaude, OpenInContent, OpenInScira, OpenInT3, OpenInTrigger, OpenInv0, type Output, PageHeading, Pagination, PaginationGap, PaginationList, PaginationNext, PaginationPage, PaginationPrevious, type Palette, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PreWithCopy, PrevNextLinks, PrevNextLinksPageLink, type PrevNextLinksProps, Progress, ProgressBar, type ProgressBarProps, ProgressCircle, type ProgressCircleProps, PromptInput, PromptInputActionAddAttachments, PromptInputActionMenu, PromptInputActionMenuContent, PromptInputActionMenuItem, PromptInputActionMenuTrigger, PromptInputAttachment, PromptInputAttachments, PromptInputBody, PromptInputButton, PromptInputSubmit, PromptInputTextarea, PromptInputToolbar, PromptInputTools, Prose, type PushNavigationItem, type PushNavigationLevel, RadioGroup, RadioGroupItem, Reasoning, ReasoningContent, ReasoningTrigger, ResizableHandle, ResizablePanel, ResizablePanelGroup, Response, ScrollArea$1 as ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarLink, type SidebarLinkProps, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarNavigation, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, type SimpleNode, type SingleCodeData, SiteSearch, Skeleton, Slider, Social, Source, Sources, SourcesContent, SourcesTrigger, SparkAreaChart, SparkBarChart, SparkLineChart, Spinner, StepIndicator, StepNavigation, Strong, type StructuredColor, SubmitButton, Suggestion, Suggestions, Switch, SwitchField, SwitchGroup, TabNavigation, TabNavigationLink, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableOfContents, type TableOfContentsItem, type TableOfContentsProps, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Task, TaskContent, TaskItem, TaskItemFile, TaskTrigger, Text, TextLink, type TextTypeProps, Textarea$1 as Textarea, type ThemeCategory, ThemeColorPalette, type ThemeMessage, type ThemeOption, ThemeProvider, ThemeSelector, type ThemeSelectorDropDownProps, type ThemeSelectorProps, ThemeSwitcher, Toaster, TocContext, type TocContextType, TocProvider, Toggle, ToggleGroup, ToggleGroupItem, Tool, ToolContent, ToolHeader, ToolInput, ToolOutput, Tooltip$1 as Tooltip, TooltipContent, type TooltipProps$5 as TooltipProps, TooltipProvider, TooltipTrigger, TopLevel, TouchTarget, Tracker, type TrackerBlockProps, Tooltip as TremorTooltip, type TypeExampleProps, type TypeSpecs, type Variant, type VariantCodeData, type Variants, type View, type ViewMode, ViewToggle, type ViewToggleProps, WebPreview, WebPreviewBody, WebPreviewNavigation, WebPreviewUrl, Wrapper, aboriginal, addStartStopToColorArray, allPalettes, badgeVariants$1 as badgeVariants, brand, buttonVariants$2 as buttonVariants, camelCase, chartColors, cn, type colorCategories, colorDataArray, colorThemes, colors, constructCategoryColors, createColorArray, createColorData, createFormStore, darkenColor, diverging, domToSimple, focusInput, focusRing, generateColorThemes, generateDataVisColors, getColorClassName, getColorValue, getHeadings, getNodeText, getSurroundingColors, getYAxisDomain, hasErrorInput, hasOnlyOneValueForKey, humaniseVariant, interpolateColors, isLightColor, kebabCase, languages, lightenColor, navigationMenuTriggerStyle, oklchConverter, progressBarVariants, renderColorOutput, renderColorOutputToDTFM, semantic, sequential, shades, themeIndices, themeTokens, toggleVariants, truncate, useActiveSectionObserver, useDisableToc, useFormField, useIsMobile, useOnWindowResize, usePageHeadings, usePromptInputAttachments, useSelectorHeight, useSidebar, useStickyOffset, useToc };
|
|
6577
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Action, Actions, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, type AnimationState, AreaChart, type AreaChartEventProps, Artifact, ArtifactAction, ArtifactActions, ArtifactContent, ArtifactDescription, ArtifactHeader, ArtifactTitle, AspectRatio, type AuthButtonProps, AuthLayout, AvailableChartColors, type AvailableChartColorsKeys, Avatar, AvatarFallback, AvatarImage, Badge$1 as Badge, BadgeButton, BarChart, type BarChartEventProps, BarList, type BarListProps, type BaseCodeData, BaseColorSwatches, Branch, BranchMessages, BranchNext, BranchPage, BranchPrevious, BranchSelector, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Breadcrumbs, type BreadcrumbsProps, Button$2 as Button, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel$1 as Carousel, type CarouselApi$1 as CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, CategoryBar, type CategoryBarProps, ChainOfThought, ChainOfThoughtContent, ChainOfThoughtHeader, ChainOfThoughtImage, ChainOfThoughtSearchResult, ChainOfThoughtSearchResults, ChainOfThoughtStep, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CheckboxSmall, Code, CodeBlock, CodeBlockCopyButton, type CodeData, CodeDemo, type CodeDemoProps, CodeHighlight, type CodeHighlightProps, type CodeItem, type CodeVariant, Collapsible$1 as Collapsible, CollapsibleContent$1 as CollapsibleContent, CollapsibleTrigger$1 as CollapsibleTrigger, type Color$1 as Color, ColorCard, type ColorCardProps, type ColorData, ColorPairingTool, type ColorProperty, ColorSwatches, type ColorSwatchesProps, type ColorTheme, type ColorThemes, type ColorUtility, type ColorsDisplayProps, type ColourOutputProps, ColourScale, type ColourScaleProps, ComboChart, type ComboChartEventProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Context, ContextCacheUsage, ContextContent, ContextContentBody, ContextContentFooter, ContextContentHeader, ContextInputUsage, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ContextOutputUsage, ContextReasoningUsage, ContextTrigger, Conversation, ConversationContent, ConversationEmptyState, ConversationScrollButton, DataTable, DataTableColumnHeader, DataTableFacetedFilter, DataTablePagination, DataTableToolbar, DataTableViewOptions, type DataType, type DataTypeSelectProps, Description, DescriptionDetails, DescriptionList, DescriptionTerm, type DesignTokensShades, type DesignTokensTheme, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DonutChart, type DonutChartEventProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu$1 as DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent$1 as DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem$1 as DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger$1 as DropdownMenuTrigger, DynamicFavicon, ErrorMessage, ExpandableSearch, ExpandableSearchField, Field, FieldGroup, FieldLabel, Fieldset, Footer, FooterAcknowledgement, FooterLegalLinks, FooterSmallPrint, FooterSocialLink, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, type FormStatus, type FormStatusHook, type FormStore, type Format, FormatToggle, type FormatToggleProps, GenerateInterpolatedColors, Header, Heading, type HeadingNode, type HeadingTypeProps, HeroBannerSimple, HeroBannerSupportingImage, HoverCard$1 as HoverCard, HoverCardContent$1 as HoverCardContent, HoverCardTrigger, type IFrameData, type IFrameMap, type IFrameOptions, type IFrameProps, type IconProps, Icons, Image, InlineCitation, InlineCitationCard, InlineCitationCardBody, InlineCitationCardTrigger, InlineCitationCarousel, InlineCitationCarouselContent, InlineCitationCarouselHeader, InlineCitationCarouselIndex, InlineCitationCarouselItem, InlineCitationSource, InlineCitationText, Input$1 as Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label, type Language, type LayoutProps, Legend, LineChart, type LineChartEventProps, Link$1 as Link, _List as List, Listbox, ListboxDescription, ListboxLabel, ListboxOption, Loader, Loading, Logo, MainNavigation, Masthead, MegaMenu, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Message, MessageContent, MobileHeader, MobileSearch, MultiLevelPushMenu, type MultiLevelPushMenuProps, NSWCard, NSWCardArrow, NSWCardDescription, NSWCardIcon, NSWCardImg, NSWCardTitle, Navbar, NavbarDivider, NavbarItem, NavbarLabel, NavbarSection, NavbarSpacer, Navigation, type NavigationItem, type NavigationLink, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuMainNavigation, NavigationMenuTrigger, NavigationMenuViewport, type NavigationSection, NotFound, OpenIn, OpenInChatGPT, OpenInClaude, OpenInContent, OpenInScira, OpenInT3, OpenInTrigger, OpenInv0, type Output, PageHeading, Pagination, PaginationGap, PaginationList, PaginationNext, PaginationPage, PaginationPrevious, type Palette, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PreWithCopy, PrevNextLinks, PrevNextLinksPageLink, type PrevNextLinksProps, Progress, ProgressBar, type ProgressBarProps, ProgressCircle, type ProgressCircleProps, PromptInput, PromptInputActionAddAttachments, PromptInputActionMenu, PromptInputActionMenuContent, PromptInputActionMenuItem, PromptInputActionMenuTrigger, PromptInputAttachment, PromptInputAttachments, PromptInputBody, PromptInputButton, PromptInputSubmit, PromptInputTextarea, PromptInputToolbar, PromptInputTools, Prose, type PushNavigationItem, type PushNavigationLevel, RadioGroup, RadioGroupItem, Reasoning, ReasoningContent, ReasoningTrigger, ResizableHandle, ResizablePanel, ResizablePanelGroup, Response, ScrollArea$1 as ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarLink, type SidebarLinkProps, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarNavigation, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, type SimpleNode, type SingleCodeData, SiteSearch, Skeleton, Slider, Social, Source, Sources, SourcesContent, SourcesTrigger, SparkAreaChart, SparkBarChart, SparkLineChart, Spinner, StepIndicator, StepNavigation, Strong, type StructuredColor, SubmitButton, Suggestion, Suggestions, Switch, SwitchField, SwitchGroup, TabNavigation, TabNavigationLink, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableOfContents, type TableOfContentsItem, type TableOfContentsProps, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Task, TaskContent, TaskItem, TaskItemFile, TaskTrigger, Text, TextLink, type TextTypeProps, Textarea$1 as Textarea, type ThemeCategory, ThemeColorPalette, type ThemeMessage, type ThemeOption, ThemeProvider, ThemeSelector, type ThemeSelectorDropDownProps, type ThemeSelectorProps, ThemeSwitcher, Toaster, TocContext, type TocContextType, TocProvider, Toggle, ToggleGroup, ToggleGroupItem, Tool, ToolContent, ToolHeader, ToolInput, ToolOutput, Tooltip$1 as Tooltip, TooltipContent, type TooltipProps$5 as TooltipProps, TooltipProvider, TooltipTrigger, TopLevel, TouchTarget, Tracker, type TrackerBlockProps, Tooltip as TremorTooltip, type TypeExampleProps, type TypeSpecs, type Variant, type VariantCodeData, type Variants, type View, type ViewMode, ViewToggle, type ViewToggleProps, WebPreview, WebPreviewBody, WebPreviewNavigation, WebPreviewUrl, Wrapper, aboriginal, addStartStopToColorArray, allPalettes, badgeVariants$1 as badgeVariants, brand, buttonVariants$2 as buttonVariants, camelCase, chartColors, cn, type colorCategories, colorDataArray, colorThemes, colors, constructCategoryColors, createColorArray, createColorData, createFormStore, darkenColor, diverging, domToSimple, focusInput, focusRing, generateColorThemes, generateDataVisColors, getColorClassName, getColorValue, getHeadings, getNodeText, getSurroundingColors, getYAxisDomain, hasErrorInput, hasOnlyOneValueForKey, humaniseVariant, interpolateColors, isLightColor, kebabCase, languages, lightenColor, navigationMenuTriggerStyle, oklchConverter, progressBarVariants, renderColorOutput, renderColorOutputToDTFM, semantic, sequential, shades, themeIndices, themeTokens, toggleVariants, truncate, useActiveSectionObserver, useDisableToc, useFormField, useIsMobile, useOnWindowResize, usePageHeadings, usePromptInputAttachments, useSelectorHeight, useSidebar, useStickyOffset, useToc };
|
package/dist/index.d.ts
CHANGED
|
@@ -74,7 +74,7 @@ declare const Link$1: React__default.ForwardRefExoticComponent<LinkProps<any> &
|
|
|
74
74
|
|
|
75
75
|
declare const buttonVariants$2: (props?: ({
|
|
76
76
|
variant?: "solid" | "soft" | "surface" | "outline" | "ghost" | null | undefined;
|
|
77
|
-
color?: "primary/grey" | "light" | "primary/white" | "white" | "grey" | "primary" | "secondary" | "tertiary" | "accent" |
|
|
77
|
+
color?: "primary/grey" | "light" | "primary/white" | "white" | "grey" | "primary" | "secondary" | "tertiary" | "accent" | null | undefined;
|
|
78
78
|
size?: "default" | "icon" | "sm" | "lg" | null | undefined;
|
|
79
79
|
iconSize?: "default" | "sm" | "lg" | "xl" | null | undefined;
|
|
80
80
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -754,11 +754,18 @@ type CarouselProps$1 = {
|
|
|
754
754
|
orientation?: 'horizontal' | 'vertical';
|
|
755
755
|
setApi?: (api: CarouselApi$1) => void;
|
|
756
756
|
};
|
|
757
|
+
type CarouselButtonProps = Omit<React$1.ComponentPropsWithoutRef<'button'>, 'children' | 'className'> & {
|
|
758
|
+
className?: string;
|
|
759
|
+
color?: React$1.ComponentProps<typeof Button$2>['color'];
|
|
760
|
+
iconSize?: React$1.ComponentProps<typeof Button$2>['iconSize'];
|
|
761
|
+
size?: React$1.ComponentProps<typeof Button$2>['size'];
|
|
762
|
+
variant?: React$1.ComponentProps<typeof Button$2>['variant'];
|
|
763
|
+
};
|
|
757
764
|
declare function Carousel$1({ orientation, opts, setApi, plugins, className, children, ...props }: React$1.ComponentProps<'div'> & CarouselProps$1): react_jsx_runtime.JSX.Element;
|
|
758
765
|
declare function CarouselContent({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
759
766
|
declare function CarouselItem({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
760
|
-
declare function CarouselPrevious({ className, variant, size, ...props }:
|
|
761
|
-
declare function CarouselNext({ className, variant, size, ...props }:
|
|
767
|
+
declare function CarouselPrevious({ className, variant, size, ...props }: CarouselButtonProps): react_jsx_runtime.JSX.Element;
|
|
768
|
+
declare function CarouselNext({ className, variant, size, ...props }: CarouselButtonProps): react_jsx_runtime.JSX.Element;
|
|
762
769
|
|
|
763
770
|
interface CategoryBarProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
764
771
|
values: number[];
|
|
@@ -1218,31 +1225,86 @@ type HeadingProps = ({
|
|
|
1218
1225
|
} & BaseProps$1);
|
|
1219
1226
|
declare function Heading({ className, trim, size, level, display, id: idProp, children, ...props }: HeadingProps): react_jsx_runtime.JSX.Element;
|
|
1220
1227
|
|
|
1228
|
+
declare const heroBannerVariants$1: (props?: ({
|
|
1229
|
+
variant?: "white" | "grey-600" | "grey-800" | "accent-200" | "primary-800" | "primary-600" | "primary-400" | "primary-200" | "grey-400" | "grey-200" | "accent-800" | "accent-600" | "accent-400" | null | undefined;
|
|
1230
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1231
|
+
declare const heroBannerContentAlignments: {
|
|
1232
|
+
readonly center: {
|
|
1233
|
+
readonly content: "text-center";
|
|
1234
|
+
readonly subtitle: "mx-auto";
|
|
1235
|
+
readonly actions: "justify-center";
|
|
1236
|
+
};
|
|
1237
|
+
readonly left: {
|
|
1238
|
+
readonly content: "text-left";
|
|
1239
|
+
readonly subtitle: "";
|
|
1240
|
+
readonly actions: "justify-start";
|
|
1241
|
+
};
|
|
1242
|
+
};
|
|
1243
|
+
interface HeroBannerSimpleProps extends VariantProps<typeof heroBannerVariants$1> {
|
|
1244
|
+
heading: React.ReactNode;
|
|
1245
|
+
subtitle: React.ReactNode;
|
|
1246
|
+
contentAlign?: keyof typeof heroBannerContentAlignments;
|
|
1247
|
+
primaryButton?: {
|
|
1248
|
+
text: React.ReactNode;
|
|
1249
|
+
href?: string;
|
|
1250
|
+
variant?: VariantProps<typeof buttonVariants$2>['variant'];
|
|
1251
|
+
color?: VariantProps<typeof buttonVariants$2>['color'];
|
|
1252
|
+
onClick?: () => void;
|
|
1253
|
+
};
|
|
1254
|
+
secondaryButton?: {
|
|
1255
|
+
text: React.ReactNode;
|
|
1256
|
+
href?: string;
|
|
1257
|
+
variant?: VariantProps<typeof buttonVariants$2>['variant'];
|
|
1258
|
+
color?: VariantProps<typeof buttonVariants$2>['color'];
|
|
1259
|
+
onClick?: () => void;
|
|
1260
|
+
};
|
|
1261
|
+
}
|
|
1262
|
+
declare function HeroBannerSimple({ variant, heading, subtitle, contentAlign, primaryButton, secondaryButton, }: HeroBannerSimpleProps): react_jsx_runtime.JSX.Element;
|
|
1263
|
+
|
|
1221
1264
|
declare const heroBannerVariants: (props?: ({
|
|
1222
|
-
variant?: "white" | "
|
|
1265
|
+
variant?: "white" | "grey-600" | "grey-800" | "accent-200" | "primary-800" | "primary-600" | "primary-400" | "primary-200" | "grey-400" | "grey-200" | "accent-800" | "accent-600" | "accent-400" | null | undefined;
|
|
1223
1266
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1267
|
+
declare const HERO_BANNER_SUPPORTING_IMAGE_COLUMN_SPANS: {
|
|
1268
|
+
readonly 1: "lg:col-span-1";
|
|
1269
|
+
readonly 2: "lg:col-span-2";
|
|
1270
|
+
readonly 3: "lg:col-span-3";
|
|
1271
|
+
readonly 4: "lg:col-span-4";
|
|
1272
|
+
readonly 5: "lg:col-span-5";
|
|
1273
|
+
readonly 6: "lg:col-span-6";
|
|
1274
|
+
readonly 7: "lg:col-span-7";
|
|
1275
|
+
readonly 8: "lg:col-span-8";
|
|
1276
|
+
readonly 9: "lg:col-span-9";
|
|
1277
|
+
readonly 10: "lg:col-span-10";
|
|
1278
|
+
readonly 11: "lg:col-span-11";
|
|
1279
|
+
};
|
|
1280
|
+
type HeroBannerSupportingImageColumnSpan = keyof typeof HERO_BANNER_SUPPORTING_IMAGE_COLUMN_SPANS;
|
|
1281
|
+
interface HeroBannerSupportingImageSplit {
|
|
1282
|
+
left: HeroBannerSupportingImageColumnSpan;
|
|
1283
|
+
right: HeroBannerSupportingImageColumnSpan;
|
|
1284
|
+
}
|
|
1224
1285
|
interface HeroBannerSupportingImageProps extends VariantProps<typeof heroBannerVariants> {
|
|
1225
1286
|
imgAlt: string;
|
|
1226
1287
|
imgSrc: string;
|
|
1227
1288
|
imgBgcolor?: string;
|
|
1228
|
-
heading:
|
|
1289
|
+
heading: ReactNode;
|
|
1229
1290
|
subtitle: string;
|
|
1291
|
+
split?: HeroBannerSupportingImageSplit;
|
|
1230
1292
|
primaryButton?: {
|
|
1231
|
-
text:
|
|
1293
|
+
text: ReactNode;
|
|
1232
1294
|
href?: string;
|
|
1233
1295
|
variant?: VariantProps<typeof buttonVariants$2>['variant'];
|
|
1234
1296
|
color?: VariantProps<typeof buttonVariants$2>['color'];
|
|
1235
1297
|
onClick?: () => void;
|
|
1236
1298
|
};
|
|
1237
1299
|
secondaryButton?: {
|
|
1238
|
-
text:
|
|
1300
|
+
text: ReactNode;
|
|
1239
1301
|
href?: string;
|
|
1240
1302
|
variant?: VariantProps<typeof buttonVariants$2>['variant'];
|
|
1241
1303
|
color?: VariantProps<typeof buttonVariants$2>['color'];
|
|
1242
1304
|
onClick?: () => void;
|
|
1243
1305
|
};
|
|
1244
1306
|
}
|
|
1245
|
-
declare function HeroBannerSupportingImage({ variant, imgAlt, imgSrc, imgBgcolor, heading, subtitle, primaryButton, secondaryButton, }: HeroBannerSupportingImageProps): react_jsx_runtime.JSX.Element;
|
|
1307
|
+
declare function HeroBannerSupportingImage({ variant, imgAlt, imgSrc, imgBgcolor, heading, subtitle, split, primaryButton, secondaryButton, }: HeroBannerSupportingImageProps): react_jsx_runtime.JSX.Element;
|
|
1246
1308
|
|
|
1247
1309
|
declare function HoverCard$1({ ...props }: React$1.ComponentProps<typeof HoverCardPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
1248
1310
|
declare function HoverCardTrigger({ ...props }: React$1.ComponentProps<typeof HoverCardPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
@@ -6366,7 +6428,7 @@ declare const ReasoningContent: React$1.MemoExoticComponent<({ className, childr
|
|
|
6366
6428
|
type ResponseProps = ComponentProps<typeof Streamdown>;
|
|
6367
6429
|
declare const Response: React$1.MemoExoticComponent<({ className, ...props }: ResponseProps) => react_jsx_runtime.JSX.Element>;
|
|
6368
6430
|
|
|
6369
|
-
type SourcesProps = ComponentProps<
|
|
6431
|
+
type SourcesProps = ComponentProps<typeof Collapsible>;
|
|
6370
6432
|
declare const Sources: ({ className, ...props }: SourcesProps) => react_jsx_runtime.JSX.Element;
|
|
6371
6433
|
type SourcesTriggerProps = ComponentProps<typeof CollapsibleTrigger> & {
|
|
6372
6434
|
count: number;
|
|
@@ -6431,10 +6493,13 @@ type WebPreviewNavigationProps = ComponentProps<'div'>;
|
|
|
6431
6493
|
declare const WebPreviewNavigation: ({ className, children, ...props }: WebPreviewNavigationProps) => react_jsx_runtime.JSX.Element;
|
|
6432
6494
|
type WebPreviewUrlProps = ComponentProps<typeof Input>;
|
|
6433
6495
|
declare const WebPreviewUrl: ({ value, onChange, onKeyDown, ...props }: WebPreviewUrlProps) => react_jsx_runtime.JSX.Element;
|
|
6434
|
-
type WebPreviewBodyProps = ComponentProps<'iframe'> & {
|
|
6496
|
+
type WebPreviewBodyProps = Omit<ComponentProps<'iframe'>, 'sandbox'> & {
|
|
6497
|
+
sandbox?: never;
|
|
6498
|
+
/** @deprecated Use `loadingFallback` instead. */
|
|
6435
6499
|
loading?: ReactNode;
|
|
6500
|
+
loadingFallback?: ReactNode;
|
|
6436
6501
|
};
|
|
6437
|
-
declare const WebPreviewBody: ({ className, loading, src, ...props }: WebPreviewBodyProps) => react_jsx_runtime.JSX.Element;
|
|
6502
|
+
declare const WebPreviewBody: ({ className, loading, loadingFallback, sandbox: _sandbox, src, ...props }: WebPreviewBodyProps) => react_jsx_runtime.JSX.Element;
|
|
6438
6503
|
|
|
6439
6504
|
declare function MultiLevelPushMenu({ navigation, onItemClick, onNavigate, onClose, className, showHeader, showFooter, showBreadcrumbs, showStats, showBackButton, initialTitle, }: MultiLevelPushMenuProps): react_jsx_runtime.JSX.Element;
|
|
6440
6505
|
|
|
@@ -6509,4 +6574,4 @@ declare const focusInput: string[];
|
|
|
6509
6574
|
declare const hasErrorInput: string[];
|
|
6510
6575
|
declare const focusRing: string[];
|
|
6511
6576
|
|
|
6512
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Action, Actions, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, type AnimationState, AreaChart, type AreaChartEventProps, Artifact, ArtifactAction, ArtifactActions, ArtifactContent, ArtifactDescription, ArtifactHeader, ArtifactTitle, AspectRatio, type AuthButtonProps, AuthLayout, AvailableChartColors, type AvailableChartColorsKeys, Avatar, AvatarFallback, AvatarImage, Badge$1 as Badge, BadgeButton, BarChart, type BarChartEventProps, BarList, type BarListProps, type BaseCodeData, BaseColorSwatches, Branch, BranchMessages, BranchNext, BranchPage, BranchPrevious, BranchSelector, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Breadcrumbs, type BreadcrumbsProps, Button$2 as Button, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel$1 as Carousel, type CarouselApi$1 as CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, CategoryBar, type CategoryBarProps, ChainOfThought, ChainOfThoughtContent, ChainOfThoughtHeader, ChainOfThoughtImage, ChainOfThoughtSearchResult, ChainOfThoughtSearchResults, ChainOfThoughtStep, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CheckboxSmall, Code, CodeBlock, CodeBlockCopyButton, type CodeData, CodeDemo, type CodeDemoProps, CodeHighlight, type CodeHighlightProps, type CodeItem, type CodeVariant, Collapsible$1 as Collapsible, CollapsibleContent$1 as CollapsibleContent, CollapsibleTrigger$1 as CollapsibleTrigger, type Color$1 as Color, ColorCard, type ColorCardProps, type ColorData, ColorPairingTool, type ColorProperty, ColorSwatches, type ColorSwatchesProps, type ColorTheme, type ColorThemes, type ColorUtility, type ColorsDisplayProps, type ColourOutputProps, ColourScale, type ColourScaleProps, ComboChart, type ComboChartEventProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Context, ContextCacheUsage, ContextContent, ContextContentBody, ContextContentFooter, ContextContentHeader, ContextInputUsage, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ContextOutputUsage, ContextReasoningUsage, ContextTrigger, Conversation, ConversationContent, ConversationEmptyState, ConversationScrollButton, DataTable, DataTableColumnHeader, DataTableFacetedFilter, DataTablePagination, DataTableToolbar, DataTableViewOptions, type DataType, type DataTypeSelectProps, Description, DescriptionDetails, DescriptionList, DescriptionTerm, type DesignTokensShades, type DesignTokensTheme, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DonutChart, type DonutChartEventProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu$1 as DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent$1 as DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem$1 as DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger$1 as DropdownMenuTrigger, DynamicFavicon, ErrorMessage, ExpandableSearch, ExpandableSearchField, Field, FieldGroup, FieldLabel, Fieldset, Footer, FooterAcknowledgement, FooterLegalLinks, FooterSmallPrint, FooterSocialLink, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, type FormStatus, type FormStatusHook, type FormStore, type Format, FormatToggle, type FormatToggleProps, GenerateInterpolatedColors, Header, Heading, type HeadingNode, type HeadingTypeProps, HeroBannerSupportingImage, HoverCard$1 as HoverCard, HoverCardContent$1 as HoverCardContent, HoverCardTrigger, type IFrameData, type IFrameMap, type IFrameOptions, type IFrameProps, type IconProps, Icons, Image, InlineCitation, InlineCitationCard, InlineCitationCardBody, InlineCitationCardTrigger, InlineCitationCarousel, InlineCitationCarouselContent, InlineCitationCarouselHeader, InlineCitationCarouselIndex, InlineCitationCarouselItem, InlineCitationSource, InlineCitationText, Input$1 as Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label, type Language, type LayoutProps, Legend, LineChart, type LineChartEventProps, Link$1 as Link, _List as List, Listbox, ListboxDescription, ListboxLabel, ListboxOption, Loader, Loading, Logo, MainNavigation, Masthead, MegaMenu, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Message, MessageContent, MobileHeader, MobileSearch, MultiLevelPushMenu, type MultiLevelPushMenuProps, NSWCard, NSWCardArrow, NSWCardDescription, NSWCardIcon, NSWCardImg, NSWCardTitle, Navbar, NavbarDivider, NavbarItem, NavbarLabel, NavbarSection, NavbarSpacer, Navigation, type NavigationItem, type NavigationLink, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuMainNavigation, NavigationMenuTrigger, NavigationMenuViewport, type NavigationSection, NotFound, OpenIn, OpenInChatGPT, OpenInClaude, OpenInContent, OpenInScira, OpenInT3, OpenInTrigger, OpenInv0, type Output, PageHeading, Pagination, PaginationGap, PaginationList, PaginationNext, PaginationPage, PaginationPrevious, type Palette, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PreWithCopy, PrevNextLinks, PrevNextLinksPageLink, type PrevNextLinksProps, Progress, ProgressBar, type ProgressBarProps, ProgressCircle, type ProgressCircleProps, PromptInput, PromptInputActionAddAttachments, PromptInputActionMenu, PromptInputActionMenuContent, PromptInputActionMenuItem, PromptInputActionMenuTrigger, PromptInputAttachment, PromptInputAttachments, PromptInputBody, PromptInputButton, PromptInputSubmit, PromptInputTextarea, PromptInputToolbar, PromptInputTools, Prose, type PushNavigationItem, type PushNavigationLevel, RadioGroup, RadioGroupItem, Reasoning, ReasoningContent, ReasoningTrigger, ResizableHandle, ResizablePanel, ResizablePanelGroup, Response, ScrollArea$1 as ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarLink, type SidebarLinkProps, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarNavigation, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, type SimpleNode, type SingleCodeData, SiteSearch, Skeleton, Slider, Social, Source, Sources, SourcesContent, SourcesTrigger, SparkAreaChart, SparkBarChart, SparkLineChart, Spinner, StepIndicator, StepNavigation, Strong, type StructuredColor, SubmitButton, Suggestion, Suggestions, Switch, SwitchField, SwitchGroup, TabNavigation, TabNavigationLink, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableOfContents, type TableOfContentsItem, type TableOfContentsProps, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Task, TaskContent, TaskItem, TaskItemFile, TaskTrigger, Text, TextLink, type TextTypeProps, Textarea$1 as Textarea, type ThemeCategory, ThemeColorPalette, type ThemeMessage, type ThemeOption, ThemeProvider, ThemeSelector, type ThemeSelectorDropDownProps, type ThemeSelectorProps, ThemeSwitcher, Toaster, TocContext, type TocContextType, TocProvider, Toggle, ToggleGroup, ToggleGroupItem, Tool, ToolContent, ToolHeader, ToolInput, ToolOutput, Tooltip$1 as Tooltip, TooltipContent, type TooltipProps$5 as TooltipProps, TooltipProvider, TooltipTrigger, TopLevel, TouchTarget, Tracker, type TrackerBlockProps, Tooltip as TremorTooltip, type TypeExampleProps, type TypeSpecs, type Variant, type VariantCodeData, type Variants, type View, type ViewMode, ViewToggle, type ViewToggleProps, WebPreview, WebPreviewBody, WebPreviewNavigation, WebPreviewUrl, Wrapper, aboriginal, addStartStopToColorArray, allPalettes, badgeVariants$1 as badgeVariants, brand, buttonVariants$2 as buttonVariants, camelCase, chartColors, cn, type colorCategories, colorDataArray, colorThemes, colors, constructCategoryColors, createColorArray, createColorData, createFormStore, darkenColor, diverging, domToSimple, focusInput, focusRing, generateColorThemes, generateDataVisColors, getColorClassName, getColorValue, getHeadings, getNodeText, getSurroundingColors, getYAxisDomain, hasErrorInput, hasOnlyOneValueForKey, humaniseVariant, interpolateColors, isLightColor, kebabCase, languages, lightenColor, navigationMenuTriggerStyle, oklchConverter, progressBarVariants, renderColorOutput, renderColorOutputToDTFM, semantic, sequential, shades, themeIndices, themeTokens, toggleVariants, truncate, useActiveSectionObserver, useDisableToc, useFormField, useIsMobile, useOnWindowResize, usePageHeadings, usePromptInputAttachments, useSelectorHeight, useSidebar, useStickyOffset, useToc };
|
|
6577
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Action, Actions, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, type AnimationState, AreaChart, type AreaChartEventProps, Artifact, ArtifactAction, ArtifactActions, ArtifactContent, ArtifactDescription, ArtifactHeader, ArtifactTitle, AspectRatio, type AuthButtonProps, AuthLayout, AvailableChartColors, type AvailableChartColorsKeys, Avatar, AvatarFallback, AvatarImage, Badge$1 as Badge, BadgeButton, BarChart, type BarChartEventProps, BarList, type BarListProps, type BaseCodeData, BaseColorSwatches, Branch, BranchMessages, BranchNext, BranchPage, BranchPrevious, BranchSelector, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Breadcrumbs, type BreadcrumbsProps, Button$2 as Button, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel$1 as Carousel, type CarouselApi$1 as CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, CategoryBar, type CategoryBarProps, ChainOfThought, ChainOfThoughtContent, ChainOfThoughtHeader, ChainOfThoughtImage, ChainOfThoughtSearchResult, ChainOfThoughtSearchResults, ChainOfThoughtStep, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CheckboxSmall, Code, CodeBlock, CodeBlockCopyButton, type CodeData, CodeDemo, type CodeDemoProps, CodeHighlight, type CodeHighlightProps, type CodeItem, type CodeVariant, Collapsible$1 as Collapsible, CollapsibleContent$1 as CollapsibleContent, CollapsibleTrigger$1 as CollapsibleTrigger, type Color$1 as Color, ColorCard, type ColorCardProps, type ColorData, ColorPairingTool, type ColorProperty, ColorSwatches, type ColorSwatchesProps, type ColorTheme, type ColorThemes, type ColorUtility, type ColorsDisplayProps, type ColourOutputProps, ColourScale, type ColourScaleProps, ComboChart, type ComboChartEventProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Context, ContextCacheUsage, ContextContent, ContextContentBody, ContextContentFooter, ContextContentHeader, ContextInputUsage, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ContextOutputUsage, ContextReasoningUsage, ContextTrigger, Conversation, ConversationContent, ConversationEmptyState, ConversationScrollButton, DataTable, DataTableColumnHeader, DataTableFacetedFilter, DataTablePagination, DataTableToolbar, DataTableViewOptions, type DataType, type DataTypeSelectProps, Description, DescriptionDetails, DescriptionList, DescriptionTerm, type DesignTokensShades, type DesignTokensTheme, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DonutChart, type DonutChartEventProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu$1 as DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent$1 as DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem$1 as DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger$1 as DropdownMenuTrigger, DynamicFavicon, ErrorMessage, ExpandableSearch, ExpandableSearchField, Field, FieldGroup, FieldLabel, Fieldset, Footer, FooterAcknowledgement, FooterLegalLinks, FooterSmallPrint, FooterSocialLink, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, type FormStatus, type FormStatusHook, type FormStore, type Format, FormatToggle, type FormatToggleProps, GenerateInterpolatedColors, Header, Heading, type HeadingNode, type HeadingTypeProps, HeroBannerSimple, HeroBannerSupportingImage, HoverCard$1 as HoverCard, HoverCardContent$1 as HoverCardContent, HoverCardTrigger, type IFrameData, type IFrameMap, type IFrameOptions, type IFrameProps, type IconProps, Icons, Image, InlineCitation, InlineCitationCard, InlineCitationCardBody, InlineCitationCardTrigger, InlineCitationCarousel, InlineCitationCarouselContent, InlineCitationCarouselHeader, InlineCitationCarouselIndex, InlineCitationCarouselItem, InlineCitationSource, InlineCitationText, Input$1 as Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label, type Language, type LayoutProps, Legend, LineChart, type LineChartEventProps, Link$1 as Link, _List as List, Listbox, ListboxDescription, ListboxLabel, ListboxOption, Loader, Loading, Logo, MainNavigation, Masthead, MegaMenu, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Message, MessageContent, MobileHeader, MobileSearch, MultiLevelPushMenu, type MultiLevelPushMenuProps, NSWCard, NSWCardArrow, NSWCardDescription, NSWCardIcon, NSWCardImg, NSWCardTitle, Navbar, NavbarDivider, NavbarItem, NavbarLabel, NavbarSection, NavbarSpacer, Navigation, type NavigationItem, type NavigationLink, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuMainNavigation, NavigationMenuTrigger, NavigationMenuViewport, type NavigationSection, NotFound, OpenIn, OpenInChatGPT, OpenInClaude, OpenInContent, OpenInScira, OpenInT3, OpenInTrigger, OpenInv0, type Output, PageHeading, Pagination, PaginationGap, PaginationList, PaginationNext, PaginationPage, PaginationPrevious, type Palette, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PreWithCopy, PrevNextLinks, PrevNextLinksPageLink, type PrevNextLinksProps, Progress, ProgressBar, type ProgressBarProps, ProgressCircle, type ProgressCircleProps, PromptInput, PromptInputActionAddAttachments, PromptInputActionMenu, PromptInputActionMenuContent, PromptInputActionMenuItem, PromptInputActionMenuTrigger, PromptInputAttachment, PromptInputAttachments, PromptInputBody, PromptInputButton, PromptInputSubmit, PromptInputTextarea, PromptInputToolbar, PromptInputTools, Prose, type PushNavigationItem, type PushNavigationLevel, RadioGroup, RadioGroupItem, Reasoning, ReasoningContent, ReasoningTrigger, ResizableHandle, ResizablePanel, ResizablePanelGroup, Response, ScrollArea$1 as ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarLink, type SidebarLinkProps, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarNavigation, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, type SimpleNode, type SingleCodeData, SiteSearch, Skeleton, Slider, Social, Source, Sources, SourcesContent, SourcesTrigger, SparkAreaChart, SparkBarChart, SparkLineChart, Spinner, StepIndicator, StepNavigation, Strong, type StructuredColor, SubmitButton, Suggestion, Suggestions, Switch, SwitchField, SwitchGroup, TabNavigation, TabNavigationLink, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableOfContents, type TableOfContentsItem, type TableOfContentsProps, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Task, TaskContent, TaskItem, TaskItemFile, TaskTrigger, Text, TextLink, type TextTypeProps, Textarea$1 as Textarea, type ThemeCategory, ThemeColorPalette, type ThemeMessage, type ThemeOption, ThemeProvider, ThemeSelector, type ThemeSelectorDropDownProps, type ThemeSelectorProps, ThemeSwitcher, Toaster, TocContext, type TocContextType, TocProvider, Toggle, ToggleGroup, ToggleGroupItem, Tool, ToolContent, ToolHeader, ToolInput, ToolOutput, Tooltip$1 as Tooltip, TooltipContent, type TooltipProps$5 as TooltipProps, TooltipProvider, TooltipTrigger, TopLevel, TouchTarget, Tracker, type TrackerBlockProps, Tooltip as TremorTooltip, type TypeExampleProps, type TypeSpecs, type Variant, type VariantCodeData, type Variants, type View, type ViewMode, ViewToggle, type ViewToggleProps, WebPreview, WebPreviewBody, WebPreviewNavigation, WebPreviewUrl, Wrapper, aboriginal, addStartStopToColorArray, allPalettes, badgeVariants$1 as badgeVariants, brand, buttonVariants$2 as buttonVariants, camelCase, chartColors, cn, type colorCategories, colorDataArray, colorThemes, colors, constructCategoryColors, createColorArray, createColorData, createFormStore, darkenColor, diverging, domToSimple, focusInput, focusRing, generateColorThemes, generateDataVisColors, getColorClassName, getColorValue, getHeadings, getNodeText, getSurroundingColors, getYAxisDomain, hasErrorInput, hasOnlyOneValueForKey, humaniseVariant, interpolateColors, isLightColor, kebabCase, languages, lightenColor, navigationMenuTriggerStyle, oklchConverter, progressBarVariants, renderColorOutput, renderColorOutputToDTFM, semantic, sequential, shades, themeIndices, themeTokens, toggleVariants, truncate, useActiveSectionObserver, useDisableToc, useFormField, useIsMobile, useOnWindowResize, usePageHeadings, usePromptInputAttachments, useSelectorHeight, useSidebar, useStickyOffset, useToc };
|