@flarehr/apollo-super-selection 4.19.27379 → 4.20.27915

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) 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-mercer-mychoice.svg +1 -0
  3. package/dist/lib/apollo-super-selection/p-13c8f513.system.entry.js +69 -0
  4. package/dist/lib/apollo-super-selection/p-178816b4.entry.js +14 -0
  5. package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
  6. package/dist/lib/cjs/apollo-super-selection.cjs.js +1 -1
  7. package/dist/lib/cjs/loader.cjs.js +1 -1
  8. package/dist/lib/cjs/sss-button_30.cjs.entry.js +110 -26
  9. package/dist/lib/collection/components/super-selection-app/api/super-selection.api.dto.js +6 -0
  10. package/dist/lib/collection/components/super-selection-app/consent/consent.js +2 -1
  11. package/dist/lib/collection/components/super-selection-app/footer-section/footer-section.js +29 -2
  12. package/dist/lib/collection/components/super-selection-app/funds/constants.js +45 -9
  13. package/dist/lib/collection/components/super-selection-app/funds/custom-fund/member-name-input.js +2 -2
  14. package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/promoted-fund.store.js +3 -0
  15. package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v1-iframe-builder.js +15 -3
  16. package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v2-iframe-builder.js +15 -3
  17. package/dist/lib/collection/components/super-selection-app/funds/slate-super/services/slate-iframe-builder.js +2 -0
  18. package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/logo-mercer-mychoice.svg +1 -0
  19. package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +26 -0
  20. package/dist/lib/collection/components/super-selection-app/super-selection-app.js +11 -6
  21. package/dist/lib/esm/apollo-super-selection.js +1 -1
  22. package/dist/lib/esm/loader.js +1 -1
  23. package/dist/lib/esm/sss-button_30.entry.js +110 -26
  24. package/dist/lib/esm-es5/apollo-super-selection.js +1 -1
  25. package/dist/lib/esm-es5/loader.js +1 -1
  26. package/dist/lib/esm-es5/sss-button_30.entry.js +3 -3
  27. package/dist/lib/types/components/super-selection-app/api/super-selection.api.dto.d.ts +5 -0
  28. package/dist/lib/types/components/super-selection-app/footer-section/footer-section.d.ts +3 -0
  29. package/dist/lib/types/components/super-selection-app/funds/constants.d.ts +19 -0
  30. package/dist/lib/types/components/super-selection-app/funds/promoted-fund/promoted-fund.store.d.ts +1 -0
  31. package/dist/lib/types/components/super-selection-app/super-selection-app.d.ts +2 -1
  32. package/dist/lib/types/components.d.ts +3 -0
  33. package/package.json +1 -1
  34. package/dist/lib/apollo-super-selection/p-2bfabce0.system.entry.js +0 -69
  35. package/dist/lib/apollo-super-selection/p-3c19f7c1.entry.js +0 -14
@@ -1,60 +1,79 @@
1
1
  import { getAssetPath } from '@stencil/core';
2
+ import { none, some } from 'fp-ts/Option';
3
+ const PoweredByFlareFS = 'Powered by FlareFS';
2
4
  export const Slate = {
3
5
  Id: 'slate',
4
6
  Name: 'Slate Super',
5
7
  Logo: 'logo-slate.png',
6
8
  PdsUrl: 'https://slate.co/pds/?utm_source=flare&utm_medium=superselection',
7
9
  Usi: '32367272075001',
8
- DiversaAbn: '49 006 421 638'
10
+ DiversaAbn: '49 006 421 638',
11
+ FooterTextOverride: none
9
12
  };
10
13
  export const AustralianRetirementTrust = {
11
14
  Id: 'australian-retirement-trust',
12
15
  Name: 'Australian Retirement Trust',
13
16
  Logo: 'logo-art.svg',
14
17
  PdsUrl: 'https://www.australianretirementtrust.com.au/library/media/pdfs/pds/super-savings-product-disclosure-statement-and-membership-form.pdf',
15
- Abn: '60 905 115 063'
18
+ Abn: '60 905 115 063',
19
+ FooterTextOverride: none
16
20
  };
17
21
  export const Aware = {
18
22
  Id: 'aware',
19
23
  Name: 'Aware Super',
20
24
  Logo: 'logo-aware.svg',
21
25
  PdsUrl: 'https://aware.com.au/member/forms-and-resources/pds/FSS',
22
- Abn: '53 226 460 365'
26
+ Abn: '53 226 460 365',
27
+ FooterTextOverride: none
23
28
  };
24
29
  export const Active = {
25
30
  Id: 'active',
26
31
  Name: 'Active Super',
27
32
  Logo: 'logo-active.svg',
28
33
  PdsUrl: 'https://www.activesuper.com.au/pds',
29
- Abn: '28 901 371 321'
34
+ Abn: '28 901 371 321',
35
+ FooterTextOverride: some(PoweredByFlareFS)
30
36
  };
31
37
  export const AustralianEthical = {
32
38
  Id: 'australian-ethical',
33
39
  Name: 'Australian Ethical',
34
40
  Logo: 'logo-aus-eth.svg',
35
41
  PdsUrl: 'https://www.australianethical.com.au/super/pds-forms/',
36
- Abn: '43 079 259 733'
42
+ Abn: '43 079 259 733',
43
+ FooterTextOverride: none
37
44
  };
38
45
  export const Virgin = {
39
46
  Id: 'virgin',
40
47
  Name: 'Virgin Money Super',
41
48
  Logo: 'logo-virgin.svg',
42
49
  PdsUrl: 'https://virginmoney.com.au/superannuation/',
43
- Abn: '19 905 422 981'
50
+ Abn: '19 905 422 981',
51
+ FooterTextOverride: some(PoweredByFlareFS)
44
52
  };
45
53
  export const Spirit = {
46
54
  Id: 'spirit',
47
55
  Name: 'Spirit Super',
48
56
  Logo: 'logo-spirit.svg',
49
57
  PdsUrl: 'https://www.spiritsuper.com.au/pds',
50
- Abn: '74 559 365 913'
58
+ Abn: '74 559 365 913',
59
+ FooterTextOverride: none
51
60
  };
