@vllnt/ui 0.2.1-canary.0cc4e50 → 0.2.1-canary.1180f3e

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.
@@ -107,6 +107,7 @@ function CodeBlock({
107
107
  /* @__PURE__ */ jsx(
108
108
  Button,
109
109
  {
110
+ "aria-label": copied ? "Copied" : "Copy code",
110
111
  className: "size-8",
111
112
  onClick: handleCopy,
112
113
  size: "icon",
@@ -49,6 +49,7 @@ function CodePlayground({
49
49
  /* @__PURE__ */ jsx(
50
50
  Button,
51
51
  {
52
+ "aria-label": copied ? "Copied" : "Copy code",
52
53
  className: "size-8",
53
54
  onClick: handleCopy,
54
55
  size: "icon",
@@ -325,6 +325,7 @@ import {
325
325
  useAgentStepStatus
326
326
  } from "./agent-activity";
327
327
  import { StatCard, statCardVariants } from "./stat-card";
328
+ import { StaticCode } from "./static-code";
328
329
  import {
329
330
  dotVariants,
330
331
  StatusIndicator,
@@ -1263,6 +1264,7 @@ export {
1263
1264
  Spinner,
1264
1265
  StatCard,
1265
1266
  StateBadgeOverlay,
1267
+ StaticCode,
1266
1268
  StatusBoard,
1267
1269
  StatusIndicator,
1268
1270
  Step,
@@ -4,6 +4,7 @@ import * as runtime from "react/jsx-runtime";
4
4
  import ReactMarkdown from "react-markdown";
5
5
  import remarkGfm from "remark-gfm";
6
6
  import { CodeBlock } from "../code-block/code-block";
7
+ import { StaticCode } from "../static-code/static-code";
7
8
  const MDXComponents = {
8
9
  a: ({ children, href, ...props }) => /* @__PURE__ */ jsx(
9
10
  "a",
@@ -26,7 +27,7 @@ const MDXComponents = {
26
27
  if (typeof className === "string" && className.startsWith("language-")) {
27
28
  const language = className.replace(/^language-/, "");
28
29
  const text = typeof children === "string" ? children.replace(/\n$/, "") : String(children ?? "");
29
- return /* @__PURE__ */ jsx(CodeBlock, { language, children: text });
30
+ return /* @__PURE__ */ jsx(StaticCode, { code: text, language });
30
31
  }
31
32
  return /* @__PURE__ */ jsx(
32
33
  "code",
@@ -33,7 +33,7 @@ function NavbarSaas({
33
33
  }
34
34
  ) : null,
35
35
  brand ? typeof brand === "string" ? /* @__PURE__ */ jsx(Link, { className: "text-xl font-bold truncate", href: "/", children: brand }) : brand : null,
36
- navItems.length > 0 ? /* @__PURE__ */ jsx("nav", { className: "hidden md:flex gap-6", children: navItems.map((item) => /* @__PURE__ */ jsx(
36
+ navItems.length > 0 ? /* @__PURE__ */ jsx("nav", { className: "hidden lg:flex gap-6", children: navItems.map((item) => /* @__PURE__ */ jsx(
37
37
  Link,
38
38
  {
39
39
  className: cn(
@@ -12,6 +12,7 @@ function SidebarToggle({
12
12
  /* @__PURE__ */ jsx(
13
13
  Button,
14
14
  {
15
+ "aria-label": open ? "Close menu" : "Open menu",
15
16
  className: cn("lg:hidden", className),
16
17
  onClick: onToggle,
17
18
  size: "icon",
@@ -22,6 +23,7 @@ function SidebarToggle({
22
23
  /* @__PURE__ */ jsx(
23
24
  Button,
24
25
  {
26
+ "aria-label": "Toggle sidebar",
25
27
  className: cn("hidden lg:flex", className),
26
28
  onClick: onToggle,
27
29
  size: "icon",
@@ -0,0 +1,4 @@
1
+ import { StaticCode } from "./static-code";
2
+ export {
3
+ StaticCode
4
+ };
@@ -0,0 +1,29 @@
1
+ "use client";
2
+ import { jsx } from "react/jsx-runtime";
3
+ import { useState } from "react";
4
+ import { Check, Copy } from "lucide-react";
5
+ import { Button } from "../button/button";
6
+ function StaticCodeCopy({ value }) {
7
+ const [copied, setCopied] = useState(false);
8
+ const handleCopy = async () => {
9
+ await navigator.clipboard.writeText(value);
10
+ setCopied(true);
11
+ setTimeout(() => {
12
+ setCopied(false);
13
+ }, 2e3);
14
+ };
15
+ return /* @__PURE__ */ jsx(
16
+ Button,
17
+ {
18
+ "aria-label": copied ? "Copied" : "Copy code",
19
+ className: "absolute right-2 top-2 size-8",
20
+ onClick: handleCopy,
21
+ size: "icon",
22
+ variant: "ghost",
23
+ children: copied ? /* @__PURE__ */ jsx(Check, { className: "size-3" }) : /* @__PURE__ */ jsx(Copy, { className: "size-3" })
24
+ }
25
+ );
26
+ }
27
+ export {
28
+ StaticCodeCopy
29
+ };
@@ -0,0 +1,41 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { Prism as SyntaxHighlighter } from "react-syntax-highlighter";
3
+ import { oneDark } from "react-syntax-highlighter/dist/esm/styles/prism";
4
+ import { cn } from "../../lib/utils";
5
+ import { StaticCodeCopy } from "./static-code-copy";
6
+ function StaticCode({
7
+ className,
8
+ code,
9
+ language = "tsx"
10
+ }) {
11
+ return /* @__PURE__ */ jsxs(
12
+ "div",
13
+ {
14
+ className: cn(
15
+ "group relative overflow-x-auto rounded-lg border border-border bg-[#282c34]",
16
+ className
17
+ ),
18
+ children: [
19
+ /* @__PURE__ */ jsx(
20
+ SyntaxHighlighter,
21
+ {
22
+ customStyle: {
23
+ background: "transparent",
24
+ fontSize: "0.875rem",
25
+ margin: 0,
26
+ padding: "1rem"
27
+ },
28
+ language,
29
+ PreTag: "div",
30
+ style: oneDark,
31
+ children: code
32
+ }
33
+ ),
34
+ /* @__PURE__ */ jsx(StaticCodeCopy, { value: code })
35
+ ]
36
+ }
37
+ );
38
+ }
39
+ export {
40
+ StaticCode
41
+ };
@@ -59,6 +59,7 @@ function Terminal({
59
59
  copyable && commands.length > 0 ? /* @__PURE__ */ jsx(
60
60
  Button,
61
61
  {
62
+ "aria-label": copied ? "Copied" : "Copy commands",
62
63
  className: "absolute top-2 right-2 size-8 bg-zinc-800 hover:bg-zinc-700 text-zinc-300",
63
64
  onClick: handleCopy,
64
65
  size: "icon",
@@ -125,6 +126,7 @@ function SimpleTerminal({
125
126
  commands.length > 0 && /* @__PURE__ */ jsx(
126
127
  Button,
127
128
  {
129
+ "aria-label": copied ? "Copied" : "Copy commands",
128
130
  className: "absolute top-2 right-2 size-8 bg-zinc-800 hover:bg-zinc-700 text-zinc-300",
129
131
  onClick: handleCopy,
130
132
  size: "icon",
package/dist/index.d.ts CHANGED
@@ -2507,6 +2507,19 @@ declare const StatCard: react.ForwardRefExoticComponent<react.HTMLAttributes<HTM
2507
2507
  value: react.ReactNode;
2508
2508
  } & react.RefAttributes<HTMLDivElement>>;
2509
2509
 
2510
+ type StaticCodeProps = {
2511
+ className?: string;
2512
+ code: string;
2513
+ language?: string;
2514
+ };
2515
+ /**
2516
+ * Server component that highlights code to static HTML at build/request time
2517
+ * (react-syntax-highlighter rendered on the server) so the client never loads
2518
+ * or runs the highlighter. The copy button is the one client island. Uses a
2519
+ * fixed dark theme to stay deterministic without reading the client theme.
2520
+ */
2521
+ declare function StaticCode({ className, code, language, }: StaticCodeProps): react_jsx_runtime.JSX.Element;
2522
+
2510
2523
  declare const statusIndicatorVariants: (props?: ({
2511
2524
  size?: "lg" | "sm" | "md" | null | undefined;
2512
2525
  tone?: "info" | "success" | "warning" | "neutral" | "danger" | null | undefined;
@@ -10807,4 +10820,4 @@ declare function useMounted(): boolean;
10807
10820
 
10808
10821
  declare function cn(...inputs: ClassValue[]): string;
10809
10822
 
10810
- export { AIArtifact, AIArtifactContent, AIArtifactCopyButton, AIArtifactDownloadButton, AIArtifactEditButton, AIArtifactFullscreenButton, type AIArtifactLabels, type AIArtifactProps, AIArtifactToolbar, type AIArtifactType, AIArtifactVersion, type AIArtifactVersionProps, AIArtifactVersions, AIChatInput, type AIChatInputProps, AIMessageBubble, type AIMessageBubbleProps, AISidebar, AISidebarClose, AISidebarContent, AISidebarFooter, AISidebarHeader, type AISidebarLabels, type AISidebarPosition, type AISidebarProps, AISidebarProvider, type AISidebarProviderProps, AISidebarTitle, AISidebarTrigger, type AISidebarTriggerProps, AISourceCitation, type AISourceCitationProps, AIStreamingText, type AIStreamingTextProps, AIToolCallDisplay, type AIToolCallDisplayProps, type AIToolCallStatus, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type ActivityEvent, ActivityHeatmap, type ActivityHeatmapItem, type ActivityHeatmapProps, ActivityLog, type ActivityLogItem, type ActivityLogProps, type ActivityLogTone, type ActivityStripTone, AgentActivity, type AgentActivityLabels, type AgentActivityProps, type AgentActivityStatus, AgentStep, AgentStepDetail, type AgentStepDetailProps, AgentStepDuration, type AgentStepDurationProps, AgentStepProgress, type AgentStepProgressProps, type AgentStepProps, type AgentStepStatus, AgentStepTitle, type AgentStepTitleProps, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertPulse, type AlertPulseLabels, type AlertPulseProps, type AlertPulseSeverity, AlertTitle, AnchorPort, type AnchorPortProps, AnimatedText, type AnimatedTextProps, Annotation, type AnnotationColor, type AnnotationProps, type AnnotationRegion, AreaChart, AspectRatio, AutoReload, type AutoReloadLabels, type AutoReloadProps, type AutoReloadSavePayload, Avatar, AvatarFallback, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, AvatarImage, Badge, type BadgeProps, Banner, BannerAction, type BannerActionProps, type BannerProps, type BannerVariant, BarChart, BeforeAfter, type BeforeAfterProps, BlogCard, BorderBeam, type BorderBeamProps, BottomActivityStrip, type BottomActivityStripLabels, type BottomActivityStripProps, BottomBar, type BottomBarProps, Breadcrumb, type BreadcrumbItem, Button, type ButtonProps, Calendar, type CalendarProps, Callout, type CalloutProps, type CalloutVariant, CandlestickChart, type CandlestickChartProps, type CandlestickDatum, CanvasShell, type CanvasShellInsets, type CanvasShellProps, type CanvasShellRouteConfig, CanvasView, type CanvasViewHandle, type CanvasViewProps, type CanvasViewport, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, CategoryFilter, type ChatDockMessage, ChatDockSection, type ChatDockSectionProps, Checkbox, Checklist, type ChecklistItem, type ChecklistProps, type ChoroplethColorScale, ChoroplethLegend, type ChoroplethLegendProps, ChoroplethMap, type ChoroplethMapLabels, type ChoroplethMapProps, type ChoroplethRegion, ChoroplethTooltip, type ChoroplethTooltipProps, ChronoEvent, type ChronoEventProps, type ChronoMedia, ChronologicalTimeline, type ChronologicalTimelineProps, CivilizationCard, type CivilizationCardColor, type CivilizationCardEra, type CivilizationCardLabels, type CivilizationCardProps, CivilizationComparison, type CivilizationComparisonProps, CodeBlock, CodePlayground, type CodePlaygroundProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, type ComboboxOption, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CommentPin, type CommentPinLabels, type CommentPinProps, type CommentPinState, CommonMistake, type CommonMistakeProps, Comparison, type ComparisonProps, CompletionDialog, type CompletionDialogProps, ConnectorEdge, type ConnectorEdgePoint, type ConnectorEdgeProps, Content, ContentCard$1 as ContentCard, ContentIntro, type ContentIntroLabels, type ContentIntroProps, type ContentIntroSection, type ContentMeta, type ContentProgress, type ContentSection, type ContentSectionMinimal, ContextLens, type ContextLensFocus, type ContextLensLabels, type ContextLensProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ConversationEmpty, type ConversationEmptyProps, ConversationHeader, type ConversationHeaderProps, ConversationLoading, type ConversationLoadingProps, type ConversationMessage, ConversationMessages, type ConversationMessagesProps, ConversationScrollButton, type ConversationScrollButtonProps, ConversationSuggestions, type ConversationSuggestionsProps, ConversationThread, type ConversationThreadProps, ConversationTitle, type ConversationTitleProps, CookieConsent, type CookieConsentProps, CopyButton, type CopyButtonProps, type CopyButtonVariant, type CopyStatus, CountdownTimer, type CountdownTimerProps, CreditBadge, type CreditBadgeProps, type CreditBadgeStatus, Curriculum, CurriculumLesson, type CurriculumLessonProps, CurriculumModule, type CurriculumModuleProps, type CurriculumProps, DataList, DataListItem, type DataListItemProps, DataListLabel, type DataListProps, DataListValue, DataTableComponent as DataTable, type DataTableFilter, type DataTableFilterOption, type DataTableProps, DatePicker, type DatePickerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, type DifficultyLevel, DocumentSiblingNav, type DocumentSiblingNavLink, type DocumentSiblingNavProps, type DocumentSiblingNavVariant, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EdgeLabel, type EdgeLabelProps, EmptyState, type EmptyStateProps, type EmptyStateSize, type EraColor, EraColumn, type EraColumnProps, EraComparison, type EraComparisonProps, EraDomain, type EraDomainProps, EraFigure, type EraFigureProps, EraHighlight, type EraHighlightProps, Exercise, type ExerciseProps, FAQ, FAQItem, type FAQItemProps, type FAQProps, FileTree, type FileTreeProps, FileUpload, type FileUploadProps, FilterBar, type FilterBarLabels, type FilterBarProps, type FilterOption, type FilterUpdates, Flashcard, type FlashcardProps, FloatingActionButton, type FloatingActionButtonProps, FloatingToolbar, type FloatingToolbarAction, type FloatingToolbarLabels, type FloatingToolbarProps, FlowControls, type FlowControlsProps, FlowDiagram, type FlowDiagramEdge, type FlowDiagramNode, type FlowDiagramProps, FlowErrorBoundary, FlowFullscreen, type FlowFullscreenProps, FollowMode, type FollowModeColor, type FollowModeLabels, type FollowModeProps, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, type FormProps, GanttChart, type GanttChartLabels, type GanttChartProps, type GanttColor, type GanttGroup, type GanttMilestone, type GanttScale, type GanttTask, type GeoJSONPolygon, type GeoPosition$4 as GeoPosition, GeographyQuizMap, type GeographyQuizMapLabels, GeographyQuizMapPrompt, type GeographyQuizMapProps, GeographyQuizMapResults, GeographyQuizMapScore, GlassPanel, type GlassPanelProps, Globe3D, type Globe3DLabels, type Globe3DProps, GlobeArc, type GlobeArcProps, type GlobeColor, type GlobeCoord, GlobeMarker, type GlobeMarkerProps, Glossary, type GlossaryProps, GroupHull, type GroupHullProps, HandoffBeacon, type HandoffBeaconLabels, type HandoffBeaconLevel, type HandoffBeaconProps, type HeadingTag, type HeatGradient, HeatMapOverlay, type HeatMapOverlayLabels, type HeatMapOverlayProps, type HeatMapPoint, HeatOverlay, type HeatOverlayLabels, type HeatOverlayProps, type HeatOverlayTone, type HeatPoint, Highlight, type HighlightProps, type HistoricCategory, type HistoricColor, type HistoricEra, type HistoricEvent, type HistoricPeriod, HistoricTimeline, type HistoricTimelineLabels, type HistoricTimelineProps, HistoricalFigureCard, type HistoricalFigureCardConnection, type HistoricalFigureCardLabels, type HistoricalFigureCardLifeEvent, type HistoricalFigureCardProps, type HistoricalFigureCardQuote, HorizontalScrollRow, type HorizontalScrollRowProps, HoverCard, HoverCardContent, HoverCardTrigger, InfinitePlane, type InfinitePlaneLabels, type InfinitePlanePattern, type InfinitePlaneProps, InlineInput, type InlineInputProps, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InteractiveTimeline, type InteractiveTimelineCategory, type InteractiveTimelineColor, type InteractiveTimelineEvent, InteractiveTimelineFilter, type InteractiveTimelineFilterProps, type InteractiveTimelineLabels, type InteractiveTimelineProps, InteractiveTimelineToday, InteractiveTimelineToolbar, type InteractiveTimelineTrack, InteractiveTimelineZoomIn, InteractiveTimelineZoomOut, JarvisDock, type JarvisDockAction, type JarvisDockLabels, type JarvisDockProps, type JarvisDockTone, Kbd, type KbdProps, KeyConcept, type KeyConceptProps, type KeyboardShortcut, KeyboardShortcutsHelp, type KeyboardShortcutsHelpProps, KnowledgeCheck, type KnowledgeCheckAnswer, type KnowledgeCheckLabels, type KnowledgeCheckOption, type KnowledgeCheckProps, type KnowledgeCheckQuestion, type KnowledgeCheckQuestionType, type KnowledgeCheckScore, LANGUAGE_NAMES, Label, LangProvider, type LassoRect, LearningObjectives, type LearningObjectivesProps, LeftRail, type LeftRailProps, type LessonDifficulty, type LessonStatus, LineChart, LiveCursor, type LiveCursorLabels, type LiveCursorProps, LiveFeed, type LiveFeedEvent, type LiveFeedProps, MDXContent, Map2D, type Map2DLabels, type Map2DProps, MapControls, MapLayer, type MapLayerProps, MapMarker, MapMarkerIcon, type MapMarkerProps, MapPopup, type MapPopupProps, MapTimeline, type MapTimelineColor, MapTimelineControls, MapTimelineEvent, type MapTimelineEventProps, type MapTimelineGeometry, type MapTimelineLabels, MapTimelineLayer, type MapTimelineLayerProps, MapTimelinePlayButton, type MapTimelineProps, MapTimelineSlider, MapZoomIn, MapZoomOut, MarketTreemap, type MarketTreemapItem, type MarketTreemapProps, Marquee, type MarqueeProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MetricCluster, type MetricClusterAnchor, type MetricClusterEntry, type MetricClusterLabels, type MetricClusterProps, type MetricClusterTone, MetricGauge, type MetricGaugeProps, type MetricGaugeThreshold, type MiniMapMarker, MiniMapPanel, type MiniMapPanelProps, ModelComparison, ModelComparisonColumn, type ModelComparisonColumnProps, type ModelComparisonLabels, ModelComparisonMeta, type ModelComparisonMetaProps, type ModelComparisonProps, ModelComparisonVote, type ModelComparisonVoteProps, type ModelComparisonVoteValue, type ModelInfo, ModelSelector, type ModelSelectorProps, MultiSelect, MultiSelectLasso, type MultiSelectLassoLabels, type MultiSelectLassoProps, type MultiSelectOption, type MultiSelectProps, type NavItem, NavbarSaas, type NavbarSaasProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NewsletterSignup, type NewsletterSignupLabels, type NewsletterSignupProps, type NewsletterSignupStatus, type NewsletterSignupVariant, NumberInput, type NumberInputProps, NumberTicker, type NumberTickerProps, ObjectCard, type ObjectCardAction, type ObjectCardMetric, type ObjectCardProps, ObjectHandle, type ObjectHandleProps, ObjectInspector, type ObjectInspectorKind, type ObjectInspectorLabels, type ObjectInspectorProps, type ObjectInspectorStatus, OrderBook, type OrderBookLevel, type OrderBookProps, OverviewBoard, type OverviewBoardItem, type OverviewBoardProps, OverviewCard, type OverviewCardProps, type OverviewCardTone, Pagination, type PaginationProps, ParallelTimeline, type ParallelTimelineColor, type ParallelTimelineEra, type ParallelTimelineEvent, type ParallelTimelineLabels, type ParallelTimelineProps, type ParallelTimelineTrack, PasswordInput, type PasswordInputProps, PlanBadge, type PlanBadgeProps, type PlanBadgeState, type PlanBadgeTier, type PlatformConfig, PlaybackGhost, type PlaybackGhostKind, type PlaybackGhostLabels, type PlaybackGhostProps, PolicyDeliveryPanel, type PolicyDeliveryPanelLabels, type PolicyDeliveryPanelProps, type PolicyEntry, type PolicyStatus, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Prerequisites, type PrerequisitesProps, PresenceStack, type PresenceStackLabels, type PresenceStackProps, type PresenceStatus, PresenceSyncIndicator, type PresenceSyncIndicatorLabels, type PresenceSyncIndicatorProps, type PresenceSyncState, type PresenceUser, type PricingFeature, type PricingPeriod, PricingPlan, type PricingPlanCta, type PricingPlanProps, PricingTable, type PricingTableProps, type PrimarySource, PrimarySourceAnnotation, type PrimarySourceAnnotationProps, PrimarySourceAnnotations, PrimarySourceContext, PrimarySourceMetadata, PrimarySourceQuestions, PrimarySourceRotate, PrimarySourceToolbar, PrimarySourceTranscription, PrimarySourceViewer, type PrimarySourceViewerLabels, type PrimarySourceViewerProps, PrimarySourceZoomIn, PrimarySourceZoomOut, ProTip, type ProTipProps, type ProTipVariant, ProfileSection, ProgressBar, type ProgressBarProps, ContentCard as ProgressCard, type ContentCardProgress as ProgressCardProgress, type ContentCardProps as ProgressCardProps, ProgressTracker, ProgressTrackerBadge, type ProgressTrackerBadgeProps, ProgressTrackerModule, type ProgressTrackerModuleItem, type ProgressTrackerModuleProps, type ProgressTrackerModuleStatus, ProgressTrackerModules, type ProgressTrackerModulesProps, ProgressTrackerOverview, type ProgressTrackerOverviewProps, type ProgressTrackerProps, ProgressTrackerStat, type ProgressTrackerStatProps, ProgressTrackerStats, type ProgressTrackerStatsProps, type PromptTemplate, type PromptTemplateCategory, PromptTemplates, type PromptTemplatesLabels, type PromptTemplatesProps, type PropertyEntry, PropertySection, type PropertySectionLabels, type PropertySectionProps, Quiz, type QuizAnswer, type QuizOption, type QuizProps, type QuizQuestion, type QuizRegion, RadioGroup, RadioGroupItem, Rating, type RatingProps, type RelationshipDirection, type RelationshipEdge, RelationshipInspector, type RelationshipInspectorLabels, type RelationshipInspectorProps, ResizableHandle, ResizablePanel, ResizablePanelGroup, RightDock, type RightDockProps, RoleBadge, type RoleBadgeProps, type RoleBadgeRole, type RouteColor, type RouteLineStyle, RouteMap, type RouteMapLabels, type RouteMapProps, type RouteWaypoint, type RoutingAssignment, RoutingAssignmentPanel, type RoutingAssignmentPanelLabels, type RoutingAssignmentPanelProps, type RoutingRole, type RunPhaseState, RunTimeline, type RunTimelineLabels, type RunTimelineLane, type RunTimelinePhase, type RunTimelineProps, type RuntimeMetric, type RuntimeMetricTone, type RuntimeMetricTrend, RuntimeOverviewPanel, type RuntimeOverviewPanelLabels, type RuntimeOverviewPanelProps, ScopeSelector, type ScopeSelectorNode, type ScopeSelectorProps, type ScopeSelectorSelection, ScrollArea, ScrollBar, SearchBar, SearchDialog, type SearchItem, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SelectionBounds, SelectionHalo, type SelectionHaloLabels, type SelectionHaloProps, SelectionPresence, type SelectionPresenceLabels, type SelectionPresenceProps, Separator, SeverityBadge, type SeverityBadgeLevel, type SeverityBadgeProps, ShareDialog, type ShareDialogLabels, type SharePlatform as ShareDialogPlatform, type ShareDialogProps, type SharePlatform$1 as SharePlatform, type SharePlatformConfig, ShareSection, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, type SidebarItem, SidebarProvider, type SidebarSection, SidebarToggle, type SidebarToggleProps, SimpleTerminal, type SimpleTerminalProps, Skeleton, Slider, Slideshow, type SlideshowLabels, type SlideshowProps, type SlideshowSection, type SnapGuide, SnapGuides, type SnapGuidesLabels, type SnapGuidesProps, SocialFAB, type SocialFabActionConfig, type SocialFabLabels, type SocialFabProps, SparklineGrid, type SparklineGridItem, type SparklineGridProps, Spinner, type SpinnerProps, StatCard, type StatCardProps, type StateBadgeAnchor, StateBadgeOverlay, type StateBadgeOverlayLabels, type StateBadgeOverlayProps, type StateBadgeState, StatusBoard, type StatusBoardItem, type StatusBoardProps, type StatusBoardStatus, StatusIndicator, type StatusIndicatorProps, Step, StepByStep, type StepByStepProps, StepNavigation, type StepNavigationProps, type StepProps, Stepper, type StepperProps, type StepperStep, StickyMetric, type StickyMetricAnchor, type StickyMetricLabels, type StickyMetricProps, type StickyMetricTone, StoryMap, StoryMapChapter, type StoryMapChapterProps, type StoryMapColor, type StoryMapLabels, type StoryMapMedia, type StoryMapProps, SubscriptionCard, type SubscriptionCardProps, type SubscriptionCardStatus, type SubscriptionInterval, type SubscriptionStatus, Summary, type SummaryProps, type SupportedLanguage, Switch, TLDRSection, type TOCSection, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableOfContents, TableOfContentsPanel, type TableOfContentsPanelProps, TableRow, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TagsInput, type TagsInputProps, Terminal, type TerminalLine, type TerminalProps, Textarea, type TextareaProps, ThemeProvider, ThemeToggle, ThinkingBlock, type ThinkingBlockProps, ThreadBubble, type ThreadBubbleLabels, type ThreadBubbleProps, type ThreadMessage, ThresholdRing, type ThresholdRingLabels, type ThresholdRingProps, type ThresholdRingTone, TickerTape, type TickerTapeItem, type TickerTapeProps, Timeline, type TimelineColor, TimelineItem, type TimelineItemProps, type TimelineItemStatus, type TimelineOrientation, type TimelineProps, TimelineScrubber, type TimelineScrubberLabels, type TimelineScrubberProps, type TimelineScrubberTone, type TimelineTick, Toast, ToastAction, ToastClose, ToastDescription, type ToastProps, ToastTitle, Toaster, Toggle, ToggleGroup, ToggleGroupItem, type ToolCall, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TopBar, type TopBarProps, Tour, type TourProps, type TourStep, type Transaction, TransactionList, type TransactionListLabels, TransactionListPinned, type TransactionListPinnedProps, type TransactionListProps, TransactionListSubscriptionRow, type TransactionListSubscriptionRowProps, type TransactionType, type TreeNode, TreeView, type TreeViewLabels, type TreeViewProps, type TreeViewSelectionMode, TruncatedText, type TruncatedTextProps, TutorialCard, type TutorialCardLabels, type TutorialCardMeta, type TutorialCardProgress, type TutorialCardProps, TutorialComplete, type TutorialCompleteLabels, type TutorialCompleteProps, type TutorialCompleteRelatedContent, type TutorialCompleteSection, TutorialFilters, type TutorialFiltersLabels, type TutorialFiltersProps, TutorialIntroContent, type TutorialIntroContentProps, TutorialMDX, type TutorialMDXProps, type SupportedLanguage as UISupportedLanguage, UnicodeSpinner, type UnicodeSpinnerAnimation, type UnicodeSpinnerProps, UsageBreakdown, type UsageBreakdownItem, type UsageBreakdownProps, type UsageBreakdownTone, type UseCopyToClipboardOptions, type UseCopyToClipboardResult, type UseFlowDiagramOptions, type UseFlowDiagramReturn, VideoEmbed, type VideoEmbedProps, type ViewOption, ViewSwitcher, type ViewSwitcherProps, type ViewportBookmark, ViewportBookmarks, type ViewportBookmarksLabels, type ViewportBookmarksProps, WalletCard, type WalletCardProps, Watchlist, type WatchlistItem, type WatchlistProps, type WorkspaceOption, WorkspaceSwitcher, type WorkspaceSwitcherProps, WorldBreadcrumbs, type WorldBreadcrumbsLabels, type WorldBreadcrumbsProps, WorldClockBar, type WorldClockBarProps, type WorldClockBarZone, type WorldCrumb, type WorldCrumbKind, ZoomHUD, type ZoomHUDProps, alertVariants, avatarGroupVariants, avatarItemVariants, badgeVariants, bannerVariants, buttonVariants, cn, cookieConsentVariants, dataListItemVariants, dataListVariants, navVariants as documentSiblingNavVariants, dotVariants, emptyStateVariants, formatTransactionAmount, formatTransactionDate, getOtherLanguage, kbdVariants, mdxComponents, navigationMenuTriggerStyle, reducer as newsletterSignupReducer, segmentedControlItemVariants, segmentedControlVariants, severityBadgeVariants, statCardVariants, statusIndicatorVariants, timelineVariants, toggleVariants, useAIArtifact, useAISidebar, useAgentStepStatus, useCopyToClipboard, useDebounce, useEraColumnColor, useFlowDiagram, useFormField, useHorizontalScroll, useMobile, useMounted, useProgressTrackerContext, useSidebar, useSocialFab, useTimelineOrientation };
10823
+ export { AIArtifact, AIArtifactContent, AIArtifactCopyButton, AIArtifactDownloadButton, AIArtifactEditButton, AIArtifactFullscreenButton, type AIArtifactLabels, type AIArtifactProps, AIArtifactToolbar, type AIArtifactType, AIArtifactVersion, type AIArtifactVersionProps, AIArtifactVersions, AIChatInput, type AIChatInputProps, AIMessageBubble, type AIMessageBubbleProps, AISidebar, AISidebarClose, AISidebarContent, AISidebarFooter, AISidebarHeader, type AISidebarLabels, type AISidebarPosition, type AISidebarProps, AISidebarProvider, type AISidebarProviderProps, AISidebarTitle, AISidebarTrigger, type AISidebarTriggerProps, AISourceCitation, type AISourceCitationProps, AIStreamingText, type AIStreamingTextProps, AIToolCallDisplay, type AIToolCallDisplayProps, type AIToolCallStatus, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type ActivityEvent, ActivityHeatmap, type ActivityHeatmapItem, type ActivityHeatmapProps, ActivityLog, type ActivityLogItem, type ActivityLogProps, type ActivityLogTone, type ActivityStripTone, AgentActivity, type AgentActivityLabels, type AgentActivityProps, type AgentActivityStatus, AgentStep, AgentStepDetail, type AgentStepDetailProps, AgentStepDuration, type AgentStepDurationProps, AgentStepProgress, type AgentStepProgressProps, type AgentStepProps, type AgentStepStatus, AgentStepTitle, type AgentStepTitleProps, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertPulse, type AlertPulseLabels, type AlertPulseProps, type AlertPulseSeverity, AlertTitle, AnchorPort, type AnchorPortProps, AnimatedText, type AnimatedTextProps, Annotation, type AnnotationColor, type AnnotationProps, type AnnotationRegion, AreaChart, AspectRatio, AutoReload, type AutoReloadLabels, type AutoReloadProps, type AutoReloadSavePayload, Avatar, AvatarFallback, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, AvatarImage, Badge, type BadgeProps, Banner, BannerAction, type BannerActionProps, type BannerProps, type BannerVariant, BarChart, BeforeAfter, type BeforeAfterProps, BlogCard, BorderBeam, type BorderBeamProps, BottomActivityStrip, type BottomActivityStripLabels, type BottomActivityStripProps, BottomBar, type BottomBarProps, Breadcrumb, type BreadcrumbItem, Button, type ButtonProps, Calendar, type CalendarProps, Callout, type CalloutProps, type CalloutVariant, CandlestickChart, type CandlestickChartProps, type CandlestickDatum, CanvasShell, type CanvasShellInsets, type CanvasShellProps, type CanvasShellRouteConfig, CanvasView, type CanvasViewHandle, type CanvasViewProps, type CanvasViewport, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, CategoryFilter, type ChatDockMessage, ChatDockSection, type ChatDockSectionProps, Checkbox, Checklist, type ChecklistItem, type ChecklistProps, type ChoroplethColorScale, ChoroplethLegend, type ChoroplethLegendProps, ChoroplethMap, type ChoroplethMapLabels, type ChoroplethMapProps, type ChoroplethRegion, ChoroplethTooltip, type ChoroplethTooltipProps, ChronoEvent, type ChronoEventProps, type ChronoMedia, ChronologicalTimeline, type ChronologicalTimelineProps, CivilizationCard, type CivilizationCardColor, type CivilizationCardEra, type CivilizationCardLabels, type CivilizationCardProps, CivilizationComparison, type CivilizationComparisonProps, CodeBlock, CodePlayground, type CodePlaygroundProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, type ComboboxOption, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CommentPin, type CommentPinLabels, type CommentPinProps, type CommentPinState, CommonMistake, type CommonMistakeProps, Comparison, type ComparisonProps, CompletionDialog, type CompletionDialogProps, ConnectorEdge, type ConnectorEdgePoint, type ConnectorEdgeProps, Content, ContentCard$1 as ContentCard, ContentIntro, type ContentIntroLabels, type ContentIntroProps, type ContentIntroSection, type ContentMeta, type ContentProgress, type ContentSection, type ContentSectionMinimal, ContextLens, type ContextLensFocus, type ContextLensLabels, type ContextLensProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ConversationEmpty, type ConversationEmptyProps, ConversationHeader, type ConversationHeaderProps, ConversationLoading, type ConversationLoadingProps, type ConversationMessage, ConversationMessages, type ConversationMessagesProps, ConversationScrollButton, type ConversationScrollButtonProps, ConversationSuggestions, type ConversationSuggestionsProps, ConversationThread, type ConversationThreadProps, ConversationTitle, type ConversationTitleProps, CookieConsent, type CookieConsentProps, CopyButton, type CopyButtonProps, type CopyButtonVariant, type CopyStatus, CountdownTimer, type CountdownTimerProps, CreditBadge, type CreditBadgeProps, type CreditBadgeStatus, Curriculum, CurriculumLesson, type CurriculumLessonProps, CurriculumModule, type CurriculumModuleProps, type CurriculumProps, DataList, DataListItem, type DataListItemProps, DataListLabel, type DataListProps, DataListValue, DataTableComponent as DataTable, type DataTableFilter, type DataTableFilterOption, type DataTableProps, DatePicker, type DatePickerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, type DifficultyLevel, DocumentSiblingNav, type DocumentSiblingNavLink, type DocumentSiblingNavProps, type DocumentSiblingNavVariant, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EdgeLabel, type EdgeLabelProps, EmptyState, type EmptyStateProps, type EmptyStateSize, type EraColor, EraColumn, type EraColumnProps, EraComparison, type EraComparisonProps, EraDomain, type EraDomainProps, EraFigure, type EraFigureProps, EraHighlight, type EraHighlightProps, Exercise, type ExerciseProps, FAQ, FAQItem, type FAQItemProps, type FAQProps, FileTree, type FileTreeProps, FileUpload, type FileUploadProps, FilterBar, type FilterBarLabels, type FilterBarProps, type FilterOption, type FilterUpdates, Flashcard, type FlashcardProps, FloatingActionButton, type FloatingActionButtonProps, FloatingToolbar, type FloatingToolbarAction, type FloatingToolbarLabels, type FloatingToolbarProps, FlowControls, type FlowControlsProps, FlowDiagram, type FlowDiagramEdge, type FlowDiagramNode, type FlowDiagramProps, FlowErrorBoundary, FlowFullscreen, type FlowFullscreenProps, FollowMode, type FollowModeColor, type FollowModeLabels, type FollowModeProps, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, type FormProps, GanttChart, type GanttChartLabels, type GanttChartProps, type GanttColor, type GanttGroup, type GanttMilestone, type GanttScale, type GanttTask, type GeoJSONPolygon, type GeoPosition$4 as GeoPosition, GeographyQuizMap, type GeographyQuizMapLabels, GeographyQuizMapPrompt, type GeographyQuizMapProps, GeographyQuizMapResults, GeographyQuizMapScore, GlassPanel, type GlassPanelProps, Globe3D, type Globe3DLabels, type Globe3DProps, GlobeArc, type GlobeArcProps, type GlobeColor, type GlobeCoord, GlobeMarker, type GlobeMarkerProps, Glossary, type GlossaryProps, GroupHull, type GroupHullProps, HandoffBeacon, type HandoffBeaconLabels, type HandoffBeaconLevel, type HandoffBeaconProps, type HeadingTag, type HeatGradient, HeatMapOverlay, type HeatMapOverlayLabels, type HeatMapOverlayProps, type HeatMapPoint, HeatOverlay, type HeatOverlayLabels, type HeatOverlayProps, type HeatOverlayTone, type HeatPoint, Highlight, type HighlightProps, type HistoricCategory, type HistoricColor, type HistoricEra, type HistoricEvent, type HistoricPeriod, HistoricTimeline, type HistoricTimelineLabels, type HistoricTimelineProps, HistoricalFigureCard, type HistoricalFigureCardConnection, type HistoricalFigureCardLabels, type HistoricalFigureCardLifeEvent, type HistoricalFigureCardProps, type HistoricalFigureCardQuote, HorizontalScrollRow, type HorizontalScrollRowProps, HoverCard, HoverCardContent, HoverCardTrigger, InfinitePlane, type InfinitePlaneLabels, type InfinitePlanePattern, type InfinitePlaneProps, InlineInput, type InlineInputProps, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InteractiveTimeline, type InteractiveTimelineCategory, type InteractiveTimelineColor, type InteractiveTimelineEvent, InteractiveTimelineFilter, type InteractiveTimelineFilterProps, type InteractiveTimelineLabels, type InteractiveTimelineProps, InteractiveTimelineToday, InteractiveTimelineToolbar, type InteractiveTimelineTrack, InteractiveTimelineZoomIn, InteractiveTimelineZoomOut, JarvisDock, type JarvisDockAction, type JarvisDockLabels, type JarvisDockProps, type JarvisDockTone, Kbd, type KbdProps, KeyConcept, type KeyConceptProps, type KeyboardShortcut, KeyboardShortcutsHelp, type KeyboardShortcutsHelpProps, KnowledgeCheck, type KnowledgeCheckAnswer, type KnowledgeCheckLabels, type KnowledgeCheckOption, type KnowledgeCheckProps, type KnowledgeCheckQuestion, type KnowledgeCheckQuestionType, type KnowledgeCheckScore, LANGUAGE_NAMES, Label, LangProvider, type LassoRect, LearningObjectives, type LearningObjectivesProps, LeftRail, type LeftRailProps, type LessonDifficulty, type LessonStatus, LineChart, LiveCursor, type LiveCursorLabels, type LiveCursorProps, LiveFeed, type LiveFeedEvent, type LiveFeedProps, MDXContent, Map2D, type Map2DLabels, type Map2DProps, MapControls, MapLayer, type MapLayerProps, MapMarker, MapMarkerIcon, type MapMarkerProps, MapPopup, type MapPopupProps, MapTimeline, type MapTimelineColor, MapTimelineControls, MapTimelineEvent, type MapTimelineEventProps, type MapTimelineGeometry, type MapTimelineLabels, MapTimelineLayer, type MapTimelineLayerProps, MapTimelinePlayButton, type MapTimelineProps, MapTimelineSlider, MapZoomIn, MapZoomOut, MarketTreemap, type MarketTreemapItem, type MarketTreemapProps, Marquee, type MarqueeProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MetricCluster, type MetricClusterAnchor, type MetricClusterEntry, type MetricClusterLabels, type MetricClusterProps, type MetricClusterTone, MetricGauge, type MetricGaugeProps, type MetricGaugeThreshold, type MiniMapMarker, MiniMapPanel, type MiniMapPanelProps, ModelComparison, ModelComparisonColumn, type ModelComparisonColumnProps, type ModelComparisonLabels, ModelComparisonMeta, type ModelComparisonMetaProps, type ModelComparisonProps, ModelComparisonVote, type ModelComparisonVoteProps, type ModelComparisonVoteValue, type ModelInfo, ModelSelector, type ModelSelectorProps, MultiSelect, MultiSelectLasso, type MultiSelectLassoLabels, type MultiSelectLassoProps, type MultiSelectOption, type MultiSelectProps, type NavItem, NavbarSaas, type NavbarSaasProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NewsletterSignup, type NewsletterSignupLabels, type NewsletterSignupProps, type NewsletterSignupStatus, type NewsletterSignupVariant, NumberInput, type NumberInputProps, NumberTicker, type NumberTickerProps, ObjectCard, type ObjectCardAction, type ObjectCardMetric, type ObjectCardProps, ObjectHandle, type ObjectHandleProps, ObjectInspector, type ObjectInspectorKind, type ObjectInspectorLabels, type ObjectInspectorProps, type ObjectInspectorStatus, OrderBook, type OrderBookLevel, type OrderBookProps, OverviewBoard, type OverviewBoardItem, type OverviewBoardProps, OverviewCard, type OverviewCardProps, type OverviewCardTone, Pagination, type PaginationProps, ParallelTimeline, type ParallelTimelineColor, type ParallelTimelineEra, type ParallelTimelineEvent, type ParallelTimelineLabels, type ParallelTimelineProps, type ParallelTimelineTrack, PasswordInput, type PasswordInputProps, PlanBadge, type PlanBadgeProps, type PlanBadgeState, type PlanBadgeTier, type PlatformConfig, PlaybackGhost, type PlaybackGhostKind, type PlaybackGhostLabels, type PlaybackGhostProps, PolicyDeliveryPanel, type PolicyDeliveryPanelLabels, type PolicyDeliveryPanelProps, type PolicyEntry, type PolicyStatus, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Prerequisites, type PrerequisitesProps, PresenceStack, type PresenceStackLabels, type PresenceStackProps, type PresenceStatus, PresenceSyncIndicator, type PresenceSyncIndicatorLabels, type PresenceSyncIndicatorProps, type PresenceSyncState, type PresenceUser, type PricingFeature, type PricingPeriod, PricingPlan, type PricingPlanCta, type PricingPlanProps, PricingTable, type PricingTableProps, type PrimarySource, PrimarySourceAnnotation, type PrimarySourceAnnotationProps, PrimarySourceAnnotations, PrimarySourceContext, PrimarySourceMetadata, PrimarySourceQuestions, PrimarySourceRotate, PrimarySourceToolbar, PrimarySourceTranscription, PrimarySourceViewer, type PrimarySourceViewerLabels, type PrimarySourceViewerProps, PrimarySourceZoomIn, PrimarySourceZoomOut, ProTip, type ProTipProps, type ProTipVariant, ProfileSection, ProgressBar, type ProgressBarProps, ContentCard as ProgressCard, type ContentCardProgress as ProgressCardProgress, type ContentCardProps as ProgressCardProps, ProgressTracker, ProgressTrackerBadge, type ProgressTrackerBadgeProps, ProgressTrackerModule, type ProgressTrackerModuleItem, type ProgressTrackerModuleProps, type ProgressTrackerModuleStatus, ProgressTrackerModules, type ProgressTrackerModulesProps, ProgressTrackerOverview, type ProgressTrackerOverviewProps, type ProgressTrackerProps, ProgressTrackerStat, type ProgressTrackerStatProps, ProgressTrackerStats, type ProgressTrackerStatsProps, type PromptTemplate, type PromptTemplateCategory, PromptTemplates, type PromptTemplatesLabels, type PromptTemplatesProps, type PropertyEntry, PropertySection, type PropertySectionLabels, type PropertySectionProps, Quiz, type QuizAnswer, type QuizOption, type QuizProps, type QuizQuestion, type QuizRegion, RadioGroup, RadioGroupItem, Rating, type RatingProps, type RelationshipDirection, type RelationshipEdge, RelationshipInspector, type RelationshipInspectorLabels, type RelationshipInspectorProps, ResizableHandle, ResizablePanel, ResizablePanelGroup, RightDock, type RightDockProps, RoleBadge, type RoleBadgeProps, type RoleBadgeRole, type RouteColor, type RouteLineStyle, RouteMap, type RouteMapLabels, type RouteMapProps, type RouteWaypoint, type RoutingAssignment, RoutingAssignmentPanel, type RoutingAssignmentPanelLabels, type RoutingAssignmentPanelProps, type RoutingRole, type RunPhaseState, RunTimeline, type RunTimelineLabels, type RunTimelineLane, type RunTimelinePhase, type RunTimelineProps, type RuntimeMetric, type RuntimeMetricTone, type RuntimeMetricTrend, RuntimeOverviewPanel, type RuntimeOverviewPanelLabels, type RuntimeOverviewPanelProps, ScopeSelector, type ScopeSelectorNode, type ScopeSelectorProps, type ScopeSelectorSelection, ScrollArea, ScrollBar, SearchBar, SearchDialog, type SearchItem, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SelectionBounds, SelectionHalo, type SelectionHaloLabels, type SelectionHaloProps, SelectionPresence, type SelectionPresenceLabels, type SelectionPresenceProps, Separator, SeverityBadge, type SeverityBadgeLevel, type SeverityBadgeProps, ShareDialog, type ShareDialogLabels, type SharePlatform as ShareDialogPlatform, type ShareDialogProps, type SharePlatform$1 as SharePlatform, type SharePlatformConfig, ShareSection, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, type SidebarItem, SidebarProvider, type SidebarSection, SidebarToggle, type SidebarToggleProps, SimpleTerminal, type SimpleTerminalProps, Skeleton, Slider, Slideshow, type SlideshowLabels, type SlideshowProps, type SlideshowSection, type SnapGuide, SnapGuides, type SnapGuidesLabels, type SnapGuidesProps, SocialFAB, type SocialFabActionConfig, type SocialFabLabels, type SocialFabProps, SparklineGrid, type SparklineGridItem, type SparklineGridProps, Spinner, type SpinnerProps, StatCard, type StatCardProps, type StateBadgeAnchor, StateBadgeOverlay, type StateBadgeOverlayLabels, type StateBadgeOverlayProps, type StateBadgeState, StaticCode, type StaticCodeProps, StatusBoard, type StatusBoardItem, type StatusBoardProps, type StatusBoardStatus, StatusIndicator, type StatusIndicatorProps, Step, StepByStep, type StepByStepProps, StepNavigation, type StepNavigationProps, type StepProps, Stepper, type StepperProps, type StepperStep, StickyMetric, type StickyMetricAnchor, type StickyMetricLabels, type StickyMetricProps, type StickyMetricTone, StoryMap, StoryMapChapter, type StoryMapChapterProps, type StoryMapColor, type StoryMapLabels, type StoryMapMedia, type StoryMapProps, SubscriptionCard, type SubscriptionCardProps, type SubscriptionCardStatus, type SubscriptionInterval, type SubscriptionStatus, Summary, type SummaryProps, type SupportedLanguage, Switch, TLDRSection, type TOCSection, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableOfContents, TableOfContentsPanel, type TableOfContentsPanelProps, TableRow, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TagsInput, type TagsInputProps, Terminal, type TerminalLine, type TerminalProps, Textarea, type TextareaProps, ThemeProvider, ThemeToggle, ThinkingBlock, type ThinkingBlockProps, ThreadBubble, type ThreadBubbleLabels, type ThreadBubbleProps, type ThreadMessage, ThresholdRing, type ThresholdRingLabels, type ThresholdRingProps, type ThresholdRingTone, TickerTape, type TickerTapeItem, type TickerTapeProps, Timeline, type TimelineColor, TimelineItem, type TimelineItemProps, type TimelineItemStatus, type TimelineOrientation, type TimelineProps, TimelineScrubber, type TimelineScrubberLabels, type TimelineScrubberProps, type TimelineScrubberTone, type TimelineTick, Toast, ToastAction, ToastClose, ToastDescription, type ToastProps, ToastTitle, Toaster, Toggle, ToggleGroup, ToggleGroupItem, type ToolCall, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TopBar, type TopBarProps, Tour, type TourProps, type TourStep, type Transaction, TransactionList, type TransactionListLabels, TransactionListPinned, type TransactionListPinnedProps, type TransactionListProps, TransactionListSubscriptionRow, type TransactionListSubscriptionRowProps, type TransactionType, type TreeNode, TreeView, type TreeViewLabels, type TreeViewProps, type TreeViewSelectionMode, TruncatedText, type TruncatedTextProps, TutorialCard, type TutorialCardLabels, type TutorialCardMeta, type TutorialCardProgress, type TutorialCardProps, TutorialComplete, type TutorialCompleteLabels, type TutorialCompleteProps, type TutorialCompleteRelatedContent, type TutorialCompleteSection, TutorialFilters, type TutorialFiltersLabels, type TutorialFiltersProps, TutorialIntroContent, type TutorialIntroContentProps, TutorialMDX, type TutorialMDXProps, type SupportedLanguage as UISupportedLanguage, UnicodeSpinner, type UnicodeSpinnerAnimation, type UnicodeSpinnerProps, UsageBreakdown, type UsageBreakdownItem, type UsageBreakdownProps, type UsageBreakdownTone, type UseCopyToClipboardOptions, type UseCopyToClipboardResult, type UseFlowDiagramOptions, type UseFlowDiagramReturn, VideoEmbed, type VideoEmbedProps, type ViewOption, ViewSwitcher, type ViewSwitcherProps, type ViewportBookmark, ViewportBookmarks, type ViewportBookmarksLabels, type ViewportBookmarksProps, WalletCard, type WalletCardProps, Watchlist, type WatchlistItem, type WatchlistProps, type WorkspaceOption, WorkspaceSwitcher, type WorkspaceSwitcherProps, WorldBreadcrumbs, type WorldBreadcrumbsLabels, type WorldBreadcrumbsProps, WorldClockBar, type WorldClockBarProps, type WorldClockBarZone, type WorldCrumb, type WorldCrumbKind, ZoomHUD, type ZoomHUDProps, alertVariants, avatarGroupVariants, avatarItemVariants, badgeVariants, bannerVariants, buttonVariants, cn, cookieConsentVariants, dataListItemVariants, dataListVariants, navVariants as documentSiblingNavVariants, dotVariants, emptyStateVariants, formatTransactionAmount, formatTransactionDate, getOtherLanguage, kbdVariants, mdxComponents, navigationMenuTriggerStyle, reducer as newsletterSignupReducer, segmentedControlItemVariants, segmentedControlVariants, severityBadgeVariants, statCardVariants, statusIndicatorVariants, timelineVariants, toggleVariants, useAIArtifact, useAISidebar, useAgentStepStatus, useCopyToClipboard, useDebounce, useEraColumnColor, useFlowDiagram, useFormField, useHorizontalScroll, useMobile, useMounted, useProgressTrackerContext, useSidebar, useSocialFab, useTimelineOrientation };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vllnt/ui",
3
- "version": "0.2.1-canary.0cc4e50",
3
+ "version": "0.2.1-canary.1180f3e",
4
4
  "description": "React component library — 225 components built on Radix UI, Tailwind CSS, and CVA",
5
5
  "license": "MIT",
6
6
  "author": "vllnt",