@flarehr/apollo-super-selection 4.54.43093 → 4.56.44913

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/p-1a253321.entry.js +14 -0
  3. package/dist/lib/apollo-super-selection/p-47600481.system.entry.js +69 -0
  4. package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
  5. package/dist/lib/cjs/apollo-super-selection.cjs.js +1 -1
  6. package/dist/lib/cjs/loader.cjs.js +1 -1
  7. package/dist/lib/cjs/sss-button_41.cjs.entry.js +182 -68
  8. package/dist/lib/collection/components/super-campaign/super-campaign-types.js +1 -0
  9. package/dist/lib/collection/components/super-campaign/super-campaign.js +144 -1
  10. package/dist/lib/collection/components/super-selection-app/api/super-selection-events.model.js +16 -1
  11. package/dist/lib/collection/components/super-selection-app/consent/consent.js +5 -10
  12. package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v2-iframe-builder.js +3 -5
  13. package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/types.js +2 -1
  14. package/dist/lib/collection/components/super-selection-app/services/event-tracking.service.js +0 -20
  15. package/dist/lib/collection/components/super-selection-app/services/super-selection-app.service.js +6 -0
  16. package/dist/lib/collection/components/super-selection-app/services/super-selection.store.js +4 -1
  17. package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +6 -3
  18. package/dist/lib/esm/apollo-super-selection.js +1 -1
  19. package/dist/lib/esm/loader.js +1 -1
  20. package/dist/lib/esm/sss-button_41.entry.js +182 -68
  21. package/dist/lib/esm-es5/apollo-super-selection.js +1 -1
  22. package/dist/lib/esm-es5/loader.js +1 -1
  23. package/dist/lib/esm-es5/sss-button_41.entry.js +4 -4
  24. package/dist/lib/types/components/super-campaign/super-campaign-types.d.ts +42 -0
  25. package/dist/lib/types/components/super-campaign/super-campaign.d.ts +13 -0
  26. package/dist/lib/types/components/super-selection-app/api/super-selection-events.model.d.ts +15 -32
  27. package/dist/lib/types/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v2-types.d.ts +1 -0
  28. package/dist/lib/types/components/super-selection-app/services/event-tracking.service.d.ts +0 -4
  29. package/dist/lib/types/components/super-selection-app/services/super-selection-app.service.d.ts +3 -1
  30. package/dist/lib/types/components/super-selection-app/services/super-selection.store.d.ts +4 -0
  31. package/dist/lib/types/components.d.ts +2 -0
  32. package/package.json +1 -1
  33. package/dist/lib/apollo-super-selection/p-4e5b95c3.system.entry.js +0 -69
  34. package/dist/lib/apollo-super-selection/p-89d1f1eb.entry.js +0 -14
@@ -1,5 +1,12 @@
1
- import { Component, h, State } from '@stencil/core';
1
+ import { Component, h, Prop, State } from '@stencil/core';
2
+ import { injectHistory } from '@stencil/router';
3
+ import * as O from 'fp-ts/lib/Option';
2
4
  import { isSome } from 'fp-ts/lib/Option';
5
+ import { SuperFundDisclaimerViewedDetail } from '../super-selection-app/api/super-selection-events.model';
6
+ import { EventTrackingService } from '../super-selection-app/services/event-tracking.service';
7
+ import miscService from '../super-selection-app/services/misc.service';
8
+ import navigationService from '../super-selection-app/services/navigation.service';
9
+ import { SuperSelectionAppRoutes } from '../super-selection-app/services/super-selection-app.routes';
3
10
  import superSelectionAppService from '../super-selection-app/services/super-selection-app.service';
