@eric-emg/symphiq-components 1.3.49 → 1.3.51

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eric-emg/symphiq-components",
3
- "version": "1.3.49",
3
+ "version": "1.3.51",
4
4
  "description": "A comprehensive Angular library for component dashboards with performance visualization and metrics analysis",
5
5
  "author": "Your Organization",
6
6
  "license": "MIT",
package/styles.css CHANGED
@@ -124,6 +124,7 @@
124
124
  --color-violet-600: oklch(54.1% 0.281 293.009);
125
125
  --color-violet-700: oklch(49.1% 0.27 292.581);
126
126
  --color-violet-800: oklch(43.2% 0.232 292.759);
127
+ --color-violet-900: oklch(38% 0.189 293.745);
127
128
  --color-purple-50: oklch(97.7% 0.014 308.299);
128
129
  --color-purple-100: oklch(94.6% 0.033 307.174);
129
130
  --color-purple-200: oklch(90.2% 0.063 306.703);
@@ -466,9 +467,6 @@
466
467
  .top-4 {
467
468
  top: calc(var(--spacing) * 4);
468
469
  }
469
- .top-5 {
470
- top: calc(var(--spacing) * 5);
471
- }
472
470
  .top-\[var\(--header-height\)\] {
473
471
  top: var(--header-height);
474
472
  }
@@ -2481,6 +2479,12 @@
2481
2479
  border-color: color-mix(in oklab, var(--color-violet-500) 70%, transparent);
2482
2480
  }
2483
2481
  }
2482
+ .border-violet-700\/50 {
2483
+ border-color: color-mix(in srgb, oklch(49.1% 0.27 292.581) 50%, transparent);
2484
+ @supports (color: color-mix(in lab, red, red)) {
2485
+ border-color: color-mix(in oklab, var(--color-violet-700) 50%, transparent);
2486
+ }
2487
+ }
2484
2488
  .border-yellow-200 {
2485
2489
  border-color: var(--color-yellow-200);
2486
2490
  }
@@ -3846,6 +3850,9 @@
3846
3850
  .bg-transparent {
3847
3851
  background-color: transparent;
3848
3852
  }
3853
+ .bg-violet-50 {
3854
+ background-color: var(--color-violet-50);
3855
+ }
3849
3856
  .bg-violet-100 {
3850
3857
  background-color: var(--color-violet-100);
3851
3858
  }
@@ -3855,6 +3862,12 @@
3855
3862
  background-color: color-mix(in oklab, var(--color-violet-500) 20%, transparent);
3856
3863
  }
3857
3864
  }
3865
+ .bg-violet-900\/30 {
3866
+ background-color: color-mix(in srgb, oklch(38% 0.189 293.745) 30%, transparent);
3867
+ @supports (color: color-mix(in lab, red, red)) {
3868
+ background-color: color-mix(in oklab, var(--color-violet-900) 30%, transparent);
3869
+ }
3870
+ }
3858
3871
  .bg-white {
3859
3872
  background-color: var(--color-white);
3860
3873
  }
@@ -6251,9 +6264,6 @@
6251
6264
  .pl-4 {
6252
6265
  padding-left: calc(var(--spacing) * 4);
6253
6266
  }
6254
- .pl-6 {
6255
- padding-left: calc(var(--spacing) * 6);
6256
- }
6257
6267
  .pl-12 {
6258
6268
  padding-left: calc(var(--spacing) * 12);
6259
6269
  }
@@ -9061,6 +9071,13 @@
9061
9071
  }
9062
9072
  }
9063
9073
  }
