@flarehr/apollo-super-selection 4.19.27767 → 4.20.27915
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-mercer-mychoice.svg +1 -0
- package/dist/lib/apollo-super-selection/p-13c8f513.system.entry.js +69 -0
- package/dist/lib/apollo-super-selection/p-178816b4.entry.js +14 -0
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- package/dist/lib/cjs/apollo-super-selection.cjs.js +1 -1
- package/dist/lib/cjs/loader.cjs.js +1 -1
- package/dist/lib/cjs/sss-button_30.cjs.entry.js +108 -24
- package/dist/lib/collection/components/super-selection-app/api/super-selection.api.dto.js +6 -0
- package/dist/lib/collection/components/super-selection-app/consent/consent.js +2 -1
- package/dist/lib/collection/components/super-selection-app/footer-section/footer-section.js +29 -2
- package/dist/lib/collection/components/super-selection-app/funds/constants.js +45 -9
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/promoted-fund.store.js +3 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v1-iframe-builder.js +15 -3
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v2-iframe-builder.js +15 -3
- package/dist/lib/collection/components/super-selection-app/funds/slate-super/services/slate-iframe-builder.js +2 -0
- package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/logo-mercer-mychoice.svg +1 -0
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +26 -0
- package/dist/lib/collection/components/super-selection-app/super-selection-app.js +11 -6
- package/dist/lib/esm/apollo-super-selection.js +1 -1
- package/dist/lib/esm/loader.js +1 -1
- package/dist/lib/esm/sss-button_30.entry.js +108 -24
- package/dist/lib/esm-es5/apollo-super-selection.js +1 -1
- package/dist/lib/esm-es5/loader.js +1 -1
- package/dist/lib/esm-es5/sss-button_30.entry.js +3 -3
- package/dist/lib/types/components/super-selection-app/api/super-selection.api.dto.d.ts +5 -0
- package/dist/lib/types/components/super-selection-app/footer-section/footer-section.d.ts +3 -0
- package/dist/lib/types/components/super-selection-app/funds/constants.d.ts +19 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/promoted-fund.store.d.ts +1 -0
- package/dist/lib/types/components/super-selection-app/super-selection-app.d.ts +2 -1
- package/dist/lib/types/components.d.ts +3 -0
- package/package.json +1 -1
- package/dist/lib/apollo-super-selection/p-1cab31f8.system.entry.js +0 -69
- package/dist/lib/apollo-super-selection/p-70a90d81.entry.js +0 -14
|
@@ -6,6 +6,7 @@ import superSelectionAppService from '../../../services/super-selection-app.serv
|
|
|
6
6
|
import { getFundNameById } from '../../constants';
|
|
7
7
|
import promotedFundChoiceApi from '../api/promoted-fund-choice.api';
|
|
8
8
|
import promotedFundState from '../promoted-fund.store';
|
|
9
|
+
import { reset as resetPromotedFundState } from '../promoted-fund.store';
|
|
9
10
|
class PromotedFundJoinV1IFrameBuilder {
|
|
10
11
|
constructor() {
|
|
11
12
|
this.hostIsLocalSuperSelection = () => window.location.origin === 'http://localhost:7100';
|
|
@@ -36,11 +37,21 @@ class PromotedFundJoinV1IFrameBuilder {
|
|
|
36
37
|
break;
|
|
37
38
|
case 'success':
|
|
38
39
|
if (data.memberNumber) {
|
|
40
|
+
const promotedFundId = promotedFundState.fundId;
|
|
39
41
|
navigationService.navigateInternallyToStandardChoice({
|
|
40
42
|
history,
|
|
41
|
-
fundName: (_a = getFundNameById(
|
|
42
|
-
handleSubmitFn: (standardChoiceFormSignature) => promotedFundChoiceApi.submitChoiceAsync(
|
|
43
|
-
|
|
43
|
+
fundName: (_a = getFundNameById(promotedFundId)) !== null && _a !== void 0 ? _a : '',
|
|
44
|
+
handleSubmitFn: (standardChoiceFormSignature) => promotedFundChoiceApi.submitChoiceAsync({
|
|
45
|
+
fundId: promotedFundId,
|
|
46
|
+
memberNumber: data.memberNumber,
|
|
47
|
+
memberFirstName: data.memberFirstName,
|
|
48
|
+
memberFamilyName: data.memberFamilyName,
|
|
49
|
+
usi: data.usi.replace(/ /g, ''),
|
|
50
|
+
standardChoiceFormSignature,
|
|
51
|
+
shownFunds: superSelectionAppService.promotedFunds,
|
|
52
|
+
defaultFundUsiSet: O.toUndefined(superSelectionAppService.defaultFundUsi)
|
|
53
|
+
}),
|
|
54
|
+
promotedFundId
|
|
44
55
|
});
|
|
45
56
|
break;
|
|
46
57
|
}
|
|
@@ -49,6 +60,7 @@ class PromotedFundJoinV1IFrameBuilder {
|
|
|
49
60
|
navigationService.navigateInternally(history, SuperSelectionAppRoutes.ChoicePage);
|
|
50
61
|
break;
|
|
51
62
|
}
|
|
63
|
+
resetPromotedFundState();
|
|
52
64
|
return;
|
|
53
65
|
}
|
|
54
66
|
if (data.sender === 'promoted-fund-join') {
|
|
@@ -6,6 +6,7 @@ import superSelectionAppService from '../../../services/super-selection-app.serv
|
|
|
6
6
|
import { getFundNameById } from '../../constants';
|
|
7
7
|
import promotedFundChoiceApi from '../api/promoted-fund-choice.api';
|
|
8
8
|
import promotedFundState from '../promoted-fund.store';
|
|
9
|
+
import { reset as resetPromotedFundState } from '../promoted-fund.store';
|
|
9
10
|
class PromotedFundJoinV2IFrameBuilder {
|
|
10
11
|
constructor() {
|
|
11
12
|
this.environmentDiscriminator = () => {
|
|
@@ -42,11 +43,21 @@ class PromotedFundJoinV2IFrameBuilder {
|
|
|
42
43
|
break;
|
|
43
44
|
case 'success':
|
|
44
45
|
if (data.memberNumber) {
|
|
46
|
+
const promotedFundId = promotedFundState.fundId;
|
|
45
47
|
navigationService.navigateInternallyToStandardChoice({
|
|
46
48
|
history,
|
|
47
|
-
fundName: (_a = getFundNameById(
|
|
48
|
-
handleSubmitFn: (standardChoiceFormSignature) => promotedFundChoiceApi.submitChoiceAsync(
|
|
49
|
-
|
|
49
|
+
fundName: (_a = getFundNameById(promotedFundId)) !== null && _a !== void 0 ? _a : '',
|
|
50
|
+
handleSubmitFn: (standardChoiceFormSignature) => promotedFundChoiceApi.submitChoiceAsync({
|
|
51
|
+
fundId: promotedFundId,
|
|
52
|
+
memberNumber: data.memberNumber,
|
|
53
|
+
memberFirstName: data.memberFirstName,
|
|
54
|
+
memberFamilyName: data.memberFamilyName,
|
|
55
|
+
usi: data.usi.replace(/ /g, ''),
|
|
56
|
+
standardChoiceFormSignature,
|
|
57
|
+
shownFunds: superSelectionAppService.promotedFunds,
|
|
58
|
+
defaultFundUsiSet: O.toUndefined(superSelectionAppService.defaultFundUsi)
|
|
59
|
+
}),
|
|
60
|
+
promotedFundId
|
|
50
61
|
});
|
|
51
62
|
break;
|
|
52
63
|
}
|
|
@@ -55,6 +66,7 @@ class PromotedFundJoinV2IFrameBuilder {
|
|
|
55
66
|
navigationService.navigateInternally(history, SuperSelectionAppRoutes.ChoicePage);
|
|
56
67
|
break;
|
|
57
68
|
}
|
|
69
|
+
resetPromotedFundState();
|
|
58
70
|
return;
|
|
59
71
|
}
|
|
60
72
|
if (data.sender === 'promoted-fund-join') {
|
|
@@ -4,6 +4,7 @@ import navigationService from '../../../services/navigation.service';
|
|
|
4
4
|
import { SuperSelectionAppRoutes } from '../../../services/super-selection-app.routes';
|
|
5
5
|
import superSelectionAppService from '../../../services/super-selection-app.service';
|
|
6
6
|
import { Slate } from '../../constants';
|
|
7
|
+
import { reset as resetPromotedFundState } from '../../promoted-fund/promoted-fund.store';
|
|
7
8
|
import slateChoiceApi from '../api/slate-choice.api';
|
|
8
9
|
class SlateIFrameBuilder {
|
|
9
10
|
constructor() {
|
|
@@ -68,6 +69,7 @@ class SlateIFrameBuilder {
|
|
|
68
69
|
navigationService.navigateInternally(history, SuperSelectionAppRoutes.ChoicePage);
|
|
69
70
|
break;
|
|
70
71
|
}
|
|
72
|
+
resetPromotedFundState();
|
|
71
73
|
return;
|
|
72
74
|
}
|
|
73
75
|
if (data.sender === 'flare' && origin.endsWith('join.slatesuper.com.au')) {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Mercer" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 473.89 73.8"><defs><style>.cls-1{fill:#002c77;}</style></defs><path class="cls-1" d="M157.17,69.88V4.14H170l22.67,35.3,22.92-35.3H228V69.88H216.08V22.31L192.55,58.73,169.11,22.4V69.88Z"/><path class="cls-1" d="M266.37,71.44a33,33,0,0,1-14.44-3,23.15,23.15,0,0,1-10-8.91q-3.63-5.88-3.63-14.44a28.55,28.55,0,0,1,3.24-13.84,24.21,24.21,0,0,1,8.95-9.39,25,25,0,0,1,13.06-3.41,23.72,23.72,0,0,1,12.24,3.07,20.73,20.73,0,0,1,8.09,8.6,28,28,0,0,1,2.86,13c0,.69,0,1.37-.09,2s-.14,1.66-.26,3H249.76a15,15,0,0,0,5.54,9.73q4.5,3.49,12.11,3.5a29.22,29.22,0,0,0,17.82-6V65.56a33.79,33.79,0,0,1-8.87,4.28A32.3,32.3,0,0,1,266.37,71.44Zm-3.29-44a12.22,12.22,0,0,0-9,3.42q-3.47,3.42-4.33,9.56h25.95a9.91,9.91,0,0,0-.17-2,13.31,13.31,0,0,0-4.06-8.18A12.31,12.31,0,0,0,263.08,27.41Z"/><path class="cls-1" d="M297.25,69.88V20h11.16l.09,10.38a18,18,0,0,1,6.05-8.13,15,15,0,0,1,9.17-3,25.23,25.23,0,0,1,3.29.25,14.23,14.23,0,0,1,3,.7V31.3a31.73,31.73,0,0,0-7.79-1.12c-4.32,0-7.63,1.4-9.9,4.2s-3.42,6.84-3.42,12.15V69.88Z"/><path class="cls-1" d="M361,71.44a29.28,29.28,0,0,1-14-3.2,22.2,22.2,0,0,1-9.21-9.13,28.44,28.44,0,0,1-3.24-13.88,28.51,28.51,0,0,1,3.33-14,23.93,23.93,0,0,1,9.25-9.39,27.21,27.21,0,0,1,13.71-3.37,25.51,25.51,0,0,1,7.18.95,48.18,48.18,0,0,1,6.23,2.25V32.43a25.27,25.27,0,0,0-12.54-3.55q-7,0-11.2,4.28t-4.2,11.64q0,7.7,4.2,12t11.63,4.28a22.54,22.54,0,0,0,5.8-.73A44.65,44.65,0,0,0,374.2,58v10.3a31.58,31.58,0,0,1-6.1,2.25A28.61,28.61,0,0,1,361,71.44Z"/><path class="cls-1" d="M409.23,71.44a32.94,32.94,0,0,1-14.44-3,23.15,23.15,0,0,1-10-8.91q-3.63-5.88-3.63-14.44a28.55,28.55,0,0,1,3.24-13.84,24.21,24.21,0,0,1,8.95-9.39,25,25,0,0,1,13.06-3.41,23.72,23.72,0,0,1,12.24,3.07,20.73,20.73,0,0,1,8.09,8.6,28,28,0,0,1,2.86,13c0,.69,0,1.37-.09,2s-.15,1.66-.26,3H392.62a15,15,0,0,0,5.54,9.73q4.5,3.49,12.11,3.5a29.22,29.22,0,0,0,17.82-6V65.56a33.79,33.79,0,0,1-8.87,4.28A32.3,32.3,0,0,1,409.23,71.44Zm-3.29-44a12.22,12.22,0,0,0-9,3.42q-3.46,3.42-4.33,9.56h25.95a9.91,9.91,0,0,0-.17-2,13.27,13.27,0,0,0-4.07-8.18A12.26,12.26,0,0,0,405.94,27.41Z"/><path class="cls-1" d="M441.11,69.88V20h11.16l.09,10.38a18,18,0,0,1,6.05-8.13,15,15,0,0,1,9.17-3,25.23,25.23,0,0,1,3.29.25,14.26,14.26,0,0,1,3,.7V31.3a26.81,26.81,0,0,0-3.63-.77,27.53,27.53,0,0,0-4.15-.35q-6.5,0-9.9,4.2t-3.42,12.15V69.88Z"/><path class="cls-1" d="M120.93,15.94,94.65.8a7.46,7.46,0,0,0-6.73,0L15.4,42.57,55.53,11.83,36.38.8a7.46,7.46,0,0,0-6.73,0L3.36,15.94A7.46,7.46,0,0,0,0,21.76V52a7.46,7.46,0,0,0,3.36,5.82L29.65,73a7.46,7.46,0,0,0,6.73,0L108.9,31.23,68.77,62,87.92,73a7.46,7.46,0,0,0,6.73,0l26.28-15.14A7.47,7.47,0,0,0,124.3,52V21.77A7.47,7.47,0,0,0,120.93,15.94Z"/></svg>
|
package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js
CHANGED
|
@@ -298,6 +298,32 @@ export class SuperChoicePage {
|
|
|
298
298
|
". Past performance is not a reliable indicator of future performance."),
|
|
299
299
|
h("br", null),
|
|
300
300
|
h("p", null, "Issued by First Super Pty Ltd ABN 42 053 498 472, AFSL 223988 (Trustee) as Trustee of First Super ABN 56 286 625 181.")))
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
fundId: constants.MercerMyChoice.Id,
|
|
304
|
+
name: constants.MercerMyChoice.Name,
|
|
305
|
+
logo: constants.MercerMyChoice.Logo,
|
|
306
|
+
route: SuperSelectionAppRoutes.PromotedFundJoinV2,
|
|
307
|
+
features: [
|
|
308
|
+
h("p", null, "Save more super with our low fees"),
|
|
309
|
+
h("p", null, "Take control with 6 MyChoice investment options"),
|
|
310
|
+
h("p", null, "Join 850,000 Australians who trust our global expertise")
|
|
311
|
+
],
|
|
312
|
+
disclaimer: (h("div", null,
|
|
313
|
+
h("p", null,
|
|
314
|
+
"You should consider the",
|
|
315
|
+
' ',
|
|
316
|
+
h(Link, { href: constants.MercerMyChoice.PdsUrl, onClick: () => this.pdsViewedAsync(constants.MercerMyChoice.Name) }, "Product Disclosure Statement"),
|
|
317
|
+
' ',
|
|
318
|
+
"and",
|
|
319
|
+
' ',
|
|
320
|
+
h(Link, { href: constants.MercerMyChoice.TmdUrl }, "Target Market Determination"),
|
|
321
|
+
' ',
|
|
322
|
+
"before deciding to invest in or apply to become a member of the fund."),
|
|
323
|
+
h("br", null),
|
|
324
|
+
h("p", null,
|
|
325
|
+
"Issued by Mercer Superannuation (Australia) Limited (\u2018Mercer Super\u2019) ABN: ",
|
|
326
|
+
constants.MercerMyChoice.Abn)))
|
|
301
327
|
}
|
|
302
328
|
];
|
|
303
329
|
}
|
|
@@ -3,6 +3,8 @@ import { injectHistory } from '@stencil/router';
|
|
|
3
3
|
import * as O from 'fp-ts/lib/Option';
|
|
4
4
|
import { isSome } from 'fp-ts/lib/Option';
|
|
5
5
|
import iframe from '../../utils/iframe';
|
|
6
|
+
import * as constants from './funds/constants';
|
|
7
|
+
import promotedFundState from './funds/promoted-fund/promoted-fund.store';
|
|
6
8
|
import existingFundService from './services/existing-super-choice-info.service';
|
|
7
9
|
import { FeatureFlagService } from './services/feature-flag.service';
|
|
8
10
|
import navigationService from './services/navigation.service';
|
|
@@ -74,6 +76,14 @@ export class SuperSelectionApp {
|
|
|
74
76
|
h("link", { rel: "stylesheet", href: getAssetPath('apollo-super-selection.css'), media: "all" }),
|
|
75
77
|
this.renderAppContent()));
|
|
76
78
|
}
|
|
79
|
+
isFundJoinPage() {
|
|
80
|
+
return (window.location.pathname.includes(SuperSelectionAppRoutes.SlateJoin) ||
|
|
81
|
+
window.location.pathname.includes(SuperSelectionAppRoutes.PromotedFundJoinV1) ||
|
|
82
|
+
window.location.pathname.includes(SuperSelectionAppRoutes.PromotedFundJoinV2));
|
|
83
|
+
}
|
|
84
|
+
getFooterTextOverride() {
|
|
85
|
+
return constants.getFooterTextOverrideByFundId(promotedFundState.fundId);
|
|
86
|
+
}
|
|
77
87
|
routerBaseUrl() {
|
|
78
88
|
var _a;
|
|
79
89
|
return ((_a = this.appBaseUrl) === null || _a === void 0 ? void 0 : _a.replace(/\/$/, '')) + '/';
|
|
@@ -86,14 +96,9 @@ export class SuperSelectionApp {
|
|
|
86
96
|
'-mt-28': this.isFundJoinPage() // -mt value same as pt to negate it in embedded fund join pages
|
|
87
97
|
} },
|
|
88
98
|
superSelectionAppStencilRoutes,
|
|
89
|
-
h("sss-footer-section",
|
|
99
|
+
h("sss-footer-section", { textOverride: this.getFooterTextOverride() }))) : (h("div", { class: "flex justify-center py-20" },
|
|
90
100
|
h("sss-loading-indicator", null))))));
|
|
91
101
|
}
|
|
92
|
-
isFundJoinPage() {
|
|
93
|
-
return (window.location.pathname.includes(SuperSelectionAppRoutes.SlateJoin) ||
|
|
94
|
-
window.location.pathname.includes(SuperSelectionAppRoutes.PromotedFundJoinV1) ||
|
|
95
|
-
window.location.pathname.includes(SuperSelectionAppRoutes.PromotedFundJoinV2));
|
|
96
|
-
}
|
|
97
102
|
static get is() { return "super-selection-app"; }
|
|
98
103
|
static get encapsulation() { return "shadow"; }
|
|
99
104
|
static get originalStyleUrls() { return {
|
|
@@ -16,5 +16,5 @@ const patchBrowser = () => {
|
|
|
16
16
|
|
|
17
17
|
patchBrowser().then(options => {
|
|
18
18
|
globalScripts();
|
|
19
|
-
return bootstrapLazy([["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]}]]],["sss-button_30",[[0,"sss-my-own-fund",{"history":[16],"formState":[32],"isNotAllInformationProvidedMessageVisible":[32],"isSubmitDisabled":[32]}],[0,"sss-self-managed-fund",{"history":[16],"formState":[32],"isSubmitDisabled":[32]}],[0,"sss-super-choice-page",{"history":[16],"promotedFunds":[32]}],[1,"super-selection-app-host",{"sessionState":[32],"jwt":[32],"appConfiguration":[32],"ignoreExistingSelection":[32]}],[0,"sss-default-fund",{"history":[16],"defaultFundProductName":[32]}],[0,"sss-standard-choice-form",{"history":[16],"standardChoiceFormSignature":[32],"formState":[32],"isSubmitDisabled":[32]}],[0,"sss-consent-page",{"history":[16]}],[0,"sss-existing-choice-page",{"history":[16],"existingFund":[32]}],[0,"sss-promoted-fund-join-v1-page",{"history":[16]}],[0,"sss-promoted-fund-join-v2-page",{"history":[16]}],[0,"sss-slate-join-page",{"history":[16]}],[0,"sss-success"],[1,"super-selection-app",{"ignoreExistingSelection":[4,"ignore-existing-selection"],"accessToken":[1,"access-token"],"backendUrl":[1,"backend-url"],"appBaseUrl":[1,"app-base-url"],"history":[16],"location":[16],"isSelfHosted":[4,"is-self-hosted"],"isAppInitialised":[32]}],[0,"sss-my-own-fund-inputs",{"myOwnFundForm":[16],"showValidationErrors":[4,"show-validation-errors"],"selectedOption":[32]}],[0,"sss-self-managed-fund-inputs",{"fundForm":[16],"showValidationErrors":[4,"show-validation-errors"],"isAbnValid":[32],"isAbnTouched":[32],"isAbnUsedForRegulated":[32],"currentBank":[32],"addressErrorMessage":[32]}],[0,"sss-super-choice-item-bottom",{"disclaimer":[16],"abnInfo":[1,"abn-info"],"abn":[1]}],[0,"sss-loading-page"],[0,"sss-super-choice-item-top",{"name":[1],"logo":[1],"features":[16],"featureSubText":[16]}],[0,"sss-dropdown-async",{"placeholder":[1],"searchFunction":[16],"value":[16],"required":[4],"requiredValidationMessage":[1,"required-validation-message"],"disabled":[4],"minSearchStringLength":[2,"min-search-string-length"],"showValidationErrors":[4,"show-validation-errors"],"searchState":[32],"inputValue":[32],"isDropdownVisible":[32],"filteredOptions":[32],"highlightedOptionIndex":[32],"selectedOption":[32]},[[2,"focus","handleFocus"],[2,"blur","handleBlur"],[2,"keydown","handleKeyDown"]]],[0,"sss-footer-section"],[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],"showFundOptionsSelection":[32]}],[0,"sss-iframe-host",{"build":[16]}],[0,"sss-header-section",{"currentPage":[1,"current-page"]}],[0,"sss-name-input",{"value":[1],"name":[1],"readableName":[1,"readable-name"],"showValidationErrors":[4,"show-validation-errors"],"errorMessage":[32]}],[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,"sss-button",{"fillWidth":[4,"fill-width"],"fillWidthOnMobile":[4,"fill-width-on-mobile"],"disabled":[4],"variant":[1],"size":[1],"promiseFn":[16],"state":[32]}],[0,"sss-loading-indicator",{"theme":[1],"size":[2]}],[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);
|
|
19
|
+
return bootstrapLazy([["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]}]]],["sss-button_30",[[0,"sss-my-own-fund",{"history":[16],"formState":[32],"isNotAllInformationProvidedMessageVisible":[32],"isSubmitDisabled":[32]}],[0,"sss-self-managed-fund",{"history":[16],"formState":[32],"isSubmitDisabled":[32]}],[0,"sss-super-choice-page",{"history":[16],"promotedFunds":[32]}],[1,"super-selection-app-host",{"sessionState":[32],"jwt":[32],"appConfiguration":[32],"ignoreExistingSelection":[32]}],[0,"sss-default-fund",{"history":[16],"defaultFundProductName":[32]}],[0,"sss-standard-choice-form",{"history":[16],"standardChoiceFormSignature":[32],"formState":[32],"isSubmitDisabled":[32]}],[0,"sss-consent-page",{"history":[16]}],[0,"sss-existing-choice-page",{"history":[16],"existingFund":[32]}],[0,"sss-promoted-fund-join-v1-page",{"history":[16]}],[0,"sss-promoted-fund-join-v2-page",{"history":[16]}],[0,"sss-slate-join-page",{"history":[16]}],[0,"sss-success"],[1,"super-selection-app",{"ignoreExistingSelection":[4,"ignore-existing-selection"],"accessToken":[1,"access-token"],"backendUrl":[1,"backend-url"],"appBaseUrl":[1,"app-base-url"],"history":[16],"location":[16],"isSelfHosted":[4,"is-self-hosted"],"isAppInitialised":[32]}],[0,"sss-my-own-fund-inputs",{"myOwnFundForm":[16],"showValidationErrors":[4,"show-validation-errors"],"selectedOption":[32]}],[0,"sss-self-managed-fund-inputs",{"fundForm":[16],"showValidationErrors":[4,"show-validation-errors"],"isAbnValid":[32],"isAbnTouched":[32],"isAbnUsedForRegulated":[32],"currentBank":[32],"addressErrorMessage":[32]}],[0,"sss-super-choice-item-bottom",{"disclaimer":[16],"abnInfo":[1,"abn-info"],"abn":[1]}],[0,"sss-loading-page"],[0,"sss-super-choice-item-top",{"name":[1],"logo":[1],"features":[16],"featureSubText":[16]}],[0,"sss-dropdown-async",{"placeholder":[1],"searchFunction":[16],"value":[16],"required":[4],"requiredValidationMessage":[1,"required-validation-message"],"disabled":[4],"minSearchStringLength":[2,"min-search-string-length"],"showValidationErrors":[4,"show-validation-errors"],"searchState":[32],"inputValue":[32],"isDropdownVisible":[32],"filteredOptions":[32],"highlightedOptionIndex":[32],"selectedOption":[32]},[[2,"focus","handleFocus"],[2,"blur","handleBlur"],[2,"keydown","handleKeyDown"]]],[0,"sss-footer-section",{"textOverride":[16]}],[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],"showFundOptionsSelection":[32]}],[0,"sss-iframe-host",{"build":[16]}],[0,"sss-header-section",{"currentPage":[1,"current-page"]}],[0,"sss-name-input",{"value":[1],"name":[1],"readableName":[1,"readable-name"],"showValidationErrors":[4,"show-validation-errors"],"errorMessage":[32]}],[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,"sss-button",{"fillWidth":[4,"fill-width"],"fillWidthOnMobile":[4,"fill-width-on-mobile"],"disabled":[4],"variant":[1],"size":[1],"promiseFn":[16],"state":[32]}],[0,"sss-loading-indicator",{"theme":[1],"size":[2]}],[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);
|
|
20
20
|
});
|
package/dist/lib/esm/loader.js
CHANGED
|
@@ -13,7 +13,7 @@ const defineCustomElements = (win, options) => {
|
|
|
13
13
|
if (typeof window === 'undefined') return Promise.resolve();
|
|
14
14
|
return patchEsm().then(() => {
|
|
15
15
|
globalScripts();
|
|
16
|
-
return bootstrapLazy([["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]}]]],["sss-button_30",[[0,"sss-my-own-fund",{"history":[16],"formState":[32],"isNotAllInformationProvidedMessageVisible":[32],"isSubmitDisabled":[32]}],[0,"sss-self-managed-fund",{"history":[16],"formState":[32],"isSubmitDisabled":[32]}],[0,"sss-super-choice-page",{"history":[16],"promotedFunds":[32]}],[1,"super-selection-app-host",{"sessionState":[32],"jwt":[32],"appConfiguration":[32],"ignoreExistingSelection":[32]}],[0,"sss-default-fund",{"history":[16],"defaultFundProductName":[32]}],[0,"sss-standard-choice-form",{"history":[16],"standardChoiceFormSignature":[32],"formState":[32],"isSubmitDisabled":[32]}],[0,"sss-consent-page",{"history":[16]}],[0,"sss-existing-choice-page",{"history":[16],"existingFund":[32]}],[0,"sss-promoted-fund-join-v1-page",{"history":[16]}],[0,"sss-promoted-fund-join-v2-page",{"history":[16]}],[0,"sss-slate-join-page",{"history":[16]}],[0,"sss-success"],[1,"super-selection-app",{"ignoreExistingSelection":[4,"ignore-existing-selection"],"accessToken":[1,"access-token"],"backendUrl":[1,"backend-url"],"appBaseUrl":[1,"app-base-url"],"history":[16],"location":[16],"isSelfHosted":[4,"is-self-hosted"],"isAppInitialised":[32]}],[0,"sss-my-own-fund-inputs",{"myOwnFundForm":[16],"showValidationErrors":[4,"show-validation-errors"],"selectedOption":[32]}],[0,"sss-self-managed-fund-inputs",{"fundForm":[16],"showValidationErrors":[4,"show-validation-errors"],"isAbnValid":[32],"isAbnTouched":[32],"isAbnUsedForRegulated":[32],"currentBank":[32],"addressErrorMessage":[32]}],[0,"sss-super-choice-item-bottom",{"disclaimer":[16],"abnInfo":[1,"abn-info"],"abn":[1]}],[0,"sss-loading-page"],[0,"sss-super-choice-item-top",{"name":[1],"logo":[1],"features":[16],"featureSubText":[16]}],[0,"sss-dropdown-async",{"placeholder":[1],"searchFunction":[16],"value":[16],"required":[4],"requiredValidationMessage":[1,"required-validation-message"],"disabled":[4],"minSearchStringLength":[2,"min-search-string-length"],"showValidationErrors":[4,"show-validation-errors"],"searchState":[32],"inputValue":[32],"isDropdownVisible":[32],"filteredOptions":[32],"highlightedOptionIndex":[32],"selectedOption":[32]},[[2,"focus","handleFocus"],[2,"blur","handleBlur"],[2,"keydown","handleKeyDown"]]],[0,"sss-footer-section"],[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],"showFundOptionsSelection":[32]}],[0,"sss-iframe-host",{"build":[16]}],[0,"sss-header-section",{"currentPage":[1,"current-page"]}],[0,"sss-name-input",{"value":[1],"name":[1],"readableName":[1,"readable-name"],"showValidationErrors":[4,"show-validation-errors"],"errorMessage":[32]}],[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,"sss-button",{"fillWidth":[4,"fill-width"],"fillWidthOnMobile":[4,"fill-width-on-mobile"],"disabled":[4],"variant":[1],"size":[1],"promiseFn":[16],"state":[32]}],[0,"sss-loading-indicator",{"theme":[1],"size":[2]}],[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);
|
|
16
|
+
return bootstrapLazy([["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]}]]],["sss-button_30",[[0,"sss-my-own-fund",{"history":[16],"formState":[32],"isNotAllInformationProvidedMessageVisible":[32],"isSubmitDisabled":[32]}],[0,"sss-self-managed-fund",{"history":[16],"formState":[32],"isSubmitDisabled":[32]}],[0,"sss-super-choice-page",{"history":[16],"promotedFunds":[32]}],[1,"super-selection-app-host",{"sessionState":[32],"jwt":[32],"appConfiguration":[32],"ignoreExistingSelection":[32]}],[0,"sss-default-fund",{"history":[16],"defaultFundProductName":[32]}],[0,"sss-standard-choice-form",{"history":[16],"standardChoiceFormSignature":[32],"formState":[32],"isSubmitDisabled":[32]}],[0,"sss-consent-page",{"history":[16]}],[0,"sss-existing-choice-page",{"history":[16],"existingFund":[32]}],[0,"sss-promoted-fund-join-v1-page",{"history":[16]}],[0,"sss-promoted-fund-join-v2-page",{"history":[16]}],[0,"sss-slate-join-page",{"history":[16]}],[0,"sss-success"],[1,"super-selection-app",{"ignoreExistingSelection":[4,"ignore-existing-selection"],"accessToken":[1,"access-token"],"backendUrl":[1,"backend-url"],"appBaseUrl":[1,"app-base-url"],"history":[16],"location":[16],"isSelfHosted":[4,"is-self-hosted"],"isAppInitialised":[32]}],[0,"sss-my-own-fund-inputs",{"myOwnFundForm":[16],"showValidationErrors":[4,"show-validation-errors"],"selectedOption":[32]}],[0,"sss-self-managed-fund-inputs",{"fundForm":[16],"showValidationErrors":[4,"show-validation-errors"],"isAbnValid":[32],"isAbnTouched":[32],"isAbnUsedForRegulated":[32],"currentBank":[32],"addressErrorMessage":[32]}],[0,"sss-super-choice-item-bottom",{"disclaimer":[16],"abnInfo":[1,"abn-info"],"abn":[1]}],[0,"sss-loading-page"],[0,"sss-super-choice-item-top",{"name":[1],"logo":[1],"features":[16],"featureSubText":[16]}],[0,"sss-dropdown-async",{"placeholder":[1],"searchFunction":[16],"value":[16],"required":[4],"requiredValidationMessage":[1,"required-validation-message"],"disabled":[4],"minSearchStringLength":[2,"min-search-string-length"],"showValidationErrors":[4,"show-validation-errors"],"searchState":[32],"inputValue":[32],"isDropdownVisible":[32],"filteredOptions":[32],"highlightedOptionIndex":[32],"selectedOption":[32]},[[2,"focus","handleFocus"],[2,"blur","handleBlur"],[2,"keydown","handleKeyDown"]]],[0,"sss-footer-section",{"textOverride":[16]}],[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],"showFundOptionsSelection":[32]}],[0,"sss-iframe-host",{"build":[16]}],[0,"sss-header-section",{"currentPage":[1,"current-page"]}],[0,"sss-name-input",{"value":[1],"name":[1],"readableName":[1,"readable-name"],"showValidationErrors":[4,"show-validation-errors"],"errorMessage":[32]}],[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,"sss-button",{"fillWidth":[4,"fill-width"],"fillWidthOnMobile":[4,"fill-width-on-mobile"],"disabled":[4],"variant":[1],"size":[1],"promiseFn":[16],"state":[32]}],[0,"sss-loading-indicator",{"theme":[1],"size":[2]}],[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);
|
|
17
17
|
});
|
|
18
18
|
};
|
|
19
19
|
|
|
@@ -260,7 +260,7 @@ class TapSubscriber extends Subscriber {
|
|
|
260
260
|
}
|
|
261
261
|
}
|
|
262
262
|
|
|
263
|
-
const AppVersion = '4.
|
|
263
|
+
const AppVersion = '4.20.27915';
|
|
264
264
|
|
|
265
265
|
// -------------------------------------------------------------------------------------
|
|
266
266
|
// guards
|
|
@@ -3633,7 +3633,7 @@ const Consent = class {
|
|
|
3633
3633
|
return this.eventTrackingService.TrackSuperFundDisclaimerViewedAsync(detail);
|
|
3634
3634
|
}
|
|
3635
3635
|
render() {
|
|
3636
|
-
return (h("div", null, h("div", { class: "text-2xl sm:text-3xl font-bold text-center leading-8" }, "Important information about super"), h("div", { class: "sm:text-lg text-gray-600 mt-3 sm:mt-4 max-w-800 text-center leading-7 sm:leading-8" }, "The choice of superannuation fund is an important personal financial decision. Next, you\u2019ll be asked to nominate a super fund to receive your employer contributions."), h("div", { class: "flex justify-center mt-8 sm:mt-12" }, h("div", { class: "border shadow-sm p-4 pb-6 sm:p-6 sm:pb-8 max-w-560 rounded-lg" }, h("div", { class: "sm:text-lg font-bold leading-6" }, "By clicking \u201CContinue\u201D you acknowledge that:"), h("ul", { class: "list-disc list-outside ml-6 mt-3 mb-6 space-y-2 text-sm leading-6" }, h("li", null, "Flare (we/us) provides this paperless employee management service, will feature superannuation funds and offer you employee benefits that you may be interested in;"), h("li", null, "all content contained in the following pages does not take into account any of your objectives, financial situation or needs and does not constitute financial product advice;"), h("li", null, "in featuring any superannuation funds, we, the technology partner you are accessing us via, or your employer, are not providing any opinion or recommendation (actual or implied) in relation to the suitability or appropriateness of the featured funds;"), h("li", null, "if you do choose one of the featured superannuation funds, we and our associates will normally receive a fee for you doing so.")), h("sss-button", { fillWidth: true, promiseFn: () => this.handleSuperFundDisclaimerAccepted() }, "Continue")))));
|
|
3636
|
+
return (h("div", null, h("div", { class: "text-2xl sm:text-3xl font-bold text-center leading-8" }, "Important information about super"), h("div", { class: "sm:text-lg text-gray-600 mt-3 sm:mt-4 max-w-800 text-center leading-7 sm:leading-8" }, "The choice of superannuation fund is an important personal financial decision. Next, you\u2019ll be asked to nominate a super fund to receive your employer contributions."), h("div", { class: "flex justify-center mt-8 sm:mt-12" }, h("div", { class: "border shadow-sm p-4 pb-6 sm:p-6 sm:pb-8 max-w-560 rounded-lg" }, h("div", { class: "sm:text-lg font-bold leading-6" }, "By clicking \u201CContinue\u201D you acknowledge that:"), h("ul", { class: "list-disc list-outside ml-6 mt-3 mb-6 space-y-2 text-sm leading-6" }, h("li", null, "Flare (we/us) provides this paperless employee management service, will feature superannuation funds and offer you employee benefits that you may be interested in;"), h("li", null, "all content contained in the following pages does not take into account any of your objectives, financial situation or needs and does not constitute financial product advice;"), h("li", null, "in featuring any superannuation funds, we, the technology partner you are accessing us via, or your employer, are not providing any opinion or recommendation (actual or implied) in relation to the suitability or appropriateness of the featured funds;"), h("li", null, "if you do choose one of the featured superannuation funds, we and our associates will normally receive a fee for you doing so;"), h("li", null, "in the event that you choose one of the featured superannuation funds, we may pass on your personal information and TFN to a related party for the purpose of completing your chosen fund's application form.")), h("sss-button", { fillWidth: true, promiseFn: () => this.handleSuperFundDisclaimerAccepted() }, "Continue")))));
|
|
3637
3637
|
}
|
|
3638
3638
|
async handleSuperFundDisclaimerAccepted() {
|
|
3639
3639
|
const detail = { promotedFundsShown: this.promotedFunds };
|
|
@@ -4000,62 +4000,80 @@ const SelectInputAsync = class {
|
|
|
4000
4000
|
};
|
|
4001
4001
|
SelectInputAsync.style = dropdownAsyncCss;
|
|
4002
4002
|
|
|
4003
|
+
const PoweredByFlareFS = 'Powered by FlareFS';
|
|
4003
4004
|
const Slate = {
|
|
4004
4005
|
Id: 'slate',
|
|
4005
4006
|
Name: 'Slate Super',
|
|
4006
4007
|
Logo: 'logo-slate.png',
|
|
4007
4008
|
PdsUrl: 'https://slate.co/pds/?utm_source=flare&utm_medium=superselection',
|
|
4008
4009
|
Usi: '32367272075001',
|
|
4009
|
-
DiversaAbn: '49 006 421 638'
|
|
4010
|
+
DiversaAbn: '49 006 421 638',
|
|
4011
|
+
FooterTextOverride: none
|
|
4010
4012
|
};
|
|
4011
4013
|
const AustralianRetirementTrust = {
|
|
4012
4014
|
Id: 'australian-retirement-trust',
|
|
4013
4015
|
Name: 'Australian Retirement Trust',
|
|
4014
4016
|
Logo: 'logo-art.svg',
|
|
4015
4017
|
PdsUrl: 'https://www.australianretirementtrust.com.au/library/media/pdfs/pds/super-savings-product-disclosure-statement-and-membership-form.pdf',
|
|
4016
|
-
Abn: '60 905 115 063'
|
|
4018
|
+
Abn: '60 905 115 063',
|
|
4019
|
+
FooterTextOverride: none
|
|
4017
4020
|
};
|
|
4018
4021
|
const Aware = {
|
|
4019
4022
|
Id: 'aware',
|
|
4020
4023
|
Name: 'Aware Super',
|
|
4021
4024
|
Logo: 'logo-aware.svg',
|
|
4022
4025
|
PdsUrl: 'https://aware.com.au/member/forms-and-resources/pds/FSS',
|
|
4023
|
-
Abn: '53 226 460 365'
|
|
4026
|
+
Abn: '53 226 460 365',
|
|
4027
|
+
FooterTextOverride: none
|
|
4024
4028
|
};
|
|
4025
4029
|
const Active = {
|
|
4026
4030
|
Id: 'active',
|
|
4027
4031
|
Name: 'Active Super',
|
|
4028
4032
|
Logo: 'logo-active.svg',
|
|
4029
4033
|
PdsUrl: 'https://www.activesuper.com.au/pds',
|
|
4030
|
-
Abn: '28 901 371 321'
|
|
4034
|
+
Abn: '28 901 371 321',
|
|
4035
|
+
FooterTextOverride: some(PoweredByFlareFS)
|
|
4031
4036
|
};
|
|
4032
4037
|
const AustralianEthical = {
|
|
4033
4038
|
Id: 'australian-ethical',
|
|
4034
4039
|
Name: 'Australian Ethical',
|
|
4035
4040
|
Logo: 'logo-aus-eth.svg',
|
|
4036
4041
|
PdsUrl: 'https://www.australianethical.com.au/super/pds-forms/',
|
|
4037
|
-
Abn: '43 079 259 733'
|
|
4042
|
+
Abn: '43 079 259 733',
|
|
4043
|
+
FooterTextOverride: none
|
|
4038
4044
|
};
|
|
4039
4045
|
const Virgin = {
|
|
4040
4046
|
Id: 'virgin',
|
|
4041
4047
|
Name: 'Virgin Money Super',
|
|
4042
4048
|
Logo: 'logo-virgin.svg',
|
|
4043
4049
|
PdsUrl: 'https://virginmoney.com.au/superannuation/',
|
|
4044
|
-
Abn: '19 905 422 981'
|
|
4050
|
+
Abn: '19 905 422 981',
|
|
4051
|
+
FooterTextOverride: some(PoweredByFlareFS)
|
|
4045
4052
|
};
|
|
4046
4053
|
const Spirit = {
|
|
4047
4054
|
Id: 'spirit',
|
|
4048
4055
|
Name: 'Spirit Super',
|
|
4049
4056
|
Logo: 'logo-spirit.svg',
|
|
4050
4057
|
PdsUrl: 'https://www.spiritsuper.com.au/pds',
|
|
4051
|
-
Abn: '74 559 365 913'
|
|
4058
|
+
Abn: '74 559 365 913',
|
|
4059
|
+
FooterTextOverride: none
|
|
4052
4060
|
};
|
|
4053
4061
|
const First = {
|
|
4054
4062
|
Id: 'first-super',
|
|
4055
4063
|
Name: 'First Super',
|
|
4056
4064
|
Logo: 'logo-first.svg',
|
|
4057
4065
|
PdsUrl: 'https://www.firstsuper.com.au/forms-tools/product-disclosure-statements/',
|
|
4058
|
-
Abn: '56 286 625 181'
|
|
4066
|
+
Abn: '56 286 625 181',
|
|
4067
|
+
FooterTextOverride: none
|
|
4068
|
+
};
|
|
4069
|
+
const MercerMyChoice = {
|
|
4070
|
+
Id: 'mercermychoice',
|
|
4071
|
+
Name: 'Mercer MyChoice',
|
|
4072
|
+
Logo: 'logo-mercer-mychoice.svg',
|
|
4073
|
+
PdsUrl: 'https://www.google.com.au',
|
|
4074
|
+
TmdUrl: 'https://www.google.com.au',
|
|
4075
|
+
Abn: '79 004 717 533',
|
|
4076
|
+
FooterTextOverride: some(PoweredByFlareFS)
|
|
4059
4077
|
};
|
|
4060
4078
|
const PromotedFundIdList = [
|
|
4061
4079
|
{ dtoPropName: 'slate', id: Slate.Id },
|
|
@@ -4065,7 +4083,8 @@ const PromotedFundIdList = [
|
|
|
4065
4083
|
{ dtoPropName: 'australianEthical', id: AustralianEthical.Id },
|
|
4066
4084
|
{ dtoPropName: 'virgin', id: Virgin.Id },
|
|
4067
4085
|
{ dtoPropName: 'spirit', id: Spirit.Id },
|
|
4068
|
-
{ dtoPropName: 'firstSuper', id: First.Id }
|
|
4086
|
+
{ dtoPropName: 'firstSuper', id: First.Id },
|
|
4087
|
+
{ dtoPropName: 'mercerMyChoice', id: MercerMyChoice.Id }
|
|
4069
4088
|
];
|
|
4070
4089
|
const getFundNameById = (id) => {
|
|
4071
4090
|
switch (id) {
|
|
@@ -4085,10 +4104,23 @@ const getFundNameById = (id) => {
|
|
|
4085
4104
|
return Spirit.Name;
|
|
4086
4105
|
case First.Id:
|
|
4087
4106
|
return First.Name;
|
|
4107
|
+
case MercerMyChoice.Id:
|
|
4108
|
+
return MercerMyChoice.Name;
|
|
4088
4109
|
default:
|
|
4089
4110
|
return;
|
|
4090
4111
|
}
|
|
4091
4112
|
};
|
|
4113
|
+
const getFooterTextOverrideByFundId = (id) => { var _a, _b; return (_b = (_a = [
|
|
4114
|
+
Slate,
|
|
4115
|
+
AustralianRetirementTrust,
|
|
4116
|
+
Aware,
|
|
4117
|
+
Active,
|
|
4118
|
+
AustralianEthical,
|
|
4119
|
+
Virgin,
|
|
4120
|
+
Spirit,
|
|
4121
|
+
First,
|
|
4122
|
+
MercerMyChoice
|
|
4123
|
+
].find((fund) => fund.Id == id)) === null || _a === void 0 ? void 0 : _a.FooterTextOverride) !== null && _b !== void 0 ? _b : none; };
|
|
4092
4124
|
const getFundUsiById = (id) => {
|
|
4093
4125
|
switch (id) {
|
|
4094
4126
|
case Slate.Id:
|
|
@@ -4124,6 +4156,9 @@ const getLogoSrc = (id) => {
|
|
|
4124
4156
|
case First.Id:
|
|
4125
4157
|
logo = First.Logo;
|
|
4126
4158
|
break;
|
|
4159
|
+
case MercerMyChoice.Id:
|
|
4160
|
+
logo = MercerMyChoice.Logo;
|
|
4161
|
+
break;
|
|
4127
4162
|
default:
|
|
4128
4163
|
return;
|
|
4129
4164
|
}
|
|
@@ -4156,6 +4191,9 @@ function getPromotedFundUsi(dto) {
|
|
|
4156
4191
|
else if ('firstSuper' in dto) {
|
|
4157
4192
|
return some(dto.firstSuper.usi);
|
|
4158
4193
|
}
|
|
4194
|
+
else if ('mercerMyChoice' in dto) {
|
|
4195
|
+
return some(dto.mercerMyChoice.usi);
|
|
4196
|
+
}
|
|
4159
4197
|
else {
|
|
4160
4198
|
return none;
|
|
4161
4199
|
}
|
|
@@ -4202,6 +4240,9 @@ function getPromotedFundMemberNumber(dto) {
|
|
|
4202
4240
|
else if ('firstSuper' in dto) {
|
|
4203
4241
|
return some(dto.firstSuper.memberNumber);
|
|
4204
4242
|
}
|
|
4243
|
+
else if ('mercerMyChoice' in dto) {
|
|
4244
|
+
return some(dto.mercerMyChoice.memberNumber);
|
|
4245
|
+
}
|
|
4205
4246
|
else {
|
|
4206
4247
|
return none;
|
|
4207
4248
|
}
|
|
@@ -4398,12 +4439,14 @@ const ExistingChoice = class {
|
|
|
4398
4439
|
}
|
|
4399
4440
|
};
|
|
4400
4441
|
|
|
4442
|
+
const DefaultFooterText = 'Powered by Flare';
|
|
4401
4443
|
const FooterSection = class {
|
|
4402
4444
|
constructor(hostRef) {
|
|
4403
4445
|
registerInstance(this, hostRef);
|
|
4446
|
+
this.footerText = () => Option.isSome(this.textOverride) ? this.textOverride.value : DefaultFooterText;
|
|
4404
4447
|
}
|
|
4405
4448
|
render() {
|
|
4406
|
-
return (h("div", { class: "text-center text-gray-500 text-xs mt-8 sm:mt-20 w-full max-w-960 mx-auto" }, h("span", null,
|
|
4449
|
+
return (h("div", { class: "text-center text-gray-500 text-xs mt-8 sm:mt-20 w-full max-w-960 mx-auto" }, h("span", null, this.footerText()), h("p", { class: "block text-transparent" }, "v", AppVersion), !FeatureFlagService.isNewComplianceEnabled() && (h("p", { class: "mt-4" }, "This page contains factual information only and does not take into account your particular objectives, financial circumstances or needs. If you have questions or need help making a decision about your super fund, you should speak to a licensed financial advice provider. You should consider the relevant super fund's PDS and TMD (if applicable) in deciding whether to apply to join the super fund. Each of the advertised fund's PDS and TMD (if applicable) can be found in their advertisements above. If you are considering joining another fund you can find the PDS and TMD on the fund's website. Your employer and Flare 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 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 do not express any opinion or make any recommendation about any of the advertised funds."))));
|
|
4407
4450
|
}
|
|
4408
4451
|
};
|
|
4409
4452
|
|
|
@@ -4640,6 +4683,9 @@ const initial$1 = {
|
|
|
4640
4683
|
fundId: ''
|
|
4641
4684
|
};
|
|
4642
4685
|
const { state: state$2 } = createStore(initial$1);
|
|
4686
|
+
function reset$1() {
|
|
4687
|
+
state$2.fundId = initial$1.fundId;
|
|
4688
|
+
}
|
|
4643
4689
|
|
|
4644
4690
|
class PromotedFundJoinV1IFrameBuilder {
|
|
4645
4691
|
constructor() {
|
|
@@ -4671,11 +4717,21 @@ class PromotedFundJoinV1IFrameBuilder {
|
|
|
4671
4717
|
break;
|
|
4672
4718
|
case 'success':
|
|
4673
4719
|
if (data.memberNumber) {
|
|
4720
|
+
const promotedFundId = state$2.fundId;
|
|
4674
4721
|
navigationService.navigateInternallyToStandardChoice({
|
|
4675
4722
|
history,
|
|
4676
|
-
fundName: (_a = getFundNameById(
|
|
4677
|
-
handleSubmitFn: (standardChoiceFormSignature) => promotedFundChoiceApi.submitChoiceAsync(
|
|
4678
|
-
|
|
4723
|
+
fundName: (_a = getFundNameById(promotedFundId)) !== null && _a !== void 0 ? _a : '',
|
|
4724
|
+
handleSubmitFn: (standardChoiceFormSignature) => promotedFundChoiceApi.submitChoiceAsync({
|
|
4725
|
+
fundId: promotedFundId,
|
|
4726
|
+
memberNumber: data.memberNumber,
|
|
4727
|
+
memberFirstName: data.memberFirstName,
|
|
4728
|
+
memberFamilyName: data.memberFamilyName,
|
|
4729
|
+
usi: data.usi.replace(/ /g, ''),
|
|
4730
|
+
standardChoiceFormSignature,
|
|
4731
|
+
shownFunds: superSelectionAppService.promotedFunds,
|
|
4732
|
+
defaultFundUsiSet: Option.toUndefined(superSelectionAppService.defaultFundUsi)
|
|
4733
|
+
}),
|
|
4734
|
+
promotedFundId
|
|
4679
4735
|
});
|
|
4680
4736
|
break;
|
|
4681
4737
|
}
|
|
@@ -4684,6 +4740,7 @@ class PromotedFundJoinV1IFrameBuilder {
|
|
|
4684
4740
|
navigationService.navigateInternally(history, SuperSelectionAppRoutes.ChoicePage);
|
|
4685
4741
|
break;
|
|
4686
4742
|
}
|
|
4743
|
+
reset$1();
|
|
4687
4744
|
return;
|
|
4688
4745
|
}
|
|
4689
4746
|
if (data.sender === 'promoted-fund-join') {
|
|
@@ -4789,11 +4846,21 @@ class PromotedFundJoinV2IFrameBuilder {
|
|
|
4789
4846
|
break;
|
|
4790
4847
|
case 'success':
|
|
4791
4848
|
if (data.memberNumber) {
|
|
4849
|
+
const promotedFundId = state$2.fundId;
|
|
4792
4850
|
navigationService.navigateInternallyToStandardChoice({
|
|
4793
4851
|
history,
|
|
4794
|
-
fundName: (_a = getFundNameById(
|
|
4795
|
-
handleSubmitFn: (standardChoiceFormSignature) => promotedFundChoiceApi.submitChoiceAsync(
|
|
4796
|
-
|
|
4852
|
+
fundName: (_a = getFundNameById(promotedFundId)) !== null && _a !== void 0 ? _a : '',
|
|
4853
|
+
handleSubmitFn: (standardChoiceFormSignature) => promotedFundChoiceApi.submitChoiceAsync({
|
|
4854
|
+
fundId: promotedFundId,
|
|
4855
|
+
memberNumber: data.memberNumber,
|
|
4856
|
+
memberFirstName: data.memberFirstName,
|
|
4857
|
+
memberFamilyName: data.memberFamilyName,
|
|
4858
|
+
usi: data.usi.replace(/ /g, ''),
|
|
4859
|
+
standardChoiceFormSignature,
|
|
4860
|
+
shownFunds: superSelectionAppService.promotedFunds,
|
|
4861
|
+
defaultFundUsiSet: Option.toUndefined(superSelectionAppService.defaultFundUsi)
|
|
4862
|
+
}),
|
|
4863
|
+
promotedFundId
|
|
4797
4864
|
});
|
|
4798
4865
|
break;
|
|
4799
4866
|
}
|
|
@@ -4802,6 +4869,7 @@ class PromotedFundJoinV2IFrameBuilder {
|
|
|
4802
4869
|
navigationService.navigateInternally(history, SuperSelectionAppRoutes.ChoicePage);
|
|
4803
4870
|
break;
|
|
4804
4871
|
}
|
|
4872
|
+
reset$1();
|
|
4805
4873
|
return;
|
|
4806
4874
|
}
|
|
4807
4875
|
if (data.sender === 'promoted-fund-join') {
|
|
@@ -5300,6 +5368,7 @@ class SlateIFrameBuilder {
|
|
|
5300
5368
|
navigationService.navigateInternally(history, SuperSelectionAppRoutes.ChoicePage);
|
|
5301
5369
|
break;
|
|
5302
5370
|
}
|
|
5371
|
+
reset$1();
|
|
5303
5372
|
return;
|
|
5304
5373
|
}
|
|
5305
5374
|
if (data.sender === 'flare' && origin.endsWith('join.slatesuper.com.au')) {
|
|
@@ -5588,6 +5657,18 @@ const SuperChoicePage = class {
|
|
|
5588
5657
|
h("p", null, "Established super fund \u2013 anyone can join including KiwiSaver members")
|
|
5589
5658
|
],
|
|
5590
5659
|
disclaimer: (h("div", null, h("p", null, "General advice only which has been prepared without taking into account your objectives, financial situation or needs. Consider whether the advice is appropriate for you and read the Product Disclosure Statement (PDS) before making any investment decisions. PDS and Target Market Determination are available at our", ' ', h(Link, { onClick: () => this.pdsViewedAsync(First.Name), href: First.PdsUrl }, "website"), ". Past performance is not a reliable indicator of future performance."), h("br", null), h("p", null, "Issued by First Super Pty Ltd ABN 42 053 498 472, AFSL 223988 (Trustee) as Trustee of First Super ABN 56 286 625 181.")))
|
|
5660
|
+
},
|
|
5661
|
+
{
|
|
5662
|
+
fundId: MercerMyChoice.Id,
|
|
5663
|
+
name: MercerMyChoice.Name,
|
|
5664
|
+
logo: MercerMyChoice.Logo,
|
|
5665
|
+
route: SuperSelectionAppRoutes.PromotedFundJoinV2,
|
|
5666
|
+
features: [
|
|
5667
|
+
h("p", null, "Save more super with our low fees"),
|
|
5668
|
+
h("p", null, "Take control with 6 MyChoice investment options"),
|
|
5669
|
+
h("p", null, "Join 850,000 Australians who trust our global expertise")
|
|
5670
|
+
],
|
|
5671
|
+
disclaimer: (h("div", null, h("p", null, "You should consider the", ' ', h(Link, { href: MercerMyChoice.PdsUrl, onClick: () => this.pdsViewedAsync(MercerMyChoice.Name) }, "Product Disclosure Statement"), ' ', "and", ' ', h(Link, { href: MercerMyChoice.TmdUrl }, "Target Market Determination"), ' ', "before deciding to invest in or apply to become a member of the fund."), h("br", null), h("p", null, "Issued by Mercer Superannuation (Australia) Limited (\u2018Mercer Super\u2019) ABN: ", MercerMyChoice.Abn)))
|
|
5591
5672
|
}
|
|
5592
5673
|
];
|
|
5593
5674
|
}
|
|
@@ -6626,6 +6707,14 @@ const SuperSelectionApp = class {
|
|
|
6626
6707
|
render() {
|
|
6627
6708
|
return (h(Host, null, h("link", { rel: "stylesheet", href: getAssetPath('apollo-super-selection.css'), media: "all" }), this.renderAppContent()));
|
|
6628
6709
|
}
|
|
6710
|
+
isFundJoinPage() {
|
|
6711
|
+
return (window.location.pathname.includes(SuperSelectionAppRoutes.SlateJoin) ||
|
|
6712
|
+
window.location.pathname.includes(SuperSelectionAppRoutes.PromotedFundJoinV1) ||
|
|
6713
|
+
window.location.pathname.includes(SuperSelectionAppRoutes.PromotedFundJoinV2));
|
|
6714
|
+
}
|
|
6715
|
+
getFooterTextOverride() {
|
|
6716
|
+
return getFooterTextOverrideByFundId(state$2.fundId);
|
|
6717
|
+
}
|
|
6629
6718
|
routerBaseUrl() {
|
|
6630
6719
|
var _a;
|
|
6631
6720
|
return ((_a = this.appBaseUrl) === null || _a === void 0 ? void 0 : _a.replace(/\/$/, '')) + '/';
|
|
@@ -6635,12 +6724,7 @@ const SuperSelectionApp = class {
|
|
|
6635
6724
|
'pt-28': true,
|
|
6636
6725
|
'-mt-12 pb-6': !this.isFundJoinPage(),
|
|
6637
6726
|
'-mt-28': this.isFundJoinPage() // -mt value same as pt to negate it in embedded fund join pages
|
|
6638
|
-
} }, superSelectionAppStencilRoutes, h("sss-footer-section",
|
|
6639
|
-
}
|
|
6640
|
-
isFundJoinPage() {
|
|
6641
|
-
return (window.location.pathname.includes(SuperSelectionAppRoutes.SlateJoin) ||
|
|
6642
|
-
window.location.pathname.includes(SuperSelectionAppRoutes.PromotedFundJoinV1) ||
|
|
6643
|
-
window.location.pathname.includes(SuperSelectionAppRoutes.PromotedFundJoinV2));
|
|
6727
|
+
} }, superSelectionAppStencilRoutes, h("sss-footer-section", { textOverride: this.getFooterTextOverride() }))) : (h("div", { class: "flex justify-center py-20" }, h("sss-loading-indicator", null))))));
|
|
6644
6728
|
}
|
|
6645
6729
|
static get assetsDirs() { return ["assets"]; }
|
|
6646
6730
|
static get watchers() { return {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as promiseResolve,b as bootstrapLazy}from"./index-189b2180.js";import"./datorama-akita-127aea91.js";import{g as globalScripts}from"./app-globals-c1f89805.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([["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]}]]],["sss-button_30",[[0,"sss-my-own-fund",{history:[16],formState:[32],isNotAllInformationProvidedMessageVisible:[32],isSubmitDisabled:[32]}],[0,"sss-self-managed-fund",{history:[16],formState:[32],isSubmitDisabled:[32]}],[0,"sss-super-choice-page",{history:[16],promotedFunds:[32]}],[1,"super-selection-app-host",{sessionState:[32],jwt:[32],appConfiguration:[32],ignoreExistingSelection:[32]}],[0,"sss-default-fund",{history:[16],defaultFundProductName:[32]}],[0,"sss-standard-choice-form",{history:[16],standardChoiceFormSignature:[32],formState:[32],isSubmitDisabled:[32]}],[0,"sss-consent-page",{history:[16]}],[0,"sss-existing-choice-page",{history:[16],existingFund:[32]}],[0,"sss-promoted-fund-join-v1-page",{history:[16]}],[0,"sss-promoted-fund-join-v2-page",{history:[16]}],[0,"sss-slate-join-page",{history:[16]}],[0,"sss-success"],[1,"super-selection-app",{ignoreExistingSelection:[4,"ignore-existing-selection"],accessToken:[1,"access-token"],backendUrl:[1,"backend-url"],appBaseUrl:[1,"app-base-url"],history:[16],location:[16],isSelfHosted:[4,"is-self-hosted"],isAppInitialised:[32]}],[0,"sss-my-own-fund-inputs",{myOwnFundForm:[16],showValidationErrors:[4,"show-validation-errors"],selectedOption:[32]}],[0,"sss-self-managed-fund-inputs",{fundForm:[16],showValidationErrors:[4,"show-validation-errors"],isAbnValid:[32],isAbnTouched:[32],isAbnUsedForRegulated:[32],currentBank:[32],addressErrorMessage:[32]}],[0,"sss-super-choice-item-bottom",{disclaimer:[16],abnInfo:[1,"abn-info"],abn:[1]}],[0,"sss-loading-page"],[0,"sss-super-choice-item-top",{name:[1],logo:[1],features:[16],featureSubText:[16]}],[0,"sss-dropdown-async",{placeholder:[1],searchFunction:[16],value:[16],required:[4],requiredValidationMessage:[1,"required-validation-message"],disabled:[4],minSearchStringLength:[2,"min-search-string-length"],showValidationErrors:[4,"show-validation-errors"],searchState:[32],inputValue:[32],isDropdownVisible:[32],filteredOptions:[32],highlightedOptionIndex:[32],selectedOption:[32]},[[2,"focus","handleFocus"],[2,"blur","handleBlur"],[2,"keydown","handleKeyDown"]]],[0,"sss-footer-section"],[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],showFundOptionsSelection:[32]}],[0,"sss-iframe-host",{build:[16]}],[0,"sss-header-section",{currentPage:[1,"current-page"]}],[0,"sss-name-input",{value:[1],name:[1],readableName:[1,"readable-name"],showValidationErrors:[4,"show-validation-errors"],errorMessage:[32]}],[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,"sss-button",{fillWidth:[4,"fill-width"],fillWidthOnMobile:[4,"fill-width-on-mobile"],disabled:[4],variant:[1],size:[1],promiseFn:[16],state:[32]}],[0,"sss-loading-indicator",{theme:[1],size:[2]}],[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)}));
|
|
1
|
+
import{p as promiseResolve,b as bootstrapLazy}from"./index-189b2180.js";import"./datorama-akita-127aea91.js";import{g as globalScripts}from"./app-globals-c1f89805.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([["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]}]]],["sss-button_30",[[0,"sss-my-own-fund",{history:[16],formState:[32],isNotAllInformationProvidedMessageVisible:[32],isSubmitDisabled:[32]}],[0,"sss-self-managed-fund",{history:[16],formState:[32],isSubmitDisabled:[32]}],[0,"sss-super-choice-page",{history:[16],promotedFunds:[32]}],[1,"super-selection-app-host",{sessionState:[32],jwt:[32],appConfiguration:[32],ignoreExistingSelection:[32]}],[0,"sss-default-fund",{history:[16],defaultFundProductName:[32]}],[0,"sss-standard-choice-form",{history:[16],standardChoiceFormSignature:[32],formState:[32],isSubmitDisabled:[32]}],[0,"sss-consent-page",{history:[16]}],[0,"sss-existing-choice-page",{history:[16],existingFund:[32]}],[0,"sss-promoted-fund-join-v1-page",{history:[16]}],[0,"sss-promoted-fund-join-v2-page",{history:[16]}],[0,"sss-slate-join-page",{history:[16]}],[0,"sss-success"],[1,"super-selection-app",{ignoreExistingSelection:[4,"ignore-existing-selection"],accessToken:[1,"access-token"],backendUrl:[1,"backend-url"],appBaseUrl:[1,"app-base-url"],history:[16],location:[16],isSelfHosted:[4,"is-self-hosted"],isAppInitialised:[32]}],[0,"sss-my-own-fund-inputs",{myOwnFundForm:[16],showValidationErrors:[4,"show-validation-errors"],selectedOption:[32]}],[0,"sss-self-managed-fund-inputs",{fundForm:[16],showValidationErrors:[4,"show-validation-errors"],isAbnValid:[32],isAbnTouched:[32],isAbnUsedForRegulated:[32],currentBank:[32],addressErrorMessage:[32]}],[0,"sss-super-choice-item-bottom",{disclaimer:[16],abnInfo:[1,"abn-info"],abn:[1]}],[0,"sss-loading-page"],[0,"sss-super-choice-item-top",{name:[1],logo:[1],features:[16],featureSubText:[16]}],[0,"sss-dropdown-async",{placeholder:[1],searchFunction:[16],value:[16],required:[4],requiredValidationMessage:[1,"required-validation-message"],disabled:[4],minSearchStringLength:[2,"min-search-string-length"],showValidationErrors:[4,"show-validation-errors"],searchState:[32],inputValue:[32],isDropdownVisible:[32],filteredOptions:[32],highlightedOptionIndex:[32],selectedOption:[32]},[[2,"focus","handleFocus"],[2,"blur","handleBlur"],[2,"keydown","handleKeyDown"]]],[0,"sss-footer-section",{textOverride:[16]}],[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],showFundOptionsSelection:[32]}],[0,"sss-iframe-host",{build:[16]}],[0,"sss-header-section",{currentPage:[1,"current-page"]}],[0,"sss-name-input",{value:[1],name:[1],readableName:[1,"readable-name"],showValidationErrors:[4,"show-validation-errors"],errorMessage:[32]}],[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,"sss-button",{fillWidth:[4,"fill-width"],fillWidthOnMobile:[4,"fill-width-on-mobile"],disabled:[4],variant:[1],size:[1],promiseFn:[16],state:[32]}],[0,"sss-loading-indicator",{theme:[1],size:[2]}],[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)}));
|