4
11
  export class SuperCampaignHost {
5
12
  constructor() {
@@ -16,6 +23,114 @@ export class SuperCampaignHost {
16
23
  return 'autodev';
17
24
  }
18
25
  };
26
+ this.subscribeToSuperCampaignEvents = () => {
27
+ for (const eventName in this.superCampaignEventHandlers) {
28
+ document.addEventListener(eventName, this.superCampaignEventHandlers[eventName]);
29
+ }
30
+ };
31
+ this.unSubscribeFromSuperCampaignEvents = () => {
32
+ for (const eventName in this.superCampaignEventHandlers) {
33
+ document.removeEventListener(eventName, this.superCampaignEventHandlers[eventName]);
34
+ }
35
+ };
36
+ this.chooseAnotherFundRequested = async (event) => {
37
+ if (event.detail.sender == 'super-campaign') {
38
+ await navigationService.navigateInternally(this.history, SuperSelectionAppRoutes.MyOwnFund);
39
+ }
40
+ };
41
+ this.fundPanelShown = async (event) => {
42
+ var _a;
43
+ if (event.detail.sender == 'super-campaign') {
44
+ // eslint-disable-next-line no-console
45
+ console.log(`$handling super-campaign event: ${(_a = event.detail) === null || _a === void 0 ? void 0 : _a.type}`);
46
+ const promotedFundsShown = event.detail.shownFunds.map((f) => f.fundId);
47
+ superSelectionAppService.setSuperCampaignPromotedFundsShown(promotedFundsShown);
48
+ await EventTrackingService.Instance.TrackSuperFundPanelViewedAsync({
49
+ promotedFundsShown,
50
+ defaultFundUsiSet: O.toUndefined(superSelectionAppService.defaultFundUsi),
51
+ superCampaignEnabled: true
52
+ });
53
+ }
54
+ };
55
+ this.fundTileClicked = async (event) => {
56
+ var _a, _b, _c;
57
+ const eventDetails = event.detail;
58
+ if (eventDetails.sender == 'super-campaign') {
59
+ // eslint-disable-next-line no-console
60
+ console.log(`$handling super-campaign event: ${(_a = event.detail) === null || _a === void 0 ? void 0 : _a.type}`);
61
+ const promotedFundsShown = superSelectionAppService.superCampaignState.promotedFundsShown;
62
+ const defaultFundUsiSet = O.toUndefined(superSelectionAppService.defaultFundUsi);
63
+ await Promise.all([
64
+ eventDetails.fundType == 'PromotedDefault'
65
+ ? await EventTrackingService.Instance.TrackPromotedDefaultSuperFundDetailViewedAsync({
66
+ fundUsi: (_b = eventDetails.fundUsi) !== null && _b !== void 0 ? _b : '',
67
+ fundName: eventDetails.fundName,
68
+ promotedFundId: eventDetails.fundId,
69
+ promotedFundsShown,
70
+ defaultFundUsiSet,
71
+ superCampaignEnabled: true
72
+ })
73
+ : await EventTrackingService.Instance.TrackPromotedSuperFundDetailViewedAsync({
74
+ fundUsi: (_c = eventDetails.fundUsi) !== null && _c !== void 0 ? _c : undefined,
75
+ fundName: eventDetails.fundName,
76
+ promotedFundId: eventDetails.fundId,
77
+ promotedFundsShown,
78
+ defaultFundUsiSet,
79
+ superCampaignEnabled: true
80
+ }),
81
+ miscService.trackClickPromotedTileAsync(eventDetails.fundType == 'PromotedDefault'
82
+ ? {
83
+ promotedDefault: {
84
+ fundId: eventDetails.fundId
85
+ }
86
+ }
87
+ : {
88
+ promoted: {
89
+ fundId: eventDetails.fundId
90
+ }
91
+ })
92
+ ]);
93
+ }
94
+ };
95
+ this.fundPdsViewed = async (event) => {
96
+ var _a;
97
+ if (event.detail.sender == 'super-campaign') {
98
+ // eslint-disable-next-line no-console
99
+ console.log(`$handling super-campaign event: ${(_a = event.detail) === null || _a === void 0 ? void 0 : _a.type}`);
100
+ await EventTrackingService.Instance.TrackSuperFundPdsViewedAsync({
101
+ fundName: event.detail.fundName,
102
+ fundUsi: event.detail.fundUsi,
103
+ pageName: event.detail.pageName,
104
+ superCampaignEnabled: true
105
+ });
106
+ }
107
+ };
108
+ this.disclaimerViewed = async (event) => {
109
+ var _a;
110
+ if (event.detail.sender == 'super-campaign') {
111
+ // eslint-disable-next-line no-console
112
+ console.log(`$handling super-campaign event: ${(_a = event.detail) === null || _a === void 0 ? void 0 : _a.type}`);
113
+ await EventTrackingService.Instance.TrackSuperFundDisclaimerViewedAsync(SuperFundDisclaimerViewedDetail.create(true));
114
+ }
115
+ };
116
+ this.disclaimerAccepted = async (event) => {
117
+ var _a;
118
+ if (event.detail.sender == 'super-campaign') {
119
+ // eslint-disable-next-line no-console
120
+ console.log(`$handling super-campaign event: ${(_a = event.detail) === null || _a === void 0 ? void 0 : _a.type}`);
121
+ await EventTrackingService.Instance.TrackSuperFundDisclaimerAcceptedAsync({
122
+ superCampaignEnabled: true
123
+ });
124
+ }
125
+ };
126
+ this.superCampaignEventHandlers = {
127
+ 'choose-another-fund-requested': this.chooseAnotherFundRequested.bind(this),
128
+ 'fund-panel-shown': this.fundPanelShown.bind(this),
129
+ 'fund-tile-clicked': this.fundTileClicked.bind(this),
130
+ 'fund-pds-viewed': this.fundPdsViewed.bind(this),
131
+ 'disclaimer-viewed': this.disclaimerViewed.bind(this),
132
+ 'disclaimer-accepted': this.disclaimerAccepted.bind(this)
133
+ };
19
134
  }
