@sciol/xyzen 0.3.5 → 0.3.7

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.
Files changed (83) hide show
  1. package/dist/app/App.d.ts +1 -1
  2. package/dist/app/AppFullscreen.d.ts +1 -1
  3. package/dist/app/AppSide.d.ts +6 -0
  4. package/dist/app/explore/AgentExploreContent.d.ts +3 -0
  5. package/dist/app/explore/AgentExploreTab.d.ts +2 -0
  6. package/dist/app/explore/McpExploreContent.d.ts +3 -0
  7. package/dist/app/explore/McpExploreTab.d.ts +2 -0
  8. package/dist/app/explore/page.d.ts +1 -0
  9. package/dist/components/animate-ui/components/buttons/button.d.ts +9 -0
  10. package/dist/components/animate-ui/components/buttons/github-stars.d.ts +10 -0
  11. package/dist/components/animate-ui/components/headless/checkbox.d.ts +11 -0
  12. package/dist/components/animate-ui/components/radix/dropdown-menu.d.ts +37 -0
  13. package/dist/components/animate-ui/components/radix/tooltip.d.ts +10 -0
  14. package/dist/components/animate-ui/primitives/animate/github-stars.d.ts +40 -0
  15. package/dist/components/animate-ui/primitives/animate/slot.d.ts +17 -0
  16. package/dist/components/animate-ui/primitives/buttons/button.d.ts +8 -0
  17. package/dist/components/animate-ui/primitives/buttons/liquid.d.ts +10 -0
  18. package/dist/components/animate-ui/primitives/effects/auto-height.d.ts +11 -0
  19. package/dist/components/animate-ui/primitives/effects/highlight.d.ts +92 -0
  20. package/dist/components/animate-ui/primitives/effects/particles.d.ts +25 -0
  21. package/dist/components/animate-ui/primitives/headless/checkbox.d.ts +16 -0
  22. package/dist/components/animate-ui/primitives/headless/dialog.d.ts +42 -0
  23. package/dist/components/{base/Modal.d.ts → animate-ui/primitives/headless/modal.d.ts} +1 -1
  24. package/dist/components/animate-ui/primitives/radix/dropdown-menu.d.ts +57 -0
  25. package/dist/components/animate-ui/primitives/radix/tabs.d.ts +32 -0
  26. package/dist/components/animate-ui/primitives/radix/tooltip.d.ts +21 -0
  27. package/dist/components/animate-ui/primitives/texts/sliding-number.d.ts +16 -0
  28. package/dist/components/base/Badge.d.ts +1 -1
  29. package/dist/components/charts/index.d.ts +2 -2
  30. package/dist/components/features/ExploreMcpCard.d.ts +6 -0
  31. package/dist/components/features/ExploreMcpListItem.d.ts +6 -0
  32. package/dist/components/layouts/ActivityBar.d.ts +8 -0
  33. package/dist/components/layouts/AgentExplorer.d.ts +1 -0
  34. package/dist/components/layouts/McpListModal.d.ts +1 -0
  35. package/dist/components/layouts/Workshop.d.ts +1 -0
  36. package/dist/components/layouts/WorkshopChat.d.ts +1 -0
  37. package/dist/components/layouts/XyzenAgent.d.ts +9 -3
  38. package/dist/components/shared/JsonDisplay.d.ts +1 -1
  39. package/dist/components/ui/3d-card.d.ts +23 -0
  40. package/dist/components/ui/3d-pin.d.ts +12 -0
  41. package/dist/components/ui/background-boxes.d.ts +7 -0
  42. package/dist/components/ui/background-gradient-animation.d.ts +16 -0
  43. package/dist/components/ui/bento-grid.d.ts +11 -0
  44. package/dist/components/ui/button.d.ts +10 -0
  45. package/dist/components/ui/layout-text-flip.d.ts +5 -0
  46. package/dist/components/ui/pagination.d.ts +13 -0
  47. package/dist/components/ui/shooting-stars.d.ts +14 -0
  48. package/dist/components/ui/spotlight-new.d.ts +13 -0
  49. package/dist/configs/chatThemes.d.ts +9 -0
  50. package/dist/hooks/use-auto-height.d.ts +10 -0
  51. package/dist/hooks/use-controlled-state.d.ts +8 -0
  52. package/dist/hooks/use-data-state.d.ts +4 -0
  53. package/dist/hooks/use-is-in-view.d.ts +12 -0
  54. package/dist/hooks/useWorkShopChat.d.ts +69 -0
  55. package/dist/hooks/useXyzenChat.d.ts +69 -0
  56. package/dist/lib/animations.d.ts +48 -0
  57. package/dist/lib/get-strict-context.d.ts +9 -0
  58. package/dist/lib/utils.d.ts +2 -0
  59. package/dist/marketplace/components/McpActivationProgress.d.ts +10 -0
  60. package/dist/marketplace/components/McpServerCard.d.ts +9 -0
  61. package/dist/marketplace/components/McpServerDetail.d.ts +7 -0
  62. package/dist/marketplace/components/UnifiedMcpMarketList.d.ts +8 -0
  63. package/dist/marketplace/hooks/useBohriumMcp.d.ts +61 -0
  64. package/dist/marketplace/index.d.ts +12 -0
  65. package/dist/marketplace/services/bohriumService.d.ts +34 -0
  66. package/dist/marketplace/types/bohrium.d.ts +129 -0
  67. package/dist/marketplace/utils/starredApps.d.ts +37 -0
  68. package/dist/service/mcpService.d.ts +2 -2
  69. package/dist/store/slices/agentSlice.d.ts +16 -1
  70. package/dist/store/slices/mcpSlice.d.ts +3 -3
  71. package/dist/store/slices/uiSlice.d.ts +9 -0
  72. package/dist/types/chartTypes.d.ts +7 -7
  73. package/dist/types/mcp.d.ts +42 -2
  74. package/dist/utils/chartDetection.d.ts +1 -1
  75. package/dist/utils/chartThemes.d.ts +4 -4
  76. package/dist/utils/mcpConverters.d.ts +32 -0
  77. package/dist/xyzen.css +1 -1
  78. package/dist/xyzen.es.js +104127 -87034
  79. package/dist/xyzen.umd.js +223 -128
  80. package/package.json +18 -5
  81. package/dist/app/LlmProviders.d.ts +0 -1
  82. package/dist/app/Mcp.d.ts +0 -1
  83. package/dist/test-charts.d.ts +0 -6
