@eric-emg/symphiq-components 1.3.62 → 1.3.64
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 +455 -199
- package/fesm2022/symphiq-components.mjs.map +1 -1
- package/package.json +1 -1
- package/styles.css +78 -0
- package/types/symphiq-components.d.ts +110 -103
- package/types/symphiq-components.d.ts.map +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _jebgem_model from '@jebgem/model';
|
|
2
|
-
import {
|
|
2
|
+
import { InsightBlockInterface, PerformanceMetricInterface, AiChartInterface, ProfileItemInterface, ViewModeEnum, ProfileAnalysisRecommendationActionStepInterface, GoalV3Interface, ObjectiveV3Interface, StrategyV3Interface, OperationalCategoryInterface, CategoryStrengthInterface, CategoryGapInterface, CategoryOpportunityInterface, ProfileAnalysisRecommendationInterface, KeyStrengthInterface, CriticalGapInterface, FocusAreaTopPriorityInterface, MetricTopPriorityInterface, UnifiedGoalInterface, SourceAnalysisReferenceInterface, ProfileAnalysisInterface, RecommendationV3Interface, MetricStatusEnum, TrendDirectionEnum, CompetitiveScoreEnum, ProfileSectionInterface, ProfileSubsectionInterface, ProfileInterface, MetricEnum, FunnelMetricInterface, TargetInterface, UiDataInterface, FunnelAnalysisInterface, FocusAreaDetailInterface, BreakdownMetricInterface, UserInterface, ItemStatusInterface, AiDynamicContentStatusEnum, PerformanceOverviewStructuredV3Interface, OverallAssessmentInterface, FocusAreaDomainEnum, FocusAreaDetailStatusEnum, GaPropertyInterface, GaAccountInterface, ShopDataLoadStatusEnum, PacingResponseInterface, DataResultsInterface, CalculateRevenueReverseResponseInterface, CalculateRevenueResponseInterface, TargetHistoryInterface, CalculateRevenueRequestInterface, CalculateRevenueReverseRequestInterface, ProfileItemTypeEnum, IconObjectInterface as IconObjectInterface$1, NapkinVisualInterface, HierarchyDataInterface, AbstractItemProfileQuestionInterface, AbstractItemProfileAnswerInterface, AbstractItemProfileAnswerHistoryInterface, AccountInterface, ProfileShopInterface, ProfileShopQuestionInterface, PlanCardInfoInterface, CurrencyCodeEnum, ChargebeeItemPricePeriodUnitEnum, ChargebeeItemPriceInterface, IconSourceEnum, ProfileAnalysisSectionV3Interface, ExecutiveSummaryInterface, ProfileFocusAreaInterface, ProfileFocusAreaQuestionInterface, ProfileAnalysisReviewStatusEnum, ProfileAnalysisTypeEnum, ProfileAnalysisStructuredV3Interface, UnifiedExecutiveSummaryInterface, ProfileMetricInterface, ProfileMetricQuestionInterface, FocusAreaExecutiveSummaryInterface, MetricExecutiveSummaryInterface, ChartTypeEnum } from '@jebgem/model';
|
|
3
3
|
export * from '@jebgem/model';
|
|
4
4
|
import * as _angular_core from '@angular/core';
|
|
5
5
|
import { OnInit, AfterViewInit, ElementRef, WritableSignal, OnDestroy, OnChanges, SimpleChanges, Renderer2 } from '@angular/core';
|
|
@@ -406,6 +406,7 @@ declare class ModalService {
|
|
|
406
406
|
itemType?: string;
|
|
407
407
|
} | null>;
|
|
408
408
|
constructor();
|
|
409
|
+
getCurrentState(): ModalState;
|
|
409
410
|
/**
|
|
410
411
|
* Checks if the current modal context is from Profile Analysis Dashboard
|
|
411
412
|
* by looking at the current modal state and navigation stack
|
|
@@ -518,7 +519,7 @@ declare class ModalService {
|
|
|
518
519
|
navigateToFocusAreaGapDetail(gap: CategoryGapInterface, categoryTitle: string, viewMode: ViewModeEnum): void;
|
|
519
520
|
openFocusAreaOpportunitiesListModal(opportunities: CategoryOpportunityInterface[], viewMode: ViewModeEnum, categoryTitle: string): void;
|
|
520
521
|
navigateToFocusAreaOpportunityDetail(opportunity: CategoryOpportunityInterface, categoryTitle: string, viewMode: ViewModeEnum): void;
|
|
521
|
-
openUnifiedGoalModal(goal: UnifiedGoalInterface, allMetrics: PerformanceMetricInterface[], allCharts: AiChartInterface[], loadedSourceAnalysisIds: string[], viewMode: ViewModeEnum, loadingSourceAnalysisId?: string): void;
|
|
522
|
+
openUnifiedGoalModal(goal: UnifiedGoalInterface, allMetrics: PerformanceMetricInterface[], allCharts: AiChartInterface[], loadedSourceAnalysisIds: string[], viewMode: ViewModeEnum, loadingSourceAnalysisId?: string, previousState?: ModalState | null): void;
|
|
522
523
|
navigateToUnifiedGoalObjectives(goal: UnifiedGoalInterface, allMetrics: PerformanceMetricInterface[], allCharts: AiChartInterface[], viewMode: ViewModeEnum): void;
|
|
523
524
|
navigateToUnifiedGoalRelatedMetrics(goal: UnifiedGoalInterface, contributingMetrics: PerformanceMetricInterface[], allCharts: AiChartInterface[], viewMode: ViewModeEnum): void;
|
|
524
525
|
navigateToSourceGoal(sourceAnalysis: SourceAnalysisReferenceInterface, sourceProfileAnalysis: ProfileAnalysisInterface | undefined, unifiedGoal: UnifiedGoalInterface, allMetrics: PerformanceMetricInterface[], allCharts: AiChartInterface[], viewMode: ViewModeEnum): void;
|
|
@@ -1152,7 +1153,7 @@ declare class ModalComponent {
|
|
|
1152
1153
|
private animatedTrendValues;
|
|
1153
1154
|
private animationFrames;
|
|
1154
1155
|
isOpen: _angular_core.Signal<boolean>;
|
|
1155
|
-
modalType: _angular_core.Signal<"
|
|
1156
|
+
modalType: _angular_core.Signal<"chart" | "insight" | "metric" | "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>;
|
|
1156
1157
|
charts: _angular_core.Signal<AiChartInterface[]>;
|
|
1157
1158
|
modalKey: _angular_core.Signal<number>;
|
|
1158
1159
|
insightData: _angular_core.Signal<InsightBlockInterface | null>;
|
|
@@ -1492,9 +1493,9 @@ declare class ViewModeSwitcherModalComponent {
|
|
|
1492
1493
|
protected backdropClasses: _angular_core.Signal<"bg-slate-950/25" | "bg-slate-900/15">;
|
|
1493
1494
|
protected modalClasses: _angular_core.Signal<"bg-slate-800/95 border border-slate-700/50" | "bg-white/95 border border-slate-200">;
|
|
1494
1495
|
protected headerClasses: _angular_core.Signal<"border-slate-200" | "border-slate-700/50">;
|
|
1495
|
-
protected titleClasses: _angular_core.Signal<"text-
|
|
1496
|
-
protected descriptionClasses: _angular_core.Signal<"text-slate-
|
|
1497
|
-
protected closeButtonClasses: _angular_core.Signal<"text-slate-
|
|
1496
|
+
protected titleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
1497
|
+
protected descriptionClasses: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
1498
|
+
protected closeButtonClasses: _angular_core.Signal<"text-slate-400 hover:text-white hover:bg-slate-700" | "text-slate-600 hover:text-slate-900 hover:bg-slate-100">;
|
|
1498
1499
|
protected contentClasses: _angular_core.Signal<"bg-slate-800/50" | "bg-slate-50/50">;
|
|
1499
1500
|
protected badgeClasses: _angular_core.Signal<"bg-amber-100 text-amber-700 border border-amber-200" | "bg-amber-500/20 text-amber-400 border border-amber-500/30">;
|
|
1500
1501
|
protected spinnerClasses: _angular_core.Signal<"border-blue-500" | "border-blue-600">;
|
|
@@ -1610,10 +1611,10 @@ declare class SymphiqFunnelAnalysisDashboardComponent implements AfterViewInit {
|
|
|
1610
1611
|
*/
|
|
1611
1612
|
private chartsById;
|
|
1612
1613
|
headerClass: _angular_core.Signal<string>;
|
|
1613
|
-
headerTitleClass: _angular_core.Signal<"text-
|
|
1614
|
-
headerSubtitleClass: _angular_core.Signal<"text-slate-
|
|
1614
|
+
headerTitleClass: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
1615
|
+
headerSubtitleClass: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
1615
1616
|
metaLabelClass: _angular_core.Signal<"text-slate-600" | "text-slate-500">;
|
|
1616
|
-
sectionTitleClass: _angular_core.Signal<"text-
|
|
1617
|
+
sectionTitleClass: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
1617
1618
|
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">;
|
|
1618
1619
|
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">;
|
|
1619
1620
|
formattedGeneratedDate: _angular_core.Signal<string | null>;
|
|
@@ -1784,7 +1785,7 @@ declare class MetricCardComponent {
|
|
|
1784
1785
|
competitiveScoreBadgeLightClass: _angular_core.Signal<string>;
|
|
1785
1786
|
competitiveScoreBadgeDarkClass: _angular_core.Signal<string>;
|
|
1786
1787
|
competitiveScoreBadgeClass: _angular_core.Signal<string>;
|
|
1787
|
-
competitiveScoreTextClass: _angular_core.Signal<"text-blue-
|
|
1788
|
+
competitiveScoreTextClass: _angular_core.Signal<"text-blue-700" | "text-emerald-600" | "text-blue-400" | "text-orange-600" | "">;
|
|
1788
1789
|
competitiveComparisonDefaultClass: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
1789
1790
|
competitiveComparisonClass: _angular_core.Signal<"text-slate-300" | "text-slate-700" | "text-emerald-600 font-semibold" | "text-orange-600 font-semibold">;
|
|
1790
1791
|
getCompetitiveScoreIcon(): string;
|
|
@@ -2059,10 +2060,10 @@ declare class OverallAssessmentComponent {
|
|
|
2059
2060
|
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">;
|
|
2060
2061
|
lightModeTrendIconClass: _angular_core.Signal<"text-emerald-600" | "text-red-600">;
|
|
2061
2062
|
darkModeTrendIconClass: _angular_core.Signal<"text-emerald-400" | "text-red-400">;
|
|
2062
|
-
trendIconClass: _angular_core.Signal<"text-emerald-
|
|
2063
|
+
trendIconClass: _angular_core.Signal<"text-emerald-400" | "text-emerald-600" | "text-red-400" | "text-red-600">;
|
|
2063
2064
|
lightModeTrendValueClass: _angular_core.Signal<"text-emerald-600" | "text-red-600">;
|
|
2064
2065
|
darkModeTrendValueClass: _angular_core.Signal<"text-emerald-400" | "text-red-400">;
|
|
2065
|
-
trendValueClass: _angular_core.Signal<"text-emerald-
|
|
2066
|
+
trendValueClass: _angular_core.Signal<"text-emerald-400" | "text-emerald-600" | "text-red-400" | "text-red-600">;
|
|
2066
2067
|
formattedRevenueTrend: _angular_core.Signal<string>;
|
|
2067
2068
|
formattedRevenueTarget: _angular_core.Signal<string>;
|
|
2068
2069
|
hasRevenuePacing: _angular_core.Signal<boolean>;
|
|
@@ -2368,7 +2369,7 @@ declare class SymphiqFunnelAnalysisPreviewComponent {
|
|
|
2368
2369
|
hasCompetitiveData: _angular_core.Signal<boolean>;
|
|
2369
2370
|
hasOverallCompetitiveBenchmark: _angular_core.Signal<boolean>;
|
|
2370
2371
|
overallCompetitiveDescription: _angular_core.Signal<string>;
|
|
2371
|
-
overallCompetitiveLabel: _angular_core.Signal<
|
|
2372
|
+
overallCompetitiveLabel: _angular_core.Signal<"N/A" | _jebgem_model.CompetitiveScoreEnum>;
|
|
2372
2373
|
overallCompetitiveIcon: _angular_core.Signal<"↑" | "↔" | "↓" | "•">;
|
|
2373
2374
|
competitiveScore: _angular_core.Signal<string>;
|
|
2374
2375
|
gradeTooltip: _angular_core.Signal<{
|
|
@@ -2501,11 +2502,11 @@ declare class SymphiqWelcomeDashboardComponent implements AfterViewInit, OnDestr
|
|
|
2501
2502
|
protected titleClasses: _angular_core.Signal<"text-white" | "bg-gradient-to-r from-blue-600 to-purple-600 bg-clip-text text-transparent">;
|
|
2502
2503
|
protected textClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
2503
2504
|
protected highlightBoxClasses: _angular_core.Signal<"bg-blue-500/10 border-blue-500/30" | "bg-blue-50 border-blue-300">;
|
|
2504
|
-
protected highlightIconClasses: _angular_core.Signal<"text-blue-
|
|
2505
|
-
protected highlightTitleClasses: _angular_core.Signal<"text-blue-
|
|
2505
|
+
protected highlightIconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
2506
|
+
protected highlightTitleClasses: _angular_core.Signal<"text-blue-700" | "text-blue-400">;
|
|
2506
2507
|
protected highlightListClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
2507
2508
|
protected nextStepsBoxClasses: _angular_core.Signal<"bg-amber-500/10 border-amber-500/30" | "bg-amber-50 border-amber-200">;
|
|
2508
|
-
protected nextStepsIconClasses: _angular_core.Signal<"text-amber-
|
|
2509
|
+
protected nextStepsIconClasses: _angular_core.Signal<"text-amber-400" | "text-amber-600">;
|
|
2509
2510
|
protected nextStepsTitleClasses: _angular_core.Signal<"text-amber-400" | "text-amber-700">;
|
|
2510
2511
|
protected nextStepsTextClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
2511
2512
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SymphiqWelcomeDashboardComponent, never>;
|
|
@@ -2621,37 +2622,37 @@ declare class SymphiqCreateAccountDashboardComponent implements OnDestroy {
|
|
|
2621
2622
|
protected containerWrapperClasses: _angular_core.Signal<"" | "min-h-screen">;
|
|
2622
2623
|
protected containerClasses: _angular_core.Signal<"bg-white border-slate-200" | "bg-slate-800 border-slate-700">;
|
|
2623
2624
|
protected contentClasses: _angular_core.Signal<"bg-gradient-to-br from-white to-slate-50" | "bg-gradient-to-br from-slate-800 to-slate-900">;
|
|
2624
|
-
protected sectionTitleClasses: _angular_core.Signal<"text-
|
|
2625
|
-
protected sectionDescriptionClasses: _angular_core.Signal<"text-slate-
|
|
2625
|
+
protected sectionTitleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
2626
|
+
protected sectionDescriptionClasses: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
2626
2627
|
protected labelClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
2627
2628
|
protected inputClasses(fieldName: string): string;
|
|
2628
2629
|
protected urlPrefixClasses: _angular_core.Signal<"bg-slate-100 text-slate-600 border-slate-300" | "bg-slate-600 text-slate-300 border-slate-600">;
|
|
2629
2630
|
protected urlInputClasses(fieldName: string): string;
|
|
2630
2631
|
protected radioPlatformClasses(platform: ShopPlatformEnum): string;
|
|
2631
2632
|
protected radioIndicatorClasses(platform: ShopPlatformEnum): string;
|
|
2632
|
-
protected radioLabelClasses: _angular_core.Signal<"text-
|
|
2633
|
+
protected radioLabelClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
2633
2634
|
protected checkboxClasses: _angular_core.Signal<"text-blue-600 border-slate-300 focus:ring-blue-500" | "text-blue-400 border-slate-600 focus:ring-blue-400 bg-slate-700">;
|
|
2634
|
-
protected checkboxLabelClasses: _angular_core.Signal<"text-slate-
|
|
2635
|
+
protected checkboxLabelClasses: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
2635
2636
|
protected errorClasses: _angular_core.Signal<string>;
|
|
2636
|
-
protected viewLabelClasses: _angular_core.Signal<"text-slate-
|
|
2637
|
-
protected viewValueClasses: _angular_core.Signal<"text-
|
|
2637
|
+
protected viewLabelClasses: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
2638
|
+
protected viewValueClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
2638
2639
|
protected viewLinkClasses: _angular_core.Signal<"text-blue-600 hover:text-blue-700" | "text-blue-400 hover:text-blue-300">;
|
|
2639
2640
|
protected editButtonClasses: _angular_core.Signal<"bg-blue-500 text-white hover:bg-blue-600" | "bg-blue-600 text-white hover:bg-blue-700">;
|
|
2640
2641
|
protected stickyButtonContainerClasses: _angular_core.Signal<"bg-white/90 border-slate-200" | "bg-slate-900/90 border-slate-700">;
|
|
2641
2642
|
protected cancelButtonClasses: _angular_core.Signal<"bg-slate-700 text-slate-300 hover:bg-slate-600" | "bg-slate-200 text-slate-700 hover:bg-slate-300">;
|
|
2642
2643
|
protected continueButtonClasses: _angular_core.Signal<"bg-gradient-to-r from-blue-600 to-cyan-600 hover:from-blue-700 hover:to-cyan-700 text-white" | "bg-gradient-to-r from-blue-500 to-cyan-500 hover:from-blue-600 hover:to-cyan-600 text-white" | "bg-slate-300 text-slate-500" | "bg-slate-700 text-slate-500">;
|
|
2643
|
-
protected focusAreaProgressLabelClasses: _angular_core.Signal<"text-slate-
|
|
2644
|
-
protected focusAreaProgressCountClasses: _angular_core.Signal<"text-
|
|
2644
|
+
protected focusAreaProgressLabelClasses: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
2645
|
+
protected focusAreaProgressCountClasses: _angular_core.Signal<"text-emerald-400" | "text-emerald-600" | "text-blue-400" | "text-blue-600">;
|
|
2645
2646
|
protected focusAreaProgressBarBgClasses: _angular_core.Signal<"bg-slate-200" | "bg-slate-700">;
|
|
2646
2647
|
protected focusAreaProgressBarFillClasses: _angular_core.Signal<"bg-gradient-to-r from-emerald-500 to-teal-500" | "bg-gradient-to-r from-blue-500 to-cyan-500" | "bg-gradient-to-r from-emerald-400 to-teal-400" | "bg-gradient-to-r from-blue-400 to-cyan-400">;
|
|
2647
|
-
protected progressBadgeClasses: _angular_core.Signal<"bg-
|
|
2648
|
+
protected progressBadgeClasses: _angular_core.Signal<"bg-emerald-100 text-emerald-700 border border-emerald-200" | "bg-blue-100 text-blue-700 border border-blue-200" | "bg-emerald-900/30 text-emerald-400 border border-emerald-700" | "bg-blue-900/30 text-blue-400 border border-blue-700">;
|
|
2648
2649
|
protected dividerClasses: _angular_core.Signal<"border-t border-slate-200" | "border-t border-slate-700">;
|
|
2649
2650
|
protected groupTitleClasses(type: 'engaged' | 'interested' | 'not-interested'): string;
|
|
2650
2651
|
protected focusAreaViewCardClasses(type: 'engaged' | 'interested' | 'not-interested'): string;
|
|
2651
|
-
protected focusAreaViewTitleClasses: _angular_core.Signal<"text-
|
|
2652
|
-
protected focusAreaViewTitleSmallClasses: _angular_core.Signal<"text-slate-
|
|
2652
|
+
protected focusAreaViewTitleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
2653
|
+
protected focusAreaViewTitleSmallClasses: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
2653
2654
|
protected statusBadgeClasses(type: 'engaged' | 'interested' | 'not-interested'): string;
|
|
2654
|
-
protected toolsLabelViewClasses: _angular_core.Signal<"text-slate-
|
|
2655
|
+
protected toolsLabelViewClasses: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
2655
2656
|
protected toolChipViewClasses: _angular_core.Signal<"bg-white text-emerald-700 border border-emerald-200" | "bg-slate-800 text-emerald-300 border border-emerald-700">;
|
|
2656
2657
|
protected validationMessageClasses: _angular_core.Signal<"bg-orange-50 text-orange-700 border border-orange-200" | "bg-orange-900/30 text-orange-400 border border-orange-700">;
|
|
2657
2658
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SymphiqCreateAccountDashboardComponent, never>;
|
|
@@ -2685,15 +2686,15 @@ declare class FocusAreaQuestionComponent {
|
|
|
2685
2686
|
private computeRadioLabelClasses;
|
|
2686
2687
|
protected containerClasses: _angular_core.Signal<"bg-white border-slate-200" | "bg-slate-800 border-slate-700">;
|
|
2687
2688
|
protected contentClasses: _angular_core.Signal<"bg-gradient-to-br from-white to-slate-50" | "bg-gradient-to-br from-slate-800 to-slate-900">;
|
|
2688
|
-
protected titleClasses: _angular_core.Signal<"text-
|
|
2689
|
-
protected descriptionClasses: _angular_core.Signal<"text-slate-
|
|
2689
|
+
protected titleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
2690
|
+
protected descriptionClasses: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
2690
2691
|
protected notAnsweredBadgeClasses: _angular_core.Signal<"bg-orange-100 text-orange-700 border border-orange-200" | "bg-orange-900/30 text-orange-400 border border-orange-700">;
|
|
2691
|
-
protected radioDescriptionClasses: _angular_core.Signal<"text-slate-
|
|
2692
|
+
protected radioDescriptionClasses: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
2692
2693
|
protected toolsLabelClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
2693
2694
|
protected toolsButtonClasses: _angular_core.Signal<"bg-red-50 border-red-300 hover:border-red-400 hover:bg-red-100 text-slate-900" | "bg-red-900/20 border-red-700 hover:border-red-600 hover:bg-red-900/30 text-white" | "bg-white border-slate-300 hover:border-blue-400 hover:bg-blue-50 text-slate-900" | "bg-slate-700 border-slate-600 hover:border-blue-400 hover:bg-slate-600 text-white">;
|
|
2694
2695
|
protected toolChipClasses: _angular_core.Signal<"bg-blue-100 text-blue-700 border border-blue-200" | "bg-blue-900/30 text-blue-300 border border-blue-700">;
|
|
2695
|
-
protected placeholderClasses: _angular_core.Signal<"text-slate-
|
|
2696
|
-
protected editIconClasses: _angular_core.Signal<"text-slate-
|
|
2696
|
+
protected placeholderClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
2697
|
+
protected editIconClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
2697
2698
|
protected onStatusChange(status: FocusAreaDetailStatusEnum): void;
|
|
2698
2699
|
protected onToolsClick(): void;
|
|
2699
2700
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FocusAreaQuestionComponent, never>;
|
|
@@ -2720,7 +2721,7 @@ declare class FocusAreaToolsModalComponent {
|
|
|
2720
2721
|
protected backdropClasses: _angular_core.Signal<"bg-black/15" | "bg-black/40">;
|
|
2721
2722
|
protected containerClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800 border border-slate-700">;
|
|
2722
2723
|
protected headerClasses: _angular_core.Signal<"bg-gradient-to-r from-white to-slate-50 border-slate-200" | "bg-gradient-to-r from-slate-800 to-slate-900 border-slate-700">;
|
|
2723
|
-
protected titleClasses: _angular_core.Signal<"text-
|
|
2724
|
+
protected titleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
2724
2725
|
protected closeButtonClasses: _angular_core.Signal<"text-slate-500 hover:bg-slate-100 hover:text-slate-700" | "text-slate-400 hover:bg-slate-700 hover:text-slate-200">;
|
|
2725
2726
|
protected labelClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
2726
2727
|
protected checkboxClasses: _angular_core.Signal<"text-blue-600 border-slate-300 focus:ring-blue-500" | "text-blue-400 border-slate-600 focus:ring-blue-400 bg-slate-700">;
|
|
@@ -3464,7 +3465,7 @@ declare class BusinessAnalysisModalComponent implements OnInit, OnDestroy {
|
|
|
3464
3465
|
baseZIndex: _angular_core.Signal<number>;
|
|
3465
3466
|
backdropZIndex: _angular_core.Signal<number>;
|
|
3466
3467
|
contentZIndex: _angular_core.Signal<number>;
|
|
3467
|
-
visualizationType: _angular_core.Signal<"horizontal-bar" | "circular-progress" | "napkin-visual" |
|
|
3468
|
+
visualizationType: _angular_core.Signal<"custom" | "horizontal-bar" | "circular-progress" | "napkin-visual" | null>;
|
|
3468
3469
|
horizontalBarData: _angular_core.Signal<{
|
|
3469
3470
|
percentage: number;
|
|
3470
3471
|
label: string;
|
|
@@ -4198,12 +4199,12 @@ declare class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
4198
4199
|
getProgressBarContainerClasses(): string;
|
|
4199
4200
|
getCardFooterClasses(): string;
|
|
4200
4201
|
protected welcomeBannerContainerClasses: _angular_core.Signal<"bg-white border-slate-200" | "bg-slate-800/50 border-slate-700/50">;
|
|
4201
|
-
protected welcomeBannerIconClasses: _angular_core.Signal<"bg-purple-
|
|
4202
|
-
protected welcomeBannerTitleClasses: _angular_core.Signal<"text-
|
|
4202
|
+
protected welcomeBannerIconClasses: _angular_core.Signal<"bg-purple-100 text-purple-600" | "bg-purple-500/20 text-purple-400">;
|
|
4203
|
+
protected welcomeBannerTitleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
4203
4204
|
protected welcomeBannerTextClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
4204
|
-
protected welcomeBannerHighlightClasses: _angular_core.Signal<"bg-blue-
|
|
4205
|
-
protected welcomeBannerHighlightIconClasses: _angular_core.Signal<"text-blue-
|
|
4206
|
-
protected welcomeBannerHighlightTitleClasses: _angular_core.Signal<"text-
|
|
4205
|
+
protected welcomeBannerHighlightClasses: _angular_core.Signal<"bg-blue-50/50 border-blue-300" | "bg-blue-500/10 border-blue-500/30">;
|
|
4206
|
+
protected welcomeBannerHighlightIconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
4207
|
+
protected welcomeBannerHighlightTitleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
4207
4208
|
protected welcomeBannerHighlightListClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
4208
4209
|
protected statusComponentContainerClasses: _angular_core.Signal<"bg-slate-50/80 border-slate-200" | "bg-slate-900/40 border-slate-700/50">;
|
|
4209
4210
|
protected statusSectionTitleClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
@@ -4405,12 +4406,12 @@ declare class SymphiqProfileAnalysisFocusAreaDashboardComponent implements OnIni
|
|
|
4405
4406
|
} | null;
|
|
4406
4407
|
protected handleDisplayModeChange(mode: DisplayModeEnum): void;
|
|
4407
4408
|
protected getAnalysisSubtitle(): string;
|
|
4408
|
-
protected containerClasses: _angular_core.Signal<"text-
|
|
4409
|
+
protected containerClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
4409
4410
|
protected progressCardClasses: _angular_core.Signal<"bg-white border-slate-200" | "bg-slate-800/40 border-slate-700/50">;
|
|
4410
|
-
protected sectionTitleClasses: _angular_core.Signal<"text-
|
|
4411
|
+
protected sectionTitleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
4411
4412
|
protected sectionCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4412
4413
|
protected sectionIconClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-400" | "bg-blue-50 text-blue-600">;
|
|
4413
|
-
protected sectionDescriptionClasses: _angular_core.Signal<"text-slate-
|
|
4414
|
+
protected sectionDescriptionClasses: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
4414
4415
|
private formatGradeInText;
|
|
4415
4416
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SymphiqProfileAnalysisFocusAreaDashboardComponent, never>;
|
|
4416
4417
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqProfileAnalysisFocusAreaDashboardComponent, "symphiq-profile-analysis-focus-area-dashboard", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "profileAnalysis": { "alias": "profileAnalysis"; "required": false; "isSignal": true; }; "funnelAnalysis": { "alias": "funnelAnalysis"; "required": false; "isSignal": true; }; "profile": { "alias": "profile"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "requestedByUser": { "alias": "requestedByUser"; "required": false; "isSignal": true; }; "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; "scrollEvent": { "alias": "scrollEvent"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; "focusAreaDetails": { "alias": "focusAreaDetails"; "required": false; "isSignal": true; }; "itemStatusProfileAnalysis": { "alias": "itemStatusProfileAnalysis"; "required": false; "isSignal": true; }; "isMarkingAsReviewed": { "alias": "isMarkingAsReviewed"; "required": false; "isSignal": true; }; }, { "nextStepClick": "nextStepClick"; "markAsReviewedClick": "markAsReviewedClick"; }, never, never, true, never>;
|
|
@@ -4485,6 +4486,7 @@ declare class SymphiqProfileAnalysisUnifiedDashboardComponent implements OnChang
|
|
|
4485
4486
|
protected isViewModeSwitcherOpen: _angular_core.WritableSignal<boolean>;
|
|
4486
4487
|
protected funnelAnalysisSignal: _angular_core.WritableSignal<FunnelAnalysisInterface | undefined>;
|
|
4487
4488
|
protected loadingSourceAnalysisId: _angular_core.WritableSignal<number | undefined>;
|
|
4489
|
+
protected pendingSourceRequest: _angular_core.WritableSignal<SourceAnalysisReferenceInterface | undefined>;
|
|
4488
4490
|
protected fabExpanded: _angular_core.WritableSignal<boolean>;
|
|
4489
4491
|
protected activeNavSection: _angular_core.WritableSignal<string>;
|
|
4490
4492
|
mobileNavSections: NavSection[];
|
|
@@ -4505,6 +4507,7 @@ declare class SymphiqProfileAnalysisUnifiedDashboardComponent implements OnChang
|
|
|
4505
4507
|
protected sourceAnalysesMap: _angular_core.Signal<Map<number, ProfileAnalysisInterface>>;
|
|
4506
4508
|
protected loadedSourceAnalysisIds: _angular_core.Signal<number[]>;
|
|
4507
4509
|
protected sourceAnalysesCount: _angular_core.Signal<number>;
|
|
4510
|
+
protected unifiedAnalysisDate: _angular_core.Signal<Date | undefined>;
|
|
4508
4511
|
protected shopCounts: _angular_core.Signal<{
|
|
4509
4512
|
analyses: number;
|
|
4510
4513
|
goals: number;
|
|
@@ -4537,35 +4540,35 @@ declare class SymphiqProfileAnalysisUnifiedDashboardComponent implements OnChang
|
|
|
4537
4540
|
protected welcomeSubtitleClasses: _angular_core.Signal<string>;
|
|
4538
4541
|
protected welcomeDescriptionClasses: _angular_core.Signal<string>;
|
|
4539
4542
|
protected bannerClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4540
|
-
protected sectionTitleClasses: _angular_core.Signal<"text-
|
|
4543
|
+
protected sectionTitleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
4541
4544
|
protected textClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
4542
4545
|
protected subheadingClasses: _angular_core.Signal<"text-slate-800" | "text-slate-200">;
|
|
4543
4546
|
protected narrativeClasses: _angular_core.Signal<"bg-slate-50 border border-slate-200" | "bg-slate-900/50 border border-slate-700">;
|
|
4544
|
-
protected goalTitleClasses: _angular_core.Signal<"text-
|
|
4545
|
-
protected goalDescriptionClasses: _angular_core.Signal<"text-slate-
|
|
4547
|
+
protected goalTitleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
4548
|
+
protected goalDescriptionClasses: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
4546
4549
|
protected timeframeBadgeClasses: _angular_core.Signal<"bg-slate-100 text-slate-600" | "bg-slate-700 text-slate-300">;
|
|
4547
4550
|
protected cardBorderClasses: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
4548
4551
|
protected moreBadgeClasses: _angular_core.Signal<"bg-slate-100 text-slate-600" | "bg-slate-700 text-slate-400">;
|
|
4549
4552
|
protected relatedMetricsButtonClasses: _angular_core.Signal<"bg-blue-50 text-blue-700 border border-blue-200 hover:bg-blue-100" | "bg-blue-900/30 text-blue-300 border border-blue-700 hover:bg-blue-900/50">;
|
|
4550
4553
|
protected timelineContainerClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4551
4554
|
protected timelineLineClasses: _angular_core.Signal<"bg-gradient-to-b from-blue-400 via-cyan-400 to-teal-400" | "bg-gradient-to-b from-blue-600 via-cyan-600 to-teal-600">;
|
|
4552
|
-
protected timelineItemTitleClasses: _angular_core.Signal<"text-
|
|
4553
|
-
protected timeframeDisplayClasses: _angular_core.Signal<"text-slate-
|
|
4555
|
+
protected timelineItemTitleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
4556
|
+
protected timeframeDisplayClasses: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
4554
4557
|
protected objectivesLabelClasses: _angular_core.Signal<string>;
|
|
4555
4558
|
protected objectiveItemClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
4556
|
-
protected moreObjectivesClasses: _angular_core.Signal<"text-slate-
|
|
4557
|
-
protected phaseIndicatorClasses: _angular_core.Signal<"text-blue-
|
|
4559
|
+
protected moreObjectivesClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
4560
|
+
protected phaseIndicatorClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
4558
4561
|
protected matrixContainerClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4559
|
-
protected matrixAxisLabelClasses: _angular_core.Signal<"text-slate-
|
|
4562
|
+
protected matrixAxisLabelClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
4560
4563
|
protected quadrantTitleClasses: _angular_core.Signal<"text-white" | "text-slate-800">;
|
|
4561
|
-
protected quadrantSubtitleClasses: _angular_core.Signal<"text-slate-
|
|
4564
|
+
protected quadrantSubtitleClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
4562
4565
|
protected sourceIndicatorClasses: _angular_core.Signal<"bg-slate-200 text-slate-600 px-1.5 py-0.5 rounded-full" | "bg-slate-600 text-slate-300 px-1.5 py-0.5 rounded-full">;
|
|
4563
|
-
protected moreGoalsClasses: _angular_core.Signal<"text-slate-
|
|
4566
|
+
protected moreGoalsClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
4564
4567
|
protected emptyQuadrantClasses: _angular_core.Signal<"text-slate-400 italic" | "text-slate-500 italic">;
|
|
4565
|
-
protected stepTitleClasses: _angular_core.Signal<"text-
|
|
4568
|
+
protected stepTitleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
4566
4569
|
protected stepDescriptionClasses: _angular_core.Signal<"text-slate-600" | "text-slate-300">;
|
|
4567
4570
|
protected stepBorderClasses: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
4568
|
-
protected strategiesLabelClasses: _angular_core.Signal<"text-slate-
|
|
4571
|
+
protected strategiesLabelClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
4569
4572
|
protected strategyItemClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
4570
4573
|
protected goalCardBaseClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4571
4574
|
private readonly COLLAPSE_THRESHOLD;
|
|
@@ -4585,6 +4588,7 @@ declare class SymphiqProfileAnalysisUnifiedDashboardComponent implements OnChang
|
|
|
4585
4588
|
protected onViewAllPriorityActionsClick(): void;
|
|
4586
4589
|
protected onPriorityActionGoalClick(goalId: string): void;
|
|
4587
4590
|
protected onPriorityActionRecommendationClick(recommendationId: string): void;
|
|
4591
|
+
private findRecommendationInSourceAnalyses;
|
|
4588
4592
|
protected onSourceBadgeClick(event: Event, source: SourceAnalysisReferenceInterface, goal: UnifiedGoalInterface): void;
|
|
4589
4593
|
protected onRelatedMetricsClick(event: Event, goal: UnifiedGoalInterface): void;
|
|
4590
4594
|
protected onSourceBadgeClickFromCard(event: {
|
|
@@ -4592,6 +4596,9 @@ declare class SymphiqProfileAnalysisUnifiedDashboardComponent implements OnChang
|
|
|
4592
4596
|
goal: UnifiedGoalInterface;
|
|
4593
4597
|
}): void;
|
|
4594
4598
|
protected onRelatedMetricsClickFromCard(goal: UnifiedGoalInterface): void;
|
|
4599
|
+
protected handleSourceAnalysisClickFromModal(source: SourceAnalysisReferenceInterface): void;
|
|
4600
|
+
private openSourceGoalModal;
|
|
4601
|
+
private pendingSourceRequestEffect;
|
|
4595
4602
|
protected onShopGoalsClick(): void;
|
|
4596
4603
|
protected onOtherGoalsClick(): void;
|
|
4597
4604
|
protected scrollToQuickWins(): void;
|
|
@@ -4709,8 +4716,8 @@ declare class SymphiqProfileMetricsAnalysesDashboardComponent {
|
|
|
4709
4716
|
handleSearchClick(): void;
|
|
4710
4717
|
handleCloseSearchModal(): void;
|
|
4711
4718
|
protected welcomeBannerContainerClasses: _angular_core.Signal<"bg-white border-slate-200" | "bg-slate-800/50 border-slate-700/50">;
|
|
4712
|
-
protected welcomeBannerIconClasses: _angular_core.Signal<"bg-blue-
|
|
4713
|
-
protected welcomeBannerTitleClasses: _angular_core.Signal<"text-
|
|
4719
|
+
protected welcomeBannerIconClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-400" | "bg-blue-100 text-blue-600">;
|
|
4720
|
+
protected welcomeBannerTitleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
4714
4721
|
protected welcomeBannerTextClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
4715
4722
|
private getIconForMetric;
|
|
4716
4723
|
private getMetricDescription;
|
|
@@ -4991,7 +4998,7 @@ declare class FocusAreaExecutiveSummaryComponent {
|
|
|
4991
4998
|
protected readonly IconSourceEnum: typeof IconSourceEnum;
|
|
4992
4999
|
protected isLight: _angular_core.Signal<boolean>;
|
|
4993
5000
|
protected bannerClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4994
|
-
protected sectionTitleClasses: _angular_core.Signal<"text-
|
|
5001
|
+
protected sectionTitleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
4995
5002
|
protected subheadingClasses: _angular_core.Signal<"text-slate-800" | "text-slate-200">;
|
|
4996
5003
|
protected textClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
4997
5004
|
protected narrativeClasses: _angular_core.Signal<"bg-slate-50 border border-slate-200" | "bg-slate-900/30 border border-slate-700/50">;
|
|
@@ -4999,10 +5006,10 @@ declare class FocusAreaExecutiveSummaryComponent {
|
|
|
4999
5006
|
protected topPrioritiesStatLabelClasses: _angular_core.Signal<"text-purple-400" | "text-purple-700">;
|
|
5000
5007
|
protected topPrioritiesStatValueClasses: _angular_core.Signal<"text-purple-900" | "text-purple-100">;
|
|
5001
5008
|
protected topPrioritiesButtonTextClasses: _angular_core.Signal<"text-purple-400" | "text-purple-700">;
|
|
5002
|
-
protected quickWinsStatCardClasses: _angular_core.Signal<"bg-blue-
|
|
5003
|
-
protected quickWinsStatLabelClasses: _angular_core.Signal<"text-blue-
|
|
5004
|
-
protected quickWinsStatValueClasses: _angular_core.Signal<"text-blue-
|
|
5005
|
-
protected quickWinsButtonTextClasses: _angular_core.Signal<"text-blue-
|
|
5009
|
+
protected quickWinsStatCardClasses: _angular_core.Signal<"bg-blue-50 border-2 border-blue-200 hover:border-blue-400 hover:shadow-lg hover:shadow-blue-100/50" | "bg-blue-500/10 border-2 border-blue-500/30 hover:border-blue-400/50 hover:shadow-lg hover:shadow-blue-500/10">;
|
|
5010
|
+
protected quickWinsStatLabelClasses: _angular_core.Signal<"text-blue-700" | "text-blue-400">;
|
|
5011
|
+
protected quickWinsStatValueClasses: _angular_core.Signal<"text-blue-900" | "text-blue-100">;
|
|
5012
|
+
protected quickWinsButtonTextClasses: _angular_core.Signal<"text-blue-700" | "text-blue-400">;
|
|
5006
5013
|
protected onTopPrioritiesClick(): void;
|
|
5007
5014
|
protected onPriorityDetailClick(event: {
|
|
5008
5015
|
priority: FocusAreaTopPriorityInterface;
|
|
@@ -5041,35 +5048,35 @@ declare class MetricExecutiveSummaryComponent {
|
|
|
5041
5048
|
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">;
|
|
5042
5049
|
protected titleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
5043
5050
|
protected textClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
5044
|
-
protected iconClasses: _angular_core.Signal<"text-blue-
|
|
5051
|
+
protected iconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
5045
5052
|
protected healthBadgeClasses: _angular_core.Signal<string>;
|
|
5046
5053
|
protected pacingBadgeClasses: _angular_core.Signal<string>;
|
|
5047
5054
|
protected metricCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
5048
|
-
protected viewDetailsTextClasses: _angular_core.Signal<"text-blue-
|
|
5055
|
+
protected viewDetailsTextClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
5049
5056
|
protected viewDetailsButtonClasses: _angular_core.Signal<"bg-blue-50 text-blue-700 border border-blue-200 hover:bg-blue-100" | "bg-blue-500/20 text-blue-300 border border-blue-500/40 hover:bg-blue-500/30">;
|
|
5050
5057
|
protected viewReportButtonClasses: _angular_core.Signal<"bg-slate-700/50 text-slate-300 border border-slate-600 hover:bg-slate-600/50" | "bg-slate-100 text-slate-700 border border-slate-300 hover:bg-slate-200">;
|
|
5051
|
-
protected metricLabelClasses: _angular_core.Signal<"text-slate-
|
|
5058
|
+
protected metricLabelClasses: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
5052
5059
|
protected metricValueClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
5053
|
-
protected yoyChangeClasses: _angular_core.Signal<"text-slate-
|
|
5060
|
+
protected yoyChangeClasses: _angular_core.Signal<"text-slate-400" | "text-slate-600" | "text-emerald-400" | "text-emerald-600" | "text-red-400" | "text-red-600">;
|
|
5054
5061
|
protected getYoyIcon(): string;
|
|
5055
5062
|
protected getPacingValueClasses(): string;
|
|
5056
5063
|
protected getHealthValueClasses(): string;
|
|
5057
|
-
protected healthDescriptionClasses: _angular_core.Signal<"text-slate-
|
|
5064
|
+
protected healthDescriptionClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
5058
5065
|
protected narrativeClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-600/20">;
|
|
5059
5066
|
protected narrativeTitleClasses: _angular_core.Signal<"text-slate-800" | "text-slate-200">;
|
|
5060
|
-
protected narrativeTextClasses: _angular_core.Signal<"text-slate-
|
|
5067
|
+
protected narrativeTextClasses: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
5061
5068
|
protected sectionTitleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
5062
5069
|
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">;
|
|
5063
5070
|
protected priorityNumberClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-300" | "bg-blue-100 text-blue-800">;
|
|
5064
5071
|
protected priorityTitleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
5065
5072
|
protected priorityTextClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
5066
5073
|
protected impactBoxClasses: _angular_core.Signal<"bg-slate-800/30 border border-slate-700/30" | "bg-slate-50/50 border border-slate-200">;
|
|
5067
|
-
protected impactLabelClasses: _angular_core.Signal<"text-blue-
|
|
5068
|
-
protected impactTextClasses: _angular_core.Signal<"text-slate-
|
|
5074
|
+
protected impactLabelClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
5075
|
+
protected impactTextClasses: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
5069
5076
|
protected quickWinCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
5070
5077
|
protected numberBadgeClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-300" | "bg-blue-100 text-blue-800">;
|
|
5071
5078
|
protected quickWinTextClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
5072
|
-
protected metaTextClasses: _angular_core.Signal<"text-slate-
|
|
5079
|
+
protected metaTextClasses: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
5073
5080
|
protected formatMetricName(name: string): string;
|
|
5074
5081
|
protected formatNumber(value: string | number | undefined): string;
|
|
5075
5082
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MetricExecutiveSummaryComponent, never>;
|
|
@@ -5587,22 +5594,22 @@ declare class SearchModalComponent {
|
|
|
5587
5594
|
private computeTypeBadgeText;
|
|
5588
5595
|
containerClass: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800 border border-slate-700">;
|
|
5589
5596
|
inputClass: _angular_core.Signal<"bg-white text-slate-900 placeholder-slate-400" | "bg-slate-800 text-white placeholder-slate-500">;
|
|
5590
|
-
iconClass: _angular_core.Signal<"text-slate-
|
|
5597
|
+
iconClass: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
5591
5598
|
clearButtonClass: _angular_core.Signal<"bg-slate-100 text-slate-600 hover:bg-slate-200" | "bg-slate-700 text-slate-300 hover:bg-slate-600">;
|
|
5592
5599
|
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">;
|
|
5593
5600
|
resultsContainerClass: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
5594
|
-
resultTitleClass: _angular_core.Signal<"text-
|
|
5595
|
-
resultDescClass: _angular_core.Signal<"text-slate-
|
|
5601
|
+
resultTitleClass: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
5602
|
+
resultDescClass: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
5596
5603
|
breadcrumbClass: _angular_core.Signal<string>;
|
|
5597
5604
|
typeBadgeClass: _angular_core.Signal<"bg-slate-100 text-slate-600" | "bg-slate-700 text-slate-300">;
|
|
5598
|
-
arrowClass: _angular_core.Signal<"text-slate-
|
|
5605
|
+
arrowClass: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
5599
5606
|
emptyStateClass: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
5600
5607
|
emptyIconClass: _angular_core.Signal<"text-slate-600" | "text-slate-300">;
|
|
5601
|
-
emptyTitleClass: _angular_core.Signal<"text-
|
|
5602
|
-
emptyDescClass: _angular_core.Signal<"text-slate-
|
|
5608
|
+
emptyTitleClass: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
5609
|
+
emptyDescClass: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
5603
5610
|
shortcutsClass: _angular_core.Signal<"bg-slate-900/50 border-slate-700" | "bg-slate-50 border-slate-200">;
|
|
5604
5611
|
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">;
|
|
5605
|
-
shortcutTextClass: _angular_core.Signal<"text-slate-
|
|
5612
|
+
shortcutTextClass: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
5606
5613
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchModalComponent, never>;
|
|
5607
5614
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SearchModalComponent, "symphiq-search-modal", never, { "isLightMode": { "alias": "isLightMode"; "required": false; "isSignal": true; }; "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; "searchQuery": { "alias": "searchQuery"; "required": false; "isSignal": true; }; "results": { "alias": "results"; "required": false; "isSignal": true; }; "hasResults": { "alias": "hasResults"; "required": false; "isSignal": true; }; "selectedIndex": { "alias": "selectedIndex"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; }, { "searchChange": "searchChange"; "resultSelected": "resultSelected"; "close": "close"; }, never, never, true, never>;
|
|
5608
5615
|
}
|
|
@@ -5641,7 +5648,7 @@ declare class DashboardHeaderComponent implements OnInit {
|
|
|
5641
5648
|
protected onTitleMouseLeave(): void;
|
|
5642
5649
|
formattedGeneratedDate: _angular_core.Signal<string>;
|
|
5643
5650
|
formatDate(dateString: string): string;
|
|
5644
|
-
headerTitleClass: _angular_core.Signal<"text-
|
|
5651
|
+
headerTitleClass: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
5645
5652
|
metaLabelClass: _angular_core.Signal<"text-slate-600" | "text-slate-500">;
|
|
5646
5653
|
protected getHeaderClasses(): string;
|
|
5647
5654
|
protected getMainTitleClasses(): string;
|
|
@@ -5668,7 +5675,7 @@ declare class GradeBadgeComponent {
|
|
|
5668
5675
|
explanation: string;
|
|
5669
5676
|
}>;
|
|
5670
5677
|
private formatGrade;
|
|
5671
|
-
badgeLabelClass: _angular_core.Signal<"text-slate-
|
|
5678
|
+
badgeLabelClass: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
5672
5679
|
gradeBadgeClass: _angular_core.Signal<string>;
|
|
5673
5680
|
private getGradeBadgeClassLight;
|
|
5674
5681
|
private getGradeBadgeClassDark;
|
|
@@ -5766,24 +5773,24 @@ declare class ConfidenceLevelCardComponent implements OnInit, OnDestroy {
|
|
|
5766
5773
|
protected cardContainerClasses: _angular_core.Signal<"border-2 shadow-2xl bg-slate-800/60 border-slate-700/50 backdrop-blur-xl" | "border-2 shadow-2xl bg-white/90 border-slate-200/50 backdrop-blur-xl shadow-slate-200/50">;
|
|
5767
5774
|
protected backgroundOverlayClasses: _angular_core.Signal<"bg-gradient-to-br from-emerald-500/30 via-teal-500/20 to-emerald-500/30" | "bg-gradient-to-br from-emerald-400/20 via-teal-400/10 to-emerald-400/20" | "bg-gradient-to-br from-blue-500/30 via-cyan-500/20 to-blue-500/30" | "bg-gradient-to-br from-blue-400/20 via-cyan-400/10 to-blue-400/20" | "bg-gradient-to-br from-orange-500/30 via-amber-500/20 to-orange-500/30" | "bg-gradient-to-br from-orange-400/20 via-amber-400/10 to-orange-400/20" | "bg-gradient-to-br from-red-500/30 via-rose-500/20 to-red-500/30" | "bg-gradient-to-br from-red-400/20 via-rose-400/10 to-red-400/20">;
|
|
5768
5775
|
protected titleClasses: _angular_core.Signal<"text-white" | "bg-gradient-to-r from-slate-700 to-slate-900 bg-clip-text text-transparent">;
|
|
5769
|
-
protected subtitleClasses: _angular_core.Signal<"text-slate-
|
|
5776
|
+
protected subtitleClasses: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
5770
5777
|
protected gradeBadgeContainerClasses: _angular_core.Signal<string>;
|
|
5771
|
-
protected glowEffectClasses: _angular_core.Signal<"bg-
|
|
5778
|
+
protected glowEffectClasses: _angular_core.Signal<"bg-emerald-500" | "bg-blue-500" | "bg-orange-500" | "bg-red-500">;
|
|
5772
5779
|
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)]">;
|
|
5773
|
-
protected gradeLabelClasses: _angular_core.Signal<"text-emerald-
|
|
5780
|
+
protected gradeLabelClasses: _angular_core.Signal<"text-emerald-300" | "text-emerald-700" | "text-blue-300" | "text-blue-700" | "text-orange-300" | "text-orange-700" | "text-red-300" | "text-red-700">;
|
|
5774
5781
|
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">;
|
|
5775
5782
|
protected descriptionClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
5776
5783
|
protected progressLabelClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
5777
|
-
protected progressValueClasses: _angular_core.Signal<"text-
|
|
5784
|
+
protected progressValueClasses: _angular_core.Signal<"text-emerald-400" | "text-emerald-600" | "text-blue-400" | "text-blue-600" | "text-orange-400" | "text-orange-600" | "text-red-400" | "text-red-600">;
|
|
5778
5785
|
protected progressTrackClasses: _angular_core.Signal<"bg-slate-700/50 shadow-inner" | "bg-slate-200 shadow-inner">;
|
|
5779
5786
|
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">;
|
|
5780
5787
|
protected shimmerClasses: _angular_core.Signal<string>;
|
|
5781
5788
|
protected progressGlowClasses: _angular_core.Signal<"bg-gradient-to-r from-emerald-500 to-teal-500" | "bg-gradient-to-r from-blue-500 to-cyan-500" | "bg-gradient-to-r from-orange-500 to-amber-500" | "bg-gradient-to-r from-red-500 to-rose-500">;
|
|
5782
5789
|
protected potentialProgressBarClasses: _angular_core.Signal<"opacity-40 bg-gradient-to-r from-emerald-500/50 via-teal-500/50 to-emerald-600/50" | "opacity-40 bg-gradient-to-r from-emerald-400/50 via-teal-400/50 to-emerald-500/50" | "opacity-40 bg-gradient-to-r from-blue-500/50 via-cyan-500/50 to-blue-600/50" | "opacity-40 bg-gradient-to-r from-blue-400/50 via-cyan-400/50 to-blue-500/50" | "opacity-40 bg-gradient-to-r from-orange-500/50 via-amber-500/50 to-orange-600/50" | "opacity-40 bg-gradient-to-r from-orange-400/50 via-amber-400/50 to-orange-500/50" | "opacity-40 bg-gradient-to-r from-red-500/50 via-rose-500/50 to-red-600/50" | "opacity-40 bg-gradient-to-r from-red-400/50 via-rose-400/50 to-red-500/50">;
|
|
5783
|
-
protected nextStepCalloutClasses: _angular_core.Signal<"bg-slate-
|
|
5784
|
-
protected nextStepBadgeClasses: _angular_core.Signal<"bg-
|
|
5785
|
-
protected currentStepCalloutClasses: _angular_core.Signal<"bg-slate-
|
|
5786
|
-
protected currentStepBadgeClasses: _angular_core.Signal<"bg-
|
|
5790
|
+
protected nextStepCalloutClasses: _angular_core.Signal<"bg-slate-700/50 text-slate-300 border border-slate-600/50" | "bg-slate-100 text-slate-700 border border-slate-200">;
|
|
5791
|
+
protected nextStepBadgeClasses: _angular_core.Signal<"bg-emerald-500/20 text-emerald-400" | "bg-emerald-100 text-emerald-700" | "bg-blue-500/20 text-blue-400" | "bg-blue-100 text-blue-700" | "bg-orange-500/20 text-orange-400" | "bg-orange-100 text-orange-700" | "bg-red-500/20 text-red-400" | "bg-red-100 text-red-700">;
|
|
5792
|
+
protected currentStepCalloutClasses: _angular_core.Signal<"bg-slate-700/50 text-slate-300 border border-slate-600/50" | "bg-slate-100 text-slate-700 border border-slate-200">;
|
|
5793
|
+
protected currentStepBadgeClasses: _angular_core.Signal<"bg-emerald-500/20 text-emerald-400" | "bg-emerald-100 text-emerald-700" | "bg-blue-500/20 text-blue-400" | "bg-blue-100 text-blue-700" | "bg-orange-500/20 text-orange-400" | "bg-orange-100 text-orange-700" | "bg-red-500/20 text-red-400" | "bg-red-100 text-red-700">;
|
|
5787
5794
|
protected nextDashboardCalloutClasses: _angular_core.Signal<"bg-slate-800/30 text-slate-400 border border-slate-700/30" | "bg-slate-50 text-slate-500 border border-slate-100">;
|
|
5788
5795
|
protected nextDashboardBadgeClasses: _angular_core.Signal<"bg-emerald-500/10 text-emerald-500" | "bg-emerald-50 text-emerald-600" | "bg-blue-500/10 text-blue-500" | "bg-blue-50 text-blue-600" | "bg-orange-500/10 text-orange-500" | "bg-orange-50 text-orange-600" | "bg-red-500/10 text-red-500" | "bg-red-50 text-red-600">;
|
|
5789
5796
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ConfidenceLevelCardComponent, never>;
|
|
@@ -5806,7 +5813,7 @@ declare class RelatedContentSidebarComponent {
|
|
|
5806
5813
|
protected funnelInsightsCount: _angular_core.Signal<number>;
|
|
5807
5814
|
protected funnelMetricsCount: _angular_core.Signal<number>;
|
|
5808
5815
|
protected businessInsightsCount: _angular_core.Signal<number>;
|
|
5809
|
-
protected headerClasses: _angular_core.Signal<"text-slate-
|
|
5816
|
+
protected headerClasses: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
5810
5817
|
protected onFunnelInsightsClick(): void;
|
|
5811
5818
|
protected onFunnelMetricsClick(): void;
|
|
5812
5819
|
protected onBusinessInsightsClick(): void;
|
|
@@ -5828,7 +5835,7 @@ declare class ContentGenerationProgressComponent {
|
|
|
5828
5835
|
protected containerClasses: _angular_core.Signal<string>;
|
|
5829
5836
|
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">;
|
|
5830
5837
|
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">;
|
|
5831
|
-
protected subtitleClasses: _angular_core.Signal<"text-slate-
|
|
5838
|
+
protected subtitleClasses: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
5832
5839
|
protected progressMessageClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
5833
5840
|
protected progressBarContainerClasses: _angular_core.Signal<string>;
|
|
5834
5841
|
protected progressBarBackgroundClasses: _angular_core.Signal<"bg-slate-200" | "bg-slate-700">;
|
|
@@ -5836,7 +5843,7 @@ declare class ContentGenerationProgressComponent {
|
|
|
5836
5843
|
protected dotClasses: _angular_core.Signal<"bg-blue-400 shadow-lg shadow-blue-400/60" | "bg-cyan-300 shadow-lg shadow-cyan-300/60">;
|
|
5837
5844
|
protected dotColor: _angular_core.Signal<"#60a5fa" | "#67e8f9">;
|
|
5838
5845
|
protected progressGlowClasses: _angular_core.Signal<"bg-blue-400 shadow-xl" | "bg-cyan-300 shadow-xl">;
|
|
5839
|
-
protected percentageClasses: _angular_core.Signal<"text-slate-
|
|
5846
|
+
protected percentageClasses: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
5840
5847
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ContentGenerationProgressComponent, never>;
|
|
5841
5848
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ContentGenerationProgressComponent, "symphiq-content-generation-progress", never, { "itemStatus": { "alias": "itemStatus"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "compact": { "alias": "compact"; "required": false; "isSignal": true; }; "compactTitle": { "alias": "compactTitle"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5842
5849
|
}
|
|
@@ -5863,10 +5870,10 @@ declare class IndeterminateSpinnerComponent {
|
|
|
5863
5870
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
5864
5871
|
size: _angular_core.InputSignal<SpinnerSize>;
|
|
5865
5872
|
color: _angular_core.InputSignal<string | undefined>;
|
|
5866
|
-
svgSize: _angular_core.Signal<
|
|
5873
|
+
svgSize: _angular_core.Signal<60 | 40 | 80>;
|
|
5867
5874
|
circleRadius: _angular_core.Signal<16 | 36 | 26>;
|
|
5868
5875
|
svgCircleRadius: _angular_core.Signal<number>;
|
|
5869
|
-
strokeWidth: _angular_core.Signal<
|
|
5876
|
+
strokeWidth: _angular_core.Signal<2 | 3 | 2.5>;
|
|
5870
5877
|
dotSize: _angular_core.Signal<10 | 5 | 7>;
|
|
5871
5878
|
containerClasses: _angular_core.Signal<{
|
|
5872
5879
|
'w-10 h-10': boolean;
|
|
@@ -5909,8 +5916,8 @@ declare class UserDisplayComponent {
|
|
|
5909
5916
|
avatarSize: _angular_core.InputSignal<AvatarSize>;
|
|
5910
5917
|
showEmail: _angular_core.InputSignal<boolean>;
|
|
5911
5918
|
protected displayName: _angular_core.Signal<string>;
|
|
5912
|
-
protected nameClasses: _angular_core.Signal<"text-
|
|
5913
|
-
protected emailClasses: _angular_core.Signal<"text-slate-
|
|
5919
|
+
protected nameClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
5920
|
+
protected emailClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
5914
5921
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<UserDisplayComponent, never>;
|
|
5915
5922
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<UserDisplayComponent, "symphiq-user-display", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "user": { "alias": "user"; "required": false; "isSignal": true; }; "avatarSize": { "alias": "avatarSize"; "required": false; "isSignal": true; }; "showEmail": { "alias": "showEmail"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5916
5923
|
}
|
|
@@ -5928,10 +5935,10 @@ declare class ChartContainerComponent {
|
|
|
5928
5935
|
protected ChartTypeEnum: typeof ChartTypeEnum;
|
|
5929
5936
|
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">;
|
|
5930
5937
|
headerClass: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
5931
|
-
titleClass: _angular_core.Signal<"text-
|
|
5932
|
-
descriptionClass: _angular_core.Signal<"text-slate-
|
|
5938
|
+
titleClass: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
5939
|
+
descriptionClass: _angular_core.Signal<"text-slate-400" | "text-slate-600">;
|
|
5933
5940
|
iconClass: _angular_core.Signal<"text-slate-400 group-hover:text-blue-500" | "text-slate-500 group-hover:text-blue-400">;
|
|
5934
|
-
chartIconClass: _angular_core.Signal<"bg-blue-
|
|
5941
|
+
chartIconClass: _angular_core.Signal<"bg-blue-500/20 text-blue-400" | "bg-blue-100 text-blue-600">;
|
|
5935
5942
|
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">;
|
|
5936
5943
|
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">;
|
|
5937
5944
|
isCollapsible: _angular_core.Signal<boolean>;
|
|
@@ -6269,11 +6276,11 @@ declare class FocusAreaDetailCardComponent {
|
|
|
6269
6276
|
protected metaLabelClasses: _angular_core.Signal<"text-xs font-medium text-slate-400 uppercase tracking-wide" | "text-xs font-medium text-slate-600 uppercase tracking-wide">;
|
|
6270
6277
|
protected toolChipClasses: _angular_core.Signal<"px-2.5 py-1 rounded-md bg-emerald-500/10 text-emerald-300 text-xs border border-emerald-500/30" | "px-2.5 py-1 rounded-md bg-emerald-50 text-emerald-700 text-xs border border-emerald-200">;
|
|
6271
6278
|
protected expandedSectionClasses: _angular_core.Signal<"p-4 rounded-lg bg-slate-700/30 border border-slate-600/30" | "p-4 rounded-lg bg-slate-50 border border-slate-200">;
|
|
6272
|
-
protected expandedIconClasses: _angular_core.Signal<"text-blue-
|
|
6279
|
+
protected expandedIconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
6273
6280
|
protected expandedTitleClasses: _angular_core.Signal<"text-sm font-semibold text-white" | "text-sm font-semibold text-slate-900">;
|
|
6274
6281
|
protected insightItemClasses: _angular_core.Signal<"text-sm text-slate-300 leading-relaxed flex" | "text-sm text-slate-600 leading-relaxed flex">;
|
|
6275
6282
|
protected expandButtonClasses: _angular_core.Signal<"text-sm font-medium text-blue-400" | "text-sm font-medium text-blue-600">;
|
|
6276
|
-
protected chevronClasses: _angular_core.Signal<"text-blue-
|
|
6283
|
+
protected chevronClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
6277
6284
|
protected toggleExpanded(): void;
|
|
6278
6285
|
protected toggleCompetitiveGap(): void;
|
|
6279
6286
|
onExpandItem(event: Event): void;
|
|
@@ -6349,11 +6356,11 @@ declare class CompetitorAnalysisCardComponent {
|
|
|
6349
6356
|
protected linkClasses: _angular_core.Signal<"text-sm text-blue-400 hover:text-blue-300 underline transition-colors" | "text-sm text-blue-600 hover:text-blue-700 underline transition-colors">;
|
|
6350
6357
|
protected listItemClasses: _angular_core.Signal<"text-sm text-slate-200 leading-relaxed flex items-start" | "text-sm text-slate-600 leading-relaxed flex items-start">;
|
|
6351
6358
|
protected expandedSectionClasses: _angular_core.Signal<"p-4 rounded-lg bg-slate-700/30 border border-slate-600/30" | "p-4 rounded-lg bg-slate-50 border border-slate-200">;
|
|
6352
|
-
protected expandedIconClasses: _angular_core.Signal<"text-blue-
|
|
6359
|
+
protected expandedIconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
6353
6360
|
protected expandedTitleClasses: _angular_core.Signal<"text-sm font-semibold text-white" | "text-sm font-semibold text-slate-900">;
|
|
6354
6361
|
protected expandedTextClasses: _angular_core.Signal<"text-sm text-slate-300 leading-relaxed" | "text-sm text-slate-600 leading-relaxed">;
|
|
6355
6362
|
protected expandButtonClasses: _angular_core.Signal<"text-sm font-medium text-blue-400" | "text-sm font-medium text-blue-600">;
|
|
6356
|
-
protected chevronClasses: _angular_core.Signal<"text-blue-
|
|
6363
|
+
protected chevronClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
6357
6364
|
protected toggleExpanded(): void;
|
|
6358
6365
|
protected navigateToItem(item: ProfileItemInterface): void;
|
|
6359
6366
|
onExpandItem(event: Event): void;
|
|
@@ -6373,7 +6380,7 @@ declare class OpportunityHighlightBannerComponent {
|
|
|
6373
6380
|
protected titleClasses: _angular_core.Signal<"text-amber-300" | "text-amber-900">;
|
|
6374
6381
|
protected badgeClasses: _angular_core.Signal<"bg-amber-500/30 text-amber-300" | "bg-amber-200 text-amber-800">;
|
|
6375
6382
|
protected messageClasses: _angular_core.Signal<"text-amber-700" | "text-amber-400/90">;
|
|
6376
|
-
protected chevronClasses: _angular_core.Signal<"text-amber-
|
|
6383
|
+
protected chevronClasses: _angular_core.Signal<"text-amber-400" | "text-amber-600">;
|
|
6377
6384
|
handleClick(event: Event): void;
|
|
6378
6385
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OpportunityHighlightBannerComponent, never>;
|
|
6379
6386
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OpportunityHighlightBannerComponent, "symphiq-opportunity-highlight-banner", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "message": { "alias": "message"; "required": false; "isSignal": true; }; "isDark": { "alias": "isDark"; "required": false; "isSignal": true; }; "isExpanded": { "alias": "isExpanded"; "required": false; "isSignal": true; }; }, { "bannerClick": "bannerClick"; }, never, never, true, never>;
|