@eric-emg/symphiq-components 1.2.356 → 1.2.358
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/fesm2022/symphiq-components.mjs +1296 -414
- package/fesm2022/symphiq-components.mjs.map +1 -1
- package/index.d.ts +133 -43
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/styles.css +3 -0
package/index.d.ts
CHANGED
|
@@ -1058,7 +1058,7 @@ declare class ModalComponent {
|
|
|
1058
1058
|
private animatedTrendValues;
|
|
1059
1059
|
private animationFrames;
|
|
1060
1060
|
isOpen: _angular_core.Signal<boolean>;
|
|
1061
|
-
modalType: _angular_core.Signal<"
|
|
1061
|
+
modalType: _angular_core.Signal<"metric" | "insight" | "chart" | "insights-list" | "goal-insights-list" | "goal-business-insights-list" | "business-insight-detail" | "metrics-list" | "charts-list" | "recommendations-list" | "competitive-analysis" | "funnel-strengths-list" | "funnel-weaknesses-list" | "funnel-strength-detail" | "funnel-weakness-detail" | null>;
|
|
1062
1062
|
charts: _angular_core.Signal<AiChartInterface[]>;
|
|
1063
1063
|
modalKey: _angular_core.Signal<number>;
|
|
1064
1064
|
insightData: _angular_core.Signal<InsightBlockInterface | null>;
|
|
@@ -1077,7 +1077,7 @@ declare class ModalComponent {
|
|
|
1077
1077
|
description: string;
|
|
1078
1078
|
icon: string;
|
|
1079
1079
|
} | null>;
|
|
1080
|
-
metricsListData: _angular_core.Signal<
|
|
1080
|
+
metricsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1081
1081
|
metricsListMetrics: _angular_core.Signal<PerformanceMetricInterface[]>;
|
|
1082
1082
|
metricsListInsightContext: _angular_core.Signal<{
|
|
1083
1083
|
title: string;
|
|
@@ -1085,7 +1085,7 @@ declare class ModalComponent {
|
|
|
1085
1085
|
businessContext: string;
|
|
1086
1086
|
priority: number;
|
|
1087
1087
|
} | null>;
|
|
1088
|
-
chartsListData: _angular_core.Signal<
|
|
1088
|
+
chartsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1089
1089
|
chartsListCharts: _angular_core.Signal<AiChartInterface[]>;
|
|
1090
1090
|
chartsListInsightContext: _angular_core.Signal<{
|
|
1091
1091
|
title: string;
|
|
@@ -1093,7 +1093,7 @@ declare class ModalComponent {
|
|
|
1093
1093
|
businessContext: string;
|
|
1094
1094
|
priority: number;
|
|
1095
1095
|
} | null>;
|
|
1096
|
-
recommendationsListData: _angular_core.Signal<
|
|
1096
|
+
recommendationsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1097
1097
|
recommendationsListRecommendations: _angular_core.Signal<string[]>;
|
|
1098
1098
|
recommendationsListInsightContext: _angular_core.Signal<{
|
|
1099
1099
|
title: string;
|
|
@@ -1101,7 +1101,7 @@ declare class ModalComponent {
|
|
|
1101
1101
|
businessContext: string;
|
|
1102
1102
|
priority: number;
|
|
1103
1103
|
} | null>;
|
|
1104
|
-
competitiveAnalysisData: _angular_core.Signal<
|
|
1104
|
+
competitiveAnalysisData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1105
1105
|
competitiveAnalysisContext: _angular_core.Signal<{
|
|
1106
1106
|
title: string;
|
|
1107
1107
|
description: string;
|
|
@@ -1453,10 +1453,10 @@ declare class SymphiqFunnelAnalysisDashboardComponent implements AfterViewInit {
|
|
|
1453
1453
|
*/
|
|
1454
1454
|
private chartsById;
|
|
1455
1455
|
headerClass: _angular_core.Signal<string>;
|
|
1456
|
-
headerTitleClass: _angular_core.Signal<"text-
|
|
1456
|
+
headerTitleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
1457
1457
|
headerSubtitleClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
1458
|
-
metaLabelClass: _angular_core.Signal<"text-slate-
|
|
1459
|
-
sectionTitleClass: _angular_core.Signal<"text-
|
|
1458
|
+
metaLabelClass: _angular_core.Signal<"text-slate-600" | "text-slate-500">;
|
|
1459
|
+
sectionTitleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
1460
1460
|
selectClass: _angular_core.Signal<"bg-white text-slate-900 border-slate-300 hover:border-blue-400 transition-all duration-200" | "bg-slate-700 text-white border-slate-600 hover:border-slate-500 transition-all duration-200">;
|
|
1461
1461
|
sortButtonClass: _angular_core.Signal<"bg-white text-slate-900 border border-slate-300 hover:bg-blue-50 hover:border-blue-400 hover:text-blue-600 transition-all duration-200" | "bg-slate-700 text-white border border-slate-600 hover:bg-slate-600 hover:border-slate-500 transition-all duration-200">;
|
|
1462
1462
|
formattedGeneratedDate: _angular_core.Signal<string | null>;
|
|
@@ -1586,7 +1586,7 @@ declare class MetricCardComponent {
|
|
|
1586
1586
|
glowClass: _angular_core.Signal<"" | "shadow-emerald-500/50 shadow-lg animate-pulse-glow">;
|
|
1587
1587
|
deltaValue: _angular_core.Signal<number>;
|
|
1588
1588
|
deltaPercent: _angular_core.Signal<number>;
|
|
1589
|
-
deltaClass: _angular_core.Signal<"text-
|
|
1589
|
+
deltaClass: _angular_core.Signal<"text-slate-400" | "text-emerald-400" | "text-red-400">;
|
|
1590
1590
|
openInsightModal(insight: InsightBlockInterface): void;
|
|
1591
1591
|
openInsightsModal(): void;
|
|
1592
1592
|
openChartModal(chart: AiChartInterface): void;
|
|
@@ -1620,8 +1620,8 @@ declare class MetricCardComponent {
|
|
|
1620
1620
|
competitiveScoreBadgeDarkClass: _angular_core.Signal<string>;
|
|
1621
1621
|
competitiveScoreBadgeClass: _angular_core.Signal<string>;
|
|
1622
1622
|
competitiveScoreTextClass: _angular_core.Signal<"" | "text-emerald-600" | "text-blue-700" | "text-blue-400" | "text-orange-600">;
|
|
1623
|
-
competitiveComparisonDefaultClass: _angular_core.Signal<"text-slate-
|
|
1624
|
-
competitiveComparisonClass: _angular_core.Signal<"text-slate-
|
|
1623
|
+
competitiveComparisonDefaultClass: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
1624
|
+
competitiveComparisonClass: _angular_core.Signal<"text-slate-700" | "text-slate-300" | "text-emerald-600 font-semibold" | "text-orange-600 font-semibold">;
|
|
1625
1625
|
getCompetitiveScoreIcon(): string;
|
|
1626
1626
|
getCompetitiveScoreLabel(): string;
|
|
1627
1627
|
getCompetitiveScoreLabelFull(): string;
|
|
@@ -1862,10 +1862,10 @@ declare class OverallAssessmentComponent {
|
|
|
1862
1862
|
revenueTrendArrowPath: _angular_core.Signal<"M5.293 9.707a1 1 0 010-1.414l4-4a1 1 0 011.414 0l4 4a1 1 0 01-1.414 1.414L11 7.414V15a1 1 0 11-2 0V7.414L6.707 9.707a1 1 0 01-1.414 0z" | "M14.707 10.293a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 111.414-1.414L9 12.586V5a1 1 0 012 0v7.586l2.293-2.293a1 1 0 011.414 0z" | "M3 10h11m0 0l-4-4m4 4l-4 4">;
|
|
1863
1863
|
lightModeTrendIconClass: _angular_core.Signal<"text-emerald-600" | "text-red-600">;
|
|
1864
1864
|
darkModeTrendIconClass: _angular_core.Signal<"text-emerald-400" | "text-red-400">;
|
|
1865
|
-
trendIconClass: _angular_core.Signal<"text-emerald-
|
|
1865
|
+
trendIconClass: _angular_core.Signal<"text-emerald-600" | "text-emerald-400" | "text-red-600" | "text-red-400">;
|
|
1866
1866
|
lightModeTrendValueClass: _angular_core.Signal<"text-emerald-600" | "text-red-600">;
|
|
1867
1867
|
darkModeTrendValueClass: _angular_core.Signal<"text-emerald-400" | "text-red-400">;
|
|
1868
|
-
trendValueClass: _angular_core.Signal<"text-emerald-
|
|
1868
|
+
trendValueClass: _angular_core.Signal<"text-emerald-600" | "text-emerald-400" | "text-red-600" | "text-red-400">;
|
|
1869
1869
|
formattedRevenueTrend: _angular_core.Signal<string>;
|
|
1870
1870
|
formattedRevenueTarget: _angular_core.Signal<string>;
|
|
1871
1871
|
hasRevenuePacing: _angular_core.Signal<boolean>;
|
|
@@ -2751,7 +2751,7 @@ declare class PacingStatusBadgeComponent implements OnDestroy {
|
|
|
2751
2751
|
private animateValue;
|
|
2752
2752
|
protected displayInfo: _angular_core.Signal<PacingDisplayInfo>;
|
|
2753
2753
|
protected containerClasses: _angular_core.Signal<string>;
|
|
2754
|
-
protected targetRotation: _angular_core.Signal<
|
|
2754
|
+
protected targetRotation: _angular_core.Signal<1 | 0 | -1>;
|
|
2755
2755
|
protected rotationStyle: _angular_core.Signal<string>;
|
|
2756
2756
|
protected fullBadgeRotationStyle: _angular_core.Signal<string>;
|
|
2757
2757
|
protected containerSizeClasses: _angular_core.Signal<"inline-flex flex-row items-center rounded-xl border-2 overflow-visible transition-transform hover:rotate-0 pl-1.5" | "inline-flex flex-row items-center rounded-xl border-2 overflow-visible transition-transform hover:rotate-0 pl-2">;
|
|
@@ -3310,7 +3310,7 @@ declare class SymphiqProfileAnalysisDashboardComponent implements OnInit, OnChan
|
|
|
3310
3310
|
periodUnitChanged: _angular_core.OutputEmitterRef<ChargebeeItemPricePeriodUnitEnum>;
|
|
3311
3311
|
planSelected: _angular_core.OutputEmitterRef<PlanCardInfoInterface>;
|
|
3312
3312
|
checkoutPlanClick: _angular_core.OutputEmitterRef<ChargebeeItemPriceInterface>;
|
|
3313
|
-
|
|
3313
|
+
answerShopProfileQuestions: _angular_core.OutputEmitterRef<string | null>;
|
|
3314
3314
|
continueShopProfileQuestions: _angular_core.OutputEmitterRef<void>;
|
|
3315
3315
|
protected isCurrencySelectionLoading: _angular_core.WritableSignal<boolean>;
|
|
3316
3316
|
protected selectedCurrency: _angular_core.WritableSignal<CurrencyCodeEnum | null>;
|
|
@@ -3516,7 +3516,7 @@ declare class SymphiqProfileAnalysisDashboardComponent implements OnInit, OnChan
|
|
|
3516
3516
|
protected handleStartCategoryQuestions(categoryId: string): void;
|
|
3517
3517
|
protected handleShopProfileContinueClick(): void;
|
|
3518
3518
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SymphiqProfileAnalysisDashboardComponent, never>;
|
|
3519
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqProfileAnalysisDashboardComponent, "symphiq-profile-analysis-dashboard", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "requestedByUser": { "alias": "requestedByUser"; "required": false; "isSignal": true; }; "createdDate": { "alias": "createdDate"; "required": false; "isSignal": true; }; "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; "profileAnalysis": { "alias": "profileAnalysis"; "required": false; "isSignal": true; }; "profile": { "alias": "profile"; "required": false; "isSignal": true; }; "funnelAnalysis": { "alias": "funnelAnalysis"; "required": false; "isSignal": true; }; "analysisType": { "alias": "analysisType"; "required": false; "isSignal": true; }; "focusAreaDetails": { "alias": "focusAreaDetails"; "required": false; "isSignal": true; }; "account": { "alias": "account"; "required": false; "isSignal": true; }; "profileShop": { "alias": "profileShop"; "required": false; "isSignal": true; }; "profileShopQuestions": { "alias": "profileShopQuestions"; "required": false; "isSignal": true; }; "itemStatusProfileShop": { "alias": "itemStatusProfileShop"; "required": false; "isSignal": true; }; "itemStatusProfileAnalysis": { "alias": "itemStatusProfileAnalysis"; "required": false; "isSignal": true; }; "planCardInfos": { "alias": "planCardInfos"; "required": false; "isSignal": true; }; "isOnboarded": { "alias": "isOnboarded"; "required": false; "isSignal": true; }; "scrollEvent": { "alias": "scrollEvent"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "forDemo": { "alias": "forDemo"; "required": false; "isSignal": true; }; "maxAccessibleStepId": { "alias": "maxAccessibleStepId"; "required": false; "isSignal": true; }; }, { "stepClick": "stepClick"; "nextStepClick": "nextStepClick"; "currencySelectionClick": "currencySelectionClick"; "editCurrencyClick": "editCurrencyClick"; "periodUnitChanged": "periodUnitChanged"; "planSelected": "planSelected"; "checkoutPlanClick": "checkoutPlanClick"; "
|
|
3519
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqProfileAnalysisDashboardComponent, "symphiq-profile-analysis-dashboard", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "requestedByUser": { "alias": "requestedByUser"; "required": false; "isSignal": true; }; "createdDate": { "alias": "createdDate"; "required": false; "isSignal": true; }; "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; "profileAnalysis": { "alias": "profileAnalysis"; "required": false; "isSignal": true; }; "profile": { "alias": "profile"; "required": false; "isSignal": true; }; "funnelAnalysis": { "alias": "funnelAnalysis"; "required": false; "isSignal": true; }; "analysisType": { "alias": "analysisType"; "required": false; "isSignal": true; }; "focusAreaDetails": { "alias": "focusAreaDetails"; "required": false; "isSignal": true; }; "account": { "alias": "account"; "required": false; "isSignal": true; }; "profileShop": { "alias": "profileShop"; "required": false; "isSignal": true; }; "profileShopQuestions": { "alias": "profileShopQuestions"; "required": false; "isSignal": true; }; "itemStatusProfileShop": { "alias": "itemStatusProfileShop"; "required": false; "isSignal": true; }; "itemStatusProfileAnalysis": { "alias": "itemStatusProfileAnalysis"; "required": false; "isSignal": true; }; "planCardInfos": { "alias": "planCardInfos"; "required": false; "isSignal": true; }; "isOnboarded": { "alias": "isOnboarded"; "required": false; "isSignal": true; }; "scrollEvent": { "alias": "scrollEvent"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "forDemo": { "alias": "forDemo"; "required": false; "isSignal": true; }; "maxAccessibleStepId": { "alias": "maxAccessibleStepId"; "required": false; "isSignal": true; }; }, { "stepClick": "stepClick"; "nextStepClick": "nextStepClick"; "currencySelectionClick": "currencySelectionClick"; "editCurrencyClick": "editCurrencyClick"; "periodUnitChanged": "periodUnitChanged"; "planSelected": "planSelected"; "checkoutPlanClick": "checkoutPlanClick"; "answerShopProfileQuestions": "answerShopProfileQuestions"; "continueShopProfileQuestions": "continueShopProfileQuestions"; }, never, never, true, never>;
|
|
3520
3520
|
}
|
|
3521
3521
|
|
|
3522
3522
|
declare class ShopWelcomeBannerComponent {
|
|
@@ -3618,25 +3618,25 @@ declare class MetricExecutiveSummaryComponent {
|
|
|
3618
3618
|
protected isDark: _angular_core.Signal<boolean>;
|
|
3619
3619
|
protected bannerClasses: _angular_core.Signal<"bg-gradient-to-br from-slate-800/50 to-slate-800/30 border border-slate-700/50" | "bg-gradient-to-br from-white to-slate-50/50 border border-slate-200">;
|
|
3620
3620
|
protected titleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
3621
|
-
protected textClasses: _angular_core.Signal<"text-slate-
|
|
3621
|
+
protected textClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
3622
3622
|
protected iconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
3623
3623
|
protected healthBadgeClasses: _angular_core.Signal<string>;
|
|
3624
3624
|
protected pacingBadgeClasses: _angular_core.Signal<string>;
|
|
3625
3625
|
protected metricCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
3626
3626
|
protected metricLabelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
3627
3627
|
protected metricValueClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
3628
|
-
protected yoyChangeClasses: _angular_core.Signal<"text-slate-600" | "text-
|
|
3628
|
+
protected yoyChangeClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400" | "text-emerald-600" | "text-emerald-400" | "text-red-600" | "text-red-400">;
|
|
3629
3629
|
protected getYoyIcon(): string;
|
|
3630
3630
|
protected getPacingValueClasses(): string;
|
|
3631
3631
|
protected getHealthValueClasses(): string;
|
|
3632
3632
|
protected narrativeClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-600/20">;
|
|
3633
|
-
protected narrativeTitleClasses: _angular_core.Signal<"text-slate-
|
|
3633
|
+
protected narrativeTitleClasses: _angular_core.Signal<"text-slate-200" | "text-slate-800">;
|
|
3634
3634
|
protected narrativeTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
3635
3635
|
protected sectionTitleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
3636
3636
|
protected priorityCardClasses: _angular_core.Signal<"bg-slate-800/50 border border-slate-700/50 hover:border-slate-600/70" | "bg-white border border-slate-200 hover:border-slate-300">;
|
|
3637
3637
|
protected priorityNumberClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-300" | "bg-blue-100 text-blue-800">;
|
|
3638
3638
|
protected priorityTitleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
3639
|
-
protected priorityTextClasses: _angular_core.Signal<"text-slate-
|
|
3639
|
+
protected priorityTextClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
3640
3640
|
protected impactBoxClasses: _angular_core.Signal<"bg-slate-800/30 border border-slate-700/30" | "bg-slate-50/50 border border-slate-200">;
|
|
3641
3641
|
protected impactLabelClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
3642
3642
|
protected impactTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
@@ -3735,10 +3735,14 @@ declare class ShopProfileStatusCardComponent implements AfterViewInit, OnDestroy
|
|
|
3735
3735
|
answeredQuestions: _angular_core.InputSignal<number>;
|
|
3736
3736
|
questions: _angular_core.InputSignal<ProfileShopQuestionInterface[]>;
|
|
3737
3737
|
startCategoryQuestions: _angular_core.OutputEmitterRef<string>;
|
|
3738
|
+
questionAnswerRequested: _angular_core.OutputEmitterRef<ProfileShopQuestionInterface>;
|
|
3738
3739
|
chartDiv: ElementRef;
|
|
3739
3740
|
private root?;
|
|
3740
3741
|
private chartElement?;
|
|
3741
3742
|
protected currentView: _angular_core.WritableSignal<ShopProfileViewType>;
|
|
3743
|
+
protected questionsModalOpen: _angular_core.WritableSignal<boolean>;
|
|
3744
|
+
protected selectedCategoryId: _angular_core.WritableSignal<string | null>;
|
|
3745
|
+
protected selectedFocusAreaId: _angular_core.WritableSignal<string | null>;
|
|
3742
3746
|
protected completionPercentage: _angular_core.Signal<number>;
|
|
3743
3747
|
protected notStartedPercentage: _angular_core.Signal<number>;
|
|
3744
3748
|
protected shouldShowFullIntro: _angular_core.Signal<boolean>;
|
|
@@ -3748,6 +3752,8 @@ declare class ShopProfileStatusCardComponent implements AfterViewInit, OnDestroy
|
|
|
3748
3752
|
protected currentGroupedQuestions: _angular_core.Signal<CategoryProgressItem[]>;
|
|
3749
3753
|
protected handleViewChange(view: ShopProfileViewType): void;
|
|
3750
3754
|
protected handleItemClick(item: CategoryProgressItem): void;
|
|
3755
|
+
protected onQuestionsModalClose(): void;
|
|
3756
|
+
protected onQuestionAnswerClick(question: ProfileShopQuestionInterface): void;
|
|
3751
3757
|
private formatCategoryName;
|
|
3752
3758
|
private formatFocusAreaName;
|
|
3753
3759
|
ngAfterViewInit(): void;
|
|
@@ -3764,7 +3770,7 @@ declare class ShopProfileStatusCardComponent implements AfterViewInit, OnDestroy
|
|
|
3764
3770
|
protected getIntroTitleClasses(): string;
|
|
3765
3771
|
protected getIntroTextClasses(): string;
|
|
3766
3772
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShopProfileStatusCardComponent, never>;
|
|
3767
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShopProfileStatusCardComponent, "symphiq-shop-profile-status-card", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "totalQuestions": { "alias": "totalQuestions"; "required": false; "isSignal": true; }; "answeredQuestions": { "alias": "answeredQuestions"; "required": false; "isSignal": true; }; "questions": { "alias": "questions"; "required": false; "isSignal": true; }; }, { "startCategoryQuestions": "startCategoryQuestions"; }, never, never, true, never>;
|
|
3773
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShopProfileStatusCardComponent, "symphiq-shop-profile-status-card", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "totalQuestions": { "alias": "totalQuestions"; "required": false; "isSignal": true; }; "answeredQuestions": { "alias": "answeredQuestions"; "required": false; "isSignal": true; }; "questions": { "alias": "questions"; "required": false; "isSignal": true; }; }, { "startCategoryQuestions": "startCategoryQuestions"; "questionAnswerRequested": "questionAnswerRequested"; }, never, never, true, never>;
|
|
3768
3774
|
}
|
|
3769
3775
|
|
|
3770
3776
|
declare class ShopProfileStickyFooterComponent {
|
|
@@ -3781,6 +3787,90 @@ declare class ShopProfileStickyFooterComponent {
|
|
|
3781
3787
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShopProfileStickyFooterComponent, "symphiq-shop-profile-sticky-footer", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "totalQuestions": { "alias": "totalQuestions"; "required": false; "isSignal": true; }; "answeredQuestions": { "alias": "answeredQuestions"; "required": false; "isSignal": true; }; }, { "continueClick": "continueClick"; }, never, never, true, never>;
|
|
3782
3788
|
}
|
|
3783
3789
|
|
|
3790
|
+
declare class ShopProfileQuestionsModalComponent {
|
|
3791
|
+
isOpen: _angular_core.InputSignal<boolean>;
|
|
3792
|
+
questions: _angular_core.InputSignal<ProfileShopQuestionInterface[]>;
|
|
3793
|
+
selectedCategoryId: _angular_core.InputSignal<string | null>;
|
|
3794
|
+
selectedFocusAreaId: _angular_core.InputSignal<string | null>;
|
|
3795
|
+
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
3796
|
+
close: _angular_core.OutputEmitterRef<void>;
|
|
3797
|
+
questionAnswerClick: _angular_core.OutputEmitterRef<ProfileShopQuestionInterface>;
|
|
3798
|
+
private renderer;
|
|
3799
|
+
private document;
|
|
3800
|
+
private hostElement;
|
|
3801
|
+
modalContent?: ElementRef<HTMLDivElement>;
|
|
3802
|
+
modalWrapper?: ElementRef<HTMLDivElement>;
|
|
3803
|
+
protected modalReady: _angular_core.WritableSignal<boolean>;
|
|
3804
|
+
private modalMovedToBody;
|
|
3805
|
+
protected viewType: _angular_core.Signal<"category" | "focus-area">;
|
|
3806
|
+
protected displayTitle: _angular_core.Signal<string>;
|
|
3807
|
+
protected filteredQuestions: _angular_core.Signal<ProfileShopQuestionInterface[]>;
|
|
3808
|
+
protected answeredCount: _angular_core.Signal<number>;
|
|
3809
|
+
protected totalCount: _angular_core.Signal<number>;
|
|
3810
|
+
protected progressPercentage: _angular_core.Signal<number>;
|
|
3811
|
+
constructor();
|
|
3812
|
+
protected onBackdropClick(): void;
|
|
3813
|
+
protected onClose(): void;
|
|
3814
|
+
protected onQuestionAnswerClick(question: ProfileShopQuestionInterface): void;
|
|
3815
|
+
protected formatCategoryName(category: string): string;
|
|
3816
|
+
protected formatFocusAreaName(focusArea: string): string;
|
|
3817
|
+
private moveModalToBody;
|
|
3818
|
+
private returnModalToHost;
|
|
3819
|
+
protected isLightMode(): boolean;
|
|
3820
|
+
protected backdropClasses(): string;
|
|
3821
|
+
protected containerClasses(): string;
|
|
3822
|
+
protected headerClasses(): string;
|
|
3823
|
+
protected labelClasses(): string;
|
|
3824
|
+
protected titleClasses(): string;
|
|
3825
|
+
protected progressBarContainerClasses(): string;
|
|
3826
|
+
protected progressBarFillClasses(): string;
|
|
3827
|
+
protected progressTextClasses(): string;
|
|
3828
|
+
protected closeButtonClasses(): string;
|
|
3829
|
+
protected contentClasses(): string;
|
|
3830
|
+
protected emptyStateIconClasses(): string;
|
|
3831
|
+
protected emptyStateTitleClasses(): string;
|
|
3832
|
+
protected emptyStateTextClasses(): string;
|
|
3833
|
+
ngOnDestroy(): void;
|
|
3834
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShopProfileQuestionsModalComponent, never>;
|
|
3835
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShopProfileQuestionsModalComponent, "symphiq-shop-profile-questions-modal", never, { "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; "questions": { "alias": "questions"; "required": false; "isSignal": true; }; "selectedCategoryId": { "alias": "selectedCategoryId"; "required": false; "isSignal": true; }; "selectedFocusAreaId": { "alias": "selectedFocusAreaId"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; }, { "close": "close"; "questionAnswerClick": "questionAnswerClick"; }, never, never, true, never>;
|
|
3836
|
+
}
|
|
3837
|
+
|
|
3838
|
+
declare class ShopProfileQuestionCardComponent {
|
|
3839
|
+
question: _angular_core.InputSignal<ProfileShopQuestionInterface>;
|
|
3840
|
+
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
3841
|
+
viewType: _angular_core.InputSignal<"category" | "focus-area">;
|
|
3842
|
+
answerClick: _angular_core.OutputEmitterRef<ProfileShopQuestionInterface>;
|
|
3843
|
+
private tooltipService;
|
|
3844
|
+
protected isAnswered: _angular_core.Signal<boolean>;
|
|
3845
|
+
protected showFocusAreaChips: _angular_core.Signal<boolean>;
|
|
3846
|
+
protected relatedFocusAreas: _angular_core.Signal<FocusAreaDomainEnum[]>;
|
|
3847
|
+
protected getFocusAreaTitle(focusArea: FocusAreaDomainEnum): string;
|
|
3848
|
+
protected getAnswerDisplay(): string;
|
|
3849
|
+
protected showFocusAreaTooltip(event: MouseEvent): void;
|
|
3850
|
+
protected hideTooltip(): void;
|
|
3851
|
+
protected onAnswerClick(): void;
|
|
3852
|
+
protected isLightMode(): boolean;
|
|
3853
|
+
protected containerClasses(): string;
|
|
3854
|
+
protected questionTextClasses(): string;
|
|
3855
|
+
protected contextTextClasses(): string;
|
|
3856
|
+
protected relatedLabelClasses(): string;
|
|
3857
|
+
protected infoIconClasses(): string;
|
|
3858
|
+
protected focusAreaChipClasses(): string;
|
|
3859
|
+
protected answeredContainerClasses(): string;
|
|
3860
|
+
protected checkmarkClasses(): string;
|
|
3861
|
+
protected answerLabelClasses(): string;
|
|
3862
|
+
protected answerTextClasses(): string;
|
|
3863
|
+
protected unansweredContainerClasses(): string;
|
|
3864
|
+
protected emptyStateIconContainerClasses(): string;
|
|
3865
|
+
protected emptyStateIconClasses(): string;
|
|
3866
|
+
protected emptyStateDotClasses(): string;
|
|
3867
|
+
protected unansweredLabelClasses(): string;
|
|
3868
|
+
protected unansweredTextClasses(): string;
|
|
3869
|
+
protected buttonClasses(): string;
|
|
3870
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShopProfileQuestionCardComponent, never>;
|
|
3871
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShopProfileQuestionCardComponent, "symphiq-shop-profile-question-card", never, { "question": { "alias": "question"; "required": true; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "viewType": { "alias": "viewType"; "required": false; "isSignal": true; }; }, { "answerClick": "answerClick"; }, never, never, true, never>;
|
|
3872
|
+
}
|
|
3873
|
+
|
|
3784
3874
|
declare class HorizontalBarComponent implements OnInit, OnDestroy {
|
|
3785
3875
|
percentage: _angular_core.InputSignal<number>;
|
|
3786
3876
|
label: _angular_core.InputSignal<string>;
|
|
@@ -3817,7 +3907,7 @@ declare class CircularProgressComponent implements OnInit, OnDestroy {
|
|
|
3817
3907
|
backgroundColor: _angular_core.InputSignal<string>;
|
|
3818
3908
|
showPercentage: _angular_core.InputSignal<boolean>;
|
|
3819
3909
|
textClasses: _angular_core.InputSignal<string>;
|
|
3820
|
-
strokeLinecap: _angular_core.InputSignal<"
|
|
3910
|
+
strokeLinecap: _angular_core.InputSignal<"square" | "round" | "butt">;
|
|
3821
3911
|
animationDuration: _angular_core.InputSignal<number>;
|
|
3822
3912
|
animationDelay: _angular_core.InputSignal<number>;
|
|
3823
3913
|
private elementRef;
|
|
@@ -3925,18 +4015,18 @@ declare class SearchModalComponent {
|
|
|
3925
4015
|
getTypeBadgeText(result: BusinessSearchResult): string;
|
|
3926
4016
|
containerClass: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800 border border-slate-700">;
|
|
3927
4017
|
inputClass: _angular_core.Signal<"bg-white text-slate-900 placeholder-slate-400" | "bg-slate-800 text-white placeholder-slate-500">;
|
|
3928
|
-
iconClass: _angular_core.Signal<"text-slate-
|
|
4018
|
+
iconClass: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
3929
4019
|
clearButtonClass: _angular_core.Signal<"bg-slate-100 text-slate-600 hover:bg-slate-200" | "bg-slate-700 text-slate-300 hover:bg-slate-600">;
|
|
3930
4020
|
closeButtonClass: _angular_core.Signal<"text-slate-400 hover:text-slate-600 hover:bg-slate-100" | "text-slate-500 hover:text-slate-300 hover:bg-slate-700">;
|
|
3931
4021
|
resultsContainerClass: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
3932
|
-
resultTitleClass: _angular_core.Signal<"text-
|
|
4022
|
+
resultTitleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
3933
4023
|
resultDescClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
3934
4024
|
breadcrumbClass: _angular_core.Signal<string>;
|
|
3935
4025
|
typeBadgeClass: _angular_core.Signal<"bg-slate-100 text-slate-600" | "bg-slate-700 text-slate-300">;
|
|
3936
|
-
arrowClass: _angular_core.Signal<"text-slate-
|
|
4026
|
+
arrowClass: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
3937
4027
|
emptyStateClass: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
3938
4028
|
emptyIconClass: _angular_core.Signal<"text-slate-600" | "text-slate-300">;
|
|
3939
|
-
emptyTitleClass: _angular_core.Signal<"text-
|
|
4029
|
+
emptyTitleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
3940
4030
|
emptyDescClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
3941
4031
|
shortcutsClass: _angular_core.Signal<"bg-slate-900/50 border-slate-700" | "bg-slate-50 border-slate-200">;
|
|
3942
4032
|
kbdClass: _angular_core.Signal<"bg-white border border-slate-300 text-slate-700 shadow-sm" | "bg-slate-700 border border-slate-600 text-slate-300">;
|
|
@@ -3950,7 +4040,7 @@ declare class GradeBadgeComponent {
|
|
|
3950
4040
|
gradeRationale: _angular_core.InputSignal<string>;
|
|
3951
4041
|
label: _angular_core.InputSignal<string>;
|
|
3952
4042
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
3953
|
-
tooltipPosition: _angular_core.InputSignal<"
|
|
4043
|
+
tooltipPosition: _angular_core.InputSignal<"top" | "bottom" | "left" | "right">;
|
|
3954
4044
|
isLightMode: _angular_core.Signal<boolean>;
|
|
3955
4045
|
formattedGrade: _angular_core.Signal<string>;
|
|
3956
4046
|
shouldPulse: _angular_core.Signal<boolean>;
|
|
@@ -4039,11 +4129,11 @@ declare class ConfidenceLevelCardComponent implements OnInit, OnDestroy {
|
|
|
4039
4129
|
protected gradeBadgeContainerClasses: _angular_core.Signal<string>;
|
|
4040
4130
|
protected glowEffectClasses: _angular_core.Signal<"bg-emerald-500" | "bg-blue-500" | "bg-orange-500" | "bg-red-500">;
|
|
4041
4131
|
protected gradeBadgeClasses: _angular_core.Signal<"bg-gradient-to-br from-emerald-500/30 to-teal-500/30 border-2 border-emerald-500/50 shadow-[0_0_20px_rgba(16,185,129,0.3)]" | "bg-gradient-to-br from-emerald-50 to-teal-50 border-2 border-emerald-300/50 shadow-[0_0_20px_rgba(16,185,129,0.2)]" | "bg-gradient-to-br from-blue-500/30 to-cyan-500/30 border-2 border-blue-500/50 shadow-[0_0_20px_rgba(59,130,246,0.3)]" | "bg-gradient-to-br from-blue-50 to-cyan-50 border-2 border-blue-300/50 shadow-[0_0_20px_rgba(59,130,246,0.2)]" | "bg-gradient-to-br from-orange-500/30 to-amber-500/30 border-2 border-orange-500/50 shadow-[0_0_20px_rgba(249,115,22,0.3)]" | "bg-gradient-to-br from-orange-50 to-amber-50 border-2 border-orange-300/50 shadow-[0_0_20px_rgba(249,115,22,0.2)]" | "bg-gradient-to-br from-red-500/30 to-rose-500/30 border-2 border-red-500/50 shadow-[0_0_20px_rgba(239,68,68,0.3)]" | "bg-gradient-to-br from-red-50 to-rose-50 border-2 border-red-300/50 shadow-[0_0_20px_rgba(239,68,68,0.2)]">;
|
|
4042
|
-
protected gradeLabelClasses: _angular_core.Signal<"text-emerald-700" | "text-
|
|
4132
|
+
protected gradeLabelClasses: _angular_core.Signal<"text-emerald-700" | "text-blue-700" | "text-red-700" | "text-orange-700" | "text-red-300" | "text-blue-300" | "text-emerald-300" | "text-orange-300">;
|
|
4043
4133
|
protected gradeValueClasses: _angular_core.Signal<"bg-gradient-to-b from-emerald-300 to-emerald-500 bg-clip-text text-transparent" | "bg-gradient-to-b from-emerald-600 to-emerald-800 bg-clip-text text-transparent" | "bg-gradient-to-b from-blue-300 to-blue-500 bg-clip-text text-transparent" | "bg-gradient-to-b from-blue-600 to-blue-800 bg-clip-text text-transparent" | "bg-gradient-to-b from-orange-300 to-orange-500 bg-clip-text text-transparent" | "bg-gradient-to-b from-orange-600 to-orange-800 bg-clip-text text-transparent" | "bg-gradient-to-b from-red-300 to-red-500 bg-clip-text text-transparent" | "bg-gradient-to-b from-red-600 to-red-800 bg-clip-text text-transparent">;
|
|
4044
|
-
protected descriptionClasses: _angular_core.Signal<"text-slate-
|
|
4045
|
-
protected progressLabelClasses: _angular_core.Signal<"text-slate-
|
|
4046
|
-
protected progressValueClasses: _angular_core.Signal<"text-emerald-
|
|
4134
|
+
protected descriptionClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4135
|
+
protected progressLabelClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4136
|
+
protected progressValueClasses: _angular_core.Signal<"text-emerald-600" | "text-emerald-400" | "text-red-600" | "text-red-400" | "text-blue-400" | "text-orange-600" | "text-orange-400" | "text-blue-600">;
|
|
4047
4137
|
protected progressTrackClasses: _angular_core.Signal<"bg-slate-700/50 shadow-inner" | "bg-slate-200 shadow-inner">;
|
|
4048
4138
|
protected progressBarClasses: _angular_core.Signal<"rounded-full overflow-hidden bg-gradient-to-r from-emerald-500 via-teal-500 to-emerald-600" | "rounded-full overflow-hidden bg-gradient-to-r from-blue-500 via-cyan-500 to-blue-600" | "rounded-full overflow-hidden bg-gradient-to-r from-orange-500 via-amber-500 to-orange-600" | "rounded-full overflow-hidden bg-gradient-to-r from-red-500 via-rose-500 to-red-600">;
|
|
4049
4139
|
protected shimmerClasses: _angular_core.Signal<string>;
|
|
@@ -4069,7 +4159,7 @@ declare class RelatedContentSidebarComponent {
|
|
|
4069
4159
|
protected buttonClasses: _angular_core.Signal<"bg-slate-50 border-slate-200 hover:border-blue-500/50 hover:bg-slate-100" | "bg-slate-800/50 border-slate-700 hover:border-blue-500/50 hover:bg-slate-700/50">;
|
|
4070
4160
|
protected iconBgClasses: _angular_core.Signal<"bg-blue-100 text-blue-600" | "bg-blue-900/30 text-blue-400">;
|
|
4071
4161
|
protected iconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
4072
|
-
protected countClasses: _angular_core.Signal<"text-
|
|
4162
|
+
protected countClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4073
4163
|
protected labelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4074
4164
|
protected chevronClasses: _angular_core.Signal<"text-slate-500 group-hover:text-blue-400" | "text-slate-400 group-hover:text-blue-600">;
|
|
4075
4165
|
protected onFunnelInsightsClick(): void;
|
|
@@ -4092,7 +4182,7 @@ declare class ContentGenerationProgressComponent {
|
|
|
4092
4182
|
protected iconContainerClasses: _angular_core.Signal<"bg-gradient-to-br from-blue-500 to-purple-500 text-white shadow-lg shadow-blue-500/30" | "bg-gradient-to-br from-blue-400 to-purple-400 text-white shadow-lg shadow-blue-400/30">;
|
|
4093
4183
|
protected titleClasses: _angular_core.Signal<"bg-gradient-to-r from-blue-600 via-purple-600 to-blue-600 bg-clip-text text-transparent" | "bg-gradient-to-r from-blue-400 via-purple-400 to-blue-400 bg-clip-text text-transparent">;
|
|
4094
4184
|
protected subtitleClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4095
|
-
protected progressMessageClasses: _angular_core.Signal<"text-slate-
|
|
4185
|
+
protected progressMessageClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4096
4186
|
protected progressBarContainerClasses: _angular_core.Signal<string>;
|
|
4097
4187
|
protected progressBarBackgroundClasses: _angular_core.Signal<"bg-slate-200" | "bg-slate-700">;
|
|
4098
4188
|
protected progressBarFillClasses: _angular_core.Signal<"bg-gradient-to-r from-blue-500 via-cyan-500 to-blue-600 shadow-lg shadow-blue-500/40" | "bg-gradient-to-r from-blue-400 via-cyan-400 to-blue-500 shadow-lg shadow-blue-400/40">;
|
|
@@ -4126,11 +4216,11 @@ declare class IndeterminateSpinnerComponent {
|
|
|
4126
4216
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
4127
4217
|
size: _angular_core.InputSignal<SpinnerSize>;
|
|
4128
4218
|
color: _angular_core.InputSignal<string | undefined>;
|
|
4129
|
-
svgSize: _angular_core.Signal<
|
|
4219
|
+
svgSize: _angular_core.Signal<40 | 80 | 60>;
|
|
4130
4220
|
circleRadius: _angular_core.Signal<16 | 36 | 26>;
|
|
4131
4221
|
svgCircleRadius: _angular_core.Signal<number>;
|
|
4132
|
-
strokeWidth: _angular_core.Signal<
|
|
4133
|
-
dotSize: _angular_core.Signal<
|
|
4222
|
+
strokeWidth: _angular_core.Signal<3 | 2 | 2.5>;
|
|
4223
|
+
dotSize: _angular_core.Signal<5 | 10 | 7>;
|
|
4134
4224
|
containerClasses: _angular_core.Signal<{
|
|
4135
4225
|
'w-10 h-10': boolean;
|
|
4136
4226
|
'w-16 h-16': boolean;
|
|
@@ -4163,10 +4253,10 @@ declare class ChartContainerComponent {
|
|
|
4163
4253
|
protected ChartTypeEnum: typeof ChartTypeEnum;
|
|
4164
4254
|
containerClass: _angular_core.Signal<"bg-white border-slate-200 hover:border-blue-300 hover:shadow-blue-100/50" | "bg-slate-800 border-slate-700 hover:border-slate-600 hover:shadow-slate-900/50">;
|
|
4165
4255
|
headerClass: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
4166
|
-
titleClass: _angular_core.Signal<"text-
|
|
4256
|
+
titleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4167
4257
|
descriptionClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4168
4258
|
iconClass: _angular_core.Signal<"text-slate-400 group-hover:text-blue-500" | "text-slate-500 group-hover:text-blue-400">;
|
|
4169
|
-
chartIconClass: _angular_core.Signal<"bg-blue-
|
|
4259
|
+
chartIconClass: _angular_core.Signal<"bg-blue-100 text-blue-600" | "bg-blue-500/20 text-blue-400">;
|
|
4170
4260
|
expandButtonClass: _angular_core.Signal<"bg-blue-100 text-blue-600 hover:bg-blue-200" | "bg-blue-500/20 text-blue-400 hover:bg-blue-500/30">;
|
|
4171
4261
|
closeButtonClass: _angular_core.Signal<"bg-slate-100 text-slate-600 hover:bg-slate-200" | "bg-slate-700/50 text-slate-400 hover:bg-slate-600/50">;
|
|
4172
4262
|
isCollapsible: _angular_core.Signal<boolean>;
|
|
@@ -4186,7 +4276,7 @@ declare class LineChartComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
4186
4276
|
currencySymbol: _angular_core.InputSignal<string>;
|
|
4187
4277
|
height: _angular_core.InputSignal<string | undefined>;
|
|
4188
4278
|
chartHeight: _angular_core.Signal<string>;
|
|
4189
|
-
cursorColor: _angular_core.Signal<
|
|
4279
|
+
cursorColor: _angular_core.Signal<9741240 | 16777215>;
|
|
4190
4280
|
tooltipTextColor: _angular_core.Signal<0 | 16777215>;
|
|
4191
4281
|
chartHash: _angular_core.Signal<string>;
|
|
4192
4282
|
chartDiv: ElementRef;
|
|
@@ -4231,7 +4321,7 @@ declare class BarChartComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
4231
4321
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
4232
4322
|
currencySymbol: _angular_core.InputSignal<string>;
|
|
4233
4323
|
chartHeight: _angular_core.Signal<"500px" | "175px">;
|
|
4234
|
-
cursorColor: _angular_core.Signal<
|
|
4324
|
+
cursorColor: _angular_core.Signal<9741240 | 16777215>;
|
|
4235
4325
|
tooltipTextColor: _angular_core.Signal<0 | 16777215>;
|
|
4236
4326
|
chartHash: _angular_core.Signal<string>;
|
|
4237
4327
|
chartDiv: ElementRef;
|
|
@@ -4305,7 +4395,7 @@ declare class AreaChartComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
4305
4395
|
currencySymbol: _angular_core.InputSignal<string>;
|
|
4306
4396
|
height: _angular_core.InputSignal<string | undefined>;
|
|
4307
4397
|
chartHeight: _angular_core.Signal<string>;
|
|
4308
|
-
cursorColor: _angular_core.Signal<
|
|
4398
|
+
cursorColor: _angular_core.Signal<9741240 | 16777215>;
|
|
4309
4399
|
chartHash: _angular_core.Signal<string>;
|
|
4310
4400
|
chartDiv: ElementRef;
|
|
4311
4401
|
private root?;
|
|
@@ -4345,7 +4435,7 @@ declare class TooltipContainerComponent {
|
|
|
4345
4435
|
isVisible: _angular_core.Signal<boolean>;
|
|
4346
4436
|
tooltipType: _angular_core.Signal<string | null>;
|
|
4347
4437
|
tooltipContent: _angular_core.Signal<string | Record<string, unknown> | undefined>;
|
|
4348
|
-
tooltipPosition: _angular_core.Signal<"
|
|
4438
|
+
tooltipPosition: _angular_core.Signal<"top" | "bottom" | "left" | "right" | "auto">;
|
|
4349
4439
|
targetRect: _angular_core.Signal<DOMRect | null>;
|
|
4350
4440
|
mousePosition: _angular_core.Signal<{
|
|
4351
4441
|
x: number;
|
|
@@ -4854,6 +4944,6 @@ declare function validateRevenueTarget(targetRevenue: number, calculations: Metr
|
|
|
4854
4944
|
withinTolerance: boolean;
|
|
4855
4945
|
};
|
|
4856
4946
|
|
|
4857
|
-
export { AreaChartComponent, BarChartComponent, BreakdownSectionComponent, BusinessAnalysisModalComponent, BusinessProfileSearchService, ChartCardComponent, ChartContainerComponent, ChartThemeService, CircularProgressComponent, CompetitivePositioningSummaryComponent, CompetitorAnalysisCardComponent, ConfettiService, ConfidenceLevelCardComponent, ContentGenerationProgressComponent, ContentGenerationProgressWithConfettiComponent, CrossDashboardRelationshipsService, DataLoaderService, FloatingBackButtonComponent, FloatingTocComponent, FocusAreaDetailCardComponent, FocusAreaExecutiveSummaryComponent, FocusAreaQuestionComponent, FocusAreaToolsModalComponent, FunnelOrderService, GradeBadgeComponent, HeaderScrollService, HierarchyDisplayComponent, HorizontalBarComponent, IconService, IndeterminateSpinnerComponent, InsightCardComponent, JourneyProgressIndicatorComponent, JourneyStepIdEnum, LineChartComponent, MetricCardComponent, MetricExecutiveSummaryComponent, MetricFormatterService, MetricListItemComponent, MetricReportModalComponent, MetricWelcomeBannerComponent, MobileBottomNavComponent, MobileFABComponent, ModalComponent, ModalService, NapkinVisualPlaceholderComponent, NavigationStateService, OpportunityHighlightBannerComponent, OverallAssessmentComponent, PacingStatusBadgeComponent, PieChartComponent, ProfileItemCardComponent, ProfileSectionComponent, ProfileSubsectionComponent, RelatedContentSidebarComponent, RevenueCalculatorService, RevenueCalculatorWelcomeBannerComponent, ScrollDepthService, ScrollProgressBarComponent, SearchButtonComponent, SearchModalComponent, SectionDividerComponent, SectionNavigationComponent, ShadowElevationDirective, ShopPlatformEnum, ShopProfileCategoryListComponent, ShopProfileStatusCardComponent, ShopProfileStickyFooterComponent, ShopProfileViewToggleComponent, ShopWelcomeBannerComponent, SkeletonBarComponent, SkeletonCardBaseComponent, SkeletonCircleComponent, SkeletonCompetitorCardComponent, SkeletonCustomerSegmentCardComponent, SkeletonFocusAreaCardComponent, SkeletonGenericCardComponent, SkeletonLoaderComponent, SkeletonPriceTierCardComponent, SkeletonProductCategoryCardComponent, SkeletonRegionCardComponent, SkeletonSeasonCardComponent, StickySubscriptionContinueButtonComponent, SubscriptionValuePropositionCardComponent, SymphiqBusinessAnalysisDashboardComponent, SymphiqConnectGaDashboardComponent, SymphiqCreateAccountDashboardComponent, SymphiqFunnelAnalysisDashboardComponent, SymphiqFunnelAnalysisPreviewComponent, SymphiqIconComponent, SymphiqProfileAnalysisDashboardComponent, SymphiqRevenueCalculatorDashboardComponent, SymphiqWelcomeDashboardComponent, TargetChangeBadgeComponent, TooltipContainerComponent, TooltipDataService, TooltipDirective, TooltipService, ViewModeService, ViewportAnimationDirective, VisualizationContainerComponent, calculateFunnelRatios, calculateMetricTargetsFromRevenue, calculateMetricTargetsFromRevenueReverse, calculateRelatedMetricRatios, generateTargetsFromCalculations, getBadgeLabelClasses, getButtonClasses, getCategoryBadgeClasses, getCategoryColor, getCompetitiveBadgeClasses, getContainerClasses, getFooterClasses, getFunnelStageMetrics, getGradeBadgeClasses, getHeaderClasses, getInsightsBadgeClasses, getInsightsCardClasses, getMetricLabelClasses, getMetricMiniCardClasses, getMetricValueClasses, getNarrativeTextClasses, getRevenueCardClasses, getRevenueIconClasses, getStatusBadgeClasses, getStatusDotClasses, getStatusIconClasses, getStatusSummaryClasses, getSubtitleClasses, getTitleClasses, getTrendClasses, getTrendIconClasses, getTrendValueClasses, groupMetricsByFunnelStage, isLightMode, validateRevenueTarget };
|
|
4947
|
+
export { AreaChartComponent, BarChartComponent, BreakdownSectionComponent, BusinessAnalysisModalComponent, BusinessProfileSearchService, ChartCardComponent, ChartContainerComponent, ChartThemeService, CircularProgressComponent, CompetitivePositioningSummaryComponent, CompetitorAnalysisCardComponent, ConfettiService, ConfidenceLevelCardComponent, ContentGenerationProgressComponent, ContentGenerationProgressWithConfettiComponent, CrossDashboardRelationshipsService, DataLoaderService, FloatingBackButtonComponent, FloatingTocComponent, FocusAreaDetailCardComponent, FocusAreaExecutiveSummaryComponent, FocusAreaQuestionComponent, FocusAreaToolsModalComponent, FunnelOrderService, GradeBadgeComponent, HeaderScrollService, HierarchyDisplayComponent, HorizontalBarComponent, IconService, IndeterminateSpinnerComponent, InsightCardComponent, JourneyProgressIndicatorComponent, JourneyStepIdEnum, LineChartComponent, MetricCardComponent, MetricExecutiveSummaryComponent, MetricFormatterService, MetricListItemComponent, MetricReportModalComponent, MetricWelcomeBannerComponent, MobileBottomNavComponent, MobileFABComponent, ModalComponent, ModalService, NapkinVisualPlaceholderComponent, NavigationStateService, OpportunityHighlightBannerComponent, OverallAssessmentComponent, PacingStatusBadgeComponent, PieChartComponent, ProfileItemCardComponent, ProfileSectionComponent, ProfileSubsectionComponent, RelatedContentSidebarComponent, RevenueCalculatorService, RevenueCalculatorWelcomeBannerComponent, ScrollDepthService, ScrollProgressBarComponent, SearchButtonComponent, SearchModalComponent, SectionDividerComponent, SectionNavigationComponent, ShadowElevationDirective, ShopPlatformEnum, ShopProfileCategoryListComponent, ShopProfileQuestionCardComponent, ShopProfileQuestionsModalComponent, ShopProfileStatusCardComponent, ShopProfileStickyFooterComponent, ShopProfileViewToggleComponent, ShopWelcomeBannerComponent, SkeletonBarComponent, SkeletonCardBaseComponent, SkeletonCircleComponent, SkeletonCompetitorCardComponent, SkeletonCustomerSegmentCardComponent, SkeletonFocusAreaCardComponent, SkeletonGenericCardComponent, SkeletonLoaderComponent, SkeletonPriceTierCardComponent, SkeletonProductCategoryCardComponent, SkeletonRegionCardComponent, SkeletonSeasonCardComponent, StickySubscriptionContinueButtonComponent, SubscriptionValuePropositionCardComponent, SymphiqBusinessAnalysisDashboardComponent, SymphiqConnectGaDashboardComponent, SymphiqCreateAccountDashboardComponent, SymphiqFunnelAnalysisDashboardComponent, SymphiqFunnelAnalysisPreviewComponent, SymphiqIconComponent, SymphiqProfileAnalysisDashboardComponent, SymphiqRevenueCalculatorDashboardComponent, SymphiqWelcomeDashboardComponent, TargetChangeBadgeComponent, TooltipContainerComponent, TooltipDataService, TooltipDirective, TooltipService, ViewModeService, ViewportAnimationDirective, VisualizationContainerComponent, calculateFunnelRatios, calculateMetricTargetsFromRevenue, calculateMetricTargetsFromRevenueReverse, calculateRelatedMetricRatios, generateTargetsFromCalculations, getBadgeLabelClasses, getButtonClasses, getCategoryBadgeClasses, getCategoryColor, getCompetitiveBadgeClasses, getContainerClasses, getFooterClasses, getFunnelStageMetrics, getGradeBadgeClasses, getHeaderClasses, getInsightsBadgeClasses, getInsightsCardClasses, getMetricLabelClasses, getMetricMiniCardClasses, getMetricValueClasses, getNarrativeTextClasses, getRevenueCardClasses, getRevenueIconClasses, getStatusBadgeClasses, getStatusDotClasses, getStatusIconClasses, getStatusSummaryClasses, getSubtitleClasses, getTitleClasses, getTrendClasses, getTrendIconClasses, getTrendValueClasses, groupMetricsByFunnelStage, isLightMode, validateRevenueTarget };
|
|
4858
4948
|
export type { AnimationType, BusinessInsightDetailModalData, BusinessSearchResult, CategoryColorPalette, CategoryDetailModalData, CategoryProgressItem, ChartThemeColors, ConfettiConfig, ConfettiIntensity, CreateAccountData, CriticalGapDetailModalData, CriticalGapsListModalData, CrossDashboardRelationships, DataKey, FocusAreaGapDetailModalData, FocusAreaGapsListModalData, FocusAreaOpportunitiesListModalData, FocusAreaOpportunityDetailModalData, FocusAreaStrengthDetailModalData, FocusAreaStrengthsListModalData, FunnelMetricOrder, FunnelRatio, FunnelStrengthDetailModalData, FunnelStrengthInterface, FunnelStrengthsListModalData, FunnelWeaknessDetailModalData, FunnelWeaknessInterface, FunnelWeaknessesListModalData, GapDetailModalData, GoalBusinessInsightsListModalData, GoalDetailModalData, GoalInsightsListModalData, GoalObjectivesModalData, HeaderScrollConfig, ItemDetailModalData, JourneyStep$1 as JourneyStep, KeyStrengthDetailModalData, KeyStrengthsListModalData, LayoutMode, Metric, MetricTargetCalculation, MetricTargetWithPrecision, MetricsListModalData, ModalState, NavSection, NavigationState, ObjectiveStrategiesModalData, OpportunityDetailModalData, RecommendationBusinessInsightsListModalData, RecommendationInsightsListModalData, RelatedBusinessContent, RelatedFunnelContent, RelatedMetricRatio, RevenueCalculationResult, ReverseCalculationContext, ScrollBaseCustomEvent, ScrollBaseDetail, ScrollCustomEvent, ScrollDepthInfo, ScrollDetail, SemanticColors, ShadowLevel, ShopProfileViewType, SpinnerSize, StrategyRecommendationsModalData, StrengthDetailModalData, ThemeColorContext, ThemeMode, TooltipPosition, TooltipState, TooltipType, TopPrioritiesListModalData, TopPriorityDetailModalData, TopPriorityInterface, ViewMode, ViewportBounds, VisualizationData, VisualizationType };
|
|
4859
4949
|
//# sourceMappingURL=index.d.ts.map
|