@eric-emg/symphiq-components 1.2.330 → 1.2.331
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 +141 -91
- package/fesm2022/symphiq-components.mjs.map +1 -1
- package/index.d.ts +10 -8
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -86260,14 +86260,14 @@ class CollapsibleAnalysisSectionGroupComponent {
|
|
|
86260
86260
|
const _forTrack0$2 = ($index, $item) => $item.code;
|
|
86261
86261
|
function BillingCurrencySelectorCardComponent_For_15_Template(rf, ctx) { if (rf & 1) {
|
|
86262
86262
|
const _r1 = i0.ɵɵgetCurrentView();
|
|
86263
|
-
i0.ɵɵelementStart(0, "label", 11)(1, "input",
|
|
86263
|
+
i0.ɵɵelementStart(0, "label", 11)(1, "input", 13);
|
|
86264
86264
|
i0.ɵɵtwoWayListener("ngModelChange", function BillingCurrencySelectorCardComponent_For_15_Template_input_ngModelChange_1_listener($event) { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(); i0.ɵɵtwoWayBindingSet(ctx_r1.selectedCurrency, $event) || (ctx_r1.selectedCurrency = $event); return i0.ɵɵresetView($event); });
|
|
86265
86265
|
i0.ɵɵlistener("change", function BillingCurrencySelectorCardComponent_For_15_Template_input_change_1_listener() { const currency_r3 = i0.ɵɵrestoreView(_r1).$implicit; const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleCurrencyChange(currency_r3.code)); });
|
|
86266
86266
|
i0.ɵɵelementEnd();
|
|
86267
|
-
i0.ɵɵelementStart(2, "div",
|
|
86267
|
+
i0.ɵɵelementStart(2, "div", 14)(3, "div", 15)(4, "span", 16);
|
|
86268
86268
|
i0.ɵɵtext(5);
|
|
86269
86269
|
i0.ɵɵelementEnd();
|
|
86270
|
-
i0.ɵɵelementStart(6, "span",
|
|
86270
|
+
i0.ɵɵelementStart(6, "span", 17);
|
|
86271
86271
|
i0.ɵɵtext(7);
|
|
86272
86272
|
i0.ɵɵelementEnd()();
|
|
86273
86273
|
i0.ɵɵelementStart(8, "p", 7);
|
|
@@ -86294,11 +86294,24 @@ function BillingCurrencySelectorCardComponent_For_15_Template(rf, ctx) { if (rf
|
|
|
86294
86294
|
i0.ɵɵadvance();
|
|
86295
86295
|
i0.ɵɵtextInterpolate1(" ", currency_r3.name, " ");
|
|
86296
86296
|
} }
|
|
86297
|
+
function BillingCurrencySelectorCardComponent_Conditional_16_Template(rf, ctx) { if (rf & 1) {
|
|
86298
|
+
const _r4 = i0.ɵɵgetCurrentView();
|
|
86299
|
+
i0.ɵɵelementStart(0, "div", 12)(1, "button", 18);
|
|
86300
|
+
i0.ɵɵlistener("click", function BillingCurrencySelectorCardComponent_Conditional_16_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.cancelClick.emit()); });
|
|
86301
|
+
i0.ɵɵtext(2, " Cancel ");
|
|
86302
|
+
i0.ɵɵelementEnd()();
|
|
86303
|
+
} if (rf & 2) {
|
|
86304
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
86305
|
+
i0.ɵɵadvance();
|
|
86306
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getCancelButtonClasses());
|
|
86307
|
+
} }
|
|
86297
86308
|
class BillingCurrencySelectorCardComponent {
|
|
86298
86309
|
constructor() {
|
|
86299
86310
|
this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
|
|
86300
86311
|
this.isLoading = input(false, ...(ngDevMode ? [{ debugName: "isLoading" }] : []));
|
|
86312
|
+
this.showCancel = input(false, ...(ngDevMode ? [{ debugName: "showCancel" }] : []));
|
|
86301
86313
|
this.currencySelected = output();
|
|
86314
|
+
this.cancelClick = output();
|
|
86302
86315
|
this.selectedCurrency = signal(null, ...(ngDevMode ? [{ debugName: "selectedCurrency" }] : []));
|
|
86303
86316
|
this.currencies = [
|
|
86304
86317
|
{ code: CurrencyCodeEnum.USD, symbol: '$', name: 'United States Dollar' },
|
|
@@ -86380,8 +86393,13 @@ class BillingCurrencySelectorCardComponent {
|
|
|
86380
86393
|
? 'text-slate-400'
|
|
86381
86394
|
: 'text-slate-600';
|
|
86382
86395
|
}
|
|
86396
|
+
getCancelButtonClasses() {
|
|
86397
|
+
return this.viewMode() === ViewModeEnum.DARK
|
|
86398
|
+
? 'bg-slate-700 text-slate-300 hover:bg-slate-600 hover:text-white'
|
|
86399
|
+
: 'bg-slate-200 text-slate-700 hover:bg-slate-300 hover:text-slate-900';
|
|
86400
|
+
}
|
|
86383
86401
|
static { this.ɵfac = function BillingCurrencySelectorCardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || BillingCurrencySelectorCardComponent)(); }; }
|
|
86384
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: BillingCurrencySelectorCardComponent, selectors: [["symphiq-billing-currency-selector-card"]], inputs: { viewMode: [1, "viewMode"], isLoading: [1, "isLoading"] }, outputs: { currencySelected: "currencySelected" }, decls:
|
|
86402
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: BillingCurrencySelectorCardComponent, selectors: [["symphiq-billing-currency-selector-card"]], inputs: { viewMode: [1, "viewMode"], isLoading: [1, "isLoading"], showCancel: [1, "showCancel"] }, outputs: { currencySelected: "currencySelected", cancelClick: "cancelClick" }, decls: 17, vars: 7, consts: [[1, "rounded-2xl", "border", "shadow-lg", "overflow-hidden", 3, "ngClass"], [1, "px-6", "py-5", "border-b", 3, "ngClass"], [1, "flex", "items-center", "gap-3"], [1, "p-2.5", "rounded-lg", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M3 10h18M7 15h1m4 0h1m-7 4h12a3 3 0 003-3V8a3 3 0 00-3-3H6a3 3 0 00-3 3v8a3 3 0 003 3z"], [1, "text-xl", "font-bold", 3, "ngClass"], [1, "text-sm", "mt-0.5", 3, "ngClass"], [1, "p-6", 3, "ngClass"], [1, "space-y-6"], [1, "space-y-3"], [1, "flex", "items-center", "gap-4", "p-4", "rounded-xl", "border-2", "cursor-pointer", "transition-all", "duration-200", "hover:scale-[1.01]", 3, "ngClass"], [1, "pt-2"], ["type", "radio", 1, "w-5", "h-5", "flex-shrink-0", "cursor-pointer", "disabled:cursor-not-allowed", 3, "ngModelChange", "change", "name", "value", "ngModel", "disabled", "ngClass"], [1, "flex-1"], [1, "flex", "items-center", "gap-2"], [1, "text-lg", "font-bold", 3, "ngClass"], [1, "text-sm", 3, "ngClass"], [1, "w-full", "py-3", "px-4", "rounded-xl", "font-medium", "transition-colors", "cursor-pointer", 3, "click", "ngClass"]], template: function BillingCurrencySelectorCardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
86385
86403
|
i0.ɵɵelementStart(0, "div", 0)(1, "div", 1)(2, "div", 2)(3, "div", 3);
|
|
86386
86404
|
i0.ɵɵnamespaceSVG();
|
|
86387
86405
|
i0.ɵɵelementStart(4, "svg", 4);
|
|
@@ -86396,7 +86414,9 @@ class BillingCurrencySelectorCardComponent {
|
|
|
86396
86414
|
i0.ɵɵelementEnd()()()();
|
|
86397
86415
|
i0.ɵɵelementStart(11, "div", 8)(12, "div", 9)(13, "div", 10);
|
|
86398
86416
|
i0.ɵɵrepeaterCreate(14, BillingCurrencySelectorCardComponent_For_15_Template, 10, 12, "label", 11, _forTrack0$2);
|
|
86399
|
-
i0.ɵɵelementEnd()
|
|
86417
|
+
i0.ɵɵelementEnd();
|
|
86418
|
+
i0.ɵɵconditionalCreate(16, BillingCurrencySelectorCardComponent_Conditional_16_Template, 3, 1, "div", 12);
|
|
86419
|
+
i0.ɵɵelementEnd()()();
|
|
86400
86420
|
} if (rf & 2) {
|
|
86401
86421
|
i0.ɵɵproperty("ngClass", ctx.containerClasses());
|
|
86402
86422
|
i0.ɵɵadvance();
|
|
@@ -86411,6 +86431,8 @@ class BillingCurrencySelectorCardComponent {
|
|
|
86411
86431
|
i0.ɵɵproperty("ngClass", ctx.contentClasses());
|
|
86412
86432
|
i0.ɵɵadvance(3);
|
|
86413
86433
|
i0.ɵɵrepeater(ctx.currencies);
|
|
86434
|
+
i0.ɵɵadvance(2);
|
|
86435
|
+
i0.ɵɵconditional(ctx.showCancel() ? 16 : -1);
|
|
86414
86436
|
} }, dependencies: [CommonModule, i1$1.NgClass, FormsModule, i2$1.DefaultValueAccessor, i2$1.RadioControlValueAccessor, i2$1.NgControlStatus, i2$1.NgModel], encapsulation: 2, changeDetection: 0 }); }
|
|
86415
86437
|
}
|
|
86416
86438
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BillingCurrencySelectorCardComponent, [{
|
|
@@ -86420,66 +86442,78 @@ class BillingCurrencySelectorCardComponent {
|
|
|
86420
86442
|
standalone: true,
|
|
86421
86443
|
imports: [CommonModule, FormsModule],
|
|
86422
86444
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
86423
|
-
template: `
|
|
86424
|
-
<div [ngClass]="containerClasses()" class="rounded-2xl border shadow-lg overflow-hidden">
|
|
86425
|
-
<div [ngClass]="headerClasses()" class="px-6 py-5 border-b">
|
|
86426
|
-
<div class="flex items-center gap-3">
|
|
86427
|
-
<div [ngClass]="iconContainerClasses()" class="p-2.5 rounded-lg">
|
|
86428
|
-
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
86429
|
-
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 10h18M7 15h1m4 0h1m-7 4h12a3 3 0 003-3V8a3 3 0 00-3-3H6a3 3 0 00-3 3v8a3 3 0 003 3z"></path>
|
|
86430
|
-
</svg>
|
|
86431
|
-
</div>
|
|
86432
|
-
<div>
|
|
86433
|
-
<h2 [ngClass]="titleClasses()" class="text-xl font-bold">
|
|
86434
|
-
Select Your Billing Currency
|
|
86435
|
-
</h2>
|
|
86436
|
-
<p [ngClass]="subtitleClasses()" class="text-sm mt-0.5">
|
|
86437
|
-
Choose the currency for your subscription
|
|
86438
|
-
</p>
|
|
86439
|
-
</div>
|
|
86440
|
-
</div>
|
|
86441
|
-
</div>
|
|
86442
|
-
|
|
86443
|
-
<div [ngClass]="contentClasses()" class="p-6">
|
|
86444
|
-
<div class="space-y-6">
|
|
86445
|
-
<div class="space-y-3">
|
|
86446
|
-
@for (currency of currencies; track currency.code) {
|
|
86447
|
-
<label
|
|
86448
|
-
[ngClass]="getCurrencyOptionClasses(currency.code)"
|
|
86449
|
-
class="flex items-center gap-4 p-4 rounded-xl border-2 cursor-pointer transition-all duration-200 hover:scale-[1.01]">
|
|
86450
|
-
<input
|
|
86451
|
-
type="radio"
|
|
86452
|
-
[name]="'currency'"
|
|
86453
|
-
[value]="currency.code"
|
|
86454
|
-
[(ngModel)]="selectedCurrency"
|
|
86455
|
-
(change)="handleCurrencyChange(currency.code)"
|
|
86456
|
-
[disabled]="isLoading()"
|
|
86457
|
-
[ngClass]="getRadioClasses()"
|
|
86458
|
-
class="w-5 h-5 flex-shrink-0 cursor-pointer disabled:cursor-not-allowed"
|
|
86459
|
-
/>
|
|
86460
|
-
<div class="flex-1">
|
|
86461
|
-
<div class="flex items-center gap-2">
|
|
86462
|
-
<span [ngClass]="getCurrencyCodeClasses()" class="text-lg font-bold">
|
|
86463
|
-
{{ currency.code }}
|
|
86464
|
-
</span>
|
|
86465
|
-
<span [ngClass]="getCurrencySymbolClasses()" class="text-sm">
|
|
86466
|
-
({{ currency.symbol }})
|
|
86467
|
-
</span>
|
|
86468
|
-
</div>
|
|
86469
|
-
<p [ngClass]="getCurrencyNameClasses()" class="text-sm mt-0.5">
|
|
86470
|
-
{{ currency.name }}
|
|
86471
|
-
</p>
|
|
86472
|
-
</div>
|
|
86473
|
-
</label>
|
|
86474
|
-
}
|
|
86475
|
-
</div>
|
|
86476
|
-
|
|
86477
|
-
|
|
86478
|
-
|
|
86445
|
+
template: `
|
|
86446
|
+
<div [ngClass]="containerClasses()" class="rounded-2xl border shadow-lg overflow-hidden">
|
|
86447
|
+
<div [ngClass]="headerClasses()" class="px-6 py-5 border-b">
|
|
86448
|
+
<div class="flex items-center gap-3">
|
|
86449
|
+
<div [ngClass]="iconContainerClasses()" class="p-2.5 rounded-lg">
|
|
86450
|
+
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
86451
|
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 10h18M7 15h1m4 0h1m-7 4h12a3 3 0 003-3V8a3 3 0 00-3-3H6a3 3 0 00-3 3v8a3 3 0 003 3z"></path>
|
|
86452
|
+
</svg>
|
|
86453
|
+
</div>
|
|
86454
|
+
<div>
|
|
86455
|
+
<h2 [ngClass]="titleClasses()" class="text-xl font-bold">
|
|
86456
|
+
Select Your Billing Currency
|
|
86457
|
+
</h2>
|
|
86458
|
+
<p [ngClass]="subtitleClasses()" class="text-sm mt-0.5">
|
|
86459
|
+
Choose the currency for your subscription
|
|
86460
|
+
</p>
|
|
86461
|
+
</div>
|
|
86462
|
+
</div>
|
|
86463
|
+
</div>
|
|
86464
|
+
|
|
86465
|
+
<div [ngClass]="contentClasses()" class="p-6">
|
|
86466
|
+
<div class="space-y-6">
|
|
86467
|
+
<div class="space-y-3">
|
|
86468
|
+
@for (currency of currencies; track currency.code) {
|
|
86469
|
+
<label
|
|
86470
|
+
[ngClass]="getCurrencyOptionClasses(currency.code)"
|
|
86471
|
+
class="flex items-center gap-4 p-4 rounded-xl border-2 cursor-pointer transition-all duration-200 hover:scale-[1.01]">
|
|
86472
|
+
<input
|
|
86473
|
+
type="radio"
|
|
86474
|
+
[name]="'currency'"
|
|
86475
|
+
[value]="currency.code"
|
|
86476
|
+
[(ngModel)]="selectedCurrency"
|
|
86477
|
+
(change)="handleCurrencyChange(currency.code)"
|
|
86478
|
+
[disabled]="isLoading()"
|
|
86479
|
+
[ngClass]="getRadioClasses()"
|
|
86480
|
+
class="w-5 h-5 flex-shrink-0 cursor-pointer disabled:cursor-not-allowed"
|
|
86481
|
+
/>
|
|
86482
|
+
<div class="flex-1">
|
|
86483
|
+
<div class="flex items-center gap-2">
|
|
86484
|
+
<span [ngClass]="getCurrencyCodeClasses()" class="text-lg font-bold">
|
|
86485
|
+
{{ currency.code }}
|
|
86486
|
+
</span>
|
|
86487
|
+
<span [ngClass]="getCurrencySymbolClasses()" class="text-sm">
|
|
86488
|
+
({{ currency.symbol }})
|
|
86489
|
+
</span>
|
|
86490
|
+
</div>
|
|
86491
|
+
<p [ngClass]="getCurrencyNameClasses()" class="text-sm mt-0.5">
|
|
86492
|
+
{{ currency.name }}
|
|
86493
|
+
</p>
|
|
86494
|
+
</div>
|
|
86495
|
+
</label>
|
|
86496
|
+
}
|
|
86497
|
+
</div>
|
|
86498
|
+
|
|
86499
|
+
@if (showCancel()) {
|
|
86500
|
+
<div class="pt-2">
|
|
86501
|
+
<button
|
|
86502
|
+
(click)="cancelClick.emit()"
|
|
86503
|
+
[ngClass]="getCancelButtonClasses()"
|
|
86504
|
+
class="w-full py-3 px-4 rounded-xl font-medium transition-colors cursor-pointer"
|
|
86505
|
+
>
|
|
86506
|
+
Cancel
|
|
86507
|
+
</button>
|
|
86508
|
+
</div>
|
|
86509
|
+
}
|
|
86510
|
+
</div>
|
|
86511
|
+
</div>
|
|
86512
|
+
</div>
|
|
86479
86513
|
`
|
|
86480
86514
|
}]
|
|
86481
|
-
}], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], isLoading: [{ type: i0.Input, args: [{ isSignal: true, alias: "isLoading", required: false }] }], currencySelected: [{ type: i0.Output, args: ["currencySelected"] }] }); })();
|
|
86482
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(BillingCurrencySelectorCardComponent, { className: "BillingCurrencySelectorCardComponent", filePath: "lib/components/profile-analysis-dashboard/cards/billing-currency-selector-card.component.ts", lineNumber:
|
|
86515
|
+
}], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], isLoading: [{ type: i0.Input, args: [{ isSignal: true, alias: "isLoading", required: false }] }], showCancel: [{ type: i0.Input, args: [{ isSignal: true, alias: "showCancel", required: false }] }], currencySelected: [{ type: i0.Output, args: ["currencySelected"] }], cancelClick: [{ type: i0.Output, args: ["cancelClick"] }] }); })();
|
|
86516
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(BillingCurrencySelectorCardComponent, { className: "BillingCurrencySelectorCardComponent", filePath: "lib/components/profile-analysis-dashboard/cards/billing-currency-selector-card.component.ts", lineNumber: 81 }); })();
|
|
86483
86517
|
|
|
86484
86518
|
class PlanSelectionPlaceholderCardComponent {
|
|
86485
86519
|
constructor() {
|
|
@@ -88340,20 +88374,26 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_1_Te
|
|
|
88340
88374
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
88341
88375
|
i0.ɵɵproperty("goals", ctx_r1.strategicRoadmapGoals())("viewMode", ctx_r1.viewMode());
|
|
88342
88376
|
} }
|
|
88343
|
-
function
|
|
88344
|
-
const _r4 = i0.ɵɵgetCurrentView();
|
|
88377
|
+
function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_0_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
88345
88378
|
i0.ɵɵelementStart(0, "div", 27);
|
|
88346
|
-
i0.ɵɵelement(1, "symphiq-subscription-value-proposition-card",
|
|
88347
|
-
i0.ɵɵelementEnd();
|
|
88348
|
-
i0.ɵɵelementStart(2, "symphiq-billing-currency-selector-card", 33);
|
|
88349
|
-
i0.ɵɵlistener("currencySelected", function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_0_Template_symphiq_billing_currency_selector_card_currencySelected_2_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.handleCurrencySelection($event)); });
|
|
88379
|
+
i0.ɵɵelement(1, "symphiq-subscription-value-proposition-card", 33);
|
|
88350
88380
|
i0.ɵɵelementEnd();
|
|
88351
88381
|
} if (rf & 2) {
|
|
88352
|
-
const ctx_r1 = i0.ɵɵnextContext(
|
|
88382
|
+
const ctx_r1 = i0.ɵɵnextContext(4);
|
|
88353
88383
|
i0.ɵɵadvance();
|
|
88354
88384
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode());
|
|
88385
|
+
} }
|
|
88386
|
+
function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
88387
|
+
const _r4 = i0.ɵɵgetCurrentView();
|
|
88388
|
+
i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_0_Conditional_0_Template, 2, 1, "div", 27);
|
|
88389
|
+
i0.ɵɵelementStart(1, "symphiq-billing-currency-selector-card", 32);
|
|
88390
|
+
i0.ɵɵlistener("currencySelected", function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_0_Template_symphiq_billing_currency_selector_card_currencySelected_1_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.handleCurrencySelection($event)); })("cancelClick", function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_0_Template_symphiq_billing_currency_selector_card_cancelClick_1_listener() { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.handleCancelCurrencyEdit()); });
|
|
88391
|
+
i0.ɵɵelementEnd();
|
|
88392
|
+
} if (rf & 2) {
|
|
88393
|
+
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
88394
|
+
i0.ɵɵconditional(!ctx_r1.hasBillingCurrency() ? 0 : -1);
|
|
88355
88395
|
i0.ɵɵadvance();
|
|
88356
|
-
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("isLoading", ctx_r1.isCurrencySelectionLoading());
|
|
88396
|
+
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("isLoading", ctx_r1.isCurrencySelectionLoading())("showCancel", ctx_r1.isEditingCurrency());
|
|
88357
88397
|
} }
|
|
88358
88398
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
88359
88399
|
const _r5 = i0.ɵɵgetCurrentView();
|
|
@@ -88377,10 +88417,10 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_2_Co
|
|
|
88377
88417
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("selectedCurrency", ((tmp_4_0 = ctx_r1.account()) == null ? null : tmp_4_0.billingCurrencyCode) || ctx_r1.CurrencyCodeEnum.USD);
|
|
88378
88418
|
} }
|
|
88379
88419
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
88380
|
-
i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_0_Template,
|
|
88420
|
+
i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_0_Template, 2, 4)(1, SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_1_Template, 2, 5, "div", 30)(2, SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_2_Template, 1, 2, "symphiq-plan-selection-placeholder-card", 31);
|
|
88381
88421
|
} if (rf & 2) {
|
|
88382
88422
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
88383
|
-
i0.ɵɵconditional(!ctx_r1.hasBillingCurrency() ? 0 : ctx_r1.showPlanSelection() ? 1 : 2);
|
|
88423
|
+
i0.ɵɵconditional(!ctx_r1.hasBillingCurrency() || ctx_r1.isEditingCurrency() ? 0 : ctx_r1.showPlanSelection() ? 1 : 2);
|
|
88384
88424
|
} }
|
|
88385
88425
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_9_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
88386
88426
|
i0.ɵɵelementStart(0, "div");
|
|
@@ -88711,8 +88751,8 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_F
|
|
|
88711
88751
|
} if (rf & 2) {
|
|
88712
88752
|
const ctx_r14 = i0.ɵɵnextContext();
|
|
88713
88753
|
const section_r14 = ctx_r14.$implicit;
|
|
88714
|
-
const ɵ$
|
|
88715
|
-
i0.ɵɵclassProp("lg:flex-row-reverse", ɵ$
|
|
88754
|
+
const ɵ$index_204_r16 = ctx_r14.$index;
|
|
88755
|
+
i0.ɵɵclassProp("lg:flex-row-reverse", ɵ$index_204_r16 % 2 === 0);
|
|
88716
88756
|
i0.ɵɵadvance();
|
|
88717
88757
|
i0.ɵɵconditional(section_r14.visual && section_r14.visual.enabled ? 1 : -1);
|
|
88718
88758
|
i0.ɵɵadvance();
|
|
@@ -88721,10 +88761,10 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_F
|
|
|
88721
88761
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_For_2_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
88722
88762
|
i0.ɵɵelement(0, "symphiq-section-divider", 81);
|
|
88723
88763
|
} if (rf & 2) {
|
|
88724
|
-
const ɵ$
|
|
88764
|
+
const ɵ$index_204_r16 = i0.ɵɵnextContext().$index;
|
|
88725
88765
|
const sectionList_r17 = i0.ɵɵnextContext();
|
|
88726
88766
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
88727
|
-
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r17[ɵ$
|
|
88767
|
+
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r17[ɵ$index_204_r16 + 1].icon);
|
|
88728
88768
|
} }
|
|
88729
88769
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
88730
88770
|
i0.ɵɵelementStart(0, "div", 82)(1, "div", 83);
|
|
@@ -88738,8 +88778,8 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_F
|
|
|
88738
88778
|
i0.ɵɵconditionalCreate(8, SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_For_2_Conditional_8_Template, 1, 2, "symphiq-section-divider", 81);
|
|
88739
88779
|
} if (rf & 2) {
|
|
88740
88780
|
const section_r14 = ctx.$implicit;
|
|
88741
|
-
const ɵ$
|
|
88742
|
-
const ɵ$
|
|
88781
|
+
const ɵ$index_204_r16 = ctx.$index;
|
|
88782
|
+
const ɵ$count_204_r18 = ctx.$count;
|
|
88743
88783
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
88744
88784
|
i0.ɵɵproperty("id", "section-" + section_r14.id)("ngClass", ctx_r1.getSectionCardClasses());
|
|
88745
88785
|
i0.ɵɵadvance(2);
|
|
@@ -88751,9 +88791,9 @@ function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_F
|
|
|
88751
88791
|
i0.ɵɵadvance();
|
|
88752
88792
|
i0.ɵɵconditional(section_r14.description || section_r14.visual && section_r14.visual.enabled ? 6 : -1);
|
|
88753
88793
|
i0.ɵɵadvance();
|
|
88754
|
-
i0.ɵɵproperty("section", section_r14)("executiveSummary", section_r14.id === "executive-summary" ? ctx_r1.executiveSummary() : undefined)("viewMode", ctx_r1.viewMode())("sectionIndex", ɵ$
|
|
88794
|
+
i0.ɵɵproperty("section", section_r14)("executiveSummary", section_r14.id === "executive-summary" ? ctx_r1.executiveSummary() : undefined)("viewMode", ctx_r1.viewMode())("sectionIndex", ɵ$index_204_r16)("allGoals", ctx_r1.allGoals())("allMetrics", ctx_r1.allMetrics())("allCharts", ctx_r1.allCharts())("allInsights", ctx_r1.allInsights())("businessProfile", ctx_r1.profile());
|
|
88755
88795
|
i0.ɵɵadvance();
|
|
88756
|
-
i0.ɵɵconditional(!(ɵ$
|
|
88796
|
+
i0.ɵɵconditional(!(ɵ$index_204_r16 === ɵ$count_204_r18 - 1) ? 8 : -1);
|
|
88757
88797
|
} }
|
|
88758
88798
|
function SymphiqProfileAnalysisDashboardComponent_Conditional_10_Conditional_4_Template(rf, ctx) { if (rf & 1) {
|
|
88759
88799
|
i0.ɵɵelementStart(0, "section", 40);
|
|
@@ -88888,6 +88928,7 @@ class SymphiqProfileAnalysisDashboardComponent {
|
|
|
88888
88928
|
this.isCurrencySelectionLoading = signal(false, ...(ngDevMode ? [{ debugName: "isCurrencySelectionLoading" }] : []));
|
|
88889
88929
|
this.selectedCurrency = signal(null, ...(ngDevMode ? [{ debugName: "selectedCurrency" }] : []));
|
|
88890
88930
|
this.isPlanLoading = signal(false, ...(ngDevMode ? [{ debugName: "isPlanLoading" }] : []));
|
|
88931
|
+
this.isEditingCurrency = signal(false, ...(ngDevMode ? [{ debugName: "isEditingCurrency" }] : []));
|
|
88891
88932
|
this.selectedPeriodUnit = computed(() => {
|
|
88892
88933
|
return this.account()?.onboardingPeriodUnit || ChargebeeItemPricePeriodUnitEnum.YEAR;
|
|
88893
88934
|
}, ...(ngDevMode ? [{ debugName: "selectedPeriodUnit" }] : []));
|
|
@@ -89639,6 +89680,7 @@ class SymphiqProfileAnalysisDashboardComponent {
|
|
|
89639
89680
|
handleCurrencySelection(currency) {
|
|
89640
89681
|
this.isCurrencySelectionLoading.set(true);
|
|
89641
89682
|
this.selectedCurrency.set(currency);
|
|
89683
|
+
this.isEditingCurrency.set(false);
|
|
89642
89684
|
this.currencySelectionClick.emit(currency);
|
|
89643
89685
|
}
|
|
89644
89686
|
handlePeriodUnitChange(periodUnit) {
|
|
@@ -89649,8 +89691,12 @@ class SymphiqProfileAnalysisDashboardComponent {
|
|
|
89649
89691
|
this.planSelected.emit(plan);
|
|
89650
89692
|
}
|
|
89651
89693
|
handleEditCurrencyClick() {
|
|
89652
|
-
console.log('[ProfileAnalysisDashboard] Edit currency clicked,
|
|
89653
|
-
this.
|
|
89694
|
+
console.log('[ProfileAnalysisDashboard] Edit currency clicked, setting isEditingCurrency to true');
|
|
89695
|
+
this.isEditingCurrency.set(true);
|
|
89696
|
+
}
|
|
89697
|
+
handleCancelCurrencyEdit() {
|
|
89698
|
+
console.log('[ProfileAnalysisDashboard] Cancel currency edit clicked');
|
|
89699
|
+
this.isEditingCurrency.set(false);
|
|
89654
89700
|
}
|
|
89655
89701
|
static { this.ɵfac = function SymphiqProfileAnalysisDashboardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SymphiqProfileAnalysisDashboardComponent)(); }; }
|
|
89656
89702
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SymphiqProfileAnalysisDashboardComponent, selectors: [["symphiq-profile-analysis-dashboard"]], viewQuery: function SymphiqProfileAnalysisDashboardComponent_Query(rf, ctx) { if (rf & 1) {
|
|
@@ -89660,7 +89706,7 @@ class SymphiqProfileAnalysisDashboardComponent {
|
|
|
89660
89706
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.funnelModalComponent = _t.first);
|
|
89661
89707
|
} }, hostBindings: function SymphiqProfileAnalysisDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
89662
89708
|
i0.ɵɵlistener("scroll", function SymphiqProfileAnalysisDashboardComponent_scroll_HostBindingHandler($event) { return ctx.onWindowScroll($event); }, i0.ɵɵresolveWindow);
|
|
89663
|
-
} }, 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"], planCardInfos: [1, "planCardInfos"], isOnboarded: [1, "isOnboarded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], isLoading: [1, "isLoading"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick", currencySelectionClick: "currencySelectionClick", editCurrencyClick: "editCurrencyClick", periodUnitChanged: "periodUnitChanged", planSelected: "planSelected" }, features: [i0.ɵɵNgOnChangesFeature], decls: 28, vars: 49, consts: [[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"], [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, "nextStepClick", "stepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [3, "viewMode", "businessName", "isOnboarded"], [3, "viewMode", "focusAreaDomain", "focusAreaName", "focusAreaDetails"], [3, "viewMode", "metricName", "isOnboarded"], [1, "mb-8"], [3, "goals", "viewMode"], [3, "viewMoreClick", "goals", "viewMode"], [1, "mb-32"], [3, "viewMode", "selectedCurrency"], [3, "
|
|
89709
|
+
} }, 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"], planCardInfos: [1, "planCardInfos"], isOnboarded: [1, "isOnboarded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], isLoading: [1, "isLoading"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick", currencySelectionClick: "currencySelectionClick", editCurrencyClick: "editCurrencyClick", periodUnitChanged: "periodUnitChanged", planSelected: "planSelected" }, features: [i0.ɵɵNgOnChangesFeature], decls: 28, vars: 49, consts: [[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"], [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, "nextStepClick", "stepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [3, "viewMode", "businessName", "isOnboarded"], [3, "viewMode", "focusAreaDomain", "focusAreaName", "focusAreaDetails"], [3, "viewMode", "metricName", "isOnboarded"], [1, "mb-8"], [3, "goals", "viewMode"], [3, "viewMoreClick", "goals", "viewMode"], [1, "mb-32"], [3, "viewMode", "selectedCurrency"], [3, "currencySelected", "cancelClick", "viewMode", "isLoading", "showCancel"], [3, "viewMode"], [3, "periodUnitChanged", "planSelected", "editCurrency", "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"]], template: function SymphiqProfileAnalysisDashboardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
89664
89710
|
i0.ɵɵelementStart(0, "div", 0);
|
|
89665
89711
|
i0.ɵɵelement(1, "div", 1);
|
|
89666
89712
|
i0.ɵɵelementStart(2, "div");
|
|
@@ -89853,18 +89899,22 @@ class SymphiqProfileAnalysisDashboardComponent {
|
|
|
89853
89899
|
/>
|
|
89854
89900
|
} @else {
|
|
89855
89901
|
<!-- Subscription Value Proposition -->
|
|
89856
|
-
@if (!hasBillingCurrency()) {
|
|
89857
|
-
|
|
89858
|
-
<
|
|
89859
|
-
|
|
89860
|
-
|
|
89861
|
-
|
|
89902
|
+
@if (!hasBillingCurrency() || isEditingCurrency()) {
|
|
89903
|
+
@if (!hasBillingCurrency()) {
|
|
89904
|
+
<div class="mb-8">
|
|
89905
|
+
<symphiq-subscription-value-proposition-card
|
|
89906
|
+
[viewMode]="viewMode()"
|
|
89907
|
+
/>
|
|
89908
|
+
</div>
|
|
89909
|
+
}
|
|
89862
89910
|
|
|
89863
89911
|
<!-- Currency Selection -->
|
|
89864
89912
|
<symphiq-billing-currency-selector-card
|
|
89865
89913
|
[viewMode]="viewMode()"
|
|
89866
89914
|
[isLoading]="isCurrencySelectionLoading()"
|
|
89915
|
+
[showCancel]="isEditingCurrency()"
|
|
89867
89916
|
(currencySelected)="handleCurrencySelection($event)"
|
|
89917
|
+
(cancelClick)="handleCancelCurrencyEdit()"
|
|
89868
89918
|
/>
|
|
89869
89919
|
} @else if (showPlanSelection()) {
|
|
89870
89920
|
<!-- Plan Selection -->
|
|
@@ -90348,7 +90398,7 @@ class SymphiqProfileAnalysisDashboardComponent {
|
|
|
90348
90398
|
type: HostListener,
|
|
90349
90399
|
args: ['window:scroll', ['$event']]
|
|
90350
90400
|
}] }); })();
|
|
90351
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileAnalysisDashboardComponent, { className: "SymphiqProfileAnalysisDashboardComponent", filePath: "lib/components/profile-analysis-dashboard/symphiq-profile-analysis-dashboard.component.ts", lineNumber:
|
|
90401
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileAnalysisDashboardComponent, { className: "SymphiqProfileAnalysisDashboardComponent", filePath: "lib/components/profile-analysis-dashboard/symphiq-profile-analysis-dashboard.component.ts", lineNumber: 690 }); })();
|
|
90352
90402
|
|
|
90353
90403
|
class ScrollProgressBarComponent {
|
|
90354
90404
|
constructor() {
|