pxengine 0.1.70 → 0.1.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2565 -843
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +693 -2
- package/dist/index.d.ts +693 -2
- package/dist/index.mjs +2471 -774
- package/dist/index.mjs.map +1 -1
- package/dist/registry.json +1161 -54
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -618,6 +618,248 @@ interface LoadingOverlayMolecule extends BaseMolecule {
|
|
|
618
618
|
type: "loading-overlay";
|
|
619
619
|
message?: string;
|
|
620
620
|
}
|
|
621
|
+
interface InsightSummaryCardMolecule extends BaseMolecule {
|
|
622
|
+
type: "insight-summary-card";
|
|
623
|
+
title: string;
|
|
624
|
+
summary?: string;
|
|
625
|
+
insights: Array<{
|
|
626
|
+
label: string;
|
|
627
|
+
value: string;
|
|
628
|
+
confidence?: "High" | "Medium" | "Low";
|
|
629
|
+
}>;
|
|
630
|
+
}
|
|
631
|
+
interface ResearchBriefCardMolecule extends BaseMolecule {
|
|
632
|
+
type: "research-brief-card";
|
|
633
|
+
title: string;
|
|
634
|
+
objective: string;
|
|
635
|
+
constraints?: string[];
|
|
636
|
+
requiredData?: Array<{
|
|
637
|
+
label: string;
|
|
638
|
+
value: string;
|
|
639
|
+
}>;
|
|
640
|
+
owner?: string;
|
|
641
|
+
dueDate?: string;
|
|
642
|
+
}
|
|
643
|
+
interface PriorityActionsCardMolecule extends BaseMolecule {
|
|
644
|
+
type: "priority-actions-card";
|
|
645
|
+
title: string;
|
|
646
|
+
summary?: string;
|
|
647
|
+
actions: Array<{
|
|
648
|
+
title: string;
|
|
649
|
+
owner?: string;
|
|
650
|
+
timeline?: string;
|
|
651
|
+
rationale?: string;
|
|
652
|
+
priority?: "High" | "Medium" | "Low";
|
|
653
|
+
}>;
|
|
654
|
+
}
|
|
655
|
+
interface KPIStatsCardMolecule extends BaseMolecule {
|
|
656
|
+
type: "kpi-stats-card";
|
|
657
|
+
title?: string;
|
|
658
|
+
subtitle?: string;
|
|
659
|
+
stats?: Array<{
|
|
660
|
+
label: string;
|
|
661
|
+
value: string | number;
|
|
662
|
+
delta?: string;
|
|
663
|
+
trend?: "up" | "down" | "neutral";
|
|
664
|
+
unit?: string;
|
|
665
|
+
icon?: string;
|
|
666
|
+
}>;
|
|
667
|
+
items?: Array<{
|
|
668
|
+
label: string;
|
|
669
|
+
value: string | number;
|
|
670
|
+
delta?: string;
|
|
671
|
+
trend?: "up" | "down" | "neutral";
|
|
672
|
+
unit?: string;
|
|
673
|
+
icon?: string;
|
|
674
|
+
}>;
|
|
675
|
+
}
|
|
676
|
+
interface ApprovalCardMolecule extends BaseMolecule {
|
|
677
|
+
type: "approval-card";
|
|
678
|
+
title: string;
|
|
679
|
+
description?: string;
|
|
680
|
+
details?: Array<{
|
|
681
|
+
label: string;
|
|
682
|
+
value: string;
|
|
683
|
+
}>;
|
|
684
|
+
status?: "pending" | "approved" | "rejected" | "changes_requested";
|
|
685
|
+
approve_label?: string;
|
|
686
|
+
reject_label?: string;
|
|
687
|
+
changes_label?: string;
|
|
688
|
+
show_changes_button?: boolean;
|
|
689
|
+
isLatestMessage?: boolean;
|
|
690
|
+
}
|
|
691
|
+
interface TimelineCardMolecule extends BaseMolecule {
|
|
692
|
+
type: "timeline-card";
|
|
693
|
+
title?: string;
|
|
694
|
+
steps?: Array<{
|
|
695
|
+
label: string;
|
|
696
|
+
description?: string;
|
|
697
|
+
status: "completed" | "active" | "pending";
|
|
698
|
+
timestamp?: string;
|
|
699
|
+
}>;
|
|
700
|
+
milestones?: Array<{
|
|
701
|
+
label: string;
|
|
702
|
+
description?: string;
|
|
703
|
+
status: "completed" | "active" | "pending";
|
|
704
|
+
timestamp?: string;
|
|
705
|
+
}>;
|
|
706
|
+
}
|
|
707
|
+
interface FeedbackRatingCardMolecule extends BaseMolecule {
|
|
708
|
+
type: "feedback-rating-card";
|
|
709
|
+
question: string;
|
|
710
|
+
max_rating?: number;
|
|
711
|
+
rating_label?: string;
|
|
712
|
+
comment_placeholder?: string;
|
|
713
|
+
show_comment?: boolean;
|
|
714
|
+
submit_label?: string;
|
|
715
|
+
isLatestMessage?: boolean;
|
|
716
|
+
}
|
|
717
|
+
interface DataTableCardMolecule extends BaseMolecule {
|
|
718
|
+
type: "data-table-card";
|
|
719
|
+
title?: string;
|
|
720
|
+
caption?: string;
|
|
721
|
+
columns: string[];
|
|
722
|
+
rows: Array<Record<string, string | number>>;
|
|
723
|
+
highlight_column?: string;
|
|
724
|
+
}
|
|
725
|
+
interface ChecklistCardMolecule extends BaseMolecule {
|
|
726
|
+
type: "checklist-card";
|
|
727
|
+
title?: string;
|
|
728
|
+
description?: string;
|
|
729
|
+
items?: Array<{
|
|
730
|
+
id: string;
|
|
731
|
+
label: string;
|
|
732
|
+
description?: string;
|
|
733
|
+
checked?: boolean;
|
|
734
|
+
required?: boolean;
|
|
735
|
+
}>;
|
|
736
|
+
tasks?: Array<{
|
|
737
|
+
id: string;
|
|
738
|
+
label: string;
|
|
739
|
+
description?: string;
|
|
740
|
+
checked?: boolean;
|
|
741
|
+
required?: boolean;
|
|
742
|
+
}>;
|
|
743
|
+
submit_label?: string;
|
|
744
|
+
require_all?: boolean;
|
|
745
|
+
isLatestMessage?: boolean;
|
|
746
|
+
}
|
|
747
|
+
interface PollCardMolecule extends BaseMolecule {
|
|
748
|
+
type: "poll-card";
|
|
749
|
+
question: string;
|
|
750
|
+
options?: Array<{
|
|
751
|
+
id: string;
|
|
752
|
+
label: string;
|
|
753
|
+
votes?: number;
|
|
754
|
+
}>;
|
|
755
|
+
choices?: Array<{
|
|
756
|
+
id: string;
|
|
757
|
+
label: string;
|
|
758
|
+
votes?: number;
|
|
759
|
+
}>;
|
|
760
|
+
total_votes?: number;
|
|
761
|
+
allow_multiple?: boolean;
|
|
762
|
+
vote_label?: string;
|
|
763
|
+
isLatestMessage?: boolean;
|
|
764
|
+
}
|
|
765
|
+
interface CampaignBriefCardMolecule extends BaseMolecule {
|
|
766
|
+
type: "campaign-brief-card";
|
|
767
|
+
title: string;
|
|
768
|
+
objective: string;
|
|
769
|
+
audience?: string;
|
|
770
|
+
budget?: string;
|
|
771
|
+
timeline?: string;
|
|
772
|
+
constraints?: string[];
|
|
773
|
+
}
|
|
774
|
+
interface DataSourceChecklistCardMolecule extends BaseMolecule {
|
|
775
|
+
type: "data-source-checklist-card";
|
|
776
|
+
title: string;
|
|
777
|
+
items: Array<{
|
|
778
|
+
id: string;
|
|
779
|
+
source: string;
|
|
780
|
+
connected?: boolean;
|
|
781
|
+
note?: string;
|
|
782
|
+
}>;
|
|
783
|
+
submit_label?: string;
|
|
784
|
+
isLatestMessage?: boolean;
|
|
785
|
+
}
|
|
786
|
+
interface GoalAlignmentCardMolecule extends BaseMolecule {
|
|
787
|
+
type: "goal-alignment-card";
|
|
788
|
+
title: string;
|
|
789
|
+
goals: Array<{
|
|
790
|
+
goal: string;
|
|
791
|
+
status?: "Aligned" | "Partial" | "Misaligned";
|
|
792
|
+
note?: string;
|
|
793
|
+
}>;
|
|
794
|
+
}
|
|
795
|
+
interface AudiencePersonaCardMolecule extends BaseMolecule {
|
|
796
|
+
type: "audience-persona-card";
|
|
797
|
+
title: string;
|
|
798
|
+
segments: Array<{
|
|
799
|
+
name: string;
|
|
800
|
+
percentage?: number;
|
|
801
|
+
interest?: string;
|
|
802
|
+
}>;
|
|
803
|
+
}
|
|
804
|
+
interface ChannelPlanCardMolecule extends BaseMolecule {
|
|
805
|
+
type: "channel-plan-card";
|
|
806
|
+
title: string;
|
|
807
|
+
plans: Array<{
|
|
808
|
+
channel: string;
|
|
809
|
+
objective?: string;
|
|
810
|
+
cadence?: string;
|
|
811
|
+
}>;
|
|
812
|
+
}
|
|
813
|
+
interface InsightDigestCardMolecule extends BaseMolecule {
|
|
814
|
+
type: "insight-digest-card";
|
|
815
|
+
title: string;
|
|
816
|
+
summary?: string;
|
|
817
|
+
insights: Array<{
|
|
818
|
+
label: string;
|
|
819
|
+
detail: string;
|
|
820
|
+
confidence?: "High" | "Medium" | "Low";
|
|
821
|
+
}>;
|
|
822
|
+
}
|
|
823
|
+
interface ActionPriorityCardMolecule extends BaseMolecule {
|
|
824
|
+
type: "action-priority-card";
|
|
825
|
+
title: string;
|
|
826
|
+
actions: Array<{
|
|
827
|
+
title: string;
|
|
828
|
+
owner?: string;
|
|
829
|
+
timeline?: string;
|
|
830
|
+
priority?: "High" | "Medium" | "Low";
|
|
831
|
+
}>;
|
|
832
|
+
}
|
|
833
|
+
interface RiskSignalCardMolecule extends BaseMolecule {
|
|
834
|
+
type: "risk-signal-card";
|
|
835
|
+
title: string;
|
|
836
|
+
risks: Array<{
|
|
837
|
+
signal: string;
|
|
838
|
+
severity?: "High" | "Medium" | "Low";
|
|
839
|
+
impact?: string;
|
|
840
|
+
}>;
|
|
841
|
+
}
|
|
842
|
+
interface ScoreBreakdownCardMolecule extends BaseMolecule {
|
|
843
|
+
type: "score-breakdown-card";
|
|
844
|
+
title: string;
|
|
845
|
+
totalScore?: number;
|
|
846
|
+
outOf?: number;
|
|
847
|
+
items: Array<{
|
|
848
|
+
label: string;
|
|
849
|
+
score: number;
|
|
850
|
+
outOf?: number;
|
|
851
|
+
}>;
|
|
852
|
+
}
|
|
853
|
+
interface NextStepCardMolecule extends BaseMolecule {
|
|
854
|
+
type: "next-step-card";
|
|
855
|
+
title: string;
|
|
856
|
+
steps: Array<{
|
|
857
|
+
step: string;
|
|
858
|
+
owner?: string;
|
|
859
|
+
due?: string;
|
|
860
|
+
}>;
|
|
861
|
+
ctaLabel?: string;
|
|
862
|
+
}
|
|
621
863
|
interface PlatformIconGroupMolecule extends BaseMolecule {
|
|
622
864
|
type: "platform-icon-group";
|
|
623
865
|
platforms: Array<{
|
|
@@ -827,7 +1069,7 @@ interface GitHubIssueTrackerMolecule extends BaseMolecule {
|
|
|
827
1069
|
days_stale: number;
|
|
828
1070
|
}>;
|
|
829
1071
|
}
|
|
830
|
-
type UIMolecule = CampaignSeedCardAtom | SearchSpecCardAtom | MCQCardAtom | ActionButtonAtom | StatsGridMolecule | EmptyStateMolecule | LoadingOverlayMolecule | PlatformIconGroupMolecule | CreatorProfileSummaryMolecule | AudienceMetricCardMolecule | FilterBarMolecule | FileUploadMolecule | TagCloudMolecule | CreatorGridCardMolecule | BrandAffinityGroupMolecule | ContentPreviewGalleryMolecule | DataGridMolecule | StepWizardMolecule | NotificationListMolecule | AudienceDemographicsCardMolecule | GrowthChartCardMolecule | TopPostsGridMolecule | CreatorActionHeaderMolecule | SocialPostMolecule | CreatorWidgetMolecule | GitHubConnectMolecule | GitHubRepoHealthMolecule | GitHubIssueTrackerMolecule | RecommendationCardMolecule | ConfirmationCardMolecule;
|
|
1072
|
+
type UIMolecule = CampaignSeedCardAtom | SearchSpecCardAtom | MCQCardAtom | ActionButtonAtom | StatsGridMolecule | EmptyStateMolecule | LoadingOverlayMolecule | InsightSummaryCardMolecule | ResearchBriefCardMolecule | PriorityActionsCardMolecule | KPIStatsCardMolecule | ApprovalCardMolecule | TimelineCardMolecule | FeedbackRatingCardMolecule | DataTableCardMolecule | ChecklistCardMolecule | PollCardMolecule | CampaignBriefCardMolecule | DataSourceChecklistCardMolecule | GoalAlignmentCardMolecule | AudiencePersonaCardMolecule | ChannelPlanCardMolecule | InsightDigestCardMolecule | ActionPriorityCardMolecule | RiskSignalCardMolecule | ScoreBreakdownCardMolecule | NextStepCardMolecule | PlatformIconGroupMolecule | CreatorProfileSummaryMolecule | AudienceMetricCardMolecule | FilterBarMolecule | FileUploadMolecule | TagCloudMolecule | CreatorGridCardMolecule | BrandAffinityGroupMolecule | ContentPreviewGalleryMolecule | DataGridMolecule | StepWizardMolecule | NotificationListMolecule | AudienceDemographicsCardMolecule | GrowthChartCardMolecule | TopPostsGridMolecule | CreatorActionHeaderMolecule | SocialPostMolecule | CreatorWidgetMolecule | GitHubConnectMolecule | GitHubRepoHealthMolecule | GitHubIssueTrackerMolecule | RecommendationCardMolecule | ConfirmationCardMolecule;
|
|
831
1073
|
|
|
832
1074
|
type UIComponent = UIAtom | UIMolecule;
|
|
833
1075
|
interface UISchema {
|
|
@@ -1709,6 +1951,38 @@ declare const IconAtom: React__default.FC<IconAtomType>;
|
|
|
1709
1951
|
*/
|
|
1710
1952
|
declare const ArrowToggleAtom: React__default.FC<ArrowToggleAtomType>;
|
|
1711
1953
|
|
|
1954
|
+
interface WidgetTheme {
|
|
1955
|
+
/** Card / container background. Replaces `cardSurface`. */
|
|
1956
|
+
background?: string;
|
|
1957
|
+
/** Inner surface background (rows, cells, option blocks). Replaces `black/20`. */
|
|
1958
|
+
surface?: string;
|
|
1959
|
+
/** Border color. Replaces `gray400`. */
|
|
1960
|
+
border?: string;
|
|
1961
|
+
/** Primary text. Replaces `cardText`. */
|
|
1962
|
+
text?: string;
|
|
1963
|
+
/** Secondary / muted text. Replaces `cardText/50`. */
|
|
1964
|
+
textMuted?: string;
|
|
1965
|
+
/** Accent / highlight color. Replaces `gold` (#BFAD82). Used for selected states, stars, progress, active steps. */
|
|
1966
|
+
accent?: string;
|
|
1967
|
+
}
|
|
1968
|
+
/** Convert a hex color to rgba with the given alpha (0–1). Falls back to the original string for non-hex values. */
|
|
1969
|
+
declare function withAlpha(color: string, alpha: number): string;
|
|
1970
|
+
/**
|
|
1971
|
+
* Resolves a WidgetTheme into ready-to-use CSSProperties objects.
|
|
1972
|
+
* Every property is undefined when no theme value is set, so Tailwind
|
|
1973
|
+
* CSS-variable classes remain in effect as the default.
|
|
1974
|
+
*/
|
|
1975
|
+
declare function th(theme?: WidgetTheme): {
|
|
1976
|
+
root: CSSProperties;
|
|
1977
|
+
surface: CSSProperties;
|
|
1978
|
+
text: CSSProperties;
|
|
1979
|
+
muted: CSSProperties;
|
|
1980
|
+
accent: CSSProperties;
|
|
1981
|
+
accentBg: CSSProperties;
|
|
1982
|
+
accentBorder: CSSProperties;
|
|
1983
|
+
accentSubtle: (alpha?: number) => CSSProperties;
|
|
1984
|
+
};
|
|
1985
|
+
|
|
1712
1986
|
interface EditableFieldProps {
|
|
1713
1987
|
/**
|
|
1714
1988
|
* Unique identifier
|
|
@@ -2368,6 +2642,423 @@ interface InputWidgetProps extends InputWidgetType {
|
|
|
2368
2642
|
*/
|
|
2369
2643
|
declare const InputWidget: React__default.FC<InputWidgetProps>;
|
|
2370
2644
|
|
|
2645
|
+
interface KPIStatItem {
|
|
2646
|
+
label: string;
|
|
2647
|
+
value: string | number;
|
|
2648
|
+
delta?: string;
|
|
2649
|
+
trend?: "up" | "down" | "neutral";
|
|
2650
|
+
unit?: string;
|
|
2651
|
+
icon?: string;
|
|
2652
|
+
}
|
|
2653
|
+
interface KPIStatsCardProps {
|
|
2654
|
+
title?: string;
|
|
2655
|
+
subtitle?: string;
|
|
2656
|
+
stats?: KPIStatItem[];
|
|
2657
|
+
items?: KPIStatItem[];
|
|
2658
|
+
theme?: WidgetTheme;
|
|
2659
|
+
className?: string;
|
|
2660
|
+
onAction?: (action: any) => void;
|
|
2661
|
+
}
|
|
2662
|
+
|
|
2663
|
+
declare const KPIStatsCard: React__default.NamedExoticComponent<KPIStatsCardProps>;
|
|
2664
|
+
|
|
2665
|
+
type ApprovalStatus = "pending" | "approved" | "rejected" | "changes_requested";
|
|
2666
|
+
interface ApprovalDetail {
|
|
2667
|
+
label: string;
|
|
2668
|
+
value: string;
|
|
2669
|
+
}
|
|
2670
|
+
interface ApprovalCardProps {
|
|
2671
|
+
title: string;
|
|
2672
|
+
description?: string;
|
|
2673
|
+
details?: ApprovalDetail[];
|
|
2674
|
+
status?: ApprovalStatus;
|
|
2675
|
+
approve_label?: string;
|
|
2676
|
+
reject_label?: string;
|
|
2677
|
+
changes_label?: string;
|
|
2678
|
+
show_changes_button?: boolean;
|
|
2679
|
+
isLatestMessage?: boolean;
|
|
2680
|
+
disabled?: boolean;
|
|
2681
|
+
theme?: WidgetTheme;
|
|
2682
|
+
className?: string;
|
|
2683
|
+
sendMessage?: (text: string) => void;
|
|
2684
|
+
onAction?: (action: any) => void;
|
|
2685
|
+
}
|
|
2686
|
+
|
|
2687
|
+
declare const ApprovalCard: React__default.NamedExoticComponent<ApprovalCardProps>;
|
|
2688
|
+
|
|
2689
|
+
type TimelineStepStatus = "completed" | "active" | "pending";
|
|
2690
|
+
interface TimelineStep {
|
|
2691
|
+
label: string;
|
|
2692
|
+
description?: string;
|
|
2693
|
+
status: TimelineStepStatus;
|
|
2694
|
+
timestamp?: string;
|
|
2695
|
+
}
|
|
2696
|
+
interface TimelineCardProps {
|
|
2697
|
+
title?: string;
|
|
2698
|
+
steps?: TimelineStep[];
|
|
2699
|
+
milestones?: TimelineStep[];
|
|
2700
|
+
theme?: WidgetTheme;
|
|
2701
|
+
className?: string;
|
|
2702
|
+
onAction?: (action: any) => void;
|
|
2703
|
+
}
|
|
2704
|
+
|
|
2705
|
+
declare const TimelineCard: React__default.NamedExoticComponent<TimelineCardProps>;
|
|
2706
|
+
|
|
2707
|
+
interface FeedbackRatingCardProps {
|
|
2708
|
+
question: string;
|
|
2709
|
+
max_rating?: number;
|
|
2710
|
+
rating_label?: string;
|
|
2711
|
+
comment_placeholder?: string;
|
|
2712
|
+
show_comment?: boolean;
|
|
2713
|
+
submit_label?: string;
|
|
2714
|
+
isLatestMessage?: boolean;
|
|
2715
|
+
disabled?: boolean;
|
|
2716
|
+
theme?: WidgetTheme;
|
|
2717
|
+
className?: string;
|
|
2718
|
+
sendMessage?: (text: string) => void;
|
|
2719
|
+
onAction?: (action: any) => void;
|
|
2720
|
+
}
|
|
2721
|
+
|
|
2722
|
+
declare const FeedbackRatingCard: React__default.NamedExoticComponent<FeedbackRatingCardProps>;
|
|
2723
|
+
|
|
2724
|
+
interface DataTableCardProps {
|
|
2725
|
+
title?: string;
|
|
2726
|
+
caption?: string;
|
|
2727
|
+
columns: string[];
|
|
2728
|
+
rows: Array<Record<string, string | number>>;
|
|
2729
|
+
highlight_column?: string;
|
|
2730
|
+
theme?: WidgetTheme;
|
|
2731
|
+
className?: string;
|
|
2732
|
+
onAction?: (action: any) => void;
|
|
2733
|
+
}
|
|
2734
|
+
|
|
2735
|
+
declare const DataTableCard: React__default.NamedExoticComponent<DataTableCardProps>;
|
|
2736
|
+
|
|
2737
|
+
interface ChecklistItem {
|
|
2738
|
+
id: string;
|
|
2739
|
+
label: string;
|
|
2740
|
+
description?: string;
|
|
2741
|
+
checked?: boolean;
|
|
2742
|
+
required?: boolean;
|
|
2743
|
+
}
|
|
2744
|
+
interface ChecklistCardProps {
|
|
2745
|
+
title?: string;
|
|
2746
|
+
description?: string;
|
|
2747
|
+
items?: ChecklistItem[];
|
|
2748
|
+
tasks?: ChecklistItem[];
|
|
2749
|
+
submit_label?: string;
|
|
2750
|
+
require_all?: boolean;
|
|
2751
|
+
isLatestMessage?: boolean;
|
|
2752
|
+
disabled?: boolean;
|
|
2753
|
+
theme?: WidgetTheme;
|
|
2754
|
+
className?: string;
|
|
2755
|
+
sendMessage?: (text: string) => void;
|
|
2756
|
+
onAction?: (action: any) => void;
|
|
2757
|
+
}
|
|
2758
|
+
|
|
2759
|
+
declare const ChecklistCard: React__default.NamedExoticComponent<ChecklistCardProps>;
|
|
2760
|
+
|
|
2761
|
+
interface PollOption {
|
|
2762
|
+
id: string;
|
|
2763
|
+
label: string;
|
|
2764
|
+
votes?: number;
|
|
2765
|
+
}
|
|
2766
|
+
interface PollCardProps {
|
|
2767
|
+
question: string;
|
|
2768
|
+
options?: PollOption[];
|
|
2769
|
+
choices?: PollOption[];
|
|
2770
|
+
total_votes?: number;
|
|
2771
|
+
allow_multiple?: boolean;
|
|
2772
|
+
vote_label?: string;
|
|
2773
|
+
isLatestMessage?: boolean;
|
|
2774
|
+
disabled?: boolean;
|
|
2775
|
+
theme?: WidgetTheme;
|
|
2776
|
+
className?: string;
|
|
2777
|
+
sendMessage?: (text: string) => void;
|
|
2778
|
+
onAction?: (action: any) => void;
|
|
2779
|
+
}
|
|
2780
|
+
|
|
2781
|
+
declare const PollCard: React__default.NamedExoticComponent<PollCardProps>;
|
|
2782
|
+
|
|
2783
|
+
type CalendarEventStatus = "upcoming" | "live" | "ended" | "cancelled";
|
|
2784
|
+
interface CalendarEventAttendee {
|
|
2785
|
+
name: string;
|
|
2786
|
+
role?: string;
|
|
2787
|
+
}
|
|
2788
|
+
interface CalendarEventCardProps {
|
|
2789
|
+
title: string;
|
|
2790
|
+
date: string;
|
|
2791
|
+
time?: string;
|
|
2792
|
+
duration?: string;
|
|
2793
|
+
location?: string;
|
|
2794
|
+
description?: string;
|
|
2795
|
+
attendees?: CalendarEventAttendee[];
|
|
2796
|
+
status?: CalendarEventStatus;
|
|
2797
|
+
join_label?: string;
|
|
2798
|
+
theme?: WidgetTheme;
|
|
2799
|
+
className?: string;
|
|
2800
|
+
onAction?: (action: any) => void;
|
|
2801
|
+
}
|
|
2802
|
+
|
|
2803
|
+
declare const CalendarEventCard: React__default.NamedExoticComponent<CalendarEventCardProps>;
|
|
2804
|
+
|
|
2805
|
+
interface BudgetAllocItem {
|
|
2806
|
+
label: string;
|
|
2807
|
+
amount: number;
|
|
2808
|
+
color?: string;
|
|
2809
|
+
note?: string;
|
|
2810
|
+
}
|
|
2811
|
+
interface BudgetAllocCardProps {
|
|
2812
|
+
title?: string;
|
|
2813
|
+
currency?: string;
|
|
2814
|
+
total?: number;
|
|
2815
|
+
items?: BudgetAllocItem[];
|
|
2816
|
+
allocations?: BudgetAllocItem[];
|
|
2817
|
+
show_total?: boolean;
|
|
2818
|
+
theme?: WidgetTheme;
|
|
2819
|
+
className?: string;
|
|
2820
|
+
onAction?: (action: any) => void;
|
|
2821
|
+
}
|
|
2822
|
+
|
|
2823
|
+
declare const BudgetAllocCard: React__default.NamedExoticComponent<BudgetAllocCardProps>;
|
|
2824
|
+
|
|
2825
|
+
interface ComparisonAttribute {
|
|
2826
|
+
key: string;
|
|
2827
|
+
value: string;
|
|
2828
|
+
highlight?: boolean;
|
|
2829
|
+
}
|
|
2830
|
+
interface ComparisonOption {
|
|
2831
|
+
id: string;
|
|
2832
|
+
label: string;
|
|
2833
|
+
badge?: string;
|
|
2834
|
+
badge_color?: "gold" | "blue" | "emerald" | "violet";
|
|
2835
|
+
attributes: ComparisonAttribute[];
|
|
2836
|
+
}
|
|
2837
|
+
interface ComparisonCardProps {
|
|
2838
|
+
title?: string;
|
|
2839
|
+
description?: string;
|
|
2840
|
+
attribute_labels: string[];
|
|
2841
|
+
options: ComparisonOption[];
|
|
2842
|
+
select_label?: string;
|
|
2843
|
+
isLatestMessage?: boolean;
|
|
2844
|
+
disabled?: boolean;
|
|
2845
|
+
theme?: WidgetTheme;
|
|
2846
|
+
className?: string;
|
|
2847
|
+
sendMessage?: (text: string) => void;
|
|
2848
|
+
onAction?: (action: any) => void;
|
|
2849
|
+
}
|
|
2850
|
+
|
|
2851
|
+
declare const ComparisonCard: React__default.NamedExoticComponent<ComparisonCardProps>;
|
|
2852
|
+
|
|
2853
|
+
interface InsightSummaryItem {
|
|
2854
|
+
label: string;
|
|
2855
|
+
value: string;
|
|
2856
|
+
confidence?: "High" | "Medium" | "Low";
|
|
2857
|
+
}
|
|
2858
|
+
interface InsightSummaryCardProps {
|
|
2859
|
+
title: string;
|
|
2860
|
+
summary?: string;
|
|
2861
|
+
insights: InsightSummaryItem[];
|
|
2862
|
+
className?: string;
|
|
2863
|
+
}
|
|
2864
|
+
|
|
2865
|
+
/**
|
|
2866
|
+
* InsightSummaryCard
|
|
2867
|
+
* Compact result widget for summary + key insights.
|
|
2868
|
+
*/
|
|
2869
|
+
declare const InsightSummaryCard: React__default.FC<InsightSummaryCardProps>;
|
|
2870
|
+
|
|
2871
|
+
interface ResearchBriefItem {
|
|
2872
|
+
label: string;
|
|
2873
|
+
value: string;
|
|
2874
|
+
}
|
|
2875
|
+
interface ResearchBriefCardProps {
|
|
2876
|
+
title: string;
|
|
2877
|
+
objective: string;
|
|
2878
|
+
constraints?: string[];
|
|
2879
|
+
requiredData?: ResearchBriefItem[];
|
|
2880
|
+
owner?: string;
|
|
2881
|
+
dueDate?: string;
|
|
2882
|
+
className?: string;
|
|
2883
|
+
}
|
|
2884
|
+
|
|
2885
|
+
/**
|
|
2886
|
+
* ResearchBriefCard
|
|
2887
|
+
* Intake widget for capturing research scope and required inputs.
|
|
2888
|
+
*/
|
|
2889
|
+
declare const ResearchBriefCard: React__default.FC<ResearchBriefCardProps>;
|
|
2890
|
+
|
|
2891
|
+
type ActionPriority = "High" | "Medium" | "Low";
|
|
2892
|
+
interface PriorityActionItem {
|
|
2893
|
+
title: string;
|
|
2894
|
+
owner?: string;
|
|
2895
|
+
timeline?: string;
|
|
2896
|
+
rationale?: string;
|
|
2897
|
+
priority?: ActionPriority;
|
|
2898
|
+
}
|
|
2899
|
+
interface PriorityActionsCardProps {
|
|
2900
|
+
title: string;
|
|
2901
|
+
summary?: string;
|
|
2902
|
+
actions: PriorityActionItem[];
|
|
2903
|
+
className?: string;
|
|
2904
|
+
}
|
|
2905
|
+
|
|
2906
|
+
/**
|
|
2907
|
+
* PriorityActionsCard
|
|
2908
|
+
* Output widget that presents ranked next actions.
|
|
2909
|
+
*/
|
|
2910
|
+
declare const PriorityActionsCard: React__default.FC<PriorityActionsCardProps>;
|
|
2911
|
+
|
|
2912
|
+
interface CampaignBriefCardProps {
|
|
2913
|
+
title: string;
|
|
2914
|
+
objective: string;
|
|
2915
|
+
audience?: string;
|
|
2916
|
+
budget?: string;
|
|
2917
|
+
timeline?: string;
|
|
2918
|
+
constraints?: string[];
|
|
2919
|
+
theme?: WidgetTheme;
|
|
2920
|
+
className?: string;
|
|
2921
|
+
}
|
|
2922
|
+
|
|
2923
|
+
declare const CampaignBriefCard: React__default.FC<CampaignBriefCardProps>;
|
|
2924
|
+
|
|
2925
|
+
interface DataSourceItem {
|
|
2926
|
+
id: string;
|
|
2927
|
+
source: string;
|
|
2928
|
+
connected?: boolean;
|
|
2929
|
+
note?: string;
|
|
2930
|
+
}
|
|
2931
|
+
interface DataSourceChecklistCardProps {
|
|
2932
|
+
title: string;
|
|
2933
|
+
items: DataSourceItem[];
|
|
2934
|
+
submit_label?: string;
|
|
2935
|
+
isLatestMessage?: boolean;
|
|
2936
|
+
disabled?: boolean;
|
|
2937
|
+
theme?: WidgetTheme;
|
|
2938
|
+
className?: string;
|
|
2939
|
+
onAction?: (action: any) => void;
|
|
2940
|
+
}
|
|
2941
|
+
|
|
2942
|
+
declare const DataSourceChecklistCard: React__default.FC<DataSourceChecklistCardProps>;
|
|
2943
|
+
|
|
2944
|
+
interface GoalAlignmentItem {
|
|
2945
|
+
goal: string;
|
|
2946
|
+
status?: "Aligned" | "Partial" | "Misaligned";
|
|
2947
|
+
note?: string;
|
|
2948
|
+
}
|
|
2949
|
+
interface GoalAlignmentCardProps {
|
|
2950
|
+
title: string;
|
|
2951
|
+
goals: GoalAlignmentItem[];
|
|
2952
|
+
theme?: WidgetTheme;
|
|
2953
|
+
className?: string;
|
|
2954
|
+
}
|
|
2955
|
+
|
|
2956
|
+
declare const GoalAlignmentCard: React__default.FC<GoalAlignmentCardProps>;
|
|
2957
|
+
|
|
2958
|
+
interface PersonaSegment {
|
|
2959
|
+
name: string;
|
|
2960
|
+
percentage?: number;
|
|
2961
|
+
interest?: string;
|
|
2962
|
+
}
|
|
2963
|
+
interface AudiencePersonaCardProps {
|
|
2964
|
+
title: string;
|
|
2965
|
+
segments: PersonaSegment[];
|
|
2966
|
+
theme?: WidgetTheme;
|
|
2967
|
+
className?: string;
|
|
2968
|
+
}
|
|
2969
|
+
|
|
2970
|
+
declare const AudiencePersonaCard: React__default.FC<AudiencePersonaCardProps>;
|
|
2971
|
+
|
|
2972
|
+
interface ChannelPlanItem {
|
|
2973
|
+
channel: string;
|
|
2974
|
+
objective?: string;
|
|
2975
|
+
cadence?: string;
|
|
2976
|
+
}
|
|
2977
|
+
interface ChannelPlanCardProps {
|
|
2978
|
+
title: string;
|
|
2979
|
+
plans: ChannelPlanItem[];
|
|
2980
|
+
theme?: WidgetTheme;
|
|
2981
|
+
className?: string;
|
|
2982
|
+
}
|
|
2983
|
+
|
|
2984
|
+
declare const ChannelPlanCard: React__default.FC<ChannelPlanCardProps>;
|
|
2985
|
+
|
|
2986
|
+
interface InsightDigestItem {
|
|
2987
|
+
label: string;
|
|
2988
|
+
detail: string;
|
|
2989
|
+
confidence?: "High" | "Medium" | "Low";
|
|
2990
|
+
}
|
|
2991
|
+
interface InsightDigestCardProps {
|
|
2992
|
+
title: string;
|
|
2993
|
+
summary?: string;
|
|
2994
|
+
insights: InsightDigestItem[];
|
|
2995
|
+
theme?: WidgetTheme;
|
|
2996
|
+
className?: string;
|
|
2997
|
+
}
|
|
2998
|
+
|
|
2999
|
+
declare const InsightDigestCard: React__default.FC<InsightDigestCardProps>;
|
|
3000
|
+
|
|
3001
|
+
interface ActionPriorityItem {
|
|
3002
|
+
title: string;
|
|
3003
|
+
owner?: string;
|
|
3004
|
+
timeline?: string;
|
|
3005
|
+
priority?: "High" | "Medium" | "Low";
|
|
3006
|
+
}
|
|
3007
|
+
interface ActionPriorityCardProps {
|
|
3008
|
+
title: string;
|
|
3009
|
+
actions: ActionPriorityItem[];
|
|
3010
|
+
theme?: WidgetTheme;
|
|
3011
|
+
className?: string;
|
|
3012
|
+
}
|
|
3013
|
+
|
|
3014
|
+
declare const ActionPriorityCard: React__default.FC<ActionPriorityCardProps>;
|
|
3015
|
+
|
|
3016
|
+
interface RiskSignalItem {
|
|
3017
|
+
signal: string;
|
|
3018
|
+
severity?: "High" | "Medium" | "Low";
|
|
3019
|
+
impact?: string;
|
|
3020
|
+
}
|
|
3021
|
+
interface RiskSignalCardProps {
|
|
3022
|
+
title: string;
|
|
3023
|
+
risks: RiskSignalItem[];
|
|
3024
|
+
theme?: WidgetTheme;
|
|
3025
|
+
className?: string;
|
|
3026
|
+
}
|
|
3027
|
+
|
|
3028
|
+
declare const RiskSignalCard: React__default.FC<RiskSignalCardProps>;
|
|
3029
|
+
|
|
3030
|
+
interface ScoreBreakdownItem {
|
|
3031
|
+
label: string;
|
|
3032
|
+
score: number;
|
|
3033
|
+
outOf?: number;
|
|
3034
|
+
}
|
|
3035
|
+
interface ScoreBreakdownCardProps {
|
|
3036
|
+
title: string;
|
|
3037
|
+
totalScore?: number;
|
|
3038
|
+
outOf?: number;
|
|
3039
|
+
items: ScoreBreakdownItem[];
|
|
3040
|
+
theme?: WidgetTheme;
|
|
3041
|
+
className?: string;
|
|
3042
|
+
}
|
|
3043
|
+
|
|
3044
|
+
declare const ScoreBreakdownCard: React__default.FC<ScoreBreakdownCardProps>;
|
|
3045
|
+
|
|
3046
|
+
interface NextStepItem {
|
|
3047
|
+
step: string;
|
|
3048
|
+
owner?: string;
|
|
3049
|
+
due?: string;
|
|
3050
|
+
}
|
|
3051
|
+
interface NextStepCardProps {
|
|
3052
|
+
title: string;
|
|
3053
|
+
steps: NextStepItem[];
|
|
3054
|
+
ctaLabel?: string;
|
|
3055
|
+
theme?: WidgetTheme;
|
|
3056
|
+
className?: string;
|
|
3057
|
+
onAction?: (action: any) => void;
|
|
3058
|
+
}
|
|
3059
|
+
|
|
3060
|
+
declare const NextStepCard: React__default.FC<NextStepCardProps>;
|
|
3061
|
+
|
|
2371
3062
|
interface CampaignSeedCardProps extends Omit<FormCardProps, "fields"> {
|
|
2372
3063
|
/**
|
|
2373
3064
|
* Status of the selection (done by user or agent)
|
|
@@ -2847,4 +3538,4 @@ declare function CreatorImageList({ creatorImages, creatorLength, isAgentOutput,
|
|
|
2847
3538
|
|
|
2848
3539
|
declare function CreatorProgressBar({ statusDetails, timeRemaining: _timeRemaining, }: CreatorProgressBarProps): react_jsx_runtime.JSX.Element;
|
|
2849
3540
|
|
|
2850
|
-
export { Accordion, AccordionAtom, type AccordionAtomType, AccordionContent, AccordionItem, AccordionTrigger, ActionButton, type ActionButtonAtom, type ActionButtonProps, Alert, AlertAtom, type AlertAtomType, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogAtom, type AlertDialogAtomType, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertTitle, ArrowToggleAtom, type ArrowToggleAtomType, AspectRatio, AspectRatioAtom, type AspectRatioAtomType, AudienceDemographicsCard, type AudienceDemographicsCardMolecule, AudienceMetricCard, type AudienceMetricCardMolecule, Avatar, AvatarAtom, type AvatarAtomType, AvatarFallback, AvatarImage, Badge, BadgeAtom, type BadgeAtomType, type BaseAtom, type BaseMolecule, type BranchCI, BrandAffinityGroup, type BrandAffinityGroupMolecule, Breadcrumb, BreadcrumbAtom, type BreadcrumbAtomType, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonAction, ButtonAtom, type ButtonAtomType, type ButtonSize$1 as ButtonSize, type ButtonVariant$1 as ButtonVariant, Calendar, CalendarAtom, type CalendarAtomType, CampaignConceptCard, type CampaignConceptCardProps, CampaignSeedCard, type CampaignSeedCardAtom, type CampaignSeedCardProps, Card, CardAtom, type CardAtomType, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselAtom, type CarouselAtomType, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartAtom, type ChartAtomType, type ChartDataPoint, Checkbox, CheckboxAtom, type CheckboxAtomType, Collapsible, CollapsibleAtom, type CollapsibleAtomType, CollapsibleContent, CollapsibleTrigger, type CollectedField, Command, CommandAtom, type CommandAtomType, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ConfirmationCard, type ConfirmationCardMolecule, type ConfirmationCardProps, ContentPreviewGallery, type ContentPreviewGalleryMolecule, ContextMenu, ContextMenuAtom, type ContextMenuAtomType, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuTrigger, CountrySelectDisplay, CountrySelectEdit, CreatorActionHeader, type CreatorActionHeaderMolecule, CreatorCompactView, type CreatorCompactViewProps, type CreatorDetailData, CreatorExpandedPanel, CreatorGridCard, type CreatorGridCardMolecule, CreatorImageList, type CreatorImageListProps, CreatorProfileSummary, type CreatorProfileSummaryMolecule, CreatorProgressBar, type CreatorProgressBarProps, CreatorSearch, type CreatorSearchProps, type CreatorVersionData, CreatorWidget, type CreatorWidgetAction, type CreatorWidgetMolecule, type CreatorWidgetProps, CreatorWidgetSkeleton, type CreatorWidgetStatus, DataGrid, type DataGridMolecule, Dialog, DialogAtom, type DialogAtomType, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, Drawer, DrawerAtom, type DrawerAtomType, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuAtom, type DropdownMenuAtomType, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuTrigger, EditableField, type EditableFieldProps, EmptyState, type EmptyStateMolecule, type FetchCreatorDetailsParams, type FetchStatusParams, type FetchVersionsParams, FileUpload, type FileUploadMolecule, FilterBar, type FilterBarMolecule, Form, FormCard, type FormCardProps, FormControl, FormDescription, FormField, FormInputAtom, type FormInputAtomType, FormItem, FormLabel, FormMessage, FormSelectAtom, type FormSelectAtomType, FormTextareaAtom, type FormTextareaAtomType, type GapSize, GitHubConnectCard, type GitHubConnectCardProps, type GitHubConnectMolecule, GitHubIssueTrackerCard, type GitHubIssueTrackerCardProps, type GitHubIssueTrackerMolecule, GitHubRepoHealthCard, type GitHubRepoHealthCardProps, type GitHubRepoHealthMolecule, GitHubReposListCard, type GitHubReposListCardProps, GoogleSheetsCard, type GoogleSheetsCardProps, GoogleSheetsConnectCard, type GoogleSheetsConnectCardProps, GoogleSheetsListCard, type GoogleSheetsListCardProps, GrowthChartCard, type GrowthChartCardMolecule, HoverCard, HoverCardContent, HoverCardTrigger, IconAtom, type IconAtomType, type IconName, Input, InputAtom, type InputAtomType, type InputElementLike, InputOTP, InputOTPAtom, type InputOTPAtomType, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputType, InputWidget, type InputWidgetField, type InputWidgetFieldKind, type InputWidgetType, KbdAtom, type KbdAtomType, KeywordBundlesDisplay, KeywordBundlesEdit, Label, LabelAtom, type LabelAtomType, LayoutAtom, type LayoutAtomType, type LayoutDirection, LoadingOverlay, type LoadingOverlayMolecule, MCQCard, type MCQCardAtom, type MCQCardProps, type MCQOption, Menubar, MenubarCheckboxItem, MenubarContent, MenubarItem, MenubarLabel, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NotificationList, type NotificationListMolecule, PXEngineRenderer, Pagination, PaginationAtom, type PaginationAtomType, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PlatformIconGroup, type PlatformIconGroupMolecule, PlatformSelectDisplay, PlatformSelectEdit, type PollingConfig, Popover, PopoverAtom, type PopoverAtomType, PopoverContent, PopoverTrigger, Progress, ProgressAtom, type ProgressAtomType, type PullRequest, REGISTERED_COMPONENTS, RadioAtom, type RadioAtomType, RadioGroup, RadioGroupAtom, type RadioGroupAtomType, RadioGroupItem, RatingAtom, type RatingAtomType, RecommendationCard, type RecommendationCardMolecule, type RecommendationCardProps, type RepoItem, ResizableAtom, type ResizableAtomType, ResizablePanel, ResizablePanelGroup, type RunSseConfig, ScrollArea, ScrollAreaAtom, type ScrollAreaAtomType, ScrollBar, SearchSpecCard, type SearchSpecCardAtom, type SearchSpecCardProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, SeparatorAtom, type SeparatorAtomType, Sheet, SheetAtom, type SheetAtomType, SheetClose, type SheetColumn, SheetContent, SheetDescription, SheetFooter, SheetHeader, type SheetRow, type SheetTabItem, SheetTitle, SheetTrigger, Skeleton, SkeletonAtom, type SkeletonAtomType, Slider, SliderAtom, type SliderAtomType, type SocialPost, SocialPostCard, type SocialPostCardProps, type SocialPostMolecule, Spinner, SpinnerAtom, type SpinnerAtomType, type SpreadsheetItem, type StaleIssue, StatsGrid, type StatsGridMolecule, type StatusDetails, StepWizard, type StepWizardMolecule, Switch, SwitchAtom, type SwitchAtomType, Table, TableAtom, type TableAtomType, TableBody, TableCaption, TableCell, TableHead, TableHeader, TableRow, Tabs, TabsAtom, type TabsAtomType, TabsContent, TabsList, TabsTrigger, TagCloud, type TagCloudMolecule, TextAtom, type TextAtomType, type TextVariant, Textarea, TextareaAtom, TimelineAtom, type TimelineAtomType, ToggleAtom, type ToggleAtomType, Tooltip, TooltipAtom, type TooltipAtomType, TooltipContent, TooltipProvider, TooltipTrigger, TopPostsGrid, type TopPostsGridMolecule, type UIAtom, type UIComponent, type UIMolecule, type UISchema, VideoAtom, type VideoAtomType, cn, defaultFetchSelections, defaultPersistSelection, elementToQAField, formatQAMessage, generateFieldsFromData, generateFieldsFromPropDefinitions, isInputAtom, submitWidgetToAgent, useCreatorWidgetPolling };
|
|
3541
|
+
export { Accordion, AccordionAtom, type AccordionAtomType, AccordionContent, AccordionItem, AccordionTrigger, ActionButton, type ActionButtonAtom, type ActionButtonProps, type ActionPriority, ActionPriorityCard, type ActionPriorityCardMolecule, type ActionPriorityCardProps, type ActionPriorityItem, Alert, AlertAtom, type AlertAtomType, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogAtom, type AlertDialogAtomType, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertTitle, ApprovalCard, type ApprovalCardMolecule, type ApprovalCardProps, type ApprovalDetail, type ApprovalStatus, ArrowToggleAtom, type ArrowToggleAtomType, AspectRatio, AspectRatioAtom, type AspectRatioAtomType, AudienceDemographicsCard, type AudienceDemographicsCardMolecule, AudienceMetricCard, type AudienceMetricCardMolecule, AudiencePersonaCard, type AudiencePersonaCardMolecule, type AudiencePersonaCardProps, Avatar, AvatarAtom, type AvatarAtomType, AvatarFallback, AvatarImage, Badge, BadgeAtom, type BadgeAtomType, type BaseAtom, type BaseMolecule, type BranchCI, BrandAffinityGroup, type BrandAffinityGroupMolecule, Breadcrumb, BreadcrumbAtom, type BreadcrumbAtomType, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, BudgetAllocCard, type BudgetAllocCardProps, type BudgetAllocItem, Button, type ButtonAction, ButtonAtom, type ButtonAtomType, type ButtonSize$1 as ButtonSize, type ButtonVariant$1 as ButtonVariant, Calendar, CalendarAtom, type CalendarAtomType, type CalendarEventAttendee, CalendarEventCard, type CalendarEventCardProps, type CalendarEventStatus, CampaignBriefCard, type CampaignBriefCardMolecule, type CampaignBriefCardProps, CampaignConceptCard, type CampaignConceptCardProps, CampaignSeedCard, type CampaignSeedCardAtom, type CampaignSeedCardProps, Card, CardAtom, type CardAtomType, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselAtom, type CarouselAtomType, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChannelPlanCard, type ChannelPlanCardMolecule, type ChannelPlanCardProps, type ChannelPlanItem, ChartAtom, type ChartAtomType, type ChartDataPoint, Checkbox, CheckboxAtom, type CheckboxAtomType, ChecklistCard, type ChecklistCardMolecule, type ChecklistCardProps, type ChecklistItem, Collapsible, CollapsibleAtom, type CollapsibleAtomType, CollapsibleContent, CollapsibleTrigger, type CollectedField, Command, CommandAtom, type CommandAtomType, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, type ComparisonAttribute, ComparisonCard, type ComparisonCardProps, type ComparisonOption, ConfirmationCard, type ConfirmationCardMolecule, type ConfirmationCardProps, ContentPreviewGallery, type ContentPreviewGalleryMolecule, ContextMenu, ContextMenuAtom, type ContextMenuAtomType, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuTrigger, CountrySelectDisplay, CountrySelectEdit, CreatorActionHeader, type CreatorActionHeaderMolecule, CreatorCompactView, type CreatorCompactViewProps, type CreatorDetailData, CreatorExpandedPanel, CreatorGridCard, type CreatorGridCardMolecule, CreatorImageList, type CreatorImageListProps, CreatorProfileSummary, type CreatorProfileSummaryMolecule, CreatorProgressBar, type CreatorProgressBarProps, CreatorSearch, type CreatorSearchProps, type CreatorVersionData, CreatorWidget, type CreatorWidgetAction, type CreatorWidgetMolecule, type CreatorWidgetProps, CreatorWidgetSkeleton, type CreatorWidgetStatus, DataGrid, type DataGridMolecule, DataSourceChecklistCard, type DataSourceChecklistCardMolecule, type DataSourceChecklistCardProps, type DataSourceItem, DataTableCard, type DataTableCardMolecule, type DataTableCardProps, Dialog, DialogAtom, type DialogAtomType, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, Drawer, DrawerAtom, type DrawerAtomType, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuAtom, type DropdownMenuAtomType, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuTrigger, EditableField, type EditableFieldProps, EmptyState, type EmptyStateMolecule, FeedbackRatingCard, type FeedbackRatingCardMolecule, type FeedbackRatingCardProps, type FetchCreatorDetailsParams, type FetchStatusParams, type FetchVersionsParams, FileUpload, type FileUploadMolecule, FilterBar, type FilterBarMolecule, Form, FormCard, type FormCardProps, FormControl, FormDescription, FormField, FormInputAtom, type FormInputAtomType, FormItem, FormLabel, FormMessage, FormSelectAtom, type FormSelectAtomType, FormTextareaAtom, type FormTextareaAtomType, type GapSize, GitHubConnectCard, type GitHubConnectCardProps, type GitHubConnectMolecule, GitHubIssueTrackerCard, type GitHubIssueTrackerCardProps, type GitHubIssueTrackerMolecule, GitHubRepoHealthCard, type GitHubRepoHealthCardProps, type GitHubRepoHealthMolecule, GitHubReposListCard, type GitHubReposListCardProps, GoalAlignmentCard, type GoalAlignmentCardMolecule, type GoalAlignmentCardProps, type GoalAlignmentItem, GoogleSheetsCard, type GoogleSheetsCardProps, GoogleSheetsConnectCard, type GoogleSheetsConnectCardProps, GoogleSheetsListCard, type GoogleSheetsListCardProps, GrowthChartCard, type GrowthChartCardMolecule, HoverCard, HoverCardContent, HoverCardTrigger, IconAtom, type IconAtomType, type IconName, Input, InputAtom, type InputAtomType, type InputElementLike, InputOTP, InputOTPAtom, type InputOTPAtomType, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputType, InputWidget, type InputWidgetField, type InputWidgetFieldKind, type InputWidgetType, InsightDigestCard, type InsightDigestCardMolecule, type InsightDigestCardProps, type InsightDigestItem, InsightSummaryCard, type InsightSummaryCardMolecule, type InsightSummaryCardProps, type InsightSummaryItem, type KPIStatItem, KPIStatsCard, type KPIStatsCardMolecule, type KPIStatsCardProps, KbdAtom, type KbdAtomType, KeywordBundlesDisplay, KeywordBundlesEdit, Label, LabelAtom, type LabelAtomType, LayoutAtom, type LayoutAtomType, type LayoutDirection, LoadingOverlay, type LoadingOverlayMolecule, MCQCard, type MCQCardAtom, type MCQCardProps, type MCQOption, Menubar, MenubarCheckboxItem, MenubarContent, MenubarItem, MenubarLabel, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NextStepCard, type NextStepCardMolecule, type NextStepCardProps, type NextStepItem, NotificationList, type NotificationListMolecule, PXEngineRenderer, Pagination, PaginationAtom, type PaginationAtomType, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PersonaSegment, PlatformIconGroup, type PlatformIconGroupMolecule, PlatformSelectDisplay, PlatformSelectEdit, PollCard, type PollCardMolecule, type PollCardProps, type PollOption, type PollingConfig, Popover, PopoverAtom, type PopoverAtomType, PopoverContent, PopoverTrigger, type PriorityActionItem, PriorityActionsCard, type PriorityActionsCardMolecule, type PriorityActionsCardProps, Progress, ProgressAtom, type ProgressAtomType, type PullRequest, REGISTERED_COMPONENTS, RadioAtom, type RadioAtomType, RadioGroup, RadioGroupAtom, type RadioGroupAtomType, RadioGroupItem, RatingAtom, type RatingAtomType, RecommendationCard, type RecommendationCardMolecule, type RecommendationCardProps, type RepoItem, ResearchBriefCard, type ResearchBriefCardMolecule, type ResearchBriefCardProps, type ResearchBriefItem, ResizableAtom, type ResizableAtomType, ResizablePanel, ResizablePanelGroup, RiskSignalCard, type RiskSignalCardMolecule, type RiskSignalCardProps, type RiskSignalItem, type RunSseConfig, ScoreBreakdownCard, type ScoreBreakdownCardMolecule, type ScoreBreakdownCardProps, type ScoreBreakdownItem, ScrollArea, ScrollAreaAtom, type ScrollAreaAtomType, ScrollBar, SearchSpecCard, type SearchSpecCardAtom, type SearchSpecCardProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, SeparatorAtom, type SeparatorAtomType, Sheet, SheetAtom, type SheetAtomType, SheetClose, type SheetColumn, SheetContent, SheetDescription, SheetFooter, SheetHeader, type SheetRow, type SheetTabItem, SheetTitle, SheetTrigger, Skeleton, SkeletonAtom, type SkeletonAtomType, Slider, SliderAtom, type SliderAtomType, type SocialPost, SocialPostCard, type SocialPostCardProps, type SocialPostMolecule, Spinner, SpinnerAtom, type SpinnerAtomType, type SpreadsheetItem, type StaleIssue, StatsGrid, type StatsGridMolecule, type StatusDetails, StepWizard, type StepWizardMolecule, Switch, SwitchAtom, type SwitchAtomType, Table, TableAtom, type TableAtomType, TableBody, TableCaption, TableCell, TableHead, TableHeader, TableRow, Tabs, TabsAtom, type TabsAtomType, TabsContent, TabsList, TabsTrigger, TagCloud, type TagCloudMolecule, TextAtom, type TextAtomType, type TextVariant, Textarea, TextareaAtom, TimelineAtom, type TimelineAtomType, TimelineCard, type TimelineCardMolecule, type TimelineCardProps, type TimelineStep, type TimelineStepStatus, ToggleAtom, type ToggleAtomType, Tooltip, TooltipAtom, type TooltipAtomType, TooltipContent, TooltipProvider, TooltipTrigger, TopPostsGrid, type TopPostsGridMolecule, type UIAtom, type UIComponent, type UIMolecule, type UISchema, VideoAtom, type VideoAtomType, type WidgetTheme, cn, defaultFetchSelections, defaultPersistSelection, elementToQAField, formatQAMessage, generateFieldsFromData, generateFieldsFromPropDefinitions, isInputAtom, submitWidgetToAgent, th, useCreatorWidgetPolling, withAlpha };
|