pxengine 0.1.89 → 0.1.91
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/README.md +132 -132
- package/config/tailwind-preset.js +159 -159
- package/dist/index.cjs +416 -302
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +94 -37
- package/dist/index.d.ts +94 -37
- package/dist/index.mjs +154 -42
- package/dist/index.mjs.map +1 -1
- package/package.json +109 -109
- package/dist/registry.json +0 -18353
package/dist/index.d.cts
CHANGED
|
@@ -1161,6 +1161,67 @@ interface UISchema {
|
|
|
1161
1161
|
root: UIComponent;
|
|
1162
1162
|
}
|
|
1163
1163
|
|
|
1164
|
+
interface WidgetTheme {
|
|
1165
|
+
/** Card / container background. Replaces `cardSurface`. */
|
|
1166
|
+
background?: string;
|
|
1167
|
+
/** Inner surface background (rows, cells, option blocks). Replaces `black/20`. */
|
|
1168
|
+
surface?: string;
|
|
1169
|
+
/** Border color. Replaces `gray400`. */
|
|
1170
|
+
border?: string;
|
|
1171
|
+
/** Primary text. Replaces `cardText`. */
|
|
1172
|
+
text?: string;
|
|
1173
|
+
/** Secondary / muted text. Replaces `cardText/50`. */
|
|
1174
|
+
textMuted?: string;
|
|
1175
|
+
/** Accent / highlight color. Replaces `gold` (#BFAD82). Used for selected states, stars, progress, active steps. */
|
|
1176
|
+
accent?: string;
|
|
1177
|
+
/** Readable text color to place ON the accent (auto-contrast: white or near-black). */
|
|
1178
|
+
accentForeground?: string;
|
|
1179
|
+
/** Border width in px for cards/containers (default: keep existing 1px border). */
|
|
1180
|
+
borderWidth?: number;
|
|
1181
|
+
/** Corner radius in px for cards/containers. */
|
|
1182
|
+
radius?: number;
|
|
1183
|
+
/** Font family applied to widget text. */
|
|
1184
|
+
fontFamily?: string;
|
|
1185
|
+
/** Box-shadow / elevation CSS value (e.g. "0 1px 2px rgba(0,0,0,.4)"). */
|
|
1186
|
+
shadow?: string;
|
|
1187
|
+
/** Semantic success color (positive states, confirmations). */
|
|
1188
|
+
success?: string;
|
|
1189
|
+
/** Semantic warning color (caution states). */
|
|
1190
|
+
warning?: string;
|
|
1191
|
+
/** Semantic danger color (errors, destructive actions). */
|
|
1192
|
+
danger?: string;
|
|
1193
|
+
/** Optional brand gradient for hero/accent surfaces (e.g. "linear-gradient(135deg,#a,#b)"). */
|
|
1194
|
+
gradient?: string;
|
|
1195
|
+
}
|
|
1196
|
+
/**
|
|
1197
|
+
* React context that carries the active WidgetTheme down the render tree, so
|
|
1198
|
+
* deeply-nested molecules can pick it up even when they aren't passed `theme`
|
|
1199
|
+
* directly. An explicit `theme` prop always wins over the context value.
|
|
1200
|
+
*/
|
|
1201
|
+
declare const WidgetThemeContext: React$1.Context<WidgetTheme | undefined>;
|
|
1202
|
+
/** Resolve the effective theme: explicit prop first, else the nearest context. */
|
|
1203
|
+
declare function useWidgetTheme(explicit?: WidgetTheme): WidgetTheme | undefined;
|
|
1204
|
+
/** Convert a hex color to rgba with the given alpha (0–1). Falls back to the original string for non-hex values. */
|
|
1205
|
+
declare function withAlpha(color: string, alpha: number): string;
|
|
1206
|
+
/**
|
|
1207
|
+
* Resolves a WidgetTheme into ready-to-use CSSProperties objects.
|
|
1208
|
+
* Every property is undefined when no theme value is set, so Tailwind
|
|
1209
|
+
* CSS-variable classes remain in effect as the default.
|
|
1210
|
+
*/
|
|
1211
|
+
declare function th(theme?: WidgetTheme): {
|
|
1212
|
+
root: CSSProperties;
|
|
1213
|
+
surface: CSSProperties;
|
|
1214
|
+
text: CSSProperties;
|
|
1215
|
+
muted: CSSProperties;
|
|
1216
|
+
accent: CSSProperties;
|
|
1217
|
+
accentBg: CSSProperties;
|
|
1218
|
+
accentBorder: CSSProperties;
|
|
1219
|
+
accentText: CSSProperties;
|
|
1220
|
+
accentSubtle: (alpha?: number) => CSSProperties;
|
|
1221
|
+
semantic: (kind: "success" | "warning" | "danger") => CSSProperties;
|
|
1222
|
+
gradientBg: CSSProperties;
|
|
1223
|
+
};
|
|
1224
|
+
|
|
1164
1225
|
declare const REGISTERED_COMPONENTS: Set<string>;
|
|
1165
1226
|
/**
|
|
1166
1227
|
* PXEngineRenderer
|
|
@@ -1171,6 +1232,12 @@ interface PXEngineRendererProps {
|
|
|
1171
1232
|
schema: UISchema | UIComponent;
|
|
1172
1233
|
onAction?: (action: any, payload?: any) => void;
|
|
1173
1234
|
disabled?: boolean;
|
|
1235
|
+
/**
|
|
1236
|
+
* Organization brand theme for rendered widgets. Injected into every molecule
|
|
1237
|
+
* (cards/widgets) and provided via context to nested molecules. A `theme` set
|
|
1238
|
+
* explicitly in the schema props wins over this value.
|
|
1239
|
+
*/
|
|
1240
|
+
theme?: WidgetTheme;
|
|
1174
1241
|
}
|
|
1175
1242
|
declare const PXEngineRenderer: React__default.FC<PXEngineRendererProps>;
|
|
1176
1243
|
|
|
@@ -1960,38 +2027,6 @@ declare const IconAtom: React__default.FC<IconAtomType>;
|
|
|
1960
2027
|
*/
|
|
1961
2028
|
declare const ArrowToggleAtom: React__default.FC<ArrowToggleAtomType>;
|
|
1962
2029
|
|
|
1963
|
-
interface WidgetTheme {
|
|
1964
|
-
/** Card / container background. Replaces `cardSurface`. */
|
|
1965
|
-
background?: string;
|
|
1966
|
-
/** Inner surface background (rows, cells, option blocks). Replaces `black/20`. */
|
|
1967
|
-
surface?: string;
|
|
1968
|
-
/** Border color. Replaces `gray400`. */
|
|
1969
|
-
border?: string;
|
|
1970
|
-
/** Primary text. Replaces `cardText`. */
|
|
1971
|
-
text?: string;
|
|
1972
|
-
/** Secondary / muted text. Replaces `cardText/50`. */
|
|
1973
|
-
textMuted?: string;
|
|
1974
|
-
/** Accent / highlight color. Replaces `gold` (#BFAD82). Used for selected states, stars, progress, active steps. */
|
|
1975
|
-
accent?: string;
|
|
1976
|
-
}
|
|
1977
|
-
/** Convert a hex color to rgba with the given alpha (0–1). Falls back to the original string for non-hex values. */
|
|
1978
|
-
declare function withAlpha(color: string, alpha: number): string;
|
|
1979
|
-
/**
|
|
1980
|
-
* Resolves a WidgetTheme into ready-to-use CSSProperties objects.
|
|
1981
|
-
* Every property is undefined when no theme value is set, so Tailwind
|
|
1982
|
-
* CSS-variable classes remain in effect as the default.
|
|
1983
|
-
*/
|
|
1984
|
-
declare function th(theme?: WidgetTheme): {
|
|
1985
|
-
root: CSSProperties;
|
|
1986
|
-
surface: CSSProperties;
|
|
1987
|
-
text: CSSProperties;
|
|
1988
|
-
muted: CSSProperties;
|
|
1989
|
-
accent: CSSProperties;
|
|
1990
|
-
accentBg: CSSProperties;
|
|
1991
|
-
accentBorder: CSSProperties;
|
|
1992
|
-
accentSubtle: (alpha?: number) => CSSProperties;
|
|
1993
|
-
};
|
|
1994
|
-
|
|
1995
2030
|
interface EditableFieldProps {
|
|
1996
2031
|
/**
|
|
1997
2032
|
* Unique identifier
|
|
@@ -3123,7 +3158,7 @@ interface PresentationJobOutput {
|
|
|
3123
3158
|
* Real-time progress information for long-running jobs.
|
|
3124
3159
|
* Updated during AI generation, PDF/PPTX creation, and upload phases.
|
|
3125
3160
|
*/
|
|
3126
|
-
interface JobProgress$
|
|
3161
|
+
interface JobProgress$2 {
|
|
3127
3162
|
/** Progress percentage (0-100) */
|
|
3128
3163
|
percentage: number;
|
|
3129
3164
|
/** Human-readable description of current step */
|
|
@@ -3148,7 +3183,7 @@ interface PresentationJobCardProps {
|
|
|
3148
3183
|
formats?: PresentationFormats;
|
|
3149
3184
|
error?: string;
|
|
3150
3185
|
/** Real-time progress information (populated during pending/running) */
|
|
3151
|
-
progress?: JobProgress$
|
|
3186
|
+
progress?: JobProgress$2;
|
|
3152
3187
|
/**
|
|
3153
3188
|
* URL polled every 3 s while status is pending/running.
|
|
3154
3189
|
* Expected response shape: { status, output: { slide_count, formats }, progress: { ... } }
|
|
@@ -3194,7 +3229,7 @@ interface ReportTheme {
|
|
|
3194
3229
|
* Real-time progress information for long-running research jobs.
|
|
3195
3230
|
* Updated during web search, content generation, and upload phases.
|
|
3196
3231
|
*/
|
|
3197
|
-
interface JobProgress {
|
|
3232
|
+
interface JobProgress$1 {
|
|
3198
3233
|
/** Progress percentage (0-100) */
|
|
3199
3234
|
percentage: number;
|
|
3200
3235
|
/** Human-readable description of current step */
|
|
@@ -3239,7 +3274,7 @@ interface ResearchReportJobCardProps {
|
|
|
3239
3274
|
/** Error message if job failed */
|
|
3240
3275
|
error?: string;
|
|
3241
3276
|
/** Real-time progress information (populated during pending/running) */
|
|
3242
|
-
progress?: JobProgress;
|
|
3277
|
+
progress?: JobProgress$1;
|
|
3243
3278
|
/** URL to poll for status updates */
|
|
3244
3279
|
pollUrl?: string;
|
|
3245
3280
|
/** Auth token for polling requests */
|
|
@@ -3285,6 +3320,22 @@ interface WebSearchResult {
|
|
|
3285
3320
|
/** Domain only, e.g. "techcrunch.com" */
|
|
3286
3321
|
source: string;
|
|
3287
3322
|
}
|
|
3323
|
+
interface JobProgress {
|
|
3324
|
+
/** Progress percentage (0-100) */
|
|
3325
|
+
percentage: number;
|
|
3326
|
+
/** Human-readable description of current step */
|
|
3327
|
+
current_step: string;
|
|
3328
|
+
/** Category of current work: "ai_generation" | "processing" | "uploading" */
|
|
3329
|
+
step_type?: string;
|
|
3330
|
+
/** Additional step-specific details */
|
|
3331
|
+
details?: {
|
|
3332
|
+
searches_completed?: number;
|
|
3333
|
+
searches_total?: number;
|
|
3334
|
+
phase?: string;
|
|
3335
|
+
};
|
|
3336
|
+
/** ISO timestamp of last progress update */
|
|
3337
|
+
updated_at?: string;
|
|
3338
|
+
}
|
|
3288
3339
|
interface WebSearchJobCardProps {
|
|
3289
3340
|
/** Unique job identifier */
|
|
3290
3341
|
job_id: string;
|
|
@@ -3304,6 +3355,8 @@ interface WebSearchJobCardProps {
|
|
|
3304
3355
|
results?: WebSearchResult[];
|
|
3305
3356
|
/** Error message if job failed */
|
|
3306
3357
|
error?: string;
|
|
3358
|
+
/** Real-time progress information (populated during pending/running) */
|
|
3359
|
+
progress?: JobProgress;
|
|
3307
3360
|
/** URL to poll for status updates */
|
|
3308
3361
|
pollUrl?: string;
|
|
3309
3362
|
/** Auth token for polling requests */
|
|
@@ -3515,6 +3568,10 @@ interface MCQCardProps {
|
|
|
3515
3568
|
* A molecule for Multiple Choice Questions.
|
|
3516
3569
|
* Self-contained: when `sessionId` + `sendMessage` are provided,
|
|
3517
3570
|
* it manages its own persistence and agent communication.
|
|
3571
|
+
*
|
|
3572
|
+
* Honors an optional `theme` (WidgetTheme): when provided, the card adopts the
|
|
3573
|
+
* organization's brand colors via inline styles that override the default
|
|
3574
|
+
* Tailwind palette. With no theme it renders exactly as before.
|
|
3518
3575
|
*/
|
|
3519
3576
|
declare const MCQCard: React__default.NamedExoticComponent<MCQCardProps & {
|
|
3520
3577
|
disableContinueInDiscovery?: boolean;
|
|
@@ -3809,4 +3866,4 @@ declare function CreatorImageList({ creatorImages, creatorLength, isAgentOutput,
|
|
|
3809
3866
|
|
|
3810
3867
|
declare function CreatorProgressBar({ statusDetails, timeRemaining: _timeRemaining, }: CreatorProgressBarProps): react_jsx_runtime.JSX.Element;
|
|
3811
3868
|
|
|
3812
|
-
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 JobProgress$1 as JobProgress, 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 PresentationJobOutput, 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, type ReportTheme, ResearchBriefCard, type ResearchBriefCardMolecule, type ResearchBriefCardProps, type ResearchBriefItem, type JobProgress as ResearchJobProgress, ResearchReportJobCard, type ResearchReportJobCardProps, type ResearchReportJobOutput, 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, WebSearchJobCard, type WebSearchJobCardProps, type WebSearchJobOutput, type WebSearchResult, type WidgetTheme, cn, defaultFetchSelections, defaultPersistSelection, elementToQAField, formatQAMessage, generateFieldsFromData, generateFieldsFromPropDefinitions, isInputAtom, submitWidgetToAgent, th, useCreatorWidgetPolling, withAlpha };
|
|
3869
|
+
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 JobProgress$2 as JobProgress, 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 PresentationJobOutput, 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, type ReportTheme, ResearchBriefCard, type ResearchBriefCardMolecule, type ResearchBriefCardProps, type ResearchBriefItem, type JobProgress$1 as ResearchJobProgress, ResearchReportJobCard, type ResearchReportJobCardProps, type ResearchReportJobOutput, 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, WebSearchJobCard, type WebSearchJobCardProps, type WebSearchJobOutput, type WebSearchResult, type WidgetTheme, WidgetThemeContext, cn, defaultFetchSelections, defaultPersistSelection, elementToQAField, formatQAMessage, generateFieldsFromData, generateFieldsFromPropDefinitions, isInputAtom, submitWidgetToAgent, th, useCreatorWidgetPolling, useWidgetTheme, withAlpha };
|
package/dist/index.d.ts
CHANGED
|
@@ -1161,6 +1161,67 @@ interface UISchema {
|
|
|
1161
1161
|
root: UIComponent;
|
|
1162
1162
|
}
|
|
1163
1163
|
|
|
1164
|
+
interface WidgetTheme {
|
|
1165
|
+
/** Card / container background. Replaces `cardSurface`. */
|
|
1166
|
+
background?: string;
|
|
1167
|
+
/** Inner surface background (rows, cells, option blocks). Replaces `black/20`. */
|
|
1168
|
+
surface?: string;
|
|
1169
|
+
/** Border color. Replaces `gray400`. */
|
|
1170
|
+
border?: string;
|
|
1171
|
+
/** Primary text. Replaces `cardText`. */
|
|
1172
|
+
text?: string;
|
|
1173
|
+
/** Secondary / muted text. Replaces `cardText/50`. */
|
|
1174
|
+
textMuted?: string;
|
|
1175
|
+
/** Accent / highlight color. Replaces `gold` (#BFAD82). Used for selected states, stars, progress, active steps. */
|
|
1176
|
+
accent?: string;
|
|
1177
|
+
/** Readable text color to place ON the accent (auto-contrast: white or near-black). */
|
|
1178
|
+
accentForeground?: string;
|
|
1179
|
+
/** Border width in px for cards/containers (default: keep existing 1px border). */
|
|
1180
|
+
borderWidth?: number;
|
|
1181
|
+
/** Corner radius in px for cards/containers. */
|
|
1182
|
+
radius?: number;
|
|
1183
|
+
/** Font family applied to widget text. */
|
|
1184
|
+
fontFamily?: string;
|
|
1185
|
+
/** Box-shadow / elevation CSS value (e.g. "0 1px 2px rgba(0,0,0,.4)"). */
|
|
1186
|
+
shadow?: string;
|
|
1187
|
+
/** Semantic success color (positive states, confirmations). */
|
|
1188
|
+
success?: string;
|
|
1189
|
+
/** Semantic warning color (caution states). */
|
|
1190
|
+
warning?: string;
|
|
1191
|
+
/** Semantic danger color (errors, destructive actions). */
|
|
1192
|
+
danger?: string;
|
|
1193
|
+
/** Optional brand gradient for hero/accent surfaces (e.g. "linear-gradient(135deg,#a,#b)"). */
|
|
1194
|
+
gradient?: string;
|
|
1195
|
+
}
|
|
1196
|
+
/**
|
|
1197
|
+
* React context that carries the active WidgetTheme down the render tree, so
|
|
1198
|
+
* deeply-nested molecules can pick it up even when they aren't passed `theme`
|
|
1199
|
+
* directly. An explicit `theme` prop always wins over the context value.
|
|
1200
|
+
*/
|
|
1201
|
+
declare const WidgetThemeContext: React$1.Context<WidgetTheme | undefined>;
|
|
1202
|
+
/** Resolve the effective theme: explicit prop first, else the nearest context. */
|
|
1203
|
+
declare function useWidgetTheme(explicit?: WidgetTheme): WidgetTheme | undefined;
|
|
1204
|
+
/** Convert a hex color to rgba with the given alpha (0–1). Falls back to the original string for non-hex values. */
|
|
1205
|
+
declare function withAlpha(color: string, alpha: number): string;
|
|
1206
|
+
/**
|
|
1207
|
+
* Resolves a WidgetTheme into ready-to-use CSSProperties objects.
|
|
1208
|
+
* Every property is undefined when no theme value is set, so Tailwind
|
|
1209
|
+
* CSS-variable classes remain in effect as the default.
|
|
1210
|
+
*/
|
|
1211
|
+
declare function th(theme?: WidgetTheme): {
|
|
1212
|
+
root: CSSProperties;
|
|
1213
|
+
surface: CSSProperties;
|
|
1214
|
+
text: CSSProperties;
|
|
1215
|
+
muted: CSSProperties;
|
|
1216
|
+
accent: CSSProperties;
|
|
1217
|
+
accentBg: CSSProperties;
|
|
1218
|
+
accentBorder: CSSProperties;
|
|
1219
|
+
accentText: CSSProperties;
|
|
1220
|
+
accentSubtle: (alpha?: number) => CSSProperties;
|
|
1221
|
+
semantic: (kind: "success" | "warning" | "danger") => CSSProperties;
|
|
1222
|
+
gradientBg: CSSProperties;
|
|
1223
|
+
};
|
|
1224
|
+
|
|
1164
1225
|
declare const REGISTERED_COMPONENTS: Set<string>;
|
|
1165
1226
|
/**
|
|
1166
1227
|
* PXEngineRenderer
|
|
@@ -1171,6 +1232,12 @@ interface PXEngineRendererProps {
|
|
|
1171
1232
|
schema: UISchema | UIComponent;
|
|
1172
1233
|
onAction?: (action: any, payload?: any) => void;
|
|
1173
1234
|
disabled?: boolean;
|
|
1235
|
+
/**
|
|
1236
|
+
* Organization brand theme for rendered widgets. Injected into every molecule
|
|
1237
|
+
* (cards/widgets) and provided via context to nested molecules. A `theme` set
|
|
1238
|
+
* explicitly in the schema props wins over this value.
|
|
1239
|
+
*/
|
|
1240
|
+
theme?: WidgetTheme;
|
|
1174
1241
|
}
|
|
1175
1242
|
declare const PXEngineRenderer: React__default.FC<PXEngineRendererProps>;
|
|
1176
1243
|
|
|
@@ -1960,38 +2027,6 @@ declare const IconAtom: React__default.FC<IconAtomType>;
|
|
|
1960
2027
|
*/
|
|
1961
2028
|
declare const ArrowToggleAtom: React__default.FC<ArrowToggleAtomType>;
|
|
1962
2029
|
|
|
1963
|
-
interface WidgetTheme {
|
|
1964
|
-
/** Card / container background. Replaces `cardSurface`. */
|
|
1965
|
-
background?: string;
|
|
1966
|
-
/** Inner surface background (rows, cells, option blocks). Replaces `black/20`. */
|
|
1967
|
-
surface?: string;
|
|
1968
|
-
/** Border color. Replaces `gray400`. */
|
|
1969
|
-
border?: string;
|
|
1970
|
-
/** Primary text. Replaces `cardText`. */
|
|
1971
|
-
text?: string;
|
|
1972
|
-
/** Secondary / muted text. Replaces `cardText/50`. */
|
|
1973
|
-
textMuted?: string;
|
|
1974
|
-
/** Accent / highlight color. Replaces `gold` (#BFAD82). Used for selected states, stars, progress, active steps. */
|
|
1975
|
-
accent?: string;
|
|
1976
|
-
}
|
|
1977
|
-
/** Convert a hex color to rgba with the given alpha (0–1). Falls back to the original string for non-hex values. */
|
|
1978
|
-
declare function withAlpha(color: string, alpha: number): string;
|
|
1979
|
-
/**
|
|
1980
|
-
* Resolves a WidgetTheme into ready-to-use CSSProperties objects.
|
|
1981
|
-
* Every property is undefined when no theme value is set, so Tailwind
|
|
1982
|
-
* CSS-variable classes remain in effect as the default.
|
|
1983
|
-
*/
|
|
1984
|
-
declare function th(theme?: WidgetTheme): {
|
|
1985
|
-
root: CSSProperties;
|
|
1986
|
-
surface: CSSProperties;
|
|
1987
|
-
text: CSSProperties;
|
|
1988
|
-
muted: CSSProperties;
|
|
1989
|
-
accent: CSSProperties;
|
|
1990
|
-
accentBg: CSSProperties;
|
|
1991
|
-
accentBorder: CSSProperties;
|
|
1992
|
-
accentSubtle: (alpha?: number) => CSSProperties;
|
|
1993
|
-
};
|
|
1994
|
-
|
|
1995
2030
|
interface EditableFieldProps {
|
|
1996
2031
|
/**
|
|
1997
2032
|
* Unique identifier
|
|
@@ -3123,7 +3158,7 @@ interface PresentationJobOutput {
|
|
|
3123
3158
|
* Real-time progress information for long-running jobs.
|
|
3124
3159
|
* Updated during AI generation, PDF/PPTX creation, and upload phases.
|
|
3125
3160
|
*/
|
|
3126
|
-
interface JobProgress$
|
|
3161
|
+
interface JobProgress$2 {
|
|
3127
3162
|
/** Progress percentage (0-100) */
|
|
3128
3163
|
percentage: number;
|
|
3129
3164
|
/** Human-readable description of current step */
|
|
@@ -3148,7 +3183,7 @@ interface PresentationJobCardProps {
|
|
|
3148
3183
|
formats?: PresentationFormats;
|
|
3149
3184
|
error?: string;
|
|
3150
3185
|
/** Real-time progress information (populated during pending/running) */
|
|
3151
|
-
progress?: JobProgress$
|
|
3186
|
+
progress?: JobProgress$2;
|
|
3152
3187
|
/**
|
|
3153
3188
|
* URL polled every 3 s while status is pending/running.
|
|
3154
3189
|
* Expected response shape: { status, output: { slide_count, formats }, progress: { ... } }
|
|
@@ -3194,7 +3229,7 @@ interface ReportTheme {
|
|
|
3194
3229
|
* Real-time progress information for long-running research jobs.
|
|
3195
3230
|
* Updated during web search, content generation, and upload phases.
|
|
3196
3231
|
*/
|
|
3197
|
-
interface JobProgress {
|
|
3232
|
+
interface JobProgress$1 {
|
|
3198
3233
|
/** Progress percentage (0-100) */
|
|
3199
3234
|
percentage: number;
|
|
3200
3235
|
/** Human-readable description of current step */
|
|
@@ -3239,7 +3274,7 @@ interface ResearchReportJobCardProps {
|
|
|
3239
3274
|
/** Error message if job failed */
|
|
3240
3275
|
error?: string;
|
|
3241
3276
|
/** Real-time progress information (populated during pending/running) */
|
|
3242
|
-
progress?: JobProgress;
|
|
3277
|
+
progress?: JobProgress$1;
|
|
3243
3278
|
/** URL to poll for status updates */
|
|
3244
3279
|
pollUrl?: string;
|
|
3245
3280
|
/** Auth token for polling requests */
|
|
@@ -3285,6 +3320,22 @@ interface WebSearchResult {
|
|
|
3285
3320
|
/** Domain only, e.g. "techcrunch.com" */
|
|
3286
3321
|
source: string;
|
|
3287
3322
|
}
|
|
3323
|
+
interface JobProgress {
|
|
3324
|
+
/** Progress percentage (0-100) */
|
|
3325
|
+
percentage: number;
|
|
3326
|
+
/** Human-readable description of current step */
|
|
3327
|
+
current_step: string;
|
|
3328
|
+
/** Category of current work: "ai_generation" | "processing" | "uploading" */
|
|
3329
|
+
step_type?: string;
|
|
3330
|
+
/** Additional step-specific details */
|
|
3331
|
+
details?: {
|
|
3332
|
+
searches_completed?: number;
|
|
3333
|
+
searches_total?: number;
|
|
3334
|
+
phase?: string;
|
|
3335
|
+
};
|
|
3336
|
+
/** ISO timestamp of last progress update */
|
|
3337
|
+
updated_at?: string;
|
|
3338
|
+
}
|
|
3288
3339
|
interface WebSearchJobCardProps {
|
|
3289
3340
|
/** Unique job identifier */
|
|
3290
3341
|
job_id: string;
|
|
@@ -3304,6 +3355,8 @@ interface WebSearchJobCardProps {
|
|
|
3304
3355
|
results?: WebSearchResult[];
|
|
3305
3356
|
/** Error message if job failed */
|
|
3306
3357
|
error?: string;
|
|
3358
|
+
/** Real-time progress information (populated during pending/running) */
|
|
3359
|
+
progress?: JobProgress;
|
|
3307
3360
|
/** URL to poll for status updates */
|
|
3308
3361
|
pollUrl?: string;
|
|
3309
3362
|
/** Auth token for polling requests */
|
|
@@ -3515,6 +3568,10 @@ interface MCQCardProps {
|
|
|
3515
3568
|
* A molecule for Multiple Choice Questions.
|
|
3516
3569
|
* Self-contained: when `sessionId` + `sendMessage` are provided,
|
|
3517
3570
|
* it manages its own persistence and agent communication.
|
|
3571
|
+
*
|
|
3572
|
+
* Honors an optional `theme` (WidgetTheme): when provided, the card adopts the
|
|
3573
|
+
* organization's brand colors via inline styles that override the default
|
|
3574
|
+
* Tailwind palette. With no theme it renders exactly as before.
|
|
3518
3575
|
*/
|
|
3519
3576
|
declare const MCQCard: React__default.NamedExoticComponent<MCQCardProps & {
|
|
3520
3577
|
disableContinueInDiscovery?: boolean;
|
|
@@ -3809,4 +3866,4 @@ declare function CreatorImageList({ creatorImages, creatorLength, isAgentOutput,
|
|
|
3809
3866
|
|
|
3810
3867
|
declare function CreatorProgressBar({ statusDetails, timeRemaining: _timeRemaining, }: CreatorProgressBarProps): react_jsx_runtime.JSX.Element;
|
|
3811
3868
|
|
|
3812
|
-
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 JobProgress$1 as JobProgress, 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 PresentationJobOutput, 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, type ReportTheme, ResearchBriefCard, type ResearchBriefCardMolecule, type ResearchBriefCardProps, type ResearchBriefItem, type JobProgress as ResearchJobProgress, ResearchReportJobCard, type ResearchReportJobCardProps, type ResearchReportJobOutput, 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, WebSearchJobCard, type WebSearchJobCardProps, type WebSearchJobOutput, type WebSearchResult, type WidgetTheme, cn, defaultFetchSelections, defaultPersistSelection, elementToQAField, formatQAMessage, generateFieldsFromData, generateFieldsFromPropDefinitions, isInputAtom, submitWidgetToAgent, th, useCreatorWidgetPolling, withAlpha };
|
|
3869
|
+
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 JobProgress$2 as JobProgress, 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 PresentationJobOutput, 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, type ReportTheme, ResearchBriefCard, type ResearchBriefCardMolecule, type ResearchBriefCardProps, type ResearchBriefItem, type JobProgress$1 as ResearchJobProgress, ResearchReportJobCard, type ResearchReportJobCardProps, type ResearchReportJobOutput, 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, WebSearchJobCard, type WebSearchJobCardProps, type WebSearchJobOutput, type WebSearchResult, type WidgetTheme, WidgetThemeContext, cn, defaultFetchSelections, defaultPersistSelection, elementToQAField, formatQAMessage, generateFieldsFromData, generateFieldsFromPropDefinitions, isInputAtom, submitWidgetToAgent, th, useCreatorWidgetPolling, useWidgetTheme, withAlpha };
|