pxengine 0.1.41 → 0.1.42
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.cjs +903 -381
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +126 -2
- package/dist/index.d.ts +126 -2
- package/dist/index.mjs +894 -378
- package/dist/index.mjs.map +1 -1
- package/dist/registry.json +180 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -810,7 +810,13 @@ interface StageIndicatorMolecule extends BaseMolecule {
|
|
|
810
810
|
stage_name: string;
|
|
811
811
|
agent_name: string;
|
|
812
812
|
}
|
|
813
|
-
|
|
813
|
+
interface CreatorWidgetMolecule extends BaseMolecule {
|
|
814
|
+
type: "creator-widget";
|
|
815
|
+
sessionId: string;
|
|
816
|
+
currentVersion?: number;
|
|
817
|
+
isAgentOutput?: boolean;
|
|
818
|
+
}
|
|
819
|
+
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 | CreatorWidgetMolecule;
|
|
814
820
|
|
|
815
821
|
type UIComponent = UIAtom | UIMolecule;
|
|
816
822
|
interface UISchema {
|
|
@@ -2176,6 +2182,124 @@ interface CampaignConceptCardProps extends Omit<FormCardProps, "fields" | "title
|
|
|
2176
2182
|
*/
|
|
2177
2183
|
declare const CampaignConceptCard: React__default.NamedExoticComponent<CampaignConceptCardProps>;
|
|
2178
2184
|
|
|
2185
|
+
type CreatorWidgetStatus = "checking" | "in-progress" | "completed" | "complete" | "failed";
|
|
2186
|
+
interface CreatorVersionData {
|
|
2187
|
+
success: boolean;
|
|
2188
|
+
ids: number[];
|
|
2189
|
+
images: string[];
|
|
2190
|
+
length: number;
|
|
2191
|
+
totalVersions: number;
|
|
2192
|
+
currentVersion: number;
|
|
2193
|
+
versionStatus: string;
|
|
2194
|
+
searchSpec: Record<string, any>;
|
|
2195
|
+
}
|
|
2196
|
+
interface StatusDetails {
|
|
2197
|
+
overall_percentage: number;
|
|
2198
|
+
social_fetch_percentage: number;
|
|
2199
|
+
status: string;
|
|
2200
|
+
thinking_message: string;
|
|
2201
|
+
completed_at: string;
|
|
2202
|
+
}
|
|
2203
|
+
interface PollingConfig {
|
|
2204
|
+
/** Poll interval in ms (default: 5000) */
|
|
2205
|
+
pollInterval?: number;
|
|
2206
|
+
/** Max polling duration in ms (default: 15 min) */
|
|
2207
|
+
maxDuration?: number;
|
|
2208
|
+
/** Max consecutive errors before stopping (default: 10) */
|
|
2209
|
+
maxErrors?: number;
|
|
2210
|
+
/** Seconds per creator for time estimate (default: 13) */
|
|
2211
|
+
secondsPerCreator?: number;
|
|
2212
|
+
}
|
|
2213
|
+
interface FetchVersionsParams {
|
|
2214
|
+
sessionId: string;
|
|
2215
|
+
version?: number;
|
|
2216
|
+
validated: boolean;
|
|
2217
|
+
}
|
|
2218
|
+
interface FetchStatusParams {
|
|
2219
|
+
sessionId: string;
|
|
2220
|
+
versionNo: number;
|
|
2221
|
+
}
|
|
2222
|
+
interface CreatorWidgetProps {
|
|
2223
|
+
sessionId: string;
|
|
2224
|
+
currentVersion?: number;
|
|
2225
|
+
isAgentOutput?: boolean;
|
|
2226
|
+
fetchVersions: (params: FetchVersionsParams) => Promise<CreatorVersionData>;
|
|
2227
|
+
fetchStatus: (params: FetchStatusParams) => Promise<{
|
|
2228
|
+
status: StatusDetails;
|
|
2229
|
+
}>;
|
|
2230
|
+
pollingConfig?: PollingConfig;
|
|
2231
|
+
onStatusChange?: (status: CreatorWidgetStatus) => void;
|
|
2232
|
+
onAction?: (action: CreatorWidgetAction) => void;
|
|
2233
|
+
className?: string;
|
|
2234
|
+
}
|
|
2235
|
+
interface CreatorWidgetAction {
|
|
2236
|
+
type: "view-creators";
|
|
2237
|
+
sessionId: string;
|
|
2238
|
+
creatorIds: number[];
|
|
2239
|
+
version: number | undefined;
|
|
2240
|
+
searchSpec: Record<string, any>;
|
|
2241
|
+
}
|
|
2242
|
+
interface CreatorCompactViewProps {
|
|
2243
|
+
versions: number[];
|
|
2244
|
+
selectedVersion?: number;
|
|
2245
|
+
creatorImages: string[];
|
|
2246
|
+
creatorLength: number;
|
|
2247
|
+
isAgentOutput: boolean;
|
|
2248
|
+
onVersionSelect: (versionNo: number) => void;
|
|
2249
|
+
onViewCreators: () => void;
|
|
2250
|
+
versionStatus: CreatorWidgetStatus;
|
|
2251
|
+
statusDetails?: StatusDetails;
|
|
2252
|
+
timeDisplay: string;
|
|
2253
|
+
isLoading: boolean;
|
|
2254
|
+
}
|
|
2255
|
+
interface CreatorImageListProps {
|
|
2256
|
+
creatorImages: string[];
|
|
2257
|
+
creatorLength: number;
|
|
2258
|
+
isAgentOutput: boolean;
|
|
2259
|
+
initialCreatorsPercentage?: number;
|
|
2260
|
+
}
|
|
2261
|
+
interface CreatorProgressBarProps {
|
|
2262
|
+
statusDetails?: StatusDetails;
|
|
2263
|
+
timeRemaining?: string;
|
|
2264
|
+
}
|
|
2265
|
+
|
|
2266
|
+
declare function CreatorWidgetInner({ sessionId, currentVersion, isAgentOutput, fetchVersions, fetchStatus, pollingConfig, onStatusChange, onAction, className, }: CreatorWidgetProps): react_jsx_runtime.JSX.Element;
|
|
2267
|
+
declare const CreatorWidget: React$1.MemoExoticComponent<typeof CreatorWidgetInner>;
|
|
2268
|
+
|
|
2269
|
+
declare function CreatorWidgetSkeleton(): react_jsx_runtime.JSX.Element;
|
|
2270
|
+
|
|
2271
|
+
interface UseCreatorWidgetPollingParams {
|
|
2272
|
+
sessionId: string;
|
|
2273
|
+
currentVersion?: number;
|
|
2274
|
+
fetchVersions: (params: FetchVersionsParams) => Promise<CreatorVersionData>;
|
|
2275
|
+
fetchStatus: (params: FetchStatusParams) => Promise<{
|
|
2276
|
+
status: StatusDetails;
|
|
2277
|
+
}>;
|
|
2278
|
+
pollingConfig?: PollingConfig;
|
|
2279
|
+
onStatusChange?: (status: CreatorWidgetStatus) => void;
|
|
2280
|
+
}
|
|
2281
|
+
declare function useCreatorWidgetPolling({ sessionId, currentVersion, fetchVersions, fetchStatus, pollingConfig, onStatusChange, }: UseCreatorWidgetPollingParams): {
|
|
2282
|
+
versionData: CreatorVersionData | null;
|
|
2283
|
+
versionNumbers: number[];
|
|
2284
|
+
selectedVersion: number | undefined;
|
|
2285
|
+
setSelectedVersion: React$1.Dispatch<React$1.SetStateAction<number | undefined>>;
|
|
2286
|
+
creatorImages: string[];
|
|
2287
|
+
creatorLength: number;
|
|
2288
|
+
creatorIds: number[];
|
|
2289
|
+
searchSpec: Record<string, any>;
|
|
2290
|
+
versionStatus: CreatorWidgetStatus;
|
|
2291
|
+
statusDetails: StatusDetails | undefined;
|
|
2292
|
+
timeDisplay: string;
|
|
2293
|
+
isLoading: boolean;
|
|
2294
|
+
isValidationComplete: boolean;
|
|
2295
|
+
};
|
|
2296
|
+
|
|
2297
|
+
declare function CreatorCompactView({ versions, selectedVersion, creatorImages, creatorLength, isAgentOutput, onVersionSelect, onViewCreators, versionStatus, statusDetails, timeDisplay, isLoading, }: CreatorCompactViewProps): react_jsx_runtime.JSX.Element;
|
|
2298
|
+
|
|
2299
|
+
declare function CreatorImageList({ creatorImages, creatorLength, isAgentOutput, initialCreatorsPercentage, }: CreatorImageListProps): react_jsx_runtime.JSX.Element;
|
|
2300
|
+
|
|
2301
|
+
declare function CreatorProgressBar({ statusDetails, timeRemaining: _timeRemaining, }: CreatorProgressBarProps): react_jsx_runtime.JSX.Element;
|
|
2302
|
+
|
|
2179
2303
|
/**
|
|
2180
2304
|
* ToolListCard
|
|
2181
2305
|
*
|
|
@@ -2276,4 +2400,4 @@ interface StageIndicatorProps extends Omit<StageIndicatorMolecule, "id" | "type"
|
|
|
2276
2400
|
*/
|
|
2277
2401
|
declare const StageIndicator: React__default.FC<StageIndicatorProps>;
|
|
2278
2402
|
|
|
2279
|
-
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, 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, Checkbox, CheckboxAtom, type CheckboxAtomType, Collapsible, CollapsibleAtom, type CollapsibleAtomType, CollapsibleContent, CollapsibleTrigger, Command, CommandAtom, type CommandAtomType, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContentPreviewGallery, type ContentPreviewGalleryMolecule, ContextMenu, ContextMenuAtom, type ContextMenuAtomType, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuTrigger, CountrySelectDisplay, CountrySelectEdit, CreatorActionHeader, type CreatorActionHeaderMolecule, CreatorGridCard, type CreatorGridCardMolecule, CreatorProfileSummary, type CreatorProfileSummaryMolecule, CreatorSearch, type CreatorSearchProps, 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, 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, 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, Popover, PopoverAtom, type PopoverAtomType, PopoverContent, PopoverTrigger, Progress, ProgressAtom, type ProgressAtomType, RadioAtom, type RadioAtomType, RadioGroup, RadioGroupAtom, type RadioGroupAtomType, RadioGroupItem, RatingAtom, type RatingAtomType, 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, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Skeleton, SkeletonAtom, type SkeletonAtomType, Slider, SliderAtom, type SliderAtomType, Spinner, SpinnerAtom, type SpinnerAtomType, StageIndicator, type StageIndicatorMolecule, StatsGrid, type StatsGridMolecule, 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 };
|
|
2403
|
+
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, 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, Checkbox, CheckboxAtom, type CheckboxAtomType, Collapsible, CollapsibleAtom, type CollapsibleAtomType, CollapsibleContent, CollapsibleTrigger, Command, CommandAtom, type CommandAtomType, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContentPreviewGallery, type ContentPreviewGalleryMolecule, ContextMenu, ContextMenuAtom, type ContextMenuAtomType, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuTrigger, CountrySelectDisplay, CountrySelectEdit, CreatorActionHeader, type CreatorActionHeaderMolecule, CreatorCompactView, type CreatorCompactViewProps, 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 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, 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, RadioAtom, type RadioAtomType, RadioGroup, RadioGroupAtom, type RadioGroupAtomType, RadioGroupItem, RatingAtom, type RatingAtomType, 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, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Skeleton, SkeletonAtom, type SkeletonAtomType, Slider, SliderAtom, type SliderAtomType, Spinner, SpinnerAtom, type SpinnerAtomType, StageIndicator, type StageIndicatorMolecule, 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, useCreatorWidgetPolling };
|
package/dist/index.d.ts
CHANGED
|
@@ -810,7 +810,13 @@ interface StageIndicatorMolecule extends BaseMolecule {
|
|
|
810
810
|
stage_name: string;
|
|
811
811
|
agent_name: string;
|
|
812
812
|
}
|
|
813
|
-
|
|
813
|
+
interface CreatorWidgetMolecule extends BaseMolecule {
|
|
814
|
+
type: "creator-widget";
|
|
815
|
+
sessionId: string;
|
|
816
|
+
currentVersion?: number;
|
|
817
|
+
isAgentOutput?: boolean;
|
|
818
|
+
}
|
|
819
|
+
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 | CreatorWidgetMolecule;
|
|
814
820
|
|
|
815
821
|
type UIComponent = UIAtom | UIMolecule;
|
|
816
822
|
interface UISchema {
|
|
@@ -2176,6 +2182,124 @@ interface CampaignConceptCardProps extends Omit<FormCardProps, "fields" | "title
|
|
|
2176
2182
|
*/
|
|
2177
2183
|
declare const CampaignConceptCard: React__default.NamedExoticComponent<CampaignConceptCardProps>;
|
|
2178
2184
|
|
|
2185
|
+
type CreatorWidgetStatus = "checking" | "in-progress" | "completed" | "complete" | "failed";
|
|
2186
|
+
interface CreatorVersionData {
|
|
2187
|
+
success: boolean;
|
|
2188
|
+
ids: number[];
|
|
2189
|
+
images: string[];
|
|
2190
|
+
length: number;
|
|
2191
|
+
totalVersions: number;
|
|
2192
|
+
currentVersion: number;
|
|
2193
|
+
versionStatus: string;
|
|
2194
|
+
searchSpec: Record<string, any>;
|
|
2195
|
+
}
|
|
2196
|
+
interface StatusDetails {
|
|
2197
|
+
overall_percentage: number;
|
|
2198
|
+
social_fetch_percentage: number;
|
|
2199
|
+
status: string;
|
|
2200
|
+
thinking_message: string;
|
|
2201
|
+
completed_at: string;
|
|
2202
|
+
}
|
|
2203
|
+
interface PollingConfig {
|
|
2204
|
+
/** Poll interval in ms (default: 5000) */
|
|
2205
|
+
pollInterval?: number;
|
|
2206
|
+
/** Max polling duration in ms (default: 15 min) */
|
|
2207
|
+
maxDuration?: number;
|
|
2208
|
+
/** Max consecutive errors before stopping (default: 10) */
|
|
2209
|
+
maxErrors?: number;
|
|
2210
|
+
/** Seconds per creator for time estimate (default: 13) */
|
|
2211
|
+
secondsPerCreator?: number;
|
|
2212
|
+
}
|
|
2213
|
+
interface FetchVersionsParams {
|
|
2214
|
+
sessionId: string;
|
|
2215
|
+
version?: number;
|
|
2216
|
+
validated: boolean;
|
|
2217
|
+
}
|
|
2218
|
+
interface FetchStatusParams {
|
|
2219
|
+
sessionId: string;
|
|
2220
|
+
versionNo: number;
|
|
2221
|
+
}
|
|
2222
|
+
interface CreatorWidgetProps {
|
|
2223
|
+
sessionId: string;
|
|
2224
|
+
currentVersion?: number;
|
|
2225
|
+
isAgentOutput?: boolean;
|
|
2226
|
+
fetchVersions: (params: FetchVersionsParams) => Promise<CreatorVersionData>;
|
|
2227
|
+
fetchStatus: (params: FetchStatusParams) => Promise<{
|
|
2228
|
+
status: StatusDetails;
|
|
2229
|
+
}>;
|
|
2230
|
+
pollingConfig?: PollingConfig;
|
|
2231
|
+
onStatusChange?: (status: CreatorWidgetStatus) => void;
|
|
2232
|
+
onAction?: (action: CreatorWidgetAction) => void;
|
|
2233
|
+
className?: string;
|
|
2234
|
+
}
|
|
2235
|
+
interface CreatorWidgetAction {
|
|
2236
|
+
type: "view-creators";
|
|
2237
|
+
sessionId: string;
|
|
2238
|
+
creatorIds: number[];
|
|
2239
|
+
version: number | undefined;
|
|
2240
|
+
searchSpec: Record<string, any>;
|
|
2241
|
+
}
|
|
2242
|
+
interface CreatorCompactViewProps {
|
|
2243
|
+
versions: number[];
|
|
2244
|
+
selectedVersion?: number;
|
|
2245
|
+
creatorImages: string[];
|
|
2246
|
+
creatorLength: number;
|
|
2247
|
+
isAgentOutput: boolean;
|
|
2248
|
+
onVersionSelect: (versionNo: number) => void;
|
|
2249
|
+
onViewCreators: () => void;
|
|
2250
|
+
versionStatus: CreatorWidgetStatus;
|
|
2251
|
+
statusDetails?: StatusDetails;
|
|
2252
|
+
timeDisplay: string;
|
|
2253
|
+
isLoading: boolean;
|
|
2254
|
+
}
|
|
2255
|
+
interface CreatorImageListProps {
|
|
2256
|
+
creatorImages: string[];
|
|
2257
|
+
creatorLength: number;
|
|
2258
|
+
isAgentOutput: boolean;
|
|
2259
|
+
initialCreatorsPercentage?: number;
|
|
2260
|
+
}
|
|
2261
|
+
interface CreatorProgressBarProps {
|
|
2262
|
+
statusDetails?: StatusDetails;
|
|
2263
|
+
timeRemaining?: string;
|
|
2264
|
+
}
|
|
2265
|
+
|
|
2266
|
+
declare function CreatorWidgetInner({ sessionId, currentVersion, isAgentOutput, fetchVersions, fetchStatus, pollingConfig, onStatusChange, onAction, className, }: CreatorWidgetProps): react_jsx_runtime.JSX.Element;
|
|
2267
|
+
declare const CreatorWidget: React$1.MemoExoticComponent<typeof CreatorWidgetInner>;
|
|
2268
|
+
|
|
2269
|
+
declare function CreatorWidgetSkeleton(): react_jsx_runtime.JSX.Element;
|
|
2270
|
+
|
|
2271
|
+
interface UseCreatorWidgetPollingParams {
|
|
2272
|
+
sessionId: string;
|
|
2273
|
+
currentVersion?: number;
|
|
2274
|
+
fetchVersions: (params: FetchVersionsParams) => Promise<CreatorVersionData>;
|
|
2275
|
+
fetchStatus: (params: FetchStatusParams) => Promise<{
|
|
2276
|
+
status: StatusDetails;
|
|
2277
|
+
}>;
|
|
2278
|
+
pollingConfig?: PollingConfig;
|
|
2279
|
+
onStatusChange?: (status: CreatorWidgetStatus) => void;
|
|
2280
|
+
}
|
|
2281
|
+
declare function useCreatorWidgetPolling({ sessionId, currentVersion, fetchVersions, fetchStatus, pollingConfig, onStatusChange, }: UseCreatorWidgetPollingParams): {
|
|
2282
|
+
versionData: CreatorVersionData | null;
|
|
2283
|
+
versionNumbers: number[];
|
|
2284
|
+
selectedVersion: number | undefined;
|
|
2285
|
+
setSelectedVersion: React$1.Dispatch<React$1.SetStateAction<number | undefined>>;
|
|
2286
|
+
creatorImages: string[];
|
|
2287
|
+
creatorLength: number;
|
|
2288
|
+
creatorIds: number[];
|
|
2289
|
+
searchSpec: Record<string, any>;
|
|
2290
|
+
versionStatus: CreatorWidgetStatus;
|
|
2291
|
+
statusDetails: StatusDetails | undefined;
|
|
2292
|
+
timeDisplay: string;
|
|
2293
|
+
isLoading: boolean;
|
|
2294
|
+
isValidationComplete: boolean;
|
|
2295
|
+
};
|
|
2296
|
+
|
|
2297
|
+
declare function CreatorCompactView({ versions, selectedVersion, creatorImages, creatorLength, isAgentOutput, onVersionSelect, onViewCreators, versionStatus, statusDetails, timeDisplay, isLoading, }: CreatorCompactViewProps): react_jsx_runtime.JSX.Element;
|
|
2298
|
+
|
|
2299
|
+
declare function CreatorImageList({ creatorImages, creatorLength, isAgentOutput, initialCreatorsPercentage, }: CreatorImageListProps): react_jsx_runtime.JSX.Element;
|
|
2300
|
+
|
|
2301
|
+
declare function CreatorProgressBar({ statusDetails, timeRemaining: _timeRemaining, }: CreatorProgressBarProps): react_jsx_runtime.JSX.Element;
|
|
2302
|
+
|
|
2179
2303
|
/**
|
|
2180
2304
|
* ToolListCard
|
|
2181
2305
|
*
|
|
@@ -2276,4 +2400,4 @@ interface StageIndicatorProps extends Omit<StageIndicatorMolecule, "id" | "type"
|
|
|
2276
2400
|
*/
|
|
2277
2401
|
declare const StageIndicator: React__default.FC<StageIndicatorProps>;
|
|
2278
2402
|
|
|
2279
|
-
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, 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, Checkbox, CheckboxAtom, type CheckboxAtomType, Collapsible, CollapsibleAtom, type CollapsibleAtomType, CollapsibleContent, CollapsibleTrigger, Command, CommandAtom, type CommandAtomType, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContentPreviewGallery, type ContentPreviewGalleryMolecule, ContextMenu, ContextMenuAtom, type ContextMenuAtomType, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuTrigger, CountrySelectDisplay, CountrySelectEdit, CreatorActionHeader, type CreatorActionHeaderMolecule, CreatorGridCard, type CreatorGridCardMolecule, CreatorProfileSummary, type CreatorProfileSummaryMolecule, CreatorSearch, type CreatorSearchProps, 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, 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, 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, Popover, PopoverAtom, type PopoverAtomType, PopoverContent, PopoverTrigger, Progress, ProgressAtom, type ProgressAtomType, RadioAtom, type RadioAtomType, RadioGroup, RadioGroupAtom, type RadioGroupAtomType, RadioGroupItem, RatingAtom, type RatingAtomType, 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, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Skeleton, SkeletonAtom, type SkeletonAtomType, Slider, SliderAtom, type SliderAtomType, Spinner, SpinnerAtom, type SpinnerAtomType, StageIndicator, type StageIndicatorMolecule, StatsGrid, type StatsGridMolecule, 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 };
|
|
2403
|
+
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, 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, Checkbox, CheckboxAtom, type CheckboxAtomType, Collapsible, CollapsibleAtom, type CollapsibleAtomType, CollapsibleContent, CollapsibleTrigger, Command, CommandAtom, type CommandAtomType, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContentPreviewGallery, type ContentPreviewGalleryMolecule, ContextMenu, ContextMenuAtom, type ContextMenuAtomType, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuTrigger, CountrySelectDisplay, CountrySelectEdit, CreatorActionHeader, type CreatorActionHeaderMolecule, CreatorCompactView, type CreatorCompactViewProps, 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 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, 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, RadioAtom, type RadioAtomType, RadioGroup, RadioGroupAtom, type RadioGroupAtomType, RadioGroupItem, RatingAtom, type RatingAtomType, 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, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Skeleton, SkeletonAtom, type SkeletonAtomType, Slider, SliderAtom, type SliderAtomType, Spinner, SpinnerAtom, type SpinnerAtomType, StageIndicator, type StageIndicatorMolecule, 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, useCreatorWidgetPolling };
|