52
61
  export const First = {
53
62
  Id: 'first-super',
54
63
  Name: 'First Super',
55
64
  Logo: 'logo-first.svg',
56
65
  PdsUrl: 'https://www.firstsuper.com.au/forms-tools/product-disclosure-statements/',
57
- Abn: '56 286 625 181'
66
+ Abn: '56 286 625 181',
67
+ FooterTextOverride: none
68
+ };
69
+ export const MercerMyChoice = {
70
+ Id: 'mercermychoice',
71
+ Name: 'Mercer MyChoice',
72
+ Logo: 'logo-mercer-mychoice.svg',
73
+ PdsUrl: 'https://www.google.com.au',
74
+ TmdUrl: 'https://www.google.com.au',
75
+ Abn: '79 004 717 533',
76
+ FooterTextOverride: some(PoweredByFlareFS)
58
77
  };
59
78
  export const PromotedFundIdList = [
60
79
  { dtoPropName: 'slate', id: Slate.Id },
@@ -64,7 +83,8 @@ export const PromotedFundIdList = [
64
83
  { dtoPropName: 'australianEthical', id: AustralianEthical.Id },
65
84
  { dtoPropName: 'virgin', id: Virgin.Id },
66
85
  { dtoPropName: 'spirit', id: Spirit.Id },
67
- { dtoPropName: 'firstSuper', id: First.Id }
86
+ { dtoPropName: 'firstSuper', id: First.Id },
87
+ { dtoPropName: 'mercerMyChoice', id: MercerMyChoice.Id }
68
88
  ];
69
89
  export const getFundNameById = (id) => {
70
90
  switch (id) {
@@ -84,10 +104,23 @@ export const getFundNameById = (id) => {
84
104
  return Spirit.Name;
85
105
  case First.Id:
86
106
  return First.Name;
107
+ case MercerMyChoice.Id:
108
+ return MercerMyChoice.Name;
87
109
  default:
88
110
  return;
89
111
  }
90
112
  };
113
+ export const getFooterTextOverrideByFundId = (id) => { var _a, _b; return (_b = (_a = [
114
+ Slate,
115
+ AustralianRetirementTrust,
116
+ Aware,
117
+ Active,
118
+ AustralianEthical,
119
+ Virgin,
120
+ Spirit,
121
+ First,
122
+ MercerMyChoice
123
+ ].find((fund) => fund.Id == id)) === null || _a === void 0 ? void 0 : _a.FooterTextOverride) !== null && _b !== void 0 ? _b : none; };
91
124
  export const getFundUsiById = (id) => {
92
125
  switch (id) {
93
126
  case Slate.Id:
@@ -123,6 +156,9 @@ export const getLogoSrc = (id) => {
123
156
  case First.Id:
124
157
  logo = First.Logo;
125
158
  break;
159
+ case MercerMyChoice.Id:
160
+ logo = MercerMyChoice.Logo;
161
+ break;
126
162
  default:
127
163
  return;
128
164
  }
@@ -15,7 +15,7 @@ export class MemberNameInput {
15
15
  'shadow-sm focus:ring-primary-focus focus:border-primary-base block w-full text-base sm:text-sm border-gray-300 rounded-md': true,
16
16
  'invalid:border-red-300 invalid:text-red-900 invalid:focus:ring-red-500 invalid:focus:border-red-500': this
17
17
  .showValidationErrors
18
- }, required: true, pattern: this.NAME_PATTERN, minlength: "2", name: this.name, value: this.value, onInput: (ev) => this.handleInput(ev) }),
18
+ }, required: true, pattern: this.NAME_PATTERN, name: this.name, value: this.value, onInput: (ev) => this.handleInput(ev) }),
19
19
  this.errorMessage && (h("div", { class: "invalid-feedback mt-2 text-sm text-red-600" }, this.errorMessage))));
20
20
  }