20
135
  async componentWillLoad() {
21
136
  try {
@@ -23,7 +138,9 @@ export class SuperCampaignHost {
23
138
  isSome(superSelectionAppService.state.jwt)) {
24
139
  this.backendUrl = this.getBaseUrl(superSelectionAppService.state.apiBaseUrl.value);
25
140
  this.accessToken = superSelectionAppService.state.jwt.value;
141
+ this.unSubscribeFromSuperCampaignEvents();
26
142
  await import(this.createApolloSuperCampaignScriptUrl(this.getEnvironmentTag()));
143
+ this.subscribeToSuperCampaignEvents();
27
144
  this.componentLoaded = true;
28
145
  }
29
146
  else {
@@ -36,6 +153,9 @@ export class SuperCampaignHost {
36
153
  console.error('Error loading component:', error);
37
154
  }
38
155
  }
156
+ disconnectedCallback() {
157
+ this.unSubscribeFromSuperCampaignEvents();
158
+ }
39
159
  render() {
40
160
  return (h("div", null, this.componentLoaded ? (h("apollo-super-campaign", { "backend-url": this.backendUrl, "access-token": this.accessToken })) : null));
41
161
  }
@@ -47,9 +167,32 @@ export class SuperCampaignHost {
47
167
  return `${parsedUrl.protocol}//${parsedUrl.hostname}${parsedUrl.port.length > 0 ? `:${parsedUrl.port}` : ''}`;
48
168
  }
49
169
  static get is() { return "sss-super-campaign-host"; }
170
+ static get properties() { return {
171
+ "history": {
172
+ "type": "unknown",
173
+ "mutable": false,
174
+ "complexType": {
175
+ "original": "RouterHistory",
176
+ "resolved": "RouterHistory",
177
+ "references": {
178
+ "RouterHistory": {
179
+ "location": "import",
180
+ "path": "@stencil/router"
181
+ }
182
+ }
183
+ },
184
+ "required": false,
185
+ "optional": false,
186
+ "docs": {
187
+ "tags": [],
188
+ "text": ""
189
+ }
190
+ }
191
+ }; }
50
192
  static get states() { return {
51
193
  "componentLoaded": {},
52
194
  "backendUrl": {},
53
195
  "accessToken": {}
54
196
  }; }
55
197
  }
198
+ injectHistory(SuperCampaignHost);
@@ -1 +1,16 @@
1
- export {};
1
+ import { isSome } from 'fp-ts/lib/Option';
2
+ import superSelectionService from '../services/super-selection-app.service';
3
+ export const SuperFundDisclaimerViewedDetail = {
4
+ create: (superCampaignEnabled) => {
5
+ let isDefinedBenefitsEligibleString = 'Not set';
6
+ if (isSome(superSelectionService.isDefinedBenefitsEligible)) {
7
+ isDefinedBenefitsEligibleString = superSelectionService.isDefinedBenefitsEligible.value
8
+ ? 'True'
9
+ : 'False';
10
+ }
11
+ return {
12
+ isDefinedBenefitsEligible: isDefinedBenefitsEligibleString,
13
+ superCampaignEnabled: superCampaignEnabled
14
+ };
15
+ }
16
+ };
@@ -1,5 +1,6 @@
1
1
  import { Component, h, Prop, State } from '@stencil/core';
2
2
  import { isSome } from 'fp-ts/lib/Option';
3
+ import { SuperFundDisclaimerViewedDetail } from '../api/super-selection-events.model';
3
4
  import promotedFundState from '../funds/promoted-fund/promoted-fund.store';
4
5
  import { Link } from '../funds/promoted-fund/types';
5
6
  import { EventTrackingService } from '../services/event-tracking.service';
@@ -12,15 +13,7 @@ export class Consent {
12
13
  this.eventTrackingService = EventTrackingService.Instance;
13
14
  }
14
15
  componentDidLoad() {
15
- let isDefinedBenefitsEligible = 'Not set';
16
- if (isSome(superSelectionService.isDefinedBenefitsEligible)) {
17
- isDefinedBenefitsEligible = superSelectionService.isDefinedBenefitsEligible.value
18
- ? 'True'
19
- : 'False';
20
- }
21
- return this.eventTrackingService.TrackSuperFundDisclaimerViewedAsync({
22
- isDefinedBenefitsEligible
23
- });
16
+ return this.eventTrackingService.TrackSuperFundDisclaimerViewedAsync(SuperFundDisclaimerViewedDetail.create(false));
24
17
  }
25
18
  render() {
26
19
  if (this.campaignConnectRequestInProgress) {
@@ -46,7 +39,9 @@ export class Consent {
46
39
  h("sss-button", { fillWidth: true, promiseFn: () => this.handleSuperFundDisclaimerAccepted() }, "Continue")))));
