@flarehr/apollo-super-selection 3.25.54167 → 3.29.54500

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.
Files changed (34) hide show
  1. package/dist/lib/apollo-super-selection/apollo-super-selection.esm.js +1 -1
  2. package/dist/lib/apollo-super-selection/assets/logo-art.svg +7 -0
  3. package/dist/lib/apollo-super-selection/assets/logo-aware.svg +1 -0
  4. package/dist/lib/apollo-super-selection/p-788d2ef9.entry.js +14 -0
  5. package/dist/lib/apollo-super-selection/p-d82b00ed.system.js +1 -1
  6. package/dist/lib/apollo-super-selection/p-f1b5530d.system.entry.js +69 -0
  7. package/dist/lib/cjs/apollo-super-selection.cjs.js +1 -1
  8. package/dist/lib/cjs/fl-button_46.cjs.entry.js +121 -98
  9. package/dist/lib/cjs/loader.cjs.js +1 -1
  10. package/dist/lib/collection/components/super-selection-app/funds/constants.js +37 -21
  11. package/dist/lib/collection/components/super-selection-app/funds/qsuper/qsuper-confirm-header.js +3 -4
  12. package/dist/lib/collection/components/super-selection-app/funds/qsuper/qsuper-confirm-selection/qsuper-confirm-selection.js +2 -3
  13. package/dist/lib/collection/components/super-selection-app/funds/qsuper/qsuper-consent/qsuper-consent.js +2 -3
  14. package/dist/lib/collection/components/super-selection-app/funds/qsuper/qsuper-insurance-opt-in.js +7 -8
  15. package/dist/lib/collection/components/super-selection-app/funds/qsuper/qsuper-layout.js +5 -5
  16. package/dist/lib/collection/components/super-selection-app/services/selected-super-choice-info.service.js +3 -6
  17. package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/logo-art.svg +7 -0
  18. package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/logo-aware.svg +1 -0
  19. package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-item.js +5 -23
  20. package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.css +13 -2
  21. package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +68 -43
  22. package/dist/lib/esm/apollo-super-selection.js +1 -1
  23. package/dist/lib/esm/fl-button_46.entry.js +121 -98
  24. package/dist/lib/esm/loader.js +1 -1
  25. package/dist/lib/esm-es5/apollo-super-selection.js +1 -1
  26. package/dist/lib/esm-es5/fl-button_46.entry.js +3 -3
  27. package/dist/lib/esm-es5/loader.js +1 -1
  28. package/dist/lib/types/components/super-selection-app/api/super-selection-events.model.d.ts +2 -8
  29. package/dist/lib/types/components/super-selection-app/funds/constants.d.ts +35 -21
  30. package/dist/lib/types/components/super-selection-app/super-choice-page/super-choice-item.d.ts +1 -2
  31. package/dist/lib/types/components.d.ts +1 -3
  32. package/package.json +1 -1
  33. package/dist/lib/apollo-super-selection/p-02d06d31.entry.js +0 -14
  34. package/dist/lib/apollo-super-selection/p-21609443.system.entry.js +0 -69
@@ -15,10 +15,9 @@ export class QsuperInsuranceOptIn {
15
15
  }
16
16
  componentDidLoad() {
17
17
  return this.eventTrackingService.TrackFinancialProductViewedAsync({
18
- fundUsi: constants.QSuperFundUsi,
19
- fundName: constants.QSuperFundName,
20
- fundNameAlt: constants.QSuperAltFundName,
21
- financialProduct: constants.QSuperInsuranceProductName
18
+ fundUsi: constants.QSuper.Usi,
19
+ fundName: constants.QSuper.Name,
20
+ financialProduct: constants.QSuper.InsuranceName
22
21
  });
23
22
  }
24
23
  componentWillLoad() {
@@ -61,18 +60,18 @@ export class QsuperInsuranceOptIn {
61
60
  h("p", { class: "confirm-item-text\u00A0mb-0" }, "I acknowledge that my personal information will be shared with QSuper as part of their application process.")))))));
62
61
  }
