@vllnt/ui 0.2.1-canary.73a93ee → 0.2.1-canary.7fde2d1
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/components/index.js
CHANGED
|
@@ -560,9 +560,6 @@ import {
|
|
|
560
560
|
import {
|
|
561
561
|
PresenceSyncIndicator
|
|
562
562
|
} from "./presence-sync-indicator";
|
|
563
|
-
import {
|
|
564
|
-
RunTimeline
|
|
565
|
-
} from "./run-timeline";
|
|
566
563
|
import {
|
|
567
564
|
SelectionPresence
|
|
568
565
|
} from "./selection-presence";
|
|
@@ -853,7 +850,6 @@ export {
|
|
|
853
850
|
ResizablePanelGroup,
|
|
854
851
|
RightDock,
|
|
855
852
|
RoleBadge,
|
|
856
|
-
RunTimeline,
|
|
857
853
|
ScopeSelector,
|
|
858
854
|
ScrollArea,
|
|
859
855
|
ScrollBar,
|
package/dist/index.d.ts
CHANGED
|
@@ -3970,125 +3970,6 @@ declare const PresenceSyncIndicator: react.ForwardRefExoticComponent<{
|
|
|
3970
3970
|
status?: ReactNode;
|
|
3971
3971
|
} & Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
3972
3972
|
|
|
3973
|
-
/**
|
|
3974
|
-
* Phase state — drives the bar tone.
|
|
3975
|
-
*
|
|
3976
|
-
* @public
|
|
3977
|
-
*/
|
|
3978
|
-
type RunPhaseState = "complete" | "failed" | "queued" | "running" | "stopped";
|
|
3979
|
-
/**
|
|
3980
|
-
* One lane in a multi-lane run timeline.
|
|
3981
|
-
*
|
|
3982
|
-
* @public
|
|
3983
|
-
*/
|
|
3984
|
-
type RunTimelineLane = {
|
|
3985
|
-
/** Stable identifier — used as the React key + phase routing. */
|
|
3986
|
-
id: string;
|
|
3987
|
-
/** Display label rendered to the left of the lane. */
|
|
3988
|
-
label: ReactNode;
|
|
3989
|
-
};
|
|
3990
|
-
/**
|
|
3991
|
-
* One phase block in the run timeline.
|
|
3992
|
-
*
|
|
3993
|
-
* @public
|
|
3994
|
-
*/
|
|
3995
|
-
type RunTimelinePhase = {
|
|
3996
|
-
/** End timestamp in the same units as `start` / `end`. */
|
|
3997
|
-
end: number;
|
|
3998
|
-
/** Stable identifier — used as the React key + analytics hook. */
|
|
3999
|
-
id: string;
|
|
4000
|
-
/** Optional label rendered inside the phase bar. */
|
|
4001
|
-
label?: ReactNode;
|
|
4002
|
-
/** Lane id this phase belongs to. Defaults to `"default"` (single-lane mode). */
|
|
4003
|
-
laneId?: string;
|
|
4004
|
-
/** Optional click handler — when provided, the phase becomes a button. */
|
|
4005
|
-
onActivate?: () => void;
|
|
4006
|
-
/** Start timestamp `>= timeline start`. */
|
|
4007
|
-
start: number;
|
|
4008
|
-
/** Phase state. Defaults to `"running"`. */
|
|
4009
|
-
state?: RunPhaseState;
|
|
4010
|
-
};
|
|
4011
|
-
/**
|
|
4012
|
-
* Localizable strings.
|
|
4013
|
-
*
|
|
4014
|
-
* @public
|
|
4015
|
-
*/
|
|
4016
|
-
type RunTimelineLabels = {
|
|
4017
|
-
/** Empty-state copy. Defaults to `"No phases"`. */
|
|
4018
|
-
empty?: string;
|
|
4019
|
-
/** Aria-label override. Defaults to `"Run timeline"`. */
|
|
4020
|
-
region?: string;
|
|
4021
|
-
};
|
|
4022
|
-
/**
|
|
4023
|
-
* Props for {@link RunTimeline}.
|
|
4024
|
-
*
|
|
4025
|
-
* @public
|
|
4026
|
-
*/
|
|
4027
|
-
type RunTimelineProps = {
|
|
4028
|
-
/** Optional cursor position in the same units as the range. Renders a vertical line. */
|
|
4029
|
-
cursor?: number;
|
|
4030
|
-
/** End of the time range. Must be `> start`. */
|
|
4031
|
-
end: number;
|
|
4032
|
-
/** Optional formatter for the start / cursor / end labels. */
|
|
4033
|
-
formatValue?: (value: number) => ReactNode;
|
|
4034
|
-
/** Localizable strings. */
|
|
4035
|
-
labels?: RunTimelineLabels;
|
|
4036
|
-
/** Optional explicit lane definitions in render order. Required for multi-lane mode. */
|
|
4037
|
-
lanes?: RunTimelineLane[];
|
|
4038
|
-
/** Phase blocks — order is irrelevant; routed to lanes by `laneId`. */
|
|
4039
|
-
phases: RunTimelinePhase[];
|
|
4040
|
-
/** Start of the time range. */
|
|
4041
|
-
start: number;
|
|
4042
|
-
} & ComponentPropsWithoutRef<"section">;
|
|
4043
|
-
/**
|
|
4044
|
-
* Multi-lane execution timeline showing run phases over time. Each
|
|
4045
|
-
* phase renders as a colored bar positioned by its start / end and
|
|
4046
|
-
* routed to a lane by `laneId`. Optional cursor draws a thin vertical
|
|
4047
|
-
* line for the current playback position.
|
|
4048
|
-
*
|
|
4049
|
-
* Pure presentation; the host computes the phase list from the run's
|
|
4050
|
-
* execution history. Pair with {@link "../timeline-scrubber/timeline-scrubber".TimelineScrubber}
|
|
4051
|
-
* to drive the cursor.
|
|
4052
|
-
*
|
|
4053
|
-
* Distinct from `MapTimeline` (geo-aware), `Stepper` (sequential
|
|
4054
|
-
* steps), and the timeline family `#32`–`#35`: this primitive is
|
|
4055
|
-
* specifically the run history surface inside the canvas.
|
|
4056
|
-
*
|
|
4057
|
-
* @example
|
|
4058
|
-
* ```tsx
|
|
4059
|
-
* <RunTimeline
|
|
4060
|
-
* start={0} end={3600}
|
|
4061
|
-
* cursor={1800}
|
|
4062
|
-
* lanes={[
|
|
4063
|
-
* { id: "ingest", label: "Ingest" },
|
|
4064
|
-
* { id: "rank", label: "Rank" },
|
|
4065
|
-
* ]}
|
|
4066
|
-
* phases={[
|
|
4067
|
-
* { id: "1", laneId: "ingest", start: 0, end: 600, state: "complete", label: "load" },
|
|
4068
|
-
* { id: "2", laneId: "rank", start: 600, end: 2400, state: "running", label: "score" },
|
|
4069
|
-
* ]}
|
|
4070
|
-
* />
|
|
4071
|
-
* ```
|
|
4072
|
-
*
|
|
4073
|
-
* @public
|
|
4074
|
-
*/
|
|
4075
|
-
declare const RunTimeline: react.ForwardRefExoticComponent<{
|
|
4076
|
-
/** Optional cursor position in the same units as the range. Renders a vertical line. */
|
|
4077
|
-
cursor?: number;
|
|
4078
|
-
/** End of the time range. Must be `> start`. */
|
|
4079
|
-
end: number;
|
|
4080
|
-
/** Optional formatter for the start / cursor / end labels. */
|
|
4081
|
-
formatValue?: (value: number) => ReactNode;
|
|
4082
|
-
/** Localizable strings. */
|
|
4083
|
-
labels?: RunTimelineLabels;
|
|
4084
|
-
/** Optional explicit lane definitions in render order. Required for multi-lane mode. */
|
|
4085
|
-
lanes?: RunTimelineLane[];
|
|
4086
|
-
/** Phase blocks — order is irrelevant; routed to lanes by `laneId`. */
|
|
4087
|
-
phases: RunTimelinePhase[];
|
|
4088
|
-
/** Start of the time range. */
|
|
4089
|
-
start: number;
|
|
4090
|
-
} & Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
4091
|
-
|
|
4092
3973
|
/**
|
|
4093
3974
|
* Localizable strings.
|
|
4094
3975
|
*
|
|
@@ -4504,4 +4385,4 @@ declare function useHorizontalScroll(): UseHorizontalScrollReturn;
|
|
|
4504
4385
|
|
|
4505
4386
|
declare function cn(...inputs: ClassValue[]): string;
|
|
4506
4387
|
|
|
4507
|
-
export { AIChatInput, type AIChatInputProps, AIMessageBubble, type AIMessageBubbleProps, AISourceCitation, type AISourceCitationProps, AIStreamingText, type AIStreamingTextProps, AIToolCallDisplay, type AIToolCallDisplayProps, type AIToolCallStatus, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, ActivityHeatmap, type ActivityHeatmapItem, type ActivityHeatmapProps, ActivityLog, type ActivityLogItem, type ActivityLogProps, type ActivityLogTone, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AnchorPort, type AnchorPortProps, AnimatedText, type AnimatedTextProps, Annotation, type AnnotationProps, AreaChart, AspectRatio, Avatar, AvatarFallback, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, AvatarImage, Badge, type BadgeProps, BarChart, BeforeAfter, type BeforeAfterProps, BlogCard, BorderBeam, type BorderBeamProps, 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, 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, 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, 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, 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, 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, FlowControls, type FlowControlsProps, FlowDiagram, type FlowDiagramEdge, type FlowDiagramNode, type FlowDiagramProps, FlowErrorBoundary, FlowFullscreen, type FlowFullscreenProps, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, type FormProps, GlassPanel, type GlassPanelProps, Glossary, type GlossaryProps, GroupHull, type GroupHullProps, Highlight, type HighlightProps, HorizontalScrollRow, type HorizontalScrollRowProps, HoverCard, HoverCardContent, HoverCardTrigger, InfinitePlane, type InfinitePlaneLabels, type InfinitePlanePattern, type InfinitePlaneProps, InlineInput, type InlineInputProps, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, KeyConcept, type KeyConceptProps, type KeyboardShortcut, KeyboardShortcutsHelp, type KeyboardShortcutsHelpProps, LANGUAGE_NAMES, Label, LangProvider, LearningObjectives, type LearningObjectivesProps, LeftRail, type LeftRailProps, type LessonDifficulty, type LessonStatus, LineChart, LiveCursor, type LiveCursorLabels, type LiveCursorProps, LiveFeed, type LiveFeedEvent, type LiveFeedProps, MDXContent, MarketTreemap, type MarketTreemapItem, type MarketTreemapProps, Marquee, type MarqueeProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MetricGauge, type MetricGaugeProps, type MetricGaugeThreshold, type MiniMapMarker, MiniMapPanel, type MiniMapPanelProps, type ModelInfo, ModelSelector, type ModelSelectorProps, MultiSelect, type MultiSelectOption, type MultiSelectProps, type NavItem, NavbarSaas, type NavbarSaasProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NumberInput, type NumberInputProps, NumberTicker, type NumberTickerProps, ObjectCard, type ObjectCardAction, type ObjectCardMetric, type ObjectCardProps, ObjectHandle, type ObjectHandleProps, OrderBook, type OrderBookLevel, type OrderBookProps, OverviewBoard, type OverviewBoardItem, type OverviewBoardProps, OverviewCard, type OverviewCardProps, type OverviewCardTone, Pagination, type PaginationProps, PasswordInput, type PasswordInputProps, PlanBadge, type PlanBadgeProps, type PlanBadgeState, type PlanBadgeTier, type PlatformConfig, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Prerequisites, type PrerequisitesProps, PresenceStack, type PresenceStackLabels, type PresenceStackProps, type PresenceStatus, PresenceSyncIndicator, type PresenceSyncIndicatorLabels, type PresenceSyncIndicatorProps, type PresenceSyncState, type PresenceUser, 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, Quiz, type QuizOption, type QuizProps, RadioGroup, RadioGroupItem, Rating, type RatingProps, ResizableHandle, ResizablePanel, ResizablePanelGroup, RightDock, type RightDockProps, RoleBadge, type RoleBadgeProps, type RoleBadgeRole, type RunPhaseState, RunTimeline, type RunTimelineLabels, type RunTimelineLane, type RunTimelinePhase, type RunTimelineProps, ScopeSelector, type ScopeSelectorNode, type ScopeSelectorProps, type ScopeSelectorSelection, ScrollArea, ScrollBar, SearchBar, SearchDialog, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, 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, SocialFAB, type SocialFabActionConfig, type SocialFabLabels, type SocialFabProps, SparklineGrid, type SparklineGridItem, type SparklineGridProps, Spinner, type SpinnerProps, StatCard, type StatCardProps, StatusBoard, type StatusBoardItem, type StatusBoardProps, type StatusBoardStatus, StatusIndicator, type StatusIndicatorProps, Step, StepByStep, type StepByStepProps, StepNavigation, type StepNavigationProps, type StepProps, Stepper, type StepperProps, type StepperStep, SubscriptionCard, type SubscriptionCardProps, type SubscriptionCardStatus, Summary, type SummaryProps, 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, TickerTape, type TickerTapeItem, type TickerTapeProps, 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, 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 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, buttonVariants, cn, cookieConsentVariants, dataListItemVariants, dataListVariants, dotVariants, getOtherLanguage, mdxComponents, navigationMenuTriggerStyle, segmentedControlItemVariants, segmentedControlVariants, severityBadgeVariants, statCardVariants, statusIndicatorVariants, toggleVariants, useDebounce, useFlowDiagram, useFormField, useHorizontalScroll, useMobile, useProgressTrackerContext, useSidebar, useSocialFab };
|
|
4388
|
+
export { AIChatInput, type AIChatInputProps, AIMessageBubble, type AIMessageBubbleProps, AISourceCitation, type AISourceCitationProps, AIStreamingText, type AIStreamingTextProps, AIToolCallDisplay, type AIToolCallDisplayProps, type AIToolCallStatus, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, ActivityHeatmap, type ActivityHeatmapItem, type ActivityHeatmapProps, ActivityLog, type ActivityLogItem, type ActivityLogProps, type ActivityLogTone, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AnchorPort, type AnchorPortProps, AnimatedText, type AnimatedTextProps, Annotation, type AnnotationProps, AreaChart, AspectRatio, Avatar, AvatarFallback, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, AvatarImage, Badge, type BadgeProps, BarChart, BeforeAfter, type BeforeAfterProps, BlogCard, BorderBeam, type BorderBeamProps, 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, 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, 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, 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, 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, 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, FlowControls, type FlowControlsProps, FlowDiagram, type FlowDiagramEdge, type FlowDiagramNode, type FlowDiagramProps, FlowErrorBoundary, FlowFullscreen, type FlowFullscreenProps, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, type FormProps, GlassPanel, type GlassPanelProps, Glossary, type GlossaryProps, GroupHull, type GroupHullProps, Highlight, type HighlightProps, HorizontalScrollRow, type HorizontalScrollRowProps, HoverCard, HoverCardContent, HoverCardTrigger, InfinitePlane, type InfinitePlaneLabels, type InfinitePlanePattern, type InfinitePlaneProps, InlineInput, type InlineInputProps, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, KeyConcept, type KeyConceptProps, type KeyboardShortcut, KeyboardShortcutsHelp, type KeyboardShortcutsHelpProps, LANGUAGE_NAMES, Label, LangProvider, LearningObjectives, type LearningObjectivesProps, LeftRail, type LeftRailProps, type LessonDifficulty, type LessonStatus, LineChart, LiveCursor, type LiveCursorLabels, type LiveCursorProps, LiveFeed, type LiveFeedEvent, type LiveFeedProps, MDXContent, MarketTreemap, type MarketTreemapItem, type MarketTreemapProps, Marquee, type MarqueeProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MetricGauge, type MetricGaugeProps, type MetricGaugeThreshold, type MiniMapMarker, MiniMapPanel, type MiniMapPanelProps, type ModelInfo, ModelSelector, type ModelSelectorProps, MultiSelect, type MultiSelectOption, type MultiSelectProps, type NavItem, NavbarSaas, type NavbarSaasProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NumberInput, type NumberInputProps, NumberTicker, type NumberTickerProps, ObjectCard, type ObjectCardAction, type ObjectCardMetric, type ObjectCardProps, ObjectHandle, type ObjectHandleProps, OrderBook, type OrderBookLevel, type OrderBookProps, OverviewBoard, type OverviewBoardItem, type OverviewBoardProps, OverviewCard, type OverviewCardProps, type OverviewCardTone, Pagination, type PaginationProps, PasswordInput, type PasswordInputProps, PlanBadge, type PlanBadgeProps, type PlanBadgeState, type PlanBadgeTier, type PlatformConfig, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Prerequisites, type PrerequisitesProps, PresenceStack, type PresenceStackLabels, type PresenceStackProps, type PresenceStatus, PresenceSyncIndicator, type PresenceSyncIndicatorLabels, type PresenceSyncIndicatorProps, type PresenceSyncState, type PresenceUser, 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, Quiz, type QuizOption, type QuizProps, RadioGroup, RadioGroupItem, Rating, type RatingProps, ResizableHandle, ResizablePanel, ResizablePanelGroup, RightDock, type RightDockProps, RoleBadge, type RoleBadgeProps, type RoleBadgeRole, ScopeSelector, type ScopeSelectorNode, type ScopeSelectorProps, type ScopeSelectorSelection, ScrollArea, ScrollBar, SearchBar, SearchDialog, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, 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, SocialFAB, type SocialFabActionConfig, type SocialFabLabels, type SocialFabProps, SparklineGrid, type SparklineGridItem, type SparklineGridProps, Spinner, type SpinnerProps, StatCard, type StatCardProps, StatusBoard, type StatusBoardItem, type StatusBoardProps, type StatusBoardStatus, StatusIndicator, type StatusIndicatorProps, Step, StepByStep, type StepByStepProps, StepNavigation, type StepNavigationProps, type StepProps, Stepper, type StepperProps, type StepperStep, SubscriptionCard, type SubscriptionCardProps, type SubscriptionCardStatus, Summary, type SummaryProps, 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, TickerTape, type TickerTapeItem, type TickerTapeProps, 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, 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 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, buttonVariants, cn, cookieConsentVariants, dataListItemVariants, dataListVariants, dotVariants, getOtherLanguage, mdxComponents, navigationMenuTriggerStyle, segmentedControlItemVariants, segmentedControlVariants, severityBadgeVariants, statCardVariants, statusIndicatorVariants, toggleVariants, useDebounce, useFlowDiagram, useFormField, useHorizontalScroll, useMobile, useProgressTrackerContext, useSidebar, useSocialFab };
|
package/package.json
CHANGED
|
@@ -1,221 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
-
import {
|
|
4
|
-
forwardRef
|
|
5
|
-
} from "react";
|
|
6
|
-
import { cn } from "../../lib/utils";
|
|
7
|
-
const STATE_FILL = {
|
|
8
|
-
complete: "bg-emerald-500/70",
|
|
9
|
-
failed: "bg-red-500/70",
|
|
10
|
-
queued: "bg-amber-500/70",
|
|
11
|
-
running: "bg-blue-500/70",
|
|
12
|
-
stopped: "bg-muted-foreground/40"
|
|
13
|
-
};
|
|
14
|
-
const STATE_LABEL = {
|
|
15
|
-
complete: "Complete",
|
|
16
|
-
failed: "Failed",
|
|
17
|
-
queued: "Queued",
|
|
18
|
-
running: "Running",
|
|
19
|
-
stopped: "Stopped"
|
|
20
|
-
};
|
|
21
|
-
const DEFAULT_LABELS = {
|
|
22
|
-
empty: "No phases",
|
|
23
|
-
region: "Run timeline"
|
|
24
|
-
};
|
|
25
|
-
const clamp = (v, min, max) => {
|
|
26
|
-
if (v < min) {
|
|
27
|
-
return min;
|
|
28
|
-
}
|
|
29
|
-
if (v > max) {
|
|
30
|
-
return max;
|
|
31
|
-
}
|
|
32
|
-
return v;
|
|
33
|
-
};
|
|
34
|
-
const Endpoints = (props) => {
|
|
35
|
-
const fmt = props.format;
|
|
36
|
-
const showCursor = typeof props.cursor === "number";
|
|
37
|
-
return /* @__PURE__ */ jsxs("div", { className: "flex items-baseline justify-between gap-2 text-[11px] text-muted-foreground", children: [
|
|
38
|
-
/* @__PURE__ */ jsx("span", { "data-run-timeline-start": true, children: fmt ? fmt(props.start) : props.start }),
|
|
39
|
-
showCursor ? /* @__PURE__ */ jsx(
|
|
40
|
-
"span",
|
|
41
|
-
{
|
|
42
|
-
className: "font-semibold text-foreground",
|
|
43
|
-
"data-run-timeline-cursor-label": true,
|
|
44
|
-
children: fmt ? fmt(props.cursor ?? 0) : props.cursor
|
|
45
|
-
}
|
|
46
|
-
) : null,
|
|
47
|
-
/* @__PURE__ */ jsx("span", { "data-run-timeline-end": true, children: fmt ? fmt(props.end) : props.end })
|
|
48
|
-
] });
|
|
49
|
-
};
|
|
50
|
-
const PhaseBar = (props) => {
|
|
51
|
-
const { laneIndex, laneTotal, phase, span, start } = props;
|
|
52
|
-
const left = clamp((phase.start - start) / span, 0, 1) * 100;
|
|
53
|
-
const right = clamp((phase.end - start) / span, 0, 1) * 100;
|
|
54
|
-
const width = Math.max(right - left, 0.5);
|
|
55
|
-
const top = laneIndex / laneTotal * 100;
|
|
56
|
-
const height = 100 / laneTotal;
|
|
57
|
-
const state = phase.state ?? "running";
|
|
58
|
-
const sharedStyle = {
|
|
59
|
-
height: `${height}%`,
|
|
60
|
-
left: `${left}%`,
|
|
61
|
-
top: `${top}%`,
|
|
62
|
-
width: `${width}%`
|
|
63
|
-
};
|
|
64
|
-
const ariaLabel = `${STATE_LABEL[state]} ${phase.start} \u2192 ${phase.end}`;
|
|
65
|
-
if (phase.onActivate) {
|
|
66
|
-
const handleClick = () => {
|
|
67
|
-
phase.onActivate?.();
|
|
68
|
-
};
|
|
69
|
-
return /* @__PURE__ */ jsx(
|
|
70
|
-
"button",
|
|
71
|
-
{
|
|
72
|
-
"aria-label": ariaLabel,
|
|
73
|
-
className: cn(
|
|
74
|
-
"absolute flex items-center justify-start overflow-hidden truncate rounded-sm border border-border/50 px-1 text-left text-[10px] text-foreground transition-opacity hover:opacity-90 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring",
|
|
75
|
-
STATE_FILL[state]
|
|
76
|
-
),
|
|
77
|
-
"data-run-phase": phase.id,
|
|
78
|
-
"data-run-phase-state": state,
|
|
79
|
-
onClick: handleClick,
|
|
80
|
-
style: sharedStyle,
|
|
81
|
-
type: "button",
|
|
82
|
-
children: phase.label
|
|
83
|
-
}
|
|
84
|
-
);
|
|
85
|
-
}
|
|
86
|
-
return /* @__PURE__ */ jsx(
|
|
87
|
-
"span",
|
|
88
|
-
{
|
|
89
|
-
"aria-label": ariaLabel,
|
|
90
|
-
className: cn(
|
|
91
|
-
"absolute flex items-center justify-start overflow-hidden truncate rounded-sm border border-border/50 px-1 text-[10px] text-foreground",
|
|
92
|
-
STATE_FILL[state]
|
|
93
|
-
),
|
|
94
|
-
"data-run-phase": phase.id,
|
|
95
|
-
"data-run-phase-state": state,
|
|
96
|
-
role: "img",
|
|
97
|
-
style: sharedStyle,
|
|
98
|
-
children: phase.label
|
|
99
|
-
}
|
|
100
|
-
);
|
|
101
|
-
};
|
|
102
|
-
const TrackBody = (props) => {
|
|
103
|
-
const { cursor, end, lanes, phases, start } = props;
|
|
104
|
-
const span = end - start;
|
|
105
|
-
const cursorRatio = typeof cursor === "number" ? clamp((cursor - start) / span, 0, 1) : null;
|
|
106
|
-
return /* @__PURE__ */ jsxs("div", { className: "flex items-stretch", children: [
|
|
107
|
-
/* @__PURE__ */ jsx("div", { className: "flex w-24 flex-col gap-px text-[10px] uppercase tracking-wide text-muted-foreground", children: lanes.map((lane) => /* @__PURE__ */ jsx(
|
|
108
|
-
"div",
|
|
109
|
-
{
|
|
110
|
-
className: "flex h-7 items-center px-2",
|
|
111
|
-
"data-run-timeline-lane": lane.id,
|
|
112
|
-
children: lane.label
|
|
113
|
-
},
|
|
114
|
-
lane.id
|
|
115
|
-
)) }),
|
|
116
|
-
/* @__PURE__ */ jsxs(
|
|
117
|
-
"div",
|
|
118
|
-
{
|
|
119
|
-
className: "relative flex-1 overflow-hidden rounded-md border border-border bg-muted/20",
|
|
120
|
-
"data-run-timeline-track": true,
|
|
121
|
-
style: { height: `${lanes.length * 28}px` },
|
|
122
|
-
children: [
|
|
123
|
-
phases.map((phase) => {
|
|
124
|
-
const index = lanes.findIndex(
|
|
125
|
-
(lane) => lane.id === (phase.laneId ?? "default")
|
|
126
|
-
);
|
|
127
|
-
if (index === -1) {
|
|
128
|
-
return null;
|
|
129
|
-
}
|
|
130
|
-
return /* @__PURE__ */ jsx(
|
|
131
|
-
PhaseBar,
|
|
132
|
-
{
|
|
133
|
-
laneIndex: index,
|
|
134
|
-
laneTotal: lanes.length,
|
|
135
|
-
phase,
|
|
136
|
-
span,
|
|
137
|
-
start
|
|
138
|
-
},
|
|
139
|
-
phase.id
|
|
140
|
-
);
|
|
141
|
-
}),
|
|
142
|
-
cursorRatio === null ? null : /* @__PURE__ */ jsx(
|
|
143
|
-
"span",
|
|
144
|
-
{
|
|
145
|
-
"aria-hidden": "true",
|
|
146
|
-
className: "absolute top-0 bottom-0 w-px bg-foreground",
|
|
147
|
-
"data-run-timeline-cursor": true,
|
|
148
|
-
style: { left: `${cursorRatio * 100}%` }
|
|
149
|
-
}
|
|
150
|
-
)
|
|
151
|
-
]
|
|
152
|
-
}
|
|
153
|
-
)
|
|
154
|
-
] });
|
|
155
|
-
};
|
|
156
|
-
const resolveLanes = (explicit) => {
|
|
157
|
-
if (explicit && explicit.length > 0) {
|
|
158
|
-
return explicit;
|
|
159
|
-
}
|
|
160
|
-
return [{ id: "default", label: "Run" }];
|
|
161
|
-
};
|
|
162
|
-
const RunTimeline = forwardRef(
|
|
163
|
-
(props, ref) => {
|
|
164
|
-
const {
|
|
165
|
-
className,
|
|
166
|
-
cursor,
|
|
167
|
-
end,
|
|
168
|
-
formatValue,
|
|
169
|
-
labels,
|
|
170
|
-
lanes,
|
|
171
|
-
phases,
|
|
172
|
-
start,
|
|
173
|
-
...rest
|
|
174
|
-
} = props;
|
|
175
|
-
const resolvedLabels = { ...DEFAULT_LABELS, ...labels };
|
|
176
|
-
const safeEnd = end <= start ? start + 1 : end;
|
|
177
|
-
const resolvedLanes = resolveLanes(lanes);
|
|
178
|
-
return /* @__PURE__ */ jsxs(
|
|
179
|
-
"section",
|
|
180
|
-
{
|
|
181
|
-
"aria-label": resolvedLabels.region,
|
|
182
|
-
className: cn("flex w-full flex-col gap-2", className),
|
|
183
|
-
"data-run-timeline": true,
|
|
184
|
-
ref,
|
|
185
|
-
...rest,
|
|
186
|
-
children: [
|
|
187
|
-
/* @__PURE__ */ jsx(
|
|
188
|
-
Endpoints,
|
|
189
|
-
{
|
|
190
|
-
cursor,
|
|
191
|
-
end: safeEnd,
|
|
192
|
-
format: formatValue,
|
|
193
|
-
start
|
|
194
|
-
}
|
|
195
|
-
),
|
|
196
|
-
phases.length === 0 ? /* @__PURE__ */ jsx(
|
|
197
|
-
"p",
|
|
198
|
-
{
|
|
199
|
-
className: "rounded-md border border-border bg-muted/20 px-2 py-3 text-center text-[11px] text-muted-foreground",
|
|
200
|
-
"data-run-timeline-state": "empty",
|
|
201
|
-
children: resolvedLabels.empty
|
|
202
|
-
}
|
|
203
|
-
) : /* @__PURE__ */ jsx(
|
|
204
|
-
TrackBody,
|
|
205
|
-
{
|
|
206
|
-
cursor,
|
|
207
|
-
end: safeEnd,
|
|
208
|
-
lanes: resolvedLanes,
|
|
209
|
-
phases,
|
|
210
|
-
start
|
|
211
|
-
}
|
|
212
|
-
)
|
|
213
|
-
]
|
|
214
|
-
}
|
|
215
|
-
);
|
|
216
|
-
}
|
|
217
|
-
);
|
|
218
|
-
RunTimeline.displayName = "RunTimeline";
|
|
219
|
-
export {
|
|
220
|
-
RunTimeline
|
|
221
|
-
};
|