@flarehr/apollo-super-selection 3.25.54167 → 3.26.54319
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-02d06d31.entry.js → p-1cf94785.entry.js} +4 -4
- package/dist/lib/apollo-super-selection/{p-21609443.system.entry.js → p-7fae7603.system.entry.js} +18 -18
- 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 +29 -38
- package/dist/lib/cjs/loader.cjs.js +1 -1
- package/dist/lib/collection/components/super-selection-app/funds/constants.js +4 -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/super-choice-page/assets/logo-art.svg +7 -0
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-item.js +2 -20
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.css +6 -2
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +25 -23
- package/dist/lib/esm/apollo-super-selection.js +1 -1
- package/dist/lib/esm/fl-button_46.entry.js +29 -38
- 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 +1 -1
- package/dist/lib/esm-es5/loader.js +1 -1
- package/dist/lib/types/components/super-selection-app/api/super-selection-events.model.d.ts +0 -6
- package/dist/lib/types/components/super-selection-app/funds/constants.d.ts +4 -5
- package/dist/lib/types/components/super-selection-app/super-choice-page/super-choice-item.d.ts +0 -1
- package/dist/lib/types/components.d.ts +0 -2
- package/package.json +1 -1
package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js
CHANGED
|
@@ -36,8 +36,8 @@ export class SuperChoicePage {
|
|
|
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
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,8 +58,8 @@ 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
64
|
h("div", { class: "col p-4 border rounded bg-light" },
|
|
65
65
|
h("div", { class: "row" },
|
|
@@ -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.SlateFundUsi, constants.SlateFundName
|
|
105
|
+
h("a", { target: "_blank", href: navigationService.toExternalUrl(constants.SlatePdsUrl), onClick: () => this.pdsViewedAsync(constants.SlateFundUsi, constants.SlateFundName) }, "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,7 +126,7 @@ 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.QSuperFundUsi, constants.QSuperFundName
|
|
129
|
+
h("a", { target: "_blank", href: navigationService.toExternalUrl(constants.QSuperPdsUrl), onClick: () => this.pdsViewedAsync(constants.QSuperFundUsi, constants.QSuperFundName) }, "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}`
|
|
@@ -137,13 +135,21 @@ export class SuperChoicePage {
|
|
|
137
135
|
fundId: constants.AustralianRetirementTrustFundId,
|
|
138
136
|
usi: constants.AustralianRetirementTrustFundUsi,
|
|
139
137
|
name: constants.AustralianRetirementTrustFundName,
|
|
140
|
-
|
|
141
|
-
logo: 'logo-qsuper-square.png',
|
|
138
|
+
logo: 'logo-art.svg',
|
|
142
139
|
route: SuperSelectionAppRoutes.PromotedFundJoin,
|
|
143
|
-
pdsLink:
|
|
144
|
-
features: [
|
|
145
|
-
|
|
146
|
-
|
|
140
|
+
pdsLink: constants.AustralianRetirementTrustPdsUrl,
|
|
141
|
+
features: [
|
|
142
|
+
{ order: 1, value: '$200 billion in retirement savings' },
|
|
143
|
+
{ order: 2, value: '2+ million members' },
|
|
144
|
+
{ order: 3, value: 'A focus on delivering strong, long‑term returns' }
|
|
145
|
+
],
|
|
146
|
+
disclaimer: (h("p", { class: "small text-muted" },
|
|
147
|
+
"You should consider the",
|
|
148
|
+
' ',
|
|
149
|
+
h("a", { target: "_blank", href: navigationService.toExternalUrl(constants.AustralianRetirementTrustPdsUrl), onClick: () => this.pdsViewedAsync(constants.AustralianRetirementTrustFundUsi, constants.AustralianRetirementTrustFundName) }, "Product Disclosure Statement"),
|
|
150
|
+
' ',
|
|
151
|
+
"before deciding to invest in or apply to become a member of this fund.")),
|
|
152
|
+
abnInfo: `ABN: ${constants.AustralianRetirementTrustFundAbn}`
|
|
147
153
|
}
|
|
148
154
|
];
|
|
149
155
|
}
|
|
@@ -161,32 +167,28 @@ export class SuperChoicePage {
|
|
|
161
167
|
if (fund.fundId === constants.SlateFundId) {
|
|
162
168
|
await this.eventTrackingService.TrackPromotedSuperFundDetailViewedAsync({
|
|
163
169
|
fundUsi: constants.SlateFundUsi,
|
|
164
|
-
fundName: constants.SlateFundName
|
|
165
|
-
fundNameAlt: constants.SlateAltFundName
|
|
170
|
+
fundName: constants.SlateFundName
|
|
166
171
|
});
|
|
167
172
|
}
|
|
168
173
|
else if (fund.fundId === constants.QSuperFundId) {
|
|
169
174
|
await this.eventTrackingService.TrackPromotedSuperFundDetailViewedAsync({
|
|
170
175
|
fundUsi: constants.QSuperFundUsi,
|
|
171
|
-
fundName: constants.QSuperFundName
|
|
172
|
-
fundNameAlt: constants.QSuperAltFundName
|
|
176
|
+
fundName: constants.QSuperFundName
|
|
173
177
|
});
|
|
174
178
|
}
|
|
175
179
|
else if (fund.fundId === constants.AustralianRetirementTrustFundId) {
|
|
176
180
|
await this.eventTrackingService.TrackPromotedSuperFundDetailViewedAsync({
|
|
177
181
|
fundUsi: constants.AustralianRetirementTrustFundUsi,
|
|
178
|
-
fundName: constants.AustralianRetirementTrustFundName
|
|
179
|
-
fundNameAlt: constants.AustralianRetirementTrustAltFundName
|
|
182
|
+
fundName: constants.AustralianRetirementTrustFundName
|
|
180
183
|
});
|
|
181
184
|
promotedFundState.fundId = fund.fundId;
|
|
182
185
|
}
|
|
183
186
|
return navigationService.navigateInternally(this.history, fund.route);
|
|
184
187
|
}
|
|
185
|
-
pdsViewedAsync(usi, name
|
|
188
|
+
pdsViewedAsync(usi, name) {
|
|
186
189
|
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
187
190
|
fundUsi: usi,
|
|
188
191
|
fundName: name,
|
|
189
|
-
fundNameAlt: heading,
|
|
190
192
|
pageName: 'Panel Fund Page'
|
|
191
193
|
});
|
|
192
194
|
}
|
|
@@ -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.26.54319';
|
|
265
265
|
|
|
266
266
|
// -------------------------------------------------------------------------------------
|
|
267
267
|
// guards
|
|
@@ -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,12 @@ 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/';
|
|
4526
|
+
const AustralianRetirementTrustFundUsi = 'XXXXXXXXXXXXXX';
|
|
4527
|
+
const AustralianRetirementTrustFundAbn = 'XX XXX XXX XXX';
|
|
4529
4528
|
|
|
4530
4529
|
const qsuperConfirmationCss = "";
|
|
4531
4530
|
|
|
@@ -4542,7 +4541,6 @@ const QsuperConfirmHeader = class {
|
|
|
4542
4541
|
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
4543
4542
|
fundUsi: QSuperFundUsi,
|
|
4544
4543
|
fundName: QSuperFundName,
|
|
4545
|
-
fundNameAlt: QSuperAltFundName,
|
|
4546
4544
|
pageName: 'Insurance Opt In'
|
|
4547
4545
|
});
|
|
4548
4546
|
}
|
|
@@ -4726,7 +4724,6 @@ const QsuperConsent = class {
|
|
|
4726
4724
|
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
4727
4725
|
fundUsi: QSuperFundUsi,
|
|
4728
4726
|
fundName: QSuperFundName,
|
|
4729
|
-
fundNameAlt: QSuperAltFundName,
|
|
4730
4727
|
pageName: 'Accumulation Page'
|
|
4731
4728
|
});
|
|
4732
4729
|
}
|
|
@@ -4788,7 +4785,6 @@ const QsuperInsuranceOptIn = class {
|
|
|
4788
4785
|
return this.eventTrackingService.TrackFinancialProductViewedAsync({
|
|
4789
4786
|
fundUsi: QSuperFundUsi,
|
|
4790
4787
|
fundName: QSuperFundName,
|
|
4791
|
-
fundNameAlt: QSuperAltFundName,
|
|
4792
4788
|
financialProduct: QSuperInsuranceProductName
|
|
4793
4789
|
});
|
|
4794
4790
|
}
|
|
@@ -4811,7 +4807,7 @@ const QsuperInsuranceOptIn = class {
|
|
|
4811
4807
|
}
|
|
4812
4808
|
showIneligibleNotification(description) {
|
|
4813
4809
|
notificationsService.showInfoNotification({
|
|
4814
|
-
title:
|
|
4810
|
+
title: 'Unable to apply for Insurance',
|
|
4815
4811
|
description
|
|
4816
4812
|
});
|
|
4817
4813
|
}
|
|
@@ -4840,7 +4836,7 @@ const QsuperInsuranceQuestions = class {
|
|
|
4840
4836
|
};
|
|
4841
4837
|
QsuperInsuranceQuestions.style = qsuperCss$2;
|
|
4842
4838
|
|
|
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{
|
|
4839
|
+
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}@media (min-width: 992px){.bottom-half-fund-tile{height:220px}}";
|
|
4844
4840
|
|
|
4845
4841
|
const QSuperConfirmSelection = class {
|
|
4846
4842
|
constructor(hostRef) {
|
|
@@ -4862,7 +4858,6 @@ const QSuperConfirmSelection = class {
|
|
|
4862
4858
|
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
4863
4859
|
fundUsi: QSuperFundUsi,
|
|
4864
4860
|
fundName: QSuperFundName,
|
|
4865
|
-
fundNameAlt: QSuperAltFundName,
|
|
4866
4861
|
pageName: 'Confirm Page'
|
|
4867
4862
|
});
|
|
4868
4863
|
}
|
|
@@ -5594,7 +5589,7 @@ const Success = class {
|
|
|
5594
5589
|
}
|
|
5595
5590
|
};
|
|
5596
5591
|
|
|
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{
|
|
5592
|
+
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}@media (min-width: 992px){.bottom-half-fund-tile{height:220px}}";
|
|
5598
5593
|
|
|
5599
5594
|
const SuperChoiceItem = class {
|
|
5600
5595
|
constructor(hostRef) {
|
|
@@ -5604,9 +5599,9 @@ const SuperChoiceItem = class {
|
|
|
5604
5599
|
}
|
|
5605
5600
|
render() {
|
|
5606
5601
|
return (h(Host, { class: {
|
|
5607
|
-
'd-flex p-3': true,
|
|
5602
|
+
'd-flex p-3 fund-item': true,
|
|
5608
5603
|
'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:
|
|
5604
|
+
} }, 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: 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
5605
|
}
|
|
5611
5606
|
handleFundClick() {
|
|
5612
5607
|
return this.joinFundClicked.emit();
|
|
@@ -5615,7 +5610,6 @@ const SuperChoiceItem = class {
|
|
|
5615
5610
|
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
5616
5611
|
fundUsi: this.usi,
|
|
5617
5612
|
fundName: this.name,
|
|
5618
|
-
fundNameAlt: this.heading,
|
|
5619
5613
|
pageName: 'Panel Fund Page'
|
|
5620
5614
|
});
|
|
5621
5615
|
}
|
|
@@ -5673,7 +5667,7 @@ class ChosenFundService {
|
|
|
5673
5667
|
}
|
|
5674
5668
|
const chosenFundService = new ChosenFundService();
|
|
5675
5669
|
|
|
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{
|
|
5670
|
+
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}@media (min-width: 992px){.bottom-half-fund-tile{height:220px}}";
|
|
5677
5671
|
|
|
5678
5672
|
const SuperChoicePage = class {
|
|
5679
5673
|
constructor(hostRef) {
|
|
@@ -5703,11 +5697,11 @@ const SuperChoicePage = class {
|
|
|
5703
5697
|
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
5698
|
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
5699
|
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 = '
|
|
5700
|
+
const atoLink = 'https://my.gov.au';
|
|
5701
|
+
const atoLinkDisplay = 'my.gov.au';
|
|
5708
5702
|
const superfundsLink = 'https://www.apra.gov.au/register-of-superannuation-institutions';
|
|
5709
5703
|
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.
|
|
5704
|
+
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
5705
|
}
|
|
5712
5706
|
allFunds() {
|
|
5713
5707
|
return [
|
|
@@ -5715,7 +5709,6 @@ const SuperChoicePage = class {
|
|
|
5715
5709
|
fundId: SlateFundId,
|
|
5716
5710
|
usi: SlateFundUsi,
|
|
5717
5711
|
name: SlateFundName,
|
|
5718
|
-
heading: SlateAltFundName,
|
|
5719
5712
|
logo: 'logo-slate.png',
|
|
5720
5713
|
route: SuperSelectionAppRoutes.SlateJoin,
|
|
5721
5714
|
pdsLink: SlatePdsUrl,
|
|
@@ -5724,14 +5717,13 @@ const SuperChoicePage = class {
|
|
|
5724
5717
|
{ order: 2, value: 'Advanced mobile app with retirement forecast and smart features' },
|
|
5725
5718
|
{ order: 3, value: 'Member advocates at Slate to assist with your account' }
|
|
5726
5719
|
],
|
|
5727
|
-
disclaimer: (h("p", { class: "small text-muted" }, "You should consider the", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl(SlatePdsUrl), onClick: () => this.pdsViewedAsync(SlateFundUsi, SlateFundName
|
|
5720
|
+
disclaimer: (h("p", { class: "small text-muted" }, "You should consider the", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl(SlatePdsUrl), onClick: () => this.pdsViewedAsync(SlateFundUsi, SlateFundName) }, "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
5721
|
abnInfo: `Diversa Trustees Limited ABN: ${SlateFundDiversaAbn}`
|
|
5729
5722
|
},
|
|
5730
5723
|
{
|
|
5731
5724
|
fundId: QSuperFundId,
|
|
5732
5725
|
usi: QSuperFundUsi,
|
|
5733
5726
|
name: QSuperFundName,
|
|
5734
|
-
heading: QSuperAltFundName,
|
|
5735
5727
|
logo: 'logo-qsuper-square.png',
|
|
5736
5728
|
route: SuperSelectionAppRoutes.QSuperOptIn,
|
|
5737
5729
|
pdsLink: QSuperPdsUrl,
|
|
@@ -5740,20 +5732,23 @@ const SuperChoicePage = class {
|
|
|
5740
5732
|
{ order: 2, value: `One of Australia's largest funds` },
|
|
5741
5733
|
{ order: 3, value: 'Awarded SuperRatings highest performance rating' }
|
|
5742
5734
|
],
|
|
5743
|
-
disclaimer: (h("p", { class: "small text-muted" }, "You should consider the", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl(QSuperPdsUrl), onClick: () => this.pdsViewedAsync(QSuperFundUsi, QSuperFundName
|
|
5735
|
+
disclaimer: (h("p", { class: "small text-muted" }, "You should consider the", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl(QSuperPdsUrl), onClick: () => this.pdsViewedAsync(QSuperFundUsi, QSuperFundName) }, "Product Disclosure Statement"), ' ', "before deciding to invest in or apply to become a member of this fund.")),
|
|
5744
5736
|
abnInfo: `QSuper Board ABN: ${QSuperFundAbn}`
|
|
5745
5737
|
},
|
|
5746
5738
|
{
|
|
5747
5739
|
fundId: AustralianRetirementTrustFundId,
|
|
5748
5740
|
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(AustralianRetirementTrustFundUsi, AustralianRetirementTrustFundName) }, "Product Disclosure Statement"), ' ', "before deciding to invest in or apply to become a member of this fund.")),
|
|
5751
|
+
abnInfo: `ABN: ${AustralianRetirementTrustFundAbn}`
|
|
5757
5752
|
}
|
|
5758
5753
|
];
|
|
5759
5754
|
}
|
|
@@ -5771,32 +5766,28 @@ 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
5780
|
fundUsi: AustralianRetirementTrustFundUsi,
|
|
5788
|
-
fundName: AustralianRetirementTrustFundName
|
|
5789
|
-
fundNameAlt: AustralianRetirementTrustAltFundName
|
|
5781
|
+
fundName: AustralianRetirementTrustFundName
|
|
5790
5782
|
});
|
|
5791
5783
|
state$1.fundId = fund.fundId;
|
|
5792
5784
|
}
|
|
5793
5785
|
return navigationService.navigateInternally(this.history, fund.route);
|
|
5794
5786
|
}
|
|
5795
|
-
pdsViewedAsync(usi, name
|
|
5787
|
+
pdsViewedAsync(usi, name) {
|
|
5796
5788
|
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
5797
5789
|
fundUsi: usi,
|
|
5798
5790
|
fundName: name,
|
|
5799
|
-
fundNameAlt: heading,
|
|
5800
5791
|
pageName: 'Panel Fund Page'
|
|
5801
5792
|
});
|
|
5802
5793
|
}
|
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)}));
|