pxengine 0.1.75 → 0.1.77
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 +1923 -1788
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +133 -77
- package/dist/index.d.ts +133 -77
- package/dist/index.mjs +1424 -1290
- package/dist/index.mjs.map +1 -1
- package/dist/registry.json +121 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -537,8 +537,92 @@ interface ChartAtomType extends BaseAtom {
|
|
|
537
537
|
}
|
|
538
538
|
type UIAtom = ButtonAtomType | InputAtomType | ToggleAtomType | TextAtomType | LayoutAtomType | CardAtomType | TabsAtomType | AccordionAtomType | SeparatorAtomType | ScrollAreaAtomType | AspectRatioAtomType | CollapsibleAtomType | AvatarAtomType | BadgeAtomType | ProgressAtomType | TableAtomType | CarouselAtomType | AlertAtomType | TooltipAtomType | PopoverAtomType | DialogAtomType | SheetAtomType | AlertDialogAtomType | SkeletonAtomType | SpinnerAtomType | BreadcrumbAtomType | CalendarAtomType | PaginationAtomType | CommandAtomType | FormInputAtomType | FormSelectAtomType | FormTextareaAtomType | CheckboxAtomType | SwitchAtomType | LabelAtomType | SliderAtomType | RadioGroupAtomType | RadioAtomType | DropdownMenuAtomType | ContextMenuAtomType | DrawerAtomType | InputOTPAtomType | KbdAtomType | ResizableAtomType | RatingAtomType | TimelineAtomType | VideoAtomType | ChartAtomType | IconAtomType | ArrowToggleAtomType;
|
|
539
539
|
|
|
540
|
+
type ButtonVariant = "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | "purple";
|
|
541
|
+
type ButtonSize = "default" | "sm" | "lg" | "icon";
|
|
542
|
+
/**
|
|
543
|
+
* Field types for EditableField molecule
|
|
544
|
+
*/
|
|
545
|
+
type FieldType = "text" | "textarea" | "number" | "slider" | "checkbox" | "select" | "custom";
|
|
546
|
+
/**
|
|
547
|
+
* Field configuration for forms
|
|
548
|
+
*/
|
|
549
|
+
interface FieldConfig {
|
|
550
|
+
key: string;
|
|
551
|
+
label: string;
|
|
552
|
+
type: FieldType;
|
|
553
|
+
placeholder?: string;
|
|
554
|
+
required?: boolean;
|
|
555
|
+
options?: string[] | Array<{
|
|
556
|
+
label: string;
|
|
557
|
+
value: string;
|
|
558
|
+
}>;
|
|
559
|
+
sliderConfig?: SliderConfig;
|
|
560
|
+
numberConfig?: NumberConfig;
|
|
561
|
+
rows?: number;
|
|
562
|
+
renderDisplay?: (value: any) => React.ReactNode;
|
|
563
|
+
renderEdit?: (value: any, onChange: (value: any) => void) => React.ReactNode;
|
|
564
|
+
}
|
|
565
|
+
/**
|
|
566
|
+
* Slider configuration
|
|
567
|
+
*/
|
|
568
|
+
interface SliderConfig {
|
|
569
|
+
min: number;
|
|
570
|
+
max: number;
|
|
571
|
+
step: number;
|
|
572
|
+
marks?: Record<number, string>;
|
|
573
|
+
formatValue?: (value: any) => string;
|
|
574
|
+
}
|
|
575
|
+
/**
|
|
576
|
+
* Number input configuration
|
|
577
|
+
*/
|
|
578
|
+
interface NumberConfig {
|
|
579
|
+
min?: number;
|
|
580
|
+
max?: number;
|
|
581
|
+
step?: number;
|
|
582
|
+
formatValue?: (value: any) => string;
|
|
583
|
+
}
|
|
584
|
+
/**
|
|
585
|
+
* Editable organism prop definition — mirrors admin PropDefinition with editable metadata.
|
|
586
|
+
* Used by generateFieldsFromPropDefinitions() to create FieldConfig arrays.
|
|
587
|
+
*/
|
|
588
|
+
interface EditableOrganismPropDef {
|
|
589
|
+
name: string;
|
|
590
|
+
type: "string" | "number" | "boolean" | "object" | "array";
|
|
591
|
+
defaultValue?: any;
|
|
592
|
+
description?: string;
|
|
593
|
+
required?: boolean;
|
|
594
|
+
editable?: boolean;
|
|
595
|
+
editConfig?: {
|
|
596
|
+
editFieldType: FieldType;
|
|
597
|
+
placeholder?: string;
|
|
598
|
+
options?: string[] | Array<{
|
|
599
|
+
label: string;
|
|
600
|
+
value: string;
|
|
601
|
+
}>;
|
|
602
|
+
sliderConfig?: {
|
|
603
|
+
min: number;
|
|
604
|
+
max: number;
|
|
605
|
+
step: number;
|
|
606
|
+
};
|
|
607
|
+
numberConfig?: {
|
|
608
|
+
min?: number;
|
|
609
|
+
max?: number;
|
|
610
|
+
step?: number;
|
|
611
|
+
};
|
|
612
|
+
};
|
|
613
|
+
}
|
|
614
|
+
|
|
540
615
|
interface BaseMolecule extends BaseAtom {
|
|
541
616
|
}
|
|
617
|
+
interface DynamicFormCardMolecule extends BaseMolecule {
|
|
618
|
+
type: "dynamic-form-card";
|
|
619
|
+
data?: Record<string, any>;
|
|
620
|
+
fields?: FieldConfig[];
|
|
621
|
+
title?: string;
|
|
622
|
+
proceedLabel?: string;
|
|
623
|
+
showTimeline?: boolean;
|
|
624
|
+
isLatestMessage?: boolean;
|
|
625
|
+
}
|
|
542
626
|
interface CampaignSeedCardAtom extends BaseMolecule {
|
|
543
627
|
type: "campaign-seed";
|
|
544
628
|
data: Record<string, any>;
|
|
@@ -1069,7 +1153,7 @@ interface GitHubIssueTrackerMolecule extends BaseMolecule {
|
|
|
1069
1153
|
days_stale: number;
|
|
1070
1154
|
}>;
|
|
1071
1155
|
}
|
|
1072
|
-
type UIMolecule = CampaignSeedCardAtom | SearchSpecCardAtom | MCQCardAtom | ActionButtonAtom | StatsGridMolecule | EmptyStateMolecule | LoadingOverlayMolecule | InsightSummaryCardMolecule | ResearchBriefCardMolecule | PriorityActionsCardMolecule | KPIStatsCardMolecule | ApprovalCardMolecule | TimelineCardMolecule | FeedbackRatingCardMolecule | DataTableCardMolecule | ChecklistCardMolecule | PollCardMolecule | CampaignBriefCardMolecule | DataSourceChecklistCardMolecule | GoalAlignmentCardMolecule | AudiencePersonaCardMolecule | ChannelPlanCardMolecule | InsightDigestCardMolecule | ActionPriorityCardMolecule | RiskSignalCardMolecule | ScoreBreakdownCardMolecule | NextStepCardMolecule | PlatformIconGroupMolecule | CreatorProfileSummaryMolecule | AudienceMetricCardMolecule | FilterBarMolecule | FileUploadMolecule | TagCloudMolecule | CreatorGridCardMolecule | BrandAffinityGroupMolecule | ContentPreviewGalleryMolecule | DataGridMolecule | StepWizardMolecule | NotificationListMolecule | AudienceDemographicsCardMolecule | GrowthChartCardMolecule | TopPostsGridMolecule | CreatorActionHeaderMolecule | SocialPostMolecule | CreatorWidgetMolecule | GitHubConnectMolecule | GitHubRepoHealthMolecule | GitHubIssueTrackerMolecule | RecommendationCardMolecule | ConfirmationCardMolecule;
|
|
1156
|
+
type UIMolecule = CampaignSeedCardAtom | SearchSpecCardAtom | MCQCardAtom | ActionButtonAtom | StatsGridMolecule | EmptyStateMolecule | LoadingOverlayMolecule | InsightSummaryCardMolecule | ResearchBriefCardMolecule | PriorityActionsCardMolecule | KPIStatsCardMolecule | ApprovalCardMolecule | TimelineCardMolecule | FeedbackRatingCardMolecule | DataTableCardMolecule | ChecklistCardMolecule | PollCardMolecule | CampaignBriefCardMolecule | DataSourceChecklistCardMolecule | GoalAlignmentCardMolecule | AudiencePersonaCardMolecule | ChannelPlanCardMolecule | InsightDigestCardMolecule | ActionPriorityCardMolecule | RiskSignalCardMolecule | ScoreBreakdownCardMolecule | NextStepCardMolecule | PlatformIconGroupMolecule | CreatorProfileSummaryMolecule | AudienceMetricCardMolecule | FilterBarMolecule | FileUploadMolecule | TagCloudMolecule | CreatorGridCardMolecule | BrandAffinityGroupMolecule | ContentPreviewGalleryMolecule | DataGridMolecule | StepWizardMolecule | NotificationListMolecule | AudienceDemographicsCardMolecule | GrowthChartCardMolecule | TopPostsGridMolecule | CreatorActionHeaderMolecule | SocialPostMolecule | CreatorWidgetMolecule | GitHubConnectMolecule | GitHubRepoHealthMolecule | GitHubIssueTrackerMolecule | RecommendationCardMolecule | ConfirmationCardMolecule | DynamicFormCardMolecule;
|
|
1073
1157
|
|
|
1074
1158
|
type UIComponent = UIAtom | UIMolecule;
|
|
1075
1159
|
interface UISchema {
|
|
@@ -1519,81 +1603,6 @@ declare function Spinner({ className, ...props }: React.ComponentProps<"svg">):
|
|
|
1519
1603
|
*/
|
|
1520
1604
|
declare function cn(...inputs: ClassValue[]): string;
|
|
1521
1605
|
|
|
1522
|
-
type ButtonVariant = "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | "purple";
|
|
1523
|
-
type ButtonSize = "default" | "sm" | "lg" | "icon";
|
|
1524
|
-
/**
|
|
1525
|
-
* Field types for EditableField molecule
|
|
1526
|
-
*/
|
|
1527
|
-
type FieldType = "text" | "textarea" | "number" | "slider" | "checkbox" | "select" | "custom";
|
|
1528
|
-
/**
|
|
1529
|
-
* Field configuration for forms
|
|
1530
|
-
*/
|
|
1531
|
-
interface FieldConfig {
|
|
1532
|
-
key: string;
|
|
1533
|
-
label: string;
|
|
1534
|
-
type: FieldType;
|
|
1535
|
-
placeholder?: string;
|
|
1536
|
-
required?: boolean;
|
|
1537
|
-
options?: string[] | Array<{
|
|
1538
|
-
label: string;
|
|
1539
|
-
value: string;
|
|
1540
|
-
}>;
|
|
1541
|
-
sliderConfig?: SliderConfig;
|
|
1542
|
-
numberConfig?: NumberConfig;
|
|
1543
|
-
rows?: number;
|
|
1544
|
-
renderDisplay?: (value: any) => React.ReactNode;
|
|
1545
|
-
renderEdit?: (value: any, onChange: (value: any) => void) => React.ReactNode;
|
|
1546
|
-
}
|
|
1547
|
-
/**
|
|
1548
|
-
* Slider configuration
|
|
1549
|
-
*/
|
|
1550
|
-
interface SliderConfig {
|
|
1551
|
-
min: number;
|
|
1552
|
-
max: number;
|
|
1553
|
-
step: number;
|
|
1554
|
-
marks?: Record<number, string>;
|
|
1555
|
-
formatValue?: (value: any) => string;
|
|
1556
|
-
}
|
|
1557
|
-
/**
|
|
1558
|
-
* Number input configuration
|
|
1559
|
-
*/
|
|
1560
|
-
interface NumberConfig {
|
|
1561
|
-
min?: number;
|
|
1562
|
-
max?: number;
|
|
1563
|
-
step?: number;
|
|
1564
|
-
formatValue?: (value: any) => string;
|
|
1565
|
-
}
|
|
1566
|
-
/**
|
|
1567
|
-
* Editable organism prop definition — mirrors admin PropDefinition with editable metadata.
|
|
1568
|
-
* Used by generateFieldsFromPropDefinitions() to create FieldConfig arrays.
|
|
1569
|
-
*/
|
|
1570
|
-
interface EditableOrganismPropDef {
|
|
1571
|
-
name: string;
|
|
1572
|
-
type: "string" | "number" | "boolean" | "object" | "array";
|
|
1573
|
-
defaultValue?: any;
|
|
1574
|
-
description?: string;
|
|
1575
|
-
required?: boolean;
|
|
1576
|
-
editable?: boolean;
|
|
1577
|
-
editConfig?: {
|
|
1578
|
-
editFieldType: FieldType;
|
|
1579
|
-
placeholder?: string;
|
|
1580
|
-
options?: string[] | Array<{
|
|
1581
|
-
label: string;
|
|
1582
|
-
value: string;
|
|
1583
|
-
}>;
|
|
1584
|
-
sliderConfig?: {
|
|
1585
|
-
min: number;
|
|
1586
|
-
max: number;
|
|
1587
|
-
step: number;
|
|
1588
|
-
};
|
|
1589
|
-
numberConfig?: {
|
|
1590
|
-
min?: number;
|
|
1591
|
-
max?: number;
|
|
1592
|
-
step?: number;
|
|
1593
|
-
};
|
|
1594
|
-
};
|
|
1595
|
-
}
|
|
1596
|
-
|
|
1597
1606
|
/**
|
|
1598
1607
|
* Generates an array of FieldConfig from a data object
|
|
1599
1608
|
* Useful for dynamic molecules that render whatever the server sends.
|
|
@@ -2225,6 +2234,47 @@ interface FormCardProps {
|
|
|
2225
2234
|
*/
|
|
2226
2235
|
declare const FormCard: React__default.NamedExoticComponent<FormCardProps>;
|
|
2227
2236
|
|
|
2237
|
+
interface DynamicFormCardProps extends Omit<FormCardProps, "fields" | "data"> {
|
|
2238
|
+
/**
|
|
2239
|
+
* Field values — keys become labels automatically when no `fields` override is given.
|
|
2240
|
+
*/
|
|
2241
|
+
data?: Record<string, any>;
|
|
2242
|
+
/**
|
|
2243
|
+
* Explicit field configs. When omitted, fields are auto-generated from `data` keys.
|
|
2244
|
+
*/
|
|
2245
|
+
fields?: FieldConfig[];
|
|
2246
|
+
/**
|
|
2247
|
+
* Callback fired after proceed/submit. Receives the current data snapshot.
|
|
2248
|
+
*/
|
|
2249
|
+
onAction?: (action: {
|
|
2250
|
+
type: string;
|
|
2251
|
+
data: Record<string, any>;
|
|
2252
|
+
}) => void;
|
|
2253
|
+
/**
|
|
2254
|
+
* Send a plain-text message back to the agent on submit.
|
|
2255
|
+
* When provided, the form serialises all field values into a human-readable
|
|
2256
|
+
* string and calls this instead of (or in addition to) onAction.
|
|
2257
|
+
*/
|
|
2258
|
+
sendMessage?: (text: string) => void;
|
|
2259
|
+
}
|
|
2260
|
+
|
|
2261
|
+
/**
|
|
2262
|
+
* DynamicFormCard
|
|
2263
|
+
*
|
|
2264
|
+
* A thin wrapper around FormCard that removes the requirement to supply an
|
|
2265
|
+
* explicit `fields` array. When `fields` is omitted, field configs are
|
|
2266
|
+
* auto-generated from the keys of `data` using generateFieldsFromData, giving
|
|
2267
|
+
* agents a zero-config path to render any structured form payload.
|
|
2268
|
+
*
|
|
2269
|
+
* Schema usage (composition.root):
|
|
2270
|
+
* { "name": "DynamicFormCard", "props": { "title": "…", "data": { … } } }
|
|
2271
|
+
*
|
|
2272
|
+
* Alternatively the agent may supply "dynamic-form-card" (kebab) or
|
|
2273
|
+
* "dynamicformcard" (lower) — the renderer normalises all of these to
|
|
2274
|
+
* "DynamicFormCard" before lookup.
|
|
2275
|
+
*/
|
|
2276
|
+
declare const DynamicFormCard: React__default.NamedExoticComponent<DynamicFormCardProps>;
|
|
2277
|
+
|
|
2228
2278
|
/**
|
|
2229
2279
|
* StatsGrid
|
|
2230
2280
|
* A grid of statistical cards with icons and trends.
|
|
@@ -3078,6 +3128,12 @@ interface PresentationJobCardProps {
|
|
|
3078
3128
|
* e.g. /api/agents-proxy/jobs/{job_id}/status
|
|
3079
3129
|
*/
|
|
3080
3130
|
pollUrl?: string;
|
|
3131
|
+
/**
|
|
3132
|
+
* Shareable link copied when the user clicks Share.
|
|
3133
|
+
* Falls back to formats.html_url if not provided.
|
|
3134
|
+
* Pass a /p/{id} permanent URL once that route exists.
|
|
3135
|
+
*/
|
|
3136
|
+
shareUrl?: string;
|
|
3081
3137
|
className?: string;
|
|
3082
3138
|
onAction?: (action: string, payload?: any) => void;
|
|
3083
3139
|
sendMessage?: (message: string) => void;
|
|
@@ -3564,4 +3620,4 @@ declare function CreatorImageList({ creatorImages, creatorLength, isAgentOutput,
|
|
|
3564
3620
|
|
|
3565
3621
|
declare function CreatorProgressBar({ statusDetails, timeRemaining: _timeRemaining, }: CreatorProgressBarProps): react_jsx_runtime.JSX.Element;
|
|
3566
3622
|
|
|
3567
|
-
export { Accordion, AccordionAtom, type AccordionAtomType, AccordionContent, AccordionItem, AccordionTrigger, ActionButton, type ActionButtonAtom, type ActionButtonProps, type ActionPriority, ActionPriorityCard, type ActionPriorityCardMolecule, type ActionPriorityCardProps, type ActionPriorityItem, Alert, AlertAtom, type AlertAtomType, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogAtom, type AlertDialogAtomType, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertTitle, ApprovalCard, type ApprovalCardMolecule, type ApprovalCardProps, type ApprovalDetail, type ApprovalStatus, ArrowToggleAtom, type ArrowToggleAtomType, AspectRatio, AspectRatioAtom, type AspectRatioAtomType, AudienceDemographicsCard, type AudienceDemographicsCardMolecule, AudienceMetricCard, type AudienceMetricCardMolecule, AudiencePersonaCard, type AudiencePersonaCardMolecule, type AudiencePersonaCardProps, 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, BudgetAllocCard, type BudgetAllocCardProps, type BudgetAllocItem, Button, type ButtonAction, ButtonAtom, type ButtonAtomType, type ButtonSize$1 as ButtonSize, type ButtonVariant$1 as ButtonVariant, Calendar, CalendarAtom, type CalendarAtomType, type CalendarEventAttendee, CalendarEventCard, type CalendarEventCardProps, type CalendarEventStatus, CampaignBriefCard, type CampaignBriefCardMolecule, type CampaignBriefCardProps, 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, ChannelPlanCard, type ChannelPlanCardMolecule, type ChannelPlanCardProps, type ChannelPlanItem, ChartAtom, type ChartAtomType, type ChartDataPoint, Checkbox, CheckboxAtom, type CheckboxAtomType, ChecklistCard, type ChecklistCardMolecule, type ChecklistCardProps, type ChecklistItem, Collapsible, CollapsibleAtom, type CollapsibleAtomType, CollapsibleContent, CollapsibleTrigger, type CollectedField, Command, CommandAtom, type CommandAtomType, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, type ComparisonAttribute, ComparisonCard, type ComparisonCardProps, type ComparisonOption, 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, DataSourceChecklistCard, type DataSourceChecklistCardMolecule, type DataSourceChecklistCardProps, type DataSourceItem, DataTableCard, type DataTableCardMolecule, type DataTableCardProps, 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, FeedbackRatingCard, type FeedbackRatingCardMolecule, type FeedbackRatingCardProps, 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, GoalAlignmentCard, type GoalAlignmentCardMolecule, type GoalAlignmentCardProps, type GoalAlignmentItem, GoogleSheetsCard, type GoogleSheetsCardProps, GoogleSheetsConnectCard, type GoogleSheetsConnectCardProps, GoogleSheetsListCard, type GoogleSheetsListCardProps, GrowthChartCard, type GrowthChartCardMolecule, HoverCard, HoverCardContent, HoverCardTrigger, IconAtom, type IconAtomType, type IconName, Input, InputAtom, type InputAtomType, type InputElementLike, InputOTP, InputOTPAtom, type InputOTPAtomType, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputType, InputWidget, type InputWidgetField, type InputWidgetFieldKind, type InputWidgetType, InsightDigestCard, type InsightDigestCardMolecule, type InsightDigestCardProps, type InsightDigestItem, InsightSummaryCard, type InsightSummaryCardMolecule, type InsightSummaryCardProps, type InsightSummaryItem, type KPIStatItem, KPIStatsCard, type KPIStatsCardMolecule, type KPIStatsCardProps, 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, NextStepCard, type NextStepCardMolecule, type NextStepCardProps, type NextStepItem, NotificationList, type NotificationListMolecule, PXEngineRenderer, Pagination, PaginationAtom, type PaginationAtomType, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PersonaSegment, PlatformIconGroup, type PlatformIconGroupMolecule, PlatformSelectDisplay, PlatformSelectEdit, PollCard, type PollCardMolecule, type PollCardProps, type PollOption, type PollingConfig, Popover, PopoverAtom, type PopoverAtomType, PopoverContent, PopoverTrigger, type PresentationFormats, PresentationJobCard, type PresentationJobCardProps, type PriorityActionItem, PriorityActionsCard, type PriorityActionsCardMolecule, type PriorityActionsCardProps, 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, ResearchBriefCard, type ResearchBriefCardMolecule, type ResearchBriefCardProps, type ResearchBriefItem, ResizableAtom, type ResizableAtomType, ResizablePanel, ResizablePanelGroup, RiskSignalCard, type RiskSignalCardMolecule, type RiskSignalCardProps, type RiskSignalItem, type RunSseConfig, ScoreBreakdownCard, type ScoreBreakdownCardMolecule, type ScoreBreakdownCardProps, type ScoreBreakdownItem, 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, TimelineCard, type TimelineCardMolecule, type TimelineCardProps, type TimelineStep, type TimelineStepStatus, ToggleAtom, type ToggleAtomType, Tooltip, TooltipAtom, type TooltipAtomType, TooltipContent, TooltipProvider, TooltipTrigger, TopPostsGrid, type TopPostsGridMolecule, type UIAtom, type UIComponent, type UIMolecule, type UISchema, VideoAtom, type VideoAtomType, type WidgetTheme, cn, defaultFetchSelections, defaultPersistSelection, elementToQAField, formatQAMessage, generateFieldsFromData, generateFieldsFromPropDefinitions, isInputAtom, submitWidgetToAgent, th, useCreatorWidgetPolling, withAlpha };
|
|
3623
|
+
export { Accordion, AccordionAtom, type AccordionAtomType, AccordionContent, AccordionItem, AccordionTrigger, ActionButton, type ActionButtonAtom, type ActionButtonProps, type ActionPriority, ActionPriorityCard, type ActionPriorityCardMolecule, type ActionPriorityCardProps, type ActionPriorityItem, Alert, AlertAtom, type AlertAtomType, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogAtom, type AlertDialogAtomType, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertTitle, ApprovalCard, type ApprovalCardMolecule, type ApprovalCardProps, type ApprovalDetail, type ApprovalStatus, ArrowToggleAtom, type ArrowToggleAtomType, AspectRatio, AspectRatioAtom, type AspectRatioAtomType, AudienceDemographicsCard, type AudienceDemographicsCardMolecule, AudienceMetricCard, type AudienceMetricCardMolecule, AudiencePersonaCard, type AudiencePersonaCardMolecule, type AudiencePersonaCardProps, 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, BudgetAllocCard, type BudgetAllocCardProps, type BudgetAllocItem, Button, type ButtonAction, ButtonAtom, type ButtonAtomType, type ButtonSize$1 as ButtonSize, type ButtonVariant$1 as ButtonVariant, Calendar, CalendarAtom, type CalendarAtomType, type CalendarEventAttendee, CalendarEventCard, type CalendarEventCardProps, type CalendarEventStatus, CampaignBriefCard, type CampaignBriefCardMolecule, type CampaignBriefCardProps, 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, ChannelPlanCard, type ChannelPlanCardMolecule, type ChannelPlanCardProps, type ChannelPlanItem, ChartAtom, type ChartAtomType, type ChartDataPoint, Checkbox, CheckboxAtom, type CheckboxAtomType, ChecklistCard, type ChecklistCardMolecule, type ChecklistCardProps, type ChecklistItem, Collapsible, CollapsibleAtom, type CollapsibleAtomType, CollapsibleContent, CollapsibleTrigger, type CollectedField, Command, CommandAtom, type CommandAtomType, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, type ComparisonAttribute, ComparisonCard, type ComparisonCardProps, type ComparisonOption, 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, DataSourceChecklistCard, type DataSourceChecklistCardMolecule, type DataSourceChecklistCardProps, type DataSourceItem, DataTableCard, type DataTableCardMolecule, type DataTableCardProps, 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, DynamicFormCard, type DynamicFormCardMolecule, type DynamicFormCardProps, EditableField, type EditableFieldProps, EmptyState, type EmptyStateMolecule, FeedbackRatingCard, type FeedbackRatingCardMolecule, type FeedbackRatingCardProps, 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, GoalAlignmentCard, type GoalAlignmentCardMolecule, type GoalAlignmentCardProps, type GoalAlignmentItem, GoogleSheetsCard, type GoogleSheetsCardProps, GoogleSheetsConnectCard, type GoogleSheetsConnectCardProps, GoogleSheetsListCard, type GoogleSheetsListCardProps, GrowthChartCard, type GrowthChartCardMolecule, HoverCard, HoverCardContent, HoverCardTrigger, IconAtom, type IconAtomType, type IconName, Input, InputAtom, type InputAtomType, type InputElementLike, InputOTP, InputOTPAtom, type InputOTPAtomType, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputType, InputWidget, type InputWidgetField, type InputWidgetFieldKind, type InputWidgetType, InsightDigestCard, type InsightDigestCardMolecule, type InsightDigestCardProps, type InsightDigestItem, InsightSummaryCard, type InsightSummaryCardMolecule, type InsightSummaryCardProps, type InsightSummaryItem, type KPIStatItem, KPIStatsCard, type KPIStatsCardMolecule, type KPIStatsCardProps, 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, NextStepCard, type NextStepCardMolecule, type NextStepCardProps, type NextStepItem, NotificationList, type NotificationListMolecule, PXEngineRenderer, Pagination, PaginationAtom, type PaginationAtomType, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PersonaSegment, PlatformIconGroup, type PlatformIconGroupMolecule, PlatformSelectDisplay, PlatformSelectEdit, PollCard, type PollCardMolecule, type PollCardProps, type PollOption, type PollingConfig, Popover, PopoverAtom, type PopoverAtomType, PopoverContent, PopoverTrigger, type PresentationFormats, PresentationJobCard, type PresentationJobCardProps, type PriorityActionItem, PriorityActionsCard, type PriorityActionsCardMolecule, type PriorityActionsCardProps, 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, ResearchBriefCard, type ResearchBriefCardMolecule, type ResearchBriefCardProps, type ResearchBriefItem, ResizableAtom, type ResizableAtomType, ResizablePanel, ResizablePanelGroup, RiskSignalCard, type RiskSignalCardMolecule, type RiskSignalCardProps, type RiskSignalItem, type RunSseConfig, ScoreBreakdownCard, type ScoreBreakdownCardMolecule, type ScoreBreakdownCardProps, type ScoreBreakdownItem, 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, TimelineCard, type TimelineCardMolecule, type TimelineCardProps, type TimelineStep, type TimelineStepStatus, ToggleAtom, type ToggleAtomType, Tooltip, TooltipAtom, type TooltipAtomType, TooltipContent, TooltipProvider, TooltipTrigger, TopPostsGrid, type TopPostsGridMolecule, type UIAtom, type UIComponent, type UIMolecule, type UISchema, VideoAtom, type VideoAtomType, type WidgetTheme, cn, defaultFetchSelections, defaultPersistSelection, elementToQAField, formatQAMessage, generateFieldsFromData, generateFieldsFromPropDefinitions, isInputAtom, submitWidgetToAgent, th, useCreatorWidgetPolling, withAlpha };
|
package/dist/index.d.ts
CHANGED
|
@@ -537,8 +537,92 @@ interface ChartAtomType extends BaseAtom {
|
|
|
537
537
|
}
|
|
538
538
|
type UIAtom = ButtonAtomType | InputAtomType | ToggleAtomType | TextAtomType | LayoutAtomType | CardAtomType | TabsAtomType | AccordionAtomType | SeparatorAtomType | ScrollAreaAtomType | AspectRatioAtomType | CollapsibleAtomType | AvatarAtomType | BadgeAtomType | ProgressAtomType | TableAtomType | CarouselAtomType | AlertAtomType | TooltipAtomType | PopoverAtomType | DialogAtomType | SheetAtomType | AlertDialogAtomType | SkeletonAtomType | SpinnerAtomType | BreadcrumbAtomType | CalendarAtomType | PaginationAtomType | CommandAtomType | FormInputAtomType | FormSelectAtomType | FormTextareaAtomType | CheckboxAtomType | SwitchAtomType | LabelAtomType | SliderAtomType | RadioGroupAtomType | RadioAtomType | DropdownMenuAtomType | ContextMenuAtomType | DrawerAtomType | InputOTPAtomType | KbdAtomType | ResizableAtomType | RatingAtomType | TimelineAtomType | VideoAtomType | ChartAtomType | IconAtomType | ArrowToggleAtomType;
|
|
539
539
|
|
|
540
|
+
type ButtonVariant = "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | "purple";
|
|
541
|
+
type ButtonSize = "default" | "sm" | "lg" | "icon";
|
|
542
|
+
/**
|
|
543
|
+
* Field types for EditableField molecule
|
|
544
|
+
*/
|
|
545
|
+
type FieldType = "text" | "textarea" | "number" | "slider" | "checkbox" | "select" | "custom";
|
|
546
|
+
/**
|
|
547
|
+
* Field configuration for forms
|
|
548
|
+
*/
|
|
549
|
+
interface FieldConfig {
|
|
550
|
+
key: string;
|
|
551
|
+
label: string;
|
|
552
|
+
type: FieldType;
|
|
553
|
+
placeholder?: string;
|
|
554
|
+
required?: boolean;
|
|
555
|
+
options?: string[] | Array<{
|
|
556
|
+
label: string;
|
|
557
|
+
value: string;
|
|
558
|
+
}>;
|
|
559
|
+
sliderConfig?: SliderConfig;
|
|
560
|
+
numberConfig?: NumberConfig;
|
|
561
|
+
rows?: number;
|
|
562
|
+
renderDisplay?: (value: any) => React.ReactNode;
|
|
563
|
+
renderEdit?: (value: any, onChange: (value: any) => void) => React.ReactNode;
|
|
564
|
+
}
|
|
565
|
+
/**
|
|
566
|
+
* Slider configuration
|
|
567
|
+
*/
|
|
568
|
+
interface SliderConfig {
|
|
569
|
+
min: number;
|
|
570
|
+
max: number;
|
|
571
|
+
step: number;
|
|
572
|
+
marks?: Record<number, string>;
|
|
573
|
+
formatValue?: (value: any) => string;
|
|
574
|
+
}
|
|
575
|
+
/**
|
|
576
|
+
* Number input configuration
|
|
577
|
+
*/
|
|
578
|
+
interface NumberConfig {
|
|
579
|
+
min?: number;
|
|
580
|
+
max?: number;
|
|
581
|
+
step?: number;
|
|
582
|
+
formatValue?: (value: any) => string;
|
|
583
|
+
}
|
|
584
|
+
/**
|
|
585
|
+
* Editable organism prop definition — mirrors admin PropDefinition with editable metadata.
|
|
586
|
+
* Used by generateFieldsFromPropDefinitions() to create FieldConfig arrays.
|
|
587
|
+
*/
|
|
588
|
+
interface EditableOrganismPropDef {
|
|
589
|
+
name: string;
|
|
590
|
+
type: "string" | "number" | "boolean" | "object" | "array";
|
|
591
|
+
defaultValue?: any;
|
|
592
|
+
description?: string;
|
|
593
|
+
required?: boolean;
|
|
594
|
+
editable?: boolean;
|
|
595
|
+
editConfig?: {
|
|
596
|
+
editFieldType: FieldType;
|
|
597
|
+
placeholder?: string;
|
|
598
|
+
options?: string[] | Array<{
|
|
599
|
+
label: string;
|
|
600
|
+
value: string;
|
|
601
|
+
}>;
|
|
602
|
+
sliderConfig?: {
|
|
603
|
+
min: number;
|
|
604
|
+
max: number;
|
|
605
|
+
step: number;
|
|
606
|
+
};
|
|
607
|
+
numberConfig?: {
|
|
608
|
+
min?: number;
|
|
609
|
+
max?: number;
|
|
610
|
+
step?: number;
|
|
611
|
+
};
|
|
612
|
+
};
|
|
613
|
+
}
|
|
614
|
+
|
|
540
615
|
interface BaseMolecule extends BaseAtom {
|
|
541
616
|
}
|
|
617
|
+
interface DynamicFormCardMolecule extends BaseMolecule {
|
|
618
|
+
type: "dynamic-form-card";
|
|
619
|
+
data?: Record<string, any>;
|
|
620
|
+
fields?: FieldConfig[];
|
|
621
|
+
title?: string;
|
|
622
|
+
proceedLabel?: string;
|
|
623
|
+
showTimeline?: boolean;
|
|
624
|
+
isLatestMessage?: boolean;
|
|
625
|
+
}
|
|
542
626
|
interface CampaignSeedCardAtom extends BaseMolecule {
|
|
543
627
|
type: "campaign-seed";
|
|
544
628
|
data: Record<string, any>;
|
|
@@ -1069,7 +1153,7 @@ interface GitHubIssueTrackerMolecule extends BaseMolecule {
|
|
|
1069
1153
|
days_stale: number;
|
|
1070
1154
|
}>;
|
|
1071
1155
|
}
|
|
1072
|
-
type UIMolecule = CampaignSeedCardAtom | SearchSpecCardAtom | MCQCardAtom | ActionButtonAtom | StatsGridMolecule | EmptyStateMolecule | LoadingOverlayMolecule | InsightSummaryCardMolecule | ResearchBriefCardMolecule | PriorityActionsCardMolecule | KPIStatsCardMolecule | ApprovalCardMolecule | TimelineCardMolecule | FeedbackRatingCardMolecule | DataTableCardMolecule | ChecklistCardMolecule | PollCardMolecule | CampaignBriefCardMolecule | DataSourceChecklistCardMolecule | GoalAlignmentCardMolecule | AudiencePersonaCardMolecule | ChannelPlanCardMolecule | InsightDigestCardMolecule | ActionPriorityCardMolecule | RiskSignalCardMolecule | ScoreBreakdownCardMolecule | NextStepCardMolecule | PlatformIconGroupMolecule | CreatorProfileSummaryMolecule | AudienceMetricCardMolecule | FilterBarMolecule | FileUploadMolecule | TagCloudMolecule | CreatorGridCardMolecule | BrandAffinityGroupMolecule | ContentPreviewGalleryMolecule | DataGridMolecule | StepWizardMolecule | NotificationListMolecule | AudienceDemographicsCardMolecule | GrowthChartCardMolecule | TopPostsGridMolecule | CreatorActionHeaderMolecule | SocialPostMolecule | CreatorWidgetMolecule | GitHubConnectMolecule | GitHubRepoHealthMolecule | GitHubIssueTrackerMolecule | RecommendationCardMolecule | ConfirmationCardMolecule;
|
|
1156
|
+
type UIMolecule = CampaignSeedCardAtom | SearchSpecCardAtom | MCQCardAtom | ActionButtonAtom | StatsGridMolecule | EmptyStateMolecule | LoadingOverlayMolecule | InsightSummaryCardMolecule | ResearchBriefCardMolecule | PriorityActionsCardMolecule | KPIStatsCardMolecule | ApprovalCardMolecule | TimelineCardMolecule | FeedbackRatingCardMolecule | DataTableCardMolecule | ChecklistCardMolecule | PollCardMolecule | CampaignBriefCardMolecule | DataSourceChecklistCardMolecule | GoalAlignmentCardMolecule | AudiencePersonaCardMolecule | ChannelPlanCardMolecule | InsightDigestCardMolecule | ActionPriorityCardMolecule | RiskSignalCardMolecule | ScoreBreakdownCardMolecule | NextStepCardMolecule | PlatformIconGroupMolecule | CreatorProfileSummaryMolecule | AudienceMetricCardMolecule | FilterBarMolecule | FileUploadMolecule | TagCloudMolecule | CreatorGridCardMolecule | BrandAffinityGroupMolecule | ContentPreviewGalleryMolecule | DataGridMolecule | StepWizardMolecule | NotificationListMolecule | AudienceDemographicsCardMolecule | GrowthChartCardMolecule | TopPostsGridMolecule | CreatorActionHeaderMolecule | SocialPostMolecule | CreatorWidgetMolecule | GitHubConnectMolecule | GitHubRepoHealthMolecule | GitHubIssueTrackerMolecule | RecommendationCardMolecule | ConfirmationCardMolecule | DynamicFormCardMolecule;
|
|
1073
1157
|
|
|
1074
1158
|
type UIComponent = UIAtom | UIMolecule;
|
|
1075
1159
|
interface UISchema {
|
|
@@ -1519,81 +1603,6 @@ declare function Spinner({ className, ...props }: React.ComponentProps<"svg">):
|
|
|
1519
1603
|
*/
|
|
1520
1604
|
declare function cn(...inputs: ClassValue[]): string;
|
|
1521
1605
|
|
|
1522
|
-
type ButtonVariant = "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | "purple";
|
|
1523
|
-
type ButtonSize = "default" | "sm" | "lg" | "icon";
|
|
1524
|
-
/**
|
|
1525
|
-
* Field types for EditableField molecule
|
|
1526
|
-
*/
|
|
1527
|
-
type FieldType = "text" | "textarea" | "number" | "slider" | "checkbox" | "select" | "custom";
|
|
1528
|
-
/**
|
|
1529
|
-
* Field configuration for forms
|
|
1530
|
-
*/
|
|
1531
|
-
interface FieldConfig {
|
|
1532
|
-
key: string;
|
|
1533
|
-
label: string;
|
|
1534
|
-
type: FieldType;
|
|
1535
|
-
placeholder?: string;
|
|
1536
|
-
required?: boolean;
|
|
1537
|
-
options?: string[] | Array<{
|
|
1538
|
-
label: string;
|
|
1539
|
-
value: string;
|
|
1540
|
-
}>;
|
|
1541
|
-
sliderConfig?: SliderConfig;
|
|
1542
|
-
numberConfig?: NumberConfig;
|
|
1543
|
-
rows?: number;
|
|
1544
|
-
renderDisplay?: (value: any) => React.ReactNode;
|
|
1545
|
-
renderEdit?: (value: any, onChange: (value: any) => void) => React.ReactNode;
|
|
1546
|
-
}
|
|
1547
|
-
/**
|
|
1548
|
-
* Slider configuration
|
|
1549
|
-
*/
|
|
1550
|
-
interface SliderConfig {
|
|
1551
|
-
min: number;
|
|
1552
|
-
max: number;
|
|
1553
|
-
step: number;
|
|
1554
|
-
marks?: Record<number, string>;
|
|
1555
|
-
formatValue?: (value: any) => string;
|
|
1556
|
-
}
|
|
1557
|
-
/**
|
|
1558
|
-
* Number input configuration
|
|
1559
|
-
*/
|
|
1560
|
-
interface NumberConfig {
|
|
1561
|
-
min?: number;
|
|
1562
|
-
max?: number;
|
|
1563
|
-
step?: number;
|
|
1564
|
-
formatValue?: (value: any) => string;
|
|
1565
|
-
}
|
|
1566
|
-
/**
|
|
1567
|
-
* Editable organism prop definition — mirrors admin PropDefinition with editable metadata.
|
|
1568
|
-
* Used by generateFieldsFromPropDefinitions() to create FieldConfig arrays.
|
|
1569
|
-
*/
|
|
1570
|
-
interface EditableOrganismPropDef {
|
|
1571
|
-
name: string;
|
|
1572
|
-
type: "string" | "number" | "boolean" | "object" | "array";
|
|
1573
|
-
defaultValue?: any;
|
|
1574
|
-
description?: string;
|
|
1575
|
-
required?: boolean;
|
|
1576
|
-
editable?: boolean;
|
|
1577
|
-
editConfig?: {
|
|
1578
|
-
editFieldType: FieldType;
|
|
1579
|
-
placeholder?: string;
|
|
1580
|
-
options?: string[] | Array<{
|
|
1581
|
-
label: string;
|
|
1582
|
-
value: string;
|
|
1583
|
-
}>;
|
|
1584
|
-
sliderConfig?: {
|
|
1585
|
-
min: number;
|
|
1586
|
-
max: number;
|
|
1587
|
-
step: number;
|
|
1588
|
-
};
|
|
1589
|
-
numberConfig?: {
|
|
1590
|
-
min?: number;
|
|
1591
|
-
max?: number;
|
|
1592
|
-
step?: number;
|
|
1593
|
-
};
|
|
1594
|
-
};
|
|
1595
|
-
}
|
|
1596
|
-
|
|
1597
1606
|
/**
|
|
1598
1607
|
* Generates an array of FieldConfig from a data object
|
|
1599
1608
|
* Useful for dynamic molecules that render whatever the server sends.
|
|
@@ -2225,6 +2234,47 @@ interface FormCardProps {
|
|
|
2225
2234
|
*/
|
|
2226
2235
|
declare const FormCard: React__default.NamedExoticComponent<FormCardProps>;
|
|
2227
2236
|
|
|
2237
|
+
interface DynamicFormCardProps extends Omit<FormCardProps, "fields" | "data"> {
|
|
2238
|
+
/**
|
|
2239
|
+
* Field values — keys become labels automatically when no `fields` override is given.
|
|
2240
|
+
*/
|
|
2241
|
+
data?: Record<string, any>;
|
|
2242
|
+
/**
|
|
2243
|
+
* Explicit field configs. When omitted, fields are auto-generated from `data` keys.
|
|
2244
|
+
*/
|
|
2245
|
+
fields?: FieldConfig[];
|
|
2246
|
+
/**
|
|
2247
|
+
* Callback fired after proceed/submit. Receives the current data snapshot.
|
|
2248
|
+
*/
|
|
2249
|
+
onAction?: (action: {
|
|
2250
|
+
type: string;
|
|
2251
|
+
data: Record<string, any>;
|
|
2252
|
+
}) => void;
|
|
2253
|
+
/**
|
|
2254
|
+
* Send a plain-text message back to the agent on submit.
|
|
2255
|
+
* When provided, the form serialises all field values into a human-readable
|
|
2256
|
+
* string and calls this instead of (or in addition to) onAction.
|
|
2257
|
+
*/
|
|
2258
|
+
sendMessage?: (text: string) => void;
|
|
2259
|
+
}
|
|
2260
|
+
|
|
2261
|
+
/**
|
|
2262
|
+
* DynamicFormCard
|
|
2263
|
+
*
|
|
2264
|
+
* A thin wrapper around FormCard that removes the requirement to supply an
|
|
2265
|
+
* explicit `fields` array. When `fields` is omitted, field configs are
|
|
2266
|
+
* auto-generated from the keys of `data` using generateFieldsFromData, giving
|
|
2267
|
+
* agents a zero-config path to render any structured form payload.
|
|
2268
|
+
*
|
|
2269
|
+
* Schema usage (composition.root):
|
|
2270
|
+
* { "name": "DynamicFormCard", "props": { "title": "…", "data": { … } } }
|
|
2271
|
+
*
|
|
2272
|
+
* Alternatively the agent may supply "dynamic-form-card" (kebab) or
|
|
2273
|
+
* "dynamicformcard" (lower) — the renderer normalises all of these to
|
|
2274
|
+
* "DynamicFormCard" before lookup.
|
|
2275
|
+
*/
|
|
2276
|
+
declare const DynamicFormCard: React__default.NamedExoticComponent<DynamicFormCardProps>;
|
|
2277
|
+
|
|
2228
2278
|
/**
|
|
2229
2279
|
* StatsGrid
|
|
2230
2280
|
* A grid of statistical cards with icons and trends.
|
|
@@ -3078,6 +3128,12 @@ interface PresentationJobCardProps {
|
|
|
3078
3128
|
* e.g. /api/agents-proxy/jobs/{job_id}/status
|
|
3079
3129
|
*/
|
|
3080
3130
|
pollUrl?: string;
|
|
3131
|
+
/**
|
|
3132
|
+
* Shareable link copied when the user clicks Share.
|
|
3133
|
+
* Falls back to formats.html_url if not provided.
|
|
3134
|
+
* Pass a /p/{id} permanent URL once that route exists.
|
|
3135
|
+
*/
|
|
3136
|
+
shareUrl?: string;
|
|
3081
3137
|
className?: string;
|
|
3082
3138
|
onAction?: (action: string, payload?: any) => void;
|
|
3083
3139
|
sendMessage?: (message: string) => void;
|
|
@@ -3564,4 +3620,4 @@ declare function CreatorImageList({ creatorImages, creatorLength, isAgentOutput,
|
|
|
3564
3620
|
|
|
3565
3621
|
declare function CreatorProgressBar({ statusDetails, timeRemaining: _timeRemaining, }: CreatorProgressBarProps): react_jsx_runtime.JSX.Element;
|
|
3566
3622
|
|
|
3567
|
-
export { Accordion, AccordionAtom, type AccordionAtomType, AccordionContent, AccordionItem, AccordionTrigger, ActionButton, type ActionButtonAtom, type ActionButtonProps, type ActionPriority, ActionPriorityCard, type ActionPriorityCardMolecule, type ActionPriorityCardProps, type ActionPriorityItem, Alert, AlertAtom, type AlertAtomType, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogAtom, type AlertDialogAtomType, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertTitle, ApprovalCard, type ApprovalCardMolecule, type ApprovalCardProps, type ApprovalDetail, type ApprovalStatus, ArrowToggleAtom, type ArrowToggleAtomType, AspectRatio, AspectRatioAtom, type AspectRatioAtomType, AudienceDemographicsCard, type AudienceDemographicsCardMolecule, AudienceMetricCard, type AudienceMetricCardMolecule, AudiencePersonaCard, type AudiencePersonaCardMolecule, type AudiencePersonaCardProps, 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, BudgetAllocCard, type BudgetAllocCardProps, type BudgetAllocItem, Button, type ButtonAction, ButtonAtom, type ButtonAtomType, type ButtonSize$1 as ButtonSize, type ButtonVariant$1 as ButtonVariant, Calendar, CalendarAtom, type CalendarAtomType, type CalendarEventAttendee, CalendarEventCard, type CalendarEventCardProps, type CalendarEventStatus, CampaignBriefCard, type CampaignBriefCardMolecule, type CampaignBriefCardProps, 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, ChannelPlanCard, type ChannelPlanCardMolecule, type ChannelPlanCardProps, type ChannelPlanItem, ChartAtom, type ChartAtomType, type ChartDataPoint, Checkbox, CheckboxAtom, type CheckboxAtomType, ChecklistCard, type ChecklistCardMolecule, type ChecklistCardProps, type ChecklistItem, Collapsible, CollapsibleAtom, type CollapsibleAtomType, CollapsibleContent, CollapsibleTrigger, type CollectedField, Command, CommandAtom, type CommandAtomType, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, type ComparisonAttribute, ComparisonCard, type ComparisonCardProps, type ComparisonOption, 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, DataSourceChecklistCard, type DataSourceChecklistCardMolecule, type DataSourceChecklistCardProps, type DataSourceItem, DataTableCard, type DataTableCardMolecule, type DataTableCardProps, 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, FeedbackRatingCard, type FeedbackRatingCardMolecule, type FeedbackRatingCardProps, 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, GoalAlignmentCard, type GoalAlignmentCardMolecule, type GoalAlignmentCardProps, type GoalAlignmentItem, GoogleSheetsCard, type GoogleSheetsCardProps, GoogleSheetsConnectCard, type GoogleSheetsConnectCardProps, GoogleSheetsListCard, type GoogleSheetsListCardProps, GrowthChartCard, type GrowthChartCardMolecule, HoverCard, HoverCardContent, HoverCardTrigger, IconAtom, type IconAtomType, type IconName, Input, InputAtom, type InputAtomType, type InputElementLike, InputOTP, InputOTPAtom, type InputOTPAtomType, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputType, InputWidget, type InputWidgetField, type InputWidgetFieldKind, type InputWidgetType, InsightDigestCard, type InsightDigestCardMolecule, type InsightDigestCardProps, type InsightDigestItem, InsightSummaryCard, type InsightSummaryCardMolecule, type InsightSummaryCardProps, type InsightSummaryItem, type KPIStatItem, KPIStatsCard, type KPIStatsCardMolecule, type KPIStatsCardProps, 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, NextStepCard, type NextStepCardMolecule, type NextStepCardProps, type NextStepItem, NotificationList, type NotificationListMolecule, PXEngineRenderer, Pagination, PaginationAtom, type PaginationAtomType, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PersonaSegment, PlatformIconGroup, type PlatformIconGroupMolecule, PlatformSelectDisplay, PlatformSelectEdit, PollCard, type PollCardMolecule, type PollCardProps, type PollOption, type PollingConfig, Popover, PopoverAtom, type PopoverAtomType, PopoverContent, PopoverTrigger, type PresentationFormats, PresentationJobCard, type PresentationJobCardProps, type PriorityActionItem, PriorityActionsCard, type PriorityActionsCardMolecule, type PriorityActionsCardProps, 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, ResearchBriefCard, type ResearchBriefCardMolecule, type ResearchBriefCardProps, type ResearchBriefItem, ResizableAtom, type ResizableAtomType, ResizablePanel, ResizablePanelGroup, RiskSignalCard, type RiskSignalCardMolecule, type RiskSignalCardProps, type RiskSignalItem, type RunSseConfig, ScoreBreakdownCard, type ScoreBreakdownCardMolecule, type ScoreBreakdownCardProps, type ScoreBreakdownItem, 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, TimelineCard, type TimelineCardMolecule, type TimelineCardProps, type TimelineStep, type TimelineStepStatus, ToggleAtom, type ToggleAtomType, Tooltip, TooltipAtom, type TooltipAtomType, TooltipContent, TooltipProvider, TooltipTrigger, TopPostsGrid, type TopPostsGridMolecule, type UIAtom, type UIComponent, type UIMolecule, type UISchema, VideoAtom, type VideoAtomType, type WidgetTheme, cn, defaultFetchSelections, defaultPersistSelection, elementToQAField, formatQAMessage, generateFieldsFromData, generateFieldsFromPropDefinitions, isInputAtom, submitWidgetToAgent, th, useCreatorWidgetPolling, withAlpha };
|
|
3623
|
+
export { Accordion, AccordionAtom, type AccordionAtomType, AccordionContent, AccordionItem, AccordionTrigger, ActionButton, type ActionButtonAtom, type ActionButtonProps, type ActionPriority, ActionPriorityCard, type ActionPriorityCardMolecule, type ActionPriorityCardProps, type ActionPriorityItem, Alert, AlertAtom, type AlertAtomType, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogAtom, type AlertDialogAtomType, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertTitle, ApprovalCard, type ApprovalCardMolecule, type ApprovalCardProps, type ApprovalDetail, type ApprovalStatus, ArrowToggleAtom, type ArrowToggleAtomType, AspectRatio, AspectRatioAtom, type AspectRatioAtomType, AudienceDemographicsCard, type AudienceDemographicsCardMolecule, AudienceMetricCard, type AudienceMetricCardMolecule, AudiencePersonaCard, type AudiencePersonaCardMolecule, type AudiencePersonaCardProps, 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, BudgetAllocCard, type BudgetAllocCardProps, type BudgetAllocItem, Button, type ButtonAction, ButtonAtom, type ButtonAtomType, type ButtonSize$1 as ButtonSize, type ButtonVariant$1 as ButtonVariant, Calendar, CalendarAtom, type CalendarAtomType, type CalendarEventAttendee, CalendarEventCard, type CalendarEventCardProps, type CalendarEventStatus, CampaignBriefCard, type CampaignBriefCardMolecule, type CampaignBriefCardProps, 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, ChannelPlanCard, type ChannelPlanCardMolecule, type ChannelPlanCardProps, type ChannelPlanItem, ChartAtom, type ChartAtomType, type ChartDataPoint, Checkbox, CheckboxAtom, type CheckboxAtomType, ChecklistCard, type ChecklistCardMolecule, type ChecklistCardProps, type ChecklistItem, Collapsible, CollapsibleAtom, type CollapsibleAtomType, CollapsibleContent, CollapsibleTrigger, type CollectedField, Command, CommandAtom, type CommandAtomType, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, type ComparisonAttribute, ComparisonCard, type ComparisonCardProps, type ComparisonOption, 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, DataSourceChecklistCard, type DataSourceChecklistCardMolecule, type DataSourceChecklistCardProps, type DataSourceItem, DataTableCard, type DataTableCardMolecule, type DataTableCardProps, 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, DynamicFormCard, type DynamicFormCardMolecule, type DynamicFormCardProps, EditableField, type EditableFieldProps, EmptyState, type EmptyStateMolecule, FeedbackRatingCard, type FeedbackRatingCardMolecule, type FeedbackRatingCardProps, 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, GoalAlignmentCard, type GoalAlignmentCardMolecule, type GoalAlignmentCardProps, type GoalAlignmentItem, GoogleSheetsCard, type GoogleSheetsCardProps, GoogleSheetsConnectCard, type GoogleSheetsConnectCardProps, GoogleSheetsListCard, type GoogleSheetsListCardProps, GrowthChartCard, type GrowthChartCardMolecule, HoverCard, HoverCardContent, HoverCardTrigger, IconAtom, type IconAtomType, type IconName, Input, InputAtom, type InputAtomType, type InputElementLike, InputOTP, InputOTPAtom, type InputOTPAtomType, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputType, InputWidget, type InputWidgetField, type InputWidgetFieldKind, type InputWidgetType, InsightDigestCard, type InsightDigestCardMolecule, type InsightDigestCardProps, type InsightDigestItem, InsightSummaryCard, type InsightSummaryCardMolecule, type InsightSummaryCardProps, type InsightSummaryItem, type KPIStatItem, KPIStatsCard, type KPIStatsCardMolecule, type KPIStatsCardProps, 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, NextStepCard, type NextStepCardMolecule, type NextStepCardProps, type NextStepItem, NotificationList, type NotificationListMolecule, PXEngineRenderer, Pagination, PaginationAtom, type PaginationAtomType, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PersonaSegment, PlatformIconGroup, type PlatformIconGroupMolecule, PlatformSelectDisplay, PlatformSelectEdit, PollCard, type PollCardMolecule, type PollCardProps, type PollOption, type PollingConfig, Popover, PopoverAtom, type PopoverAtomType, PopoverContent, PopoverTrigger, type PresentationFormats, PresentationJobCard, type PresentationJobCardProps, type PriorityActionItem, PriorityActionsCard, type PriorityActionsCardMolecule, type PriorityActionsCardProps, 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, ResearchBriefCard, type ResearchBriefCardMolecule, type ResearchBriefCardProps, type ResearchBriefItem, ResizableAtom, type ResizableAtomType, ResizablePanel, ResizablePanelGroup, RiskSignalCard, type RiskSignalCardMolecule, type RiskSignalCardProps, type RiskSignalItem, type RunSseConfig, ScoreBreakdownCard, type ScoreBreakdownCardMolecule, type ScoreBreakdownCardProps, type ScoreBreakdownItem, 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, TimelineCard, type TimelineCardMolecule, type TimelineCardProps, type TimelineStep, type TimelineStepStatus, ToggleAtom, type ToggleAtomType, Tooltip, TooltipAtom, type TooltipAtomType, TooltipContent, TooltipProvider, TooltipTrigger, TopPostsGrid, type TopPostsGridMolecule, type UIAtom, type UIComponent, type UIMolecule, type UISchema, VideoAtom, type VideoAtomType, type WidgetTheme, cn, defaultFetchSelections, defaultPersistSelection, elementToQAField, formatQAMessage, generateFieldsFromData, generateFieldsFromPropDefinitions, isInputAtom, submitWidgetToAgent, th, useCreatorWidgetPolling, withAlpha };
|