package/dist/app/App.d.ts CHANGED
@@ -2,4 +2,4 @@ export interface XyzenProps {
2
2
  backendUrl?: string;
3
3
  showLlmProvider?: boolean;
4
4
  }
5
- export declare function Xyzen({ backendUrl, showLlmProvider, }: XyzenProps): import("react/jsx-runtime").JSX.Element;
5
+ export declare function Xyzen({ backendUrl, showLlmProvider, }: XyzenProps): import("react/jsx-runtime").JSX.Element | null;
@@ -2,4 +2,4 @@ export interface AppFullscreenProps {
2
2
  backendUrl?: string;
3
3
  showLlmProvider?: boolean;
4
4
  }
5
- export declare function AppFullscreen({ backendUrl, showLlmProvider, }: AppFullscreenProps): import('react').ReactPortal | null;
5
+ export declare function AppFullscreen({ backendUrl, }: AppFullscreenProps): import('react').ReactPortal | null;
@@ -0,0 +1,6 @@
1
+ export interface AppSideProps {
2
+ backendUrl?: string;
3
+ showLlmProvider?: boolean;
4
+ isMobile?: boolean;
5
+ }
6
+ export declare function AppSide({ backendUrl, showLlmProvider, isMobile, }: AppSideProps): import("react/jsx-runtime").JSX.Element | null;
@@ -0,0 +1,3 @@
1
+ import { default as React } from 'react';
2
+ declare const AgentExploreContent: React.FC;
3
+ export default AgentExploreContent;
@@ -0,0 +1,2 @@
1
+ declare const AgentExploreTab: React.FC;
2
+ export default AgentExploreTab;
@@ -0,0 +1,3 @@
1
+ import { default as React } from 'react';
2
+ declare const McpExploreContent: React.FC;
3
+ export default McpExploreContent;
@@ -0,0 +1,2 @@
1
+ declare const McpExploreTab: React.FC;
2
+ export default McpExploreTab;
@@ -0,0 +1 @@
1
+ export default function Explorer(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,9 @@
1
+ import { VariantProps } from 'class-variance-authority';
2
+ import { ButtonProps as ButtonPrimitiveProps } from '../../primitives/buttons/button';
3
+ declare const buttonVariants: (props?: ({
4
+ variant?: "link" | "default" | "outline" | "destructive" | "secondary" | "ghost" | "accent" | null | undefined;
5
+ size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
6
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
7
+ type ButtonProps = ButtonPrimitiveProps & VariantProps<typeof buttonVariants>;
8
+ declare function Button({ className, variant, size, ...props }: ButtonProps): import("react/jsx-runtime").JSX.Element;
9
+ export { Button, buttonVariants, type ButtonProps };
@@ -0,0 +1,10 @@
1
+ import { VariantProps } from 'class-variance-authority';
2
+ import { GithubStarsProps } from '../../primitives/animate/github-stars';
3
+ import { ButtonProps as ButtonPrimitiveProps } from '../../primitives/buttons/button';
4
+ declare const buttonVariants: (props?: ({
5
+ variant?: "default" | "outline" | "ghost" | "accent" | null | undefined;
6
+ size?: "default" | "sm" | "lg" | null | undefined;
7
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
8
+ type GitHubStarsButtonProps = Omit<ButtonPrimitiveProps & GithubStarsProps, "asChild" | "children"> & VariantProps<typeof buttonVariants>;
9
+ declare function GitHubStarsButton({ className, username, repo, value, delay, inView, inViewMargin, inViewOnce, variant, size, ...props }: GitHubStarsButtonProps): import("react/jsx-runtime").JSX.Element;
10
+ export { GitHubStarsButton, type GitHubStarsButtonProps };
@@ -0,0 +1,11 @@
1
+ import { motion } from 'motion/react';
2
+ import { CheckboxProps as CheckboxPrimitiveProps } from '../../primitives/headless/checkbox';
3
+ import { VariantProps } from 'class-variance-authority';
4
+ import * as React from "react";
5
+ declare const checkboxVariants: (props?: ({
6
+ variant?: "default" | "accent" | null | undefined;
7
+ size?: "default" | "sm" | "lg" | null | undefined;
8
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
9
+ type CheckboxProps<TTag extends React.ElementType = typeof motion.button> = CheckboxPrimitiveProps<TTag> & VariantProps<typeof checkboxVariants>;
10
+ declare function Checkbox<TTag extends React.ElementType = typeof motion.button>({ className, children, variant, size, ...props }: CheckboxProps<TTag>): import("react/jsx-runtime").JSX.Element;
11
+ export { Checkbox, type CheckboxProps };
@@ -0,0 +1,37 @@
1
+ import { DropdownMenuCheckboxItemProps as DropdownMenuCheckboxItemPrimitiveProps, DropdownMenuContentProps as DropdownMenuContentPrimitiveProps, DropdownMenuGroupProps as DropdownMenuGroupPrimitiveProps, DropdownMenuItemProps as DropdownMenuItemPrimitiveProps, DropdownMenuLabelProps as DropdownMenuLabelPrimitiveProps, DropdownMenuProps as DropdownMenuPrimitiveProps, DropdownMenuRadioGroupProps as DropdownMenuRadioGroupPrimitiveProps, DropdownMenuRadioItemProps as DropdownMenuRadioItemPrimitiveProps, DropdownMenuSeparatorProps as DropdownMenuSeparatorPrimitiveProps, DropdownMenuShortcutProps as DropdownMenuShortcutPrimitiveProps, DropdownMenuSubContentProps as DropdownMenuSubContentPrimitiveProps, DropdownMenuSubProps as DropdownMenuSubPrimitiveProps, DropdownMenuSubTriggerProps as DropdownMenuSubTriggerPrimitiveProps, DropdownMenuTriggerProps as DropdownMenuTriggerPrimitiveProps } from '../../primitives/radix/dropdown-menu';
2
+ type DropdownMenuProps = DropdownMenuPrimitiveProps;
3
+ declare function DropdownMenu(props: DropdownMenuProps): import("react/jsx-runtime").JSX.Element;
4
+ type DropdownMenuTriggerProps = DropdownMenuTriggerPrimitiveProps;
5
+ declare function DropdownMenuTrigger(props: DropdownMenuTriggerProps): import("react/jsx-runtime").JSX.Element;
6
+ type DropdownMenuContentProps = DropdownMenuContentPrimitiveProps;
7
+ declare function DropdownMenuContent({ sideOffset, className, children, ...props }: DropdownMenuContentProps): import("react/jsx-runtime").JSX.Element;
8
+ type DropdownMenuGroupProps = DropdownMenuGroupPrimitiveProps;
9
+ declare function DropdownMenuGroup({ ...props }: DropdownMenuGroupProps): import("react/jsx-runtime").JSX.Element;
10
+ type DropdownMenuItemProps = DropdownMenuItemPrimitiveProps & {
11
+ inset?: boolean;
12
+ variant?: "default" | "destructive";
13
+ };
14
+ declare function DropdownMenuItem({ className, inset, variant, disabled, ...props }: DropdownMenuItemProps): import("react/jsx-runtime").JSX.Element;
15
+ type DropdownMenuCheckboxItemProps = DropdownMenuCheckboxItemPrimitiveProps;
16
+ declare function DropdownMenuCheckboxItem({ className, children, checked, disabled, ...props }: DropdownMenuCheckboxItemProps): import("react/jsx-runtime").JSX.Element;
17
+ type DropdownMenuRadioGroupProps = DropdownMenuRadioGroupPrimitiveProps;
18
+ declare function DropdownMenuRadioGroup(props: DropdownMenuRadioGroupProps): import("react/jsx-runtime").JSX.Element;
19
+ type DropdownMenuRadioItemProps = DropdownMenuRadioItemPrimitiveProps;
20
+ declare function DropdownMenuRadioItem({ className, children, disabled, ...props }: DropdownMenuRadioItemProps): import("react/jsx-runtime").JSX.Element;
21
+ type DropdownMenuLabelProps = DropdownMenuLabelPrimitiveProps & {
22
+ inset?: boolean;
23
+ };
24
+ declare function DropdownMenuLabel({ className, inset, ...props }: DropdownMenuLabelProps): import("react/jsx-runtime").JSX.Element;
25
+ type DropdownMenuSeparatorProps = DropdownMenuSeparatorPrimitiveProps;
26
+ declare function DropdownMenuSeparator({ className, ...props }: DropdownMenuSeparatorProps): import("react/jsx-runtime").JSX.Element;
27
+ type DropdownMenuShortcutProps = DropdownMenuShortcutPrimitiveProps;
28
+ declare function DropdownMenuShortcut({ className, ...props }: DropdownMenuShortcutProps): import("react/jsx-runtime").JSX.Element;
29
+ type DropdownMenuSubProps = DropdownMenuSubPrimitiveProps;
30
+ declare function DropdownMenuSub(props: DropdownMenuSubProps): import("react/jsx-runtime").JSX.Element;
31
+ type DropdownMenuSubTriggerProps = DropdownMenuSubTriggerPrimitiveProps & {
32
+ inset?: boolean;
33
+ };
34
+ declare function DropdownMenuSubTrigger({ disabled, className, inset, children, ...props }: DropdownMenuSubTriggerProps): import("react/jsx-runtime").JSX.Element;
35
+ type DropdownMenuSubContentProps = DropdownMenuSubContentPrimitiveProps;
36
+ declare function DropdownMenuSubContent({ className, ...props }: DropdownMenuSubContentProps): import("react/jsx-runtime").JSX.Element;
37
+ export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, type DropdownMenuCheckboxItemProps, type DropdownMenuContentProps, type DropdownMenuGroupProps, type DropdownMenuItemProps, type DropdownMenuLabelProps, type DropdownMenuProps, type DropdownMenuRadioGroupProps, type DropdownMenuRadioItemProps, type DropdownMenuSeparatorProps, type DropdownMenuShortcutProps, type DropdownMenuSubContentProps, type DropdownMenuSubProps, type DropdownMenuSubTriggerProps, type DropdownMenuTriggerProps, };
@@ -0,0 +1,10 @@
1
+ import { TooltipContentProps as TooltipContentPrimitiveProps, TooltipProps as TooltipPrimitiveProps, TooltipTriggerProps as TooltipTriggerPrimitiveProps } from '../../primitives/radix/tooltip';
2
+ type TooltipProps = TooltipPrimitiveProps & {
3
+ delayDuration?: TooltipPrimitiveProps["delayDuration"];
4
+ };
5
+ declare function Tooltip({ delayDuration, ...props }: TooltipProps): import("react/jsx-runtime").JSX.Element;
6
+ type TooltipTriggerProps = TooltipTriggerPrimitiveProps;
7
+ declare function TooltipTrigger({ ...props }: TooltipTriggerProps): import("react/jsx-runtime").JSX.Element;
8
+ type TooltipContentProps = TooltipContentPrimitiveProps;
9
+ declare function TooltipContent({ className, sideOffset, children, ...props }: TooltipContentProps): import("react/jsx-runtime").JSX.Element;
10
+ export { Tooltip, TooltipContent, TooltipTrigger, type TooltipContentProps, type TooltipProps, type TooltipTriggerProps, };
@@ -0,0 +1,40 @@
1
+ import { HTMLMotionProps } from 'motion/react';
2
+ import { UseIsInViewOptions } from '../../../../hooks/use-is-in-view';
3
+ import { WithAsChild } from './slot';
4
+ import { SlidingNumberProps } from '../texts/sliding-number';
5
+ import { ParticlesEffectProps } from '../effects/particles';
6
+ import * as React from "react";
7
+ type GithubStarsContextType = {
8
+ stars: number;
9
+ setStars: (stars: number) => void;
10
+ currentStars: number;
11
+ setCurrentStars: (stars: number) => void;
12
+ isCompleted: boolean;
13
+ isLoading: boolean;
14
+ };
15
+ declare const useGithubStars: () => GithubStarsContextType;
16
+ type GithubStarsProps = WithAsChild<{
17
+ children: React.ReactNode;
18
+ username?: string;
19
+ repo?: string;
20
+ value?: number;
21
+ delay?: number;
22
+ } & UseIsInViewOptions & HTMLMotionProps<"div">>;
23
+ declare function GithubStars({ ref, children, username, repo, value, delay, inView, inViewMargin, inViewOnce, asChild, ...props }: GithubStarsProps): import("react/jsx-runtime").JSX.Element;
24
+ type GithubStarsNumberProps = Omit<SlidingNumberProps, "number" | "fromNumber">;
25
+ declare function GithubStarsNumber({ padStart, ...props }: GithubStarsNumberProps): import("react/jsx-runtime").JSX.Element;
26
+ type GithubStarsIconProps<T extends React.ElementType> = {
27
+ icon: React.ReactElement<T>;
28
+ color?: string;
29
+ activeClassName?: string;
30
+ } & React.ComponentProps<T>;
31
+ declare function GithubStarsIcon<T extends React.ElementType>({ icon: Icon, color, activeClassName, className, ...props }: GithubStarsIconProps<T>): import("react/jsx-runtime").JSX.Element;
32
+ type GithubStarsParticlesProps = ParticlesEffectProps & {
33
+ children: React.ReactElement;
34
+ size?: number;
35
+ };
36
+ declare function GithubStarsParticles({ children, size, style, ...props }: GithubStarsParticlesProps): import("react/jsx-runtime").JSX.Element;
37
+ type GithubStarsLogoProps = React.SVGProps<SVGSVGElement>;
38
+ declare function GithubStarsLogo(props: GithubStarsLogoProps): import("react/jsx-runtime").JSX.Element;
39
+ export { GithubStars, GithubStarsNumber, GithubStarsIcon, GithubStarsParticles, GithubStarsLogo, useGithubStars, //eslint-disable-line
40
+ type GithubStarsProps, type GithubStarsNumberProps, type GithubStarsIconProps, type GithubStarsParticlesProps, type GithubStarsLogoProps, type GithubStarsContextType, };
@@ -0,0 +1,17 @@
1
+ import { HTMLMotionProps } from 'motion/react';
2
+ import * as React from "react";
3
+ type AnyProps = Record<string, unknown>;
4
+ type DOMMotionProps<T extends HTMLElement = HTMLElement> = Omit<HTMLMotionProps<keyof HTMLElementTagNameMap>, "ref"> & {
5
+ ref?: React.Ref<T>;
6
+ };
7
+ type WithAsChild<Base extends object> = (Base & {
8
+ asChild: true;
9
+ children: React.ReactElement;
10
+ }) | (Base & {
11
+ asChild?: false | undefined;
12
+ });
13
+ type SlotProps<T extends HTMLElement = HTMLElement> = {
14
+ children?: any;
15
+ } & DOMMotionProps<T>;
16
+ declare function Slot<T extends HTMLElement = HTMLElement>({ children, ref, ...props }: SlotProps<T>): import("react/jsx-runtime").JSX.Element | null;
17
+ export { Slot, type SlotProps, type WithAsChild, type DOMMotionProps, type AnyProps, };
@@ -0,0 +1,8 @@
1
+ import { HTMLMotionProps } from 'motion/react';
2
+ import { WithAsChild } from '../animate/slot';
3
+ type ButtonProps = WithAsChild<HTMLMotionProps<"button"> & {
4
+ hoverScale?: number;
5
+ tapScale?: number;
6
+ }>;
7
+ declare function Button({ hoverScale, tapScale, asChild, ...props }: ButtonProps): import("react/jsx-runtime").JSX.Element;
8
+ export { Button, type ButtonProps };
@@ -0,0 +1,10 @@
1
+ import { HTMLMotionProps } from 'motion/react';
2
+ import { WithAsChild } from '../animate/slot';
3
+ type LiquidButtonProps = WithAsChild<HTMLMotionProps<"button"> & {
4
+ delay?: string;
5
+ fillHeight?: string;
6
+ hoverScale?: number;
7
+ tapScale?: number;
8
+ }>;
9
+ declare function LiquidButton({ delay, fillHeight, hoverScale, tapScale, asChild, ...props }: LiquidButtonProps): import("react/jsx-runtime").JSX.Element;
10
+ export { LiquidButton, type LiquidButtonProps };
@@ -0,0 +1,11 @@
1
+ import { HTMLMotionProps, LegacyAnimationControls, TargetAndTransition, Transition } from 'motion/react';
2
+ import { WithAsChild } from '../animate/slot';
3
+ import * as React from "react";
4
+ type AutoHeightProps = WithAsChild<{
5
+ children: React.ReactNode;
6
+ deps?: React.DependencyList;
7
+ animate?: TargetAndTransition | LegacyAnimationControls;
8
+ transition?: Transition;
9
+ } & Omit<HTMLMotionProps<"div">, "animate">>;
10
+ declare function AutoHeight({ children, deps, transition, style, animate, asChild, ...props }: AutoHeightProps): import("react/jsx-runtime").JSX.Element;
11
+ export { AutoHeight, type AutoHeightProps };
@@ -0,0 +1,92 @@
1
+ import { Transition } from 'motion/react';
2
+ import * as React from "react";
3
+ type HighlightMode = "children" | "parent";
4
+ type Bounds = {
5
+ top: number;
6
+ left: number;
7
+ width: number;
8
+ height: number;
9
+ };
10
+ type HighlightContextType<T extends string> = {
11
+ as?: keyof HTMLElementTagNameMap;
12
+ mode: HighlightMode;
13
+ activeValue: T | null;
14
+ setActiveValue: (value: T | null) => void;
15
+ setBounds: (bounds: DOMRect) => void;
16
+ clearBounds: () => void;
17
+ id: string;
18
+ hover: boolean;
19
+ click: boolean;
20
+ className?: string;
21
+ style?: React.CSSProperties;
22
+ activeClassName?: string;
23
+ setActiveClassName: (className: string) => void;
24
+ transition?: Transition;
25
+ disabled?: boolean;
26
+ enabled?: boolean;
27
+ exitDelay?: number;
28
+ forceUpdateBounds?: boolean;
29
+ };
30
+ declare function useHighlight<T extends string>(): HighlightContextType<T>;
31
+ type BaseHighlightProps<T extends React.ElementType = "div"> = {
32
+ as?: T;
33
+ ref?: React.Ref<HTMLDivElement>;
34
+ mode?: HighlightMode;
35
+ value?: string | null;
36
+ defaultValue?: string | null;
37
+ onValueChange?: (value: string | null) => void;
38
+ className?: string;
39
+ style?: React.CSSProperties;
40
+ transition?: Transition;
41
+ hover?: boolean;
42
+ click?: boolean;
43
+ disabled?: boolean;
44
+ enabled?: boolean;
45
+ exitDelay?: number;
46
+ };
47
+ type ParentModeHighlightProps = {
48
+ boundsOffset?: Partial<Bounds>;
49
+ containerClassName?: string;
50
+ forceUpdateBounds?: boolean;
51
+ };
52
+ type ControlledParentModeHighlightProps<T extends React.ElementType = "div"> = BaseHighlightProps<T> & ParentModeHighlightProps & {
53
+ mode: "parent";
54
+ controlledItems: true;
55
+ children: React.ReactNode;
56
+ };
57
+ type ControlledChildrenModeHighlightProps<T extends React.ElementType = "div"> = BaseHighlightProps<T> & {
58
+ mode?: "children" | undefined;
59
+ controlledItems: true;
60
+ children: React.ReactNode;
61
+ };
62
+ type UncontrolledParentModeHighlightProps<T extends React.ElementType = "div"> = BaseHighlightProps<T> & ParentModeHighlightProps & {
63
+ mode: "parent";
64
+ controlledItems?: false;
65
+ itemsClassName?: string;
66
+ children: React.ReactElement | React.ReactElement[];
67
+ };
68
+ type UncontrolledChildrenModeHighlightProps<T extends React.ElementType = "div"> = BaseHighlightProps<T> & {
69
+ mode?: "children";
70
+ controlledItems?: false;
71
+ itemsClassName?: string;
72
+ children: React.ReactElement | React.ReactElement[];
73
+ };
74
+ type HighlightProps<T extends React.ElementType = "div"> = ControlledParentModeHighlightProps<T> | ControlledChildrenModeHighlightProps<T> | UncontrolledParentModeHighlightProps<T> | UncontrolledChildrenModeHighlightProps<T>;
75
+ declare function Highlight<T extends React.ElementType = "div">({ ref, ...props }: HighlightProps<T>): import("react/jsx-runtime").JSX.Element;
76
+ type HighlightItemProps<T extends React.ElementType = "div"> = React.ComponentProps<T> & {
77
+ as?: T;
78
+ children: React.ReactElement;
79
+ id?: string;
80
+ value?: string;
81
+ className?: string;
82
+ style?: React.CSSProperties;
83
+ transition?: Transition;
84
+ activeClassName?: string;
85
+ disabled?: boolean;
86
+ exitDelay?: number;
87
+ asChild?: boolean;
88
+ forceUpdateBounds?: boolean;
89
+ };
90
+ declare function HighlightItem<T extends React.ElementType>({ ref, as, children, id, value, className, style, transition, disabled, activeClassName, exitDelay, asChild, forceUpdateBounds, ...props }: HighlightItemProps<T>): any;
91
+ export { Highlight, HighlightItem, useHighlight, //eslint-disable-line
92
+ type HighlightItemProps, type HighlightProps, };
@@ -0,0 +1,25 @@
1
+ import { HTMLMotionProps } from 'motion/react';
2
+ import { WithAsChild } from '../animate/slot';
3
+ import { UseIsInViewOptions } from '../../../../hooks/use-is-in-view';
4
+ import * as React from "react";
5
+ type Side = "top" | "bottom" | "left" | "right";
6
+ type Align = "start" | "center" | "end";
7
+ type ParticlesProps = WithAsChild<Omit<HTMLMotionProps<"div">, "children"> & {
8
+ animate?: boolean;
9
+ children: React.ReactNode;
10
+ } & UseIsInViewOptions>;
11
+ declare function Particles({ ref, animate, asChild, inView, inViewMargin, inViewOnce, children, style, ...props }: ParticlesProps): import("react/jsx-runtime").JSX.Element;
12
+ type ParticlesEffectProps = Omit<HTMLMotionProps<"div">, "children"> & {
13
+ side?: Side;
14
+ align?: Align;
15
+ count?: number;
16
+ radius?: number;
17
+ spread?: number;
18
+ duration?: number;
19
+ holdDelay?: number;
20
+ sideOffset?: number;
21
+ alignOffset?: number;
22
+ delay?: number;
23
+ };
24
+ declare function ParticlesEffect({ side, align, count, radius, spread, duration, holdDelay, sideOffset, alignOffset, delay, transition, style, ...props }: ParticlesEffectProps): import("react/jsx-runtime").JSX.Element;
25
+ export { Particles, ParticlesEffect, type ParticlesProps, type ParticlesEffectProps, };
@@ -0,0 +1,16 @@
1
+ import { CheckboxProps as CheckboxPrimitiveProps } from '@headlessui/react';
2
+ import { motion, HTMLMotionProps, SVGMotionProps } from 'motion/react';
3
+ import * as React from "react";
4
+ type CheckboxContextType = {
5
+ isChecked: boolean;
6
+ isIndeterminate: boolean;
7
+ };
8
+ declare const useCheckbox: () => CheckboxContextType;
9
+ type CheckboxProps<TTag extends React.ElementType = typeof motion.button> = CheckboxPrimitiveProps<TTag> & Omit<HTMLMotionProps<"button">, "checked" | "onChange" | "defaultChecked" | "children"> & {
10
+ as?: TTag;
11
+ };
12
+ declare function Checkbox<TTag extends React.ElementType = typeof motion.button>({ children, ...props }: CheckboxProps<TTag>): import("react/jsx-runtime").JSX.Element;
13
+ type CheckboxIndicatorProps = SVGMotionProps<SVGSVGElement>;
14
+ declare function CheckboxIndicator(props: CheckboxIndicatorProps): import("react/jsx-runtime").JSX.Element;
15
+ export { Checkbox, CheckboxIndicator, useCheckbox, //eslint-disable-line
16
+ type CheckboxContextType, type CheckboxIndicatorProps, type CheckboxProps, };
@@ -0,0 +1,42 @@
1
+ import { Description as DialogDescriptionPrimitive, DialogProps as DialogPrimitiveProps, DialogBackdropProps as DialogBackdropPrimitiveProps, DialogPanelProps as DialogPanelPrimitiveProps, DialogTitleProps as DialogTitlePrimitiveProps, CloseButtonProps } from '@headlessui/react';
2
+ import { motion, Transition, HTMLMotionProps } from 'motion/react';
3
+ import * as React from "react";
4
+ type DialogProps<TTag extends React.ElementType = "div"> = Omit<DialogPrimitiveProps<TTag>, "static"> & {
5
+ className?: string;
6
+ as?: TTag;
7
+ };
8
+ declare function Dialog<TTag extends React.ElementType = "div">({ className, ...props }: DialogProps<TTag>): import("react/jsx-runtime").JSX.Element;
9
+ type DialogBackdropProps<TTag extends React.ElementType = typeof motion.div> = Omit<DialogBackdropPrimitiveProps<TTag>, "transition"> & HTMLMotionProps<"div"> & {
10
+ as?: TTag;
11
+ };
12
+ declare function DialogBackdrop<TTag extends React.ElementType = typeof motion.div>(props: DialogBackdropProps<TTag>): import("react/jsx-runtime").JSX.Element;
13
+ type DialogFlipDirection = "top" | "bottom" | "left" | "right";
14
+ type DialogPanelProps<TTag extends React.ElementType = typeof motion.div> = Omit<DialogPanelPrimitiveProps<TTag>, "transition"> & Omit<HTMLMotionProps<"div">, "children"> & {
15
+ from?: DialogFlipDirection;
16
+ transition?: Transition;
17
+ as?: TTag;
18
+ };
19
+ declare function DialogPanel<TTag extends React.ElementType = typeof motion.div>(props: DialogPanelProps<TTag>): import("react/jsx-runtime").JSX.Element;
20
+ type DialogCloseProps<TTag extends React.ElementType = "div"> = CloseButtonProps<TTag> & {
21
+ as?: TTag;
22
+ };
23
+ declare function DialogClose<TTag extends React.ElementType = "button">(props: DialogCloseProps<TTag>): import("react/jsx-runtime").JSX.Element;
24
+ type DialogHeaderProps<TTag extends React.ElementType = "div"> = React.ComponentProps<TTag> & {
25
+ as?: TTag;
26
+ };
27
+ declare function DialogHeader<TTag extends React.ElementType = "div">({ as: Component, ...props }: DialogHeaderProps<TTag>): import("react/jsx-runtime").JSX.Element;
28
+ type DialogFooterProps<TTag extends React.ElementType = "div"> = React.ComponentProps<TTag> & {
29
+ as?: TTag;
30
+ };
31
+ declare function DialogFooter({ as: Component, ...props }: DialogFooterProps): import("react/jsx-runtime").JSX.Element;
32
+ type DialogTitleProps<TTag extends React.ElementType = "h2"> = DialogTitlePrimitiveProps<TTag> & {
33
+ as?: TTag;
34
+ className?: string;
35
+ };
36
+ declare function DialogTitle<TTag extends React.ElementType = "h2">(props: DialogTitleProps<TTag>): import("react/jsx-runtime").JSX.Element;
37
+ type DialogDescriptionProps<TTag extends React.ElementType = "div"> = React.ComponentProps<typeof DialogDescriptionPrimitive<TTag>> & {
38
+ as?: TTag;
39
+ className?: string;
40
+ };
41
+ declare function DialogDescription<TTag extends React.ElementType = "div">(props: DialogDescriptionProps<TTag>): import("react/jsx-runtime").JSX.Element;
42
+ export { Dialog, DialogBackdrop, DialogPanel, DialogClose, DialogTitle, DialogDescription, DialogHeader, DialogFooter, type DialogProps, type DialogBackdropProps, type DialogPanelProps, type DialogCloseProps, type DialogTitleProps, type DialogDescriptionProps, type DialogHeaderProps, type DialogFooterProps, type DialogFlipDirection, };
@@ -2,7 +2,7 @@ import { ReactNode } from 'react';
2
2
  interface ModalProps {
3
3
  isOpen: boolean;
4
4
  onClose: () => void;
5
- title: string;
5
+ title?: string;
6
6
  children: ReactNode;
7
7
  maxWidth?: string;
8
8
  minWidth?: string;
@@ -0,0 +1,57 @@
1
+ import { HTMLMotionProps } from 'motion/react';
2
+ import { DropdownMenu as DropdownMenuPrimitive } from 'radix-ui';
3
+ import { HighlightItemProps, HighlightProps } from '../effects/highlight';
4
+ import * as React from "react";
5
+ type DropdownMenuContextType = {
6
+ isOpen: boolean;
7
+ setIsOpen: (o: boolean) => void;
8
+ highlightedValue: string | null;
9
+ setHighlightedValue: (value: string | null) => void;
10
+ };
11
+ type DropdownMenuSubContextType = {
12
+ isOpen: boolean;
13
+ setIsOpen: (o: boolean) => void;
14
+ };
15
+ declare const useDropdownMenu: () => DropdownMenuContextType;
16
+ declare const useDropdownMenuSub: () => DropdownMenuSubContextType;
17
+ type DropdownMenuProps = React.ComponentProps<typeof DropdownMenuPrimitive.Root>;
18
+ declare function DropdownMenu(props: DropdownMenuProps): import("react/jsx-runtime").JSX.Element;
19
+ type DropdownMenuTriggerProps = React.ComponentProps<typeof DropdownMenuPrimitive.Trigger>;
20
+ declare function DropdownMenuTrigger(props: DropdownMenuTriggerProps): import("react/jsx-runtime").JSX.Element;
21
+ type DropdownMenuPortalProps = React.ComponentProps<typeof DropdownMenuPrimitive.Portal>;
22
+ declare function DropdownMenuPortal(props: DropdownMenuPortalProps): import("react/jsx-runtime").JSX.Element;
23
+ type DropdownMenuGroupProps = React.ComponentProps<typeof DropdownMenuPrimitive.Group>;
24
+ declare function DropdownMenuGroup(props: DropdownMenuGroupProps): import("react/jsx-runtime").JSX.Element;
25
+ type DropdownMenuSubProps = React.ComponentProps<typeof DropdownMenuPrimitive.Sub>;
26
+ declare function DropdownMenuSub(props: DropdownMenuSubProps): import("react/jsx-runtime").JSX.Element;
27
+ type DropdownMenuRadioGroupProps = React.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>;
28
+ declare function DropdownMenuRadioGroup(props: DropdownMenuRadioGroupProps): import("react/jsx-runtime").JSX.Element;
29
+ type DropdownMenuSubTriggerProps = Omit<React.ComponentProps<typeof DropdownMenuPrimitive.SubTrigger>, "asChild"> & HTMLMotionProps<"div">;
30
+ declare function DropdownMenuSubTrigger({ disabled, textValue, ...props }: DropdownMenuSubTriggerProps): import("react/jsx-runtime").JSX.Element;
31
+ type DropdownMenuSubContentProps = Omit<React.ComponentProps<typeof DropdownMenuPrimitive.SubContent>, "forceMount" | "asChild"> & Omit<React.ComponentProps<typeof DropdownMenuPrimitive.Portal>, "forceMount"> & HTMLMotionProps<"div">;
32
+ declare function DropdownMenuSubContent({ loop, onEscapeKeyDown, onPointerDownOutside, onFocusOutside, onInteractOutside, sideOffset, alignOffset, avoidCollisions, collisionBoundary, collisionPadding, arrowPadding, sticky, hideWhenDetached, transition, style, container, ...props }: DropdownMenuSubContentProps): import("react/jsx-runtime").JSX.Element;
33
+ type DropdownMenuHighlightProps = Omit<HighlightProps, "controlledItems" | "enabled" | "hover"> & {
34
+ animateOnHover?: boolean;
35
+ };
36
+ declare function DropdownMenuHighlight({ transition, ...props }: DropdownMenuHighlightProps): import("react/jsx-runtime").JSX.Element;
37
+ type DropdownMenuContentProps = Omit<React.ComponentProps<typeof DropdownMenuPrimitive.Content>, "forceMount" | "asChild"> & Omit<React.ComponentProps<typeof DropdownMenuPrimitive.Portal>, "forceMount"> & HTMLMotionProps<"div">;
38
+ declare function DropdownMenuContent({ loop, onCloseAutoFocus, onEscapeKeyDown, onPointerDownOutside, onFocusOutside, onInteractOutside, side, sideOffset, align, alignOffset, avoidCollisions, collisionBoundary, collisionPadding, arrowPadding, sticky, hideWhenDetached, transition, style, container, ...props }: DropdownMenuContentProps): import("react/jsx-runtime").JSX.Element;
39
+ type DropdownMenuHighlightItemProps = HighlightItemProps;
40
+ declare function DropdownMenuHighlightItem(props: DropdownMenuHighlightItemProps): import("react/jsx-runtime").JSX.Element;
41
+ type DropdownMenuItemProps = Omit<React.ComponentProps<typeof DropdownMenuPrimitive.Item>, "asChild"> & HTMLMotionProps<"div">;
42
+ declare function DropdownMenuItem({ disabled, onSelect, textValue, ...props }: DropdownMenuItemProps): import("react/jsx-runtime").JSX.Element;
43
+ type DropdownMenuCheckboxItemProps = Omit<React.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>, "asChild"> & HTMLMotionProps<"div">;
44
+ declare function DropdownMenuCheckboxItem({ checked, onCheckedChange, disabled, onSelect, textValue, ...props }: DropdownMenuCheckboxItemProps): import("react/jsx-runtime").JSX.Element;
45
+ type DropdownMenuRadioItemProps = Omit<React.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>, "asChild"> & HTMLMotionProps<"div">;
46
+ declare function DropdownMenuRadioItem({ value, disabled, onSelect, textValue, ...props }: DropdownMenuRadioItemProps): import("react/jsx-runtime").JSX.Element;
47
+ type DropdownMenuLabelProps = React.ComponentProps<typeof DropdownMenuPrimitive.Label>;
48
+ declare function DropdownMenuLabel(props: DropdownMenuLabelProps): import("react/jsx-runtime").JSX.Element;
49
+ type DropdownMenuSeparatorProps = React.ComponentProps<typeof DropdownMenuPrimitive.Separator>;
50
+ declare function DropdownMenuSeparator(props: DropdownMenuSeparatorProps): import("react/jsx-runtime").JSX.Element;
51
+ type DropdownMenuShortcutProps = React.ComponentProps<"span">;
52
+ declare function DropdownMenuShortcut(props: DropdownMenuShortcutProps): import("react/jsx-runtime").JSX.Element;
53
+ type DropdownMenuItemIndicatorProps = Omit<React.ComponentProps<typeof DropdownMenuPrimitive.ItemIndicator>, "asChild"> & HTMLMotionProps<"div">;
54
+ declare function DropdownMenuItemIndicator(props: DropdownMenuItemIndicatorProps): import("react/jsx-runtime").JSX.Element;
55
+ export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuHighlight, DropdownMenuHighlightItem, DropdownMenuItem, DropdownMenuItemIndicator, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, useDropdownMenu, //eslint-disable-line
56
+ useDropdownMenuSub, //eslint-disable-line
57
+ type DropdownMenuCheckboxItemProps, type DropdownMenuContentProps, type DropdownMenuContextType, type DropdownMenuGroupProps, type DropdownMenuHighlightItemProps, type DropdownMenuHighlightProps, type DropdownMenuItemIndicatorProps, type DropdownMenuItemProps, type DropdownMenuLabelProps, type DropdownMenuPortalProps, type DropdownMenuProps, type DropdownMenuRadioGroupProps, type DropdownMenuRadioItemProps, type DropdownMenuSeparatorProps, type DropdownMenuShortcutProps, type DropdownMenuSubContentProps, type DropdownMenuSubContextType, type DropdownMenuSubProps, type DropdownMenuSubTriggerProps, type DropdownMenuTriggerProps, };
@@ -0,0 +1,32 @@
1
+ import { Tabs as TabsPrimitive } from 'radix-ui';
2
+ import { HTMLMotionProps, Transition } from 'motion/react';
3
+ import { HighlightProps, HighlightItemProps } from '../effects/highlight';
4
+ import { AutoHeightProps } from '../effects/auto-height';
5
+ import * as React from "react";
6
+ type TabsProps = React.ComponentProps<typeof TabsPrimitive.Root>;
7
+ declare function Tabs(props: TabsProps): import("react/jsx-runtime").JSX.Element;
8
+ type TabsHighlightProps = Omit<HighlightProps, "controlledItems" | "value">;
9
+ declare function TabsHighlight({ transition, ...props }: TabsHighlightProps): import("react/jsx-runtime").JSX.Element;
10
+ type TabsListProps = React.ComponentProps<typeof TabsPrimitive.List>;
11
+ declare function TabsList(props: TabsListProps): import("react/jsx-runtime").JSX.Element;
12
+ type TabsHighlightItemProps = HighlightItemProps & {
13
+ value: string;
14
+ };
15
+ declare function TabsHighlightItem(props: TabsHighlightItemProps): import("react/jsx-runtime").JSX.Element;
16
+ type TabsTriggerProps = React.ComponentProps<typeof TabsPrimitive.Trigger>;
17
+ declare function TabsTrigger(props: TabsTriggerProps): import("react/jsx-runtime").JSX.Element;
18
+ type TabsContentProps = React.ComponentProps<typeof TabsPrimitive.Content> & HTMLMotionProps<"div">;
19
+ declare function TabsContent({ value, forceMount, transition, ...props }: TabsContentProps): import("react/jsx-runtime").JSX.Element;
20
+ type TabsContentsAutoProps = AutoHeightProps & {
21
+ mode?: "auto-height";
22
+ children: React.ReactNode;
23
+ transition?: Transition;
24
+ };
25
+ type TabsContentsLayoutProps = Omit<HTMLMotionProps<"div">, "transition"> & {
26
+ mode: "layout";
27
+ children: React.ReactNode;
28
+ transition?: Transition;
29
+ };
30
+ type TabsContentsProps = TabsContentsAutoProps | TabsContentsLayoutProps;
31
+ declare function TabsContents(props: TabsContentsProps): import("react/jsx-runtime").JSX.Element;
32
+ export { Tabs, TabsHighlight, TabsHighlightItem, TabsList, TabsTrigger, TabsContent, TabsContents, type TabsProps, type TabsHighlightProps, type TabsHighlightItemProps, type TabsListProps, type TabsTriggerProps, type TabsContentProps, type TabsContentsProps, };
@@ -0,0 +1,21 @@
1
+ import { HTMLMotionProps } from 'motion/react';
2
+ import { Tooltip as TooltipPrimitive } from 'radix-ui';
3
+ import * as React from "react";
4
+ type TooltipContextType = {
5
+ isOpen: boolean;
6
+ setIsOpen: (isOpen: boolean) => void;
7
+ };
8
+ declare const useTooltip: () => TooltipContextType;
9
+ type TooltipProviderProps = React.ComponentProps<typeof TooltipPrimitive.Provider>;
10
+ declare function TooltipProvider(props: TooltipProviderProps): import("react/jsx-runtime").JSX.Element;
11
+ type TooltipProps = React.ComponentProps<typeof TooltipPrimitive.Root>;
12
+ declare function Tooltip(props: TooltipProps): import("react/jsx-runtime").JSX.Element;
13
+ type TooltipTriggerProps = React.ComponentProps<typeof TooltipPrimitive.Trigger>;
14
+ declare function TooltipTrigger(props: TooltipTriggerProps): import("react/jsx-runtime").JSX.Element;
15
+ type TooltipPortalProps = Omit<React.ComponentProps<typeof TooltipPrimitive.Portal>, "forceMount">;
16
+ declare function TooltipPortal(props: TooltipPortalProps): import("react/jsx-runtime").JSX.Element;
17
+ type TooltipContentProps = Omit<React.ComponentProps<typeof TooltipPrimitive.Content>, "forceMount" | "asChild"> & HTMLMotionProps<"div">;
18
+ declare function TooltipContent({ onEscapeKeyDown, onPointerDownOutside, side, sideOffset, align, alignOffset, avoidCollisions, collisionBoundary, collisionPadding, arrowPadding, sticky, hideWhenDetached, transition, ...props }: TooltipContentProps): import("react/jsx-runtime").JSX.Element;
19
+ type TooltipArrowProps = React.ComponentProps<typeof TooltipPrimitive.Arrow>;
20
+ declare function TooltipArrow(props: TooltipArrowProps): import("react/jsx-runtime").JSX.Element;
21
+ export { Tooltip, TooltipArrow, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, useTooltip, type TooltipArrowProps, type TooltipContentProps, type TooltipContextType, type TooltipPortalProps, type TooltipProps, type TooltipProviderProps, type TooltipTriggerProps, };
@@ -0,0 +1,16 @@
1
+ import { SpringOptions, HTMLMotionProps } from 'motion/react';
2
+ import { UseIsInViewOptions } from '../../../../hooks/use-is-in-view';
3
+ type SlidingNumberProps = Omit<HTMLMotionProps<"span">, "children"> & {
4
+ number: number;
5
+ fromNumber?: number;
6
+ onNumberChange?: (number: number) => void;
7
+ padStart?: boolean;
8
+ decimalSeparator?: string;
9
+ decimalPlaces?: number;
10
+ thousandSeparator?: string;
11
+ transition?: SpringOptions;
12
+ delay?: number;
13
+ initiallyStable?: boolean;
14
+ } & UseIsInViewOptions;
15
+ declare function SlidingNumber({ ref, number, fromNumber, onNumberChange, inView, inViewMargin, inViewOnce, padStart, decimalSeparator, decimalPlaces, thousandSeparator, transition, delay, initiallyStable, ...props }: SlidingNumberProps): import("react/jsx-runtime").JSX.Element;
16
+ export { SlidingNumber, type SlidingNumberProps };
@@ -1,7 +1,7 @@
1
1
  import { default as React } from 'react';
2
2
  interface BadgeProps {
3
3
  children: React.ReactNode;
4
- variant?: "default" | "blue" | "green" | "yellow" | "red" | "gray";
4
+ variant?: "default" | "blue" | "green" | "yellow" | "red" | "gray" | "purple";
5
5
  size?: "sm" | "md";
6
6
  className?: string;
7
7
  }
@@ -1,5 +1,5 @@
1
1
  export { ChartRenderer } from './ChartRenderer';
2
2
  export { ChartDisplay, SimpleChartDisplay } from './ChartDisplay';
3
- export { detectChart, validateChartData, suggestChartType } from '../../utils/chartDetection';
4
- export { createEChartsTheme, detectThemeFromDOM } from '../../utils/chartThemes';
3
+ export { detectChart, validateChartData, suggestChartType, } from '../../utils/chartDetection';
4
+ export { createEChartsTheme, detectThemeFromDOM, } from '../../utils/chartThemes';
5
5
  export type { ChartConfig, ChartDataPoint, SeriesData, TimeSeriesPoint, ChartableOutput, ChartDetectionResult, ChartTheme, ChartRendererProps, ChartDisplayProps, ChartableData, DetectionPattern, } from '../../types/chartTypes';
@@ -0,0 +1,6 @@
1
+ import { BuiltinMcpData, ExplorableMcpServer } from '../../types/mcp';
2
+ import { default as React } from 'react';
3
+ declare const ExplorerMcpCard: React.FC<{
4
+ mcp: ExplorableMcpServer<BuiltinMcpData>;
5
+ }>;
6
+ export default ExplorerMcpCard;
@@ -0,0 +1,6 @@
1
+ import { BuiltinMcpData, ExplorableMcpServer } from '../../types/mcp';
2
+ import { default as React } from 'react';
3
+ declare const ExploreMcpListItem: React.FC<{
4
+ mcp: ExplorableMcpServer<BuiltinMcpData>;
5
+ }>;
6
+ export default ExploreMcpListItem;
@@ -0,0 +1,8 @@
1
+ export type ActivityPanel = "chat" | "explorer" | "workshop";
2
+ interface ActivityBarProps {
3
+ activePanel: ActivityPanel;
4
+ onPanelChange: (panel: ActivityPanel) => void;
5
+ className?: string;
6
+ }
7
+ export declare const ActivityBar: React.FC<ActivityBarProps>;
8
+ export default ActivityBar;
@@ -0,0 +1 @@
1
+ export default function AgentExplorer(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare function McpListModal(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export default function Workshop(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export default function WorkshopChat(): import("react/jsx-runtime").JSX.Element;