@eric-emg/symphiq-components 1.2.489 → 1.2.490
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 +10 -2
- package/fesm2022/symphiq-components.mjs.map +1 -1
- package/index.d.ts +17 -16
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -46472,7 +46472,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_0_Te
|
|
|
46472
46472
|
i0.ɵɵelementEnd();
|
|
46473
46473
|
} if (rf & 2) {
|
|
46474
46474
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
46475
|
-
i0.ɵɵproperty("viewMode", ctx_r2.isLightMode() ? ctx_r2.ViewModeEnum.LIGHT : ctx_r2.ViewModeEnum.DARK)("currentStepId", ctx_r2.JourneyStepIdEnum.FUNNEL_ANALYSIS)("showNextStepAction",
|
|
46475
|
+
i0.ɵɵproperty("viewMode", ctx_r2.isLightMode() ? ctx_r2.ViewModeEnum.LIGHT : ctx_r2.ViewModeEnum.DARK)("currentStepId", ctx_r2.JourneyStepIdEnum.FUNNEL_ANALYSIS)("showNextStepAction", ctx_r2.showNextStepAction())("forDemo", ctx_r2.forDemo())("maxAccessibleStepId", ctx_r2.maxAccessibleStepId());
|
|
46476
46476
|
} }
|
|
46477
46477
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_For_13_Template(rf, ctx) { if (rf & 1) {
|
|
46478
46478
|
i0.ɵɵelement(0, "symphiq-funnel-analysis-insight-card", 89);
|
|
@@ -47478,6 +47478,14 @@ class SymphiqFunnelAnalysisDashboardComponent {
|
|
|
47478
47478
|
return false;
|
|
47479
47479
|
return funnelAnalysis.reviewStatus === ProfileAnalysisReviewStatusEnum.NOT_REVIEWED;
|
|
47480
47480
|
}, ...(ngDevMode ? [{ debugName: "shouldShowReviewFooter" }] : []));
|
|
47481
|
+
this.showNextStepAction = computed(() => {
|
|
47482
|
+
const funnelAnalysis = this.funnelAnalysis();
|
|
47483
|
+
if (!funnelAnalysis)
|
|
47484
|
+
return false;
|
|
47485
|
+
const contentGenerated = funnelAnalysis.selfContentStatus === AiDynamicContentStatusEnum.GENERATED;
|
|
47486
|
+
const isReviewed = funnelAnalysis.reviewStatus === ProfileAnalysisReviewStatusEnum.REVIEWED;
|
|
47487
|
+
return contentGenerated && isReviewed;
|
|
47488
|
+
}, ...(ngDevMode ? [{ debugName: "showNextStepAction" }] : []));
|
|
47481
47489
|
// State signals
|
|
47482
47490
|
this.selectedCategory = signal('ALL', ...(ngDevMode ? [{ debugName: "selectedCategory" }] : []));
|
|
47483
47491
|
this.reverseSortOrder = signal(false, ...(ngDevMode ? [{ debugName: "reverseSortOrder" }] : []));
|
|
@@ -49018,7 +49026,7 @@ class SymphiqFunnelAnalysisDashboardComponent {
|
|
|
49018
49026
|
<symphiq-journey-progress-indicator
|
|
49019
49027
|
[viewMode]="isLightMode() ? ViewModeEnum.LIGHT : ViewModeEnum.DARK"
|
|
49020
49028
|
[currentStepId]="JourneyStepIdEnum.FUNNEL_ANALYSIS"
|
|
49021
|
-
[showNextStepAction]="
|
|
49029
|
+
[showNextStepAction]="showNextStepAction()"
|
|
49022
49030
|
[forDemo]="forDemo()"
|
|
49023
49031
|
[maxAccessibleStepId]="maxAccessibleStepId()"
|
|
49024
49032
|
(stepClick)="stepClick.emit($event)"
|