@vllnt/ui 0.2.0 → 0.2.1-canary.4abeac1
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/CHANGELOG.md +12 -1
- package/README.md +27 -12
- package/dist/components/activity-log/activity-log.js +1 -0
- package/dist/components/anchor-port/anchor-port.js +51 -0
- package/dist/components/anchor-port/index.js +4 -0
- package/dist/components/animated-text/animated-text.js +1 -0
- package/dist/components/bottom-bar/bottom-bar.js +25 -0
- package/dist/components/bottom-bar/index.js +4 -0
- package/dist/components/canvas-shell/canvas-foundation-demo.js +183 -0
- package/dist/components/canvas-shell/canvas-shell-route-config.js +0 -0
- package/dist/components/canvas-shell/canvas-shell.js +261 -0
- package/dist/components/canvas-shell/index.js +4 -0
- package/dist/components/canvas-view/canvas-view.js +461 -0
- package/dist/components/canvas-view/index.js +6 -0
- package/dist/components/chart/area-chart.js +1 -0
- package/dist/components/chart/line-chart.js +1 -0
- package/dist/components/chat-dock-section/chat-dock-section.js +56 -0
- package/dist/components/chat-dock-section/index.js +6 -0
- package/dist/components/checklist/checklist.js +7 -0
- package/dist/components/checklist/index.js +3 -1
- package/dist/components/connector-edge/connector-edge.js +66 -0
- package/dist/components/connector-edge/index.js +6 -0
- package/dist/components/conversation-thread/conversation-thread.js +348 -0
- package/dist/components/conversation-thread/index.js +20 -0
- package/dist/components/curriculum/curriculum.js +349 -0
- package/dist/components/curriculum/index.js +10 -0
- package/dist/components/data-list/data-list.js +1 -0
- package/dist/components/edge-label/edge-label.js +26 -0
- package/dist/components/edge-label/index.js +4 -0
- package/dist/components/form/form.js +432 -0
- package/dist/components/form/index.js +20 -0
- package/dist/components/glass-panel/glass-panel.js +21 -0
- package/dist/components/glass-panel/index.js +4 -0
- package/dist/components/group-hull/group-hull.js +29 -0
- package/dist/components/group-hull/index.js +4 -0
- package/dist/components/index.js +136 -0
- package/dist/components/left-rail/index.js +4 -0
- package/dist/components/left-rail/left-rail.js +25 -0
- package/dist/components/mini-map-panel/index.js +6 -0
- package/dist/components/mini-map-panel/mini-map-panel.js +74 -0
- package/dist/components/multi-select/index.js +6 -0
- package/dist/components/multi-select/multi-select.js +258 -0
- package/dist/components/object-card/index.js +6 -0
- package/dist/components/object-card/object-card.js +126 -0
- package/dist/components/object-handle/index.js +4 -0
- package/dist/components/object-handle/object-handle.js +38 -0
- package/dist/components/overview-board/index.js +8 -0
- package/dist/components/overview-board/overview-board.js +127 -0
- package/dist/components/progress-tracker/index.js +20 -0
- package/dist/components/progress-tracker/progress-tracker.js +527 -0
- package/dist/components/right-dock/index.js +4 -0
- package/dist/components/right-dock/right-dock.js +28 -0
- package/dist/components/segmented-control/index.js +12 -0
- package/dist/components/segmented-control/segmented-control.js +61 -0
- package/dist/components/spinner/unicode-spinner.js +1 -0
- package/dist/components/tags-input/index.js +4 -0
- package/dist/components/tags-input/tags-input.js +178 -0
- package/dist/components/top-bar/index.js +4 -0
- package/dist/components/top-bar/top-bar.js +31 -0
- package/dist/components/usage-breakdown/usage-breakdown.js +1 -0
- package/dist/components/workspace-switcher/index.js +6 -0
- package/dist/components/workspace-switcher/workspace-switcher.js +61 -0
- package/dist/components/zoom-hud/index.js +4 -0
- package/dist/components/zoom-hud/zoom-hud.js +61 -0
- package/dist/index.d.ts +686 -5
- package/package.json +7 -3
package/dist/index.d.ts
CHANGED
|
@@ -10,13 +10,17 @@ import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
|
10
10
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
11
11
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
12
12
|
import * as SwitchPrimitives from '@radix-ui/react-switch';
|
|
13
|
+
import * as _radix_ui_react_slot from '@radix-ui/react-slot';
|
|
14
|
+
import * as react_hook_form from 'react-hook-form';
|
|
15
|
+
import { FieldValues, UseFormReturn, SubmitErrorHandler, DefaultValues, Resolver, FieldPath, ControllerProps } from 'react-hook-form';
|
|
16
|
+
import { zodResolver } from '@hookform/resolvers/zod';
|
|
17
|
+
import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
|
|
13
18
|
import { ToasterProps } from 'sonner';
|
|
14
19
|
export { toast } from 'sonner';
|
|
15
20
|
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
16
21
|
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
|
17
22
|
import * as SliderPrimitive from '@radix-ui/react-slider';
|
|
18
23
|
import * as TogglePrimitive from '@radix-ui/react-toggle';
|
|
19
|
-
import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
|
|
20
24
|
import * as input_otp from 'input-otp';
|
|
21
25
|
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
22
26
|
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
@@ -337,6 +341,130 @@ declare const PasswordInput: react.ForwardRefExoticComponent<Omit<Omit<react.Det
|
|
|
337
341
|
|
|
338
342
|
declare const Switch: react.ForwardRefExoticComponent<Omit<SwitchPrimitives.SwitchProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
339
343
|
|
|
344
|
+
type FormInstance<TFieldValues extends FieldValues> = UseFormReturn<TFieldValues, unknown, TFieldValues>;
|
|
345
|
+
type FormRenderChildren<TFieldValues extends FieldValues> = ((form: FormInstance<TFieldValues>) => react.ReactNode) | react.ReactNode;
|
|
346
|
+
type FormSubmitHandler<TFieldValues extends FieldValues> = (values: TFieldValues, form: FormInstance<TFieldValues>) => Promise<void> | void;
|
|
347
|
+
type FormErrorHandler<TFieldValues extends FieldValues> = (errors: Parameters<SubmitErrorHandler<TFieldValues>>[0], form: FormInstance<TFieldValues>) => Promise<void> | void;
|
|
348
|
+
type BaseFormProps<TFieldValues extends FieldValues> = Omit<react.ComponentPropsWithoutRef<"form">, "children"> & {
|
|
349
|
+
children?: FormRenderChildren<TFieldValues>;
|
|
350
|
+
controlId?: string;
|
|
351
|
+
descriptionId?: string;
|
|
352
|
+
disabled?: boolean;
|
|
353
|
+
invalid?: boolean;
|
|
354
|
+
messageId?: string;
|
|
355
|
+
onError?: FormErrorHandler<TFieldValues>;
|
|
356
|
+
onValidSubmit?: FormSubmitHandler<TFieldValues>;
|
|
357
|
+
required?: boolean;
|
|
358
|
+
};
|
|
359
|
+
type ManagedFormProps<TFieldValues extends FieldValues> = {
|
|
360
|
+
defaultValues?: DefaultValues<TFieldValues>;
|
|
361
|
+
form?: undefined;
|
|
362
|
+
resolver?: Resolver<TFieldValues>;
|
|
363
|
+
schema?: Parameters<typeof zodResolver>[0];
|
|
364
|
+
values?: TFieldValues;
|
|
365
|
+
};
|
|
366
|
+
type ProvidedFormProps<TFieldValues extends FieldValues> = {
|
|
367
|
+
defaultValues?: never;
|
|
368
|
+
form: FormInstance<TFieldValues>;
|
|
369
|
+
resolver?: never;
|
|
370
|
+
schema?: never;
|
|
371
|
+
values?: never;
|
|
372
|
+
};
|
|
373
|
+
type FormProps<TFieldValues extends FieldValues = FieldValues> = BaseFormProps<TFieldValues> & (ManagedFormProps<TFieldValues> | ProvidedFormProps<TFieldValues>);
|
|
374
|
+
declare const Form: <TFieldValues extends FieldValues = FieldValues>(props: FormProps<TFieldValues> & react.RefAttributes<HTMLFormElement>) => react.ReactElement;
|
|
375
|
+
declare function FormField<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>): react_jsx_runtime.JSX.Element;
|
|
376
|
+
declare function useFormField(): {
|
|
377
|
+
disabled: boolean;
|
|
378
|
+
error: react_hook_form.FieldError | undefined;
|
|
379
|
+
formDescriptionId: string;
|
|
380
|
+
formItemId: string;
|
|
381
|
+
formMessageId: string;
|
|
382
|
+
hasDescription: boolean;
|
|
383
|
+
hasMessage: boolean;
|
|
384
|
+
hasMessageSlot: boolean;
|
|
385
|
+
id: string;
|
|
386
|
+
invalid: boolean;
|
|
387
|
+
isDirty: boolean;
|
|
388
|
+
isTouched: boolean;
|
|
389
|
+
isValidating: boolean;
|
|
390
|
+
name: string;
|
|
391
|
+
required: boolean;
|
|
392
|
+
};
|
|
393
|
+
declare const FormItem: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
394
|
+
disabled?: boolean;
|
|
395
|
+
invalid?: boolean;
|
|
396
|
+
required?: boolean;
|
|
397
|
+
} & react.RefAttributes<HTMLDivElement>>;
|
|
398
|
+
declare const FormLabel: react.ForwardRefExoticComponent<Omit<Omit<LabelPrimitive.LabelProps & react.RefAttributes<HTMLLabelElement>, "ref"> & class_variance_authority.VariantProps<(props?: class_variance_authority_types.ClassProp | undefined) => string> & react.RefAttributes<HTMLLabelElement>, "ref"> & react.RefAttributes<HTMLLabelElement>>;
|
|
399
|
+
declare const FormControl: react.ForwardRefExoticComponent<Omit<_radix_ui_react_slot.SlotProps & react.RefAttributes<HTMLElement>, "ref"> & {
|
|
400
|
+
disabled?: boolean;
|
|
401
|
+
required?: boolean;
|
|
402
|
+
} & react.RefAttributes<HTMLElement>>;
|
|
403
|
+
declare const FormDescription: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref"> & react.RefAttributes<HTMLParagraphElement>>;
|
|
404
|
+
declare const FormMessage: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref"> & react.RefAttributes<HTMLParagraphElement>>;
|
|
405
|
+
|
|
406
|
+
type MultiSelectOption = {
|
|
407
|
+
disabled?: boolean;
|
|
408
|
+
label: string;
|
|
409
|
+
value: string;
|
|
410
|
+
};
|
|
411
|
+
type MultiSelectProps = Omit<react.ButtonHTMLAttributes<HTMLButtonElement>, "defaultValue" | "onChange" | "value"> & {
|
|
412
|
+
defaultValue?: string[];
|
|
413
|
+
emptyText?: string;
|
|
414
|
+
onOpenChange?: (open: boolean) => void;
|
|
415
|
+
onValueChange?: (value: string[]) => void;
|
|
416
|
+
options: MultiSelectOption[];
|
|
417
|
+
placeholder?: string;
|
|
418
|
+
searchable?: boolean;
|
|
419
|
+
searchPlaceholder?: string;
|
|
420
|
+
value?: string[];
|
|
421
|
+
};
|
|
422
|
+
declare const MultiSelect: react.ForwardRefExoticComponent<Omit<react.ButtonHTMLAttributes<HTMLButtonElement>, "defaultValue" | "onChange" | "value"> & {
|
|
423
|
+
defaultValue?: string[];
|
|
424
|
+
emptyText?: string;
|
|
425
|
+
onOpenChange?: (open: boolean) => void;
|
|
426
|
+
onValueChange?: (value: string[]) => void;
|
|
427
|
+
options: MultiSelectOption[];
|
|
428
|
+
placeholder?: string;
|
|
429
|
+
searchable?: boolean;
|
|
430
|
+
searchPlaceholder?: string;
|
|
431
|
+
value?: string[];
|
|
432
|
+
} & react.RefAttributes<HTMLButtonElement>>;
|
|
433
|
+
|
|
434
|
+
type TagsInputProps = Omit<react.ComponentPropsWithoutRef<"input">, "defaultValue" | "onChange" | "value"> & {
|
|
435
|
+
defaultValue?: string[];
|
|
436
|
+
onValueChange?: (value: string[]) => void;
|
|
437
|
+
value?: string[];
|
|
438
|
+
};
|
|
439
|
+
declare const TagsInput: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "defaultValue" | "onChange" | "value"> & {
|
|
440
|
+
defaultValue?: string[];
|
|
441
|
+
onValueChange?: (value: string[]) => void;
|
|
442
|
+
value?: string[];
|
|
443
|
+
} & react.RefAttributes<HTMLInputElement>>;
|
|
444
|
+
|
|
445
|
+
declare const segmentedControlVariants: (props?: ({
|
|
446
|
+
size?: "default" | "lg" | "sm" | null | undefined;
|
|
447
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
448
|
+
declare const segmentedControlItemVariants: (props?: ({
|
|
449
|
+
size?: "default" | "lg" | "sm" | null | undefined;
|
|
450
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
451
|
+
type SegmentedControlProps = Omit<react.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Root>, "defaultValue" | "onValueChange" | "type" | "value"> & VariantProps<typeof segmentedControlVariants> & {
|
|
452
|
+
defaultValue?: string;
|
|
453
|
+
onValueChange?: (value: string) => void;
|
|
454
|
+
value?: string;
|
|
455
|
+
};
|
|
456
|
+
type SegmentedControlItemProps = react.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof segmentedControlItemVariants>;
|
|
457
|
+
declare const SegmentedControl: react.ForwardRefExoticComponent<Omit<Omit<ToggleGroupPrimitive.ToggleGroupSingleProps & react.RefAttributes<HTMLDivElement>, "ref"> | Omit<ToggleGroupPrimitive.ToggleGroupMultipleProps & react.RefAttributes<HTMLDivElement>, "ref">, "defaultValue" | "type" | "value" | "onValueChange"> & VariantProps<(props?: ({
|
|
458
|
+
size?: "default" | "lg" | "sm" | null | undefined;
|
|
459
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string> & {
|
|
460
|
+
defaultValue?: string;
|
|
461
|
+
onValueChange?: (value: string) => void;
|
|
462
|
+
value?: string;
|
|
463
|
+
} & react.RefAttributes<HTMLDivElement>>;
|
|
464
|
+
declare const SegmentedControlItem: react.ForwardRefExoticComponent<Omit<ToggleGroupPrimitive.ToggleGroupItemProps & react.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
|
|
465
|
+
size?: "default" | "lg" | "sm" | null | undefined;
|
|
466
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string> & react.RefAttributes<HTMLButtonElement>>;
|
|
467
|
+
|
|
340
468
|
type ToastProps = {
|
|
341
469
|
variant?: "default" | "destructive";
|
|
342
470
|
} & react.HTMLAttributes<HTMLDivElement>;
|
|
@@ -1265,6 +1393,192 @@ type MDXContentProps = {
|
|
|
1265
1393
|
};
|
|
1266
1394
|
declare function MDXContent({ components, content, enableMDX, }: MDXContentProps): Promise<react_jsx_runtime.JSX.Element>;
|
|
1267
1395
|
|
|
1396
|
+
type CanvasShellInsets = {
|
|
1397
|
+
bottom?: number | string;
|
|
1398
|
+
left?: number | string;
|
|
1399
|
+
right?: number | string;
|
|
1400
|
+
top?: number | string;
|
|
1401
|
+
};
|
|
1402
|
+
type CanvasShellRouteConfig = {
|
|
1403
|
+
bottomBar?: ReactNode;
|
|
1404
|
+
center: ReactNode;
|
|
1405
|
+
contentPadding?: CanvasShellInsets;
|
|
1406
|
+
leftBar?: ReactNode;
|
|
1407
|
+
rightBar?: ReactNode;
|
|
1408
|
+
topBar?: ReactNode;
|
|
1409
|
+
};
|
|
1410
|
+
|
|
1411
|
+
type CanvasShellProps = React.ComponentPropsWithoutRef<"section"> & {
|
|
1412
|
+
bottomBar?: ReactNode;
|
|
1413
|
+
bottomSlot?: ReactNode;
|
|
1414
|
+
children?: ReactNode;
|
|
1415
|
+
chromeInset?: number | string;
|
|
1416
|
+
contentPadding?: CanvasShellInsets;
|
|
1417
|
+
leftBar?: ReactNode;
|
|
1418
|
+
leftRail?: ReactNode;
|
|
1419
|
+
rightBar?: ReactNode;
|
|
1420
|
+
rightDock?: ReactNode;
|
|
1421
|
+
topBar?: ReactNode;
|
|
1422
|
+
};
|
|
1423
|
+
declare const CanvasShell: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
|
|
1424
|
+
bottomBar?: ReactNode;
|
|
1425
|
+
bottomSlot?: ReactNode;
|
|
1426
|
+
children?: ReactNode;
|
|
1427
|
+
chromeInset?: number | string;
|
|
1428
|
+
contentPadding?: CanvasShellInsets;
|
|
1429
|
+
leftBar?: ReactNode;
|
|
1430
|
+
leftRail?: ReactNode;
|
|
1431
|
+
rightBar?: ReactNode;
|
|
1432
|
+
rightDock?: ReactNode;
|
|
1433
|
+
topBar?: ReactNode;
|
|
1434
|
+
} & react.RefAttributes<HTMLElement>>;
|
|
1435
|
+
|
|
1436
|
+
type CanvasViewport = {
|
|
1437
|
+
x: number;
|
|
1438
|
+
y: number;
|
|
1439
|
+
zoom: number;
|
|
1440
|
+
};
|
|
1441
|
+
type CanvasViewHandle = {
|
|
1442
|
+
resetViewport: () => void;
|
|
1443
|
+
setViewport: (viewport: CanvasViewport) => void;
|
|
1444
|
+
};
|
|
1445
|
+
type CanvasViewProps = Omit<React.ComponentPropsWithoutRef<"div">, "onScroll"> & {
|
|
1446
|
+
defaultViewport?: CanvasViewport;
|
|
1447
|
+
maxZoom?: number;
|
|
1448
|
+
minZoom?: number;
|
|
1449
|
+
onViewportChange?: (viewport: CanvasViewport) => void;
|
|
1450
|
+
overlay?: React.ReactNode;
|
|
1451
|
+
zoomStep?: number;
|
|
1452
|
+
};
|
|
1453
|
+
declare const CanvasView: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "onScroll"> & {
|
|
1454
|
+
defaultViewport?: CanvasViewport;
|
|
1455
|
+
maxZoom?: number;
|
|
1456
|
+
minZoom?: number;
|
|
1457
|
+
onViewportChange?: (viewport: CanvasViewport) => void;
|
|
1458
|
+
overlay?: React.ReactNode;
|
|
1459
|
+
zoomStep?: number;
|
|
1460
|
+
} & react.RefAttributes<CanvasViewHandle>>;
|
|
1461
|
+
|
|
1462
|
+
type BottomBarProps = React.ComponentPropsWithoutRef<"div"> & {
|
|
1463
|
+
center?: ReactNode;
|
|
1464
|
+
leading?: ReactNode;
|
|
1465
|
+
trailing?: ReactNode;
|
|
1466
|
+
};
|
|
1467
|
+
declare const BottomBar: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
1468
|
+
center?: ReactNode;
|
|
1469
|
+
leading?: ReactNode;
|
|
1470
|
+
trailing?: ReactNode;
|
|
1471
|
+
} & react.RefAttributes<HTMLDivElement>>;
|
|
1472
|
+
|
|
1473
|
+
type ChatDockMessage = {
|
|
1474
|
+
body: ReactNode;
|
|
1475
|
+
id: string;
|
|
1476
|
+
speaker: ReactNode;
|
|
1477
|
+
};
|
|
1478
|
+
type ChatDockSectionProps = React.ComponentPropsWithoutRef<"section"> & {
|
|
1479
|
+
composerPlaceholder?: string;
|
|
1480
|
+
contextLabel?: ReactNode;
|
|
1481
|
+
messages: ChatDockMessage[];
|
|
1482
|
+
title?: ReactNode;
|
|
1483
|
+
};
|
|
1484
|
+
declare const ChatDockSection: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
|
|
1485
|
+
composerPlaceholder?: string;
|
|
1486
|
+
contextLabel?: ReactNode;
|
|
1487
|
+
messages: ChatDockMessage[];
|
|
1488
|
+
title?: ReactNode;
|
|
1489
|
+
} & react.RefAttributes<HTMLElement>>;
|
|
1490
|
+
|
|
1491
|
+
type GlassPanelProps = React.ComponentPropsWithoutRef<"div">;
|
|
1492
|
+
declare const GlassPanel: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
1493
|
+
|
|
1494
|
+
type LeftRailProps = React.ComponentPropsWithoutRef<"aside"> & {
|
|
1495
|
+
footer?: ReactNode;
|
|
1496
|
+
title?: ReactNode;
|
|
1497
|
+
};
|
|
1498
|
+
declare const LeftRail: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
|
|
1499
|
+
footer?: ReactNode;
|
|
1500
|
+
title?: ReactNode;
|
|
1501
|
+
} & react.RefAttributes<HTMLElement>>;
|
|
1502
|
+
|
|
1503
|
+
type MiniMapMarker = {
|
|
1504
|
+
id: string;
|
|
1505
|
+
label?: string;
|
|
1506
|
+
x: number;
|
|
1507
|
+
y: number;
|
|
1508
|
+
};
|
|
1509
|
+
type MiniMapPanelProps = React.ComponentPropsWithoutRef<"div"> & {
|
|
1510
|
+
markers?: MiniMapMarker[];
|
|
1511
|
+
title?: string;
|
|
1512
|
+
viewport: {
|
|
1513
|
+
height: number;
|
|
1514
|
+
width: number;
|
|
1515
|
+
x: number;
|
|
1516
|
+
y: number;
|
|
1517
|
+
zoom: number;
|
|
1518
|
+
};
|
|
1519
|
+
world: {
|
|
1520
|
+
height: number;
|
|
1521
|
+
width: number;
|
|
1522
|
+
};
|
|
1523
|
+
};
|
|
1524
|
+
declare const MiniMapPanel: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
1525
|
+
markers?: MiniMapMarker[];
|
|
1526
|
+
title?: string;
|
|
1527
|
+
viewport: {
|
|
1528
|
+
height: number;
|
|
1529
|
+
width: number;
|
|
1530
|
+
x: number;
|
|
1531
|
+
y: number;
|
|
1532
|
+
zoom: number;
|
|
1533
|
+
};
|
|
1534
|
+
world: {
|
|
1535
|
+
height: number;
|
|
1536
|
+
width: number;
|
|
1537
|
+
};
|
|
1538
|
+
} & react.RefAttributes<HTMLDivElement>>;
|
|
1539
|
+
|
|
1540
|
+
type OverviewCardTone = "danger" | "default" | "warning";
|
|
1541
|
+
type OverviewCardProps = React.ComponentPropsWithoutRef<"section"> & {
|
|
1542
|
+
ctaLabel?: ReactNode;
|
|
1543
|
+
description: ReactNode;
|
|
1544
|
+
handleCtaClick?: () => void;
|
|
1545
|
+
heading: ReactNode;
|
|
1546
|
+
icon?: ReactNode;
|
|
1547
|
+
metric: ReactNode;
|
|
1548
|
+
tone?: OverviewCardTone;
|
|
1549
|
+
};
|
|
1550
|
+
declare const OverviewCard: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
|
|
1551
|
+
ctaLabel?: ReactNode;
|
|
1552
|
+
description: ReactNode;
|
|
1553
|
+
handleCtaClick?: () => void;
|
|
1554
|
+
heading: ReactNode;
|
|
1555
|
+
icon?: ReactNode;
|
|
1556
|
+
metric: ReactNode;
|
|
1557
|
+
tone?: OverviewCardTone;
|
|
1558
|
+
} & react.RefAttributes<HTMLElement>>;
|
|
1559
|
+
type OverviewBoardItem = {
|
|
1560
|
+
ctaLabel?: ReactNode;
|
|
1561
|
+
description: ReactNode;
|
|
1562
|
+
handleCtaClick?: () => void;
|
|
1563
|
+
heading: ReactNode;
|
|
1564
|
+
icon?: ReactNode;
|
|
1565
|
+
id: string;
|
|
1566
|
+
metric: ReactNode;
|
|
1567
|
+
tone?: OverviewCardTone;
|
|
1568
|
+
};
|
|
1569
|
+
type OverviewBoardProps = React.ComponentPropsWithoutRef<"section"> & {
|
|
1570
|
+
eyebrow?: ReactNode;
|
|
1571
|
+
heading: ReactNode;
|
|
1572
|
+
items: OverviewBoardItem[];
|
|
1573
|
+
subtitle?: ReactNode;
|
|
1574
|
+
};
|
|
1575
|
+
declare const OverviewBoard: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
|
|
1576
|
+
eyebrow?: ReactNode;
|
|
1577
|
+
heading: ReactNode;
|
|
1578
|
+
items: OverviewBoardItem[];
|
|
1579
|
+
subtitle?: ReactNode;
|
|
1580
|
+
} & react.RefAttributes<HTMLElement>>;
|
|
1581
|
+
|
|
1268
1582
|
type NavItem = {
|
|
1269
1583
|
href: string;
|
|
1270
1584
|
title: string;
|
|
@@ -1279,6 +1593,17 @@ declare function NavbarSaas({ brand, navItems, rightSlot, showMobileMenu, }: Nav
|
|
|
1279
1593
|
|
|
1280
1594
|
declare function useMobile(): boolean;
|
|
1281
1595
|
|
|
1596
|
+
type RightDockProps = React.ComponentPropsWithoutRef<"aside"> & {
|
|
1597
|
+
footer?: ReactNode;
|
|
1598
|
+
header?: ReactNode;
|
|
1599
|
+
title?: ReactNode;
|
|
1600
|
+
};
|
|
1601
|
+
declare const RightDock: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
|
|
1602
|
+
footer?: ReactNode;
|
|
1603
|
+
header?: ReactNode;
|
|
1604
|
+
title?: ReactNode;
|
|
1605
|
+
} & react.RefAttributes<HTMLElement>>;
|
|
1606
|
+
|
|
1282
1607
|
type SidebarItem = {
|
|
1283
1608
|
href: string;
|
|
1284
1609
|
title: string;
|
|
@@ -1311,6 +1636,32 @@ type TableOfContentsProps = {
|
|
|
1311
1636
|
};
|
|
1312
1637
|
declare function TableOfContents({ sections }: TableOfContentsProps): react_jsx_runtime.JSX.Element | null;
|
|
1313
1638
|
|
|
1639
|
+
type TopBarProps = React.ComponentPropsWithoutRef<"header"> & {
|
|
1640
|
+
leading?: ReactNode;
|
|
1641
|
+
subtitle?: ReactNode;
|
|
1642
|
+
title?: ReactNode;
|
|
1643
|
+
trailing?: ReactNode;
|
|
1644
|
+
};
|
|
1645
|
+
declare const TopBar: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
|
|
1646
|
+
leading?: ReactNode;
|
|
1647
|
+
subtitle?: ReactNode;
|
|
1648
|
+
title?: ReactNode;
|
|
1649
|
+
trailing?: ReactNode;
|
|
1650
|
+
} & react.RefAttributes<HTMLElement>>;
|
|
1651
|
+
|
|
1652
|
+
type ZoomHUDProps = React.ComponentPropsWithoutRef<"div"> & {
|
|
1653
|
+
onReset?: () => void;
|
|
1654
|
+
onZoomIn?: () => void;
|
|
1655
|
+
onZoomOut?: () => void;
|
|
1656
|
+
zoom: number;
|
|
1657
|
+
};
|
|
1658
|
+
declare const ZoomHUD: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
1659
|
+
onReset?: () => void;
|
|
1660
|
+
onZoomIn?: () => void;
|
|
1661
|
+
onZoomOut?: () => void;
|
|
1662
|
+
zoom: number;
|
|
1663
|
+
} & react.RefAttributes<HTMLDivElement>>;
|
|
1664
|
+
|
|
1314
1665
|
type ActivityLogTone = "danger" | "default" | "success" | "warning";
|
|
1315
1666
|
type ActivityLogItem = {
|
|
1316
1667
|
action: string;
|
|
@@ -1351,7 +1702,7 @@ type ContentCardPost = {
|
|
|
1351
1702
|
title: string;
|
|
1352
1703
|
updatedDate?: string;
|
|
1353
1704
|
};
|
|
1354
|
-
type ContentCardProps = {
|
|
1705
|
+
type ContentCardProps$1 = {
|
|
1355
1706
|
formatDate?: (date: string, lang: string) => string;
|
|
1356
1707
|
getDictValue?: (dict: Record<string, unknown>, path: string) => string;
|
|
1357
1708
|
href: string;
|
|
@@ -1363,8 +1714,8 @@ type ContentCardProps = {
|
|
|
1363
1714
|
showReadMore?: boolean;
|
|
1364
1715
|
updatedLabel?: string;
|
|
1365
1716
|
};
|
|
1366
|
-
declare function ContentCard({ formatDate, href, lang, post, readMoreLabel, showBadge, showDate, showReadMore, updatedLabel, }: ContentCardProps): react_jsx_runtime.JSX.Element;
|
|
1367
|
-
declare const BlogCard: typeof ContentCard;
|
|
1717
|
+
declare function ContentCard$1({ formatDate, href, lang, post, readMoreLabel, showBadge, showDate, showReadMore, updatedLabel, }: ContentCardProps$1): react_jsx_runtime.JSX.Element;
|
|
1718
|
+
declare const BlogCard: typeof ContentCard$1;
|
|
1368
1719
|
|
|
1369
1720
|
type CategoryFilterProps = {
|
|
1370
1721
|
categories: string[];
|
|
@@ -2080,6 +2431,41 @@ type SummaryProps = {
|
|
|
2080
2431
|
};
|
|
2081
2432
|
declare function Summary({ children, keyTakeaways, title, }: SummaryProps): react_jsx_runtime.JSX.Element;
|
|
2082
2433
|
|
|
2434
|
+
type LessonStatus = "available" | "completed" | "in-progress" | "locked";
|
|
2435
|
+
type LessonDifficulty = "advanced" | "beginner" | "intermediate";
|
|
2436
|
+
type CurriculumProps = {
|
|
2437
|
+
children: ReactNode;
|
|
2438
|
+
className?: string;
|
|
2439
|
+
defaultExpandedModules?: string[];
|
|
2440
|
+
title: string;
|
|
2441
|
+
totalHours?: number;
|
|
2442
|
+
};
|
|
2443
|
+
type CurriculumModuleProps = {
|
|
2444
|
+
children: ReactNode;
|
|
2445
|
+
className?: string;
|
|
2446
|
+
description?: string;
|
|
2447
|
+
estimatedHours?: number;
|
|
2448
|
+
id: string;
|
|
2449
|
+
title: string;
|
|
2450
|
+
};
|
|
2451
|
+
declare function CurriculumModule({ children, className, description, estimatedHours, id, title, }: CurriculumModuleProps): React.ReactNode;
|
|
2452
|
+
type CurriculumLessonProps = {
|
|
2453
|
+
className?: string;
|
|
2454
|
+
difficulty?: LessonDifficulty;
|
|
2455
|
+
duration?: string;
|
|
2456
|
+
href?: string;
|
|
2457
|
+
id?: string;
|
|
2458
|
+
prerequisites?: string[];
|
|
2459
|
+
status?: LessonStatus;
|
|
2460
|
+
title: string;
|
|
2461
|
+
};
|
|
2462
|
+
declare function CurriculumLesson({ className, difficulty, duration, href, prerequisites, status, title, }: CurriculumLessonProps): React.ReactNode;
|
|
2463
|
+
type CurriculumComponent = ((props: CurriculumProps) => React.ReactNode) & {
|
|
2464
|
+
Lesson: typeof CurriculumLesson;
|
|
2465
|
+
Module: typeof CurriculumModule;
|
|
2466
|
+
};
|
|
2467
|
+
declare const Curriculum: CurriculumComponent;
|
|
2468
|
+
|
|
2083
2469
|
type ProgressBarProps = {
|
|
2084
2470
|
className?: string;
|
|
2085
2471
|
completedLabel?: string;
|
|
@@ -2092,6 +2478,100 @@ type ProgressBarProps = {
|
|
|
2092
2478
|
};
|
|
2093
2479
|
declare function ProgressBar({ className, completedLabel, currentLabel, isComplete, isLoading, max, showLabels, value, }: ProgressBarProps): React.ReactNode;
|
|
2094
2480
|
|
|
2481
|
+
type ContentCardProgress = {
|
|
2482
|
+
completedCount: number;
|
|
2483
|
+
totalSections: number;
|
|
2484
|
+
};
|
|
2485
|
+
type ContentCardProps = {
|
|
2486
|
+
/** Badge label for difficulty/category */
|
|
2487
|
+
badgeLabel: string;
|
|
2488
|
+
/** Badge variant */
|
|
2489
|
+
badgeVariant?: "default" | "destructive" | "outline" | "secondary";
|
|
2490
|
+
/** Card description */
|
|
2491
|
+
description: string;
|
|
2492
|
+
/** Function to get progress from storage */
|
|
2493
|
+
getProgress?: () => ContentCardProgress | null;
|
|
2494
|
+
/** Href for the card link */
|
|
2495
|
+
href: string;
|
|
2496
|
+
/** Link component to use (e.g., Next.js Link) */
|
|
2497
|
+
linkComponent?: React.ComponentType<{
|
|
2498
|
+
children: ReactNode;
|
|
2499
|
+
className?: string;
|
|
2500
|
+
href: string;
|
|
2501
|
+
}>;
|
|
2502
|
+
/** Metadata items (e.g., "30 min", "10 sections") */
|
|
2503
|
+
metadata?: string[];
|
|
2504
|
+
/** Progress completed label (e.g., "completed") */
|
|
2505
|
+
progressLabel?: string;
|
|
2506
|
+
/** Tags to display */
|
|
2507
|
+
tags?: string[];
|
|
2508
|
+
/** Card title */
|
|
2509
|
+
title: string;
|
|
2510
|
+
};
|
|
2511
|
+
declare function ContentCardImpl({ badgeLabel, badgeVariant, description, getProgress, href, linkComponent: LinkComponent, metadata, progressLabel, tags, title, }: ContentCardProps): React.ReactNode;
|
|
2512
|
+
declare const ContentCard: react.MemoExoticComponent<typeof ContentCardImpl>;
|
|
2513
|
+
|
|
2514
|
+
type ProgressTrackerModuleStatus = "available" | "completed" | "in-progress" | "locked";
|
|
2515
|
+
type ProgressTrackerModuleItem = {
|
|
2516
|
+
badge?: string;
|
|
2517
|
+
checklistItems?: ChecklistItem[];
|
|
2518
|
+
completedExercises?: number;
|
|
2519
|
+
completedLessons?: number;
|
|
2520
|
+
currentLesson?: string;
|
|
2521
|
+
description?: string;
|
|
2522
|
+
exercises?: number;
|
|
2523
|
+
href?: string;
|
|
2524
|
+
id?: string;
|
|
2525
|
+
lessons: number;
|
|
2526
|
+
persistKey?: string;
|
|
2527
|
+
progress: number;
|
|
2528
|
+
skills?: string[];
|
|
2529
|
+
status: ProgressTrackerModuleStatus;
|
|
2530
|
+
timeSpent?: string;
|
|
2531
|
+
title: string;
|
|
2532
|
+
};
|
|
2533
|
+
type ProgressTrackerProps = react.HTMLAttributes<HTMLDivElement> & {
|
|
2534
|
+
children?: ReactNode;
|
|
2535
|
+
modules?: ProgressTrackerModuleItem[];
|
|
2536
|
+
overallProgress: number;
|
|
2537
|
+
streak?: number;
|
|
2538
|
+
title?: string;
|
|
2539
|
+
};
|
|
2540
|
+
type ProgressTrackerContextValue = {
|
|
2541
|
+
modules: ProgressTrackerModuleItem[];
|
|
2542
|
+
overallProgress: number;
|
|
2543
|
+
streak: number;
|
|
2544
|
+
title?: string;
|
|
2545
|
+
};
|
|
2546
|
+
declare function useProgressTrackerContext(): ProgressTrackerContextValue;
|
|
2547
|
+
declare function ProgressTrackerRoot({ children, className, modules, overallProgress, streak, title, ...props }: ProgressTrackerProps): react.ReactNode;
|
|
2548
|
+
type ProgressTrackerOverviewProps = react.HTMLAttributes<HTMLDivElement> & {
|
|
2549
|
+
description?: string;
|
|
2550
|
+
label?: string;
|
|
2551
|
+
};
|
|
2552
|
+
declare function ProgressTrackerOverview({ className, description, label, ...props }: ProgressTrackerOverviewProps): react.ReactNode;
|
|
2553
|
+
type ProgressTrackerModulesProps = react.HTMLAttributes<HTMLDivElement>;
|
|
2554
|
+
declare function ProgressTrackerModules({ children, className, ...props }: ProgressTrackerModulesProps): react.ReactNode;
|
|
2555
|
+
type ProgressTrackerModuleProps = react.HTMLAttributes<HTMLDivElement> & ProgressTrackerModuleItem;
|
|
2556
|
+
declare function ProgressTrackerModule({ badge, checklistItems, className, completedExercises, completedLessons, currentLesson, description, exercises, href, id, lessons, persistKey, progress, skills, status, timeSpent, title, ...props }: ProgressTrackerModuleProps): react.ReactNode;
|
|
2557
|
+
type ProgressTrackerStatsProps = react.HTMLAttributes<HTMLDivElement>;
|
|
2558
|
+
declare function ProgressTrackerStats({ children, className, ...props }: ProgressTrackerStatsProps): react.ReactNode;
|
|
2559
|
+
type ProgressTrackerStatProps = react.HTMLAttributes<HTMLDivElement> & {
|
|
2560
|
+
label: string;
|
|
2561
|
+
value: ReactNode;
|
|
2562
|
+
};
|
|
2563
|
+
declare function ProgressTrackerStat({ className, label, value, ...props }: ProgressTrackerStatProps): react.ReactNode;
|
|
2564
|
+
type ProgressTrackerBadgeProps = react.HTMLAttributes<HTMLSpanElement>;
|
|
2565
|
+
declare function ProgressTrackerBadge({ children, className, ...props }: ProgressTrackerBadgeProps): react.ReactNode;
|
|
2566
|
+
declare const ProgressTracker: typeof ProgressTrackerRoot & {
|
|
2567
|
+
Badge: typeof ProgressTrackerBadge;
|
|
2568
|
+
Module: typeof ProgressTrackerModule;
|
|
2569
|
+
Modules: typeof ProgressTrackerModules;
|
|
2570
|
+
Overview: typeof ProgressTrackerOverview;
|
|
2571
|
+
Stat: typeof ProgressTrackerStat;
|
|
2572
|
+
Stats: typeof ProgressTrackerStats;
|
|
2573
|
+
};
|
|
2574
|
+
|
|
2095
2575
|
type ProTipVariant = "advanced" | "best-practice" | "expert" | "gotcha" | "performance" | "tip";
|
|
2096
2576
|
type ProTipProps = {
|
|
2097
2577
|
children: ReactNode;
|
|
@@ -2705,6 +3185,24 @@ type ViewSwitcherProps = {
|
|
|
2705
3185
|
};
|
|
2706
3186
|
declare const ViewSwitcher: react.NamedExoticComponent<ViewSwitcherProps>;
|
|
2707
3187
|
|
|
3188
|
+
type WorkspaceOption = {
|
|
3189
|
+
description?: string;
|
|
3190
|
+
id: string;
|
|
3191
|
+
label: string;
|
|
3192
|
+
};
|
|
3193
|
+
type WorkspaceSwitcherProps = Omit<React.ComponentPropsWithoutRef<"div">, "defaultValue" | "onChange"> & {
|
|
3194
|
+
defaultValue?: string;
|
|
3195
|
+
onValueChange?: (value: string) => void;
|
|
3196
|
+
value?: string;
|
|
3197
|
+
workspaces: WorkspaceOption[];
|
|
3198
|
+
};
|
|
3199
|
+
declare const WorkspaceSwitcher: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "defaultValue" | "onChange"> & {
|
|
3200
|
+
defaultValue?: string;
|
|
3201
|
+
onValueChange?: (value: string) => void;
|
|
3202
|
+
value?: string;
|
|
3203
|
+
workspaces: WorkspaceOption[];
|
|
3204
|
+
} & react.RefAttributes<HTMLDivElement>>;
|
|
3205
|
+
|
|
2708
3206
|
type FlowDiagramNode = {
|
|
2709
3207
|
data: {
|
|
2710
3208
|
description?: string;
|
|
@@ -2878,6 +3376,189 @@ declare const FlowFullscreen: react.NamedExoticComponent<FlowFullscreenProps>;
|
|
|
2878
3376
|
*/
|
|
2879
3377
|
declare function useFlowDiagram(options?: UseFlowDiagramOptions): UseFlowDiagramReturn;
|
|
2880
3378
|
|
|
3379
|
+
type AnchorPortProps = React.ComponentPropsWithoutRef<"span"> & {
|
|
3380
|
+
side?: "bottom" | "left" | "right" | "top";
|
|
3381
|
+
state?: "active" | "blocked" | "idle";
|
|
3382
|
+
tone?: "bidirectional" | "input" | "output";
|
|
3383
|
+
};
|
|
3384
|
+
declare const AnchorPort: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
|
|
3385
|
+
side?: "bottom" | "left" | "right" | "top";
|
|
3386
|
+
state?: "active" | "blocked" | "idle";
|
|
3387
|
+
tone?: "bidirectional" | "input" | "output";
|
|
3388
|
+
} & react.RefAttributes<HTMLSpanElement>>;
|
|
3389
|
+
|
|
3390
|
+
type ConnectorEdgePoint = {
|
|
3391
|
+
x: number;
|
|
3392
|
+
y: number;
|
|
3393
|
+
};
|
|
3394
|
+
type ConnectorEdgeProps = React.ComponentPropsWithoutRef<"div"> & {
|
|
3395
|
+
end: ConnectorEdgePoint;
|
|
3396
|
+
label?: string;
|
|
3397
|
+
start: ConnectorEdgePoint;
|
|
3398
|
+
state?: "active" | "blocked" | "idle";
|
|
3399
|
+
};
|
|
3400
|
+
declare const ConnectorEdge: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
3401
|
+
end: ConnectorEdgePoint;
|
|
3402
|
+
label?: string;
|
|
3403
|
+
start: ConnectorEdgePoint;
|
|
3404
|
+
state?: "active" | "blocked" | "idle";
|
|
3405
|
+
} & react.RefAttributes<HTMLDivElement>>;
|
|
3406
|
+
|
|
3407
|
+
type EdgeLabelProps = React.ComponentPropsWithoutRef<"span"> & {
|
|
3408
|
+
emphasis?: "active" | "subtle";
|
|
3409
|
+
};
|
|
3410
|
+
declare const EdgeLabel: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
|
|
3411
|
+
emphasis?: "active" | "subtle";
|
|
3412
|
+
} & react.RefAttributes<HTMLSpanElement>>;
|
|
3413
|
+
|
|
3414
|
+
type GroupHullProps = React.ComponentPropsWithoutRef<"section"> & {
|
|
3415
|
+
description?: string;
|
|
3416
|
+
eyebrow?: ReactNode;
|
|
3417
|
+
title: string;
|
|
3418
|
+
};
|
|
3419
|
+
declare const GroupHull: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
|
|
3420
|
+
description?: string;
|
|
3421
|
+
eyebrow?: ReactNode;
|
|
3422
|
+
title: string;
|
|
3423
|
+
} & react.RefAttributes<HTMLElement>>;
|
|
3424
|
+
|
|
3425
|
+
type ObjectCardMetric = {
|
|
3426
|
+
label: string;
|
|
3427
|
+
value: ReactNode;
|
|
3428
|
+
};
|
|
3429
|
+
type ObjectCardAction = {
|
|
3430
|
+
label: string;
|
|
3431
|
+
onClick?: () => void;
|
|
3432
|
+
};
|
|
3433
|
+
type ObjectCardProps = React.ComponentPropsWithoutRef<"article"> & {
|
|
3434
|
+
actions?: ObjectCardAction[];
|
|
3435
|
+
footer?: ReactNode;
|
|
3436
|
+
kind?: string;
|
|
3437
|
+
metrics?: ObjectCardMetric[];
|
|
3438
|
+
ports?: ReactNode;
|
|
3439
|
+
state?: "blocked" | "complete" | "idle" | "running";
|
|
3440
|
+
summary?: string;
|
|
3441
|
+
title: string;
|
|
3442
|
+
};
|
|
3443
|
+
declare const ObjectCard: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
|
|
3444
|
+
actions?: ObjectCardAction[];
|
|
3445
|
+
footer?: ReactNode;
|
|
3446
|
+
kind?: string;
|
|
3447
|
+
metrics?: ObjectCardMetric[];
|
|
3448
|
+
ports?: ReactNode;
|
|
3449
|
+
state?: "blocked" | "complete" | "idle" | "running";
|
|
3450
|
+
summary?: string;
|
|
3451
|
+
title: string;
|
|
3452
|
+
} & react.RefAttributes<HTMLElement>>;
|
|
3453
|
+
|
|
3454
|
+
type ObjectHandleProps = Omit<React.ComponentPropsWithoutRef<"button">, "type"> & {
|
|
3455
|
+
hint?: ReactNode;
|
|
3456
|
+
label?: ReactNode;
|
|
3457
|
+
};
|
|
3458
|
+
declare const ObjectHandle: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "type"> & {
|
|
3459
|
+
hint?: ReactNode;
|
|
3460
|
+
label?: ReactNode;
|
|
3461
|
+
} & react.RefAttributes<HTMLButtonElement>>;
|
|
3462
|
+
|
|
3463
|
+
/** A single tool call made by the assistant. */
|
|
3464
|
+
type ToolCall = {
|
|
3465
|
+
id: string;
|
|
3466
|
+
input?: Record<string, unknown>;
|
|
3467
|
+
name: string;
|
|
3468
|
+
result?: string;
|
|
3469
|
+
};
|
|
3470
|
+
/** A single message in the conversation. */
|
|
3471
|
+
type ConversationMessage = {
|
|
3472
|
+
content: string;
|
|
3473
|
+
id: string;
|
|
3474
|
+
/** Whether the assistant still streams this individual message. */
|
|
3475
|
+
isStreaming?: boolean;
|
|
3476
|
+
role: "assistant" | "user";
|
|
3477
|
+
/** AI reasoning/thinking content. The component renders this via ThinkingBlock. */
|
|
3478
|
+
thinking?: string;
|
|
3479
|
+
toolCalls?: ToolCall[];
|
|
3480
|
+
};
|
|
3481
|
+
type ConversationThreadProps = {
|
|
3482
|
+
children?: ReactNode;
|
|
3483
|
+
className?: string;
|
|
3484
|
+
/** Whether the assistant generates a response. */
|
|
3485
|
+
isStreaming?: boolean;
|
|
3486
|
+
messages: ConversationMessage[];
|
|
3487
|
+
onFeedback?: (messageId: string, feedback: "negative" | "positive") => void;
|
|
3488
|
+
onRetry?: (messageId: string) => void;
|
|
3489
|
+
/** Calls onSend with the suggestion text after the user clicks a ConversationSuggestions chip. */
|
|
3490
|
+
onSend?: (message: string) => void;
|
|
3491
|
+
};
|
|
3492
|
+
type ConversationHeaderProps = {
|
|
3493
|
+
children?: ReactNode;
|
|
3494
|
+
className?: string;
|
|
3495
|
+
};
|
|
3496
|
+
type ConversationTitleProps = {
|
|
3497
|
+
children?: ReactNode;
|
|
3498
|
+
className?: string;
|
|
3499
|
+
};
|
|
3500
|
+
type ConversationMessagesProps = {
|
|
3501
|
+
/** Overlay children: ConversationEmpty, ConversationScrollButton, ConversationLoading. */
|
|
3502
|
+
children?: ReactNode;
|
|
3503
|
+
className?: string;
|
|
3504
|
+
};
|
|
3505
|
+
type ConversationEmptyProps = {
|
|
3506
|
+
children?: ReactNode;
|
|
3507
|
+
className?: string;
|
|
3508
|
+
};
|
|
3509
|
+
type ConversationSuggestionsProps = {
|
|
3510
|
+
className?: string;
|
|
3511
|
+
suggestions?: string[];
|
|
3512
|
+
};
|
|
3513
|
+
type ConversationScrollButtonProps = {
|
|
3514
|
+
className?: string;
|
|
3515
|
+
};
|
|
3516
|
+
type ConversationLoadingProps = {
|
|
3517
|
+
className?: string;
|
|
3518
|
+
};
|
|
3519
|
+
/**
|
|
3520
|
+
* Root provider for the ConversationThread compound component family.
|
|
3521
|
+
*
|
|
3522
|
+
* @example
|
|
3523
|
+
* ```tsx
|
|
3524
|
+
* <ConversationThread messages={messages} isStreaming={isStreaming} onSend={handleSend}>
|
|
3525
|
+
* <ConversationHeader><ConversationTitle>Chat</ConversationTitle></ConversationHeader>
|
|
3526
|
+
* <ConversationMessages>
|
|
3527
|
+
* <ConversationEmpty>
|
|
3528
|
+
* <ConversationSuggestions suggestions={["Hello!", "Help me with..."]} />
|
|
3529
|
+
* </ConversationEmpty>
|
|
3530
|
+
* <ConversationScrollButton />
|
|
3531
|
+
* <ConversationLoading />
|
|
3532
|
+
* </ConversationMessages>
|
|
3533
|
+
* </ConversationThread>
|
|
3534
|
+
* ```
|
|
3535
|
+
*/
|
|
3536
|
+
declare const ConversationThread: react.ForwardRefExoticComponent<ConversationThreadProps & react.RefAttributes<HTMLDivElement>>;
|
|
3537
|
+
/** Optional header slot, rendered above the message list. */
|
|
3538
|
+
declare const ConversationHeader: react.ForwardRefExoticComponent<ConversationHeaderProps & react.RefAttributes<HTMLDivElement>>;
|
|
3539
|
+
/** Title text for use inside ConversationHeader. */
|
|
3540
|
+
declare const ConversationTitle: react.ForwardRefExoticComponent<ConversationTitleProps & react.RefAttributes<HTMLHeadingElement>>;
|
|
3541
|
+
/**
|
|
3542
|
+
* Scrollable message list container. Renders messages from context.
|
|
3543
|
+
* Pass ConversationEmpty, ConversationScrollButton, and ConversationLoading as children —
|
|
3544
|
+
* the component renders these as absolute overlays that read state from context.
|
|
3545
|
+
*/
|
|
3546
|
+
declare const ConversationMessages: react.ForwardRefExoticComponent<ConversationMessagesProps & react.RefAttributes<HTMLDivElement>>;
|
|
3547
|
+
/**
|
|
3548
|
+
* Shown when the message list is empty. Hides automatically once messages exist.
|
|
3549
|
+
* Renders as a centered overlay — pass ConversationSuggestions or custom content as children.
|
|
3550
|
+
*/
|
|
3551
|
+
declare const ConversationEmpty: react.ForwardRefExoticComponent<ConversationEmptyProps & react.RefAttributes<HTMLDivElement>>;
|
|
3552
|
+
/** Suggested prompt chips displayed in the empty state. Calls onSend when clicked. */
|
|
3553
|
+
declare const ConversationSuggestions: react.ForwardRefExoticComponent<ConversationSuggestionsProps & react.RefAttributes<HTMLDivElement>>;
|
|
3554
|
+
/** Floating button that appears when the user scrolls up, to jump back to the bottom. */
|
|
3555
|
+
declare const ConversationScrollButton: react.ForwardRefExoticComponent<ConversationScrollButtonProps & react.RefAttributes<HTMLButtonElement>>;
|
|
3556
|
+
/**
|
|
3557
|
+
* Typing indicator shown while the assistant is streaming a response.
|
|
3558
|
+
* Visible when isStreaming is true and the last message role is "assistant".
|
|
3559
|
+
*/
|
|
3560
|
+
declare const ConversationLoading: react.ForwardRefExoticComponent<ConversationLoadingProps & react.RefAttributes<HTMLDivElement>>;
|
|
3561
|
+
|
|
2881
3562
|
type InlineInputProps = {
|
|
2882
3563
|
className?: string;
|
|
2883
3564
|
/** Called when user presses Escape or blurs without changes. */
|
|
@@ -3042,4 +3723,4 @@ declare function useHorizontalScroll(): UseHorizontalScrollReturn;
|
|
|
3042
3723
|
|
|
3043
3724
|
declare function cn(...inputs: ClassValue[]): string;
|
|
3044
3725
|
|
|
3045
|
-
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, 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, Breadcrumb, type BreadcrumbItem, Button, type ButtonProps, Calendar, type CalendarProps, Callout, type CalloutProps, type CalloutVariant, CandlestickChart, type CandlestickChartProps, type CandlestickDatum, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, CategoryFilter, 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, CommonMistake, type CommonMistakeProps, Comparison, type ComparisonProps, CompletionDialog, type CompletionDialogProps, Content, 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, CookieConsent, type CookieConsentProps, type CopyStatus, CountdownTimer, type CountdownTimerProps, CreditBadge, type CreditBadgeProps, type CreditBadgeStatus, 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, 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, Glossary, type GlossaryProps, Highlight, type HighlightProps, HorizontalScrollRow, type HorizontalScrollRowProps, HoverCard, HoverCardContent, HoverCardTrigger, InlineInput, type InlineInputProps, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, KeyConcept, type KeyConceptProps, type KeyboardShortcut, KeyboardShortcutsHelp, type KeyboardShortcutsHelpProps, LANGUAGE_NAMES, Label, LangProvider, LearningObjectives, type LearningObjectivesProps, LineChart, 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 ModelInfo, ModelSelector, type ModelSelectorProps, type NavItem, NavbarSaas, type NavbarSaasProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NumberInput, type NumberInputProps, NumberTicker, type NumberTickerProps, OrderBook, type OrderBookLevel, type OrderBookProps, Pagination, type PaginationProps, PasswordInput, type PasswordInputProps, PlanBadge, type PlanBadgeProps, type PlanBadgeState, type PlanBadgeTier, type PlatformConfig, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Prerequisites, type PrerequisitesProps, ProTip, type ProTipProps, type ProTipVariant, ProfileSection, ProgressBar, type ProgressBarProps, Quiz, type QuizOption, type QuizProps, RadioGroup, RadioGroupItem, Rating, type RatingProps, ResizableHandle, ResizablePanel, ResizablePanelGroup, RoleBadge, type RoleBadgeProps, type RoleBadgeRole, ScopeSelector, type ScopeSelectorNode, type ScopeSelectorProps, type ScopeSelectorSelection, ScrollArea, ScrollBar, SearchBar, SearchDialog, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, 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, Terminal, type TerminalLine, type TerminalProps, Textarea, type TextareaProps, ThemeProvider, ThemeToggle, ThinkingBlock, type ThinkingBlockProps, TickerTape, type TickerTapeItem, type TickerTapeProps, Toast, ToastAction, ToastClose, ToastDescription, type ToastProps, ToastTitle, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, 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, WalletCard, type WalletCardProps, Watchlist, type WatchlistItem, type WatchlistProps, WorldClockBar, type WorldClockBarProps, type WorldClockBarZone, alertVariants, avatarGroupVariants, avatarItemVariants, badgeVariants, buttonVariants, cn, cookieConsentVariants, dataListItemVariants, dataListVariants, dotVariants, getOtherLanguage, mdxComponents, navigationMenuTriggerStyle, severityBadgeVariants, statCardVariants, statusIndicatorVariants, toggleVariants, useDebounce, useFlowDiagram, useHorizontalScroll, useMobile, useSidebar, useSocialFab };
|
|
3726
|
+
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, 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, 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, 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, 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, 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, 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, WalletCard, type WalletCardProps, Watchlist, type WatchlistItem, type WatchlistProps, type WorkspaceOption, WorkspaceSwitcher, type WorkspaceSwitcherProps, WorldClockBar, type WorldClockBarProps, type WorldClockBarZone, 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 };
|