pxengine 0.1.58 → 0.1.60

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -730,116 +730,6 @@ interface CreatorActionHeaderMolecule extends BaseMolecule {
730
730
  action?: string;
731
731
  }>;
732
732
  }
733
- interface ToolListCardMolecule extends BaseMolecule {
734
- type: "tool-list";
735
- tools: Array<{
736
- name: string;
737
- display_name?: string;
738
- description?: string;
739
- category?: string;
740
- /** Lucide icon name (e.g. "Search", "BookOpen"). Falls back to category-based icon. */
741
- icon?: string;
742
- }>;
743
- }
744
- interface AgentCardMolecule extends BaseMolecule {
745
- type: "agent-card";
746
- agent: {
747
- name: string;
748
- display_name: string;
749
- description: string;
750
- image: string | null;
751
- tools: string[];
752
- model: string;
753
- enabled: boolean;
754
- agent_id?: string;
755
- };
756
- editable?: boolean;
757
- compact?: boolean;
758
- }
759
- interface AgentDataTableMolecule extends BaseMolecule {
760
- type: "agent-data-table";
761
- headers: string[];
762
- rows: (string | number | boolean)[][];
763
- }
764
- interface WorkflowVisualizerMolecule extends BaseMolecule {
765
- type: "workflow";
766
- steps: Array<{
767
- id: string;
768
- name: string;
769
- description?: string;
770
- tools?: string[];
771
- sub_steps?: Array<{
772
- id: string;
773
- action: string;
774
- }>;
775
- on_failure?: string;
776
- next?: string | null;
777
- }>;
778
- }
779
- interface InstructionPreviewMolecule extends BaseMolecule {
780
- type: "instruction-preview";
781
- agent_name: string;
782
- description?: string;
783
- instruction: string;
784
- workflow_summary?: string[];
785
- tools?: string[];
786
- }
787
- interface UIComponentSelectorMolecule extends BaseMolecule {
788
- type: "ui-component-selector";
789
- components: Array<{
790
- name: string;
791
- display_name: string;
792
- description: string;
793
- category: string;
794
- recommended?: boolean;
795
- }>;
796
- isLatestMessage?: boolean;
797
- }
798
- interface MultiAgentCardMolecule extends BaseMolecule {
799
- type: "multi-agent-card";
800
- name: string;
801
- display_name: string;
802
- description: string;
803
- workflow_type: "multi_agent";
804
- stages: Array<{
805
- name: string;
806
- agent_name: string;
807
- tools?: string[];
808
- ui_components?: string[];
809
- }>;
810
- enabled: boolean;
811
- agent_id?: string;
812
- }
813
- interface MultiAgentPlanMolecule extends BaseMolecule {
814
- type: "multi-agent-plan";
815
- stages: Array<{
816
- name: string;
817
- description: string;
818
- proposed_tools?: string[];
819
- }>;
820
- }
821
- interface MultiAgentUISelectorMolecule extends BaseMolecule {
822
- type: "multi-agent-ui-selector";
823
- stages: Array<{
824
- id: string;
825
- name: string;
826
- agent_name: string;
827
- recommended_components?: string[];
828
- }>;
829
- components: Array<{
830
- name: string;
831
- display_name: string;
832
- description: string;
833
- category: string;
834
- recommended?: boolean;
835
- }>;
836
- isLatestMessage?: boolean;
837
- }
838
- interface StageIndicatorMolecule extends BaseMolecule {
839
- type: "stage-indicator";
840
- stage_name: string;
841
- agent_name: string;
842
- }
843
733
  interface SocialPostMolecule extends BaseMolecule {
844
734
  type: "social-post";
845
735
  topic: string;
@@ -902,7 +792,7 @@ interface GitHubIssueTrackerMolecule extends BaseMolecule {
902
792
  days_stale: number;
903
793
  }>;
904
794
  }
905
- type UIMolecule = CampaignSeedCardAtom | SearchSpecCardAtom | MCQCardAtom | ActionButtonAtom | StatsGridMolecule | EmptyStateMolecule | LoadingOverlayMolecule | PlatformIconGroupMolecule | CreatorProfileSummaryMolecule | AudienceMetricCardMolecule | FilterBarMolecule | FileUploadMolecule | TagCloudMolecule | CreatorGridCardMolecule | BrandAffinityGroupMolecule | ContentPreviewGalleryMolecule | DataGridMolecule | StepWizardMolecule | NotificationListMolecule | AudienceDemographicsCardMolecule | GrowthChartCardMolecule | TopPostsGridMolecule | CreatorActionHeaderMolecule | ToolListCardMolecule | AgentCardMolecule | AgentDataTableMolecule | WorkflowVisualizerMolecule | InstructionPreviewMolecule | UIComponentSelectorMolecule | MultiAgentCardMolecule | MultiAgentPlanMolecule | MultiAgentUISelectorMolecule | StageIndicatorMolecule | SocialPostMolecule | CreatorWidgetMolecule | GitHubConnectMolecule | GitHubRepoHealthMolecule | GitHubIssueTrackerMolecule | RecommendationCardMolecule | ConfirmationCardMolecule;
795
+ type UIMolecule = CampaignSeedCardAtom | SearchSpecCardAtom | MCQCardAtom | ActionButtonAtom | StatsGridMolecule | EmptyStateMolecule | LoadingOverlayMolecule | PlatformIconGroupMolecule | CreatorProfileSummaryMolecule | AudienceMetricCardMolecule | FilterBarMolecule | FileUploadMolecule | TagCloudMolecule | CreatorGridCardMolecule | BrandAffinityGroupMolecule | ContentPreviewGalleryMolecule | DataGridMolecule | StepWizardMolecule | NotificationListMolecule | AudienceDemographicsCardMolecule | GrowthChartCardMolecule | TopPostsGridMolecule | CreatorActionHeaderMolecule | SocialPostMolecule | CreatorWidgetMolecule | GitHubConnectMolecule | GitHubRepoHealthMolecule | GitHubIssueTrackerMolecule | RecommendationCardMolecule | ConfirmationCardMolecule;
906
796
 
907
797
  type UIComponent = UIAtom | UIMolecule;
