@flarehr/apollo-super-selection 3.64.64582 → 3.65.64780
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-virgin.svg +8 -0
- package/dist/lib/apollo-super-selection/p-0f723eb4.system.js +1 -1
- package/dist/lib/apollo-super-selection/{p-1c2481c7.entry.js → p-8d47d8e3.entry.js} +4 -4
- package/dist/lib/apollo-super-selection/{p-5139d22d.system.entry.js → p-ac2c3503.system.entry.js} +1 -1
- package/dist/lib/cjs/sss-button_30.cjs.entry.js +15 -8
- package/dist/lib/collection/components/super-selection-app/funds/constants.js +2 -2
- package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/logo-virgin.svg +8 -0
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +14 -7
- package/dist/lib/esm/sss-button_30.entry.js +15 -8
- package/dist/lib/esm-es5/sss-button_30.entry.js +1 -1
- package/package.json +1 -1
package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js
CHANGED
|
@@ -200,19 +200,26 @@ export class SuperChoicePage {
|
|
|
200
200
|
{
|
|
201
201
|
fundId: constants.Virgin.Id,
|
|
202
202
|
name: constants.Virgin.Name,
|
|
203
|
-
logo: 'logo-
|
|
203
|
+
logo: 'logo-virgin.svg',
|
|
204
204
|
route: SuperSelectionAppRoutes.PromotedFundJoinV2,
|
|
205
205
|
features: [
|
|
206
|
-
{
|
|
207
|
-
|
|
208
|
-
|
|
206
|
+
{
|
|
207
|
+
order: 1,
|
|
208
|
+
value: 'Returns above industry and retail super fund medians over the past 5 years'
|
|
209
|
+
},
|
|
210
|
+
{ order: 2, value: 'One of the lowest fees in the market' },
|
|
211
|
+
{
|
|
212
|
+
order: 3,
|
|
213
|
+
value: 'Virgin Money rewards you with Velocity Points on your contributions*'
|
|
214
|
+
}
|
|
209
215
|
],
|
|
216
|
+
featureSubText: '* Eligibility and T&Cs apply',
|
|
210
217
|
disclaimer: (h("p", null,
|
|
211
|
-
"
|
|
218
|
+
"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",
|
|
212
219
|
' ',
|
|
213
|
-
h(Link, { href: constants.Virgin.PdsUrl, onClick: () => this.pdsViewedAsync(constants.Virgin.Name) }, "
|
|
220
|
+
h(Link, { href: constants.Virgin.PdsUrl, onClick: () => this.pdsViewedAsync(constants.Virgin.Name) }, "www.virginmoney.com.au"),
|
|
214
221
|
' ',
|
|
215
|
-
"before
|
|
222
|
+
"before making a decision"))
|
|
216
223
|
}
|
|
217
224
|
];
|
|
218
225
|
}
|
|
@@ -260,7 +260,7 @@ class TapSubscriber extends Subscriber {
|
|
|
260
260
|
}
|
|
261
261
|
}
|
|
262
262
|
|
|
263
|
-
const AppVersion = '3.
|
|
263
|
+
const AppVersion = '3.65.64780';
|
|
264
264
|
|
|
265
265
|
// -------------------------------------------------------------------------------------
|
|
266
266
|
// guards
|
|
@@ -4001,7 +4001,7 @@ const AustralianEthical = {
|
|
|
4001
4001
|
const Virgin = {
|
|
4002
4002
|
Id: 'virgin',
|
|
4003
4003
|
Name: 'Virgin Money Super',
|
|
4004
|
-
PdsUrl: 'https://virginmoney.com.au/superannuation/
|
|
4004
|
+
PdsUrl: 'https://virginmoney.com.au/superannuation/',
|
|
4005
4005
|
Abn: '19 905 422 981'
|
|
4006
4006
|
};
|
|
4007
4007
|
const PromotedFundIdList = [
|
|
@@ -4057,7 +4057,7 @@ const getLogoSrc = (id) => {
|
|
|
4057
4057
|
logo = 'logo-slate.png';
|
|
4058
4058
|
break;
|
|
4059
4059
|
case Virgin.Id:
|
|
4060
|
-
logo = 'logo-
|
|
4060
|
+
logo = 'logo-virgin.svg';
|
|
4061
4061
|
break;
|
|
4062
4062
|
default:
|
|
4063
4063
|
return;
|
|
@@ -5398,14 +5398,21 @@ const SuperChoicePage = class {
|
|
|
5398
5398
|
{
|
|
5399
5399
|
fundId: Virgin.Id,
|
|
5400
5400
|
name: Virgin.Name,
|
|
5401
|
-
logo: 'logo-
|
|
5401
|
+
logo: 'logo-virgin.svg',
|
|
5402
5402
|
route: SuperSelectionAppRoutes.PromotedFundJoinV2,
|
|
5403
5403
|
features: [
|
|
5404
|
-
{
|
|
5405
|
-
|
|
5406
|
-
|
|
5404
|
+
{
|
|
5405
|
+
order: 1,
|
|
5406
|
+
value: 'Returns above industry and retail super fund medians over the past 5 years'
|
|
5407
|
+
},
|
|
5408
|
+
{ order: 2, value: 'One of the lowest fees in the market' },
|
|
5409
|
+
{
|
|
5410
|
+
order: 3,
|
|
5411
|
+
value: 'Virgin Money rewards you with Velocity Points on your contributions*'
|
|
5412
|
+
}
|
|
5407
5413
|
],
|
|
5408
|
-
|
|
5414
|
+
featureSubText: '* Eligibility and T&Cs apply',
|
|
5415
|
+
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"))
|
|
5409
5416
|
}
|
|
5410
5417
|
];
|
|
5411
5418
|
}
|