@eric-emg/symphiq-components 1.2.398 → 1.2.400
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 +121 -110
- package/fesm2022/symphiq-components.mjs.map +1 -1
- package/index.d.ts +21 -20
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -89079,7 +89079,6 @@ class ShopProfileQuestionAnswerComponent {
|
|
|
89079
89079
|
const actionToPerform = pendingAction;
|
|
89080
89080
|
this.pendingQuestionId.set(null);
|
|
89081
89081
|
this.pendingSaveAction.set(null);
|
|
89082
|
-
console.log('[AnswerEffect] Detected answer for', pendingId, 'action:', actionToPerform);
|
|
89083
89082
|
setTimeout(() => {
|
|
89084
89083
|
this.isSaving.set(false);
|
|
89085
89084
|
if (actionToPerform === 'save') {
|
|
@@ -90609,22 +90608,8 @@ class ShopProfileQuestionsModalComponent {
|
|
|
90609
90608
|
const answers = this.profileAnswers();
|
|
90610
90609
|
const isAnswered = (q) => answers.some(a => a.profileQuestionId === q.id);
|
|
90611
90610
|
const currentIndex = questions.findIndex(q => q.id === currentQuestion.id);
|
|
90612
|
-
|
|
90613
|
-
|
|
90614
|
-
index: i,
|
|
90615
|
-
id: q.id,
|
|
90616
|
-
question: q.question?.substring(0, 50) + '...',
|
|
90617
|
-
isAnswered: isAnswered(q)
|
|
90618
|
-
})));
|
|
90619
|
-
console.log('[NextQuestion] currentQuestion:', { id: currentQuestion.id, question: currentQuestion.question?.substring(0, 50) });
|
|
90620
|
-
console.log('[NextQuestion] currentIndex:', currentIndex);
|
|
90621
|
-
const afterCurrent = questions.slice(currentIndex + 1);
|
|
90622
|
-
const beforeCurrent = questions.slice(0, currentIndex);
|
|
90623
|
-
console.log('[NextQuestion] searching afterCurrent (indices', currentIndex + 1, 'to', questions.length - 1, '):', afterCurrent.map(q => ({ id: q.id, isAnswered: isAnswered(q) })));
|
|
90624
|
-
console.log('[NextQuestion] searching beforeCurrent (indices 0 to', currentIndex - 1, '):', beforeCurrent.map(q => ({ id: q.id, isAnswered: isAnswered(q) })));
|
|
90625
|
-
const nextUnanswered = afterCurrent.find(q => !isAnswered(q))
|
|
90626
|
-
|| beforeCurrent.find(q => !isAnswered(q));
|
|
90627
|
-
console.log('[NextQuestion] nextUnanswered:', nextUnanswered ? { id: nextUnanswered.id, question: nextUnanswered.question?.substring(0, 50) } : 'none');
|
|
90611
|
+
const nextUnanswered = questions.slice(currentIndex + 1).find(q => !isAnswered(q))
|
|
90612
|
+
|| questions.slice(0, currentIndex).find(q => !isAnswered(q));
|
|
90628
90613
|
if (nextUnanswered) {
|
|
90629
90614
|
this.questionForAnswer.set(nextUnanswered);
|
|
90630
90615
|
if (nextUnanswered.id) {
|
|
@@ -92464,23 +92449,33 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Co
|
|
|
92464
92449
|
i0.ɵɵproperty("itemStatus", ctx_r1.itemStatusProfileShop())("viewMode", ctx_r1.viewMode());
|
|
92465
92450
|
} }
|
|
92466
92451
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_1_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
92452
|
+
i0.ɵɵelementStart(0, "div", 32);
|
|
92453
|
+
i0.ɵɵelement(1, "symphiq-content-generation-progress", 35);
|
|
92454
|
+
i0.ɵɵelementEnd();
|
|
92455
|
+
} if (rf & 2) {
|
|
92456
|
+
const ctx_r1 = i0.ɵɵnextContext(4);
|
|
92457
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getProgressCardClasses());
|
|
92458
|
+
i0.ɵɵadvance();
|
|
92459
|
+
i0.ɵɵproperty("itemStatus", ctx_r1.itemStatusProfileAnalysis())("viewMode", ctx_r1.viewMode());
|
|
92460
|
+
} }
|
|
92461
|
+
function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_1_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
92467
92462
|
const _r4 = i0.ɵɵgetCurrentView();
|
|
92468
|
-
i0.ɵɵelementStart(0, "symphiq-strategic-goals-tiled-grid",
|
|
92469
|
-
i0.ɵɵlistener("viewMoreClick", function
|
|
92463
|
+
i0.ɵɵelementStart(0, "symphiq-strategic-goals-tiled-grid", 36);
|
|
92464
|
+
i0.ɵɵlistener("viewMoreClick", function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_1_Conditional_2_Template_symphiq_strategic_goals_tiled_grid_viewMoreClick_0_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r1.openGoalModal($event)); });
|
|
92470
92465
|
i0.ɵɵelementEnd();
|
|
92471
92466
|
} if (rf & 2) {
|
|
92472
92467
|
const ctx_r1 = i0.ɵɵnextContext(4);
|
|
92473
92468
|
i0.ɵɵproperty("goals", ctx_r1.strategicRoadmapGoals())("viewMode", ctx_r1.viewMode());
|
|
92474
92469
|
} }
|
|
92475
92470
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
92476
|
-
i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_1_Conditional_0_Template, 2, 3, "div", 32)(1, SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_1_Conditional_1_Template, 1, 2, "symphiq-strategic-goals-tiled-grid", 33);
|
|
92471
|
+
i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_1_Conditional_0_Template, 2, 3, "div", 32)(1, SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_1_Conditional_1_Template, 2, 3, "div", 32)(2, SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_1_Conditional_2_Template, 1, 2, "symphiq-strategic-goals-tiled-grid", 33);
|
|
92477
92472
|
} if (rf & 2) {
|
|
92478
92473
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
92479
|
-
i0.ɵɵconditional(ctx_r1.isProfileShopGenerating() && !ctx_r1.isFocusAreaAnalysis() && !ctx_r1.isMetricAnalysis() ? 0 : 1);
|
|
92474
|
+
i0.ɵɵconditional(ctx_r1.isProfileShopGenerating() && !ctx_r1.isFocusAreaAnalysis() && !ctx_r1.isMetricAnalysis() ? 0 : ctx_r1.isProfileAnalysisGenerating() ? 1 : 2);
|
|
92480
92475
|
} }
|
|
92481
92476
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_2_Conditional_0_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
92482
92477
|
i0.ɵɵelementStart(0, "div", 30);
|
|
92483
|
-
i0.ɵɵelement(1, "symphiq-subscription-value-proposition-card",
|
|
92478
|
+
i0.ɵɵelement(1, "symphiq-subscription-value-proposition-card", 40);
|
|
92484
92479
|
i0.ɵɵelementEnd();
|
|
92485
92480
|
} if (rf & 2) {
|
|
92486
92481
|
const ctx_r1 = i0.ɵɵnextContext(5);
|
|
@@ -92490,7 +92485,7 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Co
|
|
|
92490
92485
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_2_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
92491
92486
|
const _r5 = i0.ɵɵgetCurrentView();
|
|
92492
92487
|
i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_2_Conditional_0_Conditional_0_Template, 2, 1, "div", 30);
|
|
92493
|
-
i0.ɵɵelementStart(1, "symphiq-billing-currency-selector-card",
|
|
92488
|
+
i0.ɵɵelementStart(1, "symphiq-billing-currency-selector-card", 39);
|
|
92494
92489
|
i0.ɵɵlistener("currencySelected", function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_2_Conditional_0_Template_symphiq_billing_currency_selector_card_currencySelected_1_listener($event) { i0.ɵɵrestoreView(_r5); const ctx_r1 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r1.handleCurrencyChange($event)); });
|
|
92495
92490
|
i0.ɵɵelementEnd();
|
|
92496
92491
|
} if (rf & 2) {
|
|
@@ -92502,7 +92497,7 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Co
|
|
|
92502
92497
|
} }
|
|
92503
92498
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_2_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
92504
92499
|
const _r6 = i0.ɵɵgetCurrentView();
|
|
92505
|
-
i0.ɵɵelementStart(0, "div",
|
|
92500
|
+
i0.ɵɵelementStart(0, "div", 37)(1, "symphiq-plan-selection-container", 41);
|
|
92506
92501
|
i0.ɵɵlistener("periodUnitChanged", function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_2_Conditional_1_Template_symphiq_plan_selection_container_periodUnitChanged_1_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r1.handlePeriodUnitChange($event)); })("planSelected", function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_2_Conditional_1_Template_symphiq_plan_selection_container_planSelected_1_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r1.handlePlanSelection($event)); })("editCurrency", function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_2_Conditional_1_Template_symphiq_plan_selection_container_editCurrency_1_listener() { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r1.handleEditCurrencyClick()); })("checkout", function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_2_Conditional_1_Template_symphiq_plan_selection_container_checkout_1_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r1.checkoutPlanClick.emit($event)); });
|
|
92507
92502
|
i0.ɵɵelementEnd()();
|
|
92508
92503
|
} if (rf & 2) {
|
|
@@ -92513,7 +92508,7 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Co
|
|
|
92513
92508
|
} }
|
|
92514
92509
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
92515
92510
|
const _r7 = i0.ɵɵgetCurrentView();
|
|
92516
|
-
i0.ɵɵelementStart(0, "symphiq-plan-selection-placeholder-card",
|
|
92511
|
+
i0.ɵɵelementStart(0, "symphiq-plan-selection-placeholder-card", 42);
|
|
92517
92512
|
i0.ɵɵlistener("editCurrency", function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_2_Conditional_2_Template_symphiq_plan_selection_placeholder_card_editCurrency_0_listener() { i0.ɵɵrestoreView(_r7); const ctx_r1 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r1.handleEditCurrencyClick()); });
|
|
92518
92513
|
i0.ɵɵelementEnd();
|
|
92519
92514
|
} if (rf & 2) {
|
|
@@ -92522,14 +92517,14 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Co
|
|
|
92522
92517
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("selectedCurrency", ((tmp_5_0 = ctx_r1.account()) == null ? null : tmp_5_0.billingCurrencyCode) || ctx_r1.CurrencyCodeEnum.USD);
|
|
92523
92518
|
} }
|
|
92524
92519
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
92525
|
-
i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_2_Conditional_0_Template, 2, 4)(1, SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_2_Conditional_1_Template, 2, 5, "div",
|
|
92520
|
+
i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_2_Conditional_0_Template, 2, 4)(1, SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_2_Conditional_1_Template, 2, 5, "div", 37)(2, SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_2_Conditional_2_Template, 1, 2, "symphiq-plan-selection-placeholder-card", 38);
|
|
92526
92521
|
} if (rf & 2) {
|
|
92527
92522
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
92528
92523
|
i0.ɵɵconditional(!ctx_r1.hasBillingCurrency() || ctx_r1.isEditingCurrency() ? 0 : ctx_r1.showPlanSelection() ? 1 : 2);
|
|
92529
92524
|
} }
|
|
92530
92525
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
92531
92526
|
i0.ɵɵelementStart(0, "div", 30);
|
|
92532
|
-
i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_1_Template,
|
|
92527
|
+
i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_1_Template, 3, 1)(2, SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Conditional_2_Template, 3, 1);
|
|
92533
92528
|
i0.ɵɵelementEnd();
|
|
92534
92529
|
} if (rf & 2) {
|
|
92535
92530
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
@@ -92538,7 +92533,7 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Te
|
|
|
92538
92533
|
} }
|
|
92539
92534
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
92540
92535
|
i0.ɵɵelementStart(0, "div");
|
|
92541
|
-
i0.ɵɵelement(1, "symphiq-collapsible-analysis-section-group",
|
|
92536
|
+
i0.ɵɵelement(1, "symphiq-collapsible-analysis-section-group", 43);
|
|
92542
92537
|
i0.ɵɵelementEnd();
|
|
92543
92538
|
} if (rf & 2) {
|
|
92544
92539
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
@@ -92558,15 +92553,15 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Template(rf, ctx
|
|
|
92558
92553
|
i0.ɵɵconditional(ctx_r1.nonStrategicSections().length > 0 ? 2 : -1);
|
|
92559
92554
|
} }
|
|
92560
92555
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
92561
|
-
i0.ɵɵelement(0, "symphiq-grade-badge",
|
|
92556
|
+
i0.ɵɵelement(0, "symphiq-grade-badge", 54);
|
|
92562
92557
|
} if (rf & 2) {
|
|
92563
92558
|
const summary_r9 = i0.ɵɵnextContext();
|
|
92564
92559
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
92565
92560
|
i0.ɵɵproperty("grade", summary_r9.overallGrade)("gradeRationale", summary_r9.gradeRationale || "")("viewMode", ctx_r1.viewMode());
|
|
92566
92561
|
} }
|
|
92567
92562
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_10_Conditional_4_Template(rf, ctx) { if (rf & 1) {
|
|
92568
|
-
i0.ɵɵelementStart(0, "div",
|
|
92569
|
-
i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder",
|
|
92563
|
+
i0.ɵɵelementStart(0, "div", 67);
|
|
92564
|
+
i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder", 70);
|
|
92570
92565
|
i0.ɵɵelementEnd();
|
|
92571
92566
|
} if (rf & 2) {
|
|
92572
92567
|
const summary_r9 = i0.ɵɵnextContext(2);
|
|
@@ -92575,15 +92570,15 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_C
|
|
|
92575
92570
|
i0.ɵɵproperty("visual", summary_r9.napkinVisual)("viewMode", ctx_r1.viewMode());
|
|
92576
92571
|
} }
|
|
92577
92572
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_10_Template(rf, ctx) { if (rf & 1) {
|
|
92578
|
-
i0.ɵɵelementStart(0, "div",
|
|
92573
|
+
i0.ɵɵelementStart(0, "div", 55)(1, "h3", 65);
|
|
92579
92574
|
i0.ɵɵtext(2, " Analysis Narrative ");
|
|
92580
92575
|
i0.ɵɵelementEnd();
|
|
92581
|
-
i0.ɵɵelementStart(3, "div",
|
|
92582
|
-
i0.ɵɵconditionalCreate(4, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_10_Conditional_4_Template, 2, 2, "div",
|
|
92583
|
-
i0.ɵɵelementStart(5, "p",
|
|
92576
|
+
i0.ɵɵelementStart(3, "div", 66);
|
|
92577
|
+
i0.ɵɵconditionalCreate(4, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_10_Conditional_4_Template, 2, 2, "div", 67);
|
|
92578
|
+
i0.ɵɵelementStart(5, "p", 68);
|
|
92584
92579
|
i0.ɵɵtext(6);
|
|
92585
92580
|
i0.ɵɵelementEnd();
|
|
92586
|
-
i0.ɵɵelement(7, "div",
|
|
92581
|
+
i0.ɵɵelement(7, "div", 69);
|
|
92587
92582
|
i0.ɵɵelementEnd()();
|
|
92588
92583
|
} if (rf & 2) {
|
|
92589
92584
|
const summary_r9 = i0.ɵɵnextContext();
|
|
@@ -92599,10 +92594,10 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_C
|
|
|
92599
92594
|
i0.ɵɵtextInterpolate1(" ", summary_r9.narrative, " ");
|
|
92600
92595
|
} }
|
|
92601
92596
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_39_For_5_Conditional_12_Template(rf, ctx) { if (rf & 1) {
|
|
92602
|
-
i0.ɵɵelementStart(0, "div",
|
|
92597
|
+
i0.ɵɵelementStart(0, "div", 80);
|
|
92603
92598
|
i0.ɵɵnamespaceSVG();
|
|
92604
|
-
i0.ɵɵelementStart(1, "svg",
|
|
92605
|
-
i0.ɵɵelement(2, "path",
|
|
92599
|
+
i0.ɵɵelementStart(1, "svg", 82);
|
|
92600
|
+
i0.ɵɵelement(2, "path", 83);
|
|
92606
92601
|
i0.ɵɵelementEnd();
|
|
92607
92602
|
i0.ɵɵnamespaceHTML();
|
|
92608
92603
|
i0.ɵɵelementStart(3, "span");
|
|
@@ -92616,10 +92611,10 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_C
|
|
|
92616
92611
|
i0.ɵɵtextInterpolate(win_r10.estimatedTimeframe);
|
|
92617
92612
|
} }
|
|
92618
92613
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_39_For_5_Conditional_13_Template(rf, ctx) { if (rf & 1) {
|
|
92619
|
-
i0.ɵɵelementStart(0, "div",
|
|
92614
|
+
i0.ɵɵelementStart(0, "div", 81)(1, "h4", 84);
|
|
92620
92615
|
i0.ɵɵtext(2, " Related Goal ");
|
|
92621
92616
|
i0.ɵɵelementEnd();
|
|
92622
|
-
i0.ɵɵelement(3, "symphiq-related-goal-chips",
|
|
92617
|
+
i0.ɵɵelement(3, "symphiq-related-goal-chips", 85);
|
|
92623
92618
|
i0.ɵɵelementEnd();
|
|
92624
92619
|
} if (rf & 2) {
|
|
92625
92620
|
const win_r10 = i0.ɵɵnextContext().$implicit;
|
|
@@ -92630,20 +92625,20 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_C
|
|
|
92630
92625
|
i0.ɵɵproperty("relatedGoalIds", i0.ɵɵpureFunction1(4, _c4, win_r10.relatedGoalId))("allGoals", ctx_r1.allGoals())("viewMode", ctx_r1.viewMode());
|
|
92631
92626
|
} }
|
|
92632
92627
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_39_For_5_Template(rf, ctx) { if (rf & 1) {
|
|
92633
|
-
i0.ɵɵelementStart(0, "div",
|
|
92628
|
+
i0.ɵɵelementStart(0, "div", 73)(1, "div", 74)(2, "div", 75)(3, "span", 76);
|
|
92634
92629
|
i0.ɵɵtext(4);
|
|
92635
92630
|
i0.ɵɵelementEnd();
|
|
92636
|
-
i0.ɵɵelementStart(5, "p",
|
|
92631
|
+
i0.ɵɵelementStart(5, "p", 77);
|
|
92637
92632
|
i0.ɵɵtext(6);
|
|
92638
92633
|
i0.ɵɵelementEnd()();
|
|
92639
|
-
i0.ɵɵelementStart(7, "div",
|
|
92634
|
+
i0.ɵɵelementStart(7, "div", 78)(8, "span", 79);
|
|
92640
92635
|
i0.ɵɵtext(9);
|
|
92641
92636
|
i0.ɵɵelementEnd();
|
|
92642
|
-
i0.ɵɵelementStart(10, "span",
|
|
92637
|
+
i0.ɵɵelementStart(10, "span", 79);
|
|
92643
92638
|
i0.ɵɵtext(11);
|
|
92644
92639
|
i0.ɵɵelementEnd()();
|
|
92645
|
-
i0.ɵɵconditionalCreate(12, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_39_For_5_Conditional_12_Template, 5, 2, "div",
|
|
92646
|
-
i0.ɵɵconditionalCreate(13, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_39_For_5_Conditional_13_Template, 4, 6, "div",
|
|
92640
|
+
i0.ɵɵconditionalCreate(12, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_39_For_5_Conditional_12_Template, 5, 2, "div", 80);
|
|
92641
|
+
i0.ɵɵconditionalCreate(13, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_39_For_5_Conditional_13_Template, 4, 6, "div", 81);
|
|
92647
92642
|
i0.ɵɵelementEnd()();
|
|
92648
92643
|
} if (rf & 2) {
|
|
92649
92644
|
const win_r10 = ctx.$implicit;
|
|
@@ -92672,11 +92667,11 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_C
|
|
|
92672
92667
|
i0.ɵɵconditional(win_r10.relatedGoalId ? 13 : -1);
|
|
92673
92668
|
} }
|
|
92674
92669
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_39_Template(rf, ctx) { if (rf & 1) {
|
|
92675
|
-
i0.ɵɵelementStart(0, "div",
|
|
92670
|
+
i0.ɵɵelementStart(0, "div", 64)(1, "h3", 71);
|
|
92676
92671
|
i0.ɵɵtext(2, " Quick Wins ");
|
|
92677
92672
|
i0.ɵɵelementEnd();
|
|
92678
|
-
i0.ɵɵelementStart(3, "div",
|
|
92679
|
-
i0.ɵɵrepeaterCreate(4, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_39_For_5_Template, 14, 11, "div",
|
|
92673
|
+
i0.ɵɵelementStart(3, "div", 72);
|
|
92674
|
+
i0.ɵɵrepeaterCreate(4, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_39_For_5_Template, 14, 11, "div", 73, i0.ɵɵrepeaterTrackByIndex);
|
|
92680
92675
|
i0.ɵɵelementEnd()();
|
|
92681
92676
|
} if (rf & 2) {
|
|
92682
92677
|
const summary_r9 = i0.ɵɵnextContext();
|
|
@@ -92688,55 +92683,55 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_C
|
|
|
92688
92683
|
} }
|
|
92689
92684
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
92690
92685
|
const _r8 = i0.ɵɵgetCurrentView();
|
|
92691
|
-
i0.ɵɵelementStart(0, "section",
|
|
92686
|
+
i0.ɵɵelementStart(0, "section", 44)(1, "div", 48)(2, "div", 49)(3, "div", 50)(4, "div", 51)(5, "h2", 52);
|
|
92692
92687
|
i0.ɵɵtext(6, " Executive Summary ");
|
|
92693
92688
|
i0.ɵɵelementEnd();
|
|
92694
|
-
i0.ɵɵelementStart(7, "p",
|
|
92689
|
+
i0.ɵɵelementStart(7, "p", 53);
|
|
92695
92690
|
i0.ɵɵtext(8);
|
|
92696
92691
|
i0.ɵɵelementEnd()();
|
|
92697
|
-
i0.ɵɵconditionalCreate(9, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_9_Template, 1, 3, "symphiq-grade-badge",
|
|
92692
|
+
i0.ɵɵconditionalCreate(9, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_9_Template, 1, 3, "symphiq-grade-badge", 54);
|
|
92698
92693
|
i0.ɵɵelementEnd();
|
|
92699
|
-
i0.ɵɵconditionalCreate(10, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_10_Template, 8, 5, "div",
|
|
92700
|
-
i0.ɵɵelementStart(11, "div",
|
|
92694
|
+
i0.ɵɵconditionalCreate(10, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_10_Template, 8, 5, "div", 55);
|
|
92695
|
+
i0.ɵɵelementStart(11, "div", 56)(12, "button", 57);
|
|
92701
92696
|
i0.ɵɵlistener("click", function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Template_button_click_12_listener() { const summary_r9 = i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onKeyStrengthsClick(summary_r9)); });
|
|
92702
|
-
i0.ɵɵelementStart(13, "div",
|
|
92697
|
+
i0.ɵɵelementStart(13, "div", 58);
|
|
92703
92698
|
i0.ɵɵtext(14, " Key Strengths ");
|
|
92704
92699
|
i0.ɵɵelementEnd();
|
|
92705
|
-
i0.ɵɵelementStart(15, "div",
|
|
92700
|
+
i0.ɵɵelementStart(15, "div", 59);
|
|
92706
92701
|
i0.ɵɵtext(16);
|
|
92707
92702
|
i0.ɵɵelementEnd();
|
|
92708
|
-
i0.ɵɵelementStart(17, "div",
|
|
92703
|
+
i0.ɵɵelementStart(17, "div", 60)(18, "span", 61);
|
|
92709
92704
|
i0.ɵɵtext(19, "View Details");
|
|
92710
92705
|
i0.ɵɵelementEnd();
|
|
92711
|
-
i0.ɵɵelement(20, "symphiq-icon",
|
|
92706
|
+
i0.ɵɵelement(20, "symphiq-icon", 62);
|
|
92712
92707
|
i0.ɵɵelementEnd()();
|
|
92713
|
-
i0.ɵɵelementStart(21, "button",
|
|
92708
|
+
i0.ɵɵelementStart(21, "button", 57);
|
|
92714
92709
|
i0.ɵɵlistener("click", function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Template_button_click_21_listener() { const summary_r9 = i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onCriticalGapsClick(summary_r9)); });
|
|
92715
|
-
i0.ɵɵelementStart(22, "div",
|
|
92710
|
+
i0.ɵɵelementStart(22, "div", 58);
|
|
92716
92711
|
i0.ɵɵtext(23, " Critical Gaps ");
|
|
92717
92712
|
i0.ɵɵelementEnd();
|
|
92718
|
-
i0.ɵɵelementStart(24, "div",
|
|
92713
|
+
i0.ɵɵelementStart(24, "div", 59);
|
|
92719
92714
|
i0.ɵɵtext(25);
|
|
92720
92715
|
i0.ɵɵelementEnd();
|
|
92721
|
-
i0.ɵɵelementStart(26, "div",
|
|
92716
|
+
i0.ɵɵelementStart(26, "div", 60)(27, "span", 61);
|
|
92722
92717
|
i0.ɵɵtext(28, "View Details");
|
|
92723
92718
|
i0.ɵɵelementEnd();
|
|
92724
|
-
i0.ɵɵelement(29, "symphiq-icon",
|
|
92719
|
+
i0.ɵɵelement(29, "symphiq-icon", 62);
|
|
92725
92720
|
i0.ɵɵelementEnd()();
|
|
92726
|
-
i0.ɵɵelementStart(30, "button",
|
|
92721
|
+
i0.ɵɵelementStart(30, "button", 57);
|
|
92727
92722
|
i0.ɵɵlistener("click", function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Template_button_click_30_listener() { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.scrollToQuickWins()); });
|
|
92728
|
-
i0.ɵɵelementStart(31, "div",
|
|
92723
|
+
i0.ɵɵelementStart(31, "div", 58);
|
|
92729
92724
|
i0.ɵɵtext(32, " Quick Wins ");
|
|
92730
92725
|
i0.ɵɵelementEnd();
|
|
92731
|
-
i0.ɵɵelementStart(33, "div",
|
|
92726
|
+
i0.ɵɵelementStart(33, "div", 59);
|
|
92732
92727
|
i0.ɵɵtext(34);
|
|
92733
92728
|
i0.ɵɵelementEnd();
|
|
92734
|
-
i0.ɵɵelementStart(35, "div",
|
|
92729
|
+
i0.ɵɵelementStart(35, "div", 60)(36, "span", 61);
|
|
92735
92730
|
i0.ɵɵtext(37, "Details Below");
|
|
92736
92731
|
i0.ɵɵelementEnd();
|
|
92737
|
-
i0.ɵɵelement(38, "symphiq-icon",
|
|
92732
|
+
i0.ɵɵelement(38, "symphiq-icon", 63);
|
|
92738
92733
|
i0.ɵɵelementEnd()()()()();
|
|
92739
|
-
i0.ɵɵconditionalCreate(39, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_39_Template, 6, 1, "div",
|
|
92734
|
+
i0.ɵɵconditionalCreate(39, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_39_Template, 6, 1, "div", 64);
|
|
92740
92735
|
i0.ɵɵelementEnd();
|
|
92741
92736
|
} if (rf & 2) {
|
|
92742
92737
|
const summary_r9 = ctx;
|
|
@@ -92794,7 +92789,7 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_T
|
|
|
92794
92789
|
} }
|
|
92795
92790
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
92796
92791
|
const _r12 = i0.ɵɵgetCurrentView();
|
|
92797
|
-
i0.ɵɵelementStart(0, "symphiq-focus-area-executive-summary",
|
|
92792
|
+
i0.ɵɵelementStart(0, "symphiq-focus-area-executive-summary", 86);
|
|
92798
92793
|
i0.ɵɵlistener("topPrioritiesClick", function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_1_Template_symphiq_focus_area_executive_summary_topPrioritiesClick_0_listener() { i0.ɵɵrestoreView(_r12); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleTopPrioritiesClick()); })("priorityDetailClick", function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_1_Template_symphiq_focus_area_executive_summary_priorityDetailClick_0_listener($event) { i0.ɵɵrestoreView(_r12); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handlePriorityDetailClick($event)); });
|
|
92799
92794
|
i0.ɵɵelementEnd();
|
|
92800
92795
|
} if (rf & 2) {
|
|
@@ -92803,7 +92798,7 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_1_T
|
|
|
92803
92798
|
} }
|
|
92804
92799
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
92805
92800
|
const _r13 = i0.ɵɵgetCurrentView();
|
|
92806
|
-
i0.ɵɵelementStart(0, "symphiq-metric-executive-summary",
|
|
92801
|
+
i0.ɵɵelementStart(0, "symphiq-metric-executive-summary", 87);
|
|
92807
92802
|
i0.ɵɵlistener("topPrioritiesClick", function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_2_Template_symphiq_metric_executive_summary_topPrioritiesClick_0_listener() { i0.ɵɵrestoreView(_r13); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleMetricTopPrioritiesClick()); })("priorityDetailClick", function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_2_Template_symphiq_metric_executive_summary_priorityDetailClick_0_listener($event) { i0.ɵɵrestoreView(_r13); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleMetricPriorityDetailClick($event)); });
|
|
92808
92803
|
i0.ɵɵelementEnd();
|
|
92809
92804
|
} if (rf & 2) {
|
|
@@ -92811,21 +92806,21 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_2_T
|
|
|
92811
92806
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("summary", ctx)("metricName", ctx_r1.metricName())("allGoals", ctx_r1.allGoals());
|
|
92812
92807
|
} }
|
|
92813
92808
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_3_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
92814
|
-
i0.ɵɵelement(0, "symphiq-section-divider",
|
|
92809
|
+
i0.ɵɵelement(0, "symphiq-section-divider", 88);
|
|
92815
92810
|
} if (rf & 2) {
|
|
92816
92811
|
const sectionList_r14 = i0.ɵɵnextContext();
|
|
92817
92812
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
92818
92813
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r14[0].icon);
|
|
92819
92814
|
} }
|
|
92820
92815
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
92821
|
-
i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_3_Conditional_0_Template, 1, 2, "symphiq-section-divider",
|
|
92816
|
+
i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_3_Conditional_0_Template, 1, 2, "symphiq-section-divider", 88);
|
|
92822
92817
|
} if (rf & 2) {
|
|
92823
92818
|
const sectionList_r14 = ctx;
|
|
92824
92819
|
i0.ɵɵconditional(sectionList_r14.length > 0 && sectionList_r14[0].icon ? 0 : -1);
|
|
92825
92820
|
} }
|
|
92826
92821
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
92827
|
-
i0.ɵɵelementStart(0, "div",
|
|
92828
|
-
i0.ɵɵelement(1, "symphiq-icon",
|
|
92822
|
+
i0.ɵɵelementStart(0, "div", 91);
|
|
92823
|
+
i0.ɵɵelement(1, "symphiq-icon", 95);
|
|
92829
92824
|
i0.ɵɵelementEnd();
|
|
92830
92825
|
} if (rf & 2) {
|
|
92831
92826
|
const section_r15 = i0.ɵɵnextContext().$implicit;
|
|
@@ -92835,8 +92830,8 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_F
|
|
|
92835
92830
|
i0.ɵɵproperty("icon", section_r15.icon);
|
|
92836
92831
|
} }
|
|
92837
92832
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_For_2_Conditional_6_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
92838
|
-
i0.ɵɵelementStart(0, "div",
|
|
92839
|
-
i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder",
|
|
92833
|
+
i0.ɵɵelementStart(0, "div", 97);
|
|
92834
|
+
i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder", 70);
|
|
92840
92835
|
i0.ɵɵelementEnd();
|
|
92841
92836
|
} if (rf & 2) {
|
|
92842
92837
|
const section_r15 = i0.ɵɵnextContext(2).$implicit;
|
|
@@ -92845,7 +92840,7 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_F
|
|
|
92845
92840
|
i0.ɵɵproperty("visual", section_r15.visual)("viewMode", ctx_r1.viewMode());
|
|
92846
92841
|
} }
|
|
92847
92842
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_For_2_Conditional_6_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
92848
|
-
i0.ɵɵelementStart(0, "div",
|
|
92843
|
+
i0.ɵɵelementStart(0, "div", 99)(1, "p", 68);
|
|
92849
92844
|
i0.ɵɵtext(2);
|
|
92850
92845
|
i0.ɵɵelementEnd()();
|
|
92851
92846
|
} if (rf & 2) {
|
|
@@ -92858,42 +92853,42 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_F
|
|
|
92858
92853
|
i0.ɵɵtextInterpolate1(" ", section_r15.description, " ");
|
|
92859
92854
|
} }
|
|
92860
92855
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_For_2_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
92861
|
-
i0.ɵɵelementStart(0, "div",
|
|
92862
|
-
i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_For_2_Conditional_6_Conditional_1_Template, 2, 2, "div",
|
|
92863
|
-
i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_For_2_Conditional_6_Conditional_2_Template, 3, 6, "div",
|
|
92856
|
+
i0.ɵɵelementStart(0, "div", 96);
|
|
92857
|
+
i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_For_2_Conditional_6_Conditional_1_Template, 2, 2, "div", 97);
|
|
92858
|
+
i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_For_2_Conditional_6_Conditional_2_Template, 3, 6, "div", 98);
|
|
92864
92859
|
i0.ɵɵelementEnd();
|
|
92865
92860
|
} if (rf & 2) {
|
|
92866
92861
|
const ctx_r15 = i0.ɵɵnextContext();
|
|
92867
92862
|
const section_r15 = ctx_r15.$implicit;
|
|
92868
|
-
const ɵ$
|
|
92869
|
-
i0.ɵɵclassProp("lg:flex-row-reverse", ɵ$
|
|
92863
|
+
const ɵ$index_221_r17 = ctx_r15.$index;
|
|
92864
|
+
i0.ɵɵclassProp("lg:flex-row-reverse", ɵ$index_221_r17 % 2 === 0);
|
|
92870
92865
|
i0.ɵɵadvance();
|
|
92871
92866
|
i0.ɵɵconditional(section_r15.visual && section_r15.visual.enabled ? 1 : -1);
|
|
92872
92867
|
i0.ɵɵadvance();
|
|
92873
92868
|
i0.ɵɵconditional(section_r15.description ? 2 : -1);
|
|
92874
92869
|
} }
|
|
92875
92870
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_For_2_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
92876
|
-
i0.ɵɵelement(0, "symphiq-section-divider",
|
|
92871
|
+
i0.ɵɵelement(0, "symphiq-section-divider", 88);
|
|
92877
92872
|
} if (rf & 2) {
|
|
92878
|
-
const ɵ$
|
|
92873
|
+
const ɵ$index_221_r17 = i0.ɵɵnextContext().$index;
|
|
92879
92874
|
const sectionList_r18 = i0.ɵɵnextContext();
|
|
92880
92875
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
92881
|
-
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r18[ɵ$
|
|
92876
|
+
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r18[ɵ$index_221_r17 + 1].icon);
|
|
92882
92877
|
} }
|
|
92883
92878
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
92884
|
-
i0.ɵɵelementStart(0, "div",
|
|
92885
|
-
i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_For_2_Conditional_2_Template, 2, 2, "div",
|
|
92886
|
-
i0.ɵɵelementStart(3, "div",
|
|
92879
|
+
i0.ɵɵelementStart(0, "div", 89)(1, "div", 90);
|
|
92880
|
+
i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_For_2_Conditional_2_Template, 2, 2, "div", 91);
|
|
92881
|
+
i0.ɵɵelementStart(3, "div", 51)(4, "h3", 92);
|
|
92887
92882
|
i0.ɵɵtext(5);
|
|
92888
92883
|
i0.ɵɵelementEnd()()();
|
|
92889
|
-
i0.ɵɵconditionalCreate(6, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_For_2_Conditional_6_Template, 3, 4, "div",
|
|
92890
|
-
i0.ɵɵelement(7, "symphiq-profile-section-content",
|
|
92884
|
+
i0.ɵɵconditionalCreate(6, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_For_2_Conditional_6_Template, 3, 4, "div", 93);
|
|
92885
|
+
i0.ɵɵelement(7, "symphiq-profile-section-content", 94);
|
|
92891
92886
|
i0.ɵɵelementEnd();
|
|
92892
|
-
i0.ɵɵconditionalCreate(8, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_For_2_Conditional_8_Template, 1, 2, "symphiq-section-divider",
|
|
92887
|
+
i0.ɵɵconditionalCreate(8, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_For_2_Conditional_8_Template, 1, 2, "symphiq-section-divider", 88);
|
|
92893
92888
|
} if (rf & 2) {
|
|
92894
92889
|
const section_r15 = ctx.$implicit;
|
|
92895
|
-
const ɵ$
|
|
92896
|
-
const ɵ$
|
|
92890
|
+
const ɵ$index_221_r17 = ctx.$index;
|
|
92891
|
+
const ɵ$count_221_r19 = ctx.$count;
|
|
92897
92892
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
92898
92893
|
i0.ɵɵproperty("id", "section-" + section_r15.id)("ngClass", ctx_r1.getSectionCardClasses());
|
|
92899
92894
|
i0.ɵɵadvance(2);
|
|
@@ -92905,12 +92900,12 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_F
|
|
|
92905
92900
|
i0.ɵɵadvance();
|
|
92906
92901
|
i0.ɵɵconditional(section_r15.description || section_r15.visual && section_r15.visual.enabled ? 6 : -1);
|
|
92907
92902
|
i0.ɵɵadvance();
|
|
92908
|
-
i0.ɵɵproperty("section", section_r15)("executiveSummary", section_r15.id === "executive-summary" ? ctx_r1.executiveSummary() : undefined)("viewMode", ctx_r1.viewMode())("sectionIndex", ɵ$
|
|
92903
|
+
i0.ɵɵproperty("section", section_r15)("executiveSummary", section_r15.id === "executive-summary" ? ctx_r1.executiveSummary() : undefined)("viewMode", ctx_r1.viewMode())("sectionIndex", ɵ$index_221_r17)("allGoals", ctx_r1.allGoals())("allMetrics", ctx_r1.allMetrics())("allCharts", ctx_r1.allCharts())("allInsights", ctx_r1.allInsights())("businessProfile", ctx_r1.profile());
|
|
92909
92904
|
i0.ɵɵadvance();
|
|
92910
|
-
i0.ɵɵconditional(!(ɵ$
|
|
92905
|
+
i0.ɵɵconditional(!(ɵ$index_221_r17 === ɵ$count_221_r19 - 1) ? 8 : -1);
|
|
92911
92906
|
} }
|
|
92912
92907
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_Template(rf, ctx) { if (rf & 1) {
|
|
92913
|
-
i0.ɵɵelementStart(0, "section",
|
|
92908
|
+
i0.ɵɵelementStart(0, "section", 47);
|
|
92914
92909
|
i0.ɵɵrepeaterCreate(1, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_For_2_Template, 9, 16, null, null, _forTrack0);
|
|
92915
92910
|
i0.ɵɵelementEnd();
|
|
92916
92911
|
} if (rf & 2) {
|
|
@@ -92918,11 +92913,11 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_T
|
|
|
92918
92913
|
i0.ɵɵrepeater(ctx);
|
|
92919
92914
|
} }
|
|
92920
92915
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Template(rf, ctx) { if (rf & 1) {
|
|
92921
|
-
i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Template, 40, 34, "section",
|
|
92922
|
-
i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_1_Template, 1, 3, "symphiq-focus-area-executive-summary",
|
|
92923
|
-
i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_2_Template, 1, 4, "symphiq-metric-executive-summary",
|
|
92916
|
+
i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_0_Template, 40, 34, "section", 44);
|
|
92917
|
+
i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_1_Template, 1, 3, "symphiq-focus-area-executive-summary", 45);
|
|
92918
|
+
i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_2_Template, 1, 4, "symphiq-metric-executive-summary", 46);
|
|
92924
92919
|
i0.ɵɵconditionalCreate(3, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_3_Template, 1, 1);
|
|
92925
|
-
i0.ɵɵconditionalCreate(4, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_Template, 3, 0, "section",
|
|
92920
|
+
i0.ɵɵconditionalCreate(4, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_Template, 3, 0, "section", 47);
|
|
92926
92921
|
} if (rf & 2) {
|
|
92927
92922
|
let tmp_1_0;
|
|
92928
92923
|
let tmp_2_0;
|
|
@@ -93007,7 +93002,7 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_23_Template(rf, ct
|
|
|
93007
93002
|
} }
|
|
93008
93003
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_27_Template(rf, ctx) { if (rf & 1) {
|
|
93009
93004
|
const _r28 = i0.ɵɵgetCurrentView();
|
|
93010
|
-
i0.ɵɵelementStart(0, "symphiq-sticky-subscription-continue-button",
|
|
93005
|
+
i0.ɵɵelementStart(0, "symphiq-sticky-subscription-continue-button", 100);
|
|
93011
93006
|
i0.ɵɵlistener("continueClick", function SymphiqProfileAnalysisDashboardComponent_Conditional_27_Template_symphiq_sticky_subscription_continue_button_continueClick_0_listener() { i0.ɵɵrestoreView(_r28); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleStickyButtonClick()); });
|
|
93012
93007
|
i0.ɵɵelementEnd();
|
|
93013
93008
|
} if (rf & 2) {
|
|
@@ -93016,7 +93011,7 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_27_Template(rf, ct
|
|
|
93016
93011
|
} }
|
|
93017
93012
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_28_Template(rf, ctx) { if (rf & 1) {
|
|
93018
93013
|
const _r29 = i0.ɵɵgetCurrentView();
|
|
93019
|
-
i0.ɵɵelementStart(0, "symphiq-shop-profile-sticky-footer",
|
|
93014
|
+
i0.ɵɵelementStart(0, "symphiq-shop-profile-sticky-footer", 101);
|
|
93020
93015
|
i0.ɵɵlistener("continueClick", function SymphiqProfileAnalysisDashboardComponent_Conditional_28_Template_symphiq_shop_profile_sticky_footer_continueClick_0_listener() { i0.ɵɵrestoreView(_r29); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleShopProfileContinueClick()); });
|
|
93021
93016
|
i0.ɵɵelementEnd();
|
|
93022
93017
|
} if (rf & 2) {
|
|
@@ -93025,18 +93020,18 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_28_Template(rf, ct
|
|
|
93025
93020
|
} }
|
|
93026
93021
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_29_Template(rf, ctx) { if (rf & 1) {
|
|
93027
93022
|
const _r30 = i0.ɵɵgetCurrentView();
|
|
93028
|
-
i0.ɵɵelementStart(0, "div", 25)(1, "div",
|
|
93023
|
+
i0.ɵɵelementStart(0, "div", 25)(1, "div", 102)(2, "div", 103)(3, "button", 104);
|
|
93029
93024
|
i0.ɵɵlistener("click", function SymphiqProfileAnalysisDashboardComponent_Conditional_29_Template_button_click_3_listener() { i0.ɵɵrestoreView(_r30); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleCancelCurrencyEdit()); });
|
|
93030
93025
|
i0.ɵɵtext(4, " Cancel ");
|
|
93031
93026
|
i0.ɵɵelementEnd();
|
|
93032
|
-
i0.ɵɵelementStart(5, "button",
|
|
93027
|
+
i0.ɵɵelementStart(5, "button", 105);
|
|
93033
93028
|
i0.ɵɵlistener("click", function SymphiqProfileAnalysisDashboardComponent_Conditional_29_Template_button_click_5_listener() { i0.ɵɵrestoreView(_r30); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleContinueToPlans()); });
|
|
93034
93029
|
i0.ɵɵelementStart(6, "span");
|
|
93035
93030
|
i0.ɵɵtext(7, "Continue to Plans");
|
|
93036
93031
|
i0.ɵɵelementEnd();
|
|
93037
93032
|
i0.ɵɵnamespaceSVG();
|
|
93038
|
-
i0.ɵɵelementStart(8, "svg",
|
|
93039
|
-
i0.ɵɵelement(9, "path",
|
|
93033
|
+
i0.ɵɵelementStart(8, "svg", 106);
|
|
93034
|
+
i0.ɵɵelement(9, "path", 107);
|
|
93040
93035
|
i0.ɵɵelementEnd()()()()();
|
|
93041
93036
|
} if (rf & 2) {
|
|
93042
93037
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
@@ -93141,6 +93136,13 @@ class SymphiqProfileAnalysisDashboardComponent {
|
|
|
93141
93136
|
const status = this.profileShop()?.selfContentStatus;
|
|
93142
93137
|
return status === AiDynamicContentStatusEnum.REQUESTED || status === AiDynamicContentStatusEnum.GENERATING;
|
|
93143
93138
|
}, ...(ngDevMode ? [{ debugName: "isProfileShopGenerating" }] : []));
|
|
93139
|
+
this.isProfileAnalysisGenerating = computed(() => {
|
|
93140
|
+
const profileAnalysis = this.profileAnalysis();
|
|
93141
|
+
if (!profileAnalysis)
|
|
93142
|
+
return false;
|
|
93143
|
+
const status = profileAnalysis.selfContentStatus;
|
|
93144
|
+
return status === AiDynamicContentStatusEnum.REQUESTED || status === AiDynamicContentStatusEnum.GENERATING;
|
|
93145
|
+
}, ...(ngDevMode ? [{ debugName: "isProfileAnalysisGenerating" }] : []));
|
|
93144
93146
|
this.shouldShowShopProfileStatus = computed(() => {
|
|
93145
93147
|
const profileShop = this.profileShop();
|
|
93146
93148
|
return profileShop && profileShop.selfContentStatus === AiDynamicContentStatusEnum.GENERATED;
|
|
@@ -93981,7 +93983,7 @@ class SymphiqProfileAnalysisDashboardComponent {
|
|
|
93981
93983
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.shopProfileStatusCard = _t.first);
|
|
93982
93984
|
} }, hostBindings: function SymphiqProfileAnalysisDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
93983
93985
|
i0.ɵɵlistener("scroll", function SymphiqProfileAnalysisDashboardComponent_scroll_HostBindingHandler($event) { return ctx.onWindowScroll($event); }, i0.ɵɵresolveWindow);
|
|
93984
|
-
} }, inputs: { viewMode: [1, "viewMode"], requestedByUser: [1, "requestedByUser"], createdDate: [1, "createdDate"], embedded: [1, "embedded"], profileAnalysis: [1, "profileAnalysis"], profile: [1, "profile"], funnelAnalysis: [1, "funnelAnalysis"], analysisType: [1, "analysisType"], focusAreaDetails: [1, "focusAreaDetails"], account: [1, "account"], profileShop: [1, "profileShop"], profileShopQuestions: [1, "profileShopQuestions"], profileAnswers: [1, "profileAnswers"], profileAnswerHistories: [1, "profileAnswerHistories"], itemStatusProfileShop: [1, "itemStatusProfileShop"], itemStatusProfileAnalysis: [1, "itemStatusProfileAnalysis"], planCardInfos: [1, "planCardInfos"], isOnboarded: [1, "isOnboarded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], users: [1, "users"], isLoading: [1, "isLoading"], forDemo: [1, "forDemo"], currentUser: [1, "currentUser"], maxAccessibleStepId: [1, "maxAccessibleStepId"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick", currencySelectionClick: "currencySelectionClick", editCurrencyClick: "editCurrencyClick", periodUnitChanged: "periodUnitChanged", planSelected: "planSelected", checkoutPlanClick: "checkoutPlanClick", answerShopProfileQuestions: "answerShopProfileQuestions", continueShopProfileQuestions: "continueShopProfileQuestions", profileQuestionAnswerSave: "profileQuestionAnswerSave", shopProfileAdminAnswerAction: "shopProfileAdminAnswerAction" }, features: [i0.ɵɵNgOnChangesFeature], decls: 30, vars: 52, consts: [["shopProfileStatusCard", ""], [1, "min-h-screen", "relative", 3, "ngClass"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [1, "h-full", "transition-all", "duration-200", "ease-out", 3, "ngClass"], [1, "relative", "z-[51]"], [3, "searchClick", "viewModeClick", "title", "subtitle", "currentSection", "viewMode", "viewModeLabel", "isLoading", "requestedByUser", "createdDate", "showControls"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "relative", "z-10", "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-12", "space-y-12"], [1, "mb-12"], [3, "sections", "viewMode", "embedded", "scrollElement"], [3, "close", "isOpen", "isLightMode"], [3, "close", "modeSelected", "isOpen", "currentMode", "viewMode"], [3, "isLightMode", "allMetrics", "allInsights", "allBusinessInsights", "allCharts"], [3, "goal", "viewMode", "isInModal", "allMetrics", "allCharts", "allInsights", "currentModalState", "businessProfile"], [3, "goal", "viewMode"], [3, "objective", "goalTitle", "viewMode"], [3, "strategy", "objectiveTitle", "goalTitle", "viewMode", "allMetrics", "allCharts", "allInsights", "allBusinessInsights", "currentModalState"], [3, "category", "viewMode", "scrollToSection"], [3, "strength", "viewMode", "allFunnelStrengths", "currentModalState"], [3, "gap", "viewMode", "allGoals", "allWeaknesses", "currentModalState"], [3, "opportunity", "viewMode", "allStrengths", "currentModalState"], [3, "isLightMode", "viewMode", "allMetrics", "allInsights", "allCharts"], [3, "isLightMode"], [3, "viewMode", "isEnabled", "isLoading"], [3, "viewMode", "totalQuestions", "answeredQuestions"], [1, "fixed", "bottom-0", "left-0", "right-0", "z-50", "border-t", "backdrop-blur-lg", 3, "ngClass"], [3, "nextStepClick", "stepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [3, "viewMode", "businessName", "isOnboarded"], [3, "viewMode", "focusAreaDomain", "focusAreaName", "focusAreaDetails"], [3, "viewMode", "metricName", "isOnboarded"], [1, "mb-8"], [3, "startCategoryQuestions", "answerSave", "adminAnswerAction", "viewMode", "totalQuestions", "answeredQuestions", "questions", "profileAnswers", "profileAnswerHistories", "users", "currentUser"], [1, "rounded-2xl", "border", "shadow-lg", "overflow-hidden", 3, "ngClass"], [3, "goals", "viewMode"], ["title", "Generating Your Shop Profile", "subtitle", "We're analyzing your data to create shop specific questions and answers. They will appear when ready.", 3, "itemStatus", "viewMode"], [3, "viewMoreClick", "goals", "viewMode"], [1, "mb-32"], [3, "viewMode", "selectedCurrency"], [3, "currencySelected", "viewMode", "isLoading", "initialCurrency"], [3, "viewMode"], [3, "periodUnitChanged", "planSelected", "editCurrency", "checkout", "viewMode", "selectedCurrency", "planCardInfos", "isLoading", "selectedPeriodUnit"], [3, "editCurrency", "viewMode", "selectedCurrency"], [3, "sections", "viewMode", "executiveSummary", "focusAreaExecutiveSummary", "metricExecutiveSummary", "metricName", "allGoals", "allMetrics", "allCharts", "allInsights", "businessProfile"], ["id", "section-executive-summary", 1, "space-y-6", "scroll-mt-24"], [3, "viewMode", "summary", "allGoals"], [3, "viewMode", "summary", "metricName", "allGoals"], [1, "space-y-8"], [1, "rounded-2xl", "p-8", "shadow-xl", 3, "ngClass"], [1, "space-y-6"], [1, "flex", "items-start", "justify-between", "gap-4"], [1, "flex-1"], [1, "text-2xl", "font-bold", "mb-3", 3, "ngClass"], [1, "text-lg", "leading-relaxed", 3, "ngClass"], [3, "grade", "gradeRationale", "viewMode"], [1, "rounded-xl", "p-6", 3, "ngClass"], [1, "grid", "grid-cols-1", "md:grid-cols-3", "gap-4"], ["type", "button", 1, "p-4", "rounded-xl", "text-left", "transition-all", "duration-200", "hover:scale-[1.02]", "active:scale-[0.98]", "group", "cursor-pointer", 3, "click", "ngClass"], [1, "text-xs", "font-semibold", "uppercase", "mb-1", 3, "ngClass"], [1, "text-3xl", "font-bold", "mb-2", 3, "ngClass"], [1, "flex", "items-center", "gap-1.5", "text-xs", "font-medium"], [3, "ngClass"], ["size", "w-4 h-4", 1, "transition-transform", "group-hover:translate-x-1", 3, "icon", "ngClass"], ["size", "w-4 h-4", 1, "transition-transform", "group-hover:translate-y-1", "animate-bounce", 3, "icon", "ngClass"], ["id", "quick-wins-section", 1, "space-y-4", "scroll-mt-24"], [1, "text-lg", "font-semibold", "mb-3", 3, "ngClass"], [1, "relative"], [1, "mb-6", "lg:float-left", "lg:mr-6", "lg:mb-4", "lg:max-w-[66%]"], [1, "text-sm", "leading-relaxed", "whitespace-pre-line", 3, "ngClass"], [1, "clear-both"], [3, "visual", "viewMode"], [1, "text-xl", "font-bold", 3, "ngClass"], [1, "grid", "grid-cols-1", "lg:grid-cols-2", "gap-6"], [1, "rounded-xl", "p-6", "transition-all", "duration-300", 3, "ngClass"], [1, "space-y-4"], [1, "flex", "items-start", "gap-3"], [1, "flex-shrink-0", "w-8", "h-8", "rounded-full", "flex", "items-center", "justify-center", "text-sm", "font-bold", 3, "ngClass"], [1, "font-semibold", "leading-tight", "flex-1", 3, "ngClass"], [1, "flex", "flex-wrap", "gap-2"], [1, "px-3", "py-1", "rounded-full", "text-xs", "font-semibold", 3, "ngClass"], [1, "flex", "items-center", "gap-2", "text-sm", 3, "ngClass"], [1, "space-y-2"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", 3, "ngClass"], [3, "relatedGoalIds", "allGoals", "viewMode"], [3, "topPrioritiesClick", "priorityDetailClick", "viewMode", "summary", "allGoals"], [3, "topPrioritiesClick", "priorityDetailClick", "viewMode", "summary", "metricName", "allGoals"], [3, "viewMode", "sectionIcon"], [1, "rounded-xl", "p-8", "scroll-mt-24", 3, "id", "ngClass"], [1, "flex", "items-start", "gap-3", "mb-6"], [1, "flex-shrink-0", "w-12", "h-12", "rounded-xl", "flex", "items-center", "justify-center", 3, "ngClass"], [1, "text-2xl", "font-bold", 3, "ngClass"], [1, "mb-6", "flex", "flex-col", "lg:flex-row", "gap-6", "items-start", 3, "lg:flex-row-reverse"], [3, "section", "executiveSummary", "viewMode", "sectionIndex", "allGoals", "allMetrics", "allCharts", "allInsights", "businessProfile"], ["size", "w-6 h-6", 3, "icon"], [1, "mb-6", "flex", "flex-col", "lg:flex-row", "gap-6", "items-start"], [1, "w-full", "lg:w-2/3"], [1, "w-full", 3, "lg:w-1/3", "lg:w-full"], [1, "w-full"], [3, "continueClick", "viewMode", "isEnabled", "isLoading"], [3, "continueClick", "viewMode", "totalQuestions", "answeredQuestions"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-4"], [1, "flex", "items-center", "gap-4"], [1, "px-6", "py-4", "rounded-xl", "font-semibold", "text-lg", "transition-all", "duration-300", "cursor-pointer", 3, "click", "ngClass"], [1, "flex-1", "px-6", "py-4", "rounded-xl", "font-semibold", "text-lg", "transition-all", "duration-300", "flex", "items-center", "justify-center", "gap-3", "shadow-2xl", 3, "click", "disabled", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6", "transition-transform", "duration-200"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M13 7l5 5m0 0l-5 5m5-5H6"]], template: function SymphiqProfileAnalysisDashboardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
93986
|
+
} }, inputs: { viewMode: [1, "viewMode"], requestedByUser: [1, "requestedByUser"], createdDate: [1, "createdDate"], embedded: [1, "embedded"], profileAnalysis: [1, "profileAnalysis"], profile: [1, "profile"], funnelAnalysis: [1, "funnelAnalysis"], analysisType: [1, "analysisType"], focusAreaDetails: [1, "focusAreaDetails"], account: [1, "account"], profileShop: [1, "profileShop"], profileShopQuestions: [1, "profileShopQuestions"], profileAnswers: [1, "profileAnswers"], profileAnswerHistories: [1, "profileAnswerHistories"], itemStatusProfileShop: [1, "itemStatusProfileShop"], itemStatusProfileAnalysis: [1, "itemStatusProfileAnalysis"], planCardInfos: [1, "planCardInfos"], isOnboarded: [1, "isOnboarded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], users: [1, "users"], isLoading: [1, "isLoading"], forDemo: [1, "forDemo"], currentUser: [1, "currentUser"], maxAccessibleStepId: [1, "maxAccessibleStepId"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick", currencySelectionClick: "currencySelectionClick", editCurrencyClick: "editCurrencyClick", periodUnitChanged: "periodUnitChanged", planSelected: "planSelected", checkoutPlanClick: "checkoutPlanClick", answerShopProfileQuestions: "answerShopProfileQuestions", continueShopProfileQuestions: "continueShopProfileQuestions", profileQuestionAnswerSave: "profileQuestionAnswerSave", shopProfileAdminAnswerAction: "shopProfileAdminAnswerAction" }, features: [i0.ɵɵNgOnChangesFeature], decls: 30, vars: 52, consts: [["shopProfileStatusCard", ""], [1, "min-h-screen", "relative", 3, "ngClass"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [1, "h-full", "transition-all", "duration-200", "ease-out", 3, "ngClass"], [1, "relative", "z-[51]"], [3, "searchClick", "viewModeClick", "title", "subtitle", "currentSection", "viewMode", "viewModeLabel", "isLoading", "requestedByUser", "createdDate", "showControls"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "relative", "z-10", "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-12", "space-y-12"], [1, "mb-12"], [3, "sections", "viewMode", "embedded", "scrollElement"], [3, "close", "isOpen", "isLightMode"], [3, "close", "modeSelected", "isOpen", "currentMode", "viewMode"], [3, "isLightMode", "allMetrics", "allInsights", "allBusinessInsights", "allCharts"], [3, "goal", "viewMode", "isInModal", "allMetrics", "allCharts", "allInsights", "currentModalState", "businessProfile"], [3, "goal", "viewMode"], [3, "objective", "goalTitle", "viewMode"], [3, "strategy", "objectiveTitle", "goalTitle", "viewMode", "allMetrics", "allCharts", "allInsights", "allBusinessInsights", "currentModalState"], [3, "category", "viewMode", "scrollToSection"], [3, "strength", "viewMode", "allFunnelStrengths", "currentModalState"], [3, "gap", "viewMode", "allGoals", "allWeaknesses", "currentModalState"], [3, "opportunity", "viewMode", "allStrengths", "currentModalState"], [3, "isLightMode", "viewMode", "allMetrics", "allInsights", "allCharts"], [3, "isLightMode"], [3, "viewMode", "isEnabled", "isLoading"], [3, "viewMode", "totalQuestions", "answeredQuestions"], [1, "fixed", "bottom-0", "left-0", "right-0", "z-50", "border-t", "backdrop-blur-lg", 3, "ngClass"], [3, "nextStepClick", "stepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [3, "viewMode", "businessName", "isOnboarded"], [3, "viewMode", "focusAreaDomain", "focusAreaName", "focusAreaDetails"], [3, "viewMode", "metricName", "isOnboarded"], [1, "mb-8"], [3, "startCategoryQuestions", "answerSave", "adminAnswerAction", "viewMode", "totalQuestions", "answeredQuestions", "questions", "profileAnswers", "profileAnswerHistories", "users", "currentUser"], [1, "rounded-2xl", "border", "shadow-lg", "overflow-hidden", 3, "ngClass"], [3, "goals", "viewMode"], ["title", "Generating Your Shop Profile", "subtitle", "We're analyzing your data to create shop specific questions and answers. They will appear when ready.", 3, "itemStatus", "viewMode"], ["title", "Generating Your Profile Analysis", "subtitle", "We're analyzing your data to create your personalized analysis. It will appear when ready.", 3, "itemStatus", "viewMode"], [3, "viewMoreClick", "goals", "viewMode"], [1, "mb-32"], [3, "viewMode", "selectedCurrency"], [3, "currencySelected", "viewMode", "isLoading", "initialCurrency"], [3, "viewMode"], [3, "periodUnitChanged", "planSelected", "editCurrency", "checkout", "viewMode", "selectedCurrency", "planCardInfos", "isLoading", "selectedPeriodUnit"], [3, "editCurrency", "viewMode", "selectedCurrency"], [3, "sections", "viewMode", "executiveSummary", "focusAreaExecutiveSummary", "metricExecutiveSummary", "metricName", "allGoals", "allMetrics", "allCharts", "allInsights", "businessProfile"], ["id", "section-executive-summary", 1, "space-y-6", "scroll-mt-24"], [3, "viewMode", "summary", "allGoals"], [3, "viewMode", "summary", "metricName", "allGoals"], [1, "space-y-8"], [1, "rounded-2xl", "p-8", "shadow-xl", 3, "ngClass"], [1, "space-y-6"], [1, "flex", "items-start", "justify-between", "gap-4"], [1, "flex-1"], [1, "text-2xl", "font-bold", "mb-3", 3, "ngClass"], [1, "text-lg", "leading-relaxed", 3, "ngClass"], [3, "grade", "gradeRationale", "viewMode"], [1, "rounded-xl", "p-6", 3, "ngClass"], [1, "grid", "grid-cols-1", "md:grid-cols-3", "gap-4"], ["type", "button", 1, "p-4", "rounded-xl", "text-left", "transition-all", "duration-200", "hover:scale-[1.02]", "active:scale-[0.98]", "group", "cursor-pointer", 3, "click", "ngClass"], [1, "text-xs", "font-semibold", "uppercase", "mb-1", 3, "ngClass"], [1, "text-3xl", "font-bold", "mb-2", 3, "ngClass"], [1, "flex", "items-center", "gap-1.5", "text-xs", "font-medium"], [3, "ngClass"], ["size", "w-4 h-4", 1, "transition-transform", "group-hover:translate-x-1", 3, "icon", "ngClass"], ["size", "w-4 h-4", 1, "transition-transform", "group-hover:translate-y-1", "animate-bounce", 3, "icon", "ngClass"], ["id", "quick-wins-section", 1, "space-y-4", "scroll-mt-24"], [1, "text-lg", "font-semibold", "mb-3", 3, "ngClass"], [1, "relative"], [1, "mb-6", "lg:float-left", "lg:mr-6", "lg:mb-4", "lg:max-w-[66%]"], [1, "text-sm", "leading-relaxed", "whitespace-pre-line", 3, "ngClass"], [1, "clear-both"], [3, "visual", "viewMode"], [1, "text-xl", "font-bold", 3, "ngClass"], [1, "grid", "grid-cols-1", "lg:grid-cols-2", "gap-6"], [1, "rounded-xl", "p-6", "transition-all", "duration-300", 3, "ngClass"], [1, "space-y-4"], [1, "flex", "items-start", "gap-3"], [1, "flex-shrink-0", "w-8", "h-8", "rounded-full", "flex", "items-center", "justify-center", "text-sm", "font-bold", 3, "ngClass"], [1, "font-semibold", "leading-tight", "flex-1", 3, "ngClass"], [1, "flex", "flex-wrap", "gap-2"], [1, "px-3", "py-1", "rounded-full", "text-xs", "font-semibold", 3, "ngClass"], [1, "flex", "items-center", "gap-2", "text-sm", 3, "ngClass"], [1, "space-y-2"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", 3, "ngClass"], [3, "relatedGoalIds", "allGoals", "viewMode"], [3, "topPrioritiesClick", "priorityDetailClick", "viewMode", "summary", "allGoals"], [3, "topPrioritiesClick", "priorityDetailClick", "viewMode", "summary", "metricName", "allGoals"], [3, "viewMode", "sectionIcon"], [1, "rounded-xl", "p-8", "scroll-mt-24", 3, "id", "ngClass"], [1, "flex", "items-start", "gap-3", "mb-6"], [1, "flex-shrink-0", "w-12", "h-12", "rounded-xl", "flex", "items-center", "justify-center", 3, "ngClass"], [1, "text-2xl", "font-bold", 3, "ngClass"], [1, "mb-6", "flex", "flex-col", "lg:flex-row", "gap-6", "items-start", 3, "lg:flex-row-reverse"], [3, "section", "executiveSummary", "viewMode", "sectionIndex", "allGoals", "allMetrics", "allCharts", "allInsights", "businessProfile"], ["size", "w-6 h-6", 3, "icon"], [1, "mb-6", "flex", "flex-col", "lg:flex-row", "gap-6", "items-start"], [1, "w-full", "lg:w-2/3"], [1, "w-full", 3, "lg:w-1/3", "lg:w-full"], [1, "w-full"], [3, "continueClick", "viewMode", "isEnabled", "isLoading"], [3, "continueClick", "viewMode", "totalQuestions", "answeredQuestions"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-4"], [1, "flex", "items-center", "gap-4"], [1, "px-6", "py-4", "rounded-xl", "font-semibold", "text-lg", "transition-all", "duration-300", "cursor-pointer", 3, "click", "ngClass"], [1, "flex-1", "px-6", "py-4", "rounded-xl", "font-semibold", "text-lg", "transition-all", "duration-300", "flex", "items-center", "justify-center", "gap-3", "shadow-2xl", 3, "click", "disabled", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6", "transition-transform", "duration-200"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M13 7l5 5m0 0l-5 5m5-5H6"]], template: function SymphiqProfileAnalysisDashboardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
93985
93987
|
i0.ɵɵelementStart(0, "div", 1);
|
|
93986
93988
|
i0.ɵɵelement(1, "div", 2);
|
|
93987
93989
|
i0.ɵɵelementStart(2, "div");
|
|
@@ -94206,6 +94208,15 @@ class SymphiqProfileAnalysisDashboardComponent {
|
|
|
94206
94208
|
subtitle="We're analyzing your data to create shop specific questions and answers. They will appear when ready."
|
|
94207
94209
|
/>
|
|
94208
94210
|
</div>
|
|
94211
|
+
} @else if (isProfileAnalysisGenerating()) {
|
|
94212
|
+
<div [ngClass]="getProgressCardClasses()" class="rounded-2xl border shadow-lg overflow-hidden">
|
|
94213
|
+
<symphiq-content-generation-progress
|
|
94214
|
+
[itemStatus]="itemStatusProfileAnalysis()"
|
|
94215
|
+
[viewMode]="viewMode()"
|
|
94216
|
+
title="Generating Your Profile Analysis"
|
|
94217
|
+
subtitle="We're analyzing your data to create your personalized analysis. It will appear when ready."
|
|
94218
|
+
/>
|
|
94219
|
+
</div>
|
|
94209
94220
|
} @else {
|
|
94210
94221
|
<symphiq-strategic-goals-tiled-grid
|
|
94211
94222
|
[goals]="strategicRoadmapGoals()"
|
|
@@ -94762,7 +94773,7 @@ class SymphiqProfileAnalysisDashboardComponent {
|
|
|
94762
94773
|
type: HostListener,
|
|
94763
94774
|
args: ['window:scroll', ['$event']]
|
|
94764
94775
|
}] }); })();
|
|
94765
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileAnalysisDashboardComponent, { className: "SymphiqProfileAnalysisDashboardComponent", filePath: "lib/components/profile-analysis-dashboard/symphiq-profile-analysis-dashboard.component.ts", lineNumber:
|
|
94776
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileAnalysisDashboardComponent, { className: "SymphiqProfileAnalysisDashboardComponent", filePath: "lib/components/profile-analysis-dashboard/symphiq-profile-analysis-dashboard.component.ts", lineNumber: 791 }); })();
|
|
94766
94777
|
|
|
94767
94778
|
class ScrollProgressBarComponent {
|
|
94768
94779
|
constructor() {
|