pxengine 0.1.88 → 0.1.90
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 +605 -305
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +133 -35
- package/dist/index.d.ts +133 -35
- package/dist/index.mjs +352 -54
- package/dist/index.mjs.map +1 -1
- package/package.json +109 -109
- package/dist/registry.json +0 -18343
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
|
|
@@ -3119,6 +3154,26 @@ interface PresentationJobOutput {
|
|
|
3119
3154
|
slide_count: number;
|
|
3120
3155
|
formats: PresentationFormats;
|
|
3121
3156
|
}
|
|
3157
|
+
/**
|
|
3158
|
+
* Real-time progress information for long-running jobs.
|
|
3159
|
+
* Updated during AI generation, PDF/PPTX creation, and upload phases.
|
|
3160
|
+
*/
|
|
3161
|
+
interface JobProgress$2 {
|
|
3162
|
+
/** Progress percentage (0-100) */
|
|
3163
|
+
percentage: number;
|
|
3164
|
+
/** Human-readable description of current step */
|
|
3165
|
+
current_step: string;
|
|
3166
|
+
/** Category of current work: "ai_generation" | "processing" | "uploading" */
|
|
3167
|
+
step_type?: string;
|
|
3168
|
+
/** Additional step-specific details */
|
|
3169
|
+
details?: {
|
|
3170
|
+
slides_completed?: number;
|
|
3171
|
+
slides_total?: number;
|
|
3172
|
+
phase?: string;
|
|
3173
|
+
};
|
|
3174
|
+
/** ISO timestamp of last progress update */
|
|
3175
|
+
updated_at?: string;
|
|
3176
|
+
}
|
|
3122
3177
|
interface PresentationJobCardProps {
|
|
3123
3178
|
job_id: string;
|
|
3124
3179
|
title: string;
|
|
@@ -3127,9 +3182,11 @@ interface PresentationJobCardProps {
|
|
|
3127
3182
|
slide_count?: number;
|
|
3128
3183
|
formats?: PresentationFormats;
|
|
3129
3184
|
error?: string;
|
|
3185
|
+
/** Real-time progress information (populated during pending/running) */
|
|
3186
|
+
progress?: JobProgress$2;
|
|
3130
3187
|
/**
|
|
3131
3188
|
* URL polled every 3 s while status is pending/running.
|
|
3132
|
-
* Expected response shape: { status, output: { slide_count, formats } }
|
|
3189
|
+
* Expected response shape: { status, output: { slide_count, formats }, progress: { ... } }
|
|
3133
3190
|
* e.g. /api/agents-proxy/jobs/{job_id}/status
|
|
3134
3191
|
*/
|
|
3135
3192
|
pollUrl?: string;
|
|
@@ -3168,13 +3225,34 @@ interface ReportTheme {
|
|
|
3168
3225
|
secondary?: string;
|
|
3169
3226
|
accent?: string;
|
|
3170
3227
|
}
|
|
3228
|
+
/**
|
|
3229
|
+
* Real-time progress information for long-running research jobs.
|
|
3230
|
+
* Updated during web search, content generation, and upload phases.
|
|
3231
|
+
*/
|
|
3232
|
+
interface JobProgress$1 {
|
|
3233
|
+
/** Progress percentage (0-100) */
|
|
3234
|
+
percentage: number;
|
|
3235
|
+
/** Human-readable description of current step */
|
|
3236
|
+
current_step: string;
|
|
3237
|
+
/** Category of current work: "ai_generation" | "processing" | "uploading" */
|
|
3238
|
+
step_type?: string;
|
|
3239
|
+
/** Additional step-specific details */
|
|
3240
|
+
details?: {
|
|
3241
|
+
searches_completed?: number;
|
|
3242
|
+
searches_total?: number;
|
|
3243
|
+
chars_generated?: number;
|
|
3244
|
+
phase?: string;
|
|
3245
|
+
};
|
|
3246
|
+
/** ISO timestamp of last progress update */
|
|
3247
|
+
updated_at?: string;
|
|
3248
|
+
}
|
|
3171
3249
|
interface ResearchReportJobCardProps {
|
|
3172
3250
|
/** Unique job identifier */
|
|
3173
3251
|
job_id: string;
|
|
3174
3252
|
/** Report title */
|
|
3175
3253
|
title: string;
|
|
3176
3254
|
/** Current job status */
|
|
3177
|
-
status
|
|
3255
|
+
status?: "pending" | "running" | "complete" | "failed";
|
|
3178
3256
|
/** Research topic */
|
|
3179
3257
|
topic?: string;
|
|
3180
3258
|
/** Research depth (executive, detailed, comprehensive) */
|
|
@@ -3195,6 +3273,8 @@ interface ResearchReportJobCardProps {
|
|
|
3195
3273
|
theme?: ReportTheme;
|
|
3196
3274
|
/** Error message if job failed */
|
|
3197
3275
|
error?: string;
|
|
3276
|
+
/** Real-time progress information (populated during pending/running) */
|
|
3277
|
+
progress?: JobProgress$1;
|
|
3198
3278
|
/** URL to poll for status updates */
|
|
3199
3279
|
pollUrl?: string;
|
|
3200
3280
|
/** Auth token for polling requests */
|
|
@@ -3240,6 +3320,22 @@ interface WebSearchResult {
|
|
|
3240
3320
|
/** Domain only, e.g. "techcrunch.com" */
|
|
3241
3321
|
source: string;
|
|
3242
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
|
+
}
|
|
3243
3339
|
interface WebSearchJobCardProps {
|
|
3244
3340
|
/** Unique job identifier */
|
|
3245
3341
|
job_id: string;
|
|
@@ -3259,6 +3355,8 @@ interface WebSearchJobCardProps {
|
|
|
3259
3355
|
results?: WebSearchResult[];
|
|
3260
3356
|
/** Error message if job failed */
|
|
3261
3357
|
error?: string;
|
|
3358
|
+
/** Real-time progress information (populated during pending/running) */
|
|
3359
|
+
progress?: JobProgress;
|
|
3262
3360
|
/** URL to poll for status updates */
|
|
3263
3361
|
pollUrl?: string;
|
|
3264
3362
|
/** Auth token for polling requests */
|
|
@@ -3764,4 +3862,4 @@ declare function CreatorImageList({ creatorImages, creatorLength, isAgentOutput,
|
|
|
3764
3862
|
|
|
3765
3863
|
declare function CreatorProgressBar({ statusDetails, timeRemaining: _timeRemaining, }: CreatorProgressBarProps): react_jsx_runtime.JSX.Element;
|
|
3766
3864
|
|
|
3767
|
-
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, type ReportTheme, ResearchBriefCard, type ResearchBriefCardMolecule, type ResearchBriefCardProps, type ResearchBriefItem, 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 };
|
|
3865
|
+
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
|
|
@@ -3119,6 +3154,26 @@ interface PresentationJobOutput {
|
|
|
3119
3154
|
slide_count: number;
|
|
3120
3155
|
formats: PresentationFormats;
|
|
3121
3156
|
}
|
|
3157
|
+
/**
|
|
3158
|
+
* Real-time progress information for long-running jobs.
|
|
3159
|
+
* Updated during AI generation, PDF/PPTX creation, and upload phases.
|
|
3160
|
+
*/
|
|
3161
|
+
interface JobProgress$2 {
|
|
3162
|
+
/** Progress percentage (0-100) */
|
|
3163
|
+
percentage: number;
|
|
3164
|
+
/** Human-readable description of current step */
|
|
3165
|
+
current_step: string;
|
|
3166
|
+
/** Category of current work: "ai_generation" | "processing" | "uploading" */
|
|
3167
|
+
step_type?: string;
|
|
3168
|
+
/** Additional step-specific details */
|
|
3169
|
+
details?: {
|
|
3170
|
+
slides_completed?: number;
|
|
3171
|
+
slides_total?: number;
|
|
3172
|
+
phase?: string;
|
|
3173
|
+
};
|
|
3174
|
+
/** ISO timestamp of last progress update */
|
|
3175
|
+
updated_at?: string;
|
|
3176
|
+
}
|
|
3122
3177
|
interface PresentationJobCardProps {
|
|
3123
3178
|
job_id: string;
|
|
3124
3179
|
title: string;
|
|
@@ -3127,9 +3182,11 @@ interface PresentationJobCardProps {
|
|
|
3127
3182
|
slide_count?: number;
|
|
3128
3183
|
formats?: PresentationFormats;
|
|
3129
3184
|
error?: string;
|
|
3185
|
+
/** Real-time progress information (populated during pending/running) */
|
|
3186
|
+
progress?: JobProgress$2;
|
|
3130
3187
|
/**
|
|
3131
3188
|
* URL polled every 3 s while status is pending/running.
|
|
3132
|
-
* Expected response shape: { status, output: { slide_count, formats } }
|
|
3189
|
+
* Expected response shape: { status, output: { slide_count, formats }, progress: { ... } }
|
|
3133
3190
|
* e.g. /api/agents-proxy/jobs/{job_id}/status
|
|
3134
3191
|
*/
|
|
3135
3192
|
pollUrl?: string;
|
|
@@ -3168,13 +3225,34 @@ interface ReportTheme {
|
|
|
3168
3225
|
secondary?: string;
|
|
3169
3226
|
accent?: string;
|
|
3170
3227
|
}
|
|
3228
|
+
/**
|
|
3229
|
+
* Real-time progress information for long-running research jobs.
|
|
3230
|
+
* Updated during web search, content generation, and upload phases.
|
|
3231
|
+
*/
|
|
3232
|
+
interface JobProgress$1 {
|
|
3233
|
+
/** Progress percentage (0-100) */
|
|
3234
|
+
percentage: number;
|
|
3235
|
+
/** Human-readable description of current step */
|
|
3236
|
+
current_step: string;
|
|
3237
|
+
/** Category of current work: "ai_generation" | "processing" | "uploading" */
|
|
3238
|
+
step_type?: string;
|
|
3239
|
+
/** Additional step-specific details */
|
|
3240
|
+
details?: {
|
|
3241
|
+
searches_completed?: number;
|
|
3242
|
+
searches_total?: number;
|
|
3243
|
+
chars_generated?: number;
|
|
3244
|
+
phase?: string;
|
|
3245
|
+
};
|
|
3246
|
+
/** ISO timestamp of last progress update */
|
|
3247
|
+
updated_at?: string;
|
|
3248
|
+
}
|
|
3171
3249
|
interface ResearchReportJobCardProps {
|
|
3172
3250
|
/** Unique job identifier */
|
|
3173
3251
|
job_id: string;
|
|
3174
3252
|
/** Report title */
|
|
3175
3253
|
title: string;
|
|
3176
3254
|
/** Current job status */
|
|
3177
|
-
status
|
|
3255
|
+
status?: "pending" | "running" | "complete" | "failed";
|
|
3178
3256
|
/** Research topic */
|
|
3179
3257
|
topic?: string;
|
|
3180
3258
|
/** Research depth (executive, detailed, comprehensive) */
|
|
@@ -3195,6 +3273,8 @@ interface ResearchReportJobCardProps {
|
|
|
3195
3273
|
theme?: ReportTheme;
|
|
3196
3274
|
/** Error message if job failed */
|
|
3197
3275
|
error?: string;
|
|
3276
|
+
/** Real-time progress information (populated during pending/running) */
|
|
3277
|
+
progress?: JobProgress$1;
|
|
3198
3278
|
/** URL to poll for status updates */
|
|
3199
3279
|
pollUrl?: string;
|
|
3200
3280
|
/** Auth token for polling requests */
|
|
@@ -3240,6 +3320,22 @@ interface WebSearchResult {
|
|
|
3240
3320
|
/** Domain only, e.g. "techcrunch.com" */
|
|
3241
3321
|
source: string;
|
|
3242
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
|
+
}
|
|
3243
3339
|
interface WebSearchJobCardProps {
|
|
3244
3340
|
/** Unique job identifier */
|
|
3245
3341
|
job_id: string;
|
|
@@ -3259,6 +3355,8 @@ interface WebSearchJobCardProps {
|
|
|
3259
3355
|
results?: WebSearchResult[];
|
|
3260
3356
|
/** Error message if job failed */
|
|
3261
3357
|
error?: string;
|
|
3358
|
+
/** Real-time progress information (populated during pending/running) */
|
|
3359
|
+
progress?: JobProgress;
|
|
3262
3360
|
/** URL to poll for status updates */
|
|
3263
3361
|
pollUrl?: string;
|
|
3264
3362
|
/** Auth token for polling requests */
|
|
@@ -3764,4 +3862,4 @@ declare function CreatorImageList({ creatorImages, creatorLength, isAgentOutput,
|
|
|
3764
3862
|
|
|
3765
3863
|
declare function CreatorProgressBar({ statusDetails, timeRemaining: _timeRemaining, }: CreatorProgressBarProps): react_jsx_runtime.JSX.Element;
|
|
3766
3864
|
|
|
3767
|
-
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, type ReportTheme, ResearchBriefCard, type ResearchBriefCardMolecule, type ResearchBriefCardProps, type ResearchBriefItem, 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 };
|
|
3865
|
+
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 };
|