21
21
  handleInput(ev) {
@@ -29,7 +29,7 @@ export class MemberNameInput {
29
29
  if (target.validity.valueMissing) {
30
30
  this.errorMessage = `${this.readableName} is required.`;
31
31
  }
32
- else if (target.validity.tooShort) {
32
+ else if (target.value.length < 2) {
33
33
  this.errorMessage = 'A minimum of 2 characters is required.';
34
34
  }
35
35
  else if (target.validity.patternMismatch) {
@@ -3,4 +3,7 @@ export const initial = {
3
3
  fundId: ''
4
4
  };
5
5
  const { state } = createStore(initial);
6
+ export function reset() {
7
+ state.fundId = initial.fundId;
8
+ }
6
9
  export default state;
@@ -6,6 +6,7 @@ import superSelectionAppService from '../../../services/super-selection-app.serv
6
6
  import { getFundNameById } from '../../constants';
7
7
  import promotedFundChoiceApi from '../api/promoted-fund-choice.api';
8
8
  import promotedFundState from '../promoted-fund.store';
9
+ import { reset as resetPromotedFundState } from '../promoted-fund.store';
9
10
  class PromotedFundJoinV1IFrameBuilder {
10
11
  constructor() {
11
12
  this.hostIsLocalSuperSelection = () => window.location.origin === 'http://localhost:7100';
@@ -36,11 +37,21 @@ class PromotedFundJoinV1IFrameBuilder {
36
37
  break;
37
38
  case 'success':
38
39
  if (data.memberNumber) {
40
+ const promotedFundId = promotedFundState.fundId;
39
41
  navigationService.navigateInternallyToStandardChoice({
40
42
  history,
41
- fundName: (_a = getFundNameById(promotedFundState.fundId)) !== null && _a !== void 0 ? _a : '',
42
- handleSubmitFn: (standardChoiceFormSignature) => promotedFundChoiceApi.submitChoiceAsync(Object.assign(Object.assign({}, promotedFundState), { memberNumber: data.memberNumber, memberFirstName: data.memberFirstName, memberFamilyName: data.memberFamilyName, usi: data.usi.replace(/ /g, ''), standardChoiceFormSignature, shownFunds: superSelectionAppService.promotedFunds, defaultFundUsiSet: O.toUndefined(superSelectionAppService.defaultFundUsi) })),
43
- promotedFundId: promotedFundState.fundId
43
+ fundName: (_a = getFundNameById(promotedFundId)) !== null && _a !== void 0 ? _a : '',
44
+ handleSubmitFn: (standardChoiceFormSignature) => promotedFundChoiceApi.submitChoiceAsync({
45
+ fundId: promotedFundId,
46
+ memberNumber: data.memberNumber,
47
+ memberFirstName: data.memberFirstName,
48
+ memberFamilyName: data.memberFamilyName,
49
+ usi: data.usi.replace(/ /g, ''),
50
+ standardChoiceFormSignature,
51
+ shownFunds: superSelectionAppService.promotedFunds,
52
+ defaultFundUsiSet: O.toUndefined(superSelectionAppService.defaultFundUsi)
53
+ }),
54
+ promotedFundId
44
55
  });
45
56
  break;
46
57
  }
@@ -49,6 +60,7 @@ class PromotedFundJoinV1IFrameBuilder {
49
60
  navigationService.navigateInternally(history, SuperSelectionAppRoutes.ChoicePage);
50
61
  break;
51
62
  }
63
+ resetPromotedFundState();
52
64
  return;
53
65
  }
54
66
  if (data.sender === 'promoted-fund-join') {
@@ -6,6 +6,7 @@ import superSelectionAppService from '../../../services/super-selection-app.serv
6
6
  import { getFundNameById } from '../../constants';
7
7
  import promotedFundChoiceApi from '../api/promoted-fund-choice.api';
8
8
  import promotedFundState from '../promoted-fund.store';
9
+ import { reset as resetPromotedFundState } from '../promoted-fund.store';
9
10
  class PromotedFundJoinV2IFrameBuilder {
10
11
  constructor() {
11
12
  this.environmentDiscriminator = () => {
@@ -42,11 +43,21 @@ class PromotedFundJoinV2IFrameBuilder {
42
43
  break;
43
44
  case 'success':
44
45
  if (data.memberNumber) {
46
+ const promotedFundId = promotedFundState.fundId;
45
47
  navigationService.navigateInternallyToStandardChoice({
46
48
  history,
47
- fundName: (_a = getFundNameById(promotedFundState.fundId)) !== null && _a !== void 0 ? _a : '',
48
- handleSubmitFn: (standardChoiceFormSignature) => promotedFundChoiceApi.submitChoiceAsync(Object.assign(Object.assign({}, promotedFundState), { memberNumber: data.memberNumber, memberFirstName: data.memberFirstName, memberFamilyName: data.memberFamilyName, usi: data.usi.replace(/ /g, ''), standardChoiceFormSignature, shownFunds: superSelectionAppService.promotedFunds, defaultFundUsiSet: O.toUndefined(superSelectionAppService.defaultFundUsi) })),
49
- promotedFundId: promotedFundState.fundId
49
+ fundName: (_a = getFundNameById(promotedFundId)) !== null && _a !== void 0 ? _a : '',
50
+ handleSubmitFn: (standardChoiceFormSignature) => promotedFundChoiceApi.submitChoiceAsync({
51
+ fundId: promotedFundId,
52
+ memberNumber: data.memberNumber,
53
+ memberFirstName: data.memberFirstName,
54
+ memberFamilyName: data.memberFamilyName,
55
+ usi: data.usi.replace(/ /g, ''),
56
+ standardChoiceFormSignature,
57
+ shownFunds: superSelectionAppService.promotedFunds,
58
+ defaultFundUsiSet: O.toUndefined(superSelectionAppService.defaultFundUsi)
59
+ }),
60
+ promotedFundId
50
61
  });
51
62
  break;
52
63
  }
@@ -55,6 +66,7 @@ class PromotedFundJoinV2IFrameBuilder {
55
66
  navigationService.navigateInternally(history, SuperSelectionAppRoutes.ChoicePage);
56
67
  break;
57
68
  }
69
+ resetPromotedFundState();
58
70
  return;
59
71
  }
60
72
  if (data.sender === 'promoted-fund-join') {
@@ -4,6 +4,7 @@ import navigationService from '../../../services/navigation.service';
4
4
  import { SuperSelectionAppRoutes } from '../../../services/super-selection-app.routes';
5
5
  import superSelectionAppService from '../../../services/super-selection-app.service';
6
6
  import { Slate } from '../../constants';
7
+ import { reset as resetPromotedFundState } from '../../promoted-fund/promoted-fund.store';
7
8
  import slateChoiceApi from '../api/slate-choice.api';
8
9
  class SlateIFrameBuilder {
9
10
  constructor() {
@@ -68,6 +69,7 @@ class SlateIFrameBuilder {
68
69
  navigationService.navigateInternally(history, SuperSelectionAppRoutes.ChoicePage);
69
70
  break;
70
71
  }
72
+ resetPromotedFundState();
71
73
  return;
72
74
  }
73
75
  if (data.sender === 'flare' && origin.endsWith('join.slatesuper.com.au')) {
@@ -0,0 +1 @@
1
+ <svg id="Mercer" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 473.89 73.8"><defs><style>.cls-1{fill:#002c77;}</style></defs><path class="cls-1" d="M157.17,69.88V4.14H170l22.67,35.3,22.92-35.3H228V69.88H216.08V22.31L192.55,58.73,169.11,22.4V69.88Z"/><path class="cls-1" d="M266.37,71.44a33,33,0,0,1-14.44-3,23.15,23.15,0,0,1-10-8.91q-3.63-5.88-3.63-14.44a28.55,28.55,0,0,1,3.24-13.84,24.21,24.21,0,0,1,8.95-9.39,25,25,0,0,1,13.06-3.41,23.72,23.72,0,0,1,12.24,3.07,20.73,20.73,0,0,1,8.09,8.6,28,28,0,0,1,2.86,13c0,.69,0,1.37-.09,2s-.14,1.66-.26,3H249.76a15,15,0,0,0,5.54,9.73q4.5,3.49,12.11,3.5a29.22,29.22,0,0,0,17.82-6V65.56a33.79,33.79,0,0,1-8.87,4.28A32.3,32.3,0,0,1,266.37,71.44Zm-3.29-44a12.22,12.22,0,0,0-9,3.42q-3.47,3.42-4.33,9.56h25.95a9.91,9.91,0,0,0-.17-2,13.31,13.31,0,0,0-4.06-8.18A12.31,12.31,0,0,0,263.08,27.41Z"/><path class="cls-1" d="M297.25,69.88V20h11.16l.09,10.38a18,18,0,0,1,6.05-8.13,15,15,0,0,1,9.17-3,25.23,25.23,0,0,1,3.29.25,14.23,14.23,0,0,1,3,.7V31.3a31.73,31.73,0,0,0-7.79-1.12c-4.32,0-7.63,1.4-9.9,4.2s-3.42,6.84-3.42,12.15V69.88Z"/><path class="cls-1" d="M361,71.44a29.28,29.28,0,0,1-14-3.2,22.2,22.2,0,0,1-9.21-9.13,28.44,28.44,0,0,1-3.24-13.88,28.51,28.51,0,0,1,3.33-14,23.93,23.93,0,0,1,9.25-9.39,27.21,27.21,0,0,1,13.71-3.37,25.51,25.51,0,0,1,7.18.95,48.18,48.18,0,0,1,6.23,2.25V32.43a25.27,25.27,0,0,0-12.54-3.55q-7,0-11.2,4.28t-4.2,11.64q0,7.7,4.2,12t11.63,4.28a22.54,22.54,0,0,0,5.8-.73A44.65,44.65,0,0,0,374.2,58v10.3a31.58,31.58,0,0,1-6.1,2.25A28.61,28.61,0,0,1,361,71.44Z"/><path class="cls-1" d="M409.23,71.44a32.94,32.94,0,0,1-14.44-3,23.15,23.15,0,0,1-10-8.91q-3.63-5.88-3.63-14.44a28.55,28.55,0,0,1,3.24-13.84,24.21,24.21,0,0,1,8.95-9.39,25,25,0,0,1,13.06-3.41,23.72,23.72,0,0,1,12.24,3.07,20.73,20.73,0,0,1,8.09,8.6,28,28,0,0,1,2.86,13c0,.69,0,1.37-.09,2s-.15,1.66-.26,3H392.62a15,15,0,0,0,5.54,9.73q4.5,3.49,12.11,3.5a29.22,29.22,0,0,0,17.82-6V65.56a33.79,33.79,0,0,1-8.87,4.28A32.3,32.3,0,0,1,409.23,71.44Zm-3.29-44a12.22,12.22,0,0,0-9,3.42q-3.46,3.42-4.33,9.56h25.95a9.91,9.91,0,0,0-.17-2,13.27,13.27,0,0,0-4.07-8.18A12.26,12.26,0,0,0,405.94,27.41Z"/><path class="cls-1" d="M441.11,69.88V20h11.16l.09,10.38a18,18,0,0,1,6.05-8.13,15,15,0,0,1,9.17-3,25.23,25.23,0,0,1,3.29.25,14.26,14.26,0,0,1,3,.7V31.3a26.81,26.81,0,0,0-3.63-.77,27.53,27.53,0,0,0-4.15-.35q-6.5,0-9.9,4.2t-3.42,12.15V69.88Z"/><path class="cls-1" d="M120.93,15.94,94.65.8a7.46,7.46,0,0,0-6.73,0L15.4,42.57,55.53,11.83,36.38.8a7.46,7.46,0,0,0-6.73,0L3.36,15.94A7.46,7.46,0,0,0,0,21.76V52a7.46,7.46,0,0,0,3.36,5.82L29.65,73a7.46,7.46,0,0,0,6.73,0L108.9,31.23,68.77,62,87.92,73a7.46,7.46,0,0,0,6.73,0l26.28-15.14A7.47,7.47,0,0,0,124.3,52V21.77A7.47,7.47,0,0,0,120.93,15.94Z"/></svg>
@@ -298,6 +298,32 @@ export class SuperChoicePage {
298
298
  ". Past performance is not a reliable indicator of future performance."),
299
299
  h("br", null),
300
300
  h("p", null, "Issued by First Super Pty Ltd ABN 42 053 498 472, AFSL 223988 (Trustee) as Trustee of First Super ABN 56 286 625 181.")))
301
+ },
302
+ {
303
+ fundId: constants.MercerMyChoice.Id,
304
+ name: constants.MercerMyChoice.Name,
305
+ logo: constants.MercerMyChoice.Logo,
306
+ route: SuperSelectionAppRoutes.PromotedFundJoinV2,
307
+ features: [
308
+ h("p", null, "Save more super with our low fees"),
309
+ h("p", null, "Take control with 6 MyChoice investment options"),
310
+ h("p", null, "Join 850,000 Australians who trust our global expertise")
311
+ ],
312
+ disclaimer: (h("div", null,
313
+ h("p", null,
314
+ "You should consider the",
315
+ ' ',
316
+ h(Link, { href: constants.MercerMyChoice.PdsUrl, onClick: () => this.pdsViewedAsync(constants.MercerMyChoice.Name) }, "Product Disclosure Statement"),
317
+ ' ',
318
+ "and",
319
+ ' ',
320
+ h(Link, { href: constants.MercerMyChoice.TmdUrl }, "Target Market Determination"),
321
+ ' ',
322
+ "before deciding to invest in or apply to become a member of the fund."),
323
+ h("br", null),
324
+ h("p", null,
325
+ "Issued by Mercer Superannuation (Australia) Limited (\u2018Mercer Super\u2019) ABN: ",
326
+ constants.MercerMyChoice.Abn)))
301
327
  }
302
328
  ];
303
329
  }
@@ -3,6 +3,8 @@ import { injectHistory } from '@stencil/router';
3
3
  import * as O from 'fp-ts/lib/Option';
4
4
  import { isSome } from 'fp-ts/lib/Option';
5
5
  import iframe from '../../utils/iframe';
6
+ import * as constants from './funds/constants';
7
+ import promotedFundState from './funds/promoted-fund/promoted-fund.store';
6
8
  import existingFundService from './services/existing-super-choice-info.service';
7
9
  import { FeatureFlagService } from './services/feature-flag.service';
8
10
  import navigationService from './services/navigation.service';
@@ -74,6 +76,14 @@ export class SuperSelectionApp {
74
76
  h("link", { rel: "stylesheet", href: getAssetPath('apollo-super-selection.css'), media: "all" }),
75
77
  this.renderAppContent()));
76
78
  }
79
+ isFundJoinPage() {
80
+ return (window.location.pathname.includes(SuperSelectionAppRoutes.SlateJoin) ||
81
+ window.location.pathname.includes(SuperSelectionAppRoutes.PromotedFundJoinV1) ||
82
+ window.location.pathname.includes(SuperSelectionAppRoutes.PromotedFundJoinV2));
83
+ }
84
+ getFooterTextOverride() {
85
+ return constants.getFooterTextOverrideByFundId(promotedFundState.fundId);
86
+ }
77
87
  routerBaseUrl() {
78
88
  var _a;
79
89
  return ((_a = this.appBaseUrl) === null || _a === void 0 ? void 0 : _a.replace(/\/$/, '')) + '/';
@@ -86,14 +96,9 @@ export class SuperSelectionApp {
86
96
  '-mt-28': this.isFundJoinPage() // -mt value same as pt to negate it in embedded fund join pages
87
97
  } },
88
98
  superSelectionAppStencilRoutes,
89
- h("sss-footer-section", null))) : (h("div", { class: "flex justify-center py-20" },
99
+ h("sss-footer-section", { textOverride: this.getFooterTextOverride() }))) : (h("div", { class: "flex justify-center py-20" },
90
100
  h("sss-loading-indicator", null))))));
91
101
  }