908
798
  interface UISchema {
@@ -1548,7 +1438,9 @@ declare const BreadcrumbAtom: React__default.FC<BreadcrumbAtomType>;
1548
1438
 
1549
1439
  declare const SpinnerAtom: React__default.FC<SpinnerAtomType>;
1550
1440
 
1551
- declare const CalendarAtom: React__default.FC<CalendarAtomType>;
1441
+ declare const CalendarAtom: React__default.FC<CalendarAtomType & {
1442
+ style?: React__default.CSSProperties;
1443
+ }>;
1552
1444
 
1553
1445
  declare const PaginationAtom: React__default.FC<PaginationAtomType>;
1554
1446
 
@@ -1957,6 +1849,7 @@ declare const FormCard: React__default.NamedExoticComponent<FormCardProps>;
1957
1849
  */
1958
1850
  declare const StatsGrid: React__default.FC<StatsGridMolecule & {
1959
1851
  stats?: any[];
1852
+ style?: React__default.CSSProperties;
1960
1853
  }>;
1961
1854
 
1962
1855
  /**
@@ -1988,6 +1881,7 @@ declare const FilterBar: React__default.FC<FilterBarMolecule & {
1988
1881
  */
1989
1882
  declare const FileUpload: React__default.FC<FileUploadMolecule & {
1990
1883
  onFilesSelected?: (files: File[]) => void;
1884
+ style?: React__default.CSSProperties;
1991
1885
  }>;
1992
1886
 
1993
1887
  /**
@@ -2772,99 +2666,4 @@ declare function CreatorImageList({ creatorImages, creatorLength, isAgentOutput,
2772
2666
 
2773
2667
  declare function CreatorProgressBar({ statusDetails, timeRemaining: _timeRemaining, }: CreatorProgressBarProps): react_jsx_runtime.JSX.Element;
2774
2668
 
2775
- /**
2776
- * ToolListCard
2777
- *
2778
- * Renders a grouped list of agent tools with icons and description.
2779
- * Icons are data-driven: each tool can specify an `icon` field (lucide name),
2780
- * falling back to category-based icons, then a generic wrench.
2781
- */
2782
- declare const ToolListCard: React__default.FC<ToolListCardMolecule>;
2783
-
2784
- type AgentData = AgentCardMolecule["agent"];
2785
- interface AgentCardProps extends Omit<AgentCardMolecule, "id" | "type"> {
2786
- onSave?: (agent: AgentData, updates: Record<string, any>) => Promise<void>;
2787
- className?: string;
2788
- }
2789
- /**
2790
- * AgentCard
2791
- *
2792
- * Displays an agent configuration with avatar, metadata, tools, and status.
2793
- * Supports inline editing when `editable` is true and `onSave` is provided.
2794
- * Generic — the parent injects save logic via `onSave`, so it works in any context.
2795
- */
2796
- declare const AgentCard: React__default.FC<AgentCardProps>;
2797
-
2798
- /**
2799
- * AgentDataTable
2800
- *
2801
- * A clean table for displaying structured data from agent builder responses.
2802
- * Renders boolean values as colored indicators and handles overflow gracefully.
2803
- */
2804
- declare const AgentDataTable: React__default.FC<AgentDataTableMolecule>;
2805
-
2806
- /**
2807
- * WorkflowVisualizer
2808
- *
2809
- * Renders agent workflow steps as a vertical flow with connected cards.
2810
- * Each step shows sub-steps, tools used, and failure handling.
2811
- */
2812
- declare const WorkflowVisualizer: React__default.FC<WorkflowVisualizerMolecule>;
2813
-
2814
- /**
2815
- * InstructionPreview
2816
- *
2817
- * Renders a structured preview of an agent's instruction/prompt.
2818
- * Shows agent name, description, collapsible instruction text,
2819
- * workflow summary, and tool list.
2820
- */
2821
- declare const InstructionPreview: React__default.FC<InstructionPreviewMolecule>;
2822
-
2823
- interface UIComponentSelectorProps extends UIComponentSelectorMolecule {
2824
- onSelect?: (selectedComponents: string[]) => void;
2825
- onPreview?: (componentName: string) => void;
2826
- }
2827
- declare function UIComponentSelector({ components, onSelect, onPreview, className, isLatestMessage, }: UIComponentSelectorProps): react_jsx_runtime.JSX.Element;
2828
-
2829
- interface MultiAgentCardProps extends Omit<MultiAgentCardMolecule, "id" | "type"> {
2830
- className?: string;
2831
- }
2832
- /**
2833
- * MultiAgentCard
2834
- *
2835
- * Displays a multi-agent workflow configuration: workflow name, description,
2836
- * stages as connected cards with tool/component counts, and status badge.
2837
- */
2838
- declare const MultiAgentCard: React__default.FC<MultiAgentCardProps>;
2839
-
2840
- interface MultiAgentPlanProps extends Omit<MultiAgentPlanMolecule, "id" | "type"> {
2841
- className?: string;
2842
- }
2843
- /**
2844
- * MultiAgentPlan
2845
- *
2846
- * Visual plan preview showing proposed stages before the admin commits.
2847
- * Displays stage names, descriptions, and proposed tools in a connected flow.
2848
- */
2849
- declare const MultiAgentPlan: React__default.FC<MultiAgentPlanProps>;
2850
-
2851
- interface MultiAgentUISelectorProps extends Omit<MultiAgentUISelectorMolecule, "id" | "type"> {
2852
- onSelect?: (stageSelections: Record<string, string[]>) => void;
2853
- onPreview?: (componentName: string) => void;
2854
- className?: string;
2855
- isLatestMessage?: boolean;
2856
- }
2857
- declare const MultiAgentUISelector: React__default.FC<MultiAgentUISelectorProps>;
2858
-
2859
- interface StageIndicatorProps extends Omit<StageIndicatorMolecule, "id" | "type"> {
2860
- className?: string;
2861
- }
2862
- /**
2863
- * StageIndicator
2864
- *
2865
- * Client-side inline component showing active stage/agent name with a divider.
2866
- * Displayed between messages when the responding agent changes in a multi-agent workflow.
2867
- */
2868
- declare const StageIndicator: React__default.FC<StageIndicatorProps>;
2869
-
2870
- export { Accordion, AccordionAtom, type AccordionAtomType, AccordionContent, AccordionItem, AccordionTrigger, ActionButton, type ActionButtonAtom, type ActionButtonProps, AgentCard, type AgentCardMolecule, AgentDataTable, type AgentDataTableMolecule, Alert, AlertAtom, type AlertAtomType, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogAtom, type AlertDialogAtomType, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertTitle, ArrowToggleAtom, type ArrowToggleAtomType, AspectRatio, AspectRatioAtom, type AspectRatioAtomType, AudienceDemographicsCard, type AudienceDemographicsCardMolecule, AudienceMetricCard, type AudienceMetricCardMolecule, Avatar, AvatarAtom, type AvatarAtomType, AvatarFallback, AvatarImage, Badge, BadgeAtom, type BadgeAtomType, type BaseAtom, type BaseMolecule, type BranchCI, BrandAffinityGroup, type BrandAffinityGroupMolecule, Breadcrumb, BreadcrumbAtom, type BreadcrumbAtomType, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonAtom, type ButtonAtomType, type ButtonSize$1 as ButtonSize, type ButtonVariant$1 as ButtonVariant, Calendar, CalendarAtom, type CalendarAtomType, CampaignConceptCard, type CampaignConceptCardProps, CampaignSeedCard, type CampaignSeedCardAtom, type CampaignSeedCardProps, Card, CardAtom, type CardAtomType, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselAtom, type CarouselAtomType, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartAtom, type ChartAtomType, type ChartDataPoint, Checkbox, CheckboxAtom, type CheckboxAtomType, Collapsible, CollapsibleAtom, type CollapsibleAtomType, CollapsibleContent, CollapsibleTrigger, Command, CommandAtom, type CommandAtomType, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ConfirmationCard, type ConfirmationCardMolecule, type ConfirmationCardProps, ContentPreviewGallery, type ContentPreviewGalleryMolecule, ContextMenu, ContextMenuAtom, type ContextMenuAtomType, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuTrigger, CountrySelectDisplay, CountrySelectEdit, CreatorActionHeader, type CreatorActionHeaderMolecule, CreatorCompactView, type CreatorCompactViewProps, type CreatorDetailData, CreatorExpandedPanel, CreatorGridCard, type CreatorGridCardMolecule, CreatorImageList, type CreatorImageListProps, CreatorProfileSummary, type CreatorProfileSummaryMolecule, CreatorProgressBar, type CreatorProgressBarProps, CreatorSearch, type CreatorSearchProps, type CreatorVersionData, CreatorWidget, type CreatorWidgetAction, type CreatorWidgetMolecule, type CreatorWidgetProps, CreatorWidgetSkeleton, type CreatorWidgetStatus, DataGrid, type DataGridMolecule, Dialog, DialogAtom, type DialogAtomType, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, Drawer, DrawerAtom, type DrawerAtomType, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuAtom, type DropdownMenuAtomType, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuTrigger, EditableField, type EditableFieldProps, EmptyState, type EmptyStateMolecule, type FetchCreatorDetailsParams, type FetchStatusParams, type FetchVersionsParams, FileUpload, type FileUploadMolecule, FilterBar, type FilterBarMolecule, Form, FormCard, type FormCardProps, FormControl, FormDescription, FormField, FormInputAtom, type FormInputAtomType, FormItem, FormLabel, FormMessage, FormSelectAtom, type FormSelectAtomType, FormTextareaAtom, type FormTextareaAtomType, type GapSize, GitHubConnectCard, type GitHubConnectCardProps, type GitHubConnectMolecule, GitHubIssueTrackerCard, type GitHubIssueTrackerCardProps, type GitHubIssueTrackerMolecule, GitHubRepoHealthCard, type GitHubRepoHealthCardProps, type GitHubRepoHealthMolecule, GitHubReposListCard, type GitHubReposListCardProps, GoogleSheetsCard, type GoogleSheetsCardProps, GoogleSheetsConnectCard, type GoogleSheetsConnectCardProps, GoogleSheetsListCard, type GoogleSheetsListCardProps, GrowthChartCard, type GrowthChartCardMolecule, HoverCard, HoverCardContent, HoverCardTrigger, IconAtom, type IconAtomType, type IconName, Input, InputAtom, type InputAtomType, InputOTP, InputOTPAtom, type InputOTPAtomType, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputType, InstructionPreview, type InstructionPreviewMolecule, KbdAtom, type KbdAtomType, KeywordBundlesDisplay, KeywordBundlesEdit, Label, LabelAtom, type LabelAtomType, LayoutAtom, type LayoutAtomType, type LayoutDirection, LoadingOverlay, type LoadingOverlayMolecule, MCQCard, type MCQCardAtom, type MCQCardProps, type MCQOption, Menubar, MenubarCheckboxItem, MenubarContent, MenubarItem, MenubarLabel, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarTrigger, MultiAgentCard, type MultiAgentCardMolecule, MultiAgentPlan, type MultiAgentPlanMolecule, MultiAgentUISelector, type MultiAgentUISelectorMolecule, NavigationMenu, NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NotificationList, type NotificationListMolecule, PXEngineRenderer, Pagination, PaginationAtom, type PaginationAtomType, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PlatformIconGroup, type PlatformIconGroupMolecule, PlatformSelectDisplay, PlatformSelectEdit, type PollingConfig, Popover, PopoverAtom, type PopoverAtomType, PopoverContent, PopoverTrigger, Progress, ProgressAtom, type ProgressAtomType, type PullRequest, REGISTERED_COMPONENTS, RadioAtom, type RadioAtomType, RadioGroup, RadioGroupAtom, type RadioGroupAtomType, RadioGroupItem, RatingAtom, type RatingAtomType, RecommendationCard, type RecommendationCardMolecule, type RecommendationCardProps, type RepoItem, ResizableAtom, type ResizableAtomType, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollAreaAtom, type ScrollAreaAtomType, ScrollBar, SearchSpecCard, type SearchSpecCardAtom, type SearchSpecCardProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, SeparatorAtom, type SeparatorAtomType, Sheet, SheetAtom, type SheetAtomType, SheetClose, type SheetColumn, SheetContent, SheetDescription, SheetFooter, SheetHeader, type SheetRow, type SheetTabItem, SheetTitle, SheetTrigger, Skeleton, SkeletonAtom, type SkeletonAtomType, Slider, SliderAtom, type SliderAtomType, type SocialPost, SocialPostCard, type SocialPostCardProps, type SocialPostMolecule, Spinner, SpinnerAtom, type SpinnerAtomType, type SpreadsheetItem, StageIndicator, type StageIndicatorMolecule, type StaleIssue, StatsGrid, type StatsGridMolecule, type StatusDetails, StepWizard, type StepWizardMolecule, Switch, SwitchAtom, type SwitchAtomType, Table, TableAtom, type TableAtomType, TableBody, TableCaption, TableCell, TableHead, TableHeader, TableRow, Tabs, TabsAtom, type TabsAtomType, TabsContent, TabsList, TabsTrigger, TagCloud, type TagCloudMolecule, TextAtom, type TextAtomType, type TextVariant, Textarea, TextareaAtom, TimelineAtom, type TimelineAtomType, ToggleAtom, type ToggleAtomType, ToolListCard, type ToolListCardMolecule, Tooltip, TooltipAtom, type TooltipAtomType, TooltipContent, TooltipProvider, TooltipTrigger, TopPostsGrid, type TopPostsGridMolecule, type UIAtom, type UIComponent, UIComponentSelector, type UIComponentSelectorMolecule, type UIMolecule, type UISchema, VideoAtom, type VideoAtomType, WorkflowVisualizer, type WorkflowVisualizerMolecule, cn, defaultFetchSelections, defaultPersistSelection, generateFieldsFromData, generateFieldsFromPropDefinitions, useCreatorWidgetPolling };
2669
+ export { Accordion, AccordionAtom, type AccordionAtomType, AccordionContent, AccordionItem, AccordionTrigger, ActionButton, type ActionButtonAtom, type ActionButtonProps, Alert, AlertAtom, type AlertAtomType, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogAtom, type AlertDialogAtomType, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertTitle, ArrowToggleAtom, type ArrowToggleAtomType, AspectRatio, AspectRatioAtom, type AspectRatioAtomType, AudienceDemographicsCard, type AudienceDemographicsCardMolecule, AudienceMetricCard, type AudienceMetricCardMolecule, Avatar, AvatarAtom, type AvatarAtomType, AvatarFallback, AvatarImage, Badge, BadgeAtom, type BadgeAtomType, type BaseAtom, type BaseMolecule, type BranchCI, BrandAffinityGroup, type BrandAffinityGroupMolecule, Breadcrumb, BreadcrumbAtom, type BreadcrumbAtomType, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonAtom, type ButtonAtomType, type ButtonSize$1 as ButtonSize, type ButtonVariant$1 as ButtonVariant, Calendar, CalendarAtom, type CalendarAtomType, CampaignConceptCard, type CampaignConceptCardProps, CampaignSeedCard, type CampaignSeedCardAtom, type CampaignSeedCardProps, Card, CardAtom, type CardAtomType, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselAtom, type CarouselAtomType, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartAtom, type ChartAtomType, type ChartDataPoint, Checkbox, CheckboxAtom, type CheckboxAtomType, Collapsible, CollapsibleAtom, type CollapsibleAtomType, CollapsibleContent, CollapsibleTrigger, Command, CommandAtom, type CommandAtomType, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ConfirmationCard, type ConfirmationCardMolecule, type ConfirmationCardProps, ContentPreviewGallery, type ContentPreviewGalleryMolecule, ContextMenu, ContextMenuAtom, type ContextMenuAtomType, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuTrigger, CountrySelectDisplay, CountrySelectEdit, CreatorActionHeader, type CreatorActionHeaderMolecule, CreatorCompactView, type CreatorCompactViewProps, type CreatorDetailData, CreatorExpandedPanel, CreatorGridCard, type CreatorGridCardMolecule, CreatorImageList, type CreatorImageListProps, CreatorProfileSummary, type CreatorProfileSummaryMolecule, CreatorProgressBar, type CreatorProgressBarProps, CreatorSearch, type CreatorSearchProps, type CreatorVersionData, CreatorWidget, type CreatorWidgetAction, type CreatorWidgetMolecule, type CreatorWidgetProps, CreatorWidgetSkeleton, type CreatorWidgetStatus, DataGrid, type DataGridMolecule, Dialog, DialogAtom, type DialogAtomType, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, Drawer, DrawerAtom, type DrawerAtomType, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuAtom, type DropdownMenuAtomType, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuTrigger, EditableField, type EditableFieldProps, EmptyState, type EmptyStateMolecule, type FetchCreatorDetailsParams, type FetchStatusParams, type FetchVersionsParams, FileUpload, type FileUploadMolecule, FilterBar, type FilterBarMolecule, Form, FormCard, type FormCardProps, FormControl, FormDescription, FormField, FormInputAtom, type FormInputAtomType, FormItem, FormLabel, FormMessage, FormSelectAtom, type FormSelectAtomType, FormTextareaAtom, type FormTextareaAtomType, type GapSize, GitHubConnectCard, type GitHubConnectCardProps, type GitHubConnectMolecule, GitHubIssueTrackerCard, type GitHubIssueTrackerCardProps, type GitHubIssueTrackerMolecule, GitHubRepoHealthCard, type GitHubRepoHealthCardProps, type GitHubRepoHealthMolecule, GitHubReposListCard, type GitHubReposListCardProps, GoogleSheetsCard, type GoogleSheetsCardProps, GoogleSheetsConnectCard, type GoogleSheetsConnectCardProps, GoogleSheetsListCard, type GoogleSheetsListCardProps, GrowthChartCard, type GrowthChartCardMolecule, HoverCard, HoverCardContent, HoverCardTrigger, IconAtom, type IconAtomType, type IconName, Input, InputAtom, type InputAtomType, InputOTP, InputOTPAtom, type InputOTPAtomType, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputType, KbdAtom, type KbdAtomType, KeywordBundlesDisplay, KeywordBundlesEdit, Label, LabelAtom, type LabelAtomType, LayoutAtom, type LayoutAtomType, type LayoutDirection, LoadingOverlay, type LoadingOverlayMolecule, MCQCard, type MCQCardAtom, type MCQCardProps, type MCQOption, Menubar, MenubarCheckboxItem, MenubarContent, MenubarItem, MenubarLabel, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NotificationList, type NotificationListMolecule, PXEngineRenderer, Pagination, PaginationAtom, type PaginationAtomType, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PlatformIconGroup, type PlatformIconGroupMolecule, PlatformSelectDisplay, PlatformSelectEdit, type PollingConfig, Popover, PopoverAtom, type PopoverAtomType, PopoverContent, PopoverTrigger, Progress, ProgressAtom, type ProgressAtomType, type PullRequest, REGISTERED_COMPONENTS, RadioAtom, type RadioAtomType, RadioGroup, RadioGroupAtom, type RadioGroupAtomType, RadioGroupItem, RatingAtom, type RatingAtomType, RecommendationCard, type RecommendationCardMolecule, type RecommendationCardProps, type RepoItem, ResizableAtom, type ResizableAtomType, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollAreaAtom, type ScrollAreaAtomType, ScrollBar, SearchSpecCard, type SearchSpecCardAtom, type SearchSpecCardProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, SeparatorAtom, type SeparatorAtomType, Sheet, SheetAtom, type SheetAtomType, SheetClose, type SheetColumn, SheetContent, SheetDescription, SheetFooter, SheetHeader, type SheetRow, type SheetTabItem, SheetTitle, SheetTrigger, Skeleton, SkeletonAtom, type SkeletonAtomType, Slider, SliderAtom, type SliderAtomType, type SocialPost, SocialPostCard, type SocialPostCardProps, type SocialPostMolecule, Spinner, SpinnerAtom, type SpinnerAtomType, type SpreadsheetItem, type StaleIssue, StatsGrid, type StatsGridMolecule, type StatusDetails, StepWizard, type StepWizardMolecule, Switch, SwitchAtom, type SwitchAtomType, Table, TableAtom, type TableAtomType, TableBody, TableCaption, TableCell, TableHead, TableHeader, TableRow, Tabs, TabsAtom, type TabsAtomType, TabsContent, TabsList, TabsTrigger, TagCloud, type TagCloudMolecule, TextAtom, type TextAtomType, type TextVariant, Textarea, TextareaAtom, TimelineAtom, type TimelineAtomType, ToggleAtom, type ToggleAtomType, Tooltip, TooltipAtom, type TooltipAtomType, TooltipContent, TooltipProvider, TooltipTrigger, TopPostsGrid, type TopPostsGridMolecule, type UIAtom, type UIComponent, type UIMolecule, type UISchema, VideoAtom, type VideoAtomType, cn, defaultFetchSelections, defaultPersistSelection, generateFieldsFromData, generateFieldsFromPropDefinitions, useCreatorWidgetPolling };
package/dist/index.d.ts CHANGED
@@ -730,116 +730,6 @@ interface CreatorActionHeaderMolecule extends BaseMolecule {
730
730
  action?: string;
731
731
  }>;
732
732
  }