63
62
  ensureInsuranceEligibility() {
64
- if (superSelectionAppService.superBuyer.userProfile.yearsOfAge < constants.QSuperMinAge) {
63
+ if (superSelectionAppService.superBuyer.userProfile.yearsOfAge < constants.QSuper.MinAge) {
65
64
  return;
66
65
  }
67
- else if (superSelectionAppService.superBuyer.userProfile.yearsOfAge < constants.QSuperMinInsuranceAge) {
68
- this.showIneligibleNotification(`You may still apply for QSuper, however people under the age of ${constants.QSuperMinInsuranceAge} are not able to apply for insurance.`);
66
+ else if (superSelectionAppService.superBuyer.userProfile.yearsOfAge < constants.QSuper.MinInsuranceAge) {
67
+ this.showIneligibleNotification(`You may still apply for QSuper, however people under the age of ${constants.QSuper.MinInsuranceAge} are not able to apply for insurance.`);
69
68
  return;
70
69
  }
71
70
  this.isEligibleForInsurance = true;
72
71
  }
73
72
  showIneligibleNotification(description) {
74
73
  notificationsService.showInfoNotification({
75
- title: "Unable to apply for Insurance",
74
+ title: 'Unable to apply for Insurance',
76
75
  description
77
76
  });
78
77
  }
@@ -13,11 +13,11 @@ export class QsuperLayout {
13
13
  this.isEligible = false;
14
14
  this.canContinue = () => this.isEligible && qSuperState.continueAllowed;
15
15
  this.ensureEligibility = () => {
16
- if (superSelectionAppService.superBuyer.userProfile.yearsOfAge < constants.QSuperMinAge) {
17
- this.showIneligibleNotification(`People under the age of ${constants.QSuperMinAge} are not able to open accounts.`);
16
+ if (superSelectionAppService.superBuyer.userProfile.yearsOfAge < constants.QSuper.MinAge) {
17
+ this.showIneligibleNotification(`People under the age of ${constants.QSuper.MinAge} are not able to open accounts.`);
18
18
  }
19
- else if (superSelectionAppService.superBuyer.userProfile.yearsOfAge > constants.QSuperMaxAge) {
20
- this.showIneligibleNotification(`People over the age of ${constants.QSuperMaxAge} are not able to open accounts.`);
19
+ else if (superSelectionAppService.superBuyer.userProfile.yearsOfAge > constants.QSuper.MaxAge) {
20
+ this.showIneligibleNotification(`People over the age of ${constants.QSuper.MaxAge} are not able to open accounts.`);
21
21
  }
22
22
  else {
23
23
  this.isEligible = true;
@@ -25,7 +25,7 @@ export class QsuperLayout {
25
25
  };
26
26
  this.showIneligibleNotification = (description) => {
27
27
  notificationsService.showInfoNotification({
28
- title: "Unable to apply for QSuper",
28
+ title: 'Unable to apply for QSuper',
29
29
  description
30
30
  });
31
31
  };
@@ -4,16 +4,13 @@ import australianFundLookupService from './australian-fund-lookup.service';
4
4
  import superSelectionAppService from './super-selection-app.service';
5
5
  export class ChosenFundService {
6
6
  async GetChosenFundAsync() {
7
- var _a;
7
+ var _a, _b;
8
8
  const choiceDetails = (_a = superSelectionAppService.superBuyer.superChoice) === null || _a === void 0 ? void 0 : _a.choiceDetails;
9
9
  if (!choiceDetails)
10
10
  return none;
11
11
  if ('promoted' in choiceDetails) {
12
- const promotedId = constants.QSuperFundId in choiceDetails.promoted
13
- ? constants.QSuperFundId
14
- : constants.SlateFundId in choiceDetails.promoted
15
- ? constants.SlateFundId
16
- : '';
12
+ const fund = constants.PromotedFundIdList.find((f) => f.dtoPropName in choiceDetails.promoted);
13
+ const promotedId = (_b = fund === null || fund === void 0 ? void 0 : fund.id) !== null && _b !== void 0 ? _b : '';
17
14
  return some({
18
15
  isPromoted: true,
19
16
  promotedId
@@ -0,0 +1,7 @@
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 370 150">
2
+ <defs>
3
+ <style>.cls-1{fill:#0051ff;}</style>
4
+ </defs>
5
+ <path class="cls-1" d="M164.65,92,158.6,81c-.14-.25-.38-.64-.52-.86h0l-.68-1.12s0-.14,0-.17l.11,0a9.16,9.16,0,0,0,5.13-8.62c0-4.22-2-7.27-5.21-8.71-1.39-.63-3-.9-6.42-.9h-9.76a.53.53,0,0,0-.53.53V92a.53.53,0,0,0,.53.53H146a.53.53,0,0,0,.53-.53V81.11a.52.52,0,0,1,.52-.52h4.52a.94.94,0,0,1,.77.46l5.84,11a1,1,0,0,0,.77.46h5.42A.28.28,0,0,0,164.65,92ZM146.54,75V66.11a.52.52,0,0,1,.52-.52h3.88c4.53,0,5.83,1.88,5.83,4.94s-1.93,5-5,5h-4.69A.52.52,0,0,1,146.54,75Zm59.65-4.93a.52.52,0,0,1,.52-.53h4.66a.53.53,0,0,1,.52.53V92a.53.53,0,0,1-.52.53h-4.66a.52.52,0,0,1-.52-.53Zm5.86-6.84a3,3,0,1,1-3-3A3,3,0,0,1,212.05,63.27Zm109.19,6.84a.53.53,0,0,1,.53-.53h4.42a.53.53,0,0,1,.53.53v2.74c0,.18.1.26.23.07A8.76,8.76,0,0,1,334.1,69c4.7,0,8.53,2.41,8.53,8.5V92a.54.54,0,0,1-.53.54h-4.65a.54.54,0,0,1-.53-.54V78.44a4,4,0,0,0-4.2-4.16,4.15,4.15,0,0,0-2.36.73,6.14,6.14,0,0,0-2.1,2A9.38,9.38,0,0,0,327,81.75V92a.54.54,0,0,1-.54.54h-4.64a.54.54,0,0,1-.53-.54Zm-29,7.43V92a.54.54,0,0,1-.53.54h-4.65a.54.54,0,0,1-.53-.54V78.45c0-2.55-.89-4.17-3.2-4.17A4.17,4.17,0,0,0,281,75a6.14,6.14,0,0,0-2.1,2,7.19,7.19,0,0,0-1,2.56,13.26,13.26,0,0,0-.24,2.21V92a.53.53,0,0,1-.53.54h-4.64a.54.54,0,0,1-.53-.54V78.45c0-2.55-.9-4.17-3.2-4.17a4.18,4.18,0,0,0-2.37.73,6.14,6.14,0,0,0-2.1,2,9.38,9.38,0,0,0-1.31,4.71V92a.54.54,0,0,1-.53.54h-4.64a.53.53,0,0,1-.53-.54V70.11a.53.53,0,0,1,.53-.53h4.42a.53.53,0,0,1,.53.53v.56h0v2.47c0,.18.11.26.22.07A7.82,7.82,0,0,1,269.47,69c3.41,0,6.12,1.29,7.37,4.31a.09.09,0,0,0,.08.06.15.15,0,0,0,.16-.1,8.35,8.35,0,0,1,7-4.27C288.8,69,292.23,71.45,292.23,77.54ZM176.45,69.05c-7.38,0-11.08,4.93-11.08,12,0,6.51,4.71,12,12.3,12a14.65,14.65,0,0,0,8.82-3,.55.55,0,0,0,.18-.69L185,86.2a.49.49,0,0,0-.72-.21,11.91,11.91,0,0,1-6.17,2.18c-3.4,0-6.48-2-6.87-6,0,0,0-.08.06-.08H186.4c.36,0,.54-.15.6-.54a11.6,11.6,0,0,0,.15-1.66C187.15,73.85,183.06,69.05,176.45,69.05Zm4.8,9.16h-9.73c-.13,0-.12-.11-.11-.16.57-2.87,2-4.6,4.91-4.6A4.85,4.85,0,0,1,181.39,78,.14.14,0,0,1,181.25,78.21Zm61.64-9.16c-7.38,0-11.09,4.93-11.09,12,0,6.51,4.72,12,12.31,12a14.68,14.68,0,0,0,8.82-3,.55.55,0,0,0,.18-.69l-1.7-3.16a.49.49,0,0,0-.72-.21,11.91,11.91,0,0,1-6.18,2.18c-3.39,0-6.47-2-6.86-6,0,0,0-.08.06-.08h15.13c.36,0,.54-.15.6-.54a11.48,11.48,0,0,0,.14-1.66C253.58,73.85,249.49,69.05,242.89,69.05Zm4.8,9.16H238c-.12,0-.11-.11-.1-.16.56-2.87,2-4.6,4.91-4.6A4.85,4.85,0,0,1,247.83,78C247.83,78.1,247.81,78.21,247.69,78.21Zm59.24-9.16c-7.38,0-11.09,4.93-11.09,12,0,6.51,4.72,12,12.31,12a14.68,14.68,0,0,0,8.82-3,.55.55,0,0,0,.18-.69l-1.7-3.16a.49.49,0,0,0-.72-.21,11.91,11.91,0,0,1-6.18,2.18c-3.39,0-6.47-2-6.86-6,0,0,0-.08.06-.08h15.13c.36,0,.54-.15.6-.54a11.48,11.48,0,0,0,.14-1.66C317.62,73.85,313.53,69.05,306.93,69.05Zm4.8,9.16H302c-.12,0-.11-.11-.1-.16.56-2.87,2-4.6,4.91-4.6A4.85,4.85,0,0,1,311.87,78C311.87,78.1,311.85,78.21,311.73,78.21Zm-81.14-8.59v4.47a.48.48,0,0,1-.52.5H230a7,7,0,0,0-4,.83,6,6,0,0,0-2.09,2,7.93,7.93,0,0,0-1.3,3.8h0V92a.52.52,0,0,1-.52.53h-4.66a.53.53,0,0,1-.53-.53V70.1a.53.53,0,0,1,.53-.52H222a.52.52,0,0,1,.52.52v2.73c0,.14.11.16.19,0v0a8.33,8.33,0,0,1,6.68-3.84c.56,0,.68,0,.69,0A.56.56,0,0,1,230.59,69.62ZM202,87.93v3.92c0,.3-.19.49-.53.58a10.84,10.84,0,0,1-2,.21c-3.19,0-8.7-.89-8.7-8.57V63.65a.52.52,0,0,1,.53-.52h4.66a.52.52,0,0,1,.52.52V69.2a.52.52,0,0,0,.52.52h4.17a.52.52,0,0,1,.52.53v3.49a.52.52,0,0,1-.52.52H197a.52.52,0,0,0-.52.52v8.88c0,3.53,2.55,3.86,4.12,3.86.25,0,.91-.08.91-.08A.48.48,0,0,1,202,87.93Zm156.76.22v3.92a.61.61,0,0,1-.53.58,10.94,10.94,0,0,1-2,.21c-3.19,0-8.7-.9-8.7-8.58V63.86a.52.52,0,0,1,.52-.52h4.66a.52.52,0,0,1,.52.52v5.56a.52.52,0,0,0,.52.52h4.18a.52.52,0,0,1,.52.52V74a.53.53,0,0,1-.52.53h-4.18a.52.52,0,0,0-.52.52v8.88c0,3.53,2.55,3.85,4.12,3.85.26,0,.92-.07.92-.07A.49.49,0,0,1,358.78,88.15ZM149.14,111a.52.52,0,0,0-.52-.52H139.2a.52.52,0,0,1-.52-.52V106a.52.52,0,0,1,.52-.52h25.67a.52.52,0,0,1,.53.52V110a.52.52,0,0,1-.53.52h-9.41a.53.53,0,0,0-.53.52v25.86a.52.52,0,0,1-.52.52h-4.75a.52.52,0,0,1-.52-.52Zm53.59,4.7v20.46h0v.69a.53.53,0,0,1-.53.53h-4.41a.54.54,0,0,1-.54-.53v-.55h0v-2.19c0-.18-.11-.25-.23-.07a8.78,8.78,0,0,1-7.16,3.88c-4.7,0-8.52-2.41-8.53-8.5V115.59h0V115a.53.53,0,0,1,.54-.53h4.64a.53.53,0,0,1,.53.53v.69h0v12.82a4.05,4.05,0,0,0,4.2,4.17,4.19,4.19,0,0,0,2.37-.74,6.14,6.14,0,0,0,2.1-2,9.38,9.38,0,0,0,1.31-4.71v-9.7h0V115a.53.53,0,0,1,.53-.53h4.64a.53.53,0,0,1,.54.53v.69Zm-24.52-1.19V119a.48.48,0,0,1-.52.5h-.13a6.91,6.91,0,0,0-4.05.83,6,6,0,0,0-2.08,2,7.73,7.73,0,0,0-1.3,3.8h0v10.75a.52.52,0,0,1-.53.52h-4.66a.52.52,0,0,1-.52-.52V115a.52.52,0,0,1,.52-.52h4.66a.52.52,0,0,1,.53.52v2.73c0,.14.11.15.18,0v0A8.34,8.34,0,0,1,177,114c.56,0,.68,0,.7,0A.55.55,0,0,1,178.21,114.51Zm45.62,16.54c0,3.82-3.32,6.87-8.75,6.87a13.12,13.12,0,0,1-8.5-3h0a.55.55,0,0,1-.15-.74l2-3.1a.49.49,0,0,1,.74-.16h0a9.53,9.53,0,0,0,5.84,2.16c1.62,0,3-.72,3-2.07,0-3.41-11.14-3-11.14-10.32,0-4.27,3.82-6.74,8.76-6.74a11.64,11.64,0,0,1,7.26,2.24h0a.58.58,0,0,1,.22.7l-1.64,3.28a.49.49,0,0,1-.71.24h0a9,9,0,0,0-5.2-1.64c-1.48,0-2.91.63-2.91,2.07C212.7,124.09,223.83,123.68,223.83,131.05Zm14.89,1.78v3.92c0,.29-.2.49-.54.58a10.84,10.84,0,0,1-2,.21c-3.19,0-8.69-.9-8.69-8.57V108.55A.52.52,0,0,1,228,108h4.66a.53.53,0,0,1,.52.53v5.55a.52.52,0,0,0,.52.52h4.17a.52.52,0,0,1,.52.52v3.49a.52.52,0,0,1-.52.53h-4.17a.52.52,0,0,0-.52.52v8.88c0,3.53,2.55,3.86,4.12,3.86.25,0,.92-.08.92-.08A.49.49,0,0,1,238.72,132.83Zm25.7-100.66c-.43-5.09-3.8-8-9.41-8a15.82,15.82,0,0,0-8.55,2.52h0v0a.55.55,0,0,0-.19.68l1.67,3.15a.49.49,0,0,0,.66.25h0a11.8,11.8,0,0,1,5.89-1.93c2.5,0,4.37,1,4.39,4a.52.52,0,0,1-.52.38h-.23c-3.73,0-13.56.5-13.56,7.77,0,4.58,3.68,7.14,7.76,7.14a7.52,7.52,0,0,0,6.49-3.77h0c.07-.14.25-.08.26.08v2.62a.52.52,0,0,0,.52.52H264a.52.52,0,0,0,.52-.52v-13C264.53,33.81,264.46,32.49,264.42,32.17ZM253.75,43.68c-2.33,0-3.46-1.43-3.46-3,0-3.19,4.72-3.59,7.64-3.59h.38c.46,0,.6.15.6.57h0C258.89,40.32,256.52,43.68,253.75,43.68Zm-95.59-3.77a.77.77,0,0,0-.68-.49H147.34a.77.77,0,0,0-.69.49l-2.36,7.19a.77.77,0,0,1-.69.49h-4.93a.35.35,0,0,1-.35-.49L149.2,16.2a.8.8,0,0,1,.7-.49h5a.79.79,0,0,1,.69.49l10.88,30.9a.34.34,0,0,1-.35.49h-4.93a.77.77,0,0,1-.68-.49Zm-5.59-17c-.09-.27-.24-.27-.33,0l-3.71,11.26a.35.35,0,0,0,.36.49h7a.35.35,0,0,0,.36-.49Zm58.25,18.31c0,3.82-3.32,6.87-8.76,6.87a13.09,13.09,0,0,1-8.5-3h0a.55.55,0,0,1-.15-.74l2-3.1a.48.48,0,0,1,.73-.16h0A9.53,9.53,0,0,0,202,43.28c1.61,0,3-.72,3-2.07,0-3.41-11.14-3-11.14-10.32,0-4.27,3.82-6.74,8.76-6.74a11.64,11.64,0,0,1,7.26,2.24h0a.59.59,0,0,1,.22.7L208.5,30.4a.49.49,0,0,1-.71.24h0A9,9,0,0,0,202.6,29c-1.48,0-2.92.63-2.92,2.07C199.68,34.3,210.82,33.9,210.82,41.26Zm71.09-16a.52.52,0,0,1,.52-.52h4.66a.52.52,0,0,1,.52.52V47.07a.52.52,0,0,1-.52.52h-4.66a.52.52,0,0,1-.52-.52Zm5.86-6.84a3,3,0,1,1-3-3A3,3,0,0,1,287.77,18.37Zm-98,7.54V46.37h0v.69a.53.53,0,0,1-.53.53h-4.42a.53.53,0,0,1-.53-.53v-.55h0V44.32c0-.18-.1-.25-.23-.07a8.77,8.77,0,0,1-7.16,3.88c-4.69,0-8.52-2.41-8.52-8.5V25.8h0v-.58a.53.53,0,0,1,.53-.53h4.65a.53.53,0,0,1,.53.53v.69h0V38.73a4.05,4.05,0,0,0,4.2,4.17,4.16,4.16,0,0,0,2.36-.74,6.14,6.14,0,0,0,2.1-2,9.34,9.34,0,0,0,1.31-4.7v-9.7h0v-.51a.54.54,0,0,1,.54-.53h4.64a.53.53,0,0,1,.53.53v.69ZM316.09,46.36V25.91h0v-.69a.52.52,0,0,1,.53-.53H321a.52.52,0,0,1,.53.53v.55h0V28c0,.19.11.26.23.08A8.75,8.75,0,0,1,329,24.15c4.7,0,8.52,2.41,8.52,8.5V46.48h0v.58a.53.53,0,0,1-.53.53h-4.64a.53.53,0,0,1-.53-.53v-.7h0V33.55a4.05,4.05,0,0,0-4.21-4.17,4.11,4.11,0,0,0-2.36.74,6.14,6.14,0,0,0-2.1,2,9.32,9.32,0,0,0-1.31,4.7v9.7h0v.51a.53.53,0,0,1-.53.53h-4.65a.53.53,0,0,1-.53-.53v-.7ZM243.65,24.72v4.47a.49.49,0,0,1-.53.5H243a7,7,0,0,0-4.05.83,6,6,0,0,0-2.09,2,7.81,7.81,0,0,0-1.29,3.8h0V47.06a.52.52,0,0,1-.52.52h-4.66a.52.52,0,0,1-.52-.52V25.2a.52.52,0,0,1,.52-.52H235a.52.52,0,0,1,.52.52v2.73c0,.14.11.16.19,0v0a8.33,8.33,0,0,1,6.68-3.84c.56,0,.68,0,.69,0A.56.56,0,0,1,243.65,24.72Zm67.42,7.45c-.44-5.09-3.81-8-9.42-8a15.77,15.77,0,0,0-8.54,2.52h0v0a.53.53,0,0,0-.18.68l1.66,3.15a.5.5,0,0,0,.67.25h0a11.83,11.83,0,0,1,5.89-1.93c2.5,0,4.37,1,4.4,4a.52.52,0,0,1-.53.38h-.23c-3.73,0-13.56.5-13.56,7.77,0,4.58,3.68,7.14,7.77,7.14a7.5,7.5,0,0,0,6.48-3.77h0a.14.14,0,0,1,.26.08v2.62a.52.52,0,0,0,.52.52h4.43a.52.52,0,0,0,.52-.52v-13C311.17,33.81,311.11,32.49,311.07,32.17ZM300.39,43.68c-2.33,0-3.45-1.43-3.45-3,0-3.19,4.71-3.59,7.63-3.59H305c.47,0,.6.15.6.57h0C305.53,40.32,303.16,43.68,300.39,43.68Zm-22.09-.63v4a.59.59,0,0,1-.54.58c-.36,0-.84,0-.84,0l-.42,0c-3.15,0-7.05-.81-7.05-7.37V16.06a.52.52,0,0,1,.52-.52h4.62a.52.52,0,0,1,.52.52V39.43c0,2.2.65,3,1.81,3.11a7.4,7.4,0,0,0,.85,0A.48.48,0,0,1,278.3,43.05Zm-52.6,0V47c0,.3-.2.49-.53.58a10.84,10.84,0,0,1-2,.21c-3.19,0-8.7-.89-8.7-8.57V18.75a.52.52,0,0,1,.52-.52h4.66a.52.52,0,0,1,.53.52V24.3a.52.52,0,0,0,.52.52h4.17a.52.52,0,0,1,.52.53v3.49a.52.52,0,0,1-.52.52h-4.17a.52.52,0,0,0-.52.52v8.88c0,3.53,2.54,3.86,4.12,3.86.25,0,.91-.08.91-.08A.48.48,0,0,1,225.7,43Z" transform="translate(0 0)"/>
6
+ <path class="cls-1" d="M77.48,124.25A14.25,14.25,0,1,1,63.23,110,14.25,14.25,0,0,1,77.48,124.25ZM75,20.73a14.26,14.26,0,0,0-23.7.2L16.76,70.26a14.25,14.25,0,1,0,22.81-.81h0A14.25,14.25,0,1,1,62.4,52.4l23.82,34A14.25,14.25,0,1,0,109.7,70.25L75,20.73" transform="translate(0,0))"/>
7
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 182 74"><defs><path id="a" d="M.586.298h6.47v7.605H.586z"/><path id="c" d="M.433.54h5.801v10.842H.433z"/><path id="e" d="M.255.373h10.843v5.802H.255z"/><path id="g" d="M.001.639h27.458v26.81H.001z"/></defs><g fill="none" fill-rule="evenodd"><path fill="#851F83" d="M83.901 72.56a.764.764 0 01-.308-.615c0-.425.34-.754.764-.754.212 0 .36.074.466.15.562.412 1.178.667 1.9.667.667 0 1.07-.265 1.07-.7v-.021c0-.414-.255-.626-1.495-.944-1.495-.382-2.462-.795-2.462-2.27v-.021c0-1.347 1.083-2.238 2.599-2.238.902 0 1.688.233 2.356.658.18.106.36.328.36.647a.752.752 0 01-.763.753.787.787 0 01-.414-.117c-.541-.318-1.05-.499-1.56-.499-.625 0-.954.286-.954.648v.02c0 .488.318.648 1.6.976 1.508.393 2.356.934 2.356 2.228v.021c0 1.475-1.125 2.302-2.725 2.302a4.79 4.79 0 01-2.79-.891"/><g transform="translate(99.146 65.558)"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><path fill="#851F83" d="M.586 4.605v-3.49a.81.81 0 01.817-.817.81.81 0 01.816.817v3.447c0 1.209.605 1.835 1.603 1.835.995 0 1.6-.605 1.6-1.782v-3.5A.81.81 0 016.24.298a.81.81 0 01.816.817v3.437c0 2.248-1.262 3.351-3.256 3.351C1.806 7.903.586 6.79.586 4.605" mask="url(#b)"/></g><path fill="#851F83" d="M119.66 69.664c.817 0 1.294-.488 1.294-1.124v-.021c0-.732-.51-1.125-1.326-1.125h-1.263v2.27h1.294zm-2.928-2.927a.81.81 0 01.816-.817h2.217c1.771 0 2.843 1.05 2.843 2.566v.022c0 1.718-1.336 2.61-3.002 2.61h-1.24v1.473a.81.81 0 01-.818.817.81.81 0 01-.816-.817v-5.854zm16.325 5.791v-5.79a.81.81 0 01.817-.818h4.114c.404 0 .733.33.733.733 0 .403-.329.72-.733.72h-3.308v1.507h2.831c.403 0 .732.328.732.731a.724.724 0 01-.732.721h-2.831v1.56h3.362c.403 0 .732.329.732.732 0 .403-.329.72-.732.72h-4.168a.81.81 0 01-.817-.816m18.866-3.001c.796 0 1.251-.425 1.251-1.05v-.022c0-.7-.488-1.06-1.283-1.06h-1.623v2.132h1.655zm-3.288-2.79c0-.456.361-.817.817-.817h2.577c.944 0 1.675.265 2.163.753.414.414.638.998.638 1.697v.021c0 1.167-.585 1.889-1.486 2.26l1.136 1.379c.158.202.265.371.265.625 0 .456-.382.753-.775.753-.371 0-.616-.18-.806-.424l-1.59-2.015h-1.306v1.622a.81.81 0 01-.816.817.811.811 0 01-.817-.817v-5.854zm13.752-32.31h-4.879c-.8 0-1.453.653-1.453 1.452v5.664c0 .456.373.831.83.831h.173v6.599h2.514v-6.258h.75v6.258h2.514v-6.599h.172c.457 0 .83-.375.83-.831v-5.664c0-.799-.652-1.452-1.45-1.452m-4.333-1.755c.498.463 1.16.753 1.892.753h.002c.709 0 1.374-.272 1.891-.753.026-.024.055-.042.08-.066a2.768 2.768 0 00.815-1.972 2.792 2.792 0 00-2.79-2.787c-.745 0-1.446.29-1.972.817a2.774 2.774 0 00.082 4.008"/><g transform="translate(156.621 .18)"><mask id="d" fill="#fff"><use xlink:href="#c"/></mask><path fill="#ED1D24" d="M1.515 11.382H5.15c.597 0 1.083-.488 1.083-1.083V6.077a.619.619 0 00-.618-.618h-.13V.539H3.613v4.665h-.559V.539H1.181v4.92h-.13a.62.62 0 00-.618.618V10.3c0 .595.487 1.083 1.082 1.083" mask="url(#d)"/></g><path fill="#ED1D24" d="M161.366 12.87a2.07 2.07 0 00-1.41-.562h-.003c-.528 0-1.025.202-1.41.562-.017.017-.04.03-.06.05a2.08 2.08 0 001.474 3.546 2.06 2.06 0 001.469-.61 2.065 2.065 0 00-.06-2.986"/><path fill="#0063A5" d="M149.358 23.952v-3.637c0-.596-.486-1.083-1.082-1.083h-4.222a.621.621 0 00-.619.62v.128h-4.919v1.874h4.664v.559h-4.664v1.874h4.92v.13a.62.62 0 00.618.617h4.222c.596 0 1.082-.486 1.082-1.082m1.309-3.229a2.061 2.061 0 00-.561 1.41v.003c0 .528.202 1.023.56 1.41.017.018.032.04.05.059a2.081 2.081 0 003.548-1.474c0-.554-.218-1.076-.61-1.468a2.065 2.065 0 00-2.987.06"/><g transform="translate(170.272 18.86)"><mask id="f" fill="#fff"><use xlink:href="#e"/></mask><path fill="#00843C" d="M.255 1.454v3.637c0 .597.487 1.084 1.083 1.084H5.56a.62.62 0 00.618-.62v-.128h4.92V3.553H6.433v-.559h4.665V1.12h-4.92V.991c0-.34-.28-.618-.618-.618H1.338C.742.373.255.86.255 1.454" mask="url(#f)"/></g><path fill="#00843C" d="M169.22 23.543c.345-.371.56-.864.56-1.41v-.002c0-.528-.201-1.025-.56-1.41-.018-.019-.032-.042-.05-.06a2.073 2.073 0 00-1.47-.607 2.083 2.083 0 00-2.078 2.081c0 .554.217 1.076.61 1.469a2.067 2.067 0 002.987-.061"/><path fill="#EC008C" d="M166.148 13.366l.018.018 2.534 2.534.019.02c.421.42 1.11.42 1.532 0l.632-.632 1.065-1.065 1.287-1.288a.622.622 0 000-.875l-.091-.092 3.479-3.478-1.326-1.325L172 10.48l-.395-.395 3.3-3.298-1.326-1.326L170.1 8.94l-.092-.09a.618.618 0 00-.875 0l-1.287 1.287-1.066 1.065-.631.632a1.084 1.084 0 000 1.53m1.357 3.21a2.073 2.073 0 00-.6-1.394l-.003-.001a2.052 2.052 0 00-1.392-.6c-.027-.001-.052-.008-.078-.008a2.082 2.082 0 00-1.468 3.55c.393.392.917.61 1.471.608a2.072 2.072 0 002.07-2.155"/><path fill="#A5CF4D" d="M153.752 13.377l-.018.019-2.536 2.534-.018.02c-.42.42-1.11.42-1.531 0l-.633-.632-1.064-1.066-1.289-1.288a.62.62 0 01.001-.875l.091-.091-3.478-3.479 1.325-1.325 3.298 3.298.395-.394-3.299-3.3 1.325-1.324 3.48 3.478.09-.09a.62.62 0 01.876 0l1.287 1.287 1.066 1.066.632.632c.42.42.421 1.11 0 1.53m-1.359 3.209a2.064 2.064 0 01.6-1.394l.002-.002c.373-.373.868-.58 1.394-.6.026 0 .051-.007.077-.007a2.08 2.08 0 01-.003 4.157 2.071 2.071 0 01-2.07-2.154"/><path fill="#00BCE2" d="M166.148 30.925l.018-.019 2.534-2.534.019-.02c.421-.42 1.11-.42 1.532 0l.632.632 1.065 1.066 1.287 1.288c.24.24.24.634 0 .875l-.091.091 3.479 3.479-1.326 1.325L172 33.81l-.395.395 3.3 3.299-1.326 1.324-3.479-3.478-.092.09a.622.622 0 01-.875 0l-1.287-1.287-1.066-1.066-.631-.632a1.084 1.084 0 010-1.53m1.357-3.209a2.07 2.07 0 01-.6 1.394l-.003.002a2.06 2.06 0 01-1.392.6c-.027 0-.052.007-.078.007a2.082 2.082 0 01-1.468-3.55 2.063 2.063 0 011.471-.607 2.071 2.071 0 012.07 2.154"/><path fill="#FAA61A" d="M153.752 30.925l-.018-.019-2.536-2.534-.018-.02c-.42-.42-1.11-.42-1.531 0l-.633.632-1.064 1.066-1.289 1.288a.62.62 0 00.001.875l.091.091-3.478 3.479 1.325 1.325 3.298-3.298.395.395-3.299 3.299 1.325 1.324 3.48-3.478.09.09c.242.24.636.24.876 0l1.287-1.287 1.066-1.066.632-.632c.42-.42.421-1.11 0-1.53m-1.359-3.209c.018.507.215 1.008.6 1.394l.002.002c.373.373.868.58 1.394.6.026 0 .051.007.077.007a2.08 2.08 0 00-.003-4.157 2.071 2.071 0 00-2.07 2.154"/><g transform="translate(0 33.228)"><mask id="h" fill="#fff"><use xlink:href="#g"/></mask><path fill="#EC008C" d="M13.756 21.797c-4.052 0-7.203-3.351-7.203-7.753 0-4.401 3.15-7.702 7.203-7.702 4.101 0 7.252 3.3 7.252 7.702s-3.15 7.753-7.252 7.753M27.036 1.24h-5.754a.424.424 0 00-.424.424V4.84c-1.4-2.25-4.602-4.201-8.403-4.201C5.403.64 0 6.492 0 14.044 0 21.647 5.403 27.45 12.455 27.45c3.8 0 7.002-1.95 8.403-4.202v3.178c0 .234.19.423.424.423h5.754a.422.422 0 00.423-.423V1.664a.423.423 0 00-.423-.424" mask="url(#h)"/></g><path fill="#EC008C" d="M82.32 55.025c-4.057 0-7.204-3.353-7.204-7.752 0-4.4 3.147-7.702 7.204-7.702 4.097 0 7.25 3.301 7.25 7.702 0 4.4-3.153 7.752-7.25 7.752m13.277-20.558h-5.755a.427.427 0 00-.39.262.386.386 0 00-.031.165v3.172c-1.402-2.248-4.602-4.2-8.405-4.2-7.05 0-12.452 5.854-12.452 13.407 0 7.604 5.402 13.405 12.452 13.405 3.803 0 7.003-1.95 8.405-4.205v3.178c0 .237.189.427.42.427h5.756c.237 0 .426-.19.426-.427V34.894a.425.425 0 00-.426-.427m18.618-.449h-.326c-3.501 0-6.153 1.95-7.553 4.402v-3.528a.425.425 0 00-.423-.424h-5.755a.424.424 0 00-.424.424v24.761c0 .234.19.424.424.424h5.754c.235 0 .424-.19.424-.424v-12.08c0-4.952 2.95-7.003 6.752-7.003.358 0 .715.025 1.09.058l.037.002c.235 0 .424-.19.424-.423v-5.765a.424.424 0 00-.424-.424m-43.96.874a.424.424 0 00-.422-.423v-.001h-6.39a.425.425 0 00-.376.235l-5.928 14.16-5.733-14.154a.423.423 0 00-.379-.241h-2.14a.422.422 0 00-.379.24l-5.736 14.155-5.922-14.147a.426.426 0 00-.383-.248h-6.385a.425.425 0 00-.425.424c0 .067.02.128.048.185l3.64 7.537 8.33 17.228c.07.138.21.235.374.235h1.972a.42.42 0 00.388-.255l5.546-12.2 5.551 12.206a.423.423 0 00.384.249h1.972a.421.421 0 00.38-.244l11.974-24.77a.408.408 0 00.039-.171m51.335 9.68c.9-3.302 3.452-5.402 6.654-5.402 3.75 0 5.8 2.7 6.101 5.402h-12.754zm18.957 2.85c0-7.602-4.102-13.554-12.205-13.554-7.002 0-13.153 5.752-13.153 13.454 0 7.702 6.151 13.354 14.204 13.354l.148-.003v.003c1.134 0 2.24-.11 3.316-.308l.03-.005c.38-.07.756-.148 1.128-.242l.013-.003c.368-.091 1.14-.326 1.167-.335 1.336-.423 3.804-1.66 3.805-1.661a.724.724 0 00.304-.94l-1.705-3.569a.423.423 0 00-.383-.247.4.4 0 00-.188.05c-.005 0-.892.451-1.356.644a17.78 17.78 0 01-6.035 1.098c-4.41-.172-7.574-2.392-8.247-6.185h18.73c.235 0 .425-.19.425-.424l.002-1.126z"/></g></svg>
@@ -6,15 +6,15 @@ export class SuperChoiceItem {
6
6
  }
7
7
  render() {
8
8
  return (h(Host, { class: {
9
- 'd-flex p-3': true,
9
+ 'd-flex p-3 fund-item': true,
10
10
  'ss-picked-fund': this.isSelected
11
11
  } },
12
12
  h("div", { class: "card-body py-0 px-0 px-xl-3" },
13
- this.isSelected && (h("div", { class: "px-3 py-2 text-white picked-block position-absolute" }, "You picked")),
13
+ this.isSelected && (h("div", { class: "px-3 py-2 text-white promoted-picked-block position-absolute" }, "You picked")),
14
14
  h("div", { class: "d-flex flex-fill flex-column align-items-center" },
15
15
  h("div", { class: "d-flex justify-content-end w-100" },
16
16
  h("div", { class: "text-muted small border rounded-sm px-1 mt-n2 mr-n2 mb-1" }, "Advertised")),
17
- h("img", { class: "ss-choice-logo", alt: "Simple Financial Choices Pty Ltd", src: getAssetPath(`assets/${this.logo}`) }),
17
+ h("img", { class: "ss-choice-logo", alt: this.name, src: getAssetPath(`assets/${this.logo}`) }),
18
18
  h("p", { class: "font-weight-bold text-center mt-3 mb-0" }, this.name),
19
19
  h("div", { class: "mt-3" }, JSON.parse(this.features).map((feature) => (h("p", { class: "text-center" }, feature.value)))))),
20
20
  h("div", { class: "text-center bottom-half-fund-tile" },
@@ -32,7 +32,6 @@ export class SuperChoiceItem {
32
32
  return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
33
33
  fundUsi: this.usi,
34
34
  fundName: this.name,
35
- fundNameAlt: this.heading,
36
35
  pageName: 'Panel Fund Page'
37
36
  });
38
37
  }
@@ -45,23 +44,6 @@ export class SuperChoiceItem {
45
44
  }; }
46
45
  static get assetsDirs() { return ["assets"]; }
47
46
  static get properties() { return {
48
- "heading": {
49
- "type": "string",
50
- "mutable": false,
51
- "complexType": {
52
- "original": "string",
53
- "resolved": "string",
54
- "references": {}
55
- },
56
- "required": false,
57
- "optional": false,
58
- "docs": {
59
- "tags": [],
60
- "text": ""
61
- },
62
- "attribute": "heading",
63
- "reflect": false
64
- },
65
47
  "isSelected": {
66
48
  "type": "boolean",
67
49
  "mutable": false,
@@ -84,11 +66,11 @@ export class SuperChoiceItem {
84
66
  "mutable": false,
85
67
  "complexType": {
86
68
  "original": "string",
87
- "resolved": "string",
69
+ "resolved": "string | undefined",
88
70
  "references": {}
89
71
  },
90
72
  "required": false,
91
- "optional": false,
73
+ "optional": true,
92
74
  "docs": {
93
75
  "tags": [],
94
76
  "text": ""
@@ -33,8 +33,8 @@ img.fluid-fit {
33
33
  }
34
34
 
35
35
  .ss-choice-logo {
36
- height: 70px;
37
- width: 70px;
36
+ width: auto;
37
+ max-height: 70px;
38
38
  object-fit: contain;
39
39
  }
40
40
 
@@ -52,6 +52,17 @@ img {
52
52
  flex-grow: 1;
53
53
  }
54
54
 
55
+ .fund-item {
56
+ margin-top: 1rem;
57
+ }
58
+
59
+ .promoted-picked-block {
60
+ background-color: var(--fl-color-primary);
61
+ border-bottom-right-radius: 3px;
62
+ left: 0;
63
+ top: 0;
64
+ }
65
+
55
66
  @media (min-width: 992px) {
56
67
  .bottom-half-fund-tile {
57
68
  height: 220px;
@@ -22,7 +22,7 @@ export class SuperChoicePage {
22
22
  }
23
23
  componentDidLoad() {
24
24
  iframe.appReady();
25
- const enabledFundIds = this.promotedFunds.map((item) => item.usi);
25
+ const enabledFundIds = this.promotedFunds.map((item) => item.fundId);
26
26
  this.eventTrackingService.TrackSuperFundPanelViewedAsync({
27
27
  enabledFundIds
28
28
  });
@@ -36,8 +36,8 @@ export class SuperChoicePage {
36
36
  const superChoiceParagraphTwo = `The content on this page and on the following pages relating to each super fund is provided by the trustee or promoter of the super fund. The super funds presented have not been selected by your employer and neither your employer or Flare HR are making any recommendation or opinion.`;
37
37
  const superChoiceParagraphThree = `There are many super funds out there and you should consider the relevant product disclosure statement and choose one that is right for you. If you are unsure, obtain your own advice. You can choose your super fund later, if you need time to obtain advice.`;
38
38
  const superChoiceParagraphFour = `You should be aware that, if you do choose one of these advertised funds, Flare HR and its associated entities will normally receive a fee for you doing so.`;
39
- const atoLink = 'https://www.ato.gov.au';
40
- const atoLinkDisplay = 'www.ato.gov.au';
39
+ const atoLink = 'https://my.gov.au';
40
+ const atoLinkDisplay = 'my.gov.au';
41
41
  const superfundsLink = 'https://www.apra.gov.au/register-of-superannuation-institutions';
42
42
  const superfundsLinkDisplay = 'www.apra.gov.au/register-of-superannuation-institutions';
43
43
  return (h(Host, null,
@@ -58,8 +58,8 @@ export class SuperChoicePage {
58
58
  h("div", { class: "row" },
59
59
  h("div", { class: "col" },
60
60
  h("div", { class: "d-flex flex-fill" }, isSome(this.chosenFund) && !this.chosenFund.value.isPromoted && (h("sss-selected-super-choice-section", { fundType: this.chosenFund.value.type, fundName: this.chosenFund.value.name, class: "flex-fill position-relative" }))))),
61
- h("div", { class: "row mt-3" }, this.promotedFunds.map((fund) => (h("div", { class: "col-12 col-lg-6 d-flex" },
62
- h("sss-super-choice-item", { class: "card mb-3 mb-lg-0 mx-0 flex-grow-1", logo: fund.logo, isSelected: this.isPromotedFundSelected(fund.fundId), usi: fund.usi, name: fund.name, heading: fund.heading, pdsLink: navigationService.toExternalUrl(fund.pdsLink), features: JSON.stringify(fund.features), disclaimer: fund.disclaimer, abnInfo: fund.abnInfo, onJoinFundClicked: async () => this.handleJoinSuperClickAsync(fund) }))))),
61
+ h("div", { class: "row mt-3" }, this.getPromotedFunds().map((fund) => (h("div", { class: "col-12 col-lg-6 d-flex" },
62
+ h("sss-super-choice-item", { class: "card mb-3 mb-lg-0 mx-0 flex-grow-1", logo: fund.logo, isSelected: this.isPromotedFundSelected(fund.fundId), usi: fund.usi, name: fund.name, pdsLink: navigationService.toExternalUrl(fund.pdsLink), features: JSON.stringify(fund.features), disclaimer: fund.disclaimer, abnInfo: fund.abnInfo, onJoinFundClicked: async () => this.handleJoinSuperClickAsync(fund) }))))),
63
63
  h("div", { class: "row mt-3 px-3" },
64
64
  h("div", { class: "col p-4 border rounded bg-light" },
65
65
  h("div", { class: "row" },
@@ -88,13 +88,12 @@ export class SuperChoicePage {
88
88
  allFunds() {
89
89
  return [
90
90
  {
91
- fundId: constants.SlateFundId,
92
- usi: constants.SlateFundUsi,
93
- name: constants.SlateFundName,
94
- heading: constants.SlateAltFundName,
91
+ fundId: constants.Slate.Id,
92
+ usi: constants.Slate.Usi,
93
+ name: constants.Slate.Name,
95
94
  logo: 'logo-slate.png',
96
95
  route: SuperSelectionAppRoutes.SlateJoin,
97
- pdsLink: constants.SlatePdsUrl,
96
+ pdsLink: constants.Slate.PdsUrl,
98
97
  features: [
99
98
  { order: 1, value: 'A lifestage investment strategy that evolves with you' },
100
99
  { order: 2, value: 'Advanced mobile app with retirement forecast and smart features' },
@@ -103,23 +102,22 @@ export class SuperChoicePage {
103
102
  disclaimer: (h("p", { class: "small text-muted" },
104
103
  "You should consider the",
105
104
  ' ',
106
- h("a", { target: "_blank", href: navigationService.toExternalUrl(constants.SlatePdsUrl), onClick: () => this.pdsViewedAsync(constants.SlateFundUsi, constants.SlateFundName, constants.SlateAltFundName) }, "Product Disclosure Statement"),
105
+ h("a", { target: "_blank", href: navigationService.toExternalUrl(constants.Slate.PdsUrl), onClick: () => this.pdsViewedAsync(constants.Slate.Name, constants.Slate.Usi) }, "Product Disclosure Statement"),
107
106
  ' ',
108
107
  "and",
109
108
  ' ',
110
- h("a", { target: "_blank", href: navigationService.toExternalUrl('https://slate.co/forms-and-documents') }, "Target Market Determination"),
109
+ h("a", { target: "_blank", href: navigationService.toExternalUrl('https://slate.co/forms-and-documents/target-market-determination/') }, "Target Market Determination"),
111
110
  ' ',
112
111
  "before deciding to invest in or apply to become a member of the fund.")),
113
- abnInfo: `Diversa Trustees Limited ABN: ${constants.SlateFundDiversaAbn}`
112
+ abnInfo: `Diversa Trustees Limited ABN: ${constants.Slate.DiversaAbn}`
114
113
  },
115
114
  {
116
- fundId: constants.QSuperFundId,
117
- usi: constants.QSuperFundUsi,
118
- name: constants.QSuperFundName,
119
- heading: constants.QSuperAltFundName,
115
+ fundId: constants.QSuper.Id,
116
+ usi: constants.QSuper.Usi,
117
+ name: constants.QSuper.Name,
120
118
  logo: 'logo-qsuper-square.png',
121
119
  route: SuperSelectionAppRoutes.QSuperOptIn,
122
- pdsLink: constants.QSuperPdsUrl,
120
+ pdsLink: constants.QSuper.PdsUrl,
123
121
  features: [
124
122
  { order: 1, value: '100 years strong' },
125
123
  { order: 2, value: `One of Australia's largest funds` },
@@ -128,22 +126,48 @@ export class SuperChoicePage {
128
126
  disclaimer: (h("p", { class: "small text-muted" },
129
127
  "You should consider the",
130
128
  ' ',
131
- h("a", { target: "_blank", href: navigationService.toExternalUrl(constants.QSuperPdsUrl), onClick: () => this.pdsViewedAsync(constants.QSuperFundUsi, constants.QSuperFundName, constants.QSuperAltFundName) }, "Product Disclosure Statement"),
129
+ h("a", { target: "_blank", href: navigationService.toExternalUrl(constants.QSuper.PdsUrl), onClick: () => this.pdsViewedAsync(constants.QSuper.Name, constants.QSuper.Usi) }, "Product Disclosure Statement"),
132
130
  ' ',
133
131
  "before deciding to invest in or apply to become a member of this fund.")),
134
- abnInfo: `QSuper Board ABN: ${constants.QSuperFundAbn}`
132
+ abnInfo: `QSuper Board ABN: ${constants.QSuper.Abn}`
135
133
  },
136
134
  {
137
- fundId: constants.AustralianRetirementTrustFundId,
138
- usi: constants.AustralianRetirementTrustFundUsi,
139
- name: constants.AustralianRetirementTrustFundName,
140
- heading: constants.AustralianRetirementTrustAltFundName,
141
- logo: 'logo-qsuper-square.png',
135
+ fundId: constants.AustralianRetirementTrust.Id,
136
+ name: constants.AustralianRetirementTrust.Name,
137
+ logo: 'logo-art.svg',
138
+ route: SuperSelectionAppRoutes.PromotedFundJoin,
139
+ pdsLink: constants.AustralianRetirementTrust.PdsUrl,
140
+ features: [
141
+ { order: 1, value: '$200 billion in retirement savings' },
142
+ { order: 2, value: '2+ million members' },
143
+ { order: 3, value: 'A focus on delivering strong, long‑term returns' }
144
+ ],
145
+ disclaimer: (h("p", { class: "small text-muted" },
146
+ "You should consider the",
147
+ ' ',
148
+ h("a", { target: "_blank", href: navigationService.toExternalUrl(constants.AustralianRetirementTrust.PdsUrl), onClick: () => this.pdsViewedAsync(constants.AustralianRetirementTrust.Name) }, "Product Disclosure Statement"),
149
+ ' ',
150
+ "before deciding to invest in or apply to become a member of this fund.")),
151
+ abnInfo: `Australian Retirement Trust ABN: ${constants.AustralianRetirementTrust.Abn}`
152
+ },
153
+ {
154
+ fundId: constants.Aware.Id,
155
+ name: constants.Aware.Name,
156
+ logo: 'logo-aware.svg',
142
157
  route: SuperSelectionAppRoutes.PromotedFundJoin,
143
- pdsLink: 'https://google.com',
144
- features: [],
145
- disclaimer: h("p", null),
146
- abnInfo: ``
158
+ pdsLink: constants.Aware.PdsUrl,
159
+ features: [
160
+ { order: 1, value: 'Lorem ipsum dolor sit amet' },
161
+ { order: 2, value: 'Lorem ipsum dolor sit amet' },
162
+ { order: 3, value: 'Lorem ipsum dolor sit amet' }
163
+ ],
164
+ disclaimer: (h("p", { class: "small text-muted" },
165
+ "You should consider the",
166
+ ' ',
167
+ h("a", { target: "_blank", href: navigationService.toExternalUrl(constants.Aware.PdsUrl), onClick: () => this.pdsViewedAsync(constants.Aware.Name) }, "Product Disclosure Statement"),
168
+ ' ',
169
+ "before deciding to invest in or apply to become a member of this fund.")),
170
+ abnInfo: `Aware Super Pty Ltd ABN: ${constants.Aware.Abn}`
147
171
  }
148
172
  ];
149
173
  }
@@ -158,35 +182,36 @@ export class SuperChoicePage {
158
182
  return fundTiles;
159
183
  }
160
184
  async handleJoinSuperClickAsync(fund) {
161
- if (fund.fundId === constants.SlateFundId) {
185
+ if (fund.fundId === constants.Slate.Id) {
162
186
  await this.eventTrackingService.TrackPromotedSuperFundDetailViewedAsync({
163
- fundUsi: constants.SlateFundUsi,
164
- fundName: constants.SlateFundName,
165
- fundNameAlt: constants.SlateAltFundName
187
+ fundUsi: constants.Slate.Usi,
188
+ fundName: constants.Slate.Name
166
189
  });
167
190
  }
168
- else if (fund.fundId === constants.QSuperFundId) {
191
+ else if (fund.fundId === constants.QSuper.Id) {
169
192
  await this.eventTrackingService.TrackPromotedSuperFundDetailViewedAsync({
170
- fundUsi: constants.QSuperFundUsi,
171
- fundName: constants.QSuperFundName,
172
- fundNameAlt: constants.QSuperAltFundName
193
+ fundUsi: constants.QSuper.Usi,
194
+ fundName: constants.QSuper.Name
173
195
  });
174
196
  }
175
- else if (fund.fundId === constants.AustralianRetirementTrustFundId) {
197
+ else if (fund.fundId === constants.AustralianRetirementTrust.Id) {
198
+ await this.eventTrackingService.TrackPromotedSuperFundDetailViewedAsync({
199
+ fundName: constants.AustralianRetirementTrust.Name
200
+ });
201
+ promotedFundState.fundId = fund.fundId;
202
+ }
203
+ else if (fund.fundId === constants.Aware.Id) {
176
204
  await this.eventTrackingService.TrackPromotedSuperFundDetailViewedAsync({
177
- fundUsi: constants.AustralianRetirementTrustFundUsi,
178
- fundName: constants.AustralianRetirementTrustFundName,
179
- fundNameAlt: constants.AustralianRetirementTrustAltFundName
205
+ fundName: constants.Aware.Name
180
206
  });
181
207
  promotedFundState.fundId = fund.fundId;
182
208
  }
183
209
  return navigationService.navigateInternally(this.history, fund.route);
184
210
  }
185
- pdsViewedAsync(usi, name, heading) {
211
+ pdsViewedAsync(name, usi) {
186
212
  return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
187
213
  fundUsi: usi,
188
214
  fundName: name,
189
- fundNameAlt: heading,
190
215
  pageName: 'Panel Fund Page'
191
216
  });
192
217
  }
@@ -17,5 +17,5 @@ const patchBrowser = () => {
17
17
 
18
18
  patchBrowser().then(options => {
19
19
  globalScripts();
20
- return bootstrapLazy([["fl-style-guide",[[1,"fl-style-guide",{"themeCssUrl":[1,"theme-css-url"]}]]],["context-consumer",[[0,"context-consumer",{"context":[16],"renderer":[16],"subscribe":[16],"unsubscribe":[32]}]]],["stencil-async-content",[[0,"stencil-async-content",{"documentLocation":[1,"document-location"],"content":[32]}]]],["stencil-route-title",[[0,"stencil-route-title",{"titleSuffix":[1,"title-suffix"],"pageTitle":[1,"page-title"]}]]],["stencil-router-prompt",[[0,"stencil-router-prompt",{"when":[4],"message":[1],"history":[16],"unblock":[32]}]]],["stencil-router-redirect",[[0,"stencil-router-redirect",{"history":[16],"root":[1],"url":[1]}]]],["fl-button_46",[[0,"sss-my-own-fund",{"history":[16],"formState":[32],"isNotAllInformationProvidedMessageVisible":[32]}],[0,"sss-self-managed-fund",{"history":[16],"formState":[32],"showSmsfNotSupported":[32]}],[0,"sss-qsuper-question-1"],[0,"sss-qsuper-question-2"],[0,"sss-qsuper-question-3"],[0,"sss-qsuper-question-4"],[0,"sss-qsuper-question-5"],[0,"sss-qsuper-question-6"],[0,"sss-qsuper-question-7"],[0,"sss-qsuper-question-8"],[0,"sss-default-fund",{"history":[16],"formState":[32],"defaultFundProductName":[32]}],[0,"sss-qsuper-insurance-opt-in",{"insuranceChosen":[32]}],[0,"sss-qsuper-join"],[0,"sss-slate-standard-choice-page",{"history":[16],"formState":[32]}],[1,"super-selection-app-host",{"sessionState":[32],"jwt":[32],"appConfiguration":[32],"areStylesLoaded":[32]}],[0,"sss-qsuper-consent"],[0,"sss-super-choice-page",{"history":[16],"promotedFunds":[32],"chosenFund":[32]}],[0,"sss-promoted-fund-standard-choice-page",{"history":[16],"formState":[32]}],[0,"sss-success"],[0,"sss-promoted-fund-join-page",{"history":[16]}],[0,"sss-slate-join-page",{"history":[16]}],[0,"super-selection-app",{"accessToken":[1,"access-token"],"backendUrl":[1,"backend-url"],"appBaseUrl":[1,"app-base-url"],"history":[16],"location":[16],"isAppInitialised":[32]}],[0,"sss-my-own-fund-inputs",{"myOwnFundForm":[16],"selectedOption":[32]}],[0,"sss-self-managed-fund-inputs",{"fundForm":[16],"currentBank":[32]}],[0,"sss-loading-page"],[0,"sss-smsf-not-supported-dialog"],[0,"sss-super-choice-item",{"heading":[1],"isSelected":[4,"is-selected"],"usi":[1],"name":[1],"logo":[1],"pdsLink":[1,"pds-link"],"features":[1],"disclaimer":[16],"abnInfo":[1,"abn-info"],"history":[16]}],[0,"sss-selected-super-choice-section",{"fundType":[1,"fund-type"],"fundName":[1,"fund-name"]}],[0,"sss-slatesuper-header"],[0,"sss-footer-section"],[4,"stencil-route-link",{"url":[1],"urlMatch":[1,"url-match"],"activeClass":[1,"active-class"],"exact":[4],"strict":[4],"custom":[1],"anchorClass":[1,"anchor-class"],"anchorRole":[1,"anchor-role"],"anchorTitle":[1,"anchor-title"],"anchorTabIndex":[1,"anchor-tab-index"],"anchorId":[1,"anchor-id"],"history":[16],"location":[16],"root":[1],"ariaHaspopup":[1,"aria-haspopup"],"ariaPosinset":[1,"aria-posinset"],"ariaSetsize":[2,"aria-setsize"],"ariaLabel":[1,"aria-label"],"match":[32]}],[4,"stencil-route-switch",{"group":[513],"scrollTopOffset":[2,"scroll-top-offset"],"location":[16],"routeViewsUpdated":[16]}],[4,"stencil-router",{"root":[1],"historyType":[1,"history-type"],"titleSuffix":[1,"title-suffix"],"scrollTopOffset":[2,"scroll-top-offset"],"location":[32],"history":[32]}],[4,"sss-custom-fund",{"history":[16],"currentCustomFund":[32],"fundOptionsList":[32]}],[0,"fl-dropdown-async",{"placeholder":[1],"searchFunction":[16],"value":[16],"required":[4],"requiredValidationMessage":[1,"required-validation-message"],"disabled":[4],"minSearchStringLength":[2,"min-search-string-length"],"searchState":[32],"inputValue":[32],"isDropdownVisible":[32],"filteredOptions":[32],"highlightedOptionIndex":[32],"selectedOption":[32]},[[2,"focus","handleFocus"],[2,"blur","handleBlur"],[2,"keydown","handleKeyDown"]]],[0,"fl-dropdown",{"placeholder":[1],"options":[16],"value":[16],"required":[4],"requiredValidationMessage":[1,"required-validation-message"],"disabled":[4],"inputValue":[32],"isDropdownVisible":[32],"filteredOptions":[32],"highlightedOptionIndex":[32],"selectedOption":[32]},[[2,"focus","handleFocus"],[2,"blur","handleBlur"],[2,"keydown","handleKeyDown"]]],[0,"sss-standard-choice-form",{"standardChoiceFormSignature":[32]}],[4,"sss-qsuper-insurance-questions"],[0,"sss-qsuper-question-yes-no-buttons",{"history":[16]}],[0,"sss-qsuper-confirm-header"],[4,"sss-qsuper-layout",{"history":[16]}],[0,"sss-notifications-section"],[4,"fl-promise-button",{"isBlockElement":[4,"is-block-element"],"isRounded":[4,"is-rounded"],"disabled":[4],"variant":[1],"promiseFn":[16],"state":[32]}],[4,"fl-button",{"isBlockElement":[4,"is-block-element"],"disabled":[4],"variant":[1]}],[0,"fl-loading-indicator",{"theme":[1]}],[0,"stencil-route",{"group":[513],"componentUpdated":[16],"match":[1040],"url":[1],"component":[1],"componentProps":[16],"exact":[4],"routeRender":[16],"scrollTopOffset":[2,"scroll-top-offset"],"routeViewsUpdated":[16],"location":[16],"history":[16],"historyType":[1,"history-type"]}]]]], options);
20
+ return bootstrapLazy([["fl-style-guide",[[1,"fl-style-guide",{"themeCssUrl":[1,"theme-css-url"]}]]],["context-consumer",[[0,"context-consumer",{"context":[16],"renderer":[16],"subscribe":[16],"unsubscribe":[32]}]]],["stencil-async-content",[[0,"stencil-async-content",{"documentLocation":[1,"document-location"],"content":[32]}]]],["stencil-route-title",[[0,"stencil-route-title",{"titleSuffix":[1,"title-suffix"],"pageTitle":[1,"page-title"]}]]],["stencil-router-prompt",[[0,"stencil-router-prompt",{"when":[4],"message":[1],"history":[16],"unblock":[32]}]]],["stencil-router-redirect",[[0,"stencil-router-redirect",{"history":[16],"root":[1],"url":[1]}]]],["fl-button_46",[[0,"sss-my-own-fund",{"history":[16],"formState":[32],"isNotAllInformationProvidedMessageVisible":[32]}],[0,"sss-self-managed-fund",{"history":[16],"formState":[32],"showSmsfNotSupported":[32]}],[0,"sss-qsuper-question-1"],[0,"sss-qsuper-question-2"],[0,"sss-qsuper-question-3"],[0,"sss-qsuper-question-4"],[0,"sss-qsuper-question-5"],[0,"sss-qsuper-question-6"],[0,"sss-qsuper-question-7"],[0,"sss-qsuper-question-8"],[0,"sss-default-fund",{"history":[16],"formState":[32],"defaultFundProductName":[32]}],[0,"sss-qsuper-insurance-opt-in",{"insuranceChosen":[32]}],[0,"sss-qsuper-join"],[0,"sss-slate-standard-choice-page",{"history":[16],"formState":[32]}],[1,"super-selection-app-host",{"sessionState":[32],"jwt":[32],"appConfiguration":[32],"areStylesLoaded":[32]}],[0,"sss-qsuper-consent"],[0,"sss-super-choice-page",{"history":[16],"promotedFunds":[32],"chosenFund":[32]}],[0,"sss-promoted-fund-standard-choice-page",{"history":[16],"formState":[32]}],[0,"sss-success"],[0,"sss-promoted-fund-join-page",{"history":[16]}],[0,"sss-slate-join-page",{"history":[16]}],[0,"super-selection-app",{"accessToken":[1,"access-token"],"backendUrl":[1,"backend-url"],"appBaseUrl":[1,"app-base-url"],"history":[16],"location":[16],"isAppInitialised":[32]}],[0,"sss-my-own-fund-inputs",{"myOwnFundForm":[16],"selectedOption":[32]}],[0,"sss-self-managed-fund-inputs",{"fundForm":[16],"currentBank":[32]}],[0,"sss-loading-page"],[0,"sss-smsf-not-supported-dialog"],[0,"sss-super-choice-item",{"isSelected":[4,"is-selected"],"usi":[1],"name":[1],"logo":[1],"pdsLink":[1,"pds-link"],"features":[1],"disclaimer":[16],"abnInfo":[1,"abn-info"],"history":[16]}],[0,"sss-selected-super-choice-section",{"fundType":[1,"fund-type"],"fundName":[1,"fund-name"]}],[0,"sss-slatesuper-header"],[0,"sss-footer-section"],[4,"stencil-route-link",{"url":[1],"urlMatch":[1,"url-match"],"activeClass":[1,"active-class"],"exact":[4],"strict":[4],"custom":[1],"anchorClass":[1,"anchor-class"],"anchorRole":[1,"anchor-role"],"anchorTitle":[1,"anchor-title"],"anchorTabIndex":[1,"anchor-tab-index"],"anchorId":[1,"anchor-id"],"history":[16],"location":[16],"root":[1],"ariaHaspopup":[1,"aria-haspopup"],"ariaPosinset":[1,"aria-posinset"],"ariaSetsize":[2,"aria-setsize"],"ariaLabel":[1,"aria-label"],"match":[32]}],[4,"stencil-route-switch",{"group":[513],"scrollTopOffset":[2,"scroll-top-offset"],"location":[16],"routeViewsUpdated":[16]}],[4,"stencil-router",{"root":[1],"historyType":[1,"history-type"],"titleSuffix":[1,"title-suffix"],"scrollTopOffset":[2,"scroll-top-offset"],"location":[32],"history":[32]}],[4,"sss-custom-fund",{"history":[16],"currentCustomFund":[32],"fundOptionsList":[32]}],[0,"fl-dropdown-async",{"placeholder":[1],"searchFunction":[16],"value":[16],"required":[4],"requiredValidationMessage":[1,"required-validation-message"],"disabled":[4],"minSearchStringLength":[2,"min-search-string-length"],"searchState":[32],"inputValue":[32],"isDropdownVisible":[32],"filteredOptions":[32],"highlightedOptionIndex":[32],"selectedOption":[32]},[[2,"focus","handleFocus"],[2,"blur","handleBlur"],[2,"keydown","handleKeyDown"]]],[0,"fl-dropdown",{"placeholder":[1],"options":[16],"value":[16],"required":[4],"requiredValidationMessage":[1,"required-validation-message"],"disabled":[4],"inputValue":[32],"isDropdownVisible":[32],"filteredOptions":[32],"highlightedOptionIndex":[32],"selectedOption":[32]},[[2,"focus","handleFocus"],[2,"blur","handleBlur"],[2,"keydown","handleKeyDown"]]],[0,"sss-standard-choice-form",{"standardChoiceFormSignature":[32]}],[4,"sss-qsuper-insurance-questions"],[0,"sss-qsuper-question-yes-no-buttons",{"history":[16]}],[0,"sss-qsuper-confirm-header"],[4,"sss-qsuper-layout",{"history":[16]}],[0,"sss-notifications-section"],[4,"fl-promise-button",{"isBlockElement":[4,"is-block-element"],"isRounded":[4,"is-rounded"],"disabled":[4],"variant":[1],"promiseFn":[16],"state":[32]}],[4,"fl-button",{"isBlockElement":[4,"is-block-element"],"disabled":[4],"variant":[1]}],[0,"fl-loading-indicator",{"theme":[1]}],[0,"stencil-route",{"group":[513],"componentUpdated":[16],"match":[1040],"url":[1],"component":[1],"componentProps":[16],"exact":[4],"routeRender":[16],"scrollTopOffset":[2,"scroll-top-offset"],"routeViewsUpdated":[16],"location":[16],"history":[16],"historyType":[1,"history-type"]}]]]], options);
21
21
  });