92
- isFundJoinPage() {
93
- return (window.location.pathname.includes(SuperSelectionAppRoutes.SlateJoin) ||
94
- window.location.pathname.includes(SuperSelectionAppRoutes.PromotedFundJoinV1) ||
95
- window.location.pathname.includes(SuperSelectionAppRoutes.PromotedFundJoinV2));
96
- }
97
102
  static get is() { return "super-selection-app"; }
98
103
  static get encapsulation() { return "shadow"; }
99
104
  static get originalStyleUrls() { return {
@@ -16,5 +16,5 @@ const patchBrowser = () => {
16
16
 
17
17
  patchBrowser().then(options => {
18
18
  globalScripts();
19
- return bootstrapLazy([["context-consumer",[[0,"context-consumer",{"context":[16],"renderer":[16],"subscribe":[16],"unsubscribe":[32]}]]],["stencil-async-content",[[0,"stencil-async-content",{"documentLocation":[1,"document-location"],"content":[32]}]]],["stencil-route-title",[[0,"stencil-route-title",{"titleSuffix":[1,"title-suffix"],"pageTitle":[1,"page-title"]}]]],["stencil-router-prompt",[[0,"stencil-router-prompt",{"when":[4],"message":[1],"history":[16],"unblock":[32]}]]],["stencil-router-redirect",[[0,"stencil-router-redirect",{"history":[16],"root":[1],"url":[1]}]]],["sss-button_30",[[0,"sss-my-own-fund",{"history":[16],"formState":[32],"isNotAllInformationProvidedMessageVisible":[32],"isSubmitDisabled":[32]}],[0,"sss-self-managed-fund",{"history":[16],"formState":[32],"isSubmitDisabled":[32]}],[0,"sss-super-choice-page",{"history":[16],"promotedFunds":[32]}],[1,"super-selection-app-host",{"sessionState":[32],"jwt":[32],"appConfiguration":[32],"ignoreExistingSelection":[32]}],[0,"sss-default-fund",{"history":[16],"defaultFundProductName":[32]}],[0,"sss-standard-choice-form",{"history":[16],"standardChoiceFormSignature":[32],"formState":[32],"isSubmitDisabled":[32]}],[0,"sss-consent-page",{"history":[16]}],[0,"sss-existing-choice-page",{"history":[16],"existingFund":[32]}],[0,"sss-promoted-fund-join-v1-page",{"history":[16]}],[0,"sss-promoted-fund-join-v2-page",{"history":[16]}],[0,"sss-slate-join-page",{"history":[16]}],[0,"sss-success"],[1,"super-selection-app",{"ignoreExistingSelection":[4,"ignore-existing-selection"],"accessToken":[1,"access-token"],"backendUrl":[1,"backend-url"],"appBaseUrl":[1,"app-base-url"],"history":[16],"location":[16],"isSelfHosted":[4,"is-self-hosted"],"isAppInitialised":[32]}],[0,"sss-my-own-fund-inputs",{"myOwnFundForm":[16],"showValidationErrors":[4,"show-validation-errors"],"selectedOption":[32]}],[0,"sss-self-managed-fund-inputs",{"fundForm":[16],"showValidationErrors":[4,"show-validation-errors"],"isAbnValid":[32],"isAbnTouched":[32],"isAbnUsedForRegulated":[32],"currentBank":[32],"addressErrorMessage":[32]}],[0,"sss-super-choice-item-bottom",{"disclaimer":[16],"abnInfo":[1,"abn-info"],"abn":[1]}],[0,"sss-loading-page"],[0,"sss-super-choice-item-top",{"name":[1],"logo":[1],"features":[16],"featureSubText":[16]}],[0,"sss-dropdown-async",{"placeholder":[1],"searchFunction":[16],"value":[16],"required":[4],"requiredValidationMessage":[1,"required-validation-message"],"disabled":[4],"minSearchStringLength":[2,"min-search-string-length"],"showValidationErrors":[4,"show-validation-errors"],"searchState":[32],"inputValue":[32],"isDropdownVisible":[32],"filteredOptions":[32],"highlightedOptionIndex":[32],"selectedOption":[32]},[[2,"focus","handleFocus"],[2,"blur","handleBlur"],[2,"keydown","handleKeyDown"]]],[0,"sss-footer-section"],[4,"stencil-route-switch",{"group":[513],"scrollTopOffset":[2,"scroll-top-offset"],"location":[16],"routeViewsUpdated":[16]}],[4,"stencil-router",{"root":[1],"historyType":[1,"history-type"],"titleSuffix":[1,"title-suffix"],"scrollTopOffset":[2,"scroll-top-offset"],"location":[32],"history":[32]}],[4,"sss-custom-fund",{"history":[16],"currentCustomFund":[32],"fundOptionsList":[32],"showFundOptionsSelection":[32]}],[0,"sss-iframe-host",{"build":[16]}],[0,"sss-header-section",{"currentPage":[1,"current-page"]}],[0,"sss-name-input",{"value":[1],"name":[1],"readableName":[1,"readable-name"],"showValidationErrors":[4,"show-validation-errors"],"errorMessage":[32]}],[4,"stencil-route-link",{"url":[1],"urlMatch":[1,"url-match"],"activeClass":[1,"active-class"],"exact":[4],"strict":[4],"custom":[1],"anchorClass":[1,"anchor-class"],"anchorRole":[1,"anchor-role"],"anchorTitle":[1,"anchor-title"],"anchorTabIndex":[1,"anchor-tab-index"],"anchorId":[1,"anchor-id"],"history":[16],"location":[16],"root":[1],"ariaHaspopup":[1,"aria-haspopup"],"ariaPosinset":[1,"aria-posinset"],"ariaSetsize":[2,"aria-setsize"],"ariaLabel":[1,"aria-label"],"match":[32]}],[4,"sss-button",{"fillWidth":[4,"fill-width"],"fillWidthOnMobile":[4,"fill-width-on-mobile"],"disabled":[4],"variant":[1],"size":[1],"promiseFn":[16],"state":[32]}],[0,"sss-loading-indicator",{"theme":[1],"size":[2]}],[0,"stencil-route",{"group":[513],"componentUpdated":[16],"match":[1040],"url":[1],"component":[1],"componentProps":[16],"exact":[4],"routeRender":[16],"scrollTopOffset":[2,"scroll-top-offset"],"routeViewsUpdated":[16],"location":[16],"history":[16],"historyType":[1,"history-type"]}]]]], options);
19
+ return bootstrapLazy([["context-consumer",[[0,"context-consumer",{"context":[16],"renderer":[16],"subscribe":[16],"unsubscribe":[32]}]]],["stencil-async-content",[[0,"stencil-async-content",{"documentLocation":[1,"document-location"],"content":[32]}]]],["stencil-route-title",[[0,"stencil-route-title",{"titleSuffix":[1,"title-suffix"],"pageTitle":[1,"page-title"]}]]],["stencil-router-prompt",[[0,"stencil-router-prompt",{"when":[4],"message":[1],"history":[16],"unblock":[32]}]]],["stencil-router-redirect",[[0,"stencil-router-redirect",{"history":[16],"root":[1],"url":[1]}]]],["sss-button_30",[[0,"sss-my-own-fund",{"history":[16],"formState":[32],"isNotAllInformationProvidedMessageVisible":[32],"isSubmitDisabled":[32]}],[0,"sss-self-managed-fund",{"history":[16],"formState":[32],"isSubmitDisabled":[32]}],[0,"sss-super-choice-page",{"history":[16],"promotedFunds":[32]}],[1,"super-selection-app-host",{"sessionState":[32],"jwt":[32],"appConfiguration":[32],"ignoreExistingSelection":[32]}],[0,"sss-default-fund",{"history":[16],"defaultFundProductName":[32]}],[0,"sss-standard-choice-form",{"history":[16],"standardChoiceFormSignature":[32],"formState":[32],"isSubmitDisabled":[32]}],[0,"sss-consent-page",{"history":[16]}],[0,"sss-existing-choice-page",{"history":[16],"existingFund":[32]}],[0,"sss-promoted-fund-join-v1-page",{"history":[16]}],[0,"sss-promoted-fund-join-v2-page",{"history":[16]}],[0,"sss-slate-join-page",{"history":[16]}],[0,"sss-success"],[1,"super-selection-app",{"ignoreExistingSelection":[4,"ignore-existing-selection"],"accessToken":[1,"access-token"],"backendUrl":[1,"backend-url"],"appBaseUrl":[1,"app-base-url"],"history":[16],"location":[16],"isSelfHosted":[4,"is-self-hosted"],"isAppInitialised":[32]}],[0,"sss-my-own-fund-inputs",{"myOwnFundForm":[16],"showValidationErrors":[4,"show-validation-errors"],"selectedOption":[32]}],[0,"sss-self-managed-fund-inputs",{"fundForm":[16],"showValidationErrors":[4,"show-validation-errors"],"isAbnValid":[32],"isAbnTouched":[32],"isAbnUsedForRegulated":[32],"currentBank":[32],"addressErrorMessage":[32]}],[0,"sss-super-choice-item-bottom",{"disclaimer":[16],"abnInfo":[1,"abn-info"],"abn":[1]}],[0,"sss-loading-page"],[0,"sss-super-choice-item-top",{"name":[1],"logo":[1],"features":[16],"featureSubText":[16]}],[0,"sss-dropdown-async",{"placeholder":[1],"searchFunction":[16],"value":[16],"required":[4],"requiredValidationMessage":[1,"required-validation-message"],"disabled":[4],"minSearchStringLength":[2,"min-search-string-length"],"showValidationErrors":[4,"show-validation-errors"],"searchState":[32],"inputValue":[32],"isDropdownVisible":[32],"filteredOptions":[32],"highlightedOptionIndex":[32],"selectedOption":[32]},[[2,"focus","handleFocus"],[2,"blur","handleBlur"],[2,"keydown","handleKeyDown"]]],[0,"sss-footer-section",{"textOverride":[16]}],[4,"stencil-route-switch",{"group":[513],"scrollTopOffset":[2,"scroll-top-offset"],"location":[16],"routeViewsUpdated":[16]}],[4,"stencil-router",{"root":[1],"historyType":[1,"history-type"],"titleSuffix":[1,"title-suffix"],"scrollTopOffset":[2,"scroll-top-offset"],"location":[32],"history":[32]}],[4,"sss-custom-fund",{"history":[16],"currentCustomFund":[32],"fundOptionsList":[32],"showFundOptionsSelection":[32]}],[0,"sss-iframe-host",{"build":[16]}],[0,"sss-header-section",{"currentPage":[1,"current-page"]}],[0,"sss-name-input",{"value":[1],"name":[1],"readableName":[1,"readable-name"],"showValidationErrors":[4,"show-validation-errors"],"errorMessage":[32]}],[4,"stencil-route-link",{"url":[1],"urlMatch":[1,"url-match"],"activeClass":[1,"active-class"],"exact":[4],"strict":[4],"custom":[1],"anchorClass":[1,"anchor-class"],"anchorRole":[1,"anchor-role"],"anchorTitle":[1,"anchor-title"],"anchorTabIndex":[1,"anchor-tab-index"],"anchorId":[1,"anchor-id"],"history":[16],"location":[16],"root":[1],"ariaHaspopup":[1,"aria-haspopup"],"ariaPosinset":[1,"aria-posinset"],"ariaSetsize":[2,"aria-setsize"],"ariaLabel":[1,"aria-label"],"match":[32]}],[4,"sss-button",{"fillWidth":[4,"fill-width"],"fillWidthOnMobile":[4,"fill-width-on-mobile"],"disabled":[4],"variant":[1],"size":[1],"promiseFn":[16],"state":[32]}],[0,"sss-loading-indicator",{"theme":[1],"size":[2]}],[0,"stencil-route",{"group":[513],"componentUpdated":[16],"match":[1040],"url":[1],"component":[1],"componentProps":[16],"exact":[4],"routeRender":[16],"scrollTopOffset":[2,"scroll-top-offset"],"routeViewsUpdated":[16],"location":[16],"history":[16],"historyType":[1,"history-type"]}]]]], options);
20
20
  });
@@ -13,7 +13,7 @@ const defineCustomElements = (win, options) => {
13
13
  if (typeof window === 'undefined') return Promise.resolve();
14
14
  return patchEsm().then(() => {
15
15
  globalScripts();
16
- return bootstrapLazy([["context-consumer",[[0,"context-consumer",{"context":[16],"renderer":[16],"subscribe":[16],"unsubscribe":[32]}]]],["stencil-async-content",[[0,"stencil-async-content",{"documentLocation":[1,"document-location"],"content":[32]}]]],["stencil-route-title",[[0,"stencil-route-title",{"titleSuffix":[1,"title-suffix"],"pageTitle":[1,"page-title"]}]]],["stencil-router-prompt",[[0,"stencil-router-prompt",{"when":[4],"message":[1],"history":[16],"unblock":[32]}]]],["stencil-router-redirect",[[0,"stencil-router-redirect",{"history":[16],"root":[1],"url":[1]}]]],["sss-button_30",[[0,"sss-my-own-fund",{"history":[16],"formState":[32],"isNotAllInformationProvidedMessageVisible":[32],"isSubmitDisabled":[32]}],[0,"sss-self-managed-fund",{"history":[16],"formState":[32],"isSubmitDisabled":[32]}],[0,"sss-super-choice-page",{"history":[16],"promotedFunds":[32]}],[1,"super-selection-app-host",{"sessionState":[32],"jwt":[32],"appConfiguration":[32],"ignoreExistingSelection":[32]}],[0,"sss-default-fund",{"history":[16],"defaultFundProductName":[32]}],[0,"sss-standard-choice-form",{"history":[16],"standardChoiceFormSignature":[32],"formState":[32],"isSubmitDisabled":[32]}],[0,"sss-consent-page",{"history":[16]}],[0,"sss-existing-choice-page",{"history":[16],"existingFund":[32]}],[0,"sss-promoted-fund-join-v1-page",{"history":[16]}],[0,"sss-promoted-fund-join-v2-page",{"history":[16]}],[0,"sss-slate-join-page",{"history":[16]}],[0,"sss-success"],[1,"super-selection-app",{"ignoreExistingSelection":[4,"ignore-existing-selection"],"accessToken":[1,"access-token"],"backendUrl":[1,"backend-url"],"appBaseUrl":[1,"app-base-url"],"history":[16],"location":[16],"isSelfHosted":[4,"is-self-hosted"],"isAppInitialised":[32]}],[0,"sss-my-own-fund-inputs",{"myOwnFundForm":[16],"showValidationErrors":[4,"show-validation-errors"],"selectedOption":[32]}],[0,"sss-self-managed-fund-inputs",{"fundForm":[16],"showValidationErrors":[4,"show-validation-errors"],"isAbnValid":[32],"isAbnTouched":[32],"isAbnUsedForRegulated":[32],"currentBank":[32],"addressErrorMessage":[32]}],[0,"sss-super-choice-item-bottom",{"disclaimer":[16],"abnInfo":[1,"abn-info"],"abn":[1]}],[0,"sss-loading-page"],[0,"sss-super-choice-item-top",{"name":[1],"logo":[1],"features":[16],"featureSubText":[16]}],[0,"sss-dropdown-async",{"placeholder":[1],"searchFunction":[16],"value":[16],"required":[4],"requiredValidationMessage":[1,"required-validation-message"],"disabled":[4],"minSearchStringLength":[2,"min-search-string-length"],"showValidationErrors":[4,"show-validation-errors"],"searchState":[32],"inputValue":[32],"isDropdownVisible":[32],"filteredOptions":[32],"highlightedOptionIndex":[32],"selectedOption":[32]},[[2,"focus","handleFocus"],[2,"blur","handleBlur"],[2,"keydown","handleKeyDown"]]],[0,"sss-footer-section"],[4,"stencil-route-switch",{"group":[513],"scrollTopOffset":[2,"scroll-top-offset"],"location":[16],"routeViewsUpdated":[16]}],[4,"stencil-router",{"root":[1],"historyType":[1,"history-type"],"titleSuffix":[1,"title-suffix"],"scrollTopOffset":[2,"scroll-top-offset"],"location":[32],"history":[32]}],[4,"sss-custom-fund",{"history":[16],"currentCustomFund":[32],"fundOptionsList":[32],"showFundOptionsSelection":[32]}],[0,"sss-iframe-host",{"build":[16]}],[0,"sss-header-section",{"currentPage":[1,"current-page"]}],[0,"sss-name-input",{"value":[1],"name":[1],"readableName":[1,"readable-name"],"showValidationErrors":[4,"show-validation-errors"],"errorMessage":[32]}],[4,"stencil-route-link",{"url":[1],"urlMatch":[1,"url-match"],"activeClass":[1,"active-class"],"exact":[4],"strict":[4],"custom":[1],"anchorClass":[1,"anchor-class"],"anchorRole":[1,"anchor-role"],"anchorTitle":[1,"anchor-title"],"anchorTabIndex":[1,"anchor-tab-index"],"anchorId":[1,"anchor-id"],"history":[16],"location":[16],"root":[1],"ariaHaspopup":[1,"aria-haspopup"],"ariaPosinset":[1,"aria-posinset"],"ariaSetsize":[2,"aria-setsize"],"ariaLabel":[1,"aria-label"],"match":[32]}],[4,"sss-button",{"fillWidth":[4,"fill-width"],"fillWidthOnMobile":[4,"fill-width-on-mobile"],"disabled":[4],"variant":[1],"size":[1],"promiseFn":[16],"state":[32]}],[0,"sss-loading-indicator",{"theme":[1],"size":[2]}],[0,"stencil-route",{"group":[513],"componentUpdated":[16],"match":[1040],"url":[1],"component":[1],"componentProps":[16],"exact":[4],"routeRender":[16],"scrollTopOffset":[2,"scroll-top-offset"],"routeViewsUpdated":[16],"location":[16],"history":[16],"historyType":[1,"history-type"]}]]]], options);
16
+ return bootstrapLazy([["context-consumer",[[0,"context-consumer",{"context":[16],"renderer":[16],"subscribe":[16],"unsubscribe":[32]}]]],["stencil-async-content",[[0,"stencil-async-content",{"documentLocation":[1,"document-location"],"content":[32]}]]],["stencil-route-title",[[0,"stencil-route-title",{"titleSuffix":[1,"title-suffix"],"pageTitle":[1,"page-title"]}]]],["stencil-router-prompt",[[0,"stencil-router-prompt",{"when":[4],"message":[1],"history":[16],"unblock":[32]}]]],["stencil-router-redirect",[[0,"stencil-router-redirect",{"history":[16],"root":[1],"url":[1]}]]],["sss-button_30",[[0,"sss-my-own-fund",{"history":[16],"formState":[32],"isNotAllInformationProvidedMessageVisible":[32],"isSubmitDisabled":[32]}],[0,"sss-self-managed-fund",{"history":[16],"formState":[32],"isSubmitDisabled":[32]}],[0,"sss-super-choice-page",{"history":[16],"promotedFunds":[32]}],[1,"super-selection-app-host",{"sessionState":[32],"jwt":[32],"appConfiguration":[32],"ignoreExistingSelection":[32]}],[0,"sss-default-fund",{"history":[16],"defaultFundProductName":[32]}],[0,"sss-standard-choice-form",{"history":[16],"standardChoiceFormSignature":[32],"formState":[32],"isSubmitDisabled":[32]}],[0,"sss-consent-page",{"history":[16]}],[0,"sss-existing-choice-page",{"history":[16],"existingFund":[32]}],[0,"sss-promoted-fund-join-v1-page",{"history":[16]}],[0,"sss-promoted-fund-join-v2-page",{"history":[16]}],[0,"sss-slate-join-page",{"history":[16]}],[0,"sss-success"],[1,"super-selection-app",{"ignoreExistingSelection":[4,"ignore-existing-selection"],"accessToken":[1,"access-token"],"backendUrl":[1,"backend-url"],"appBaseUrl":[1,"app-base-url"],"history":[16],"location":[16],"isSelfHosted":[4,"is-self-hosted"],"isAppInitialised":[32]}],[0,"sss-my-own-fund-inputs",{"myOwnFundForm":[16],"showValidationErrors":[4,"show-validation-errors"],"selectedOption":[32]}],[0,"sss-self-managed-fund-inputs",{"fundForm":[16],"showValidationErrors":[4,"show-validation-errors"],"isAbnValid":[32],"isAbnTouched":[32],"isAbnUsedForRegulated":[32],"currentBank":[32],"addressErrorMessage":[32]}],[0,"sss-super-choice-item-bottom",{"disclaimer":[16],"abnInfo":[1,"abn-info"],"abn":[1]}],[0,"sss-loading-page"],[0,"sss-super-choice-item-top",{"name":[1],"logo":[1],"features":[16],"featureSubText":[16]}],[0,"sss-dropdown-async",{"placeholder":[1],"searchFunction":[16],"value":[16],"required":[4],"requiredValidationMessage":[1,"required-validation-message"],"disabled":[4],"minSearchStringLength":[2,"min-search-string-length"],"showValidationErrors":[4,"show-validation-errors"],"searchState":[32],"inputValue":[32],"isDropdownVisible":[32],"filteredOptions":[32],"highlightedOptionIndex":[32],"selectedOption":[32]},[[2,"focus","handleFocus"],[2,"blur","handleBlur"],[2,"keydown","handleKeyDown"]]],[0,"sss-footer-section",{"textOverride":[16]}],[4,"stencil-route-switch",{"group":[513],"scrollTopOffset":[2,"scroll-top-offset"],"location":[16],"routeViewsUpdated":[16]}],[4,"stencil-router",{"root":[1],"historyType":[1,"history-type"],"titleSuffix":[1,"title-suffix"],"scrollTopOffset":[2,"scroll-top-offset"],"location":[32],"history":[32]}],[4,"sss-custom-fund",{"history":[16],"currentCustomFund":[32],"fundOptionsList":[32],"showFundOptionsSelection":[32]}],[0,"sss-iframe-host",{"build":[16]}],[0,"sss-header-section",{"currentPage":[1,"current-page"]}],[0,"sss-name-input",{"value":[1],"name":[1],"readableName":[1,"readable-name"],"showValidationErrors":[4,"show-validation-errors"],"errorMessage":[32]}],[4,"stencil-route-link",{"url":[1],"urlMatch":[1,"url-match"],"activeClass":[1,"active-class"],"exact":[4],"strict":[4],"custom":[1],"anchorClass":[1,"anchor-class"],"anchorRole":[1,"anchor-role"],"anchorTitle":[1,"anchor-title"],"anchorTabIndex":[1,"anchor-tab-index"],"anchorId":[1,"anchor-id"],"history":[16],"location":[16],"root":[1],"ariaHaspopup":[1,"aria-haspopup"],"ariaPosinset":[1,"aria-posinset"],"ariaSetsize":[2,"aria-setsize"],"ariaLabel":[1,"aria-label"],"match":[32]}],[4,"sss-button",{"fillWidth":[4,"fill-width"],"fillWidthOnMobile":[4,"fill-width-on-mobile"],"disabled":[4],"variant":[1],"size":[1],"promiseFn":[16],"state":[32]}],[0,"sss-loading-indicator",{"theme":[1],"size":[2]}],[0,"stencil-route",{"group":[513],"componentUpdated":[16],"match":[1040],"url":[1],"component":[1],"componentProps":[16],"exact":[4],"routeRender":[16],"scrollTopOffset":[2,"scroll-top-offset"],"routeViewsUpdated":[16],"location":[16],"history":[16],"historyType":[1,"history-type"]}]]]], options);
17
17
  });
18
18
  };
19
19