733
- interface ToolListCardMolecule extends BaseMolecule {
734
- type: "tool-list";
735
- tools: Array<{
736
- name: string;
737
- display_name?: string;
738
- description?: string;
739
- category?: string;
740
- /** Lucide icon name (e.g. "Search", "BookOpen"). Falls back to category-based icon. */
741
- icon?: string;
742
- }>;
743
- }
744
- interface AgentCardMolecule extends BaseMolecule {
745
- type: "agent-card";
746
- agent: {
747
- name: string;
748
- display_name: string;
749
- description: string;
750
- image: string | null;
751
- tools: string[];
752
- model: string;
753
- enabled: boolean;
754
- agent_id?: string;
755
- };
756
- editable?: boolean;
757
- compact?: boolean;
758
- }
759
- interface AgentDataTableMolecule extends BaseMolecule {
760
- type: "agent-data-table";
761
- headers: string[];
762
- rows: (string | number | boolean)[][];
763
- }
764
- interface WorkflowVisualizerMolecule extends BaseMolecule {
765
- type: "workflow";
766
- steps: Array<{
767
- id: string;
768
- name: string;
769
- description?: string;
770
- tools?: string[];
771
- sub_steps?: Array<{
772
- id: string;
773
- action: string;
774
- }>;
775
- on_failure?: string;
776
- next?: string | null;
777
- }>;
778
- }
779
- interface InstructionPreviewMolecule extends BaseMolecule {
780
- type: "instruction-preview";
781
- agent_name: string;
782
- description?: string;
783
- instruction: string;
784
- workflow_summary?: string[];
785
- tools?: string[];
786
- }
787
- interface UIComponentSelectorMolecule extends BaseMolecule {
788
- type: "ui-component-selector";
789
- components: Array<{
790
- name: string;
791
- display_name: string;
792
- description: string;
793
- category: string;
794
- recommended?: boolean;
795
- }>;
796
- isLatestMessage?: boolean;
797
- }
798
- interface MultiAgentCardMolecule extends BaseMolecule {
799
- type: "multi-agent-card";
800
- name: string;
801
- display_name: string;
802
- description: string;
803
- workflow_type: "multi_agent";
804
- stages: Array<{
805
- name: string;
806
- agent_name: string;
807
- tools?: string[];
808
- ui_components?: string[];
809
- }>;
810
- enabled: boolean;
811
- agent_id?: string;
812
- }
813
- interface MultiAgentPlanMolecule extends BaseMolecule {
814
- type: "multi-agent-plan";
815
- stages: Array<{
816
- name: string;
817
- description: string;
818
- proposed_tools?: string[];
819
- }>;
820
- }
821
- interface MultiAgentUISelectorMolecule extends BaseMolecule {
822
- type: "multi-agent-ui-selector";
823
- stages: Array<{
824
- id: string;
825
- name: string;
826
- agent_name: string;
827
- recommended_components?: string[];
828
- }>;
829
- components: Array<{
830
- name: string;
831
- display_name: string;
832
- description: string;
833
- category: string;
834
- recommended?: boolean;
835
- }>;
836
- isLatestMessage?: boolean;
837
- }
838
- interface StageIndicatorMolecule extends BaseMolecule {
839
- type: "stage-indicator";
840
- stage_name: string;
841
- agent_name: string;
842
- }
843
733
  interface SocialPostMolecule extends BaseMolecule {
844
734
  type: "social-post";
845
735
  topic: string;
@@ -902,7 +792,7 @@ interface GitHubIssueTrackerMolecule extends BaseMolecule {
902
792
  days_stale: number;
903
793
  }>;
904
794
  }