9074
+ .hover\:bg-violet-100 {
9075
+ &:hover {
9076
+ @media (hover: hover) {
9077
+ background-color: var(--color-violet-100);
9078
+ }
9079
+ }
9080
+ }
9064
9081
  .hover\:bg-violet-500\/10 {
9065
9082
  &:hover {
9066
9083
  @media (hover: hover) {
@@ -1135,7 +1135,7 @@ declare class ModalComponent {
1135
1135
  private animatedTrendValues;
1136
1136
  private animationFrames;
1137
1137
  isOpen: _angular_core.Signal<boolean>;
1138
- 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>;
1138
+ 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>;
1139
1139
  charts: _angular_core.Signal<AiChartInterface[]>;
1140
1140
  modalKey: _angular_core.Signal<number>;
1141
1141
  insightData: _angular_core.Signal<InsightBlockInterface | null>;
@@ -1154,7 +1154,7 @@ declare class ModalComponent {
1154
1154
  description: string;
1155
1155
  icon: string;
1156
1156
  } | null>;
1157
- metricsListData: _angular_core.Signal<PerformanceMetricInterface | AiChartInterface | InsightBlockInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (PerformanceMetricInterface | InsightBlockInterface)[] | null>;
1157
+ metricsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
1158
1158
  metricsListMetrics: _angular_core.Signal<PerformanceMetricInterface[]>;
1159
1159
  metricsListInsightContext: _angular_core.Signal<{
1160
1160
  title: string;
@@ -1162,7 +1162,7 @@ declare class ModalComponent {
1162
1162
  businessContext: string;
1163
1163
  priority: number;
1164
1164
  } | null>;
1165
- chartsListData: _angular_core.Signal<PerformanceMetricInterface | AiChartInterface | InsightBlockInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (PerformanceMetricInterface | InsightBlockInterface)[] | null>;
1165
+ chartsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
1166
1166
  chartsListCharts: _angular_core.Signal<AiChartInterface[]>;
1167
1167
  chartsListInsightContext: _angular_core.Signal<{
1168
1168
  title: string;
@@ -1170,7 +1170,7 @@ declare class ModalComponent {
1170
1170
  businessContext: string;
1171
1171
  priority: number;
1172
1172
  } | null>;
1173
- recommendationsListData: _angular_core.Signal<PerformanceMetricInterface | AiChartInterface | InsightBlockInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (PerformanceMetricInterface | InsightBlockInterface)[] | null>;
1173
+ recommendationsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
1174
1174
  recommendationsListRecommendations: _angular_core.Signal<string[]>;
1175
1175
  recommendationsListInsightContext: _angular_core.Signal<{
1176
1176
  title: string;
@@ -1178,7 +1178,7 @@ declare class ModalComponent {
1178
1178
  businessContext: string;
1179
1179
  priority: number;
1180
1180
  } | null>;
1181
- competitiveAnalysisData: _angular_core.Signal<PerformanceMetricInterface | AiChartInterface | InsightBlockInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (PerformanceMetricInterface | InsightBlockInterface)[] | null>;
1181
+ competitiveAnalysisData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
1182
1182
  competitiveAnalysisContext: _angular_core.Signal<{
1183
1183
  title: string;
1184
1184
  description: string;
@@ -2972,7 +2972,7 @@ declare class PacingStatusBadgeComponent implements OnDestroy {
2972
2972
  private animateValue;
2973
2973
  protected displayInfo: _angular_core.Signal<PacingDisplayInfo>;
2974
2974
  protected containerClasses: _angular_core.Signal<string>;
2975
- protected targetRotation: _angular_core.Signal<0 | 1 | -1>;
2975
+ protected targetRotation: _angular_core.Signal<1 | 0 | -1>;
2976
2976
  protected rotationStyle: _angular_core.Signal<string>;
2977
2977
  protected fullBadgeRotationStyle: _angular_core.Signal<string>;
2978
2978
  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">;
@@ -4392,7 +4392,7 @@ declare class SymphiqProfileAnalysisFocusAreaDashboardComponent implements OnIni
4392
4392
  protected progressCardClasses: _angular_core.Signal<"bg-white border-slate-200" | "bg-slate-800/40 border-slate-700/50">;
4393
4393
  protected sectionTitleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
4394
4394
  protected sectionCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
4395
- protected sectionIconClasses: _angular_core.Signal<"bg-blue-50 text-blue-600" | "bg-blue-500/20 text-blue-400">;
4395
+ protected sectionIconClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-400" | "bg-blue-50 text-blue-600">;
4396
4396
  protected sectionDescriptionClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
4397
4397
  private formatGradeInText;
4398
4398
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SymphiqProfileAnalysisFocusAreaDashboardComponent, never>;
@@ -4575,7 +4575,6 @@ declare class SymphiqProfileAnalysisUnifiedDashboardComponent implements OnChang
4575
4575
  protected getGoalCardClasses(goal: UnifiedGoalInterface): string;
4576
4576
  protected getPriorityBadgeClasses(priority: string | undefined): string;
4577
4577
  protected getSourceBadgeClasses(type: ProfileAnalysisTypeEnum | undefined): string;
4578
- protected onTimelinePhaseClick(phase: TimelinePhaseInterface): void;
4579
4578
  protected getTimelineNodeClasses(priority: string | undefined): string;
4580
4579
  protected getTimelineNodeInnerClasses(priority: string | undefined): string;
4581
4580
  protected getTimelineCardClasses(priority: string | undefined): string;
@@ -4686,7 +4685,7 @@ declare class SymphiqProfileMetricsAnalysesDashboardComponent {
4686
4685
  handleSearchClick(): void;
4687
4686
  handleCloseSearchModal(): void;
4688
4687
  protected welcomeBannerContainerClasses: _angular_core.Signal<"bg-white border-slate-200" | "bg-slate-800/50 border-slate-700/50">;
4689
- protected welcomeBannerIconClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-400" | "bg-blue-100 text-blue-600">;
4688
+ protected welcomeBannerIconClasses: _angular_core.Signal<"bg-blue-100 text-blue-600" | "bg-blue-500/20 text-blue-400">;
4690
4689
  protected welcomeBannerTitleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
4691
4690
  protected welcomeBannerTextClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
4692
4691
  private getIconForMetric;
@@ -5762,7 +5761,7 @@ declare class ConfidenceLevelCardComponent implements OnInit, OnDestroy {
5762
5761
  protected currentStepCalloutClasses: _angular_core.Signal<"bg-slate-100 text-slate-700 border border-slate-200" | "bg-slate-700/50 text-slate-300 border border-slate-600/50">;
5763
5762
  protected currentStepBadgeClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-400" | "bg-emerald-100 text-emerald-700" | "bg-emerald-500/20 text-emerald-400" | "bg-blue-100 text-blue-700" | "bg-orange-100 text-orange-700" | "bg-orange-500/20 text-orange-400" | "bg-red-100 text-red-700" | "bg-red-500/20 text-red-400">;
5764
5763
  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">;
5765
- protected nextDashboardBadgeClasses: _angular_core.Signal<"bg-blue-50 text-blue-600" | "bg-emerald-500/10 text-emerald-500" | "bg-emerald-50 text-emerald-600" | "bg-blue-500/10 text-blue-500" | "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">;
5764
+ 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">;
5766
5765
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ConfidenceLevelCardComponent, never>;
5767
5766
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ConfidenceLevelCardComponent, "symphiq-confidence-level-card", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "currentStepId": { "alias": "currentStepId"; "required": false; "isSignal": true; }; "focusAreaDetails": { "alias": "focusAreaDetails"; "required": false; "isSignal": true; }; "currentFocusAreaDomain": { "alias": "currentFocusAreaDomain"; "required": false; "isSignal": true; }; "currentMetric": { "alias": "currentMetric"; "required": false; "isSignal": true; }; "targets": { "alias": "targets"; "required": false; "isSignal": true; }; "isCurrentStepComplete": { "alias": "isCurrentStepComplete"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
5768
5767
  }
@@ -5843,8 +5842,8 @@ declare class IndeterminateSpinnerComponent {
5843
5842
  svgSize: _angular_core.Signal<40 | 80 | 60>;
5844
5843
  circleRadius: _angular_core.Signal<16 | 36 | 26>;
5845
5844
  svgCircleRadius: _angular_core.Signal<number>;
5846
- strokeWidth: _angular_core.Signal<2 | 3 | 2.5>;
5847
- dotSize: _angular_core.Signal<10 | 5 | 7>;
5845
+ strokeWidth: _angular_core.Signal<3 | 2 | 2.5>;
5846
+ dotSize: _angular_core.Signal<5 | 10 | 7>;
5848
5847
  containerClasses: _angular_core.Signal<{
5849
5848
  'w-10 h-10': boolean;
5850
5849
  'w-[60px] h-[60px]': boolean;
@@ -5908,7 +5907,7 @@ declare class ChartContainerComponent {
5908
5907
  titleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
5909
5908
  descriptionClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
5910
5909
  iconClass: _angular_core.Signal<"text-slate-400 group-hover:text-blue-500" | "text-slate-500 group-hover:text-blue-400">;
5911
- chartIconClass: _angular_core.Signal<"bg-blue-500/20 text-blue-400" | "bg-blue-100 text-blue-600">;
5910
+ chartIconClass: _angular_core.Signal<"bg-blue-100 text-blue-600" | "bg-blue-500/20 text-blue-400">;
5912
5911
  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">;
5913
5912
  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">;
5914
5913
  isCollapsible: _angular_core.Signal<boolean>;