@sciol/xyzen 0.3.6 → 0.3.8

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 (53) hide show
  1. package/dist/app/AppFullscreen.d.ts +1 -1
  2. package/dist/app/explore/AgentExploreContent.d.ts +3 -0
  3. package/dist/app/explore/AgentExploreTab.d.ts +2 -0
  4. package/dist/app/explore/McpExploreContent.d.ts +3 -0
  5. package/dist/app/explore/McpExploreTab.d.ts +2 -0
  6. package/dist/components/animate-ui/components/buttons/button.d.ts +1 -1
  7. package/dist/components/animate-ui/components/buttons/github-stars.d.ts +10 -0
  8. package/dist/components/animate-ui/components/headless/checkbox.d.ts +11 -0
  9. package/dist/components/animate-ui/components/radix/dropdown-menu.d.ts +37 -0
  10. package/dist/components/animate-ui/components/radix/tooltip.d.ts +10 -0
  11. package/dist/components/animate-ui/primitives/animate/github-stars.d.ts +40 -0
  12. package/dist/components/animate-ui/primitives/effects/highlight.d.ts +1 -1
  13. package/dist/components/animate-ui/primitives/effects/particles.d.ts +25 -0
  14. package/dist/components/animate-ui/primitives/headless/checkbox.d.ts +16 -0
  15. package/dist/components/animate-ui/primitives/radix/dropdown-menu.d.ts +57 -0
  16. package/dist/components/animate-ui/primitives/radix/tooltip.d.ts +21 -0
  17. package/dist/components/animate-ui/primitives/texts/sliding-number.d.ts +16 -0
  18. package/dist/components/base/Badge.d.ts +1 -1
  19. package/dist/components/features/ExploreMcpCard.d.ts +6 -0
  20. package/dist/components/features/ExploreMcpListItem.d.ts +6 -0
  21. package/dist/components/layouts/XyzenAgent.d.ts +3 -1
  22. package/dist/components/ui/3d-card.d.ts +23 -0
  23. package/dist/components/ui/3d-pin.d.ts +12 -0
  24. package/dist/components/ui/background-boxes.d.ts +7 -0
  25. package/dist/components/ui/background-gradient-animation.d.ts +16 -0
  26. package/dist/components/ui/bento-grid.d.ts +11 -0
  27. package/dist/components/ui/button.d.ts +10 -0
  28. package/dist/components/ui/layout-text-flip.d.ts +5 -0
  29. package/dist/components/ui/pagination.d.ts +13 -0
  30. package/dist/components/ui/shooting-stars.d.ts +14 -0
  31. package/dist/components/ui/spotlight-new.d.ts +13 -0
  32. package/dist/hooks/use-data-state.d.ts +4 -0
  33. package/dist/hooks/use-is-in-view.d.ts +12 -0
  34. package/dist/lib/animations.d.ts +48 -0
  35. package/dist/marketplace/components/McpActivationProgress.d.ts +10 -0
  36. package/dist/marketplace/components/McpServerCard.d.ts +9 -0
  37. package/dist/marketplace/components/McpServerDetail.d.ts +7 -0
  38. package/dist/marketplace/components/UnifiedMcpMarketList.d.ts +8 -0
  39. package/dist/marketplace/hooks/useBohriumMcp.d.ts +61 -0
  40. package/dist/marketplace/index.d.ts +12 -0
  41. package/dist/marketplace/services/bohriumService.d.ts +34 -0
  42. package/dist/marketplace/types/bohrium.d.ts +129 -0
  43. package/dist/marketplace/utils/starredApps.d.ts +37 -0
  44. package/dist/service/mcpService.d.ts +2 -2
  45. package/dist/store/slices/agentSlice.d.ts +9 -0
  46. package/dist/store/slices/mcpSlice.d.ts +3 -3
  47. package/dist/types/mcp.d.ts +42 -2
  48. package/dist/utils/mcpConverters.d.ts +32 -0
  49. package/dist/xyzen.css +1 -1
  50. package/dist/xyzen.es.js +36809 -29620
  51. package/dist/xyzen.umd.js +179 -94
  52. package/package.json +17 -3
  53. /package/dist/{components/layouts/Explorer.d.ts → app/explore/page.d.ts} +0 -0
@@ -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,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;
@@ -1,7 +1,7 @@
1
1
  import { VariantProps } from 'class-variance-authority';
