@flarehr/apollo-super-selection 3.23.53810 → 3.24.54115
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/p-a5be91e3.system.entry.js +69 -0
- package/dist/lib/apollo-super-selection/p-af6dfe9d.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 +43 -22
- package/dist/lib/cjs/loader.cjs.js +1 -1
- package/dist/lib/collection/components/super-selection-app/footer-section/footer-section.js +4 -7
- package/dist/lib/collection/components/super-selection-app/funds/constants.js +5 -1
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-iframe-builder.js +1 -0
- package/dist/lib/collection/components/super-selection-app/funds/qsuper/qsuper-confirm-header.js +1 -1
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-item.js +34 -9
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.css +11 -0
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +72 -25
- package/dist/lib/esm/apollo-super-selection.js +1 -1
- package/dist/lib/esm/fl-button_46.entry.js +43 -22
- 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/funds/constants.d.ts +5 -1
- package/dist/lib/types/components/super-selection-app/super-choice-page/super-choice-item.d.ts +3 -1
- package/dist/lib/types/components/super-selection-app/super-choice-page/super-choice-page.d.ts +1 -0
- package/dist/lib/types/components.d.ts +5 -2
- package/package.json +1 -1
- package/dist/lib/apollo-super-selection/p-540abd08.entry.js +0 -14
- package/dist/lib/apollo-super-selection/p-e5ccebd1.system.entry.js +0 -69
package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js
CHANGED
|
@@ -32,22 +32,24 @@ export class SuperChoicePage {
|
|
|
32
32
|
this.chosenFund = await chosenFundService.GetChosenFundAsync();
|
|
33
33
|
}
|
|
34
34
|
render() {
|
|
35
|
-
const superChoiceParagraphOne = `
|
|
36
|
-
const superChoiceParagraphTwo = `The content on this page and on the following pages relating to
|
|
37
|
-
const superChoiceParagraphThree = `
|
|
35
|
+
const superChoiceParagraphOne = `It is important to consider selecting a superannuation fund. Flare HR have provided you with easy access to the below funds to make your choice an easy one, if you think that one of them might suit your needs.`;
|
|
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.`;
|
|
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://www.ato.gov.au';
|
|
40
|
+
const atoLinkDisplay = 'www.ato.gov.au';
|
|
41
|
+
const superfundsLink = 'https://www.apra.gov.au/register-of-superannuation-institutions';
|
|
42
|
+
const superfundsLinkDisplay = 'www.apra.gov.au/register-of-superannuation-institutions';
|
|
38
43
|
return (h(Host, null,
|
|
39
44
|
h("div", { class: "container mt-0 mb-0" },
|
|
40
45
|
h("div", { class: "row justify-content-center" },
|
|
41
46
|
h("div", { class: "col" },
|
|
42
|
-
h("
|
|
43
|
-
h("h5", { class: "font-weight-bold text-center mb-4" },
|
|
44
|
-
h("span", { class: "text-dark mr-1" }, "Simple Financial"),
|
|
45
|
-
h("span", { class: "simple-choices-text" }, "Choices")))),
|
|
47
|
+
h("h3", { class: "mt-3 font-weight-bold text-center mb-4" }, "Choose your Super"))),
|
|
46
48
|
h("div", { class: "row justify-content-center" },
|
|
47
49
|
h("div", { class: "col" },
|
|
48
|
-
h("p", { class: "text-center" }, superChoiceParagraphOne),
|
|
49
|
-
h("p", { class: "text-center
|
|
50
|
-
h("p", { class: "text-center
|
|
50
|
+
h("p", { class: "text-center font-weight-bold" }, superChoiceParagraphOne),
|
|
51
|
+
h("p", { class: "text-center" }, superChoiceParagraphTwo),
|
|
52
|
+
h("p", { class: "text-center" }, superChoiceParagraphThree))),
|
|
51
53
|
h("div", { class: "row" },
|
|
52
54
|
h("div", { class: "col" },
|
|
53
55
|
h("sss-notifications-section", null))),
|
|
@@ -57,11 +59,31 @@ export class SuperChoicePage {
|
|
|
57
59
|
h("div", { class: "col" },
|
|
58
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" }))))),
|
|
59
61
|
h("div", { class: "row mt-3" }, this.promotedFunds.map((fund) => (h("div", { class: "col-12 col-lg-6 d-flex" },
|
|
60
|
-
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, heading: fund.heading, pdsLink: navigationService.toExternalUrl(fund.pdsLink), features: JSON.stringify(fund.features),
|
|
61
|
-
h("div", { class: "row mt-3" },
|
|
62
|
-
h("div", { class: "col" },
|
|
63
|
-
h("
|
|
64
|
-
h("
|
|
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, heading: fund.heading, pdsLink: navigationService.toExternalUrl(fund.pdsLink), features: JSON.stringify(fund.features), disclaimer: fund.disclaimer, abnInfo: fund.abnInfo, onJoinFundClicked: async () => this.handleJoinSuperClickAsync(fund) }))))),
|
|
63
|
+
h("div", { class: "row mt-3 px-3" },
|
|
64
|
+
h("div", { class: "col p-4 border rounded own-fund-tile" },
|
|
65
|
+
h("div", { class: "row" },
|
|
66
|
+
h("div", { class: "col" },
|
|
67
|
+
h("h5", { class: "font-weight-bold" }, "Choose another super fund"),
|
|
68
|
+
h("p", { class: "mb-1" }, "Select this option if you'd like to use your current account with another super fund."),
|
|
69
|
+
h("ul", { class: "ml-n3" },
|
|
70
|
+
h("li", null,
|
|
71
|
+
"If you are unsure of your current super fund details, you can find out at",
|
|
72
|
+
' ',
|
|
73
|
+
h("a", { target: "_blank", href: navigationService.toExternalUrl(atoLink) }, atoLinkDisplay)),
|
|
74
|
+
h("li", { class: "mt-1" },
|
|
75
|
+
"A full list of super funds can be viewed at",
|
|
76
|
+
' ',
|
|
77
|
+
h("a", { target: "_blank", href: navigationService.toExternalUrl(superfundsLink) }, superfundsLinkDisplay))))),
|
|
78
|
+
h("div", { class: "row" },
|
|
79
|
+
h("div", { class: "col" },
|
|
80
|
+
h("stencil-route-link", { url: SuperSelectionAppRoutes.MyOwnFund },
|
|
81
|
+
h("fl-button", { isBlockElement: true, variant: "primary", class: "d-lg-none" }, "Choose another fund"),
|
|
82
|
+
h("div", { class: "mt-n3 d-none d-lg-flex justify-content-end align-items-end" },
|
|
83
|
+
h("fl-button", { variant: "primary" }, "Choose another fund"))))))))),
|
|
84
|
+
h("div", { class: "row justify-content-center mt-5" },
|
|
85
|
+
h("div", { class: "col" },
|
|
86
|
+
h("p", { class: "text-center" }, superChoiceParagraphFour))))));
|
|
65
87
|
}
|
|
66
88
|
allFunds() {
|
|
67
89
|
return [
|
|
@@ -72,13 +94,23 @@ export class SuperChoicePage {
|
|
|
72
94
|
heading: constants.SlateAltFundName,
|
|
73
95
|
logo: 'logo-slate.png',
|
|
74
96
|
route: SuperSelectionAppRoutes.SlateJoin,
|
|
75
|
-
|
|
76
|
-
pdsLink: 'https://slatesuper.com.au/pds/?utm_source=flare&utm_medium=superselection',
|
|
97
|
+
pdsLink: constants.SlatePdsUrl,
|
|
77
98
|
features: [
|
|
78
|
-
{ order: 1, value: '
|
|
99
|
+
{ order: 1, value: 'A lifestage investment strategy that evolves with you' },
|
|
79
100
|
{ order: 2, value: 'Advanced mobile app with retirement forecast and smart features' },
|
|
80
|
-
{ order: 3, value: '
|
|
81
|
-
]
|
|
101
|
+
{ order: 3, value: 'Member advocates at Slate to assist with your account' }
|
|
102
|
+
],
|
|
103
|
+
disclaimer: (h("p", { class: "small text-muted" },
|
|
104
|
+
"You should consider the",
|
|
105
|
+
' ',
|
|
106
|
+
h("a", { target: "_blank", href: navigationService.toExternalUrl(constants.SlatePdsUrl), onClick: () => this.pdsViewedAsync(constants.SlateFundUsi, constants.SlateFundName, constants.SlateAltFundName) }, "Product Disclosure Statement"),
|
|
107
|
+
' ',
|
|
108
|
+
"and",
|
|
109
|
+
' ',
|
|
110
|
+
h("a", { target: "_blank", href: navigationService.toExternalUrl('https://slate.co/forms-and-documents') }, "Target Market Determination"),
|
|
111
|
+
' ',
|
|
112
|
+
"before deciding to invest in or apply to become a member of the fund.")),
|
|
113
|
+
abnInfo: `Diversa Trustees Limited ABN: ${constants.SlateFundDiversaAbn}`
|
|
82
114
|
},
|
|
83
115
|
{
|
|
84
116
|
fundId: constants.QSuperFundId,
|
|
@@ -87,13 +119,19 @@ export class SuperChoicePage {
|
|
|
87
119
|
heading: constants.QSuperAltFundName,
|
|
88
120
|
logo: 'logo-qsuper-square.png',
|
|
89
121
|
route: SuperSelectionAppRoutes.QSuperOptIn,
|
|
90
|
-
|
|
91
|
-
pdsLink: 'https://qsuper.qld.gov.au/calculators-and-forms/publications/product-disclosure-statements',
|
|
122
|
+
pdsLink: constants.QSuperPdsUrl,
|
|
92
123
|
features: [
|
|
93
124
|
{ order: 1, value: '100 years strong' },
|
|
94
125
|
{ order: 2, value: `One of Australia's largest funds` },
|
|
95
126
|
{ order: 3, value: 'Awarded SuperRatings highest performance rating' }
|
|
96
|
-
]
|
|
127
|
+
],
|
|
128
|
+
disclaimer: (h("p", { class: "small text-muted" },
|
|
129
|
+
"You should consider the",
|
|
130
|
+
' ',
|
|
131
|
+
h("a", { target: "_blank", href: navigationService.toExternalUrl(constants.QSuperPdsUrl), onClick: () => this.pdsViewedAsync(constants.QSuperFundUsi, constants.QSuperFundName, constants.QSuperAltFundName) }, "Product Disclosure Statement"),
|
|
132
|
+
' ',
|
|
133
|
+
"before deciding to invest in or apply to become a member of this fund.")),
|
|
134
|
+
abnInfo: `QSuper Board ABN: ${constants.QSuperFundAbn}`
|
|
97
135
|
},
|
|
98
136
|
{
|
|
99
137
|
fundId: constants.AustralianRetirementTrustFundId,
|
|
@@ -102,9 +140,10 @@ export class SuperChoicePage {
|
|
|
102
140
|
heading: constants.AustralianRetirementTrustAltFundName,
|
|
103
141
|
logo: 'logo-qsuper-square.png',
|
|
104
142
|
route: SuperSelectionAppRoutes.PromotedFundJoin,
|
|
105
|
-
callToAction: 'Join AustralianRetirementTrust',
|
|
106
143
|
pdsLink: 'https://google.com',
|
|
107
|
-
features: []
|
|
144
|
+
features: [],
|
|
145
|
+
disclaimer: h("p", null),
|
|
146
|
+
abnInfo: ``
|
|
108
147
|
}
|
|
109
148
|
];
|
|
110
149
|
}
|
|
@@ -143,6 +182,14 @@ export class SuperChoicePage {
|
|
|
143
182
|
}
|
|
144
183
|
return navigationService.navigateInternally(this.history, fund.route);
|
|
145
184
|
}
|
|
185
|
+
pdsViewedAsync(usi, name, heading) {
|
|
186
|
+
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
187
|
+
fundUsi: usi,
|
|
188
|
+
fundName: name,
|
|
189
|
+
fundNameAlt: heading,
|
|
190
|
+
pageName: 'Panel Fund Page'
|
|
191
|
+
});
|
|
192
|
+
}
|
|
146
193
|
static get is() { return "sss-super-choice-page"; }
|
|
147
194
|
static get originalStyleUrls() { return {
|
|
148
195
|
"$": ["super-choice-page.scss"]
|
|
@@ -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",{"heading":[1],"isSelected":[4,"is-selected"],"usi":[1],"name":[1],"logo":[1],"pdsLink":[1,"pds-link"],"
|
|
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",{"heading":[1],"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.24.54115';
|
|
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 mt-
|
|
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())));
|
|
4241
4241
|
}
|
|
4242
4242
|
appVersionBadge() {
|
|
4243
4243
|
return (h("small", { style: { opacity: '0.5' }, class: "text-muted" }, "Powered by Flare, v", AppVersion));
|
|
@@ -4439,6 +4439,7 @@ class PromotedFundJoinIFrameBuilder {
|
|
|
4439
4439
|
var _a, _b;
|
|
4440
4440
|
const superBuyer = superSelectionAppService.superBuyer;
|
|
4441
4441
|
return {
|
|
4442
|
+
title: superBuyer.userProfile.title,
|
|
4442
4443
|
firstName: superBuyer.userProfile.firstName,
|
|
4443
4444
|
middleName: superBuyer.userProfile.middleName,
|
|
4444
4445
|
lastName: superBuyer.userProfile.lastName,
|
|
@@ -4505,18 +4506,22 @@ const PromotedFundStandardChoicePage = class {
|
|
|
4505
4506
|
};
|
|
4506
4507
|
|
|
4507
4508
|
const QSuperFundUsi = '60905115063001';
|
|
4509
|
+
const QSuperFundAbn = '32 125 059 006';
|
|
4508
4510
|
const QSuperFundId = 'qsuper';
|
|
4509
4511
|
const QSuperFundName = 'QSuper';
|
|
4510
4512
|
const QSuperAltFundName = 'Recognised performer';
|
|
4511
4513
|
const QSuperInsuranceProductName = 'QSuper Insurance';
|
|
4512
|
-
const QSuperPdsUrl = 'https://qsuper.qld.gov.au
|
|
4514
|
+
const QSuperPdsUrl = 'https://qsuper.qld.gov.au/calculators-and-forms/publications/product-disclosure-statements';
|
|
4515
|
+
const QSuperPdsPdfUrl = 'https://qsuper.qld.gov.au/-/media/pdfs/qsuper-public/publications/pds11.pdf';
|
|
4513
4516
|
const QSuperMinAge = 14;
|
|
4514
4517
|
const QSuperMinInsuranceAge = 16;
|
|
4515
4518
|
const QSuperMaxAge = 70;
|
|
4516
4519
|
const SlateFundUsi = '32367272075001';
|
|
4520
|
+
const SlateFundDiversaAbn = '49 006 421 638';
|
|
4517
4521
|
const SlateFundId = 'slate';
|
|
4518
4522
|
const SlateFundName = 'Slate Super';
|
|
4519
4523
|
const SlateAltFundName = 'Modern Digital Fund';
|
|
4524
|
+
const SlatePdsUrl = 'https://slate.co/pds/?utm_source=flare&utm_medium=superselection';
|
|
4520
4525
|
const AustralianRetirementTrustFundUsi = 'australian-retirement-trust';
|
|
4521
4526
|
const AustralianRetirementTrustFundId = 'australian-retirement-trust';
|
|
4522
4527
|
const AustralianRetirementTrustFundName = 'AustralianRetirementTrust';
|
|
@@ -4531,7 +4536,7 @@ const QsuperConfirmHeader = class {
|
|
|
4531
4536
|
}
|
|
4532
4537
|
render() {
|
|
4533
4538
|
const qSuperAccumulationAccountUrl = 'https://qsuper.qld.gov.au/-/media/pdfs/qsuper-public/publications/pds1.pdf';
|
|
4534
|
-
return (h("div", { class: "d-flex align-items-center justify-content-center" }, h("p", { class: "confirm-title font-weight-bold text-center" }, "You are now applying for a", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl(qSuperAccumulationAccountUrl) }, "QSuper Accumulation Account"), ". Read the", ' ', h("a", { target: "_blank", onClick: () => this.pdsViewedAsync(), href: navigationService.toExternalUrl(
|
|
4539
|
+
return (h("div", { class: "d-flex align-items-center justify-content-center" }, h("p", { class: "confirm-title font-weight-bold text-center" }, "You are now applying for a", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl(qSuperAccumulationAccountUrl) }, "QSuper Accumulation Account"), ". Read the", ' ', h("a", { target: "_blank", onClick: () => this.pdsViewedAsync(), href: navigationService.toExternalUrl(QSuperPdsPdfUrl) }, "PDS"), ' ', "here.")));
|
|
4535
4540
|
}
|
|
4536
4541
|
pdsViewedAsync() {
|
|
4537
4542
|
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
@@ -4835,7 +4840,7 @@ const QsuperInsuranceQuestions = class {
|
|
|
4835
4840
|
};
|
|
4836
4841
|
QsuperInsuranceQuestions.style = qsuperCss$2;
|
|
4837
4842
|
|
|
4838
|
-
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{height:70px;width: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}";
|
|
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{height:70px;width: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}@media (min-width: 992px){.own-fund-tile{background:#f8f8f7}}@media (min-width: 992px){.bottom-half-fund-tile{height:220px}}";
|
|
4839
4844
|
|
|
4840
4845
|
const QSuperConfirmSelection = class {
|
|
4841
4846
|
constructor(hostRef) {
|
|
@@ -5589,7 +5594,7 @@ const Success = class {
|
|
|
5589
5594
|
}
|
|
5590
5595
|
};
|
|
5591
5596
|
|
|
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{height:70px;width: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}";
|
|
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{height:70px;width: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}@media (min-width: 992px){.own-fund-tile{background:#f8f8f7}}@media (min-width: 992px){.bottom-half-fund-tile{height:220px}}";
|
|
5593
5598
|
|
|
5594
5599
|
const SuperChoiceItem = class {
|
|
5595
5600
|
constructor(hostRef) {
|
|
@@ -5601,7 +5606,7 @@ const SuperChoiceItem = class {
|
|
|
5601
5606
|
return (h(Host, { class: {
|
|
5602
5607
|
'd-flex p-3': true,
|
|
5603
5608
|
'ss-picked-fund': this.isSelected
|
|
5604
|
-
} }, h("div", { class: "card-body
|
|
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: "Simple Financial Choices Pty Ltd", 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))));
|
|
5605
5610
|
}
|
|
5606
5611
|
handleFundClick() {
|
|
5607
5612
|
return this.joinFundClicked.emit();
|
|
@@ -5668,7 +5673,7 @@ class ChosenFundService {
|
|
|
5668
5673
|
}
|
|
5669
5674
|
const chosenFundService = new ChosenFundService();
|
|
5670
5675
|
|
|
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{height:70px;width: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}";
|
|
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{height:70px;width: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}@media (min-width: 992px){.own-fund-tile{background:#f8f8f7}}@media (min-width: 992px){.bottom-half-fund-tile{height:220px}}";
|
|
5672
5677
|
|
|
5673
5678
|
const SuperChoicePage = class {
|
|
5674
5679
|
constructor(hostRef) {
|
|
@@ -5694,10 +5699,15 @@ const SuperChoicePage = class {
|
|
|
5694
5699
|
this.chosenFund = await chosenFundService.GetChosenFundAsync();
|
|
5695
5700
|
}
|
|
5696
5701
|
render() {
|
|
5697
|
-
const superChoiceParagraphOne = `
|
|
5698
|
-
const superChoiceParagraphTwo = `The content on this page and on the following pages relating to
|
|
5699
|
-
const superChoiceParagraphThree = `
|
|
5700
|
-
|
|
5702
|
+
const superChoiceParagraphOne = `It is important to consider selecting a superannuation fund. Flare HR have provided you with easy access to the below funds to make your choice an easy one, if you think that one of them might suit your needs.`;
|
|
5703
|
+
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.`;
|
|
5705
|
+
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://www.ato.gov.au';
|
|
5707
|
+
const atoLinkDisplay = 'www.ato.gov.au';
|
|
5708
|
+
const superfundsLink = 'https://www.apra.gov.au/register-of-superannuation-institutions';
|
|
5709
|
+
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.promotedFunds.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, heading: fund.heading, 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 own-fund-tile" }, 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))))));
|
|
5701
5711
|
}
|
|
5702
5712
|
allFunds() {
|
|
5703
5713
|
return [
|
|
@@ -5708,13 +5718,14 @@ const SuperChoicePage = class {
|
|
|
5708
5718
|
heading: SlateAltFundName,
|
|
5709
5719
|
logo: 'logo-slate.png',
|
|
5710
5720
|
route: SuperSelectionAppRoutes.SlateJoin,
|
|
5711
|
-
|
|
5712
|
-
pdsLink: 'https://slatesuper.com.au/pds/?utm_source=flare&utm_medium=superselection',
|
|
5721
|
+
pdsLink: SlatePdsUrl,
|
|
5713
5722
|
features: [
|
|
5714
|
-
{ order: 1, value: '
|
|
5723
|
+
{ order: 1, value: 'A lifestage investment strategy that evolves with you' },
|
|
5715
5724
|
{ order: 2, value: 'Advanced mobile app with retirement forecast and smart features' },
|
|
5716
|
-
{ order: 3, value: '
|
|
5717
|
-
]
|
|
5725
|
+
{ order: 3, value: 'Member advocates at Slate to assist with your account' }
|
|
5726
|
+
],
|
|
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, SlateAltFundName) }, "Product Disclosure Statement"), ' ', "and", ' ', h("a", { target: "_blank", href: navigationService.toExternalUrl('https://slate.co/forms-and-documents') }, "Target Market Determination"), ' ', "before deciding to invest in or apply to become a member of the fund.")),
|
|
5728
|
+
abnInfo: `Diversa Trustees Limited ABN: ${SlateFundDiversaAbn}`
|
|
5718
5729
|
},
|
|
5719
5730
|
{
|
|
5720
5731
|
fundId: QSuperFundId,
|
|
@@ -5723,13 +5734,14 @@ const SuperChoicePage = class {
|
|
|
5723
5734
|
heading: QSuperAltFundName,
|
|
5724
5735
|
logo: 'logo-qsuper-square.png',
|
|
5725
5736
|
route: SuperSelectionAppRoutes.QSuperOptIn,
|
|
5726
|
-
|
|
5727
|
-
pdsLink: 'https://qsuper.qld.gov.au/calculators-and-forms/publications/product-disclosure-statements',
|
|
5737
|
+
pdsLink: QSuperPdsUrl,
|
|
5728
5738
|
features: [
|
|
5729
5739
|
{ order: 1, value: '100 years strong' },
|
|
5730
5740
|
{ order: 2, value: `One of Australia's largest funds` },
|
|
5731
5741
|
{ order: 3, value: 'Awarded SuperRatings highest performance rating' }
|
|
5732
|
-
]
|
|
5742
|
+
],
|
|
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, QSuperAltFundName) }, "Product Disclosure Statement"), ' ', "before deciding to invest in or apply to become a member of this fund.")),
|
|
5744
|
+
abnInfo: `QSuper Board ABN: ${QSuperFundAbn}`
|
|
5733
5745
|
},
|
|
5734
5746
|
{
|
|
5735
5747
|
fundId: AustralianRetirementTrustFundId,
|
|
@@ -5738,9 +5750,10 @@ const SuperChoicePage = class {
|
|
|
5738
5750
|
heading: AustralianRetirementTrustAltFundName,
|
|
5739
5751
|
logo: 'logo-qsuper-square.png',
|
|
5740
5752
|
route: SuperSelectionAppRoutes.PromotedFundJoin,
|
|
5741
|
-
callToAction: 'Join AustralianRetirementTrust',
|
|
5742
5753
|
pdsLink: 'https://google.com',
|
|
5743
|
-
features: []
|
|
5754
|
+
features: [],
|
|
5755
|
+
disclaimer: h("p", null),
|
|
5756
|
+
abnInfo: ``
|
|
5744
5757
|
}
|
|
5745
5758
|
];
|
|
5746
5759
|
}
|
|
@@ -5779,6 +5792,14 @@ const SuperChoicePage = class {
|
|
|
5779
5792
|
}
|
|
5780
5793
|
return navigationService.navigateInternally(this.history, fund.route);
|
|
5781
5794
|
}
|
|
5795
|
+
pdsViewedAsync(usi, name, heading) {
|
|
5796
|
+
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
5797
|
+
fundUsi: usi,
|
|
5798
|
+
fundName: name,
|
|
5799
|
+
fundNameAlt: heading,
|
|
5800
|
+
pageName: 'Panel Fund Page'
|
|
5801
|
+
});
|
|
5802
|
+
}
|
|
5782
5803
|
static get assetsDirs() { return ["assets"]; }
|
|
5783
5804
|
};
|
|
5784
5805
|
SuperChoicePage.style = superChoicePageCss$2;
|
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",{"heading":[1],"isSelected":[4,"is-selected"],"usi":[1],"name":[1],"logo":[1],"pdsLink":[1,"pds-link"],"
|
|
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",{"heading":[1],"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",{heading:[1],isSelected:[4,"is-selected"],usi:[1],name:[1],logo:[1],pdsLink:[1,"pds-link"],
|
|
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",{heading:[1],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)}));
|