47
40
  }
48
41
  async handleSuperFundDisclaimerAccepted() {
49
- await this.eventTrackingService.TrackSuperFundDisclaimerAcceptedAsync({});
42
+ await this.eventTrackingService.TrackSuperFundDisclaimerAcceptedAsync({
43
+ superCampaignEnabled: false
44
+ });
50
45
  if (superSelectionService.campaignConnectEnabled) {
51
46
  this.campaignConnectRequestInProgress = true;
52
47
  await superSelectionService.loadCampaignConnectAsync();
@@ -41,7 +41,7 @@ class PromotedFundJoinV2IFrameBuilder {
41
41
  build(iframe, history) {
42
42
  if (!(iframe === null || iframe === void 0 ? void 0 : iframe.contentDocument))
43
43
  return;
44
- const postData = Object.assign(Object.assign({}, this.getMemberData()), { partnerId: superSelectionAppService.partnerIdOrDefault, accountId: superSelectionAppService.accountIdOrDefault, fundId: promotedFundState.fund.id, authToken: superSelectionAppService.jwt, employerDefault: promotedFundState.fund.type === 'PromotedDefault' });
44
+ const postData = Object.assign(Object.assign({}, this.getMemberData()), { partnerId: superSelectionAppService.partnerIdOrDefault, accountId: superSelectionAppService.accountIdOrDefault, fundId: promotedFundState.fund.id, authToken: superSelectionAppService.jwt, employerDefault: promotedFundState.fund.type === 'PromotedDefault', definedBenefitsEligibility: O.toUndefined(superSelectionAppService.isDefinedBenefitsEligible) });
45
45
  const handleMessage = async (event) => {
46
46
  const { data } = event;
47
47
  if (!data) {
@@ -233,13 +233,11 @@ class PromotedFundJoinV2IFrameBuilder {
233
233
  if (value !== undefined) {
234
234
  const input = document.createElement('input');
235
235
  input.name = prop;
236
+ input.type = 'hidden';
236
237
  if (typeof value === 'boolean') {
237
- input.type = 'checkbox';
238
- input.checked = value;
239
- input.style.visibility = 'hidden';
238
+ input.value = value ? 'true' : 'false';
240
239
  }
241
240
  else {
242
- input.type = 'hidden';
243
241
  input.value = value;
244
242
  }
245
243
  form.append(input);
@@ -9,6 +9,7 @@ export function pdsViewedAsync(name, usi) {
9
9
  return EventTrackingService.Instance.TrackSuperFundPdsViewedAsync({
10
10
  fundUsi: usi,
11
11
  fundName: name,
12
- pageName: 'Panel Fund Page'
12
+ pageName: 'Panel Fund Page',
13
+ superCampaignEnabled: false
13
14
  });
14
15
  }
@@ -6,31 +6,11 @@ export class EventTrackingService {
6
6
  static get Instance() {
7
7
  return this.instance || (this.instance = new this());
8
8
  }
9
- async TrackFinancialProductViewedAsync(detail) {
10
- return this.trackEventAsync({
11
- FinancialProductViewed: detail
12
- });
13
- }
14
9
  async TrackSuperFundPdsViewedAsync(detail) {
15
10
  return this.trackEventAsync({
16
11
  SuperFundPdsViewed: detail
17
12
  });
18
13
  }
19
- async TrackFinancialProductAcceptedAsync(detail) {
20
- return this.trackEventAsync({
21
- FinancialProductAccepted: detail
22
- });
23
- }
24
- async TrackFinancialProductRejectedAsync(detail) {
25
- return this.trackEventAsync({
26
- FinancialProductRejected: detail
27
- });
28
- }
29
- async TrackSuperFundPrivacyConfirmationAcceptedAsync(detail) {
30
- return this.trackEventAsync({
31
- SuperFundPrivacyConfirmationAccepted: detail
32
- });
33
- }
34
14
  async TrackPromotedSuperFundDetailViewedAsync(detail) {
35
15
  return this.trackEventAsync({
36
16
  SuperFundDetailViewed: {
@@ -128,5 +128,11 @@ export class SuperSelectionAppService {
128
128
  this._state.campaignConnect = O.fromNullable(campaignConnect);
129
129
  }
130
130
  }
131
+ setSuperCampaignPromotedFundsShown(shownFund) {
132
+ this._state.superCampaignState.promotedFundsShown = shownFund;
133
+ }
134
+ get superCampaignState() {
135
+ return this._state.superCampaignState;
136
+ }
131
137
  }
132
138
  export default new SuperSelectionAppService();
@@ -14,5 +14,8 @@ export const initialState = {
14
14
  campaignConnectEnabled: false,
15
15
  isDefinedBenefitsEligible: O.none,
16
16
  campaignConnect: O.none,
17
- superCampaignEnabled: false
17
+ superCampaignEnabled: false,
18
+ superCampaignState: {
19
+ promotedFundsShown: []
20
+ }
18
21
  };
@@ -16,7 +16,8 @@ export class SuperChoicePage {
16
16
  const promotedFundsShown = this.promotedFunds.map((item) => item.fundId);
17
17
  return this.eventTrackingService.TrackSuperFundPanelViewedAsync({
18
18
  promotedFundsShown,
19
- defaultFundUsiSet: O.toUndefined(SuperSelectionAppService.defaultFundUsi)
19
+ defaultFundUsiSet: O.toUndefined(SuperSelectionAppService.defaultFundUsi),
20
+ superCampaignEnabled: false
20
21
  });
21
22
  }
22
23
  render() {
@@ -113,14 +114,16 @@ export class SuperChoicePage {
113
114
  fundName: O.isSome(fundName) ? fundName.value : '',
114
115
  promotedFundId: fund.fundId,
115
116
  promotedFundsShown,
116
- defaultFundUsiSet: O.toUndefined(SuperSelectionAppService.defaultFundUsi)
117
+ defaultFundUsiSet: O.toUndefined(SuperSelectionAppService.defaultFundUsi),
118
+ superCampaignEnabled: false
117
119
  })
118
120
  : this.eventTrackingService.TrackPromotedSuperFundDetailViewedAsync({
119
121
  fundUsi: O.isSome(fundUsi) ? fundUsi.value : undefined,
120
122
  fundName: O.isSome(fundName) ? fundName.value : '',
121
123
  promotedFundId: fund.fundId,
122
124
  promotedFundsShown,
123
- defaultFundUsiSet: O.toUndefined(SuperSelectionAppService.defaultFundUsi)
125
+ defaultFundUsiSet: O.toUndefined(SuperSelectionAppService.defaultFundUsi),
126
+ superCampaignEnabled: false
124
127
  }),
125
128
  miscService.trackClickPromotedTileAsync(fund.isPromotedDefault
126
129
  ? {
@@ -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_41",[[0,"sss-prefill",{"history":[16],"prefill":[32]}],[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-consent-page",{"history":[16],"campaignConnectRequestInProgress":[32]}],[0,"sss-existing-choice-page",{"history":[16],"existingFund":[32]}],[0,"sss-standard-choice-form",{"history":[16],"standardChoiceFormSignature":[32],"formState":[32],"isSubmitDisabled":[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"],[0,"sss-super-campaign-host",{"componentLoaded":[32],"backendUrl":[32],"accessToken":[32]}],[0,"sss-prefill-my-own-fund",{"history":[16],"prefill":[16],"mode":[32],"formState":[32],"isSubmitDisabled":[32],"fundUsi":[32],"fundName":[32],"memberNumber":[32],"memberGivenNames":[32],"memberLastName":[32]}],[0,"sss-prefill-smsf",{"history":[16],"prefill":[16],"mode":[32],"formState":[32],"isSubmitDisabled":[32],"fundName":[32],"fundAbn":[32],"fundEsa":[32],"fundAddressLine1":[32],"fundAddressLine2":[32],"fundAddressCity":[32],"fundAddressPostcode":[32],"fundAddressState":[32],"fundAddress":[32],"memberGivenNames":[32],"memberLastName":[32],"bankAccountName":[32],"bankName":[32],"bankAccountBsb":[32],"bankAccountNumber":[32]}],[0,"sss-prefill-invalid-my-own-fund",{"history":[16],"prefill":[16],"fundUsi":[32],"fundName":[32],"memberNumber":[32],"memberGivenNames":[32],"memberLastName":[32]}],[0,"sss-prefill-invalid-smsf",{"history":[16],"prefill":[16],"fundName":[32],"fundAbn":[32],"fundEsa":[32],"fundAddressLine1":[32],"fundAddressLine2":[32],"fundAddressCity":[32],"fundAddressPostcode":[32],"fundAddressState":[32],"fundAddress":[32],"memberGivenNames":[32],"memberLastName":[32],"bankAccountName":[32],"bankAccountBsb":[32],"bankAccountNumber":[32]}],[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-loading-super-indicator"],[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],"isMultiFund":[4,"is-multi-fund"]}],[0,"sss-loading-page"],[0,"sss-super-choice-item-top",{"name":[1],"logo":[1],"features":[16],"featureSubText":[16],"customContent":[16],"isMultiFund":[4,"is-multi-fund"],"isPromotedDefault":[4,"is-promoted-default"],"extraBadge":[16]}],[4,"sss-loading-component",{"header":[1]}],[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-prefill-warning-box",{"notificationList":[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]}],[0,"sss-prefill-display-field",{"field":[16]}],[0,"sss-prefill-error-box",{"withHeader":[4,"with-header"],"notificationList":[16]}],[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_41",[[0,"sss-prefill",{"history":[16],"prefill":[32]}],[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-consent-page",{"history":[16],"campaignConnectRequestInProgress":[32]}],[0,"sss-existing-choice-page",{"history":[16],"existingFund":[32]}],[0,"sss-standard-choice-form",{"history":[16],"standardChoiceFormSignature":[32],"formState":[32],"isSubmitDisabled":[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"],[0,"sss-super-campaign-host",{"history":[16],"componentLoaded":[32],"backendUrl":[32],"accessToken":[32]}],[0,"sss-prefill-my-own-fund",{"history":[16],"prefill":[16],"mode":[32],"formState":[32],"isSubmitDisabled":[32],"fundUsi":[32],"fundName":[32],"memberNumber":[32],"memberGivenNames":[32],"memberLastName":[32]}],[0,"sss-prefill-smsf",{"history":[16],"prefill":[16],"mode":[32],"formState":[32],"isSubmitDisabled":[32],"fundName":[32],"fundAbn":[32],"fundEsa":[32],"fundAddressLine1":[32],"fundAddressLine2":[32],"fundAddressCity":[32],"fundAddressPostcode":[32],"fundAddressState":[32],"fundAddress":[32],"memberGivenNames":[32],"memberLastName":[32],"bankAccountName":[32],"bankName":[32],"bankAccountBsb":[32],"bankAccountNumber":[32]}],[0,"sss-prefill-invalid-my-own-fund",{"history":[16],"prefill":[16],"fundUsi":[32],"fundName":[32],"memberNumber":[32],"memberGivenNames":[32],"memberLastName":[32]}],[0,"sss-prefill-invalid-smsf",{"history":[16],"prefill":[16],"fundName":[32],"fundAbn":[32],"fundEsa":[32],"fundAddressLine1":[32],"fundAddressLine2":[32],"fundAddressCity":[32],"fundAddressPostcode":[32],"fundAddressState":[32],"fundAddress":[32],"memberGivenNames":[32],"memberLastName":[32],"bankAccountName":[32],"bankAccountBsb":[32],"bankAccountNumber":[32]}],[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-loading-super-indicator"],[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],"isMultiFund":[4,"is-multi-fund"]}],[0,"sss-loading-page"],[0,"sss-super-choice-item-top",{"name":[1],"logo":[1],"features":[16],"featureSubText":[16],"customContent":[16],"isMultiFund":[4,"is-multi-fund"],"isPromotedDefault":[4,"is-promoted-default"],"extraBadge":[16]}],[4,"sss-loading-component",{"header":[1]}],[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-prefill-warning-box",{"notificationList":[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]}],[0,"sss-prefill-display-field",{"field":[16]}],[0,"sss-prefill-error-box",{"withHeader":[4,"with-header"],"notificationList":[16]}],[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_41",[[0,"sss-prefill",{"history":[16],"prefill":[32]}],[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-consent-page",{"history":[16],"campaignConnectRequestInProgress":[32]}],[0,"sss-existing-choice-page",{"history":[16],"existingFund":[32]}],[0,"sss-standard-choice-form",{"history":[16],"standardChoiceFormSignature":[32],"formState":[32],"isSubmitDisabled":[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"],[0,"sss-super-campaign-host",{"componentLoaded":[32],"backendUrl":[32],"accessToken":[32]}],[0,"sss-prefill-my-own-fund",{"history":[16],"prefill":[16],"mode":[32],"formState":[32],"isSubmitDisabled":[32],"fundUsi":[32],"fundName":[32],"memberNumber":[32],"memberGivenNames":[32],"memberLastName":[32]}],[0,"sss-prefill-smsf",{"history":[16],"prefill":[16],"mode":[32],"formState":[32],"isSubmitDisabled":[32],"fundName":[32],"fundAbn":[32],"fundEsa":[32],"fundAddressLine1":[32],"fundAddressLine2":[32],"fundAddressCity":[32],"fundAddressPostcode":[32],"fundAddressState":[32],"fundAddress":[32],"memberGivenNames":[32],"memberLastName":[32],"bankAccountName":[32],"bankName":[32],"bankAccountBsb":[32],"bankAccountNumber":[32]}],[0,"sss-prefill-invalid-my-own-fund",{"history":[16],"prefill":[16],"fundUsi":[32],"fundName":[32],"memberNumber":[32],"memberGivenNames":[32],"memberLastName":[32]}],[0,"sss-prefill-invalid-smsf",{"history":[16],"prefill":[16],"fundName":[32],"fundAbn":[32],"fundEsa":[32],"fundAddressLine1":[32],"fundAddressLine2":[32],"fundAddressCity":[32],"fundAddressPostcode":[32],"fundAddressState":[32],"fundAddress":[32],"memberGivenNames":[32],"memberLastName":[32],"bankAccountName":[32],"bankAccountBsb":[32],"bankAccountNumber":[32]}],[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-loading-super-indicator"],[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],"isMultiFund":[4,"is-multi-fund"]}],[0,"sss-loading-page"],[0,"sss-super-choice-item-top",{"name":[1],"logo":[1],"features":[16],"featureSubText":[16],"customContent":[16],"isMultiFund":[4,"is-multi-fund"],"isPromotedDefault":[4,"is-promoted-default"],"extraBadge":[16]}],[4,"sss-loading-component",{"header":[1]}],[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-prefill-warning-box",{"notificationList":[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]}],[0,"sss-prefill-display-field",{"field":[16]}],[0,"sss-prefill-error-box",{"withHeader":[4,"with-header"],"notificationList":[16]}],[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_41",[[0,"sss-prefill",{"history":[16],"prefill":[32]}],[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-consent-page",{"history":[16],"campaignConnectRequestInProgress":[32]}],[0,"sss-existing-choice-page",{"history":[16],"existingFund":[32]}],[0,"sss-standard-choice-form",{"history":[16],"standardChoiceFormSignature":[32],"formState":[32],"isSubmitDisabled":[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"],[0,"sss-super-campaign-host",{"history":[16],"componentLoaded":[32],"backendUrl":[32],"accessToken":[32]}],[0,"sss-prefill-my-own-fund",{"history":[16],"prefill":[16],"mode":[32],"formState":[32],"isSubmitDisabled":[32],"fundUsi":[32],"fundName":[32],"memberNumber":[32],"memberGivenNames":[32],"memberLastName":[32]}],[0,"sss-prefill-smsf",{"history":[16],"prefill":[16],"mode":[32],"formState":[32],"isSubmitDisabled":[32],"fundName":[32],"fundAbn":[32],"fundEsa":[32],"fundAddressLine1":[32],"fundAddressLine2":[32],"fundAddressCity":[32],"fundAddressPostcode":[32],"fundAddressState":[32],"fundAddress":[32],"memberGivenNames":[32],"memberLastName":[32],"bankAccountName":[32],"bankName":[32],"bankAccountBsb":[32],"bankAccountNumber":[32]}],[0,"sss-prefill-invalid-my-own-fund",{"history":[16],"prefill":[16],"fundUsi":[32],"fundName":[32],"memberNumber":[32],"memberGivenNames":[32],"memberLastName":[32]}],[0,"sss-prefill-invalid-smsf",{"history":[16],"prefill":[16],"fundName":[32],"fundAbn":[32],"fundEsa":[32],"fundAddressLine1":[32],"fundAddressLine2":[32],"fundAddressCity":[32],"fundAddressPostcode":[32],"fundAddressState":[32],"fundAddress":[32],"memberGivenNames":[32],"memberLastName":[32],"bankAccountName":[32],"bankAccountBsb":[32],"bankAccountNumber":[32]}],[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-loading-super-indicator"],[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],"isMultiFund":[4,"is-multi-fund"]}],[0,"sss-loading-page"],[0,"sss-super-choice-item-top",{"name":[1],"logo":[1],"features":[16],"featureSubText":[16],"customContent":[16],"isMultiFund":[4,"is-multi-fund"],"isPromotedDefault":[4,"is-promoted-default"],"extraBadge":[16]}],[4,"sss-loading-component",{"header":[1]}],[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-prefill-warning-box",{"notificationList":[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]}],[0,"sss-prefill-display-field",{"field":[16]}],[0,"sss-prefill-error-box",{"withHeader":[4,"with-header"],"notificationList":[16]}],[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