905
- type UIMolecule = CampaignSeedCardAtom | SearchSpecCardAtom | MCQCardAtom | ActionButtonAtom | StatsGridMolecule | EmptyStateMolecule | LoadingOverlayMolecule | PlatformIconGroupMolecule | CreatorProfileSummaryMolecule | AudienceMetricCardMolecule | FilterBarMolecule | FileUploadMolecule | TagCloudMolecule | CreatorGridCardMolecule | BrandAffinityGroupMolecule | ContentPreviewGalleryMolecule | DataGridMolecule | StepWizardMolecule | NotificationListMolecule | AudienceDemographicsCardMolecule | GrowthChartCardMolecule | TopPostsGridMolecule | CreatorActionHeaderMolecule | ToolListCardMolecule | AgentCardMolecule | AgentDataTableMolecule | WorkflowVisualizerMolecule | InstructionPreviewMolecule | UIComponentSelectorMolecule | MultiAgentCardMolecule | MultiAgentPlanMolecule | MultiAgentUISelectorMolecule | StageIndicatorMolecule | SocialPostMolecule | CreatorWidgetMolecule | GitHubConnectMolecule | GitHubRepoHealthMolecule | GitHubIssueTrackerMolecule | RecommendationCardMolecule | ConfirmationCardMolecule;
795
+ type UIMolecule = CampaignSeedCardAtom | SearchSpecCardAtom | MCQCardAtom | ActionButtonAtom | StatsGridMolecule | EmptyStateMolecule | LoadingOverlayMolecule | PlatformIconGroupMolecule | CreatorProfileSummaryMolecule | AudienceMetricCardMolecule | FilterBarMolecule | FileUploadMolecule | TagCloudMolecule | CreatorGridCardMolecule | BrandAffinityGroupMolecule | ContentPreviewGalleryMolecule | DataGridMolecule | StepWizardMolecule | NotificationListMolecule | AudienceDemographicsCardMolecule | GrowthChartCardMolecule | TopPostsGridMolecule | CreatorActionHeaderMolecule | SocialPostMolecule | CreatorWidgetMolecule | GitHubConnectMolecule | GitHubRepoHealthMolecule | GitHubIssueTrackerMolecule | RecommendationCardMolecule | ConfirmationCardMolecule;
906
796
 
