@flarehr/apollo-super-selection 4.22.28155 → 4.24.28972
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.css +1 -1
- package/dist/lib/apollo-super-selection/apollo-super-selection.esm.js +1 -1
- package/dist/lib/apollo-super-selection/p-72ce3c16.entry.js +14 -0
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- package/dist/lib/apollo-super-selection/p-e70cee95.system.entry.js +69 -0
- package/dist/lib/cjs/sss-button_30.cjs.entry.js +292 -227
- package/dist/lib/collection/apollo-super-selection.css +1 -1
- package/dist/lib/collection/components/super-selection-app/funds/constants.js +25 -99
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/my-own-fund/my-own-fund-inputs.js +6 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/active.js +26 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/australian-ethical.js +43 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/australian-retirement-trust.js +32 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/aware.js +27 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/first.js +27 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/mercermychoice.js +32 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/slate.js +32 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/spirit.js +43 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/virgin.js +36 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/types.js +14 -0
- package/dist/lib/collection/components/super-selection-app/funds/slate-super/services/slate-iframe-builder.js +3 -3
- package/dist/lib/collection/components/super-selection-app/misc/dropdown-async.js +1 -0
- package/dist/lib/collection/components/super-selection-app/services/existing-super-choice-info.service.js +2 -2
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +1 -241
- package/dist/lib/esm/sss-button_30.entry.js +292 -227
- package/dist/lib/esm-es5/sss-button_30.entry.js +3 -3
- package/dist/lib/types/components/super-selection-app/funds/constants.d.ts +3 -87
- package/dist/lib/types/components/super-selection-app/funds/custom-fund/my-own-fund/my-own-fund-inputs.d.ts +1 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/funds/active.d.ts +3 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/funds/australian-ethical.d.ts +3 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/funds/australian-retirement-trust.d.ts +3 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/funds/aware.d.ts +3 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/funds/first.d.ts +3 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/funds/mercermychoice.d.ts +3 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/funds/slate.d.ts +4 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/funds/spirit.d.ts +3 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/funds/virgin.d.ts +3 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/types.d.ts +23 -0
- package/dist/lib/types/components/super-selection-app/super-choice-page/super-choice-page.d.ts +0 -2
- package/package.json +1 -2
- package/dist/lib/apollo-super-selection/p-777b2ea4.entry.js +0 -14
- package/dist/lib/apollo-super-selection/p-9decf4f5.system.entry.js +0 -69
|
@@ -264,7 +264,7 @@ class TapSubscriber extends datoramaAkita.Subscriber {
|
|
|
264
264
|
}
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
-
const AppVersion = '4.
|
|
267
|
+
const AppVersion = '4.24.28972';
|
|
268
268
|
|
|
269
269
|
// -------------------------------------------------------------------------------------
|
|
270
270
|
// guards
|
|
@@ -3962,6 +3962,7 @@ const SelectInputAsync = class {
|
|
|
3962
3962
|
this.searchResultsSubscription = fromEvent(this.inputElement, 'keyup')
|
|
3963
3963
|
.pipe(debounceTime(500), datoramaAkita.map((_) => this.inputElement.value), datoramaAkita.distinctUntilChanged(), datoramaAkita.filter(this.shouldExecuteSearch), tap(this.onBeginSearch), mergeMap(this._searchFunction), tap(this.onCompleteSearch))
|
|
3964
3964
|
.subscribe();
|
|
3965
|
+
this.resetInput();
|
|
3965
3966
|
}
|
|
3966
3967
|
disconnectedCallback() {
|
|
3967
3968
|
this.searchResultsSubscription.unsubscribe();
|
|
@@ -4004,109 +4005,300 @@ const SelectInputAsync = class {
|
|
|
4004
4005
|
};
|
|
4005
4006
|
SelectInputAsync.style = dropdownAsyncCss;
|
|
4006
4007
|
|
|
4008
|
+
const Link = (props, children) => {
|
|
4009
|
+
return (index.h("a", { class: props.className || 'font-medium underline hover:text-gray-600', target: "_blank", href: navigationService.toExternalUrl(props.href), onClick: props.onClick }, children));
|
|
4010
|
+
};
|
|
4007
4011
|
const PoweredByFlareFS = 'Powered by Flare FS';
|
|
4008
|
-
|
|
4009
|
-
|
|
4010
|
-
|
|
4011
|
-
|
|
4012
|
-
|
|
4013
|
-
|
|
4014
|
-
|
|
4015
|
-
|
|
4016
|
-
|
|
4012
|
+
function pdsViewedAsync(name, usi) {
|
|
4013
|
+
return EventTrackingService.Instance.TrackSuperFundPdsViewedAsync({
|
|
4014
|
+
fundUsi: usi,
|
|
4015
|
+
fundName: name,
|
|
4016
|
+
pageName: 'Panel Fund Page'
|
|
4017
|
+
});
|
|
4018
|
+
}
|
|
4019
|
+
|
|
4020
|
+
const name = 'Active Super';
|
|
4021
|
+
const fund = {
|
|
4022
|
+
fundId: 'active',
|
|
4023
|
+
name,
|
|
4024
|
+
logo: 'logo-active.svg',
|
|
4025
|
+
route: SuperSelectionAppRoutes.PromotedFundJoinV1,
|
|
4026
|
+
features: [
|
|
4027
|
+
index.h("p", null, "Winner of Canstar's 2023 Outstanding Value \u2013 Superannuation Award considering investment performance, fees and product features*"),
|
|
4028
|
+
index.h("p", null, "Recognised as a leader in responsible investment"),
|
|
4029
|
+
index.h("p", null, "Calls answered in 20 seconds (average over 5 years)")
|
|
4030
|
+
],
|
|
4031
|
+
featureSubText: (index.h("span", null, "*Based on a comparison of the Active Super Accumulation Scheme held by those aged 20-69 years and balances between $30,000 and $1.5 million.")),
|
|
4032
|
+
disclaimer: (index.h("p", null,
|
|
4033
|
+
"Issued by LGSS Pty Limited as trustee for Local Government Super (Active Super ABN:28 901 371 321). Consider the PDS and TMD at",
|
|
4034
|
+
' ',
|
|
4035
|
+
index.h(Link, { onClick: () => pdsViewedAsync(name), href: "https://www.activesuper.com.au/pds" }, "activesuper.com.au"),
|
|
4036
|
+
' ',
|
|
4037
|
+
"before making a decision.")),
|
|
4038
|
+
footnoteTextOverride: Option.some(PoweredByFlareFS),
|
|
4039
|
+
dtoPropName: 'active'
|
|
4017
4040
|
};
|
|
4018
|
-
|
|
4019
|
-
|
|
4020
|
-
|
|
4021
|
-
|
|
4022
|
-
|
|
4023
|
-
|
|
4024
|
-
|
|
4025
|
-
|
|
4041
|
+
|
|
4042
|
+
const name$1 = 'Australian Ethical';
|
|
4043
|
+
const pdsUrl = 'https://www.australianethical.com.au/super/pds-forms/';
|
|
4044
|
+
const fund$1 = {
|
|
4045
|
+
fundId: 'australian-ethical',
|
|
4046
|
+
name: name$1,
|
|
4047
|
+
logo: 'logo-aus-eth.svg',
|
|
4048
|
+
route: SuperSelectionAppRoutes.PromotedFundJoinV2,
|
|
4049
|
+
features: [
|
|
4050
|
+
index.h("p", null,
|
|
4051
|
+
"Fastest growing super fund in Australia",
|
|
4052
|
+
index.h("sup", { class: "text-tiny" }, "1")),
|
|
4053
|
+
index.h("p", null,
|
|
4054
|
+
"Nil investments in fossil fuel companies",
|
|
4055
|
+
index.h("sup", { class: "text-tiny" }, "2")),
|
|
4056
|
+
index.h("p", null, "Competitive returns")
|
|
4057
|
+
],
|
|
4058
|
+
featureSubText: (index.h("ol", { class: "list-decimal list-outside ml-3" },
|
|
4059
|
+
index.h("li", null, "Source: KPMG Super Insights Report 2022."),
|
|
4060
|
+
index.h("li", null, "All our options go through positive and negative ethical screening in accordance with the Australian Ethical Charter (in place since 1986)."))),
|
|
4061
|
+
disclaimer: (index.h("p", null,
|
|
4062
|
+
"Issued by Australian Ethical Superannuation Pty Ltd (ABN 43 079 259 733, RSE L0001441, AFSL 526055). Please consider the",
|
|
4063
|
+
' ',
|
|
4064
|
+
index.h(Link, { href: "https://www.australianethical.com.au/globalassets/pdf-files/forms--pds/superpension/important-information/ae-financial-services-guide_sec.pdf" }, "Financial Services Guide"),
|
|
4065
|
+
", the",
|
|
4066
|
+
' ',
|
|
4067
|
+
index.h(Link, { href: pdsUrl, onClick: () => pdsViewedAsync(name$1) }, "Product Disclosure Statement"),
|
|
4068
|
+
' ',
|
|
4069
|
+
"and",
|
|
4070
|
+
' ',
|
|
4071
|
+
index.h(Link, { href: pdsUrl, onClick: () => pdsViewedAsync(name$1) }, "Target Market Determination"),
|
|
4072
|
+
' ',
|
|
4073
|
+
"available on our",
|
|
4074
|
+
' ',
|
|
4075
|
+
index.h(Link, { href: pdsUrl, onClick: () => pdsViewedAsync(name$1) }, "website"),
|
|
4076
|
+
".")),
|
|
4077
|
+
footnoteTextOverride: Option.none,
|
|
4078
|
+
dtoPropName: 'australianEthical'
|
|
4026
4079
|
};
|
|
4027
|
-
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
|
-
|
|
4031
|
-
|
|
4032
|
-
|
|
4033
|
-
|
|
4034
|
-
|
|
4080
|
+
|
|
4081
|
+
const name$2 = 'Australian Retirement Trust';
|
|
4082
|
+
const fund$2 = {
|
|
4083
|
+
fundId: 'australian-retirement-trust',
|
|
4084
|
+
name: name$2,
|
|
4085
|
+
logo: 'logo-art.svg',
|
|
4086
|
+
route: SuperSelectionAppRoutes.PromotedFundJoinV1,
|
|
4087
|
+
features: [
|
|
4088
|
+
index.h("p", null, "$200 billion in retirement savings"),
|
|
4089
|
+
index.h("p", null, "2+ million members"),
|
|
4090
|
+
index.h("p", null, "A focus on delivering strong, long\u2011term returns")
|
|
4091
|
+
],
|
|
4092
|
+
featureSubText: (index.h("span", null, "QSuper is now part of Australian Retirement Trust. If you have an existing QSuper account, you will continue to hold that account by selecting this option.")),
|
|
4093
|
+
disclaimer: (index.h("p", null,
|
|
4094
|
+
"You should consider the",
|
|
4095
|
+
' ',
|
|
4096
|
+
index.h(Link, { href: "https://www.australianretirementtrust.com.au/library/media/pdfs/pds/super-savings-product-disclosure-statement-and-membership-form.pdf", onClick: () => pdsViewedAsync(name$2) }, "Product Disclosure Statement"),
|
|
4097
|
+
' ',
|
|
4098
|
+
"and",
|
|
4099
|
+
' ',
|
|
4100
|
+
index.h(Link, { href: "https://www.australianretirementtrust.com.au/tmd" }, "Target Market Determination"),
|
|
4101
|
+
' ',
|
|
4102
|
+
"before deciding to invest in or apply to become a member of this fund.")),
|
|
4103
|
+
abnInfo: name$2,
|
|
4104
|
+
abn: '60 905 115 063',
|
|
4105
|
+
footnoteTextOverride: Option.none,
|
|
4106
|
+
dtoPropName: 'australianRetirementTrust'
|
|
4035
4107
|
};
|
|
4036
|
-
|
|
4037
|
-
|
|
4038
|
-
|
|
4039
|
-
|
|
4040
|
-
|
|
4041
|
-
|
|
4042
|
-
|
|
4043
|
-
|
|
4108
|
+
|
|
4109
|
+
const name$3 = 'Aware Super';
|
|
4110
|
+
const fund$3 = {
|
|
4111
|
+
fundId: 'aware',
|
|
4112
|
+
name: name$3,
|
|
4113
|
+
logo: 'logo-aware.svg',
|
|
4114
|
+
route: SuperSelectionAppRoutes.PromotedFundJoinV1,
|
|
4115
|
+
features: [
|
|
4116
|
+
index.h("p", null, "Acting on climate change"),
|
|
4117
|
+
index.h("p", null, "All profits go to members"),
|
|
4118
|
+
index.h("p", null, "One of Australia\u2019s largest funds")
|
|
4119
|
+
],
|
|
4120
|
+
disclaimer: (index.h("p", null,
|
|
4121
|
+
"You should consider the",
|
|
4122
|
+
' ',
|
|
4123
|
+
index.h(Link, { href: "https://aware.com.au/member/forms-and-resources/pds/FSS", onClick: () => pdsViewedAsync(name$3) }, "Product Disclosure Statement"),
|
|
4124
|
+
' ',
|
|
4125
|
+
"before deciding to invest in or apply to become a member of this fund.")),
|
|
4126
|
+
abnInfo: `Aware Super Pty Ltd`,
|
|
4127
|
+
abn: '53 226 460 365',
|
|
4128
|
+
footnoteTextOverride: Option.none,
|
|
4129
|
+
dtoPropName: 'aware'
|
|
4044
4130
|
};
|
|
4045
|
-
|
|
4046
|
-
|
|
4047
|
-
|
|
4048
|
-
|
|
4049
|
-
|
|
4050
|
-
|
|
4051
|
-
|
|
4052
|
-
|
|
4131
|
+
|
|
4132
|
+
const name$4 = 'First Super';
|
|
4133
|
+
const fund$4 = {
|
|
4134
|
+
fundId: 'first-super',
|
|
4135
|
+
name: name$4,
|
|
4136
|
+
logo: 'logo-first.svg',
|
|
4137
|
+
route: SuperSelectionAppRoutes.PromotedFundJoinV2,
|
|
4138
|
+
features: [
|
|
4139
|
+
index.h("p", null, "Industry SuperFund that offers five investment options and default insurance"),
|
|
4140
|
+
index.h("p", null, "Strong long-term investment returns and superior customer service - members first"),
|
|
4141
|
+
index.h("p", null, "Established super fund \u2013 anyone can join including KiwiSaver members")
|
|
4142
|
+
],
|
|
4143
|
+
disclaimer: (index.h("div", null,
|
|
4144
|
+
index.h("p", null,
|
|
4145
|
+
"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",
|
|
4146
|
+
' ',
|
|
4147
|
+
index.h(Link, { onClick: () => pdsViewedAsync(name$4), href: "https://www.firstsuper.com.au/forms-tools/product-disclosure-statements/" }, "website"),
|
|
4148
|
+
". Past performance is not a reliable indicator of future performance."),
|
|
4149
|
+
index.h("br", null),
|
|
4150
|
+
index.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."))),
|
|
4151
|
+
footnoteTextOverride: Option.none,
|
|
4152
|
+
dtoPropName: 'firstSuper'
|
|
4053
4153
|
};
|
|
4054
|
-
|
|
4055
|
-
|
|
4056
|
-
|
|
4057
|
-
|
|
4058
|
-
|
|
4059
|
-
|
|
4060
|
-
|
|
4061
|
-
|
|
4154
|
+
|
|
4155
|
+
const name$5 = 'First Super';
|
|
4156
|
+
const fund$5 = {
|
|
4157
|
+
fundId: 'mercermychoice',
|
|
4158
|
+
name: name$5,
|
|
4159
|
+
logo: 'logo-mercer-mychoice.svg',
|
|
4160
|
+
route: SuperSelectionAppRoutes.PromotedFundJoinV2,
|
|
4161
|
+
features: [
|
|
4162
|
+
index.h("p", null, "Save more super with our low fees"),
|
|
4163
|
+
index.h("p", null, "Take control with 6 MyChoice investment options"),
|
|
4164
|
+
index.h("p", null, "Join 850,000 Australians who trust our global expertise")
|
|
4165
|
+
],
|
|
4166
|
+
disclaimer: (index.h("div", null,
|
|
4167
|
+
index.h("p", null,
|
|
4168
|
+
"You should consider the",
|
|
4169
|
+
' ',
|
|
4170
|
+
index.h(Link, { href: "https://www.mercersuper.com.au/campaign-page/mercer-mychoice", onClick: () => pdsViewedAsync(name$5) }, "Product Disclosure Statement"),
|
|
4171
|
+
' ',
|
|
4172
|
+
"and",
|
|
4173
|
+
' ',
|
|
4174
|
+
index.h(Link, { href: "https://www.mercersuper.com.au/documents/target-market-determinations" }, "Target Market Determination"),
|
|
4175
|
+
' ',
|
|
4176
|
+
"before deciding to invest in or apply to become a member of the fund."),
|
|
4177
|
+
index.h("br", null),
|
|
4178
|
+
index.h("p", null, "Issued by Mercer Superannuation (Australia) Limited (\u2018Mercer Super\u2019) ABN: 79 004 717 533"))),
|
|
4179
|
+
footnoteTextOverride: Option.some(PoweredByFlareFS),
|
|
4180
|
+
dtoPropName: 'mercerMyChoice'
|
|
4062
4181
|
};
|
|
4063
|
-
|
|
4064
|
-
|
|
4065
|
-
|
|
4066
|
-
|
|
4067
|
-
|
|
4068
|
-
|
|
4069
|
-
|
|
4070
|
-
|
|
4182
|
+
|
|
4183
|
+
const name$6 = 'Slate Super';
|
|
4184
|
+
const slateUsi = '32367272075001';
|
|
4185
|
+
const fund$6 = {
|
|
4186
|
+
fundId: 'slate',
|
|
4187
|
+
name: name$6,
|
|
4188
|
+
logo: 'logo-slate.png',
|
|
4189
|
+
route: SuperSelectionAppRoutes.SlateJoin,
|
|
4190
|
+
features: [
|
|
4191
|
+
index.h("p", null, "A lifestage investment strategy that evolves with you"),
|
|
4192
|
+
index.h("p", null, "Advanced mobile app with retirement forecast and smart features"),
|
|
4193
|
+
index.h("p", null, "Member advocates at Slate to assist with your account")
|
|
4194
|
+
],
|
|
4195
|
+
disclaimer: (index.h("p", { class: "small text-muted" },
|
|
4196
|
+
"You should consider the",
|
|
4197
|
+
' ',
|
|
4198
|
+
index.h(Link, { href: "https://slate.co/pds/?utm_source=flare&utm_medium=superselection", onClick: () => pdsViewedAsync(name$6, slateUsi) }, "Product Disclosure Statement"),
|
|
4199
|
+
' ',
|
|
4200
|
+
"and",
|
|
4201
|
+
' ',
|
|
4202
|
+
index.h(Link, { href: "https://slate.co/forms-and-documents/target-market-determination/" }, "Target Market Determination"),
|
|
4203
|
+
' ',
|
|
4204
|
+
"before deciding to invest in or apply to become a member of the fund.")),
|
|
4205
|
+
abnInfo: `Diversa Trustees Limited`,
|
|
4206
|
+
abn: '49 006 421 638',
|
|
4207
|
+
footnoteTextOverride: Option.none,
|
|
4208
|
+
dtoPropName: 'slate'
|
|
4071
4209
|
};
|
|
4072
|
-
|
|
4073
|
-
|
|
4074
|
-
|
|
4075
|
-
|
|
4076
|
-
|
|
4077
|
-
|
|
4078
|
-
|
|
4079
|
-
|
|
4210
|
+
|
|
4211
|
+
const name$7 = 'Spirit Super';
|
|
4212
|
+
const fund$7 = {
|
|
4213
|
+
fundId: 'spirit',
|
|
4214
|
+
name: name$7,
|
|
4215
|
+
logo: 'logo-spirit.svg',
|
|
4216
|
+
route: SuperSelectionAppRoutes.PromotedFundJoinV2,
|
|
4217
|
+
features: [
|
|
4218
|
+
index.h("p", null, "Proud Industry SuperFund - all profits go back to members"),
|
|
4219
|
+
index.h("p", null,
|
|
4220
|
+
"Best customer experience in super",
|
|
4221
|
+
index.h("sup", { class: "text-tiny" }, "1"),
|
|
4222
|
+
" and best for value",
|
|
4223
|
+
index.h("sup", { class: "text-tiny" }, "2")),
|
|
4224
|
+
index.h("p", null,
|
|
4225
|
+
"Low fees",
|
|
4226
|
+
index.h("sup", { class: "text-tiny" }, "3"),
|
|
4227
|
+
" with a focus on strong returns and investing with impact in communities",
|
|
4228
|
+
index.h("sup", { class: "text-tiny" }, "4"))
|
|
4229
|
+
],
|
|
4230
|
+
featureSubText: (index.h("div", { class: "m-4 pt-2" },
|
|
4231
|
+
index.h("ol", { class: "list-decimal space-y-2" },
|
|
4232
|
+
index.h("li", null,
|
|
4233
|
+
index.h("span", null, "CSBA SenseCX Benchmark 2021-22")),
|
|
4234
|
+
index.h("li", null,
|
|
4235
|
+
index.h("span", null, "Awarded Best for Value in the WeMoney Superannuation Awards 2022")),
|
|
4236
|
+
index.h("li", null,
|
|
4237
|
+
index.h("span", null, "Just $67.60 + 0.15% pa admin fees, capped at $517.60")),
|
|
4238
|
+
index.h("li", null,
|
|
4239
|
+
index.h("span", null, "Rainmaker ESG Leader Rating 2022"))))),
|
|
4240
|
+
disclaimer: (index.h("p", null,
|
|
4241
|
+
"Past performance isn\u2019t a reliable indicator of future performance. Consider the PDS and TMD at",
|
|
4242
|
+
' ',
|
|
4243
|
+
index.h(Link, { href: "https://www.spiritsuper.com.au/pds", onClick: () => pdsViewedAsync(name$7) }, "www.spiritsuper.com.au/pds"),
|
|
4244
|
+
' ',
|
|
4245
|
+
"before making a decision. Issuer is Motor Trades Association of Australia Superannuation Fund Pty Ltd (AFSL 238 718, ABN 14 008 650 628), the trustee of Spirit Super (ABN 74 559 365 913). Advice is provided by Quadrant First Pty Ltd (ABN 78 102 167 877, AFSL 284443).")),
|
|
4246
|
+
footnoteTextOverride: Option.none,
|
|
4247
|
+
dtoPropName: 'spirit'
|
|
4080
4248
|
};
|
|
4081
|
-
|
|
4082
|
-
|
|
4083
|
-
|
|
4084
|
-
|
|
4085
|
-
|
|
4086
|
-
|
|
4087
|
-
|
|
4088
|
-
|
|
4089
|
-
|
|
4249
|
+
|
|
4250
|
+
const name$8 = 'Virgin Money Super';
|
|
4251
|
+
const fund$8 = {
|
|
4252
|
+
fundId: 'virgin',
|
|
4253
|
+
name: name$8,
|
|
4254
|
+
logo: 'logo-virgin.svg',
|
|
4255
|
+
route: SuperSelectionAppRoutes.PromotedFundJoinV2,
|
|
4256
|
+
features: [
|
|
4257
|
+
index.h("p", null,
|
|
4258
|
+
"Returns above industry and retail super fund medians over the past 5 years",
|
|
4259
|
+
index.h("sup", { class: "text-tiny" }, "1")),
|
|
4260
|
+
index.h("p", null, "One of the lowest fees in the market"),
|
|
4261
|
+
index.h("p", null,
|
|
4262
|
+
"Virgin Money rewards you with Velocity Points on your contributions",
|
|
4263
|
+
index.h("sup", { class: "text-tiny" }, "2"))
|
|
4264
|
+
],
|
|
4265
|
+
featureSubText: (index.h("div", { class: "m-4 pt-2" },
|
|
4266
|
+
index.h("ol", { class: "list-decimal space-y-2" },
|
|
4267
|
+
index.h("li", null,
|
|
4268
|
+
index.h("span", null, "Past performance is not a reliable indicator of future performance. Source: SuperRatings Fund Crediting Rate Survey April 2022.")),
|
|
4269
|
+
index.h("li", null,
|
|
4270
|
+
index.h("span", null,
|
|
4271
|
+
index.h(Link, { className: "underline hover:text-gray-600", href: "https://virginmoney.com.au/superannuation/forms-and-key-information/key-documents" }, "Eligibility and T&Cs apply")))))),
|
|
4272
|
+
disclaimer: (index.h("p", null,
|
|
4273
|
+
"Prepared by Virgin Money Financial Services Pty Ltd ABN 51 113 285 395 AFSL 286869 (\u2018Virgin Money\u2019). Virgin Money Super is a plan in the Mercer Super Trust ABN 19 905 422 981. Virgin Money Super is issued by Mercer Superannuation (Australia) Limited (MSAL) ABN 79 004 717 533 AFSL 235906 as trustee of the Mercer Super Trust. Consider the PDS and TMD at",
|
|
4274
|
+
' ',
|
|
4275
|
+
index.h(Link, { href: "https://virginmoney.com.au/superannuation/", onClick: () => pdsViewedAsync(name$8) }, "www.virginmoney.com.au"),
|
|
4276
|
+
' ',
|
|
4277
|
+
"before making a decision")),
|
|
4278
|
+
footnoteTextOverride: Option.some(PoweredByFlareFS),
|
|
4279
|
+
dtoPropName: 'virgin'
|
|
4090
4280
|
};
|
|
4281
|
+
|
|
4091
4282
|
const fundsById = {
|
|
4092
|
-
[
|
|
4093
|
-
[
|
|
4094
|
-
[
|
|
4095
|
-
[
|
|
4096
|
-
[
|
|
4097
|
-
[
|
|
4098
|
-
[
|
|
4099
|
-
[
|
|
4100
|
-
[
|
|
4283
|
+
[fund$6.fundId]: fund$6,
|
|
4284
|
+
[fund$2.fundId]: fund$2,
|
|
4285
|
+
[fund$3.fundId]: fund$3,
|
|
4286
|
+
[fund.fundId]: fund,
|
|
4287
|
+
[fund$1.fundId]: fund$1,
|
|
4288
|
+
[fund$8.fundId]: fund$8,
|
|
4289
|
+
[fund$7.fundId]: fund$7,
|
|
4290
|
+
[fund$4.fundId]: fund$4,
|
|
4291
|
+
[fund$5.fundId]: fund$5
|
|
4101
4292
|
};
|
|
4293
|
+
const allPromotedFunds = Object.values(fundsById);
|
|
4102
4294
|
const getFundByDtoPropName = (dtoPropName) => {
|
|
4103
|
-
const fund =
|
|
4295
|
+
const fund = allPromotedFunds.find((f) => f.dtoPropName == dtoPropName);
|
|
4104
4296
|
return fund ? some(fund) : none;
|
|
4105
4297
|
};
|
|
4106
|
-
const getFundNameByFundId = (fundId) => fundsById[fundId] ? some(fundsById[fundId].
|
|
4107
|
-
const getFooterTextOverrideByFundId = (fundId) => { var _a, _b; return (_b = (_a = fundsById[fundId]) === null || _a === void 0 ? void 0 : _a.
|
|
4108
|
-
const getFundUsiByFundId = (fundId) => fundId ==
|
|
4109
|
-
const getLogoSrcByFundId = (fundId) => fundsById[fundId] ? some(index.getAssetPath(`assets/${fundsById[fundId].
|
|
4298
|
+
const getFundNameByFundId = (fundId) => fundsById[fundId] != undefined ? some(fundsById[fundId].name) : none;
|
|
4299
|
+
const getFooterTextOverrideByFundId = (fundId) => { var _a, _b; return (_b = (_a = fundsById[fundId]) === null || _a === void 0 ? void 0 : _a.footnoteTextOverride) !== null && _b !== void 0 ? _b : none; };
|
|
4300
|
+
const getFundUsiByFundId = (fundId) => fundId == fund$6.fundId ? some(slateUsi) : none;
|
|
4301
|
+
const getLogoSrcByFundId = (fundId) => fundsById[fundId] != undefined ? some(index.getAssetPath(`assets/${fundsById[fundId].logo}`)) : none;
|
|
4110
4302
|
|
|
4111
4303
|
function getPromotedFundUsi(dto) {
|
|
4112
4304
|
if ('slate' in dto) {
|
|
@@ -4226,8 +4418,8 @@ class ExistingFundService {
|
|
|
4226
4418
|
return none;
|
|
4227
4419
|
return some({
|
|
4228
4420
|
type: 'Promoted Fund',
|
|
4229
|
-
id: fund.value.
|
|
4230
|
-
name: fund.value.
|
|
4421
|
+
id: fund.value.fundId,
|
|
4422
|
+
name: fund.value.name,
|
|
4231
4423
|
usi: usi,
|
|
4232
4424
|
valid: 'Active',
|
|
4233
4425
|
memberNumber: memberNumber,
|
|
@@ -4522,6 +4714,12 @@ const MyOwnFundInputs = class {
|
|
|
4522
4714
|
}
|
|
4523
4715
|
}
|
|
4524
4716
|
};
|
|
4717
|
+
if (isSome(this.myOwnFundForm.fundUsi) && isSome(this.myOwnFundForm.fundName)) {
|
|
4718
|
+
this.selectedOption = {
|
|
4719
|
+
label: this.myOwnFundForm.fundName.value,
|
|
4720
|
+
value: this.myOwnFundForm.fundUsi.value
|
|
4721
|
+
};
|
|
4722
|
+
}
|
|
4525
4723
|
}
|
|
4526
4724
|
render() {
|
|
4527
4725
|
return (index.h("div", null, index.h("div", null, index.h("label", { class: "text-sm font-medium text-gray-700" }, "Fund name"), index.h("div", { class: "mt-1" }, index.h("sss-dropdown-async", { searchFunction: this.searchFundsAsync, minSearchStringLength: this.MIN_SEARCH_STRING_LENGTH, required: true, requiredValidationMessage: "Select a fund", placeholder: `Type to search by name or USI...`, value: this.selectedOption, onValueChanged: (ev) => {
|
|
@@ -5285,7 +5483,7 @@ class SlateIFrameBuilder {
|
|
|
5285
5483
|
if (data.memberNumber) {
|
|
5286
5484
|
navigationService.navigateInternallyToStandardChoice({
|
|
5287
5485
|
history,
|
|
5288
|
-
fundName:
|
|
5486
|
+
fundName: fund$6.name,
|
|
5289
5487
|
handleSubmitFn: (standardChoiceFormSignature) => slateChoiceApi.submitSlateChoiceAsync({
|
|
5290
5488
|
memberNumber: data.memberNumber,
|
|
5291
5489
|
memberFirstName: data.memberFirstName,
|
|
@@ -5294,7 +5492,7 @@ class SlateIFrameBuilder {
|
|
|
5294
5492
|
shownFunds: superSelectionAppService.promotedFunds,
|
|
5295
5493
|
defaultFundUsiSet: Option.toUndefined(superSelectionAppService.defaultFundUsi)
|
|
5296
5494
|
}),
|
|
5297
|
-
promotedFundId:
|
|
5495
|
+
promotedFundId: fund$6.fundId
|
|
5298
5496
|
});
|
|
5299
5497
|
break;
|
|
5300
5498
|
}
|
|
@@ -5488,136 +5686,10 @@ const SuperChoicePage = class {
|
|
|
5488
5686
|
'rounded-br-lg': index$1 === this.promotedFunds.length - 1
|
|
5489
5687
|
} }, index.h("sss-super-choice-item-bottom", { disclaimer: fund.disclaimer, abnInfo: fund.abnInfo, abn: fund.abn, onJoinFundClicked: async () => this.handleJoinSuperClickAsync(fund) })))))), index.h("div", { class: "flex justify-center mt-8 sm:mt-12" }, index.h("div", { class: "pb-8 sm:pb-12 max-w-720 border-b" }, index.h("h5", { class: "font-bold sm:text-lg" }, "Or, choose another super fund:"), index.h("ul", { class: "list-disc list-outside ml-6 mt-3 mb-6 space-y-2 leading-6 text-sm sm:text-base" }, index.h("li", null, "Select this option if you'd like to use your current account with another super fund, your self-managed super fund, or your employer's default fund."), index.h("li", null, "If you are unsure of your current super fund details, you can find out at", ' ', index.h("a", { class: "text-primary-base font-medium hover:text-primary-hover", target: "_blank", href: navigationService.toExternalUrl(mygovLink) }, mygovLinkDisplay)), index.h("li", null, "A full list of super funds can be viewed at", ' ', index.h("a", { class: "text-primary-base font-medium hover:text-primary-hover", target: "_blank", href: navigationService.toExternalUrl(superfundsLink) }, superfundsLinkDisplay))), index.h("stencil-route-link", { url: SuperSelectionAppRoutes.MyOwnFund }, index.h("sss-button", { fillWidthOnMobile: true }, "Choose another super fund")))), index.h("div", { class: "flex justify-center" }, index.h("div", { class: "pt-8 sm:pt-12 max-w-720" }, index.h("h5", { class: "font-semibold" }, "IMPORTANT INFORMATION:"), index.h("ul", { class: "list-disc list-outside ml-6 mt-3 space-y-2 text-sm leading-6" }, index.h("li", null, "The superannuation funds featured above are for your information only. The order, position and placement of content should not be interpreted as an opinion or recommendation (actual or implied) by Flare as to the suitability or appropriateness of any superannuation fund for you. In featuring these superannuation funds, Flare has not taken into account your objectives, financial situation or needs."), index.h("li", null, "This is not a comparison service. This page contains factual information only and does not constitute either general or personal advice about any financial products. We do not take into account your objectives, financial situation or needs. If you have questions or need help making a decision about your superannuation fund, you should speak to a licensed financial product advice provider."), index.h("li", null, "Flare, the technology partner you are accessing Flare via and your employer do not endorse or accept responsibility for any financial product advice or services provided by the promoters or trustees of the featured superannuation funds. Flare does not endorse or accept responsibility for any of the content shown about any of the featured superannuation funds."), index.h("li", null, "You should consider the relevant superannuation fund\u2019s PDS and TMD (if applicable) in deciding whether to apply to join the superannuation fund. Each of the superannuation funds featured above include a link to their PDS and TMD (if applicable) for your convenience. If you are considering joining another superannuation fund, you can typically find the PDS and TMD (if applicable) on that fund\u2019s website."), index.h("li", null, "You should be aware that, if you do choose one of the featured superannuation funds, Flare and it\u2019s associates will normally receive a fee for you doing so (this includes Simple Financial Choices Pty Ltd, a wholly owned subsidiary of Flare, which is a sub-promoter of Slate Super).")))))));
|
|
5490
5688
|
}
|
|
5491
|
-
allFunds() {
|
|
5492
|
-
const Link = (props, children) => {
|
|
5493
|
-
return (index.h("a", { class: props.className || 'font-medium underline hover:text-gray-600', target: "_blank", href: navigationService.toExternalUrl(props.href), onClick: props.onClick }, children));
|
|
5494
|
-
};
|
|
5495
|
-
return [
|
|
5496
|
-
{
|
|
5497
|
-
fundId: Slate.Id,
|
|
5498
|
-
name: Slate.Name,
|
|
5499
|
-
logo: Slate.Logo,
|
|
5500
|
-
route: SuperSelectionAppRoutes.SlateJoin,
|
|
5501
|
-
features: [
|
|
5502
|
-
index.h("p", null, "A lifestage investment strategy that evolves with you"),
|
|
5503
|
-
index.h("p", null, "Advanced mobile app with retirement forecast and smart features"),
|
|
5504
|
-
index.h("p", null, "Member advocates at Slate to assist with your account")
|
|
5505
|
-
],
|
|
5506
|
-
disclaimer: (index.h("p", { class: "small text-muted" }, "You should consider the", ' ', index.h(Link, { href: Slate.PdsUrl, onClick: () => this.pdsViewedAsync(Slate.Name, Slate.Usi) }, "Product Disclosure Statement"), ' ', "and", ' ', index.h(Link, { href: "https://slate.co/forms-and-documents/target-market-determination/" }, "Target Market Determination"), ' ', "before deciding to invest in or apply to become a member of the fund.")),
|
|
5507
|
-
abnInfo: `Diversa Trustees Limited`,
|
|
5508
|
-
abn: Slate.DiversaAbn
|
|
5509
|
-
},
|
|
5510
|
-
{
|
|
5511
|
-
fundId: AustralianRetirementTrust.Id,
|
|
5512
|
-
name: AustralianRetirementTrust.Name,
|
|
5513
|
-
logo: AustralianRetirementTrust.Logo,
|
|
5514
|
-
route: SuperSelectionAppRoutes.PromotedFundJoinV1,
|
|
5515
|
-
features: [
|
|
5516
|
-
index.h("p", null, "$200 billion in retirement savings"),
|
|
5517
|
-
index.h("p", null, "2+ million members"),
|
|
5518
|
-
index.h("p", null, "A focus on delivering strong, long\u2011term returns")
|
|
5519
|
-
],
|
|
5520
|
-
featureSubText: (index.h("span", null, "QSuper is now part of Australian Retirement Trust. If you have an existing QSuper account, you will continue to hold that account by selecting this option.")),
|
|
5521
|
-
disclaimer: (index.h("p", null, "You should consider the", ' ', index.h(Link, { href: AustralianRetirementTrust.PdsUrl, onClick: () => this.pdsViewedAsync(AustralianRetirementTrust.Name) }, "Product Disclosure Statement"), ' ', "and", ' ', index.h(Link, { href: "https://www.australianretirementtrust.com.au/tmd" }, "Target Market Determination"), ' ', "before deciding to invest in or apply to become a member of this fund.")),
|
|
5522
|
-
abnInfo: `Australian Retirement Trust`,
|
|
5523
|
-
abn: AustralianRetirementTrust.Abn
|
|
5524
|
-
},
|
|
5525
|
-
{
|
|
5526
|
-
fundId: Aware.Id,
|
|
5527
|
-
name: Aware.Name,
|
|
5528
|
-
logo: Aware.Logo,
|
|
5529
|
-
route: SuperSelectionAppRoutes.PromotedFundJoinV1,
|
|
5530
|
-
features: [
|
|
5531
|
-
index.h("p", null, "Acting on climate change"),
|
|
5532
|
-
index.h("p", null, "All profits go to members"),
|
|
5533
|
-
index.h("p", null, "One of Australia\u2019s largest funds")
|
|
5534
|
-
],
|
|
5535
|
-
disclaimer: (index.h("p", null, "You should consider the", ' ', index.h(Link, { href: Aware.PdsUrl, onClick: () => this.pdsViewedAsync(Aware.Name) }, "Product Disclosure Statement"), ' ', "before deciding to invest in or apply to become a member of this fund.")),
|
|
5536
|
-
abnInfo: `Aware Super Pty Ltd`,
|
|
5537
|
-
abn: Aware.Abn
|
|
5538
|
-
},
|
|
5539
|
-
{
|
|
5540
|
-
fundId: Active.Id,
|
|
5541
|
-
name: Active.Name,
|
|
5542
|
-
logo: Active.Logo,
|
|
5543
|
-
route: SuperSelectionAppRoutes.PromotedFundJoinV1,
|
|
5544
|
-
features: [
|
|
5545
|
-
index.h("p", null, "Winner of Canstar's 2023 Outstanding Value \u2013 Superannuation Award considering investment performance, fees and product features*"),
|
|
5546
|
-
index.h("p", null, "Recognised as a leader in responsible investment"),
|
|
5547
|
-
index.h("p", null, "Calls answered in 20 seconds (average over 5 years)")
|
|
5548
|
-
],
|
|
5549
|
-
featureSubText: (index.h("span", null, "*Based on a comparison of the Active Super Accumulation Scheme held by those aged 20-69 years and balances between $30,000 and $1.5 million.")),
|
|
5550
|
-
disclaimer: (index.h("p", null, "Issued by LGSS Pty Limited as trustee for Local Government Super (Active Super ABN:28 901 371 321). Consider the PDS and TMD at", ' ', index.h(Link, { onClick: () => this.pdsViewedAsync(Active.Name), href: Active.PdsUrl }, "activesuper.com.au"), ' ', "before making a decision."))
|
|
5551
|
-
},
|
|
5552
|
-
{
|
|
5553
|
-
fundId: AustralianEthical.Id,
|
|
5554
|
-
name: AustralianEthical.Name,
|
|
5555
|
-
logo: AustralianEthical.Logo,
|
|
5556
|
-
route: SuperSelectionAppRoutes.PromotedFundJoinV2,
|
|
5557
|
-
features: [
|
|
5558
|
-
index.h("p", null, "Fastest growing super fund in Australia", index.h("sup", { class: "text-tiny" }, "1")),
|
|
5559
|
-
index.h("p", null, "Nil investments in fossil fuel companies", index.h("sup", { class: "text-tiny" }, "2")),
|
|
5560
|
-
index.h("p", null, "Competitive returns")
|
|
5561
|
-
],
|
|
5562
|
-
featureSubText: (index.h("ol", { class: "list-decimal list-outside ml-3" }, index.h("li", null, "Source: KPMG Super Insights Report 2022."), index.h("li", null, "All our options go through positive and negative ethical screening in accordance with the Australian Ethical Charter (in place since 1986)."))),
|
|
5563
|
-
disclaimer: (index.h("p", null, "Issued by Australian Ethical Superannuation Pty Ltd (ABN 43 079 259 733, RSE L0001441, AFSL 526055). Please consider the", ' ', index.h(Link, { href: "https://www.australianethical.com.au/globalassets/pdf-files/forms--pds/superpension/important-information/ae-financial-services-guide_sec.pdf" }, "Financial Services Guide"), ", the", ' ', index.h(Link, { href: AustralianEthical.PdsUrl, onClick: () => this.pdsViewedAsync(AustralianEthical.Name) }, "Product Disclosure Statement"), ' ', "and", ' ', index.h(Link, { href: AustralianEthical.PdsUrl, onClick: () => this.pdsViewedAsync(AustralianEthical.Name) }, "Target Market Determination"), ' ', "available on our", ' ', index.h(Link, { href: AustralianEthical.PdsUrl, onClick: () => this.pdsViewedAsync(AustralianEthical.Name) }, "website"), "."))
|
|
5564
|
-
},
|
|
5565
|
-
{
|
|
5566
|
-
fundId: Virgin.Id,
|
|
5567
|
-
name: Virgin.Name,
|
|
5568
|
-
logo: Virgin.Logo,
|
|
5569
|
-
route: SuperSelectionAppRoutes.PromotedFundJoinV2,
|
|
5570
|
-
features: [
|
|
5571
|
-
index.h("p", null, "Returns above industry and retail super fund medians over the past 5 years", index.h("sup", { class: "text-tiny" }, "1")),
|
|
5572
|
-
index.h("p", null, "One of the lowest fees in the market"),
|
|
5573
|
-
index.h("p", null, "Virgin Money rewards you with Velocity Points on your contributions", index.h("sup", { class: "text-tiny" }, "2"))
|
|
5574
|
-
],
|
|
5575
|
-
featureSubText: (index.h("div", { class: "m-4 pt-2" }, index.h("ol", { class: "list-decimal space-y-2" }, index.h("li", null, index.h("span", null, "Past performance is not a reliable indicator of future performance. Source: SuperRatings Fund Crediting Rate Survey April 2022.")), index.h("li", null, index.h("span", null, index.h(Link, { className: "underline hover:text-gray-600", href: "https://virginmoney.com.au/superannuation/forms-and-key-information/key-documents" }, "Eligibility and T&Cs apply")))))),
|
|
5576
|
-
disclaimer: (index.h("p", null, "Prepared by Virgin Money Financial Services Pty Ltd ABN 51 113 285 395 AFSL 286869 (\u2018Virgin Money\u2019). Virgin Money Super is a plan in the Mercer Super Trust ABN 19 905 422 981. Virgin Money Super is issued by Mercer Superannuation (Australia) Limited (MSAL) ABN 79 004 717 533 AFSL 235906 as trustee of the Mercer Super Trust. Consider the PDS and TMD at", ' ', index.h(Link, { href: Virgin.PdsUrl, onClick: () => this.pdsViewedAsync(Virgin.Name) }, "www.virginmoney.com.au"), ' ', "before making a decision"))
|
|
5577
|
-
},
|
|
5578
|
-
{
|
|
5579
|
-
fundId: Spirit.Id,
|
|
5580
|
-
name: Spirit.Name,
|
|
5581
|
-
logo: Spirit.Logo,
|
|
5582
|
-
route: SuperSelectionAppRoutes.PromotedFundJoinV2,
|
|
5583
|
-
features: [
|
|
5584
|
-
index.h("p", null, "Proud Industry SuperFund - all profits go back to members"),
|
|
5585
|
-
index.h("p", null, "Best customer experience in super", index.h("sup", { class: "text-tiny" }, "1"), " and best for value", index.h("sup", { class: "text-tiny" }, "2")),
|
|
5586
|
-
index.h("p", null, "Low fees", index.h("sup", { class: "text-tiny" }, "3"), " with a focus on strong returns and investing with impact in communities", index.h("sup", { class: "text-tiny" }, "4"))
|
|
5587
|
-
],
|
|
5588
|
-
featureSubText: (index.h("div", { class: "m-4 pt-2" }, index.h("ol", { class: "list-decimal space-y-2" }, index.h("li", null, index.h("span", null, "CSBA SenseCX Benchmark 2021-22")), index.h("li", null, index.h("span", null, "Awarded Best for Value in the WeMoney Superannuation Awards 2022")), index.h("li", null, index.h("span", null, "Just $67.60 + 0.15% pa admin fees, capped at $517.60")), index.h("li", null, index.h("span", null, "Rainmaker ESG Leader Rating 2022"))))),
|
|
5589
|
-
disclaimer: (index.h("p", null, "Past performance isn\u2019t a reliable indicator of future performance. Consider the PDS and TMD at", ' ', index.h(Link, { href: Spirit.PdsUrl, onClick: () => this.pdsViewedAsync(Spirit.Name) }, "www.spiritsuper.com.au/pds"), ' ', "before making a decision. Issuer is Motor Trades Association of Australia Superannuation Fund Pty Ltd (AFSL 238 718, ABN 14 008 650 628), the trustee of Spirit Super (ABN 74 559 365 913). Advice is provided by Quadrant First Pty Ltd (ABN 78 102 167 877, AFSL 284443)."))
|
|
5590
|
-
},
|
|
5591
|
-
{
|
|
5592
|
-
fundId: First.Id,
|
|
5593
|
-
name: First.Name,
|
|
5594
|
-
logo: First.Logo,
|
|
5595
|
-
route: SuperSelectionAppRoutes.PromotedFundJoinV2,
|
|
5596
|
-
features: [
|
|
5597
|
-
index.h("p", null, "Industry SuperFund that offers five investment options and default insurance"),
|
|
5598
|
-
index.h("p", null, "Strong long-term investment returns and superior customer service - members first"),
|
|
5599
|
-
index.h("p", null, "Established super fund \u2013 anyone can join including KiwiSaver members")
|
|
5600
|
-
],
|
|
5601
|
-
disclaimer: (index.h("div", null, index.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", ' ', index.h(Link, { onClick: () => this.pdsViewedAsync(First.Name), href: First.PdsUrl }, "website"), ". Past performance is not a reliable indicator of future performance."), index.h("br", null), index.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.")))
|
|
5602
|
-
},
|
|
5603
|
-
{
|
|
5604
|
-
fundId: MercerMyChoice.Id,
|
|
5605
|
-
name: MercerMyChoice.Name,
|
|
5606
|
-
logo: MercerMyChoice.Logo,
|
|
5607
|
-
route: SuperSelectionAppRoutes.PromotedFundJoinV2,
|
|
5608
|
-
features: [
|
|
5609
|
-
index.h("p", null, "Save more super with our low fees"),
|
|
5610
|
-
index.h("p", null, "Take control with 6 MyChoice investment options"),
|
|
5611
|
-
index.h("p", null, "Join 850,000 Australians who trust our global expertise")
|
|
5612
|
-
],
|
|
5613
|
-
disclaimer: (index.h("div", null, index.h("p", null, "You should consider the", ' ', index.h(Link, { href: MercerMyChoice.PdsUrl, onClick: () => this.pdsViewedAsync(MercerMyChoice.Name) }, "Product Disclosure Statement"), ' ', "and ", index.h(Link, { href: MercerMyChoice.TmdUrl }, "Target Market Determination"), ' ', "before deciding to invest in or apply to become a member of the fund."), index.h("br", null), index.h("p", null, "Issued by Mercer Superannuation (Australia) Limited (\u2018Mercer Super\u2019) ABN:", ' ', MercerMyChoice.Abn)))
|
|
5614
|
-
}
|
|
5615
|
-
];
|
|
5616
|
-
}
|
|
5617
5689
|
getPromotedFunds() {
|
|
5618
5690
|
const fundTiles = [];
|
|
5619
5691
|
superSelectionAppService.promotedFunds.forEach((fundId) => {
|
|
5620
|
-
const fund =
|
|
5692
|
+
const fund = allPromotedFunds.find((fund) => fundId === fund.fundId);
|
|
5621
5693
|
if (fund !== undefined) {
|
|
5622
5694
|
fundTiles.push(fund);
|
|
5623
5695
|
}
|
|
@@ -5638,13 +5710,6 @@ const SuperChoicePage = class {
|
|
|
5638
5710
|
state$2.fundId = fund.fundId;
|
|
5639
5711
|
return navigationService.navigateInternally(this.history, fund.route);
|
|
5640
5712
|
}
|
|
5641
|
-
pdsViewedAsync(name, usi) {
|
|
5642
|
-
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
5643
|
-
fundUsi: usi,
|
|
5644
|
-
fundName: name,
|
|
5645
|
-
pageName: 'Panel Fund Page'
|
|
5646
|
-
});
|
|
5647
|
-
}
|
|
5648
5713
|
static get assetsDirs() { return ["assets"]; }
|
|
5649
5714
|
};
|
|
5650
5715
|
|