@flarehr/apollo-super-selection 3.25.54167 → 3.29.54500
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/dist/lib/apollo-super-selection/apollo-super-selection.esm.js +1 -1
- package/dist/lib/apollo-super-selection/assets/logo-art.svg +7 -0
- package/dist/lib/apollo-super-selection/assets/logo-aware.svg +1 -0
- package/dist/lib/apollo-super-selection/p-788d2ef9.entry.js +14 -0
- package/dist/lib/apollo-super-selection/p-d82b00ed.system.js +1 -1
- package/dist/lib/apollo-super-selection/p-f1b5530d.system.entry.js +69 -0
- package/dist/lib/cjs/apollo-super-selection.cjs.js +1 -1
- package/dist/lib/cjs/fl-button_46.cjs.entry.js +121 -98
- package/dist/lib/cjs/loader.cjs.js +1 -1
- package/dist/lib/collection/components/super-selection-app/funds/constants.js +37 -21
- package/dist/lib/collection/components/super-selection-app/funds/qsuper/qsuper-confirm-header.js +3 -4
- package/dist/lib/collection/components/super-selection-app/funds/qsuper/qsuper-confirm-selection/qsuper-confirm-selection.js +2 -3
- package/dist/lib/collection/components/super-selection-app/funds/qsuper/qsuper-consent/qsuper-consent.js +2 -3
- package/dist/lib/collection/components/super-selection-app/funds/qsuper/qsuper-insurance-opt-in.js +7 -8
- package/dist/lib/collection/components/super-selection-app/funds/qsuper/qsuper-layout.js +5 -5
- package/dist/lib/collection/components/super-selection-app/services/selected-super-choice-info.service.js +3 -6
- package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/logo-art.svg +7 -0
- package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/logo-aware.svg +1 -0
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-item.js +5 -23
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.css +13 -2
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +68 -43
- package/dist/lib/esm/apollo-super-selection.js +1 -1
- package/dist/lib/esm/fl-button_46.entry.js +121 -98
- package/dist/lib/esm/loader.js +1 -1
- package/dist/lib/esm-es5/apollo-super-selection.js +1 -1
- package/dist/lib/esm-es5/fl-button_46.entry.js +3 -3
- package/dist/lib/esm-es5/loader.js +1 -1
- package/dist/lib/types/components/super-selection-app/api/super-selection-events.model.d.ts +2 -8
- package/dist/lib/types/components/super-selection-app/funds/constants.d.ts +35 -21
- package/dist/lib/types/components/super-selection-app/super-choice-page/super-choice-item.d.ts +1 -2
- package/dist/lib/types/components.d.ts +1 -3
- package/package.json +1 -1
- package/dist/lib/apollo-super-selection/p-02d06d31.entry.js +0 -14
- package/dist/lib/apollo-super-selection/p-21609443.system.entry.js +0 -69
|
@@ -261,7 +261,7 @@ class TapSubscriber extends Subscriber {
|
|
|
261
261
|
}
|
|
262
262
|
}
|
|
263
263
|
|
|
264
|
-
const AppVersion = '3.
|
|
264
|
+
const AppVersion = '3.29.54500';
|
|
265
265
|
|
|
266
266
|
// -------------------------------------------------------------------------------------
|
|
267
267
|
// guards
|
|
@@ -4505,27 +4505,43 @@ const PromotedFundStandardChoicePage = class {
|
|
|
4505
4505
|
}
|
|
4506
4506
|
};
|
|
4507
4507
|
|
|
4508
|
-
const
|
|
4509
|
-
|
|
4510
|
-
|
|
4511
|
-
|
|
4512
|
-
|
|
4513
|
-
|
|
4514
|
-
|
|
4515
|
-
|
|
4516
|
-
|
|
4517
|
-
|
|
4518
|
-
|
|
4519
|
-
|
|
4520
|
-
const
|
|
4521
|
-
|
|
4522
|
-
|
|
4523
|
-
|
|
4524
|
-
|
|
4525
|
-
|
|
4526
|
-
|
|
4527
|
-
const
|
|
4528
|
-
|
|
4508
|
+
const QSuper = {
|
|
4509
|
+
Id: 'qsuper',
|
|
4510
|
+
Name: 'QSuper',
|
|
4511
|
+
InsuranceName: 'QSuper Insurance',
|
|
4512
|
+
Usi: '60905115063001',
|
|
4513
|
+
Abn: '32 125 059 006',
|
|
4514
|
+
PdsUrl: 'https://qsuper.qld.gov.au/calculators-and-forms/publications/product-disclosure-statements',
|
|
4515
|
+
PdsPdf: 'https://qsuper.qld.gov.au/-/media/pdfs/qsuper-public/publications/pds11.pdf',
|
|
4516
|
+
MinAge: 14,
|
|
4517
|
+
MinInsuranceAge: 16,
|
|
4518
|
+
MaxAge: 16
|
|
4519
|
+
};
|
|
4520
|
+
const Slate = {
|
|
4521
|
+
Id: 'slate',
|
|
4522
|
+
Name: 'Slate Super',
|
|
4523
|
+
PdsUrl: 'https://slate.co/pds/?utm_source=flare&utm_medium=superselection',
|
|
4524
|
+
Usi: '32367272075001',
|
|
4525
|
+
DiversaAbn: '49 006 421 638'
|
|
4526
|
+
};
|
|
4527
|
+
const AustralianRetirementTrust = {
|
|
4528
|
+
Id: 'australian-retirement-trust',
|
|
4529
|
+
Name: 'Australian Retirement Trust',
|
|
4530
|
+
PdsUrl: 'https://www.australianretirementtrust.com.au/library/media/pdfs/pds/super-savings-product-disclosure-statement-and-membership-form.pdf',
|
|
4531
|
+
Abn: '60 905 115 063'
|
|
4532
|
+
};
|
|
4533
|
+
const Aware = {
|
|
4534
|
+
Id: 'aware',
|
|
4535
|
+
Name: 'Aware Super',
|
|
4536
|
+
PdsUrl: 'https://aware.com.au/member/forms-and-resources/pds',
|
|
4537
|
+
Abn: '53 226 460 365'
|
|
4538
|
+
};
|
|
4539
|
+
const PromotedFundIdList = [
|
|
4540
|
+
{ dtoPropName: 'qSuper', id: QSuper.Id },
|
|
4541
|
+
{ dtoPropName: 'slate', id: Slate.Id },
|
|
4542
|
+
{ dtoPropName: 'australianRetirementTrust', id: AustralianRetirementTrust.Id },
|
|
4543
|
+
{ dtoPropName: 'aware', id: Aware.Id }
|
|
4544
|
+
];
|
|
4529
4545
|
|
|
4530
4546
|
const qsuperConfirmationCss = "";
|
|
4531
4547
|
|
|
@@ -4536,13 +4552,12 @@ const QsuperConfirmHeader = class {
|
|
|
4536
4552
|
}
|
|
4537
4553
|
render() {
|
|
4538
4554
|
const qSuperAccumulationAccountUrl = 'https://qsuper.qld.gov.au/-/media/pdfs/qsuper-public/publications/pds1.pdf';
|
|
4539
|
-
return (h("div", { class: "d-flex align-items-center justify-content-center" }, h("p", { class: "confirm-title font-weight-bold text-center" }, "You are now applying for a", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl(qSuperAccumulationAccountUrl) }, "QSuper Accumulation Account"), ". Read the", ' ', h("a", { target: "_blank", onClick: () => this.pdsViewedAsync(), href: navigationService.toExternalUrl(
|
|
4555
|
+
return (h("div", { class: "d-flex align-items-center justify-content-center" }, h("p", { class: "confirm-title font-weight-bold text-center" }, "You are now applying for a", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl(qSuperAccumulationAccountUrl) }, "QSuper Accumulation Account"), ". Read the", ' ', h("a", { target: "_blank", onClick: () => this.pdsViewedAsync(), href: navigationService.toExternalUrl(QSuper.PdsPdf) }, "PDS"), ' ', "here.")));
|
|
4540
4556
|
}
|
|
4541
4557
|
pdsViewedAsync() {
|
|
4542
4558
|
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
4543
|
-
fundUsi:
|
|
4544
|
-
fundName:
|
|
4545
|
-
fundNameAlt: QSuperAltFundName,
|
|
4559
|
+
fundUsi: QSuper.Usi,
|
|
4560
|
+
fundName: QSuper.Name,
|
|
4546
4561
|
pageName: 'Insurance Opt In'
|
|
4547
4562
|
});
|
|
4548
4563
|
}
|
|
@@ -4724,9 +4739,8 @@ const QsuperConsent = class {
|
|
|
4724
4739
|
}
|
|
4725
4740
|
pdsViewedAsync() {
|
|
4726
4741
|
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
4727
|
-
fundUsi:
|
|
4728
|
-
fundName:
|
|
4729
|
-
fundNameAlt: QSuperAltFundName,
|
|
4742
|
+
fundUsi: QSuper.Usi,
|
|
4743
|
+
fundName: QSuper.Name,
|
|
4730
4744
|
pageName: 'Accumulation Page'
|
|
4731
4745
|
});
|
|
4732
4746
|
}
|
|
@@ -4786,10 +4800,9 @@ const QsuperInsuranceOptIn = class {
|
|
|
4786
4800
|
}
|
|
4787
4801
|
componentDidLoad() {
|
|
4788
4802
|
return this.eventTrackingService.TrackFinancialProductViewedAsync({
|
|
4789
|
-
fundUsi:
|
|
4790
|
-
fundName:
|
|
4791
|
-
|
|
4792
|
-
financialProduct: QSuperInsuranceProductName
|
|
4803
|
+
fundUsi: QSuper.Usi,
|
|
4804
|
+
fundName: QSuper.Name,
|
|
4805
|
+
financialProduct: QSuper.InsuranceName
|
|
4793
4806
|
});
|
|
4794
4807
|
}
|
|
4795
4808
|
componentWillLoad() {
|
|
@@ -4800,18 +4813,18 @@ const QsuperInsuranceOptIn = class {
|
|
|
4800
4813
|
return (h(Host, { class: "d-flex flex-fill" }, h("sss-qsuper-layout", { class: "d-flex flex-fill" }, h("sss-qsuper-confirm-header", null), h("div", { class: "mt-4 p-3 checkbox-container" }, h("p", null, "As part of becoming a QSuper member, you will receive death cover and total and permanent disability cover when you become eligible. ", h("br", null), h("br", null), "You will receive this cover when: ", h("br", null), h("br", null), "You are 25 years or older; ", h("br", null), "and You have had at least $6,000 in your accumulation account; ", h("br", null), "and At that time, we have received money into your account within the previous 13 months ", h("br", null), h("br", null), "Please see the Accumulation Account Insurance Guide, available on the QSuper website, for further information ", h("br", null), h("br", null), "Do you want this insurance cover?"), h("div", { class: "d-flex justify-content-between mt-4" }, h("div", { class: "button-holder flex-grow-1 mr-2" }, h("fl-button", { disabled: !this.isEligibleForInsurance, isBlockElement: true, variant: this.insuranceChosen ? 'primary' : 'secondary', onClick: () => this.handleInsuranceToggle(true) }, "Yes")), h("div", { class: "button-holder flex-grow-1 ml-2" }, h("fl-button", { disabled: !this.isEligibleForInsurance, isBlockElement: true, variant: !this.insuranceChosen ? 'primary' : 'secondary', onClick: () => this.handleInsuranceToggle(false) }, "No")))), h("div", null, h("label", { class: "d-flex\u00A0mt-3\u00A0p-3\u00A0checkbox-container", htmlFor: "ackCheckBox" }, h("div", { class: "w-auto\u00A0px-2 fl-checkbox-container" }, h("input", { id: "ackCheckBox", class: "confirm-checkbox-item", type: "checkbox", onChange: () => this.handleCheckboxToggle() })), h("div", { class: "pl-3" }, h("p", { class: "confirm-item-text\u00A0mb-0" }, "I acknowledge that my personal information will be shared with QSuper as part of their application process.")))))));
|
|
4801
4814
|
}
|
|
4802
4815
|
ensureInsuranceEligibility() {
|
|
4803
|
-
if (superSelectionAppService.superBuyer.userProfile.yearsOfAge <
|
|
4816
|
+
if (superSelectionAppService.superBuyer.userProfile.yearsOfAge < QSuper.MinAge) {
|
|
4804
4817
|
return;
|
|
4805
4818
|
}
|
|
4806
|
-
else if (superSelectionAppService.superBuyer.userProfile.yearsOfAge <
|
|
4807
|
-
this.showIneligibleNotification(`You may still apply for QSuper, however people under the age of ${
|
|
4819
|
+
else if (superSelectionAppService.superBuyer.userProfile.yearsOfAge < QSuper.MinInsuranceAge) {
|
|
4820
|
+
this.showIneligibleNotification(`You may still apply for QSuper, however people under the age of ${QSuper.MinInsuranceAge} are not able to apply for insurance.`);
|
|
4808
4821
|
return;
|
|
4809
4822
|
}
|
|
4810
4823
|
this.isEligibleForInsurance = true;
|
|
4811
4824
|
}
|
|
4812
4825
|
showIneligibleNotification(description) {
|
|
4813
4826
|
notificationsService.showInfoNotification({
|
|
4814
|
-
title:
|
|
4827
|
+
title: 'Unable to apply for Insurance',
|
|
4815
4828
|
description
|
|
4816
4829
|
});
|
|
4817
4830
|
}
|
|
@@ -4840,7 +4853,7 @@ const QsuperInsuranceQuestions = class {
|
|
|
4840
4853
|
};
|
|
4841
4854
|
QsuperInsuranceQuestions.style = qsuperCss$2;
|
|
4842
4855
|
|
|
4843
|
-
const superChoicePageCss = "html{scroll-behavior:smooth}img.fluid-fit{-o-object-fit:cover;object-fit:cover}.checkbox-container{border-radius:4px;background-color:#f5f4f2}.confirm-checkbox-item{-webkit-transform:scale(1.7);transform:scale(1.7)}.simple-choices-text{color:#489882}.choice-card{background:#ffffff;-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.25);box-shadow:0 1px 4px rgba(0, 0, 0, 0.25);border-radius:3px}.choice-card.ss-picked-fund{border:2px solid var(--fl-color-primary)}.card.ss-picked-fund{border:2px solid var(--fl-color-primary)}.ss-choice-logo{
|
|
4856
|
+
const superChoicePageCss = "html{scroll-behavior:smooth}img.fluid-fit{-o-object-fit:cover;object-fit:cover}.checkbox-container{border-radius:4px;background-color:#f5f4f2}.confirm-checkbox-item{-webkit-transform:scale(1.7);transform:scale(1.7)}.simple-choices-text{color:#489882}.choice-card{background:#ffffff;-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.25);box-shadow:0 1px 4px rgba(0, 0, 0, 0.25);border-radius:3px}.choice-card.ss-picked-fund{border:2px solid var(--fl-color-primary)}.card.ss-picked-fund{border:2px solid var(--fl-color-primary)}.ss-choice-logo{width:auto;max-height:70px;-o-object-fit:contain;object-fit:contain}img{width:100%;display:block}.choice-component{width:100%;position:relative}.flexible{-ms-flex-positive:1;flex-grow:1}.fund-item{margin-top:1rem}.promoted-picked-block{background-color:var(--fl-color-primary);border-bottom-right-radius:3px;left:0;top:0}@media (min-width: 992px){.bottom-half-fund-tile{height:220px}}";
|
|
4844
4857
|
|
|
4845
4858
|
const QSuperConfirmSelection = class {
|
|
4846
4859
|
constructor(hostRef) {
|
|
@@ -4860,9 +4873,8 @@ const QSuperConfirmSelection = class {
|
|
|
4860
4873
|
}
|
|
4861
4874
|
pdsViewedAsync() {
|
|
4862
4875
|
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
4863
|
-
fundUsi:
|
|
4864
|
-
fundName:
|
|
4865
|
-
fundNameAlt: QSuperAltFundName,
|
|
4876
|
+
fundUsi: QSuper.Usi,
|
|
4877
|
+
fundName: QSuper.Name,
|
|
4866
4878
|
pageName: 'Confirm Page'
|
|
4867
4879
|
});
|
|
4868
4880
|
}
|
|
@@ -4923,11 +4935,11 @@ const QsuperLayout = class {
|
|
|
4923
4935
|
this.isEligible = false;
|
|
4924
4936
|
this.canContinue = () => this.isEligible && state$2.continueAllowed;
|
|
4925
4937
|
this.ensureEligibility = () => {
|
|
4926
|
-
if (superSelectionAppService.superBuyer.userProfile.yearsOfAge <
|
|
4927
|
-
this.showIneligibleNotification(`People under the age of ${
|
|
4938
|
+
if (superSelectionAppService.superBuyer.userProfile.yearsOfAge < QSuper.MinAge) {
|
|
4939
|
+
this.showIneligibleNotification(`People under the age of ${QSuper.MinAge} are not able to open accounts.`);
|
|
4928
4940
|
}
|
|
4929
|
-
else if (superSelectionAppService.superBuyer.userProfile.yearsOfAge >
|
|
4930
|
-
this.showIneligibleNotification(`People over the age of ${
|
|
4941
|
+
else if (superSelectionAppService.superBuyer.userProfile.yearsOfAge > QSuper.MaxAge) {
|
|
4942
|
+
this.showIneligibleNotification(`People over the age of ${QSuper.MaxAge} are not able to open accounts.`);
|
|
4931
4943
|
}
|
|
4932
4944
|
else {
|
|
4933
4945
|
this.isEligible = true;
|
|
@@ -4935,7 +4947,7 @@ const QsuperLayout = class {
|
|
|
4935
4947
|
};
|
|
4936
4948
|
this.showIneligibleNotification = (description) => {
|
|
4937
4949
|
notificationsService.showInfoNotification({
|
|
4938
|
-
title:
|
|
4950
|
+
title: 'Unable to apply for QSuper',
|
|
4939
4951
|
description
|
|
4940
4952
|
});
|
|
4941
4953
|
};
|
|
@@ -5594,7 +5606,7 @@ const Success = class {
|
|
|
5594
5606
|
}
|
|
5595
5607
|
};
|
|
5596
5608
|
|
|
5597
|
-
const superChoicePageCss$1 = "html{scroll-behavior:smooth}img.fluid-fit{-o-object-fit:cover;object-fit:cover}.checkbox-container{border-radius:4px;background-color:#f5f4f2}.confirm-checkbox-item{-webkit-transform:scale(1.7);transform:scale(1.7)}.simple-choices-text{color:#489882}.choice-card{background:#ffffff;-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.25);box-shadow:0 1px 4px rgba(0, 0, 0, 0.25);border-radius:3px}.choice-card.ss-picked-fund{border:2px solid var(--fl-color-primary)}.card.ss-picked-fund{border:2px solid var(--fl-color-primary)}.ss-choice-logo{
|
|
5609
|
+
const superChoicePageCss$1 = "html{scroll-behavior:smooth}img.fluid-fit{-o-object-fit:cover;object-fit:cover}.checkbox-container{border-radius:4px;background-color:#f5f4f2}.confirm-checkbox-item{-webkit-transform:scale(1.7);transform:scale(1.7)}.simple-choices-text{color:#489882}.choice-card{background:#ffffff;-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.25);box-shadow:0 1px 4px rgba(0, 0, 0, 0.25);border-radius:3px}.choice-card.ss-picked-fund{border:2px solid var(--fl-color-primary)}.card.ss-picked-fund{border:2px solid var(--fl-color-primary)}.ss-choice-logo{width:auto;max-height:70px;-o-object-fit:contain;object-fit:contain}img{width:100%;display:block}.choice-component{width:100%;position:relative}.flexible{-ms-flex-positive:1;flex-grow:1}.fund-item{margin-top:1rem}.promoted-picked-block{background-color:var(--fl-color-primary);border-bottom-right-radius:3px;left:0;top:0}@media (min-width: 992px){.bottom-half-fund-tile{height:220px}}";
|
|
5598
5610
|
|
|
5599
5611
|
const SuperChoiceItem = class {
|
|
5600
5612
|
constructor(hostRef) {
|
|
@@ -5604,9 +5616,9 @@ const SuperChoiceItem = class {
|
|
|
5604
5616
|
}
|
|
5605
5617
|
render() {
|
|
5606
5618
|
return (h(Host, { class: {
|
|
5607
|
-
'd-flex p-3': true,
|
|
5619
|
+
'd-flex p-3 fund-item': true,
|
|
5608
5620
|
'ss-picked-fund': this.isSelected
|
|
5609
|
-
} }, h("div", { class: "card-body py-0 px-0 px-xl-3" }, this.isSelected && (h("div", { class: "px-3 py-2 text-white picked-block position-absolute" }, "You picked")), h("div", { class: "d-flex flex-fill flex-column align-items-center" }, h("div", { class: "d-flex justify-content-end w-100" }, h("div", { class: "text-muted small border rounded-sm px-1 mt-n2 mr-n2 mb-1" }, "Advertised")), h("img", { class: "ss-choice-logo", alt:
|
|
5621
|
+
} }, h("div", { class: "card-body py-0 px-0 px-xl-3" }, this.isSelected && (h("div", { class: "px-3 py-2 text-white promoted-picked-block position-absolute" }, "You picked")), h("div", { class: "d-flex flex-fill flex-column align-items-center" }, h("div", { class: "d-flex justify-content-end w-100" }, h("div", { class: "text-muted small border rounded-sm px-1 mt-n2 mr-n2 mb-1" }, "Advertised")), h("img", { class: "ss-choice-logo", alt: this.name, src: getAssetPath(`assets/${this.logo}`) }), h("p", { class: "font-weight-bold text-center mt-3 mb-0" }, this.name), h("div", { class: "mt-3" }, JSON.parse(this.features).map((feature) => (h("p", { class: "text-center" }, feature.value)))))), h("div", { class: "text-center bottom-half-fund-tile" }, h("div", { class: "p-3" }, h("fl-button", { class: "uuid-button-continue", isBlockElement: true, onClick: () => this.handleFundClick() }, "Choose this fund")), h("div", { class: "mb-2" }, h("a", { target: "_blank", href: this.pdsLink, onClick: () => this.pdsViewedAsync() }, "View the PDS")), this.disclaimer, h("div", { class: "small text-muted" }, this.abnInfo))));
|
|
5610
5622
|
}
|
|
5611
5623
|
handleFundClick() {
|
|
5612
5624
|
return this.joinFundClicked.emit();
|
|
@@ -5615,7 +5627,6 @@ const SuperChoiceItem = class {
|
|
|
5615
5627
|
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
5616
5628
|
fundUsi: this.usi,
|
|
5617
5629
|
fundName: this.name,
|
|
5618
|
-
fundNameAlt: this.heading,
|
|
5619
5630
|
pageName: 'Panel Fund Page'
|
|
5620
5631
|
});
|
|
5621
5632
|
}
|
|
@@ -5625,16 +5636,13 @@ SuperChoiceItem.style = superChoicePageCss$1;
|
|
|
5625
5636
|
|
|
5626
5637
|
class ChosenFundService {
|
|
5627
5638
|
async GetChosenFundAsync() {
|
|
5628
|
-
var _a;
|
|
5639
|
+
var _a, _b;
|
|
5629
5640
|
const choiceDetails = (_a = superSelectionAppService.superBuyer.superChoice) === null || _a === void 0 ? void 0 : _a.choiceDetails;
|
|
5630
5641
|
if (!choiceDetails)
|
|
5631
5642
|
return none;
|
|
5632
5643
|
if ('promoted' in choiceDetails) {
|
|
5633
|
-
const
|
|
5634
|
-
|
|
5635
|
-
: SlateFundId in choiceDetails.promoted
|
|
5636
|
-
? SlateFundId
|
|
5637
|
-
: '';
|
|
5644
|
+
const fund = PromotedFundIdList.find((f) => f.dtoPropName in choiceDetails.promoted);
|
|
5645
|
+
const promotedId = (_b = fund === null || fund === void 0 ? void 0 : fund.id) !== null && _b !== void 0 ? _b : '';
|
|
5638
5646
|
return some({
|
|
5639
5647
|
isPromoted: true,
|
|
5640
5648
|
promotedId
|
|
@@ -5673,7 +5681,7 @@ class ChosenFundService {
|
|
|
5673
5681
|
}
|
|
5674
5682
|
const chosenFundService = new ChosenFundService();
|
|
5675
5683
|
|
|
5676
|
-
const superChoicePageCss$2 = "html{scroll-behavior:smooth}img.fluid-fit{-o-object-fit:cover;object-fit:cover}.checkbox-container{border-radius:4px;background-color:#f5f4f2}.confirm-checkbox-item{-webkit-transform:scale(1.7);transform:scale(1.7)}.simple-choices-text{color:#489882}.choice-card{background:#ffffff;-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.25);box-shadow:0 1px 4px rgba(0, 0, 0, 0.25);border-radius:3px}.choice-card.ss-picked-fund{border:2px solid var(--fl-color-primary)}.card.ss-picked-fund{border:2px solid var(--fl-color-primary)}.ss-choice-logo{
|
|
5684
|
+
const superChoicePageCss$2 = "html{scroll-behavior:smooth}img.fluid-fit{-o-object-fit:cover;object-fit:cover}.checkbox-container{border-radius:4px;background-color:#f5f4f2}.confirm-checkbox-item{-webkit-transform:scale(1.7);transform:scale(1.7)}.simple-choices-text{color:#489882}.choice-card{background:#ffffff;-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.25);box-shadow:0 1px 4px rgba(0, 0, 0, 0.25);border-radius:3px}.choice-card.ss-picked-fund{border:2px solid var(--fl-color-primary)}.card.ss-picked-fund{border:2px solid var(--fl-color-primary)}.ss-choice-logo{width:auto;max-height:70px;-o-object-fit:contain;object-fit:contain}img{width:100%;display:block}.choice-component{width:100%;position:relative}.flexible{-ms-flex-positive:1;flex-grow:1}.fund-item{margin-top:1rem}.promoted-picked-block{background-color:var(--fl-color-primary);border-bottom-right-radius:3px;left:0;top:0}@media (min-width: 992px){.bottom-half-fund-tile{height:220px}}";
|
|
5677
5685
|
|
|
5678
5686
|
const SuperChoicePage = class {
|
|
5679
5687
|
constructor(hostRef) {
|
|
@@ -5689,7 +5697,7 @@ const SuperChoicePage = class {
|
|
|
5689
5697
|
}
|
|
5690
5698
|
componentDidLoad() {
|
|
5691
5699
|
iframe.appReady();
|
|
5692
|
-
const enabledFundIds = this.promotedFunds.map((item) => item.
|
|
5700
|
+
const enabledFundIds = this.promotedFunds.map((item) => item.fundId);
|
|
5693
5701
|
this.eventTrackingService.TrackSuperFundPanelViewedAsync({
|
|
5694
5702
|
enabledFundIds
|
|
5695
5703
|
});
|
|
@@ -5703,57 +5711,71 @@ const SuperChoicePage = class {
|
|
|
5703
5711
|
const superChoiceParagraphTwo = `The content on this page and on the following pages relating to each super fund is provided by the trustee or promoter of the super fund. The super funds presented have not been selected by your employer and neither your employer or Flare HR are making any recommendation or opinion.`;
|
|
5704
5712
|
const superChoiceParagraphThree = `There are many super funds out there and you should consider the relevant product disclosure statement and choose one that is right for you. If you are unsure, obtain your own advice. You can choose your super fund later, if you need time to obtain advice.`;
|
|
5705
5713
|
const superChoiceParagraphFour = `You should be aware that, if you do choose one of these advertised funds, Flare HR and its associated entities will normally receive a fee for you doing so.`;
|
|
5706
|
-
const atoLink = 'https://
|
|
5707
|
-
const atoLinkDisplay = '
|
|
5714
|
+
const atoLink = 'https://my.gov.au';
|
|
5715
|
+
const atoLinkDisplay = 'my.gov.au';
|
|
5708
5716
|
const superfundsLink = 'https://www.apra.gov.au/register-of-superannuation-institutions';
|
|
5709
5717
|
const superfundsLinkDisplay = 'www.apra.gov.au/register-of-superannuation-institutions';
|
|
5710
|
-
return (h(Host, null, h("div", { class: "container mt-0 mb-0" }, h("div", { class: "row justify-content-center" }, h("div", { class: "col" }, h("h3", { class: "mt-3 font-weight-bold text-center mb-4" }, "Choose your Super"))), h("div", { class: "row justify-content-center" }, h("div", { class: "col" }, h("p", { class: "text-center font-weight-bold" }, superChoiceParagraphOne), h("p", { class: "text-center" }, superChoiceParagraphTwo), h("p", { class: "text-center" }, superChoiceParagraphThree))), h("div", { class: "row" }, h("div", { class: "col" }, h("sss-notifications-section", null))), h("div", { class: "row justify-content-center mt-4" }, h("div", { class: "col col-sm-10 col-md-8 col-xl-7" }, h("div", { class: "row" }, h("div", { class: "col" }, h("div", { class: "d-flex flex-fill" }, isSome(this.chosenFund) && !this.chosenFund.value.isPromoted && (h("sss-selected-super-choice-section", { fundType: this.chosenFund.value.type, fundName: this.chosenFund.value.name, class: "flex-fill position-relative" }))))), h("div", { class: "row mt-3" }, this.
|
|
5718
|
+
return (h(Host, null, h("div", { class: "container mt-0 mb-0" }, h("div", { class: "row justify-content-center" }, h("div", { class: "col" }, h("h3", { class: "mt-3 font-weight-bold text-center mb-4" }, "Choose your Super"))), h("div", { class: "row justify-content-center" }, h("div", { class: "col" }, h("p", { class: "text-center font-weight-bold" }, superChoiceParagraphOne), h("p", { class: "text-center" }, superChoiceParagraphTwo), h("p", { class: "text-center" }, superChoiceParagraphThree))), h("div", { class: "row" }, h("div", { class: "col" }, h("sss-notifications-section", null))), h("div", { class: "row justify-content-center mt-4" }, h("div", { class: "col col-sm-10 col-md-8 col-xl-7" }, h("div", { class: "row" }, h("div", { class: "col" }, h("div", { class: "d-flex flex-fill" }, isSome(this.chosenFund) && !this.chosenFund.value.isPromoted && (h("sss-selected-super-choice-section", { fundType: this.chosenFund.value.type, fundName: this.chosenFund.value.name, class: "flex-fill position-relative" }))))), h("div", { class: "row mt-3" }, this.getPromotedFunds().map((fund) => (h("div", { class: "col-12 col-lg-6 d-flex" }, h("sss-super-choice-item", { class: "card mb-3 mb-lg-0 mx-0 flex-grow-1", logo: fund.logo, isSelected: this.isPromotedFundSelected(fund.fundId), usi: fund.usi, name: fund.name, pdsLink: navigationService.toExternalUrl(fund.pdsLink), features: JSON.stringify(fund.features), disclaimer: fund.disclaimer, abnInfo: fund.abnInfo, onJoinFundClicked: async () => this.handleJoinSuperClickAsync(fund) }))))), h("div", { class: "row mt-3 px-3" }, h("div", { class: "col p-4 border rounded bg-light" }, h("div", { class: "row" }, h("div", { class: "col" }, h("h5", { class: "font-weight-bold" }, "Choose another super fund"), h("p", { class: "mb-1" }, "Select this option if you'd like to use your current account with another super fund."), h("ul", { class: "ml-n3" }, h("li", null, "If you are unsure of your current super fund details, you can find out at", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl(atoLink) }, atoLinkDisplay)), h("li", { class: "mt-1" }, "A full list of super funds can be viewed at", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl(superfundsLink) }, superfundsLinkDisplay))))), h("div", { class: "row" }, h("div", { class: "col" }, h("stencil-route-link", { url: SuperSelectionAppRoutes.MyOwnFund }, h("fl-button", { isBlockElement: true, variant: "primary", class: "d-lg-none" }, "Choose another fund"), h("div", { class: "mt-n3 d-none d-lg-flex justify-content-end align-items-end" }, h("fl-button", { variant: "primary" }, "Choose another fund"))))))))), h("div", { class: "row justify-content-center mt-5" }, h("div", { class: "col" }, h("p", { class: "text-center" }, superChoiceParagraphFour))))));
|
|
5711
5719
|
}
|
|
5712
5720
|
allFunds() {
|
|
5713
5721
|
return [
|
|
5714
5722
|
{
|
|
5715
|
-
fundId:
|
|
5716
|
-
usi:
|
|
5717
|
-
name:
|
|
5718
|
-
heading: SlateAltFundName,
|
|
5723
|
+
fundId: Slate.Id,
|
|
5724
|
+
usi: Slate.Usi,
|
|
5725
|
+
name: Slate.Name,
|
|
5719
5726
|
logo: 'logo-slate.png',
|
|
5720
5727
|
route: SuperSelectionAppRoutes.SlateJoin,
|
|
5721
|
-
pdsLink:
|
|
5728
|
+
pdsLink: Slate.PdsUrl,
|
|
5722
5729
|
features: [
|
|
5723
5730
|
{ order: 1, value: 'A lifestage investment strategy that evolves with you' },
|
|
5724
5731
|
{ order: 2, value: 'Advanced mobile app with retirement forecast and smart features' },
|
|
5725
5732
|
{ order: 3, value: 'Member advocates at Slate to assist with your account' }
|
|
5726
5733
|
],
|
|
5727
|
-
disclaimer: (h("p", { class: "small text-muted" }, "You should consider the", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl(
|
|
5728
|
-
abnInfo: `Diversa Trustees Limited ABN: ${
|
|
5734
|
+
disclaimer: (h("p", { class: "small text-muted" }, "You should consider the", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl(Slate.PdsUrl), onClick: () => this.pdsViewedAsync(Slate.Name, Slate.Usi) }, "Product Disclosure Statement"), ' ', "and", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl('https://slate.co/forms-and-documents/target-market-determination/') }, "Target Market Determination"), ' ', "before deciding to invest in or apply to become a member of the fund.")),
|
|
5735
|
+
abnInfo: `Diversa Trustees Limited ABN: ${Slate.DiversaAbn}`
|
|
5729
5736
|
},
|
|
5730
5737
|
{
|
|
5731
|
-
fundId:
|
|
5732
|
-
usi:
|
|
5733
|
-
name:
|
|
5734
|
-
heading: QSuperAltFundName,
|
|
5738
|
+
fundId: QSuper.Id,
|
|
5739
|
+
usi: QSuper.Usi,
|
|
5740
|
+
name: QSuper.Name,
|
|
5735
5741
|
logo: 'logo-qsuper-square.png',
|
|
5736
5742
|
route: SuperSelectionAppRoutes.QSuperOptIn,
|
|
5737
|
-
pdsLink:
|
|
5743
|
+
pdsLink: QSuper.PdsUrl,
|
|
5738
5744
|
features: [
|
|
5739
5745
|
{ order: 1, value: '100 years strong' },
|
|
5740
5746
|
{ order: 2, value: `One of Australia's largest funds` },
|
|
5741
5747
|
{ order: 3, value: 'Awarded SuperRatings highest performance rating' }
|
|
5742
5748
|
],
|
|
5743
|
-
disclaimer: (h("p", { class: "small text-muted" }, "You should consider the", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl(
|
|
5744
|
-
abnInfo: `QSuper Board ABN: ${
|
|
5749
|
+
disclaimer: (h("p", { class: "small text-muted" }, "You should consider the", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl(QSuper.PdsUrl), onClick: () => this.pdsViewedAsync(QSuper.Name, QSuper.Usi) }, "Product Disclosure Statement"), ' ', "before deciding to invest in or apply to become a member of this fund.")),
|
|
5750
|
+
abnInfo: `QSuper Board ABN: ${QSuper.Abn}`
|
|
5745
5751
|
},
|
|
5746
5752
|
{
|
|
5747
|
-
fundId:
|
|
5748
|
-
|
|
5749
|
-
|
|
5750
|
-
heading: AustralianRetirementTrustAltFundName,
|
|
5751
|
-
logo: 'logo-qsuper-square.png',
|
|
5753
|
+
fundId: AustralianRetirementTrust.Id,
|
|
5754
|
+
name: AustralianRetirementTrust.Name,
|
|
5755
|
+
logo: 'logo-art.svg',
|
|
5752
5756
|
route: SuperSelectionAppRoutes.PromotedFundJoin,
|
|
5753
|
-
pdsLink:
|
|
5754
|
-
features: [
|
|
5755
|
-
|
|
5756
|
-
|
|
5757
|
+
pdsLink: AustralianRetirementTrust.PdsUrl,
|
|
5758
|
+
features: [
|
|
5759
|
+
{ order: 1, value: '$200 billion in retirement savings' },
|
|
5760
|
+
{ order: 2, value: '2+ million members' },
|
|
5761
|
+
{ order: 3, value: 'A focus on delivering strong, long‑term returns' }
|
|
5762
|
+
],
|
|
5763
|
+
disclaimer: (h("p", { class: "small text-muted" }, "You should consider the", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl(AustralianRetirementTrust.PdsUrl), onClick: () => this.pdsViewedAsync(AustralianRetirementTrust.Name) }, "Product Disclosure Statement"), ' ', "before deciding to invest in or apply to become a member of this fund.")),
|
|
5764
|
+
abnInfo: `Australian Retirement Trust ABN: ${AustralianRetirementTrust.Abn}`
|
|
5765
|
+
},
|
|
5766
|
+
{
|
|
5767
|
+
fundId: Aware.Id,
|
|
5768
|
+
name: Aware.Name,
|
|
5769
|
+
logo: 'logo-aware.svg',
|
|
5770
|
+
route: SuperSelectionAppRoutes.PromotedFundJoin,
|
|
5771
|
+
pdsLink: Aware.PdsUrl,
|
|
5772
|
+
features: [
|
|
5773
|
+
{ order: 1, value: 'Lorem ipsum dolor sit amet' },
|
|
5774
|
+
{ order: 2, value: 'Lorem ipsum dolor sit amet' },
|
|
5775
|
+
{ order: 3, value: 'Lorem ipsum dolor sit amet' }
|
|
5776
|
+
],
|
|
5777
|
+
disclaimer: (h("p", { class: "small text-muted" }, "You should consider the", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl(Aware.PdsUrl), onClick: () => this.pdsViewedAsync(Aware.Name) }, "Product Disclosure Statement"), ' ', "before deciding to invest in or apply to become a member of this fund.")),
|
|
5778
|
+
abnInfo: `Aware Super Pty Ltd ABN: ${Aware.Abn}`
|
|
5757
5779
|
}
|
|
5758
5780
|
];
|
|
5759
5781
|
}
|
|
@@ -5768,35 +5790,36 @@ const SuperChoicePage = class {
|
|
|
5768
5790
|
return fundTiles;
|
|
5769
5791
|
}
|
|
5770
5792
|
async handleJoinSuperClickAsync(fund) {
|
|
5771
|
-
if (fund.fundId ===
|
|
5793
|
+
if (fund.fundId === Slate.Id) {
|
|
5772
5794
|
await this.eventTrackingService.TrackPromotedSuperFundDetailViewedAsync({
|
|
5773
|
-
fundUsi:
|
|
5774
|
-
fundName:
|
|
5775
|
-
fundNameAlt: SlateAltFundName
|
|
5795
|
+
fundUsi: Slate.Usi,
|
|
5796
|
+
fundName: Slate.Name
|
|
5776
5797
|
});
|
|
5777
5798
|
}
|
|
5778
|
-
else if (fund.fundId ===
|
|
5799
|
+
else if (fund.fundId === QSuper.Id) {
|
|
5779
5800
|
await this.eventTrackingService.TrackPromotedSuperFundDetailViewedAsync({
|
|
5780
|
-
fundUsi:
|
|
5781
|
-
fundName:
|
|
5782
|
-
fundNameAlt: QSuperAltFundName
|
|
5801
|
+
fundUsi: QSuper.Usi,
|
|
5802
|
+
fundName: QSuper.Name
|
|
5783
5803
|
});
|
|
5784
5804
|
}
|
|
5785
|
-
else if (fund.fundId ===
|
|
5805
|
+
else if (fund.fundId === AustralianRetirementTrust.Id) {
|
|
5806
|
+
await this.eventTrackingService.TrackPromotedSuperFundDetailViewedAsync({
|
|
5807
|
+
fundName: AustralianRetirementTrust.Name
|
|
5808
|
+
});
|
|
5809
|
+
state$1.fundId = fund.fundId;
|
|
5810
|
+
}
|
|
5811
|
+
else if (fund.fundId === Aware.Id) {
|
|
5786
5812
|
await this.eventTrackingService.TrackPromotedSuperFundDetailViewedAsync({
|
|
5787
|
-
|
|
5788
|
-
fundName: AustralianRetirementTrustFundName,
|
|
5789
|
-
fundNameAlt: AustralianRetirementTrustAltFundName
|
|
5813
|
+
fundName: Aware.Name
|
|
5790
5814
|
});
|
|
5791
5815
|
state$1.fundId = fund.fundId;
|
|
5792
5816
|
}
|
|
5793
5817
|
return navigationService.navigateInternally(this.history, fund.route);
|
|
5794
5818
|
}
|
|
5795
|
-
pdsViewedAsync(
|
|
5819
|
+
pdsViewedAsync(name, usi) {
|
|
5796
5820
|
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
5797
5821
|
fundUsi: usi,
|
|
5798
5822
|
fundName: name,
|
|
5799
|
-
fundNameAlt: heading,
|
|
5800
5823
|
pageName: 'Panel Fund Page'
|
|
5801
5824
|
});
|
|
5802
5825
|
}
|
package/dist/lib/esm/loader.js
CHANGED
|
@@ -14,7 +14,7 @@ const defineCustomElements = (win, options) => {
|
|
|
14
14
|
if (typeof window === 'undefined') return Promise.resolve();
|
|
15
15
|
return patchEsm().then(() => {
|
|
16
16
|
globalScripts();
|
|
17
|
-
return bootstrapLazy([["fl-style-guide",[[1,"fl-style-guide",{"themeCssUrl":[1,"theme-css-url"]}]]],["context-consumer",[[0,"context-consumer",{"context":[16],"renderer":[16],"subscribe":[16],"unsubscribe":[32]}]]],["stencil-async-content",[[0,"stencil-async-content",{"documentLocation":[1,"document-location"],"content":[32]}]]],["stencil-route-title",[[0,"stencil-route-title",{"titleSuffix":[1,"title-suffix"],"pageTitle":[1,"page-title"]}]]],["stencil-router-prompt",[[0,"stencil-router-prompt",{"when":[4],"message":[1],"history":[16],"unblock":[32]}]]],["stencil-router-redirect",[[0,"stencil-router-redirect",{"history":[16],"root":[1],"url":[1]}]]],["fl-button_46",[[0,"sss-my-own-fund",{"history":[16],"formState":[32],"isNotAllInformationProvidedMessageVisible":[32]}],[0,"sss-self-managed-fund",{"history":[16],"formState":[32],"showSmsfNotSupported":[32]}],[0,"sss-qsuper-question-1"],[0,"sss-qsuper-question-2"],[0,"sss-qsuper-question-3"],[0,"sss-qsuper-question-4"],[0,"sss-qsuper-question-5"],[0,"sss-qsuper-question-6"],[0,"sss-qsuper-question-7"],[0,"sss-qsuper-question-8"],[0,"sss-default-fund",{"history":[16],"formState":[32],"defaultFundProductName":[32]}],[0,"sss-qsuper-insurance-opt-in",{"insuranceChosen":[32]}],[0,"sss-qsuper-join"],[0,"sss-slate-standard-choice-page",{"history":[16],"formState":[32]}],[1,"super-selection-app-host",{"sessionState":[32],"jwt":[32],"appConfiguration":[32],"areStylesLoaded":[32]}],[0,"sss-qsuper-consent"],[0,"sss-super-choice-page",{"history":[16],"promotedFunds":[32],"chosenFund":[32]}],[0,"sss-promoted-fund-standard-choice-page",{"history":[16],"formState":[32]}],[0,"sss-success"],[0,"sss-promoted-fund-join-page",{"history":[16]}],[0,"sss-slate-join-page",{"history":[16]}],[0,"super-selection-app",{"accessToken":[1,"access-token"],"backendUrl":[1,"backend-url"],"appBaseUrl":[1,"app-base-url"],"history":[16],"location":[16],"isAppInitialised":[32]}],[0,"sss-my-own-fund-inputs",{"myOwnFundForm":[16],"selectedOption":[32]}],[0,"sss-self-managed-fund-inputs",{"fundForm":[16],"currentBank":[32]}],[0,"sss-loading-page"],[0,"sss-smsf-not-supported-dialog"],[0,"sss-super-choice-item",{"
|
|
17
|
+
return bootstrapLazy([["fl-style-guide",[[1,"fl-style-guide",{"themeCssUrl":[1,"theme-css-url"]}]]],["context-consumer",[[0,"context-consumer",{"context":[16],"renderer":[16],"subscribe":[16],"unsubscribe":[32]}]]],["stencil-async-content",[[0,"stencil-async-content",{"documentLocation":[1,"document-location"],"content":[32]}]]],["stencil-route-title",[[0,"stencil-route-title",{"titleSuffix":[1,"title-suffix"],"pageTitle":[1,"page-title"]}]]],["stencil-router-prompt",[[0,"stencil-router-prompt",{"when":[4],"message":[1],"history":[16],"unblock":[32]}]]],["stencil-router-redirect",[[0,"stencil-router-redirect",{"history":[16],"root":[1],"url":[1]}]]],["fl-button_46",[[0,"sss-my-own-fund",{"history":[16],"formState":[32],"isNotAllInformationProvidedMessageVisible":[32]}],[0,"sss-self-managed-fund",{"history":[16],"formState":[32],"showSmsfNotSupported":[32]}],[0,"sss-qsuper-question-1"],[0,"sss-qsuper-question-2"],[0,"sss-qsuper-question-3"],[0,"sss-qsuper-question-4"],[0,"sss-qsuper-question-5"],[0,"sss-qsuper-question-6"],[0,"sss-qsuper-question-7"],[0,"sss-qsuper-question-8"],[0,"sss-default-fund",{"history":[16],"formState":[32],"defaultFundProductName":[32]}],[0,"sss-qsuper-insurance-opt-in",{"insuranceChosen":[32]}],[0,"sss-qsuper-join"],[0,"sss-slate-standard-choice-page",{"history":[16],"formState":[32]}],[1,"super-selection-app-host",{"sessionState":[32],"jwt":[32],"appConfiguration":[32],"areStylesLoaded":[32]}],[0,"sss-qsuper-consent"],[0,"sss-super-choice-page",{"history":[16],"promotedFunds":[32],"chosenFund":[32]}],[0,"sss-promoted-fund-standard-choice-page",{"history":[16],"formState":[32]}],[0,"sss-success"],[0,"sss-promoted-fund-join-page",{"history":[16]}],[0,"sss-slate-join-page",{"history":[16]}],[0,"super-selection-app",{"accessToken":[1,"access-token"],"backendUrl":[1,"backend-url"],"appBaseUrl":[1,"app-base-url"],"history":[16],"location":[16],"isAppInitialised":[32]}],[0,"sss-my-own-fund-inputs",{"myOwnFundForm":[16],"selectedOption":[32]}],[0,"sss-self-managed-fund-inputs",{"fundForm":[16],"currentBank":[32]}],[0,"sss-loading-page"],[0,"sss-smsf-not-supported-dialog"],[0,"sss-super-choice-item",{"isSelected":[4,"is-selected"],"usi":[1],"name":[1],"logo":[1],"pdsLink":[1,"pds-link"],"features":[1],"disclaimer":[16],"abnInfo":[1,"abn-info"],"history":[16]}],[0,"sss-selected-super-choice-section",{"fundType":[1,"fund-type"],"fundName":[1,"fund-name"]}],[0,"sss-slatesuper-header"],[0,"sss-footer-section"],[4,"stencil-route-link",{"url":[1],"urlMatch":[1,"url-match"],"activeClass":[1,"active-class"],"exact":[4],"strict":[4],"custom":[1],"anchorClass":[1,"anchor-class"],"anchorRole":[1,"anchor-role"],"anchorTitle":[1,"anchor-title"],"anchorTabIndex":[1,"anchor-tab-index"],"anchorId":[1,"anchor-id"],"history":[16],"location":[16],"root":[1],"ariaHaspopup":[1,"aria-haspopup"],"ariaPosinset":[1,"aria-posinset"],"ariaSetsize":[2,"aria-setsize"],"ariaLabel":[1,"aria-label"],"match":[32]}],[4,"stencil-route-switch",{"group":[513],"scrollTopOffset":[2,"scroll-top-offset"],"location":[16],"routeViewsUpdated":[16]}],[4,"stencil-router",{"root":[1],"historyType":[1,"history-type"],"titleSuffix":[1,"title-suffix"],"scrollTopOffset":[2,"scroll-top-offset"],"location":[32],"history":[32]}],[4,"sss-custom-fund",{"history":[16],"currentCustomFund":[32],"fundOptionsList":[32]}],[0,"fl-dropdown-async",{"placeholder":[1],"searchFunction":[16],"value":[16],"required":[4],"requiredValidationMessage":[1,"required-validation-message"],"disabled":[4],"minSearchStringLength":[2,"min-search-string-length"],"searchState":[32],"inputValue":[32],"isDropdownVisible":[32],"filteredOptions":[32],"highlightedOptionIndex":[32],"selectedOption":[32]},[[2,"focus","handleFocus"],[2,"blur","handleBlur"],[2,"keydown","handleKeyDown"]]],[0,"fl-dropdown",{"placeholder":[1],"options":[16],"value":[16],"required":[4],"requiredValidationMessage":[1,"required-validation-message"],"disabled":[4],"inputValue":[32],"isDropdownVisible":[32],"filteredOptions":[32],"highlightedOptionIndex":[32],"selectedOption":[32]},[[2,"focus","handleFocus"],[2,"blur","handleBlur"],[2,"keydown","handleKeyDown"]]],[0,"sss-standard-choice-form",{"standardChoiceFormSignature":[32]}],[4,"sss-qsuper-insurance-questions"],[0,"sss-qsuper-question-yes-no-buttons",{"history":[16]}],[0,"sss-qsuper-confirm-header"],[4,"sss-qsuper-layout",{"history":[16]}],[0,"sss-notifications-section"],[4,"fl-promise-button",{"isBlockElement":[4,"is-block-element"],"isRounded":[4,"is-rounded"],"disabled":[4],"variant":[1],"promiseFn":[16],"state":[32]}],[4,"fl-button",{"isBlockElement":[4,"is-block-element"],"disabled":[4],"variant":[1]}],[0,"fl-loading-indicator",{"theme":[1]}],[0,"stencil-route",{"group":[513],"componentUpdated":[16],"match":[1040],"url":[1],"component":[1],"componentProps":[16],"exact":[4],"routeRender":[16],"scrollTopOffset":[2,"scroll-top-offset"],"routeViewsUpdated":[16],"location":[16],"history":[16],"historyType":[1,"history-type"]}]]]], options);
|
|
18
18
|
});
|
|
19
19
|
};
|
|
20
20
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as promiseResolve,b as bootstrapLazy}from"./index-0496d1af.js";import"./datorama-akita-79ce4385.js";import"./delay-c0555599.js";import{g as globalScripts}from"./app-globals-7ac1ffba.js";var patchBrowser=function(){var s=import.meta.url;var e={};if(s!==""){e.resourcesUrl=new URL(".",s).href}return promiseResolve(e)};patchBrowser().then((function(s){globalScripts();return bootstrapLazy([["fl-style-guide",[[1,"fl-style-guide",{themeCssUrl:[1,"theme-css-url"]}]]],["context-consumer",[[0,"context-consumer",{context:[16],renderer:[16],subscribe:[16],unsubscribe:[32]}]]],["stencil-async-content",[[0,"stencil-async-content",{documentLocation:[1,"document-location"],content:[32]}]]],["stencil-route-title",[[0,"stencil-route-title",{titleSuffix:[1,"title-suffix"],pageTitle:[1,"page-title"]}]]],["stencil-router-prompt",[[0,"stencil-router-prompt",{when:[4],message:[1],history:[16],unblock:[32]}]]],["stencil-router-redirect",[[0,"stencil-router-redirect",{history:[16],root:[1],url:[1]}]]],["fl-button_46",[[0,"sss-my-own-fund",{history:[16],formState:[32],isNotAllInformationProvidedMessageVisible:[32]}],[0,"sss-self-managed-fund",{history:[16],formState:[32],showSmsfNotSupported:[32]}],[0,"sss-qsuper-question-1"],[0,"sss-qsuper-question-2"],[0,"sss-qsuper-question-3"],[0,"sss-qsuper-question-4"],[0,"sss-qsuper-question-5"],[0,"sss-qsuper-question-6"],[0,"sss-qsuper-question-7"],[0,"sss-qsuper-question-8"],[0,"sss-default-fund",{history:[16],formState:[32],defaultFundProductName:[32]}],[0,"sss-qsuper-insurance-opt-in",{insuranceChosen:[32]}],[0,"sss-qsuper-join"],[0,"sss-slate-standard-choice-page",{history:[16],formState:[32]}],[1,"super-selection-app-host",{sessionState:[32],jwt:[32],appConfiguration:[32],areStylesLoaded:[32]}],[0,"sss-qsuper-consent"],[0,"sss-super-choice-page",{history:[16],promotedFunds:[32],chosenFund:[32]}],[0,"sss-promoted-fund-standard-choice-page",{history:[16],formState:[32]}],[0,"sss-success"],[0,"sss-promoted-fund-join-page",{history:[16]}],[0,"sss-slate-join-page",{history:[16]}],[0,"super-selection-app",{accessToken:[1,"access-token"],backendUrl:[1,"backend-url"],appBaseUrl:[1,"app-base-url"],history:[16],location:[16],isAppInitialised:[32]}],[0,"sss-my-own-fund-inputs",{myOwnFundForm:[16],selectedOption:[32]}],[0,"sss-self-managed-fund-inputs",{fundForm:[16],currentBank:[32]}],[0,"sss-loading-page"],[0,"sss-smsf-not-supported-dialog"],[0,"sss-super-choice-item",{
|
|
1
|
+
import{p as promiseResolve,b as bootstrapLazy}from"./index-0496d1af.js";import"./datorama-akita-79ce4385.js";import"./delay-c0555599.js";import{g as globalScripts}from"./app-globals-7ac1ffba.js";var patchBrowser=function(){var s=import.meta.url;var e={};if(s!==""){e.resourcesUrl=new URL(".",s).href}return promiseResolve(e)};patchBrowser().then((function(s){globalScripts();return bootstrapLazy([["fl-style-guide",[[1,"fl-style-guide",{themeCssUrl:[1,"theme-css-url"]}]]],["context-consumer",[[0,"context-consumer",{context:[16],renderer:[16],subscribe:[16],unsubscribe:[32]}]]],["stencil-async-content",[[0,"stencil-async-content",{documentLocation:[1,"document-location"],content:[32]}]]],["stencil-route-title",[[0,"stencil-route-title",{titleSuffix:[1,"title-suffix"],pageTitle:[1,"page-title"]}]]],["stencil-router-prompt",[[0,"stencil-router-prompt",{when:[4],message:[1],history:[16],unblock:[32]}]]],["stencil-router-redirect",[[0,"stencil-router-redirect",{history:[16],root:[1],url:[1]}]]],["fl-button_46",[[0,"sss-my-own-fund",{history:[16],formState:[32],isNotAllInformationProvidedMessageVisible:[32]}],[0,"sss-self-managed-fund",{history:[16],formState:[32],showSmsfNotSupported:[32]}],[0,"sss-qsuper-question-1"],[0,"sss-qsuper-question-2"],[0,"sss-qsuper-question-3"],[0,"sss-qsuper-question-4"],[0,"sss-qsuper-question-5"],[0,"sss-qsuper-question-6"],[0,"sss-qsuper-question-7"],[0,"sss-qsuper-question-8"],[0,"sss-default-fund",{history:[16],formState:[32],defaultFundProductName:[32]}],[0,"sss-qsuper-insurance-opt-in",{insuranceChosen:[32]}],[0,"sss-qsuper-join"],[0,"sss-slate-standard-choice-page",{history:[16],formState:[32]}],[1,"super-selection-app-host",{sessionState:[32],jwt:[32],appConfiguration:[32],areStylesLoaded:[32]}],[0,"sss-qsuper-consent"],[0,"sss-super-choice-page",{history:[16],promotedFunds:[32],chosenFund:[32]}],[0,"sss-promoted-fund-standard-choice-page",{history:[16],formState:[32]}],[0,"sss-success"],[0,"sss-promoted-fund-join-page",{history:[16]}],[0,"sss-slate-join-page",{history:[16]}],[0,"super-selection-app",{accessToken:[1,"access-token"],backendUrl:[1,"backend-url"],appBaseUrl:[1,"app-base-url"],history:[16],location:[16],isAppInitialised:[32]}],[0,"sss-my-own-fund-inputs",{myOwnFundForm:[16],selectedOption:[32]}],[0,"sss-self-managed-fund-inputs",{fundForm:[16],currentBank:[32]}],[0,"sss-loading-page"],[0,"sss-smsf-not-supported-dialog"],[0,"sss-super-choice-item",{isSelected:[4,"is-selected"],usi:[1],name:[1],logo:[1],pdsLink:[1,"pds-link"],features:[1],disclaimer:[16],abnInfo:[1,"abn-info"],history:[16]}],[0,"sss-selected-super-choice-section",{fundType:[1,"fund-type"],fundName:[1,"fund-name"]}],[0,"sss-slatesuper-header"],[0,"sss-footer-section"],[4,"stencil-route-link",{url:[1],urlMatch:[1,"url-match"],activeClass:[1,"active-class"],exact:[4],strict:[4],custom:[1],anchorClass:[1,"anchor-class"],anchorRole:[1,"anchor-role"],anchorTitle:[1,"anchor-title"],anchorTabIndex:[1,"anchor-tab-index"],anchorId:[1,"anchor-id"],history:[16],location:[16],root:[1],ariaHaspopup:[1,"aria-haspopup"],ariaPosinset:[1,"aria-posinset"],ariaSetsize:[2,"aria-setsize"],ariaLabel:[1,"aria-label"],match:[32]}],[4,"stencil-route-switch",{group:[513],scrollTopOffset:[2,"scroll-top-offset"],location:[16],routeViewsUpdated:[16]}],[4,"stencil-router",{root:[1],historyType:[1,"history-type"],titleSuffix:[1,"title-suffix"],scrollTopOffset:[2,"scroll-top-offset"],location:[32],history:[32]}],[4,"sss-custom-fund",{history:[16],currentCustomFund:[32],fundOptionsList:[32]}],[0,"fl-dropdown-async",{placeholder:[1],searchFunction:[16],value:[16],required:[4],requiredValidationMessage:[1,"required-validation-message"],disabled:[4],minSearchStringLength:[2,"min-search-string-length"],searchState:[32],inputValue:[32],isDropdownVisible:[32],filteredOptions:[32],highlightedOptionIndex:[32],selectedOption:[32]},[[2,"focus","handleFocus"],[2,"blur","handleBlur"],[2,"keydown","handleKeyDown"]]],[0,"fl-dropdown",{placeholder:[1],options:[16],value:[16],required:[4],requiredValidationMessage:[1,"required-validation-message"],disabled:[4],inputValue:[32],isDropdownVisible:[32],filteredOptions:[32],highlightedOptionIndex:[32],selectedOption:[32]},[[2,"focus","handleFocus"],[2,"blur","handleBlur"],[2,"keydown","handleKeyDown"]]],[0,"sss-standard-choice-form",{standardChoiceFormSignature:[32]}],[4,"sss-qsuper-insurance-questions"],[0,"sss-qsuper-question-yes-no-buttons",{history:[16]}],[0,"sss-qsuper-confirm-header"],[4,"sss-qsuper-layout",{history:[16]}],[0,"sss-notifications-section"],[4,"fl-promise-button",{isBlockElement:[4,"is-block-element"],isRounded:[4,"is-rounded"],disabled:[4],variant:[1],promiseFn:[16],state:[32]}],[4,"fl-button",{isBlockElement:[4,"is-block-element"],disabled:[4],variant:[1]}],[0,"fl-loading-indicator",{theme:[1]}],[0,"stencil-route",{group:[513],componentUpdated:[16],match:[1040],url:[1],component:[1],componentProps:[16],exact:[4],routeRender:[16],scrollTopOffset:[2,"scroll-top-offset"],routeViewsUpdated:[16],location:[16],history:[16],historyType:[1,"history-type"]}]]]],s)}));
|