@eric-emg/symphiq-components 1.2.251 → 1.2.253
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 +1030 -877
- package/fesm2022/symphiq-components.mjs.map +1 -1
- package/index.d.ts +44 -37
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/styles.css +18 -0
package/index.d.ts
CHANGED
|
@@ -1057,7 +1057,7 @@ declare class ModalComponent {
|
|
|
1057
1057
|
private animatedTrendValues;
|
|
1058
1058
|
private animationFrames;
|
|
1059
1059
|
isOpen: _angular_core.Signal<boolean>;
|
|
1060
|
-
modalType: _angular_core.Signal<"
|
|
1060
|
+
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>;
|
|
1061
1061
|
charts: _angular_core.Signal<AiChartInterface[]>;
|
|
1062
1062
|
modalKey: _angular_core.Signal<number>;
|
|
1063
1063
|
insightData: _angular_core.Signal<InsightBlockInterface | null>;
|
|
@@ -1076,7 +1076,7 @@ declare class ModalComponent {
|
|
|
1076
1076
|
description: string;
|
|
1077
1077
|
icon: string;
|
|
1078
1078
|
} | null>;
|
|
1079
|
-
metricsListData: _angular_core.Signal<
|
|
1079
|
+
metricsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1080
1080
|
metricsListMetrics: _angular_core.Signal<PerformanceMetricInterface[]>;
|
|
1081
1081
|
metricsListInsightContext: _angular_core.Signal<{
|
|
1082
1082
|
title: string;
|
|
@@ -1084,7 +1084,7 @@ declare class ModalComponent {
|
|
|
1084
1084
|
businessContext: string;
|
|
1085
1085
|
priority: number;
|
|
1086
1086
|
} | null>;
|
|
1087
|
-
chartsListData: _angular_core.Signal<
|
|
1087
|
+
chartsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1088
1088
|
chartsListCharts: _angular_core.Signal<AiChartInterface[]>;
|
|
1089
1089
|
chartsListInsightContext: _angular_core.Signal<{
|
|
1090
1090
|
title: string;
|
|
@@ -1092,7 +1092,7 @@ declare class ModalComponent {
|
|
|
1092
1092
|
businessContext: string;
|
|
1093
1093
|
priority: number;
|
|
1094
1094
|
} | null>;
|
|
1095
|
-
recommendationsListData: _angular_core.Signal<
|
|
1095
|
+
recommendationsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1096
1096
|
recommendationsListRecommendations: _angular_core.Signal<string[]>;
|
|
1097
1097
|
recommendationsListInsightContext: _angular_core.Signal<{
|
|
1098
1098
|
title: string;
|
|
@@ -1100,7 +1100,7 @@ declare class ModalComponent {
|
|
|
1100
1100
|
businessContext: string;
|
|
1101
1101
|
priority: number;
|
|
1102
1102
|
} | null>;
|
|
1103
|
-
competitiveAnalysisData: _angular_core.Signal<
|
|
1103
|
+
competitiveAnalysisData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1104
1104
|
competitiveAnalysisContext: _angular_core.Signal<{
|
|
1105
1105
|
title: string;
|
|
1106
1106
|
description: string;
|
|
@@ -1616,8 +1616,8 @@ declare class MetricCardComponent {
|
|
|
1616
1616
|
competitiveScoreBadgeDarkClass: _angular_core.Signal<string>;
|
|
1617
1617
|
competitiveScoreBadgeClass: _angular_core.Signal<string>;
|
|
1618
1618
|
competitiveScoreTextClass: _angular_core.Signal<"" | "text-emerald-600" | "text-blue-700" | "text-blue-400" | "text-orange-600">;
|
|
1619
|
-
competitiveComparisonDefaultClass: _angular_core.Signal<"text-slate-
|
|
1620
|
-
competitiveComparisonClass: _angular_core.Signal<"text-slate-
|
|
1619
|
+
competitiveComparisonDefaultClass: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
1620
|
+
competitiveComparisonClass: _angular_core.Signal<"text-slate-700" | "text-slate-300" | "text-emerald-600 font-semibold" | "text-orange-600 font-semibold">;
|
|
1621
1621
|
getCompetitiveScoreIcon(): string;
|
|
1622
1622
|
getCompetitiveScoreLabel(): string;
|
|
1623
1623
|
getCompetitiveScoreLabelFull(): string;
|
|
@@ -2141,7 +2141,7 @@ declare class SymphiqFunnelAnalysisPreviewComponent {
|
|
|
2141
2141
|
topMetrics: _angular_core.Signal<PerformanceMetricInterface[]>;
|
|
2142
2142
|
formattedRevenueValue: _angular_core.Signal<string>;
|
|
2143
2143
|
formattedRevenueTrend: _angular_core.Signal<string>;
|
|
2144
|
-
revenueStatusIcon: _angular_core.Signal<"
|
|
2144
|
+
revenueStatusIcon: _angular_core.Signal<"↑" | "•" | "→" | "⚠">;
|
|
2145
2145
|
hasCompetitiveData: _angular_core.Signal<boolean>;
|
|
2146
2146
|
hasOverallCompetitiveBenchmark: _angular_core.Signal<boolean>;
|
|
2147
2147
|
overallCompetitiveDescription: _angular_core.Signal<string>;
|
|
@@ -2675,17 +2675,17 @@ declare class TargetChangeBadgeComponent implements OnDestroy {
|
|
|
2675
2675
|
private setupIntersectionObserver;
|
|
2676
2676
|
private animateValue;
|
|
2677
2677
|
protected isIncreaseBad: _angular_core.Signal<boolean | undefined>;
|
|
2678
|
-
protected iconSymbol: _angular_core.Signal<"
|
|
2678
|
+
protected iconSymbol: _angular_core.Signal<"→" | "↗" | "↘">;
|
|
2679
2679
|
protected animatedPercentageText: _angular_core.Signal<string>;
|
|
2680
2680
|
protected descriptionText: _angular_core.Signal<string>;
|
|
2681
2681
|
protected containerClasses: _angular_core.Signal<"bg-purple-500/25 border-purple-400/40" | "bg-purple-50 border-purple-200">;
|
|
2682
2682
|
protected isIncrease: _angular_core.Signal<boolean>;
|
|
2683
|
-
protected targetRotation: _angular_core.Signal<
|
|
2683
|
+
protected targetRotation: _angular_core.Signal<1 | 0 | -1>;
|
|
2684
2684
|
protected rotationStyle: _angular_core.Signal<string>;
|
|
2685
2685
|
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">;
|
|
2686
2686
|
protected overlayClasses: _angular_core.Signal<"bg-purple-600 text-purple-50" | "bg-purple-500 text-white">;
|
|
2687
2687
|
protected overlaySizeClasses: _angular_core.Signal<"px-2 py-1.5 rounded-lg text-sm font-extrabold tracking-wide shadow-md transition-all duration-200 -my-1 -mr-1 z-10 inline-flex items-center gap-0.5 tabular-nums" | "px-2.5 py-2 rounded-lg font-extrabold text-base tracking-wide shadow-md transition-all duration-200 -my-1.5 -mr-1 z-10 inline-flex items-center gap-1 tabular-nums">;
|
|
2688
|
-
protected iconSizeClass: _angular_core.Signal<"text-
|
|
2688
|
+
protected iconSizeClass: _angular_core.Signal<"text-base" | "text-sm">;
|
|
2689
2689
|
protected descriptionSizeClasses: _angular_core.Signal<"px-2.5 py-0.5 text-xs font-semibold inline-block" | "px-3 py-0.5 font-semibold text-xs inline-block">;
|
|
2690
2690
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TargetChangeBadgeComponent, never>;
|
|
2691
2691
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TargetChangeBadgeComponent, "symphiq-target-change-badge", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "percentageChange": { "alias": "percentageChange"; "required": false; "isSignal": true; }; "metric": { "alias": "metric"; "required": false; "isSignal": true; }; "priorYear": { "alias": "priorYear"; "required": false; "isSignal": true; }; "isCompact": { "alias": "isCompact"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -2719,7 +2719,7 @@ declare class PacingStatusBadgeComponent implements OnDestroy {
|
|
|
2719
2719
|
private animateValue;
|
|
2720
2720
|
protected displayInfo: _angular_core.Signal<PacingDisplayInfo>;
|
|
2721
2721
|
protected containerClasses: _angular_core.Signal<string>;
|
|
2722
|
-
protected targetRotation: _angular_core.Signal<
|
|
2722
|
+
protected targetRotation: _angular_core.Signal<1 | 0 | -1>;
|
|
2723
2723
|
protected rotationStyle: _angular_core.Signal<string>;
|
|
2724
2724
|
protected fullBadgeRotationStyle: _angular_core.Signal<string>;
|
|
2725
2725
|
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">;
|
|
@@ -2727,14 +2727,14 @@ declare class PacingStatusBadgeComponent implements OnDestroy {
|
|
|
2727
2727
|
protected sizeClasses: _angular_core.Signal<"inline-flex items-center gap-1.5 font-semibold transition-all px-2.5 py-0.5 text-xs" | "inline-flex items-center gap-1.5 font-semibold transition-all px-3 py-0.5 text-xs">;
|
|
2728
2728
|
protected fullBadgeSizeClasses: _angular_core.Signal<"inline-flex items-center gap-1.5 rounded-xl border-2 font-bold tracking-wide shadow-md transition-all hover:rotate-0 px-2.5 py-1 text-xs" | "inline-flex items-center gap-1.5 rounded-xl border-2 font-bold tracking-wide shadow-md transition-all hover:rotate-0 px-3 py-1.5 text-xs">;
|
|
2729
2729
|
protected iconClasses: _angular_core.Signal<string>;
|
|
2730
|
-
protected iconSizeClasses: _angular_core.Signal<"text-
|
|
2731
|
-
protected iconSymbol: _angular_core.Signal<"
|
|
2730
|
+
protected iconSizeClasses: _angular_core.Signal<"text-base" | "text-sm">;
|
|
2731
|
+
protected iconSymbol: _angular_core.Signal<"→" | "↗" | "↘">;
|
|
2732
2732
|
protected displayText: _angular_core.Signal<string>;
|
|
2733
2733
|
protected hasPercentage: _angular_core.Signal<boolean>;
|
|
2734
2734
|
protected animatedPercentage: _angular_core.Signal<string>;
|
|
2735
2735
|
protected extractPercentage: _angular_core.Signal<string>;
|
|
2736
2736
|
protected displayTextWithoutPercentage: _angular_core.Signal<string>;
|
|
2737
|
-
protected overlayBadgeClasses: _angular_core.Signal<"bg-
|
|
2737
|
+
protected overlayBadgeClasses: _angular_core.Signal<"bg-red-500 text-white" | "bg-amber-500 text-white" | "bg-emerald-500 text-white" | "bg-emerald-600 text-emerald-50" | "bg-amber-600 text-amber-50" | "bg-red-600 text-red-50">;
|
|
2738
2738
|
protected overlaySizeClasses: _angular_core.Signal<"px-2 py-1.5 rounded-lg text-sm font-extrabold tracking-wide shadow-md transition-all duration-200 -my-1 -mr-1 z-10 inline-flex items-center gap-0.5 tabular-nums" | "px-2.5 py-2 rounded-lg text-sm font-extrabold tracking-wide shadow-md transition-all duration-200 -my-1.5 -mr-1 z-10 inline-flex items-center gap-1 tabular-nums">;
|
|
2739
2739
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PacingStatusBadgeComponent, never>;
|
|
2740
2740
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PacingStatusBadgeComponent, "symphiq-pacing-status-badge", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "pacingPercentage": { "alias": "pacingPercentage"; "required": false; "isSignal": true; }; "status": { "alias": "status"; "required": false; "isSignal": true; }; "showAsFullText": { "alias": "showAsFullText"; "required": false; "isSignal": true; }; "isCompact": { "alias": "isCompact"; "required": false; "isSignal": true; }; "showEmphasizedPercentage": { "alias": "showEmphasizedPercentage"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -2753,10 +2753,13 @@ declare class MetricReportModalComponent {
|
|
|
2753
2753
|
metricData: _angular_core.InputSignal<MetricTargetCalculation | undefined>;
|
|
2754
2754
|
contributingMetrics: _angular_core.InputSignal<MetricTargetCalculation[]>;
|
|
2755
2755
|
pacingMetrics: _angular_core.InputSignal<PacingResponseInterface | undefined>;
|
|
2756
|
+
trendChartData: _angular_core.InputSignal<AiChartInterface | null>;
|
|
2756
2757
|
isOpen: _angular_core.InputSignal<boolean>;
|
|
2757
2758
|
closed: _angular_core.OutputEmitterRef<void>;
|
|
2758
2759
|
protected showDefinition: _angular_core.WritableSignal<boolean>;
|
|
2760
|
+
protected isExpandedChartOpen: _angular_core.WritableSignal<boolean>;
|
|
2759
2761
|
protected Math: Math;
|
|
2762
|
+
onEscapeKey(): void;
|
|
2760
2763
|
protected currentYear: _angular_core.Signal<number>;
|
|
2761
2764
|
protected priorYear: _angular_core.Signal<number>;
|
|
2762
2765
|
protected metricTitle: _angular_core.Signal<string>;
|
|
@@ -2796,6 +2799,8 @@ declare class MetricReportModalComponent {
|
|
|
2796
2799
|
};
|
|
2797
2800
|
protected toggleDefinition(): void;
|
|
2798
2801
|
protected close(): void;
|
|
2802
|
+
protected openExpandedChart(): void;
|
|
2803
|
+
protected closeExpandedChart(): void;
|
|
2799
2804
|
protected isLightMode(): boolean;
|
|
2800
2805
|
protected backdropClasses(): string;
|
|
2801
2806
|
protected modalContainerClasses(): string;
|
|
@@ -2819,10 +2824,11 @@ declare class MetricReportModalComponent {
|
|
|
2819
2824
|
protected tableRowClasses(): string;
|
|
2820
2825
|
protected infoIconClasses(): string;
|
|
2821
2826
|
protected headerInfoIconClasses(): string;
|
|
2827
|
+
protected expandIconClasses(): string;
|
|
2822
2828
|
protected footerClasses(): string;
|
|
2823
2829
|
protected closeFooterButtonClasses(): string;
|
|
2824
2830
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MetricReportModalComponent, never>;
|
|
2825
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MetricReportModalComponent, "symphiq-metric-report-modal", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "metricEnum": { "alias": "metricEnum"; "required": false; "isSignal": true; }; "metricData": { "alias": "metricData"; "required": false; "isSignal": true; }; "contributingMetrics": { "alias": "contributingMetrics"; "required": false; "isSignal": true; }; "pacingMetrics": { "alias": "pacingMetrics"; "required": false; "isSignal": true; }; "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; }, { "closed": "closed"; }, never, never, true, never>;
|
|
2831
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MetricReportModalComponent, "symphiq-metric-report-modal", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "metricEnum": { "alias": "metricEnum"; "required": false; "isSignal": true; }; "metricData": { "alias": "metricData"; "required": false; "isSignal": true; }; "contributingMetrics": { "alias": "contributingMetrics"; "required": false; "isSignal": true; }; "pacingMetrics": { "alias": "pacingMetrics"; "required": false; "isSignal": true; }; "trendChartData": { "alias": "trendChartData"; "required": false; "isSignal": true; }; "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; }, { "closed": "closed"; }, never, never, true, never>;
|
|
2826
2832
|
}
|
|
2827
2833
|
|
|
2828
2834
|
declare class SymphiqBusinessAnalysisDashboardComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
@@ -3525,11 +3531,11 @@ declare class MetricExecutiveSummaryComponent {
|
|
|
3525
3531
|
protected isDark: _angular_core.Signal<boolean>;
|
|
3526
3532
|
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">;
|
|
3527
3533
|
protected titleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
3528
|
-
protected textClasses: _angular_core.Signal<"text-slate-
|
|
3534
|
+
protected textClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
3529
3535
|
protected iconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
3530
3536
|
protected healthBadgeClasses: _angular_core.Signal<string>;
|
|
3531
3537
|
protected pacingBadgeClasses: _angular_core.Signal<string>;
|
|
3532
|
-
protected metricCardClasses: _angular_core.Signal<"bg-
|
|
3538
|
+
protected metricCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
3533
3539
|
protected metricLabelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
3534
3540
|
protected metricValueClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
3535
3541
|
protected yoyChangeClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400" | "text-emerald-600" | "text-emerald-400" | "text-red-600" | "text-red-400">;
|
|
@@ -3543,11 +3549,11 @@ declare class MetricExecutiveSummaryComponent {
|
|
|
3543
3549
|
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">;
|
|
3544
3550
|
protected priorityNumberClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-300" | "bg-blue-100 text-blue-800">;
|
|
3545
3551
|
protected priorityTitleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
3546
|
-
protected priorityTextClasses: _angular_core.Signal<"text-slate-
|
|
3552
|
+
protected priorityTextClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
3547
3553
|
protected impactBoxClasses: _angular_core.Signal<"bg-slate-800/30 border border-slate-700/30" | "bg-slate-50/50 border border-slate-200">;
|
|
3548
3554
|
protected impactLabelClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
3549
3555
|
protected impactTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
3550
|
-
protected quickWinCardClasses: _angular_core.Signal<"bg-
|
|
3556
|
+
protected quickWinCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
3551
3557
|
protected numberBadgeClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-300" | "bg-blue-100 text-blue-800">;
|
|
3552
3558
|
protected quickWinTextClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
3553
3559
|
protected metaTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
@@ -3595,7 +3601,7 @@ declare class CircularProgressComponent implements OnInit, OnDestroy {
|
|
|
3595
3601
|
backgroundColor: _angular_core.InputSignal<string>;
|
|
3596
3602
|
showPercentage: _angular_core.InputSignal<boolean>;
|
|
3597
3603
|
textClasses: _angular_core.InputSignal<string>;
|
|
3598
|
-
strokeLinecap: _angular_core.InputSignal<"
|
|
3604
|
+
strokeLinecap: _angular_core.InputSignal<"square" | "round" | "butt">;
|
|
3599
3605
|
animationDuration: _angular_core.InputSignal<number>;
|
|
3600
3606
|
animationDelay: _angular_core.InputSignal<number>;
|
|
3601
3607
|
private elementRef;
|
|
@@ -3716,7 +3722,7 @@ declare class SearchModalComponent {
|
|
|
3716
3722
|
emptyIconClass: _angular_core.Signal<"text-slate-600" | "text-slate-300">;
|
|
3717
3723
|
emptyTitleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
3718
3724
|
emptyDescClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
3719
|
-
shortcutsClass: _angular_core.Signal<"bg-slate-50 border-slate-
|
|
3725
|
+
shortcutsClass: _angular_core.Signal<"bg-slate-900/50 border-slate-700" | "bg-slate-50 border-slate-200">;
|
|
3720
3726
|
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">;
|
|
3721
3727
|
shortcutTextClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
3722
3728
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchModalComponent, never>;
|
|
@@ -3728,7 +3734,7 @@ declare class GradeBadgeComponent {
|
|
|
3728
3734
|
gradeRationale: _angular_core.InputSignal<string>;
|
|
3729
3735
|
label: _angular_core.InputSignal<string>;
|
|
3730
3736
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
3731
|
-
tooltipPosition: _angular_core.InputSignal<"
|
|
3737
|
+
tooltipPosition: _angular_core.InputSignal<"top" | "bottom" | "left" | "right">;
|
|
3732
3738
|
isLightMode: _angular_core.Signal<boolean>;
|
|
3733
3739
|
formattedGrade: _angular_core.Signal<string>;
|
|
3734
3740
|
shouldPulse: _angular_core.Signal<boolean>;
|
|
@@ -3815,12 +3821,12 @@ declare class ConfidenceLevelCardComponent implements OnInit, OnDestroy {
|
|
|
3815
3821
|
protected titleClasses: _angular_core.Signal<"text-white" | "bg-gradient-to-r from-slate-700 to-slate-900 bg-clip-text text-transparent">;
|
|
3816
3822
|
protected subtitleClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
3817
3823
|
protected gradeBadgeContainerClasses: _angular_core.Signal<string>;
|
|
3818
|
-
protected glowEffectClasses: _angular_core.Signal<"bg-
|
|
3824
|
+
protected glowEffectClasses: _angular_core.Signal<"bg-emerald-500" | "bg-blue-500" | "bg-orange-500" | "bg-red-500">;
|
|
3819
3825
|
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)]">;
|
|
3820
3826
|
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">;
|
|
3821
3827
|
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">;
|
|
3822
|
-
protected descriptionClasses: _angular_core.Signal<"text-slate-
|
|
3823
|
-
protected progressLabelClasses: _angular_core.Signal<"text-slate-
|
|
3828
|
+
protected descriptionClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
3829
|
+
protected progressLabelClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
3824
3830
|
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">;
|
|
3825
3831
|
protected progressTrackClasses: _angular_core.Signal<"bg-slate-700/50 shadow-inner" | "bg-slate-200 shadow-inner">;
|
|
3826
3832
|
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">;
|
|
@@ -3870,7 +3876,7 @@ declare class ContentGenerationProgressComponent {
|
|
|
3870
3876
|
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">;
|
|
3871
3877
|
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">;
|
|
3872
3878
|
protected subtitleClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
3873
|
-
protected progressMessageClasses: _angular_core.Signal<"text-slate-
|
|
3879
|
+
protected progressMessageClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
3874
3880
|
protected progressBarContainerClasses: _angular_core.Signal<string>;
|
|
3875
3881
|
protected progressBarBackgroundClasses: _angular_core.Signal<"bg-slate-200" | "bg-slate-700">;
|
|
3876
3882
|
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">;
|
|
@@ -3907,8 +3913,8 @@ declare class IndeterminateSpinnerComponent {
|
|
|
3907
3913
|
svgSize: _angular_core.Signal<40 | 80 | 60>;
|
|
3908
3914
|
circleRadius: _angular_core.Signal<16 | 36 | 26>;
|
|
3909
3915
|
svgCircleRadius: _angular_core.Signal<number>;
|
|
3910
|
-
strokeWidth: _angular_core.Signal<
|
|
3911
|
-
dotSize: _angular_core.Signal<
|
|
3916
|
+
strokeWidth: _angular_core.Signal<3 | 2 | 2.5>;
|
|
3917
|
+
dotSize: _angular_core.Signal<5 | 10 | 7>;
|
|
3912
3918
|
containerClasses: _angular_core.Signal<{
|
|
3913
3919
|
'w-10 h-10': boolean;
|
|
3914
3920
|
'w-16 h-16': boolean;
|
|
@@ -3962,9 +3968,10 @@ declare class LineChartComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
3962
3968
|
showAxisLabels: _angular_core.InputSignal<boolean>;
|
|
3963
3969
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
3964
3970
|
currencySymbol: _angular_core.InputSignal<string>;
|
|
3965
|
-
|
|
3966
|
-
|
|
3967
|
-
|
|
3971
|
+
height: _angular_core.InputSignal<string | undefined>;
|
|
3972
|
+
chartHeight: _angular_core.Signal<string>;
|
|
3973
|
+
cursorColor: _angular_core.Signal<9741240 | 16777215>;
|
|
3974
|
+
tooltipTextColor: _angular_core.Signal<0 | 16777215>;
|
|
3968
3975
|
chartHash: _angular_core.Signal<string>;
|
|
3969
3976
|
chartDiv: ElementRef;
|
|
3970
3977
|
private root?;
|
|
@@ -3999,7 +4006,7 @@ declare class LineChartComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
3999
4006
|
private extractMetricName;
|
|
4000
4007
|
private createChart;
|
|
4001
4008
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LineChartComponent, never>;
|
|
4002
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LineChartComponent, "symphiq-line-chart", never, { "chart": { "alias": "chart"; "required": false; "isSignal": true; }; "showAxisLabels": { "alias": "showAxisLabels"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "currencySymbol": { "alias": "currencySymbol"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4009
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LineChartComponent, "symphiq-line-chart", never, { "chart": { "alias": "chart"; "required": false; "isSignal": true; }; "showAxisLabels": { "alias": "showAxisLabels"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "currencySymbol": { "alias": "currencySymbol"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4003
4010
|
}
|
|
4004
4011
|
|
|
4005
4012
|
declare class BarChartComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
@@ -4008,7 +4015,7 @@ declare class BarChartComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
4008
4015
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
4009
4016
|
currencySymbol: _angular_core.InputSignal<string>;
|
|
4010
4017
|
chartHeight: _angular_core.Signal<"500px" | "175px">;
|
|
4011
|
-
cursorColor: _angular_core.Signal<
|
|
4018
|
+
cursorColor: _angular_core.Signal<9741240 | 16777215>;
|
|
4012
4019
|
tooltipTextColor: _angular_core.Signal<0 | 16777215>;
|
|
4013
4020
|
chartHash: _angular_core.Signal<string>;
|
|
4014
4021
|
chartDiv: ElementRef;
|
|
@@ -4082,7 +4089,7 @@ declare class AreaChartComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
4082
4089
|
currencySymbol: _angular_core.InputSignal<string>;
|
|
4083
4090
|
height: _angular_core.InputSignal<string | undefined>;
|
|
4084
4091
|
chartHeight: _angular_core.Signal<string>;
|
|
4085
|
-
cursorColor: _angular_core.Signal<
|
|
4092
|
+
cursorColor: _angular_core.Signal<9741240 | 16777215>;
|
|
4086
4093
|
chartHash: _angular_core.Signal<string>;
|
|
4087
4094
|
chartDiv: ElementRef;
|
|
4088
4095
|
private root?;
|
|
@@ -4122,7 +4129,7 @@ declare class TooltipContainerComponent {
|
|
|
4122
4129
|
isVisible: _angular_core.Signal<boolean>;
|
|
4123
4130
|
tooltipType: _angular_core.Signal<string | null>;
|
|
4124
4131
|
tooltipContent: _angular_core.Signal<string | Record<string, unknown> | undefined>;
|
|
4125
|
-
tooltipPosition: _angular_core.Signal<"
|
|
4132
|
+
tooltipPosition: _angular_core.Signal<"top" | "bottom" | "left" | "right" | "auto">;
|
|
4126
4133
|
targetRect: _angular_core.Signal<DOMRect | null>;
|
|
4127
4134
|
mousePosition: _angular_core.Signal<{
|
|
4128
4135
|
x: number;
|
|
@@ -4147,7 +4154,7 @@ declare class TooltipContainerComponent {
|
|
|
4147
4154
|
shouldCenter: _angular_core.Signal<boolean>;
|
|
4148
4155
|
containerClass: _angular_core.Signal<"" | "-translate-x-1/2">;
|
|
4149
4156
|
contentClass: _angular_core.Signal<"bg-white/95 border-slate-300 text-slate-900" | "bg-slate-800/95 border-slate-600 text-white">;
|
|
4150
|
-
textClass: _angular_core.Signal<"text-slate-
|
|
4157
|
+
textClass: _angular_core.Signal<"text-slate-700" | "text-slate-200">;
|
|
4151
4158
|
viewMoreButtonClass: _angular_core.Signal<"bg-blue-50 text-blue-700 border border-blue-200 hover:bg-blue-200 hover:border-blue-400 hover:text-blue-800 active:bg-blue-300" | "bg-blue-500/10 text-blue-400 border border-blue-500/20 hover:bg-blue-500/30 hover:border-blue-500/40 hover:text-blue-300 active:bg-blue-500/40">;
|
|
4152
4159
|
transformStyle: _angular_core.Signal<"none" | "translateX(-192px)">;
|
|
4153
4160
|
constructor();
|