2
2
  import { ButtonProps as ButtonPrimitiveProps } from '../../primitives/buttons/button';
3
3
  declare const buttonVariants: (props?: ({
4
- variant?: "link" | "default" | "outline" | "accent" | "destructive" | "secondary" | "ghost" | null | undefined;
4
+ variant?: "link" | "default" | "outline" | "destructive" | "secondary" | "ghost" | "accent" | null | undefined;
5
5
  size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
6
6
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
7
7
  type ButtonProps = ButtonPrimitiveProps & VariantProps<typeof buttonVariants>;
@@ -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, };
@@ -88,5 +88,5 @@ type HighlightItemProps<T extends React.ElementType = "div"> = React.ComponentPr
88
88
  forceUpdateBounds?: boolean;
89
89
  };
90
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 react-refresh/only-export-components
91
+ export { Highlight, HighlightItem, useHighlight, //eslint-disable-line
92
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,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,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
  }
@@ -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;
@@ -10,7 +10,7 @@ export type Agent = {
10
10
  user_id: string;
11
11
  require_tool_confirmation?: boolean;
12
12
  provider_id?: string | null;
13
- agent_type: "regular" | "graph" | "builtin";
13
+ agent_type: "regular" | "graph" | "builtin" | "system";
14
14
  avatar?: string | null;
15
15
  tags?: string[] | null;
16
16
  model?: string | null;
@@ -21,6 +21,8 @@ export type Agent = {
21
21
  state_schema?: Record<string, unknown>;
22
22
  node_count?: number;
23
23
  edge_count?: number;
24
+ is_published?: boolean;
25
+ is_official?: boolean;
24
26
  };
25
27
  interface XyzenAgentProps {
26
28
  systemAgentType?: "chat" | "workshop" | "all";
@@ -0,0 +1,23 @@
1
+ import { default as React } from 'react';
2
+ export declare const CardContainer: ({ children, className, containerClassName, }: {
3
+ children?: React.ReactNode;
4
+ className?: string;
5
+ containerClassName?: string;
6
+ }) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const CardBody: ({ children, className, }: {
8
+ children: React.ReactNode;
9
+ className?: string;
10
+ }) => import("react/jsx-runtime").JSX.Element;
11
+ export declare const CardItem: ({ as: Tag, children, className, translateX, translateY, translateZ, rotateX, rotateY, rotateZ, ...rest }: {
12
+ as?: React.ElementType;
13
+ children: React.ReactNode;
14
+ className?: string;
15
+ translateX?: number | string;
16
+ translateY?: number | string;
17
+ translateZ?: number | string;
18
+ rotateX?: number | string;
19
+ rotateY?: number | string;
20
+ rotateZ?: number | string;
21
+ [key: string]: any;
22
+ }) => import("react/jsx-runtime").JSX.Element;
23
+ export declare const useMouseEnter: () => [boolean, React.Dispatch<React.SetStateAction<boolean>>];
@@ -0,0 +1,12 @@
1
+ import { default as React } from 'react';
2
+ export declare const PinContainer: ({ children, title, href, className, containerClassName, }: {
3
+ children: React.ReactNode;
4
+ title?: string;
5
+ href?: string;
6
+ className?: string;
7
+ containerClassName?: string;
8
+ }) => import("react/jsx-runtime").JSX.Element;
9
+ export declare const PinPerspective: ({ title, href, }: {
10
+ title?: string;
11
+ href?: string;
12
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+ export declare const BoxesCore: ({ className, ...rest }: {
3
+ className?: string;
4
+ }) => import("react/jsx-runtime").JSX.Element;
5
+ export declare const Boxes: React.MemoExoticComponent<({ className, ...rest }: {
6
+ className?: string;
7
+ }) => import("react/jsx-runtime").JSX.Element>;
@@ -0,0 +1,16 @@
1
+ export declare const BackgroundGradientAnimation: ({ gradientBackgroundStart, gradientBackgroundEnd, firstColor, secondColor, thirdColor, fourthColor, fifthColor, pointerColor, size, blendingValue, children, className, interactive, containerClassName, }: {
2
+ gradientBackgroundStart?: string;
3
+ gradientBackgroundEnd?: string;
4
+ firstColor?: string;
5
+ secondColor?: string;
6
+ thirdColor?: string;
7
+ fourthColor?: string;
8
+ fifthColor?: string;
9
+ pointerColor?: string;
10
+ size?: string;
11
+ blendingValue?: string;
12
+ children?: React.ReactNode;
13
+ className?: string;
14
+ interactive?: boolean;
15
+ containerClassName?: string;
16
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,11 @@
1
+ export declare const BentoGrid: ({ className, children, }: {
2
+ className?: string;
3
+ children?: React.ReactNode;
4
+ }) => import("react/jsx-runtime").JSX.Element;
5
+ export declare const BentoGridItem: ({ className, title, description, header, icon, }: {
6
+ className?: string;
7
+ title?: string | React.ReactNode;
8
+ description?: string | React.ReactNode;
9
+ header?: React.ReactNode;
10
+ icon?: React.ReactNode;
11
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,10 @@
1
+ import { VariantProps } from 'class-variance-authority';
2
+ import * as React from "react";
3
+ declare const buttonVariants: (props?: ({
4
+ variant?: "link" | "default" | "outline" | "destructive" | "secondary" | "ghost" | null | undefined;
5
+ size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
6
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
7
+ declare function Button({ className, variant, size, asChild, ...props }: React.ComponentProps<"button"> & VariantProps<typeof buttonVariants> & {
8
+ asChild?: boolean;
9
+ }): import("react/jsx-runtime").JSX.Element;
10
+ export { Button, buttonVariants };
@@ -0,0 +1,5 @@
1
+ export declare const LayoutTextFlip: ({ text, words, duration, }: {
2
+ text: string;
3
+ words: string[];
4
+ duration?: number;
5
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,13 @@
1
+ import { Button } from './button';
2
+ import * as React from "react";
3
+ declare function Pagination({ className, ...props }: React.ComponentProps<"nav">): import("react/jsx-runtime").JSX.Element;
4
+ declare function PaginationContent({ className, ...props }: React.ComponentProps<"ul">): import("react/jsx-runtime").JSX.Element;
5
+ declare function PaginationItem({ ...props }: React.ComponentProps<"li">): import("react/jsx-runtime").JSX.Element;
6
+ type PaginationLinkProps = {
7
+ isActive?: boolean;
8
+ } & Pick<React.ComponentProps<typeof Button>, "size"> & React.ComponentProps<"a">;
9
+ declare function PaginationLink({ className, isActive, size, ...props }: PaginationLinkProps): import("react/jsx-runtime").JSX.Element;
10
+ declare function PaginationPrevious({ className, ...props }: React.ComponentProps<typeof PaginationLink>): import("react/jsx-runtime").JSX.Element;
11
+ declare function PaginationNext({ className, ...props }: React.ComponentProps<typeof PaginationLink>): import("react/jsx-runtime").JSX.Element;
12
+ declare function PaginationEllipsis({ className, ...props }: React.ComponentProps<"span">): import("react/jsx-runtime").JSX.Element;
13
+ export { Pagination, PaginationContent, PaginationLink, PaginationItem, PaginationPrevious, PaginationNext, PaginationEllipsis, };
@@ -0,0 +1,14 @@
1
+ import { default as React } from 'react';
2
+ interface ShootingStarsProps {
3
+ minSpeed?: number;
4
+ maxSpeed?: number;
5
+ minDelay?: number;
6
+ maxDelay?: number;
7
+ starColor?: string;
8
+ trailColor?: string;
9
+ starWidth?: number;
10
+ starHeight?: number;
11
+ className?: string;
12
+ }
13
+ export declare const ShootingStars: React.FC<ShootingStarsProps>;
14
+ export {};
@@ -0,0 +1,13 @@
1
+ type SpotlightProps = {
2
+ gradientFirst?: string;
3
+ gradientSecond?: string;
4
+ gradientThird?: string;
5
+ translateY?: number;
6
+ width?: number;
7
+ height?: number;
8
+ smallWidth?: number;
9
+ duration?: number;
10
+ xOffset?: number;
11
+ };
12
+ export declare const Spotlight: ({ gradientFirst, gradientSecond, gradientThird, translateY, width, height, smallWidth, duration, xOffset, }?: SpotlightProps) => import("react/jsx-runtime").JSX.Element;
13
+ export {};
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ type DataStateValue = string | boolean | null;
3
+ declare function useDataState<T extends HTMLElement = HTMLElement>(key: string, forwardedRef?: React.Ref<T | null>, onChange?: (value: DataStateValue) => void): [DataStateValue, React.RefObject<T | null>];
4
+ export { useDataState, type DataStateValue };
@@ -0,0 +1,12 @@
1
+ import { UseInViewOptions } from 'motion/react';
2
+ import * as React from "react";
3
+ interface UseIsInViewOptions {
4
+ inView?: boolean;
5
+ inViewOnce?: boolean;
6
+ inViewMargin?: UseInViewOptions["margin"];
7
+ }
8
+ declare function useIsInView<T extends HTMLElement = HTMLElement>(ref: React.Ref<T>, options?: UseIsInViewOptions): {
9
+ ref: React.RefObject<T | null>;
10
+ isInView: boolean;
11
+ };
12
+ export { useIsInView, type UseIsInViewOptions };
@@ -0,0 +1,48 @@
1
+ import { Variants } from 'framer-motion';
2
+ /**
3
+ * Common animation variants for Framer Motion
4
+ * @module animations
5
+ */
6
+ export declare const fadeIn: Variants;
7
+ export declare const fadeOut: Variants;
8
+ export declare const itemVariants: Variants;
9
+ export declare const itemSlideLeft: Variants;
10
+ export declare const itemSlideRight: Variants;
11
+ export declare const containerVariants: Variants;
12
+ export declare const containerFast: Variants;
13
+ export declare const containerSlow: Variants;
14
+ export declare const scaleIn: Variants;
15
+ export declare const scaleOut: Variants;
16
+ export declare const cardHover: {
17
+ scale: number;
18
+ transition: {
19
+ duration: number;
20
+ };
21
+ };
22
+ export declare const cardTap: {
23
+ scale: number;
24
+ transition: {
25
+ duration: number;
26
+ };
27
+ };
28
+ export declare const modalBackdrop: Variants;
29
+ export declare const modalContent: Variants;
30
+ export declare const slideInFromTop: Variants;
31
+ export declare const slideInFromBottom: Variants;
32
+ export declare const slideInFromLeft: Variants;
33
+ export declare const slideInFromRight: Variants;
34
+ export declare const pageTransition: Variants;
35
+ /**
36
+ * Create a custom stagger container with specific timing
37
+ */
38
+ export declare const createStaggerContainer: (staggerChildren?: number, delayChildren?: number) => Variants;
39
+ /**
40
+ * Create a custom item variant with specific offset
41
+ */
42
+ export declare const createItemVariant: (offset?: {
43
+ x?: number;
44
+ y?: number;
45
+ }, springConfig?: {
46
+ stiffness?: number;
47
+ damping?: number;
48
+ }) => Variants;
@@ -0,0 +1,10 @@
1
+ import { default as React } from 'react';
2
+ import { McpActivationProgress } from '../types/bohrium';
3
+ interface McpActivationProgressProps {
4
+ progress: McpActivationProgress;
5
+ onRetry?: () => void;
6
+ onClose?: () => void;
7
+ className?: string;
8
+ }
9
+ declare const McpActivationProgressComponent: React.FC<McpActivationProgressProps>;
10
+ export default McpActivationProgressComponent;
@@ -0,0 +1,9 @@
1
+ import { ExplorableMcpServer } from '../../types/mcp';
2
+ import { default as React } from 'react';
3
+ interface McpServerCardProps {
4
+ server: ExplorableMcpServer;
5
+ isStarred?: boolean;
6
+ onClick?: () => void;
7
+ }
8
+ declare const McpServerCard: React.FC<McpServerCardProps>;
9
+ export default McpServerCard;
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+ interface McpServerDetailProps {
3
+ appKey: string;
4
+ onBack?: () => void;
5
+ }
6
+ declare const McpServerDetail: React.FC<McpServerDetailProps>;
7
+ export default McpServerDetail;
@@ -0,0 +1,8 @@
1
+ import { ExplorableMcpServer } from '../../types/mcp';
2
+ import { default as React } from 'react';
3
+ interface UnifiedMcpMarketListProps {
4
+ builtinServers: ExplorableMcpServer[];
5
+ onSelectServer?: (server: ExplorableMcpServer) => void;
6
+ }
7
+ declare const UnifiedMcpMarketList: React.FC<UnifiedMcpMarketListProps>;
8
+ export default UnifiedMcpMarketList;