@eric-emg/symphiq-components 1.2.490 → 1.2.492
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 +154 -147
- package/fesm2022/symphiq-components.mjs.map +1 -1
- package/index.d.ts +26 -26
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1060,7 +1060,7 @@ declare class ModalComponent {
|
|
|
1060
1060
|
private animatedTrendValues;
|
|
1061
1061
|
private animationFrames;
|
|
1062
1062
|
isOpen: _angular_core.Signal<boolean>;
|
|
1063
|
-
modalType: _angular_core.Signal<"
|
|
1063
|
+
modalType: _angular_core.Signal<"insight" | "metric" | "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>;
|
|
1064
1064
|
charts: _angular_core.Signal<AiChartInterface[]>;
|
|
1065
1065
|
modalKey: _angular_core.Signal<number>;
|
|
1066
1066
|
insightData: _angular_core.Signal<InsightBlockInterface | null>;
|
|
@@ -1079,7 +1079,7 @@ declare class ModalComponent {
|
|
|
1079
1079
|
description: string;
|
|
1080
1080
|
icon: string;
|
|
1081
1081
|
} | null>;
|
|
1082
|
-
metricsListData: _angular_core.Signal<PerformanceMetricInterface |
|
|
1082
|
+
metricsListData: _angular_core.Signal<PerformanceMetricInterface | AiChartInterface | InsightBlockInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (PerformanceMetricInterface | InsightBlockInterface)[] | null>;
|
|
1083
1083
|
metricsListMetrics: _angular_core.Signal<PerformanceMetricInterface[]>;
|
|
1084
1084
|
metricsListInsightContext: _angular_core.Signal<{
|
|
1085
1085
|
title: string;
|
|
@@ -1087,7 +1087,7 @@ declare class ModalComponent {
|
|
|
1087
1087
|
businessContext: string;
|
|
1088
1088
|
priority: number;
|
|
1089
1089
|
} | null>;
|
|
1090
|
-
chartsListData: _angular_core.Signal<PerformanceMetricInterface |
|
|
1090
|
+
chartsListData: _angular_core.Signal<PerformanceMetricInterface | AiChartInterface | InsightBlockInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (PerformanceMetricInterface | InsightBlockInterface)[] | null>;
|
|
1091
1091
|
chartsListCharts: _angular_core.Signal<AiChartInterface[]>;
|
|
1092
1092
|
chartsListInsightContext: _angular_core.Signal<{
|
|
1093
1093
|
title: string;
|
|
@@ -1095,7 +1095,7 @@ declare class ModalComponent {
|
|
|
1095
1095
|
businessContext: string;
|
|
1096
1096
|
priority: number;
|
|
1097
1097
|
} | null>;
|
|
1098
|
-
recommendationsListData: _angular_core.Signal<PerformanceMetricInterface |
|
|
1098
|
+
recommendationsListData: _angular_core.Signal<PerformanceMetricInterface | AiChartInterface | InsightBlockInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (PerformanceMetricInterface | InsightBlockInterface)[] | null>;
|
|
1099
1099
|
recommendationsListRecommendations: _angular_core.Signal<string[]>;
|
|
1100
1100
|
recommendationsListInsightContext: _angular_core.Signal<{
|
|
1101
1101
|
title: string;
|
|
@@ -1103,7 +1103,7 @@ declare class ModalComponent {
|
|
|
1103
1103
|
businessContext: string;
|
|
1104
1104
|
priority: number;
|
|
1105
1105
|
} | null>;
|
|
1106
|
-
competitiveAnalysisData: _angular_core.Signal<PerformanceMetricInterface |
|
|
1106
|
+
competitiveAnalysisData: _angular_core.Signal<PerformanceMetricInterface | AiChartInterface | InsightBlockInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (PerformanceMetricInterface | InsightBlockInterface)[] | null>;
|
|
1107
1107
|
competitiveAnalysisContext: _angular_core.Signal<{
|
|
1108
1108
|
title: string;
|
|
1109
1109
|
description: string;
|
|
@@ -1619,7 +1619,7 @@ declare class MetricCardComponent {
|
|
|
1619
1619
|
glowClass: _angular_core.Signal<"" | "shadow-emerald-500/50 shadow-lg animate-pulse-glow">;
|
|
1620
1620
|
deltaValue: _angular_core.Signal<number>;
|
|
1621
1621
|
deltaPercent: _angular_core.Signal<number>;
|
|
1622
|
-
deltaClass: _angular_core.Signal<"text-
|
|
1622
|
+
deltaClass: _angular_core.Signal<"text-emerald-400" | "text-red-400" | "text-slate-400">;
|
|
1623
1623
|
openInsightModal(insight: InsightBlockInterface): void;
|
|
1624
1624
|
openInsightsModal(): void;
|
|
1625
1625
|
openChartModal(chart: AiChartInterface): void;
|
|
@@ -1652,7 +1652,7 @@ declare class MetricCardComponent {
|
|
|
1652
1652
|
competitiveScoreBadgeLightClass: _angular_core.Signal<string>;
|
|
1653
1653
|
competitiveScoreBadgeDarkClass: _angular_core.Signal<string>;
|
|
1654
1654
|
competitiveScoreBadgeClass: _angular_core.Signal<string>;
|
|
1655
|
-
competitiveScoreTextClass: _angular_core.Signal<"" | "text-blue-
|
|
1655
|
+
competitiveScoreTextClass: _angular_core.Signal<"" | "text-blue-700" | "text-blue-400" | "text-emerald-600" | "text-orange-600">;
|
|
1656
1656
|
competitiveComparisonDefaultClass: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
1657
1657
|
competitiveComparisonClass: _angular_core.Signal<"text-slate-700" | "text-slate-300" | "text-emerald-600 font-semibold" | "text-orange-600 font-semibold">;
|
|
1658
1658
|
getCompetitiveScoreIcon(): string;
|
|
@@ -2220,7 +2220,7 @@ declare class SymphiqFunnelAnalysisPreviewComponent {
|
|
|
2220
2220
|
competitiveTooltip: _angular_core.Signal<{
|
|
2221
2221
|
industry: string;
|
|
2222
2222
|
metricBenchmark: string;
|
|
2223
|
-
competitiveScore: "LEADING" | "
|
|
2223
|
+
competitiveScore: "LEADING" | "COMPETITIVE" | "LAGGING";
|
|
2224
2224
|
description: string;
|
|
2225
2225
|
keyOpportunities: string;
|
|
2226
2226
|
}>;
|
|
@@ -4179,13 +4179,13 @@ declare class MetricExecutiveSummaryComponent {
|
|
|
4179
4179
|
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">;
|
|
4180
4180
|
protected titleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
4181
4181
|
protected textClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4182
|
-
protected iconClasses: _angular_core.Signal<"text-blue-
|
|
4182
|
+
protected iconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
4183
4183
|
protected healthBadgeClasses: _angular_core.Signal<string>;
|
|
4184
4184
|
protected pacingBadgeClasses: _angular_core.Signal<string>;
|
|
4185
4185
|
protected metricCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4186
4186
|
protected metricLabelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4187
4187
|
protected metricValueClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
4188
|
-
protected yoyChangeClasses: _angular_core.Signal<"text-
|
|
4188
|
+
protected yoyChangeClasses: _angular_core.Signal<"text-emerald-400" | "text-red-400" | "text-slate-600" | "text-slate-400" | "text-emerald-600" | "text-red-600">;
|
|
4189
4189
|
protected getYoyIcon(): string;
|
|
4190
4190
|
protected getPacingValueClasses(): string;
|
|
4191
4191
|
protected getHealthValueClasses(): string;
|
|
@@ -4198,7 +4198,7 @@ declare class MetricExecutiveSummaryComponent {
|
|
|
4198
4198
|
protected priorityTitleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
4199
4199
|
protected priorityTextClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4200
4200
|
protected impactBoxClasses: _angular_core.Signal<"bg-slate-800/30 border border-slate-700/30" | "bg-slate-50/50 border border-slate-200">;
|
|
4201
|
-
protected impactLabelClasses: _angular_core.Signal<"text-blue-
|
|
4201
|
+
protected impactLabelClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
4202
4202
|
protected impactTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4203
4203
|
protected quickWinCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4204
4204
|
protected numberBadgeClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-300" | "bg-blue-100 text-blue-800">;
|
|
@@ -4679,19 +4679,19 @@ declare class SearchModalComponent {
|
|
|
4679
4679
|
containerClass: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800 border border-slate-700">;
|
|
4680
4680
|
inputClass: _angular_core.Signal<"bg-white text-slate-900 placeholder-slate-400" | "bg-slate-800 text-white placeholder-slate-500">;
|
|
4681
4681
|
iconClass: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
4682
|
-
clearButtonClass: _angular_core.Signal<"bg-slate-
|
|
4682
|
+
clearButtonClass: _angular_core.Signal<"bg-slate-100 text-slate-600 hover:bg-slate-200" | "bg-slate-700 text-slate-300 hover:bg-slate-600">;
|
|
4683
4683
|
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">;
|
|
4684
4684
|
resultsContainerClass: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
4685
4685
|
resultTitleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4686
4686
|
resultDescClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4687
4687
|
breadcrumbClass: _angular_core.Signal<string>;
|
|
4688
|
-
typeBadgeClass: _angular_core.Signal<"bg-slate-
|
|
4688
|
+
typeBadgeClass: _angular_core.Signal<"bg-slate-100 text-slate-600" | "bg-slate-700 text-slate-300">;
|
|
4689
4689
|
arrowClass: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
4690
4690
|
emptyStateClass: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
4691
|
-
emptyIconClass: _angular_core.Signal<"text-slate-
|
|
4691
|
+
emptyIconClass: _angular_core.Signal<"text-slate-300" | "text-slate-600">;
|
|
4692
4692
|
emptyTitleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4693
4693
|
emptyDescClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4694
|
-
shortcutsClass: _angular_core.Signal<"bg-slate-50 border-slate-
|
|
4694
|
+
shortcutsClass: _angular_core.Signal<"bg-slate-900/50 border-slate-700" | "bg-slate-50 border-slate-200">;
|
|
4695
4695
|
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">;
|
|
4696
4696
|
shortcutTextClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4697
4697
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchModalComponent, never>;
|
|
@@ -4734,7 +4734,7 @@ declare class GradeBadgeComponent {
|
|
|
4734
4734
|
gradeRationale: _angular_core.InputSignal<string>;
|
|
4735
4735
|
label: _angular_core.InputSignal<string>;
|
|
4736
4736
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
4737
|
-
tooltipPosition: _angular_core.InputSignal<"top" | "
|
|
4737
|
+
tooltipPosition: _angular_core.InputSignal<"top" | "bottom" | "left" | "right">;
|
|
4738
4738
|
isLightMode: _angular_core.Signal<boolean>;
|
|
4739
4739
|
formattedGrade: _angular_core.Signal<string>;
|
|
4740
4740
|
shouldPulse: _angular_core.Signal<boolean>;
|
|
@@ -4834,7 +4834,7 @@ declare class ConfidenceLevelCardComponent implements OnInit, OnDestroy {
|
|
|
4834
4834
|
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">;
|
|
4835
4835
|
protected descriptionClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4836
4836
|
protected progressLabelClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4837
|
-
protected progressValueClasses: _angular_core.Signal<"text-
|
|
4837
|
+
protected progressValueClasses: _angular_core.Signal<"text-emerald-400" | "text-red-400" | "text-blue-400" | "text-emerald-600" | "text-red-600" | "text-orange-600" | "text-orange-400" | "text-blue-600">;
|
|
4838
4838
|
protected progressTrackClasses: _angular_core.Signal<"bg-slate-700/50 shadow-inner" | "bg-slate-200 shadow-inner">;
|
|
4839
4839
|
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">;
|
|
4840
4840
|
protected shimmerClasses: _angular_core.Signal<string>;
|
|
@@ -4859,7 +4859,7 @@ declare class RelatedContentSidebarComponent {
|
|
|
4859
4859
|
protected headerClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4860
4860
|
protected buttonClasses: _angular_core.Signal<"bg-slate-50 border-slate-200 hover:border-blue-500/50 hover:bg-slate-100" | "bg-slate-800/50 border-slate-700 hover:border-blue-500/50 hover:bg-slate-700/50">;
|
|
4861
4861
|
protected iconBgClasses: _angular_core.Signal<"bg-blue-100 text-blue-600" | "bg-blue-900/30 text-blue-400">;
|
|
4862
|
-
protected iconClasses: _angular_core.Signal<"text-blue-
|
|
4862
|
+
protected iconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
4863
4863
|
protected countClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4864
4864
|
protected labelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4865
4865
|
protected chevronClasses: _angular_core.Signal<"text-slate-500 group-hover:text-blue-400" | "text-slate-400 group-hover:text-blue-600">;
|
|
@@ -4922,8 +4922,8 @@ declare class IndeterminateSpinnerComponent {
|
|
|
4922
4922
|
svgSize: _angular_core.Signal<40 | 80 | 60>;
|
|
4923
4923
|
circleRadius: _angular_core.Signal<16 | 36 | 26>;
|
|
4924
4924
|
svgCircleRadius: _angular_core.Signal<number>;
|
|
4925
|
-
strokeWidth: _angular_core.Signal<
|
|
4926
|
-
dotSize: _angular_core.Signal<
|
|
4925
|
+
strokeWidth: _angular_core.Signal<2 | 3 | 2.5>;
|
|
4926
|
+
dotSize: _angular_core.Signal<10 | 5 | 7>;
|
|
4927
4927
|
containerClasses: _angular_core.Signal<{
|
|
4928
4928
|
'w-10 h-10': boolean;
|
|
4929
4929
|
'w-[60px] h-[60px]': boolean;
|
|
@@ -5169,7 +5169,7 @@ declare class TooltipContainerComponent implements AfterViewInit, OnDestroy {
|
|
|
5169
5169
|
isVisible: _angular_core.Signal<boolean>;
|
|
5170
5170
|
tooltipType: _angular_core.Signal<string | null>;
|
|
5171
5171
|
tooltipContent: _angular_core.Signal<string | Record<string, unknown> | undefined>;
|
|
5172
|
-
tooltipPosition: _angular_core.Signal<"
|
|
5172
|
+
tooltipPosition: _angular_core.Signal<"auto" | "top" | "bottom" | "left" | "right">;
|
|
5173
5173
|
targetRect: _angular_core.Signal<DOMRect | null>;
|
|
5174
5174
|
mousePosition: _angular_core.Signal<{
|
|
5175
5175
|
x: number;
|
|
@@ -5194,7 +5194,7 @@ declare class TooltipContainerComponent implements AfterViewInit, OnDestroy {
|
|
|
5194
5194
|
shouldCenter: _angular_core.Signal<boolean>;
|
|
5195
5195
|
containerClass: _angular_core.Signal<"" | "-translate-x-1/2">;
|
|
5196
5196
|
contentClass: _angular_core.Signal<"bg-white/95 border-slate-300 text-slate-900" | "bg-slate-800/95 border-slate-600 text-white">;
|
|
5197
|
-
textClass: _angular_core.Signal<"text-slate-
|
|
5197
|
+
textClass: _angular_core.Signal<"text-slate-200" | "text-slate-700">;
|
|
5198
5198
|
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">;
|
|
5199
5199
|
transformStyle: _angular_core.Signal<"none" | "translateX(-192px)">;
|
|
5200
5200
|
constructor();
|
|
@@ -5324,11 +5324,11 @@ declare class FocusAreaDetailCardComponent {
|
|
|
5324
5324
|
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">;
|
|
5325
5325
|
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">;
|
|
5326
5326
|
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">;
|
|
5327
|
-
protected expandedIconClasses: _angular_core.Signal<"text-blue-
|
|
5327
|
+
protected expandedIconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
5328
5328
|
protected expandedTitleClasses: _angular_core.Signal<"text-sm font-semibold text-white" | "text-sm font-semibold text-slate-900">;
|
|
5329
5329
|
protected insightItemClasses: _angular_core.Signal<"text-sm text-slate-300 leading-relaxed flex" | "text-sm text-slate-600 leading-relaxed flex">;
|
|
5330
5330
|
protected expandButtonClasses: _angular_core.Signal<"text-sm font-medium text-blue-400" | "text-sm font-medium text-blue-600">;
|
|
5331
|
-
protected chevronClasses: _angular_core.Signal<"text-blue-
|
|
5331
|
+
protected chevronClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
5332
5332
|
protected toggleExpanded(): void;
|
|
5333
5333
|
protected toggleCompetitiveGap(): void;
|
|
5334
5334
|
onExpandItem(event: CustomEvent): void;
|
|
@@ -5404,11 +5404,11 @@ declare class CompetitorAnalysisCardComponent {
|
|
|
5404
5404
|
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">;
|
|
5405
5405
|
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">;
|
|
5406
5406
|
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">;
|
|
5407
|
-
protected expandedIconClasses: _angular_core.Signal<"text-blue-
|
|
5407
|
+
protected expandedIconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
5408
5408
|
protected expandedTitleClasses: _angular_core.Signal<"text-sm font-semibold text-white" | "text-sm font-semibold text-slate-900">;
|
|
5409
5409
|
protected expandedTextClasses: _angular_core.Signal<"text-sm text-slate-300 leading-relaxed" | "text-sm text-slate-600 leading-relaxed">;
|
|
5410
5410
|
protected expandButtonClasses: _angular_core.Signal<"text-sm font-medium text-blue-400" | "text-sm font-medium text-blue-600">;
|
|
5411
|
-
protected chevronClasses: _angular_core.Signal<"text-blue-
|
|
5411
|
+
protected chevronClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
5412
5412
|
protected toggleExpanded(): void;
|
|
5413
5413
|
protected navigateToItem(item: ProfileItemInterface): void;
|
|
5414
5414
|
onExpandItem(event: CustomEvent): void;
|