@flarehr/apollo-super-selection 3.67.64967 → 3.69.569
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/assets/logo-aus-eth.svg +31 -0
- package/dist/lib/apollo-super-selection/p-0f723eb4.system.js +1 -1
- package/dist/lib/apollo-super-selection/p-864258c2.system.entry.js +69 -0
- package/dist/lib/apollo-super-selection/p-95811486.entry.js +14 -0
- package/dist/lib/cjs/sss-button_30.cjs.entry.js +31 -20
- package/dist/lib/collection/apollo-super-selection.css +1 -1
- package/dist/lib/collection/components/super-selection-app/footer-section/footer-section.js +1 -1
- package/dist/lib/collection/components/super-selection-app/funds/constants.js +14 -8
- package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/logo-aus-eth.svg +31 -0
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +32 -11
- package/dist/lib/esm/sss-button_30.entry.js +31 -20
- package/dist/lib/esm-es5/sss-button_30.entry.js +1 -1
- package/dist/lib/types/components/super-selection-app/funds/constants.d.ts +6 -0
- package/package.json +1 -1
- package/dist/lib/apollo-super-selection/p-50566fcd.entry.js +0 -14
- package/dist/lib/apollo-super-selection/p-c6c1fd99.system.entry.js +0 -69
|
@@ -260,7 +260,7 @@ class TapSubscriber extends Subscriber {
|
|
|
260
260
|
}
|
|
261
261
|
}
|
|
262
262
|
|
|
263
|
-
const AppVersion = '3.
|
|
263
|
+
const AppVersion = '3.69.569';
|
|
264
264
|
|
|
265
265
|
// -------------------------------------------------------------------------------------
|
|
266
266
|
// guards
|
|
@@ -3979,6 +3979,7 @@ SelectInputAsync.style = dropdownAsyncCss;
|
|
|
3979
3979
|
const Slate = {
|
|
3980
3980
|
Id: 'slate',
|
|
3981
3981
|
Name: 'Slate Super',
|
|
3982
|
+
Logo: 'logo-slate.png',
|
|
3982
3983
|
PdsUrl: 'https://slate.co/pds/?utm_source=flare&utm_medium=superselection',
|
|
3983
3984
|
Usi: '32367272075001',
|
|
3984
3985
|
DiversaAbn: '49 006 421 638'
|
|
@@ -3986,30 +3987,35 @@ const Slate = {
|
|
|
3986
3987
|
const AustralianRetirementTrust = {
|
|
3987
3988
|
Id: 'australian-retirement-trust',
|
|
3988
3989
|
Name: 'Australian Retirement Trust',
|
|
3990
|
+
Logo: 'logo-art.svg',
|
|
3989
3991
|
PdsUrl: 'https://www.australianretirementtrust.com.au/library/media/pdfs/pds/super-savings-product-disclosure-statement-and-membership-form.pdf',
|
|
3990
3992
|
Abn: '60 905 115 063'
|
|
3991
3993
|
};
|
|
3992
3994
|
const Aware = {
|
|
3993
3995
|
Id: 'aware',
|
|
3994
3996
|
Name: 'Aware Super',
|
|
3997
|
+
Logo: 'logo-aware.svg',
|
|
3995
3998
|
PdsUrl: 'https://aware.com.au/member/forms-and-resources/pds/FSS',
|
|
3996
3999
|
Abn: '53 226 460 365'
|
|
3997
4000
|
};
|
|
3998
4001
|
const Active = {
|
|
3999
4002
|
Id: 'active',
|
|
4000
4003
|
Name: 'Active Super',
|
|
4004
|
+
Logo: 'logo-active.svg',
|
|
4001
4005
|
PdsUrl: 'https://www.activesuper.com.au/pds',
|
|
4002
4006
|
Abn: '28 901 371 321'
|
|
4003
4007
|
};
|
|
4004
4008
|
const AustralianEthical = {
|
|
4005
4009
|
Id: 'australian-ethical',
|
|
4006
4010
|
Name: 'Australian Ethical',
|
|
4007
|
-
|
|
4008
|
-
|
|
4011
|
+
Logo: 'logo-aus-eth.svg',
|
|
4012
|
+
PdsUrl: 'https://www.australianethical.com.au/super/pds-forms/',
|
|
4013
|
+
Abn: '43 079 259 733'
|
|
4009
4014
|
};
|
|
4010
4015
|
const Virgin = {
|
|
4011
4016
|
Id: 'virgin',
|
|
4012
4017
|
Name: 'Virgin Money Super',
|
|
4018
|
+
Logo: 'logo-virgin.svg',
|
|
4013
4019
|
PdsUrl: 'https://virginmoney.com.au/superannuation/',
|
|
4014
4020
|
Abn: '19 905 422 981'
|
|
4015
4021
|
};
|
|
@@ -4051,22 +4057,22 @@ const getLogoSrc = (id) => {
|
|
|
4051
4057
|
let logo = '';
|
|
4052
4058
|
switch (id) {
|
|
4053
4059
|
case Slate.Id:
|
|
4054
|
-
logo =
|
|
4060
|
+
logo = Slate.Logo;
|
|
4055
4061
|
break;
|
|
4056
4062
|
case AustralianRetirementTrust.Id:
|
|
4057
|
-
logo =
|
|
4063
|
+
logo = AustralianRetirementTrust.Logo;
|
|
4058
4064
|
break;
|
|
4059
4065
|
case Aware.Id:
|
|
4060
|
-
logo =
|
|
4066
|
+
logo = Aware.Logo;
|
|
4061
4067
|
break;
|
|
4062
4068
|
case Active.Id:
|
|
4063
|
-
logo =
|
|
4069
|
+
logo = Active.Logo;
|
|
4064
4070
|
break;
|
|
4065
4071
|
case AustralianEthical.Id:
|
|
4066
|
-
logo =
|
|
4072
|
+
logo = AustralianEthical.Logo;
|
|
4067
4073
|
break;
|
|
4068
4074
|
case Virgin.Id:
|
|
4069
|
-
logo =
|
|
4075
|
+
logo = Virgin.Logo;
|
|
4070
4076
|
break;
|
|
4071
4077
|
default:
|
|
4072
4078
|
return;
|
|
@@ -4348,7 +4354,7 @@ const FooterSection = class {
|
|
|
4348
4354
|
registerInstance(this, hostRef);
|
|
4349
4355
|
}
|
|
4350
4356
|
render() {
|
|
4351
|
-
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, "Powered by Flare"), h("p", { class: "block text-transparent
|
|
4357
|
+
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, "Powered by Flare"), 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."))));
|
|
4352
4358
|
}
|
|
4353
4359
|
};
|
|
4354
4360
|
|
|
@@ -5334,13 +5340,13 @@ const SuperChoicePage = class {
|
|
|
5334
5340
|
}
|
|
5335
5341
|
allFunds() {
|
|
5336
5342
|
const Link = (props, children) => {
|
|
5337
|
-
return (h("a", { class:
|
|
5343
|
+
return (h("a", { class: props.className || 'font-medium underline hover:text-gray-600', target: "_blank", href: navigationService.toExternalUrl(props.href), onClick: props.onClick }, children));
|
|
5338
5344
|
};
|
|
5339
5345
|
return [
|
|
5340
5346
|
{
|
|
5341
5347
|
fundId: Slate.Id,
|
|
5342
5348
|
name: Slate.Name,
|
|
5343
|
-
logo:
|
|
5349
|
+
logo: Slate.Logo,
|
|
5344
5350
|
route: SuperSelectionAppRoutes.SlateJoin,
|
|
5345
5351
|
features: [
|
|
5346
5352
|
h("p", null, "A lifestage investment strategy that evolves with you"),
|
|
@@ -5354,7 +5360,7 @@ const SuperChoicePage = class {
|
|
|
5354
5360
|
{
|
|
5355
5361
|
fundId: AustralianRetirementTrust.Id,
|
|
5356
5362
|
name: AustralianRetirementTrust.Name,
|
|
5357
|
-
logo:
|
|
5363
|
+
logo: AustralianRetirementTrust.Logo,
|
|
5358
5364
|
route: SuperSelectionAppRoutes.PromotedFundJoinV1,
|
|
5359
5365
|
features: [
|
|
5360
5366
|
h("p", null, "$200 billion in retirement savings"),
|
|
@@ -5369,7 +5375,7 @@ const SuperChoicePage = class {
|
|
|
5369
5375
|
{
|
|
5370
5376
|
fundId: Aware.Id,
|
|
5371
5377
|
name: Aware.Name,
|
|
5372
|
-
logo:
|
|
5378
|
+
logo: Aware.Logo,
|
|
5373
5379
|
route: SuperSelectionAppRoutes.PromotedFundJoinV1,
|
|
5374
5380
|
features: [
|
|
5375
5381
|
h("p", null, "Acting on climate change"),
|
|
@@ -5383,7 +5389,7 @@ const SuperChoicePage = class {
|
|
|
5383
5389
|
{
|
|
5384
5390
|
fundId: Active.Id,
|
|
5385
5391
|
name: Active.Name,
|
|
5386
|
-
logo:
|
|
5392
|
+
logo: Active.Logo,
|
|
5387
5393
|
route: SuperSelectionAppRoutes.PromotedFundJoinV1,
|
|
5388
5394
|
features: [
|
|
5389
5395
|
h("p", null, "One of Canstar's top-performing funds*"),
|
|
@@ -5396,22 +5402,27 @@ const SuperChoicePage = class {
|
|
|
5396
5402
|
{
|
|
5397
5403
|
fundId: AustralianEthical.Id,
|
|
5398
5404
|
name: AustralianEthical.Name,
|
|
5399
|
-
logo:
|
|
5405
|
+
logo: AustralianEthical.Logo,
|
|
5400
5406
|
route: SuperSelectionAppRoutes.PromotedFundJoinV2,
|
|
5401
|
-
features: [
|
|
5402
|
-
|
|
5407
|
+
features: [
|
|
5408
|
+
h("p", null, "Fastest growing super fund in Australia", h("sup", { class: "text-tiny" }, "1")),
|
|
5409
|
+
h("p", null, "Nil investments in fossil fuel companies", h("sup", { class: "text-tiny" }, "2")),
|
|
5410
|
+
h("p", null, "Competitive returns")
|
|
5411
|
+
],
|
|
5412
|
+
featureSubText: (h("ol", { class: "list-decimal list-outside ml-3" }, h("li", null, "Source: KPMG Super Insights Report 2022."), h("li", null, "All our options go through positive and negative ethical screening in accordance with the Australian Ethical Charter (in place since 1986)."))),
|
|
5413
|
+
disclaimer: (h("p", null, "Issued by Australian Ethical Superannuation Pty Ltd (ABN 43 079 259 733, RSE L0001441, AFSL 526055). Please consider the", ' ', 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", ' ', h(Link, { href: AustralianEthical.PdsUrl, onClick: () => this.pdsViewedAsync(AustralianEthical.Name) }, "Product Disclosure Statement"), ' ', "and", ' ', h(Link, { href: AustralianEthical.PdsUrl, onClick: () => this.pdsViewedAsync(AustralianEthical.Name) }, "Target Market Determination"), ' ', "available on our", ' ', h(Link, { href: AustralianEthical.PdsUrl, onClick: () => this.pdsViewedAsync(AustralianEthical.Name) }, "website"), "."))
|
|
5403
5414
|
},
|
|
5404
5415
|
{
|
|
5405
5416
|
fundId: Virgin.Id,
|
|
5406
5417
|
name: Virgin.Name,
|
|
5407
|
-
logo:
|
|
5418
|
+
logo: Virgin.Logo,
|
|
5408
5419
|
route: SuperSelectionAppRoutes.PromotedFundJoinV2,
|
|
5409
5420
|
features: [
|
|
5410
5421
|
h("p", null, "Returns above industry and retail super fund medians over the past 5 years"),
|
|
5411
5422
|
h("p", null, "One of the lowest fees in the market"),
|
|
5412
5423
|
h("p", null, "Virgin Money rewards you with Velocity Points on your contributions", h("sup", { class: "text-tiny" }, "1"))
|
|
5413
5424
|
],
|
|
5414
|
-
featureSubText: (h("span", null, h("sup", { class: "text-tiny" }, "1"), "Eligibility and T&Cs apply")),
|
|
5425
|
+
featureSubText: (h("span", null, h("sup", { class: "text-tiny" }, "1"), 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"))),
|
|
5415
5426
|
disclaimer: (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", ' ', h(Link, { href: Virgin.PdsUrl, onClick: () => this.pdsViewedAsync(Virgin.Name) }, "www.virginmoney.com.au"), ' ', "before making a decision"))
|
|
5416
5427
|
}
|
|
5417
5428
|
];
|