@flarehr/apollo-super-selection 3.24.54115 → 3.28.54446
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/p-ae53b9ed.system.entry.js +69 -0
- package/dist/lib/apollo-super-selection/p-b7dba19e.entry.js +14 -0
- package/dist/lib/apollo-super-selection/p-d82b00ed.system.js +1 -1
- package/dist/lib/cjs/apollo-super-selection.cjs.js +1 -1
- package/dist/lib/cjs/fl-button_46.cjs.entry.js +40 -50
- package/dist/lib/cjs/loader.cjs.js +1 -1
- package/dist/lib/collection/components/super-selection-app/footer-section/footer-section.js +1 -1
- package/dist/lib/collection/components/super-selection-app/funds/constants.js +8 -5
- package/dist/lib/collection/components/super-selection-app/funds/qsuper/qsuper-confirm-header.js +0 -1
- package/dist/lib/collection/components/super-selection-app/funds/qsuper/qsuper-confirm-selection/qsuper-confirm-selection.js +0 -1
- package/dist/lib/collection/components/super-selection-app/funds/qsuper/qsuper-consent/qsuper-consent.js +0 -1
- package/dist/lib/collection/components/super-selection-app/funds/qsuper/qsuper-insurance-opt-in.js +1 -2
- 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/super-choice-item.js +5 -23
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.css +12 -6
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +29 -29
- package/dist/lib/esm/apollo-super-selection.js +1 -1
- package/dist/lib/esm/fl-button_46.entry.js +40 -50
- 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 +10 -10
- 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 +7 -5
- 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-a5be91e3.system.entry.js +0 -69
- package/dist/lib/apollo-super-selection/p-af6dfe9d.entry.js +0 -14
package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-item.js
CHANGED
|
@@ -6,15 +6,15 @@ export class SuperChoiceItem {
|
|
|
6
6
|
}
|
|
7
7
|
render() {
|
|
8
8
|
return (h(Host, { class: {
|
|
9
|
-
'd-flex p-3': true,
|
|
9
|
+
'd-flex p-3 fund-item': true,
|
|
10
10
|
'ss-picked-fund': this.isSelected
|
|
11
11
|
} },
|
|
12
12
|
h("div", { class: "card-body py-0 px-0 px-xl-3" },
|
|
13
|
-
this.isSelected && (h("div", { class: "px-3 py-2 text-white picked-block position-absolute" }, "You picked")),
|
|
13
|
+
this.isSelected && (h("div", { class: "px-3 py-2 text-white promoted-picked-block position-absolute" }, "You picked")),
|
|
14
14
|
h("div", { class: "d-flex flex-fill flex-column align-items-center" },
|
|
15
15
|
h("div", { class: "d-flex justify-content-end w-100" },
|
|
16
16
|
h("div", { class: "text-muted small border rounded-sm px-1 mt-n2 mr-n2 mb-1" }, "Advertised")),
|
|
17
|
-
h("img", { class: "ss-choice-logo", alt:
|
|
17
|
+
h("img", { class: "ss-choice-logo", alt: this.name, src: getAssetPath(`assets/${this.logo}`) }),
|
|
18
18
|
h("p", { class: "font-weight-bold text-center mt-3 mb-0" }, this.name),
|
|
19
19
|
h("div", { class: "mt-3" }, JSON.parse(this.features).map((feature) => (h("p", { class: "text-center" }, feature.value)))))),
|
|
20
20
|
h("div", { class: "text-center bottom-half-fund-tile" },
|
|
@@ -32,7 +32,6 @@ export class SuperChoiceItem {
|
|
|
32
32
|
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
33
33
|
fundUsi: this.usi,
|
|
34
34
|
fundName: this.name,
|
|
35
|
-
fundNameAlt: this.heading,
|
|
36
35
|
pageName: 'Panel Fund Page'
|
|
37
36
|
});
|
|
38
37
|
}
|
|
@@ -45,23 +44,6 @@ export class SuperChoiceItem {
|
|
|
45
44
|
}; }
|
|
46
45
|
static get assetsDirs() { return ["assets"]; }
|
|
47
46
|
static get properties() { return {
|
|
48
|
-
"heading": {
|
|
49
|
-
"type": "string",
|
|
50
|
-
"mutable": false,
|
|
51
|
-
"complexType": {
|
|
52
|
-
"original": "string",
|
|
53
|
-
"resolved": "string",
|
|
54
|
-
"references": {}
|
|
55
|
-
},
|
|
56
|
-
"required": false,
|
|
57
|
-
"optional": false,
|
|
58
|
-
"docs": {
|
|
59
|
-
"tags": [],
|
|
60
|
-
"text": ""
|
|
61
|
-
},
|
|
62
|
-
"attribute": "heading",
|
|
63
|
-
"reflect": false
|
|
64
|
-
},
|
|
65
47
|
"isSelected": {
|
|
66
48
|
"type": "boolean",
|
|
67
49
|
"mutable": false,
|
|
@@ -84,11 +66,11 @@ export class SuperChoiceItem {
|
|
|
84
66
|
"mutable": false,
|
|
85
67
|
"complexType": {
|
|
86
68
|
"original": "string",
|
|
87
|
-
"resolved": "string",
|
|
69
|
+
"resolved": "string | undefined",
|
|
88
70
|
"references": {}
|
|
89
71
|
},
|
|
90
72
|
"required": false,
|
|
91
|
-
"optional":
|
|
73
|
+
"optional": true,
|
|
92
74
|
"docs": {
|
|
93
75
|
"tags": [],
|
|
94
76
|
"text": ""
|
package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.css
CHANGED
|
@@ -33,8 +33,8 @@ img.fluid-fit {
|
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
.ss-choice-logo {
|
|
36
|
-
|
|
37
|
-
|
|
36
|
+
width: auto;
|
|
37
|
+
max-height: 70px;
|
|
38
38
|
object-fit: contain;
|
|
39
39
|
}
|
|
40
40
|
|
|
@@ -52,11 +52,17 @@ img {
|
|
|
52
52
|
flex-grow: 1;
|
|
53
53
|
}
|
|
54
54
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
background: #f8f8f7;
|
|
58
|
-
}
|
|
55
|
+
.fund-item {
|
|
56
|
+
margin-top: 1rem;
|
|
59
57
|
}
|
|
58
|
+
|
|
59
|
+
.promoted-picked-block {
|
|
60
|
+
background-color: var(--fl-color-primary);
|
|
61
|
+
border-bottom-right-radius: 3px;
|
|
62
|
+
left: 0;
|
|
63
|
+
top: 0;
|
|
64
|
+
}
|
|
65
|
+
|
|
60
66
|
@media (min-width: 992px) {
|
|
61
67
|
.bottom-half-fund-tile {
|
|
62
68
|
height: 220px;
|
package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js
CHANGED
|
@@ -22,7 +22,7 @@ export class SuperChoicePage {
|
|
|
22
22
|
}
|
|
23
23
|
componentDidLoad() {
|
|
24
24
|
iframe.appReady();
|
|
25
|
-
const enabledFundIds = this.promotedFunds.map((item) => item.
|
|
25
|
+
const enabledFundIds = this.promotedFunds.map((item) => item.fundId);
|
|
26
26
|
this.eventTrackingService.TrackSuperFundPanelViewedAsync({
|
|
27
27
|
enabledFundIds
|
|
28
28
|
});
|
|
@@ -32,12 +32,12 @@ export class SuperChoicePage {
|
|
|
32
32
|
this.chosenFund = await chosenFundService.GetChosenFundAsync();
|
|
33
33
|
}
|
|
34
34
|
render() {
|
|
35
|
-
const superChoiceParagraphOne = `
|
|
35
|
+
const superChoiceParagraphOne = `The choice of superannuation fund is an important personal financial decision. It is open to you to continue with your existing fund, or alternatively, you can select from one of the funds below or choose another fund. Flare HR is not licensed to advise you in relation to this decision and you may wish to return to this page at a later stage.`;
|
|
36
36
|
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.`;
|
|
37
|
-
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.`;
|
|
37
|
+
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.`;
|
|
38
38
|
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.`;
|
|
39
|
-
const atoLink = 'https://
|
|
40
|
-
const atoLinkDisplay = '
|
|
39
|
+
const atoLink = 'https://my.gov.au';
|
|
40
|
+
const atoLinkDisplay = 'my.gov.au';
|
|
41
41
|
const superfundsLink = 'https://www.apra.gov.au/register-of-superannuation-institutions';
|
|
42
42
|
const superfundsLinkDisplay = 'www.apra.gov.au/register-of-superannuation-institutions';
|
|
43
43
|
return (h(Host, null,
|
|
@@ -58,10 +58,10 @@ export class SuperChoicePage {
|
|
|
58
58
|
h("div", { class: "row" },
|
|
59
59
|
h("div", { class: "col" },
|
|
60
60
|
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" }))))),
|
|
61
|
-
h("div", { class: "row mt-3" }, this.
|
|
62
|
-
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,
|
|
61
|
+
h("div", { class: "row mt-3" }, this.getPromotedFunds().map((fund) => (h("div", { class: "col-12 col-lg-6 d-flex" },
|
|
62
|
+
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) }))))),
|
|
63
63
|
h("div", { class: "row mt-3 px-3" },
|
|
64
|
-
h("div", { class: "col p-4 border rounded
|
|
64
|
+
h("div", { class: "col p-4 border rounded bg-light" },
|
|
65
65
|
h("div", { class: "row" },
|
|
66
66
|
h("div", { class: "col" },
|
|
67
67
|
h("h5", { class: "font-weight-bold" }, "Choose another super fund"),
|
|
@@ -91,7 +91,6 @@ export class SuperChoicePage {
|
|
|
91
91
|
fundId: constants.SlateFundId,
|
|
92
92
|
usi: constants.SlateFundUsi,
|
|
93
93
|
name: constants.SlateFundName,
|
|
94
|
-
heading: constants.SlateAltFundName,
|
|
95
94
|
logo: 'logo-slate.png',
|
|
96
95
|
route: SuperSelectionAppRoutes.SlateJoin,
|
|
97
96
|
pdsLink: constants.SlatePdsUrl,
|
|
@@ -103,11 +102,11 @@ export class SuperChoicePage {
|
|
|
103
102
|
disclaimer: (h("p", { class: "small text-muted" },
|
|
104
103
|
"You should consider the",
|
|
105
104
|
' ',
|
|
106
|
-
h("a", { target: "_blank", href: navigationService.toExternalUrl(constants.SlatePdsUrl), onClick: () => this.pdsViewedAsync(constants.
|
|
105
|
+
h("a", { target: "_blank", href: navigationService.toExternalUrl(constants.SlatePdsUrl), onClick: () => this.pdsViewedAsync(constants.SlateFundName, constants.SlateFundUsi) }, "Product Disclosure Statement"),
|
|
107
106
|
' ',
|
|
108
107
|
"and",
|
|
109
108
|
' ',
|
|
110
|
-
h("a", { target: "_blank", href: navigationService.toExternalUrl('https://slate.co/forms-and-documents') }, "Target Market Determination"),
|
|
109
|
+
h("a", { target: "_blank", href: navigationService.toExternalUrl('https://slate.co/forms-and-documents/target-market-determination/') }, "Target Market Determination"),
|
|
111
110
|
' ',
|
|
112
111
|
"before deciding to invest in or apply to become a member of the fund.")),
|
|
113
112
|
abnInfo: `Diversa Trustees Limited ABN: ${constants.SlateFundDiversaAbn}`
|
|
@@ -116,7 +115,6 @@ export class SuperChoicePage {
|
|
|
116
115
|
fundId: constants.QSuperFundId,
|
|
117
116
|
usi: constants.QSuperFundUsi,
|
|
118
117
|
name: constants.QSuperFundName,
|
|
119
|
-
heading: constants.QSuperAltFundName,
|
|
120
118
|
logo: 'logo-qsuper-square.png',
|
|
121
119
|
route: SuperSelectionAppRoutes.QSuperOptIn,
|
|
122
120
|
pdsLink: constants.QSuperPdsUrl,
|
|
@@ -128,22 +126,29 @@ export class SuperChoicePage {
|
|
|
128
126
|
disclaimer: (h("p", { class: "small text-muted" },
|
|
129
127
|
"You should consider the",
|
|
130
128
|
' ',
|
|
131
|
-
h("a", { target: "_blank", href: navigationService.toExternalUrl(constants.QSuperPdsUrl), onClick: () => this.pdsViewedAsync(constants.
|
|
129
|
+
h("a", { target: "_blank", href: navigationService.toExternalUrl(constants.QSuperPdsUrl), onClick: () => this.pdsViewedAsync(constants.QSuperFundName, constants.QSuperFundUsi) }, "Product Disclosure Statement"),
|
|
132
130
|
' ',
|
|
133
131
|
"before deciding to invest in or apply to become a member of this fund.")),
|
|
134
132
|
abnInfo: `QSuper Board ABN: ${constants.QSuperFundAbn}`
|
|
135
133
|
},
|
|
136
134
|
{
|
|
137
135
|
fundId: constants.AustralianRetirementTrustFundId,
|
|
138
|
-
usi: constants.AustralianRetirementTrustFundUsi,
|
|
139
136
|
name: constants.AustralianRetirementTrustFundName,
|
|
140
|
-
|
|
141
|
-
logo: 'logo-qsuper-square.png',
|
|
137
|
+
logo: 'logo-art.svg',
|
|
142
138
|
route: SuperSelectionAppRoutes.PromotedFundJoin,
|
|
143
|
-
pdsLink:
|
|
144
|
-
features: [
|
|
145
|
-
|
|
146
|
-
|
|
139
|
+
pdsLink: constants.AustralianRetirementTrustPdsUrl,
|
|
140
|
+
features: [
|
|
141
|
+
{ order: 1, value: '$200 billion in retirement savings' },
|
|
142
|
+
{ order: 2, value: '2+ million members' },
|
|
143
|
+
{ order: 3, value: 'A focus on delivering strong, long‑term returns' }
|
|
144
|
+
],
|
|
145
|
+
disclaimer: (h("p", { class: "small text-muted" },
|
|
146
|
+
"You should consider the",
|
|
147
|
+
' ',
|
|
148
|
+
h("a", { target: "_blank", href: navigationService.toExternalUrl(constants.AustralianRetirementTrustPdsUrl), onClick: () => this.pdsViewedAsync(constants.AustralianRetirementTrustFundName) }, "Product Disclosure Statement"),
|
|
149
|
+
' ',
|
|
150
|
+
"before deciding to invest in or apply to become a member of this fund.")),
|
|
151
|
+
abnInfo: `Australian Retirement Trust ABN: ${constants.AustralianRetirementTrustFundAbn}`
|
|
147
152
|
}
|
|
148
153
|
];
|
|
149
154
|
}
|
|
@@ -161,32 +166,27 @@ export class SuperChoicePage {
|
|
|
161
166
|
if (fund.fundId === constants.SlateFundId) {
|
|
162
167
|
await this.eventTrackingService.TrackPromotedSuperFundDetailViewedAsync({
|
|
163
168
|
fundUsi: constants.SlateFundUsi,
|
|
164
|
-
fundName: constants.SlateFundName
|
|
165
|
-
fundNameAlt: constants.SlateAltFundName
|
|
169
|
+
fundName: constants.SlateFundName
|
|
166
170
|
});
|
|
167
171
|
}
|
|
168
172
|
else if (fund.fundId === constants.QSuperFundId) {
|
|
169
173
|
await this.eventTrackingService.TrackPromotedSuperFundDetailViewedAsync({
|
|
170
174
|
fundUsi: constants.QSuperFundUsi,
|
|
171
|
-
fundName: constants.QSuperFundName
|
|
172
|
-
fundNameAlt: constants.QSuperAltFundName
|
|
175
|
+
fundName: constants.QSuperFundName
|
|
173
176
|
});
|
|
174
177
|
}
|
|
175
178
|
else if (fund.fundId === constants.AustralianRetirementTrustFundId) {
|
|
176
179
|
await this.eventTrackingService.TrackPromotedSuperFundDetailViewedAsync({
|
|
177
|
-
|
|
178
|
-
fundName: constants.AustralianRetirementTrustFundName,
|
|
179
|
-
fundNameAlt: constants.AustralianRetirementTrustAltFundName
|
|
180
|
+
fundName: constants.AustralianRetirementTrustFundName
|
|
180
181
|
});
|
|
181
182
|
promotedFundState.fundId = fund.fundId;
|
|
182
183
|
}
|
|
183
184
|
return navigationService.navigateInternally(this.history, fund.route);
|
|
184
185
|
}
|
|
185
|
-
pdsViewedAsync(
|
|
186
|
+
pdsViewedAsync(name, usi) {
|
|
186
187
|
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
187
188
|
fundUsi: usi,
|
|
188
189
|
fundName: name,
|
|
189
|
-
fundNameAlt: heading,
|
|
190
190
|
pageName: 'Panel Fund Page'
|
|
191
191
|
});
|
|
192
192
|
}
|
|
@@ -17,5 +17,5 @@ const patchBrowser = () => {
|
|
|
17
17
|
|
|
18
18
|
patchBrowser().then(options => {
|
|
19
19
|
globalScripts();
|
|
20
|
-
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",{"
|
|
20
|
+
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);
|
|
21
21
|
});
|
|
@@ -261,7 +261,7 @@ class TapSubscriber extends Subscriber {
|
|
|
261
261
|
}
|
|
262
262
|
}
|
|
263
263
|
|
|
264
|
-
const AppVersion = '3.
|
|
264
|
+
const AppVersion = '3.28.54446';
|
|
265
265
|
|
|
266
266
|
// -------------------------------------------------------------------------------------
|
|
267
267
|
// guards
|
|
@@ -4237,7 +4237,7 @@ const FooterSection = class {
|
|
|
4237
4237
|
registerInstance(this, hostRef);
|
|
4238
4238
|
}
|
|
4239
4239
|
render() {
|
|
4240
|
-
return (h("div", { class: "container mb-sm-0" }, h("div", { class: "row justify-content-center pt-3 mt-3 mb-3 border-top" }, h("div", { class: "text-decoration-none" }, h("p", { class: "mt-3 small text-center mb-1 text-muted" }, "Powered by Flare HR"))), h("div", { class: "row justify-content-center pb-sm-0 px-3 px-sm-0 text-center" }, h("p", { class: "text-muted small" }, "Your employer and Flare HR do not endorse or accept responsibility for any financial product advice or services provided by the promoters or trustees of the advertised superannuation funds. Flare HR do not endorse or accept responsibility for any of their content shown about any of the advertised superannuation funds as they are merely passing on the content as provided without any changes. Flare HR do not express any opinion or make any recommendation about any of the advertised funds.")), h("div", { class: "row justify-content-end my-1 px-3 px-sm-0" }, this.appVersionBadge())));
|
|
4240
|
+
return (h("div", { class: "container mb-sm-0" }, h("div", { class: "row justify-content-center pt-3 mt-3 mb-3 border-top" }, h("div", { class: "text-decoration-none" }, h("p", { class: "mt-3 small text-center mb-1 text-muted" }, "Powered by Flare HR"))), h("div", { class: "row justify-content-center pb-sm-0 px-3 px-sm-0 text-center" }, h("p", { class: "text-muted small" }, "This page contains factual information only and does not take into account your particular objectives, financial circumstances or needs. If you have questions or need help making a decision about your super fund, you should speak to a licensed financial advice provider. You should consider the relevant super fund's PDS and TMD (if applicable) in deciding whether to apply to join the super fund. Each of the advertised fund's PDS and TMD (if applicable) can be found in their advertisements above. If you are considering joining another fund you can find the PDS and TMD on the fund's website. Your employer and Flare HR do not endorse or accept responsibility for any financial product advice or services provided by the promoters or trustees of the advertised superannuation funds. Flare HR do not endorse or accept responsibility for any of their content shown about any of the advertised superannuation funds as they are merely passing on the content as provided without any changes. Flare HR do not express any opinion or make any recommendation about any of the advertised funds.")), h("div", { class: "row justify-content-end my-1 px-3 px-sm-0" }, this.appVersionBadge())));
|
|
4241
4241
|
}
|
|
4242
4242
|
appVersionBadge() {
|
|
4243
4243
|
return (h("small", { style: { opacity: '0.5' }, class: "text-muted" }, "Powered by Flare, v", AppVersion));
|
|
@@ -4509,7 +4509,6 @@ const QSuperFundUsi = '60905115063001';
|
|
|
4509
4509
|
const QSuperFundAbn = '32 125 059 006';
|
|
4510
4510
|
const QSuperFundId = 'qsuper';
|
|
4511
4511
|
const QSuperFundName = 'QSuper';
|
|
4512
|
-
const QSuperAltFundName = 'Recognised performer';
|
|
4513
4512
|
const QSuperInsuranceProductName = 'QSuper Insurance';
|
|
4514
4513
|
const QSuperPdsUrl = 'https://qsuper.qld.gov.au/calculators-and-forms/publications/product-disclosure-statements';
|
|
4515
4514
|
const QSuperPdsPdfUrl = 'https://qsuper.qld.gov.au/-/media/pdfs/qsuper-public/publications/pds11.pdf';
|
|
@@ -4520,12 +4519,16 @@ const SlateFundUsi = '32367272075001';
|
|
|
4520
4519
|
const SlateFundDiversaAbn = '49 006 421 638';
|
|
4521
4520
|
const SlateFundId = 'slate';
|
|
4522
4521
|
const SlateFundName = 'Slate Super';
|
|
4523
|
-
const SlateAltFundName = 'Modern Digital Fund';
|
|
4524
4522
|
const SlatePdsUrl = 'https://slate.co/pds/?utm_source=flare&utm_medium=superselection';
|
|
4525
|
-
const AustralianRetirementTrustFundUsi = 'australian-retirement-trust';
|
|
4526
4523
|
const AustralianRetirementTrustFundId = 'australian-retirement-trust';
|
|
4527
|
-
const AustralianRetirementTrustFundName = '
|
|
4528
|
-
const
|
|
4524
|
+
const AustralianRetirementTrustFundName = 'Australian Retirement Trust';
|
|
4525
|
+
const AustralianRetirementTrustPdsUrl = 'https://www.australianretirementtrust.com.au/library/media/pdfs/pds/super-savings-product-disclosure-statement-and-membership-form.pdf';
|
|
4526
|
+
const AustralianRetirementTrustFundAbn = '60 905 115 063';
|
|
4527
|
+
const PromotedFundIdList = [
|
|
4528
|
+
{ dtoPropName: 'qSuper', id: QSuperFundId },
|
|
4529
|
+
{ dtoPropName: 'slate', id: SlateFundId },
|
|
4530
|
+
{ dtoPropName: 'australianRetirementTrust', id: AustralianRetirementTrustFundId }
|
|
4531
|
+
];
|
|
4529
4532
|
|
|
4530
4533
|
const qsuperConfirmationCss = "";
|
|
4531
4534
|
|
|
@@ -4542,7 +4545,6 @@ const QsuperConfirmHeader = class {
|
|
|
4542
4545
|
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
4543
4546
|
fundUsi: QSuperFundUsi,
|
|
4544
4547
|
fundName: QSuperFundName,
|
|
4545
|
-
fundNameAlt: QSuperAltFundName,
|
|
4546
4548
|
pageName: 'Insurance Opt In'
|
|
4547
4549
|
});
|
|
4548
4550
|
}
|
|
@@ -4726,7 +4728,6 @@ const QsuperConsent = class {
|
|
|
4726
4728
|
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
4727
4729
|
fundUsi: QSuperFundUsi,
|
|
4728
4730
|
fundName: QSuperFundName,
|
|
4729
|
-
fundNameAlt: QSuperAltFundName,
|
|
4730
4731
|
pageName: 'Accumulation Page'
|
|
4731
4732
|
});
|
|
4732
4733
|
}
|
|
@@ -4788,7 +4789,6 @@ const QsuperInsuranceOptIn = class {
|
|
|
4788
4789
|
return this.eventTrackingService.TrackFinancialProductViewedAsync({
|
|
4789
4790
|
fundUsi: QSuperFundUsi,
|
|
4790
4791
|
fundName: QSuperFundName,
|
|
4791
|
-
fundNameAlt: QSuperAltFundName,
|
|
4792
4792
|
financialProduct: QSuperInsuranceProductName
|
|
4793
4793
|
});
|
|
4794
4794
|
}
|
|
@@ -4811,7 +4811,7 @@ const QsuperInsuranceOptIn = class {
|
|
|
4811
4811
|
}
|
|
4812
4812
|
showIneligibleNotification(description) {
|
|
4813
4813
|
notificationsService.showInfoNotification({
|
|
4814
|
-
title:
|
|
4814
|
+
title: 'Unable to apply for Insurance',
|
|
4815
4815
|
description
|
|
4816
4816
|
});
|
|
4817
4817
|
}
|
|
@@ -4840,7 +4840,7 @@ const QsuperInsuranceQuestions = class {
|
|
|
4840
4840
|
};
|
|
4841
4841
|
QsuperInsuranceQuestions.style = qsuperCss$2;
|
|
4842
4842
|
|
|
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{
|
|
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{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
4844
|
|
|
4845
4845
|
const QSuperConfirmSelection = class {
|
|
4846
4846
|
constructor(hostRef) {
|
|
@@ -4862,7 +4862,6 @@ const QSuperConfirmSelection = class {
|
|
|
4862
4862
|
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
4863
4863
|
fundUsi: QSuperFundUsi,
|
|
4864
4864
|
fundName: QSuperFundName,
|
|
4865
|
-
fundNameAlt: QSuperAltFundName,
|
|
4866
4865
|
pageName: 'Confirm Page'
|
|
4867
4866
|
});
|
|
4868
4867
|
}
|
|
@@ -5594,7 +5593,7 @@ const Success = class {
|
|
|
5594
5593
|
}
|
|
5595
5594
|
};
|
|
5596
5595
|
|
|
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{
|
|
5596
|
+
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
5597
|
|
|
5599
5598
|
const SuperChoiceItem = class {
|
|
5600
5599
|
constructor(hostRef) {
|
|
@@ -5604,9 +5603,9 @@ const SuperChoiceItem = class {
|
|
|
5604
5603
|
}
|
|
5605
5604
|
render() {
|
|
5606
5605
|
return (h(Host, { class: {
|
|
5607
|
-
'd-flex p-3': true,
|
|
5606
|
+
'd-flex p-3 fund-item': true,
|
|
5608
5607
|
'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:
|
|
5608
|
+
} }, 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
5609
|
}
|
|
5611
5610
|
handleFundClick() {
|
|
5612
5611
|
return this.joinFundClicked.emit();
|
|
@@ -5615,7 +5614,6 @@ const SuperChoiceItem = class {
|
|
|
5615
5614
|
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
5616
5615
|
fundUsi: this.usi,
|
|
5617
5616
|
fundName: this.name,
|
|
5618
|
-
fundNameAlt: this.heading,
|
|
5619
5617
|
pageName: 'Panel Fund Page'
|
|
5620
5618
|
});
|
|
5621
5619
|
}
|
|
@@ -5625,16 +5623,13 @@ SuperChoiceItem.style = superChoicePageCss$1;
|
|
|
5625
5623
|
|
|
5626
5624
|
class ChosenFundService {
|
|
5627
5625
|
async GetChosenFundAsync() {
|
|
5628
|
-
var _a;
|
|
5626
|
+
var _a, _b;
|
|
5629
5627
|
const choiceDetails = (_a = superSelectionAppService.superBuyer.superChoice) === null || _a === void 0 ? void 0 : _a.choiceDetails;
|
|
5630
5628
|
if (!choiceDetails)
|
|
5631
5629
|
return none;
|
|
5632
5630
|
if ('promoted' in choiceDetails) {
|
|
5633
|
-
const
|
|
5634
|
-
|
|
5635
|
-
: SlateFundId in choiceDetails.promoted
|
|
5636
|
-
? SlateFundId
|
|
5637
|
-
: '';
|
|
5631
|
+
const fund = PromotedFundIdList.find((f) => f.dtoPropName in choiceDetails.promoted);
|
|
5632
|
+
const promotedId = (_b = fund === null || fund === void 0 ? void 0 : fund.id) !== null && _b !== void 0 ? _b : '';
|
|
5638
5633
|
return some({
|
|
5639
5634
|
isPromoted: true,
|
|
5640
5635
|
promotedId
|
|
@@ -5673,7 +5668,7 @@ class ChosenFundService {
|
|
|
5673
5668
|
}
|
|
5674
5669
|
const chosenFundService = new ChosenFundService();
|
|
5675
5670
|
|
|
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{
|
|
5671
|
+
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
5672
|
|
|
5678
5673
|
const SuperChoicePage = class {
|
|
5679
5674
|
constructor(hostRef) {
|
|
@@ -5689,7 +5684,7 @@ const SuperChoicePage = class {
|
|
|
5689
5684
|
}
|
|
5690
5685
|
componentDidLoad() {
|
|
5691
5686
|
iframe.appReady();
|
|
5692
|
-
const enabledFundIds = this.promotedFunds.map((item) => item.
|
|
5687
|
+
const enabledFundIds = this.promotedFunds.map((item) => item.fundId);
|
|
5693
5688
|
this.eventTrackingService.TrackSuperFundPanelViewedAsync({
|
|
5694
5689
|
enabledFundIds
|
|
5695
5690
|
});
|
|
@@ -5699,15 +5694,15 @@ const SuperChoicePage = class {
|
|
|
5699
5694
|
this.chosenFund = await chosenFundService.GetChosenFundAsync();
|
|
5700
5695
|
}
|
|
5701
5696
|
render() {
|
|
5702
|
-
const superChoiceParagraphOne = `
|
|
5697
|
+
const superChoiceParagraphOne = `The choice of superannuation fund is an important personal financial decision. It is open to you to continue with your existing fund, or alternatively, you can select from one of the funds below or choose another fund. Flare HR is not licensed to advise you in relation to this decision and you may wish to return to this page at a later stage.`;
|
|
5703
5698
|
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
|
-
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.`;
|
|
5699
|
+
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
5700
|
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 = '
|
|
5701
|
+
const atoLink = 'https://my.gov.au';
|
|
5702
|
+
const atoLinkDisplay = 'my.gov.au';
|
|
5708
5703
|
const superfundsLink = 'https://www.apra.gov.au/register-of-superannuation-institutions';
|
|
5709
5704
|
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.
|
|
5705
|
+
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
5706
|
}
|
|
5712
5707
|
allFunds() {
|
|
5713
5708
|
return [
|
|
@@ -5715,7 +5710,6 @@ const SuperChoicePage = class {
|
|
|
5715
5710
|
fundId: SlateFundId,
|
|
5716
5711
|
usi: SlateFundUsi,
|
|
5717
5712
|
name: SlateFundName,
|
|
5718
|
-
heading: SlateAltFundName,
|
|
5719
5713
|
logo: 'logo-slate.png',
|
|
5720
5714
|
route: SuperSelectionAppRoutes.SlateJoin,
|
|
5721
5715
|
pdsLink: SlatePdsUrl,
|
|
@@ -5724,14 +5718,13 @@ const SuperChoicePage = class {
|
|
|
5724
5718
|
{ order: 2, value: 'Advanced mobile app with retirement forecast and smart features' },
|
|
5725
5719
|
{ order: 3, value: 'Member advocates at Slate to assist with your account' }
|
|
5726
5720
|
],
|
|
5727
|
-
disclaimer: (h("p", { class: "small text-muted" }, "You should consider the", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl(SlatePdsUrl), onClick: () => this.pdsViewedAsync(
|
|
5721
|
+
disclaimer: (h("p", { class: "small text-muted" }, "You should consider the", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl(SlatePdsUrl), onClick: () => this.pdsViewedAsync(SlateFundName, SlateFundUsi) }, "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.")),
|
|
5728
5722
|
abnInfo: `Diversa Trustees Limited ABN: ${SlateFundDiversaAbn}`
|
|
5729
5723
|
},
|
|
5730
5724
|
{
|
|
5731
5725
|
fundId: QSuperFundId,
|
|
5732
5726
|
usi: QSuperFundUsi,
|
|
5733
5727
|
name: QSuperFundName,
|
|
5734
|
-
heading: QSuperAltFundName,
|
|
5735
5728
|
logo: 'logo-qsuper-square.png',
|
|
5736
5729
|
route: SuperSelectionAppRoutes.QSuperOptIn,
|
|
5737
5730
|
pdsLink: QSuperPdsUrl,
|
|
@@ -5740,20 +5733,22 @@ const SuperChoicePage = class {
|
|
|
5740
5733
|
{ order: 2, value: `One of Australia's largest funds` },
|
|
5741
5734
|
{ order: 3, value: 'Awarded SuperRatings highest performance rating' }
|
|
5742
5735
|
],
|
|
5743
|
-
disclaimer: (h("p", { class: "small text-muted" }, "You should consider the", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl(QSuperPdsUrl), onClick: () => this.pdsViewedAsync(
|
|
5736
|
+
disclaimer: (h("p", { class: "small text-muted" }, "You should consider the", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl(QSuperPdsUrl), onClick: () => this.pdsViewedAsync(QSuperFundName, QSuperFundUsi) }, "Product Disclosure Statement"), ' ', "before deciding to invest in or apply to become a member of this fund.")),
|
|
5744
5737
|
abnInfo: `QSuper Board ABN: ${QSuperFundAbn}`
|
|
5745
5738
|
},
|
|
5746
5739
|
{
|
|
5747
5740
|
fundId: AustralianRetirementTrustFundId,
|
|
5748
|
-
usi: AustralianRetirementTrustFundUsi,
|
|
5749
5741
|
name: AustralianRetirementTrustFundName,
|
|
5750
|
-
|
|
5751
|
-
logo: 'logo-qsuper-square.png',
|
|
5742
|
+
logo: 'logo-art.svg',
|
|
5752
5743
|
route: SuperSelectionAppRoutes.PromotedFundJoin,
|
|
5753
|
-
pdsLink:
|
|
5754
|
-
features: [
|
|
5755
|
-
|
|
5756
|
-
|
|
5744
|
+
pdsLink: AustralianRetirementTrustPdsUrl,
|
|
5745
|
+
features: [
|
|
5746
|
+
{ order: 1, value: '$200 billion in retirement savings' },
|
|
5747
|
+
{ order: 2, value: '2+ million members' },
|
|
5748
|
+
{ order: 3, value: 'A focus on delivering strong, long‑term returns' }
|
|
5749
|
+
],
|
|
5750
|
+
disclaimer: (h("p", { class: "small text-muted" }, "You should consider the", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl(AustralianRetirementTrustPdsUrl), onClick: () => this.pdsViewedAsync(AustralianRetirementTrustFundName) }, "Product Disclosure Statement"), ' ', "before deciding to invest in or apply to become a member of this fund.")),
|
|
5751
|
+
abnInfo: `Australian Retirement Trust ABN: ${AustralianRetirementTrustFundAbn}`
|
|
5757
5752
|
}
|
|
5758
5753
|
];
|
|
5759
5754
|
}
|
|
@@ -5771,32 +5766,27 @@ const SuperChoicePage = class {
|
|
|
5771
5766
|
if (fund.fundId === SlateFundId) {
|
|
5772
5767
|
await this.eventTrackingService.TrackPromotedSuperFundDetailViewedAsync({
|
|
5773
5768
|
fundUsi: SlateFundUsi,
|
|
5774
|
-
fundName: SlateFundName
|
|
5775
|
-
fundNameAlt: SlateAltFundName
|
|
5769
|
+
fundName: SlateFundName
|
|
5776
5770
|
});
|
|
5777
5771
|
}
|
|
5778
5772
|
else if (fund.fundId === QSuperFundId) {
|
|
5779
5773
|
await this.eventTrackingService.TrackPromotedSuperFundDetailViewedAsync({
|
|
5780
5774
|
fundUsi: QSuperFundUsi,
|
|
5781
|
-
fundName: QSuperFundName
|
|
5782
|
-
fundNameAlt: QSuperAltFundName
|
|
5775
|
+
fundName: QSuperFundName
|
|
5783
5776
|
});
|
|
5784
5777
|
}
|
|
5785
5778
|
else if (fund.fundId === AustralianRetirementTrustFundId) {
|
|
5786
5779
|
await this.eventTrackingService.TrackPromotedSuperFundDetailViewedAsync({
|
|
5787
|
-
|
|
5788
|
-
fundName: AustralianRetirementTrustFundName,
|
|
5789
|
-
fundNameAlt: AustralianRetirementTrustAltFundName
|
|
5780
|
+
fundName: AustralianRetirementTrustFundName
|
|
5790
5781
|
});
|
|
5791
5782
|
state$1.fundId = fund.fundId;
|
|
5792
5783
|
}
|
|
5793
5784
|
return navigationService.navigateInternally(this.history, fund.route);
|
|
5794
5785
|
}
|
|
5795
|
-
pdsViewedAsync(
|
|
5786
|
+
pdsViewedAsync(name, usi) {
|
|
5796
5787
|
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
5797
5788
|
fundUsi: usi,
|
|
5798
5789
|
fundName: name,
|
|
5799
|
-
fundNameAlt: heading,
|
|
5800
5790
|
pageName: 'Panel Fund Page'
|
|
5801
5791
|
});
|
|
5802
5792
|
}
|