907
797
  type UIComponent = UIAtom | UIMolecule;
908
798
  interface UISchema {
@@ -1548,7 +1438,9 @@ declare const BreadcrumbAtom: React__default.FC<BreadcrumbAtomType>;
1548
1438
 
1549
1439
  declare const SpinnerAtom: React__default.FC<SpinnerAtomType>;
1550
1440
 
1551
- declare const CalendarAtom: React__default.FC<CalendarAtomType>;
1441
+ declare const CalendarAtom: React__default.FC<CalendarAtomType & {
1442
+ style?: React__default.CSSProperties;
1443
+ }>;
1552
1444
 
1553
1445
  declare const PaginationAtom: React__default.FC<PaginationAtomType>;
1554
1446
 
@@ -1957,6 +1849,7 @@ declare const FormCard: React__default.NamedExoticComponent<FormCardProps>;
1957
1849
  */
1958
1850
  declare const StatsGrid: React__default.FC<StatsGridMolecule & {
1959
1851
  stats?: any[];
1852
+ style?: React__default.CSSProperties;
1960
1853
  }>;
1961
1854
 
1962
1855
  /**
@@ -1988,6 +1881,7 @@ declare const FilterBar: React__default.FC<FilterBarMolecule & {
1988
1881
  */
1989
1882
  declare const FileUpload: React__default.FC<FileUploadMolecule & {
1990
1883
  onFilesSelected?: (files: File[]) => void;
1884
+ style?: React__default.CSSProperties;
1991
1885
  }>;
1992
1886
 
1993
1887
  /**
@@ -2772,99 +2666,4 @@ declare function CreatorImageList({ creatorImages, creatorLength, isAgentOutput,
2772
2666
 
2773
2667
  declare function CreatorProgressBar({ statusDetails, timeRemaining: _timeRemaining, }: CreatorProgressBarProps): react_jsx_runtime.JSX.Element;
2774
2668
 
2775
- /**
2776
- * ToolListCard
2777
- *
2778
- * Renders a grouped list of agent tools with icons and description.
2779
- * Icons are data-driven: each tool can specify an `icon` field (lucide name),
2780
- * falling back to category-based icons, then a generic wrench.
2781
- */
2782
- declare const ToolListCard: React__default.FC<ToolListCardMolecule>;
2783
-
2784
- type AgentData = AgentCardMolecule["agent"];
2785
- interface AgentCardProps extends Omit<AgentCardMolecule, "id" | "type"> {
2786
- onSave?: (agent: AgentData, updates: Record<string, any>) => Promise<void>;
2787
- className?: string;
2788
- }
2789
- /**
2790
- * AgentCard
2791
- *
2792
- * Displays an agent configuration with avatar, metadata, tools, and status.
2793
- * Supports inline editing when `editable` is true and `onSave` is provided.
2794
- * Generic — the parent injects save logic via `onSave`, so it works in any context.
2795
- */
2796
- declare const AgentCard: React__default.FC<AgentCardProps>;
2797
-
2798
- /**
2799
- * AgentDataTable
2800
- *
2801
- * A clean table for displaying structured data from agent builder responses.
2802
- * Renders boolean values as colored indicators and handles overflow gracefully.
2803
- */
2804
- declare const AgentDataTable: React__default.FC<AgentDataTableMolecule>;
2805
-
2806
- /**
2807
- * WorkflowVisualizer
2808
- *
2809
- * Renders agent workflow steps as a vertical flow with connected cards.
2810
- * Each step shows sub-steps, tools used, and failure handling.
2811
- */
2812
- declare const WorkflowVisualizer: React__default.FC<WorkflowVisualizerMolecule>;
2813
-
2814
- /**
2815
- * InstructionPreview
2816
- *
2817
- * Renders a structured preview of an agent's instruction/prompt.
2818
- * Shows agent name, description, collapsible instruction text,
2819
- * workflow summary, and tool list.
2820
- */
2821
- declare const InstructionPreview: React__default.FC<InstructionPreviewMolecule>;
2822
-
2823
- interface UIComponentSelectorProps extends UIComponentSelectorMolecule {
2824
- onSelect?: (selectedComponents: string[]) => void;
2825
- onPreview?: (componentName: string) => void;
2826
- }
2827
- declare function UIComponentSelector({ components, onSelect, onPreview, className, isLatestMessage, }: UIComponentSelectorProps): react_jsx_runtime.JSX.Element;
2828
-
2829
- interface MultiAgentCardProps extends Omit<MultiAgentCardMolecule, "id" | "type"> {
2830
- className?: string;
2831
- }
2832
- /**
2833
- * MultiAgentCard
2834
- *
2835
- * Displays a multi-agent workflow configuration: workflow name, description,
2836
- * stages as connected cards with tool/component counts, and status badge.
2837
- */
2838
- declare const MultiAgentCard: React__default.FC<MultiAgentCardProps>;
2839
-
2840
- interface MultiAgentPlanProps extends Omit<MultiAgentPlanMolecule, "id" | "type"> {
2841
- className?: string;
2842
- }
2843
- /**
2844
- * MultiAgentPlan
2845
- *
2846
- * Visual plan preview showing proposed stages before the admin commits.
2847
- * Displays stage names, descriptions, and proposed tools in a connected flow.
2848
- */
2849
- declare const MultiAgentPlan: React__default.FC<MultiAgentPlanProps>;
2850
-
2851
- interface MultiAgentUISelectorProps extends Omit<MultiAgentUISelectorMolecule, "id" | "type"> {
2852
- onSelect?: (stageSelections: Record<string, string[]>) => void;
2853
- onPreview?: (componentName: string) => void;
2854
- className?: string;
2855
- isLatestMessage?: boolean;
2856
- }
2857
- declare const MultiAgentUISelector: React__default.FC<MultiAgentUISelectorProps>;
2858
-
2859
- interface StageIndicatorProps extends Omit<StageIndicatorMolecule, "id" | "type"> {
2860
- className?: string;
2861
- }
2862
- /**
2863
- * StageIndicator
2864
- *
2865
- * Client-side inline component showing active stage/agent name with a divider.
2866
- * Displayed between messages when the responding agent changes in a multi-agent workflow.
2867
- */
2868
- declare const StageIndicator: React__default.FC<StageIndicatorProps>;
2869
-
2870
- export { Accordion, AccordionAtom, type AccordionAtomType, AccordionContent, AccordionItem, AccordionTrigger, ActionButton, type ActionButtonAtom, type ActionButtonProps, AgentCard, type AgentCardMolecule, AgentDataTable, type AgentDataTableMolecule, Alert, AlertAtom, type AlertAtomType, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogAtom, type AlertDialogAtomType, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertTitle, ArrowToggleAtom, type ArrowToggleAtomType, AspectRatio, AspectRatioAtom, type AspectRatioAtomType, AudienceDemographicsCard, type AudienceDemographicsCardMolecule, AudienceMetricCard, type AudienceMetricCardMolecule, Avatar, AvatarAtom, type AvatarAtomType, AvatarFallback, AvatarImage, Badge, BadgeAtom, type BadgeAtomType, type BaseAtom, type BaseMolecule, type BranchCI, BrandAffinityGroup, type BrandAffinityGroupMolecule, Breadcrumb, BreadcrumbAtom, type BreadcrumbAtomType, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonAtom, type ButtonAtomType, type ButtonSize$1 as ButtonSize, type ButtonVariant$1 as ButtonVariant, Calendar, CalendarAtom, type CalendarAtomType, CampaignConceptCard, type CampaignConceptCardProps, CampaignSeedCard, type CampaignSeedCardAtom, type CampaignSeedCardProps, Card, CardAtom, type CardAtomType, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselAtom, type CarouselAtomType, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartAtom, type ChartAtomType, type ChartDataPoint, Checkbox, CheckboxAtom, type CheckboxAtomType, Collapsible, CollapsibleAtom, type CollapsibleAtomType, CollapsibleContent, CollapsibleTrigger, Command, CommandAtom, type CommandAtomType, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ConfirmationCard, type ConfirmationCardMolecule, type ConfirmationCardProps, ContentPreviewGallery, type ContentPreviewGalleryMolecule, ContextMenu, ContextMenuAtom, type ContextMenuAtomType, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuTrigger, CountrySelectDisplay, CountrySelectEdit, CreatorActionHeader, type CreatorActionHeaderMolecule, CreatorCompactView, type CreatorCompactViewProps, type CreatorDetailData, CreatorExpandedPanel, CreatorGridCard, type CreatorGridCardMolecule, CreatorImageList, type CreatorImageListProps, CreatorProfileSummary, type CreatorProfileSummaryMolecule, CreatorProgressBar, type CreatorProgressBarProps, CreatorSearch, type CreatorSearchProps, type CreatorVersionData, CreatorWidget, type CreatorWidgetAction, type CreatorWidgetMolecule, type CreatorWidgetProps, CreatorWidgetSkeleton, type CreatorWidgetStatus, DataGrid, type DataGridMolecule, Dialog, DialogAtom, type DialogAtomType, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, Drawer, DrawerAtom, type DrawerAtomType, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuAtom, type DropdownMenuAtomType, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuTrigger, EditableField, type EditableFieldProps, EmptyState, type EmptyStateMolecule, type FetchCreatorDetailsParams, type FetchStatusParams, type FetchVersionsParams, FileUpload, type FileUploadMolecule, FilterBar, type FilterBarMolecule, Form, FormCard, type FormCardProps, FormControl, FormDescription, FormField, FormInputAtom, type FormInputAtomType, FormItem, FormLabel, FormMessage, FormSelectAtom, type FormSelectAtomType, FormTextareaAtom, type FormTextareaAtomType, type GapSize, GitHubConnectCard, type GitHubConnectCardProps, type GitHubConnectMolecule, GitHubIssueTrackerCard, type GitHubIssueTrackerCardProps, type GitHubIssueTrackerMolecule, GitHubRepoHealthCard, type GitHubRepoHealthCardProps, type GitHubRepoHealthMolecule, GitHubReposListCard, type GitHubReposListCardProps, GoogleSheetsCard, type GoogleSheetsCardProps, GoogleSheetsConnectCard, type GoogleSheetsConnectCardProps, GoogleSheetsListCard, type GoogleSheetsListCardProps, GrowthChartCard, type GrowthChartCardMolecule, HoverCard, HoverCardContent, HoverCardTrigger, IconAtom, type IconAtomType, type IconName, Input, InputAtom, type InputAtomType, InputOTP, InputOTPAtom, type InputOTPAtomType, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputType, InstructionPreview, type InstructionPreviewMolecule, KbdAtom, type KbdAtomType, KeywordBundlesDisplay, KeywordBundlesEdit, Label, LabelAtom, type LabelAtomType, LayoutAtom, type LayoutAtomType, type LayoutDirection, LoadingOverlay, type LoadingOverlayMolecule, MCQCard, type MCQCardAtom, type MCQCardProps, type MCQOption, Menubar, MenubarCheckboxItem, MenubarContent, MenubarItem, MenubarLabel, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarTrigger, MultiAgentCard, type MultiAgentCardMolecule, MultiAgentPlan, type MultiAgentPlanMolecule, MultiAgentUISelector, type MultiAgentUISelectorMolecule, NavigationMenu, NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NotificationList, type NotificationListMolecule, PXEngineRenderer, Pagination, PaginationAtom, type PaginationAtomType, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PlatformIconGroup, type PlatformIconGroupMolecule, PlatformSelectDisplay, PlatformSelectEdit, type PollingConfig, Popover, PopoverAtom, type PopoverAtomType, PopoverContent, PopoverTrigger, Progress, ProgressAtom, type ProgressAtomType, type PullRequest, REGISTERED_COMPONENTS, RadioAtom, type RadioAtomType, RadioGroup, RadioGroupAtom, type RadioGroupAtomType, RadioGroupItem, RatingAtom, type RatingAtomType, RecommendationCard, type RecommendationCardMolecule, type RecommendationCardProps, type RepoItem, ResizableAtom, type ResizableAtomType, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollAreaAtom, type ScrollAreaAtomType, ScrollBar, SearchSpecCard, type SearchSpecCardAtom, type SearchSpecCardProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, SeparatorAtom, type SeparatorAtomType, Sheet, SheetAtom, type SheetAtomType, SheetClose, type SheetColumn, SheetContent, SheetDescription, SheetFooter, SheetHeader, type SheetRow, type SheetTabItem, SheetTitle, SheetTrigger, Skeleton, SkeletonAtom, type SkeletonAtomType, Slider, SliderAtom, type SliderAtomType, type SocialPost, SocialPostCard, type SocialPostCardProps, type SocialPostMolecule, Spinner, SpinnerAtom, type SpinnerAtomType, type SpreadsheetItem, StageIndicator, type StageIndicatorMolecule, type StaleIssue, StatsGrid, type StatsGridMolecule, type StatusDetails, StepWizard, type StepWizardMolecule, Switch, SwitchAtom, type SwitchAtomType, Table, TableAtom, type TableAtomType, TableBody, TableCaption, TableCell, TableHead, TableHeader, TableRow, Tabs, TabsAtom, type TabsAtomType, TabsContent, TabsList, TabsTrigger, TagCloud, type TagCloudMolecule, TextAtom, type TextAtomType, type TextVariant, Textarea, TextareaAtom, TimelineAtom, type TimelineAtomType, ToggleAtom, type ToggleAtomType, ToolListCard, type ToolListCardMolecule, Tooltip, TooltipAtom, type TooltipAtomType, TooltipContent, TooltipProvider, TooltipTrigger, TopPostsGrid, type TopPostsGridMolecule, type UIAtom, type UIComponent, UIComponentSelector, type UIComponentSelectorMolecule, type UIMolecule, type UISchema, VideoAtom, type VideoAtomType, WorkflowVisualizer, type WorkflowVisualizerMolecule, cn, defaultFetchSelections, defaultPersistSelection, generateFieldsFromData, generateFieldsFromPropDefinitions, useCreatorWidgetPolling };
2669
+ export { Accordion, AccordionAtom, type AccordionAtomType, AccordionContent, AccordionItem, AccordionTrigger, ActionButton, type ActionButtonAtom, type ActionButtonProps, Alert, AlertAtom, type AlertAtomType, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogAtom, type AlertDialogAtomType, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertTitle, ArrowToggleAtom, type ArrowToggleAtomType, AspectRatio, AspectRatioAtom, type AspectRatioAtomType, AudienceDemographicsCard, type AudienceDemographicsCardMolecule, AudienceMetricCard, type AudienceMetricCardMolecule, Avatar, AvatarAtom, type AvatarAtomType, AvatarFallback, AvatarImage, Badge, BadgeAtom, type BadgeAtomType, type BaseAtom, type BaseMolecule, type BranchCI, BrandAffinityGroup, type BrandAffinityGroupMolecule, Breadcrumb, BreadcrumbAtom, type BreadcrumbAtomType, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonAtom, type ButtonAtomType, type ButtonSize$1 as ButtonSize, type ButtonVariant$1 as ButtonVariant, Calendar, CalendarAtom, type CalendarAtomType, CampaignConceptCard, type CampaignConceptCardProps, CampaignSeedCard, type CampaignSeedCardAtom, type CampaignSeedCardProps, Card, CardAtom, type CardAtomType, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselAtom, type CarouselAtomType, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartAtom, type ChartAtomType, type ChartDataPoint, Checkbox, CheckboxAtom, type CheckboxAtomType, Collapsible, CollapsibleAtom, type CollapsibleAtomType, CollapsibleContent, CollapsibleTrigger, Command, CommandAtom, type CommandAtomType, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ConfirmationCard, type ConfirmationCardMolecule, type ConfirmationCardProps, ContentPreviewGallery, type ContentPreviewGalleryMolecule, ContextMenu, ContextMenuAtom, type ContextMenuAtomType, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuTrigger, CountrySelectDisplay, CountrySelectEdit, CreatorActionHeader, type CreatorActionHeaderMolecule, CreatorCompactView, type CreatorCompactViewProps, type CreatorDetailData, CreatorExpandedPanel, CreatorGridCard, type CreatorGridCardMolecule, CreatorImageList, type CreatorImageListProps, CreatorProfileSummary, type CreatorProfileSummaryMolecule, CreatorProgressBar, type CreatorProgressBarProps, CreatorSearch, type CreatorSearchProps, type CreatorVersionData, CreatorWidget, type CreatorWidgetAction, type CreatorWidgetMolecule, type CreatorWidgetProps, CreatorWidgetSkeleton, type CreatorWidgetStatus, DataGrid, type DataGridMolecule, Dialog, DialogAtom, type DialogAtomType, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, Drawer, DrawerAtom, type DrawerAtomType, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuAtom, type DropdownMenuAtomType, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuTrigger, EditableField, type EditableFieldProps, EmptyState, type EmptyStateMolecule, type FetchCreatorDetailsParams, type FetchStatusParams, type FetchVersionsParams, FileUpload, type FileUploadMolecule, FilterBar, type FilterBarMolecule, Form, FormCard, type FormCardProps, FormControl, FormDescription, FormField, FormInputAtom, type FormInputAtomType, FormItem, FormLabel, FormMessage, FormSelectAtom, type FormSelectAtomType, FormTextareaAtom, type FormTextareaAtomType, type GapSize, GitHubConnectCard, type GitHubConnectCardProps, type GitHubConnectMolecule, GitHubIssueTrackerCard, type GitHubIssueTrackerCardProps, type GitHubIssueTrackerMolecule, GitHubRepoHealthCard, type GitHubRepoHealthCardProps, type GitHubRepoHealthMolecule, GitHubReposListCard, type GitHubReposListCardProps, GoogleSheetsCard, type GoogleSheetsCardProps, GoogleSheetsConnectCard, type GoogleSheetsConnectCardProps, GoogleSheetsListCard, type GoogleSheetsListCardProps, GrowthChartCard, type GrowthChartCardMolecule, HoverCard, HoverCardContent, HoverCardTrigger, IconAtom, type IconAtomType, type IconName, Input, InputAtom, type InputAtomType, InputOTP, InputOTPAtom, type InputOTPAtomType, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputType, KbdAtom, type KbdAtomType, KeywordBundlesDisplay, KeywordBundlesEdit, Label, LabelAtom, type LabelAtomType, LayoutAtom, type LayoutAtomType, type LayoutDirection, LoadingOverlay, type LoadingOverlayMolecule, MCQCard, type MCQCardAtom, type MCQCardProps, type MCQOption, Menubar, MenubarCheckboxItem, MenubarContent, MenubarItem, MenubarLabel, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NotificationList, type NotificationListMolecule, PXEngineRenderer, Pagination, PaginationAtom, type PaginationAtomType, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PlatformIconGroup, type PlatformIconGroupMolecule, PlatformSelectDisplay, PlatformSelectEdit, type PollingConfig, Popover, PopoverAtom, type PopoverAtomType, PopoverContent, PopoverTrigger, Progress, ProgressAtom, type ProgressAtomType, type PullRequest, REGISTERED_COMPONENTS, RadioAtom, type RadioAtomType, RadioGroup, RadioGroupAtom, type RadioGroupAtomType, RadioGroupItem, RatingAtom, type RatingAtomType, RecommendationCard, type RecommendationCardMolecule, type RecommendationCardProps, type RepoItem, ResizableAtom, type ResizableAtomType, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollAreaAtom, type ScrollAreaAtomType, ScrollBar, SearchSpecCard, type SearchSpecCardAtom, type SearchSpecCardProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, SeparatorAtom, type SeparatorAtomType, Sheet, SheetAtom, type SheetAtomType, SheetClose, type SheetColumn, SheetContent, SheetDescription, SheetFooter, SheetHeader, type SheetRow, type SheetTabItem, SheetTitle, SheetTrigger, Skeleton, SkeletonAtom, type SkeletonAtomType, Slider, SliderAtom, type SliderAtomType, type SocialPost, SocialPostCard, type SocialPostCardProps, type SocialPostMolecule, Spinner, SpinnerAtom, type SpinnerAtomType, type SpreadsheetItem, type StaleIssue, StatsGrid, type StatsGridMolecule, type StatusDetails, StepWizard, type StepWizardMolecule, Switch, SwitchAtom, type SwitchAtomType, Table, TableAtom, type TableAtomType, TableBody, TableCaption, TableCell, TableHead, TableHeader, TableRow, Tabs, TabsAtom, type TabsAtomType, TabsContent, TabsList, TabsTrigger, TagCloud, type TagCloudMolecule, TextAtom, type TextAtomType, type TextVariant, Textarea, TextareaAtom, TimelineAtom, type TimelineAtomType, ToggleAtom, type ToggleAtomType, Tooltip, TooltipAtom, type TooltipAtomType, TooltipContent, TooltipProvider, TooltipTrigger, TopPostsGrid, type TopPostsGridMolecule, type UIAtom, type UIComponent, type UIMolecule, type UISchema, VideoAtom, type VideoAtomType, cn, defaultFetchSelections, defaultPersistSelection, generateFieldsFromData, generateFieldsFromPropDefinitions, useCreatorWidgetPolling };