@flarehr/apollo-super-selection 4.33.32977 → 4.34.34409

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 (61) hide show
  1. package/dist/lib/apollo-super-selection/apollo-super-selection.css +1 -1
  2. package/dist/lib/apollo-super-selection/apollo-super-selection.esm.js +1 -1
  3. package/dist/lib/apollo-super-selection/assets/logo-unisuper.svg +15 -0
  4. package/dist/lib/apollo-super-selection/p-64f29eca.system.entry.js +69 -0
  5. package/dist/lib/apollo-super-selection/p-95403f2f.entry.js +14 -0
  6. package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
  7. package/dist/lib/cjs/apollo-super-selection.cjs.js +1 -1
  8. package/dist/lib/cjs/loader.cjs.js +1 -1
  9. package/dist/lib/cjs/{sss-button_30.cjs.entry.js → sss-button_38.cjs.entry.js} +932 -9
  10. package/dist/lib/collection/apollo-super-selection.css +1 -1
  11. package/dist/lib/collection/collection-manifest.json +16 -0
  12. package/dist/lib/collection/components/app-host/super-selection-app-host.css +2 -2
  13. package/dist/lib/collection/components/super-selection-app/existing-choice/existing-choice.js +1 -1
  14. package/dist/lib/collection/components/super-selection-app/funds/constants.js +3 -1
  15. package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/unisuper-default.js +49 -0
  16. package/dist/lib/collection/components/super-selection-app/misc/button.js +2 -1
  17. package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-common.js +22 -0
  18. package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-display-field.js +41 -0
  19. package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-error-box.js +76 -0
  20. package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-invalid-my-own-fund.js +121 -0
  21. package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-invalid-smsf.js +144 -0
  22. package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-my-own-fund.js +217 -0
  23. package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-smsf.js +355 -0
  24. package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-types.js +281 -0
  25. package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-warning-box.js +46 -0
  26. package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill.js +73 -0
  27. package/dist/lib/collection/components/super-selection-app/services/event-tracking.service.js +10 -0
  28. package/dist/lib/collection/components/super-selection-app/services/super-selection-app.routes.js +10 -0
  29. package/dist/lib/collection/components/super-selection-app/services/super-selection-app.service.js +1 -0
  30. package/dist/lib/collection/components/super-selection-app/services/super-selection.store.js +1 -0
  31. package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/logo-unisuper.svg +15 -0
  32. package/dist/lib/collection/components/super-selection-app/super-selection-app.js +4 -1
  33. package/dist/lib/esm/apollo-super-selection.js +1 -1
  34. package/dist/lib/esm/loader.js +1 -1
  35. package/dist/lib/esm/{sss-button_30.entry.js → sss-button_38.entry.js} +925 -10
  36. package/dist/lib/esm-es5/apollo-super-selection.js +1 -1
  37. package/dist/lib/esm-es5/loader.js +1 -1
  38. package/dist/lib/esm-es5/sss-button_38.entry.js +69 -0
  39. package/dist/lib/types/components/super-selection-app/api/super-selection-events.model.d.ts +20 -0
  40. package/dist/lib/types/components/super-selection-app/api/super-selection.api.dto.d.ts +39 -0
  41. package/dist/lib/types/components/super-selection-app/funds/custom-fund/api/custom-fund-choice.api.dto.d.ts +1 -1
  42. package/dist/lib/types/components/super-selection-app/funds/promoted-fund/funds/unisuper-default.d.ts +3 -0
  43. package/dist/lib/types/components/super-selection-app/misc/button.d.ts +1 -1
  44. package/dist/lib/types/components/super-selection-app/prefill-fund/prefill-common.d.ts +9 -0
  45. package/dist/lib/types/components/super-selection-app/prefill-fund/prefill-display-field.d.ts +5 -0
  46. package/dist/lib/types/components/super-selection-app/prefill-fund/prefill-error-box.d.ts +5 -0
  47. package/dist/lib/types/components/super-selection-app/prefill-fund/prefill-invalid-my-own-fund.d.ts +18 -0
  48. package/dist/lib/types/components/super-selection-app/prefill-fund/prefill-invalid-smsf.d.ts +28 -0
  49. package/dist/lib/types/components/super-selection-app/prefill-fund/prefill-my-own-fund.d.ts +30 -0
  50. package/dist/lib/types/components/super-selection-app/prefill-fund/prefill-smsf.d.ts +48 -0
  51. package/dist/lib/types/components/super-selection-app/prefill-fund/prefill-types.d.ts +90 -0
  52. package/dist/lib/types/components/super-selection-app/prefill-fund/prefill-warning-box.d.ts +4 -0
  53. package/dist/lib/types/components/super-selection-app/prefill-fund/prefill.d.ts +11 -0
  54. package/dist/lib/types/components/super-selection-app/services/event-tracking.service.d.ts +2 -0
  55. package/dist/lib/types/components/super-selection-app/services/super-selection-app.routes.d.ts +5 -0
  56. package/dist/lib/types/components/super-selection-app/services/super-selection.store.d.ts +2 -1
  57. package/dist/lib/types/components.d.ts +132 -0
  58. package/package.json +2 -2
  59. package/dist/lib/apollo-super-selection/p-1dca1954.system.entry.js +0 -69
  60. package/dist/lib/apollo-super-selection/p-6292b3a9.entry.js +0 -14
  61. package/dist/lib/esm-es5/sss-button_30.entry.js +0 -69
@@ -0,0 +1,73 @@
1
+ import { Component, h, Prop, State } from '@stencil/core';
2
+ import { isSome } from 'fp-ts/Option';
3
+ import navigationService from '../services/navigation.service';
4
+ import { SuperSelectionAppRoutes } from '../services/super-selection-app.routes';
5
+ import superSelectionAppService from '../services/super-selection-app.service';
6
+ export class Prefill {
7
+ constructor() {
8
+ this.prefill = undefined;
9
+ }
10
+ async componentWillLoad() {
11
+ this.prefill = isSome(superSelectionAppService.state.superChoicePrefill)
12
+ ? superSelectionAppService.state.superChoicePrefill.value
13
+ : undefined;
14
+ }
15
+ render() {
16
+ if (this.prefill && this.prefill.type === 'myOwnFund') {
17
+ if (this.prefill.data.fundDetail.type === 'Valid') {
18
+ return this.renderMyOwnFund(this.prefill.data);
19
+ }
20
+ else {
21
+ return this.renderInvalidMyOwnFund(this.prefill.data);
22
+ }
23
+ }
24
+ if (this.prefill && this.prefill.type === 'smsf') {
25
+ if (this.prefill.data.fundAbn.valid) {
26
+ return this.renderSMSF(this.prefill.data);
27
+ }
28
+ else {
29
+ return this.renderInvalidSMSF(this.prefill.data);
30
+ }
31
+ }
32
+ navigationService.navigateInternally(this.history, SuperSelectionAppRoutes.ConsentPage);
33
+ return null;
34
+ }
35
+ renderMyOwnFund(data) {
36
+ return h("sss-prefill-my-own-fund", { history: this.history, prefill: data });
37
+ }
38
+ renderInvalidMyOwnFund(data) {
39
+ return h("sss-prefill-invalid-my-own-fund", { history: this.history, prefill: data });
40
+ }
41
+ renderSMSF(data) {
42
+ return h("sss-prefill-smsf", { history: this.history, prefill: data });
43
+ }
44
+ renderInvalidSMSF(data) {
45
+ return h("sss-prefill-invalid-smsf", { history: this.history, prefill: data });
46
+ }
47
+ static get is() { return "sss-prefill"; }
48
+ static get properties() { return {
49
+ "history": {
50
+ "type": "unknown",
51
+ "mutable": false,
52
+ "complexType": {
53
+ "original": "RouterHistory",
54
+ "resolved": "RouterHistory",
55
+ "references": {
56
+ "RouterHistory": {
57
+ "location": "import",
58
+ "path": "@stencil/router"
59
+ }
60
+ }
61
+ },
62
+ "required": false,
63
+ "optional": false,
64
+ "docs": {
65
+ "tags": [],
66
+ "text": ""
67
+ }
68
+ }
69
+ }; }
70
+ static get states() { return {
71
+ "prefill": {}
72
+ }; }
73
+ }
@@ -91,6 +91,16 @@ export class EventTrackingService {
91
91
  SuperFundDisclaimerAccepted: detail
92
92
  });
93
93
  }
94
+ async TrackSuperFundPrefillViewedAsync(detail) {
95
+ return this.trackEventAsync({
96
+ SuperFundPrefillViewed: detail
97
+ });
98
+ }
99
+ async TrackSuperFundPrefillDeclinedAsync(detail) {
100
+ return this.trackEventAsync({
101
+ SuperFundPrefillDeclined: detail
102
+ });
103
+ }
94
104
  async trackEventAsync(event) {
95
105
  try {
96
106
  await this.eventTrackingApi.PostAnalyticsEventAsync({ event });
@@ -8,6 +8,11 @@ export var SuperSelectionAppRoutes;
8
8
  SuperSelectionAppRoutes["PromotedFundJoinV1"] = "/promoted-fund/join/v1";
9
9
  SuperSelectionAppRoutes["PromotedFundJoinV2"] = "/promoted-fund/join/v2";
10
10
  SuperSelectionAppRoutes["MyOwnFund"] = "/super-choice/my-own-fund/";
11
+ SuperSelectionAppRoutes["Prefill"] = "/super-choice/prefill/";
12
+ SuperSelectionAppRoutes["PrefillInvalidMyOwnFundPage"] = "/super-choice/sss-prefill-invalid-my-own-fund/";
13
+ SuperSelectionAppRoutes["PrefillMyOwnFundPage"] = "/super-choice/prefill-my-own-fund/";
14
+ SuperSelectionAppRoutes["PrefillSMSFPage"] = "/super-choice/prefill-smsf/";
15
+ SuperSelectionAppRoutes["PrefillInvalidSMSFPage"] = "/super-choice/prefill-invalid-smsf/";
11
16
  SuperSelectionAppRoutes["SelfManagedFund"] = "/super-choice/smsf/";
12
17
  SuperSelectionAppRoutes["DefaultFund"] = "/super-choice/default/";
13
18
  SuperSelectionAppRoutes["StandardChoice"] = "/standard-choice/";
@@ -21,6 +26,11 @@ export const superSelectionAppStencilRoutes = [
21
26
  h("stencil-route", { url: SuperSelectionAppRoutes.PromotedFundJoinV1, component: "sss-promoted-fund-join-v1-page" }),
22
27
  h("stencil-route", { url: SuperSelectionAppRoutes.PromotedFundJoinV2, component: "sss-promoted-fund-join-v2-page" }),
23
28
  h("stencil-route", { url: SuperSelectionAppRoutes.MyOwnFund, component: "sss-my-own-fund" }),
29
+ h("stencil-route", { url: SuperSelectionAppRoutes.PrefillInvalidMyOwnFundPage, component: "sss-prefill-invalid-my-own-fund" }),
30
+ h("stencil-route", { url: SuperSelectionAppRoutes.Prefill, component: "sss-prefill" }),
31
+ h("stencil-route", { url: SuperSelectionAppRoutes.PrefillMyOwnFundPage, component: "sss-prefill-my-own-fund" }),
32
+ h("stencil-route", { url: SuperSelectionAppRoutes.PrefillSMSFPage, component: "sss-prefill-smsf" }),
33
+ h("stencil-route", { url: SuperSelectionAppRoutes.PrefillInvalidSMSFPage, component: "sss-prefill-invalid-smsf" }),
24
34
  h("stencil-route", { url: SuperSelectionAppRoutes.SelfManagedFund, component: "sss-self-managed-fund" }),
25
35
  h("stencil-route", { url: SuperSelectionAppRoutes.DefaultFund, component: "sss-default-fund" }),
26
36
  h("stencil-route", { url: SuperSelectionAppRoutes.StandardChoice, component: "sss-standard-choice-form" }),
@@ -99,6 +99,7 @@ export class SuperSelectionAppService {
99
99
  this._state.superBuyer = O.fromNullable(appStateResponse.superBuyer);
100
100
  this._state.promotedFunds = O.fromNullable(appStateResponse.promotedFunds);
101
101
  this._state.campaignConnectEnabled = appStateResponse.campaignConnectEnabled;
102
+ this._state.superChoicePrefill = O.fromNullable(appStateResponse.prefill);
102
103
  if (this._state.campaignConnectEnabled) {
103
104
  this._state.campaignConnectPromise = O.fromNullable(superSelectionApi.getCampaignConnectAsync());
104
105
  }
@@ -5,6 +5,7 @@ export const initialState = {
5
5
  profileId: O.none,
6
6
  jwt: O.none,
7
7
  superBuyer: O.none,
8
+ superChoicePrefill: O.none,
8
9
  promotedFunds: O.none,
9
10
  accountConfiguration: O.none,
10
11
  profileConfiguration: O.none,
@@ -0,0 +1,15 @@
1
+ <svg width="96" height="23" viewBox="0 0 96 23" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M25.5557 5.15733C25.2989 5.09321 25.0589 5.07756 24.8663 4.96547C24.0005 4.37268 24.2411 3.33152 23.5355 2.91495C22.7021 2.40245 21.8201 2.97907 21.2111 2.64279C20.4575 2.24239 20.3453 1.20122 19.3032 0.864943C17.796 0.368604 17.5878 1.24971 16.3854 1.12145C15.1188 0.993199 14.574 0 13.596 0C12.6342 0 12.0726 0.993199 10.8066 1.12145C9.60417 1.24971 9.41159 0.368604 7.88825 0.864943C6.86225 1.20122 6.73439 2.24239 5.98081 2.64279C5.38744 2.97907 4.48982 2.40245 3.65587 2.91495C2.95082 3.33152 3.1914 4.45297 2.32561 4.96547C2.32561 4.96547 2.14922 5.07756 1.62004 5.1735C1.07469 5.25379 -0.0311615 5.79809 0.000672809 8.42472C0.0486851 11.0514 1.97283 14.8474 6.91078 19.0439C7.31158 19.316 10.9986 22.6793 13.596 22.6793C16.7058 22.6793 20.3292 19.0277 20.3292 19.0277C25.2671 14.8474 27.1265 11.0514 27.1751 8.42472C27.2069 5.79809 26.1005 5.25379 25.5557 5.15733Z" fill="#112C5C"/>
3
+ <path d="M11.4615 21.1738C-0.466374 12.0447 2.53178 7.78411 3.01295 7.12772C6.34719 2.6273 12.1671 2.67527 13.4493 2.67527C14.7483 2.67527 21.2889 2.70707 24.4796 7.41603C25.4576 8.87324 25.2969 10.283 25.0887 11.7084C25.9863 9.69022 25.9545 7.89621 24.8961 6.45516C21.2252 1.79416 15.0687 1.81032 13.4655 1.79416C11.8623 1.778 5.91456 1.85829 2.32355 6.51876C-1.38017 11.1959 6.49175 18.0508 11.4615 21.1738Z" fill="#0E71F2"/>
4
+ <path d="M23.889 11.5628C23.7287 7.06235 19.1754 4.57962 13.6128 4.59578C10.0212 4.59578 6.14164 6.29334 4.71484 8.96846C6.34987 7.03055 9.31619 5.55666 13.26 5.41276C18.999 5.31631 23.007 8.91997 22.2377 13.2927C22.1417 13.8693 22.0133 14.2535 21.9011 14.6221C21.885 14.6701 21.885 14.766 21.885 14.1414C21.885 10.2974 18.1494 7.68695 13.5486 7.68695C10.6945 7.68695 7.2 9.35271 5.67665 11.6749C7.11963 10.0253 10.374 8.27974 13.1958 8.35951C18.1656 8.51957 20.859 11.4668 20.6022 15.4548C20.5704 15.9673 20.4101 16.352 20.2818 16.6721C20.2979 16.608 20.346 16.4156 20.3298 15.9193C20.2014 13.0367 17.0274 10.666 13.452 10.666C11.1918 10.666 8.25783 11.899 7.08727 13.9334C8.27401 12.5398 10.6464 11.2103 12.987 11.2588C16.755 11.3224 18.855 13.9975 18.855 16.7363C18.855 17.1685 18.7908 17.5689 18.6786 18.0016C18.4223 14.6863 15.6486 13.2447 13.4202 13.2124C11.8812 13.2124 9.89286 13.9334 8.64245 15.6951C9.55625 14.8463 11.1114 13.7092 12.939 13.7572C16.0014 13.8531 17.2836 15.583 17.3321 17.8416C17.3321 17.8416 17.3478 18.8984 16.947 19.5068C17.0592 19.2028 17.0592 19.0907 17.0592 18.7545C17.0592 16.9605 15.1032 15.5027 13.1154 15.8072C11.7528 15.9996 10.839 16.8004 10.5024 17.5371C10.9992 16.8004 12.1056 16.1914 13.452 16.2556C14.9592 16.3197 16.2096 17.3927 16.2738 18.9463C16.338 19.6992 15.9534 21.4609 13.5966 21.8133C16.5942 21.8456 21.0672 17.1846 22.4783 15.6633C24.1295 13.8693 23.889 11.5628 23.889 11.5628Z" fill="#0E71F2"/>
5
+ <path d="M13.0523 17.6504C12.1546 17.9549 11.6735 18.9314 11.9783 19.8287C12.283 20.7254 13.261 21.2061 14.1586 20.9016C15.0406 20.5972 15.5374 19.6201 15.2326 18.7234C14.9284 17.8428 13.9504 17.3459 13.0523 17.6504Z" fill="white"/>
6
+ <path d="M13.7725 18.0664C13.7245 18.0664 13.676 18.0664 13.6123 18.0664C14.189 18.1785 14.6059 18.6587 14.6059 19.2353C14.6059 19.5075 14.5261 19.7478 14.3654 19.9402C14.6383 19.764 14.8147 19.4439 14.8147 19.0914C14.8147 18.5148 14.3497 18.0664 13.7725 18.0664Z" fill="#0E71F2"/>
7
+ <path d="M34.7265 6.11719C34.4379 6.27777 34.117 6.53376 34.117 6.96649V14.8141C34.117 16.0956 34.5663 18.0658 37.1793 18.0658C39.6802 18.0658 40.4499 16.496 40.4499 14.8141L40.3857 6.96649C40.3857 6.53376 40.1932 6.27777 39.9046 6.11719H41.8444C41.5558 6.27777 41.3475 6.53376 41.3475 6.96649L41.2995 14.7505C41.2995 17.7931 39.3274 18.9302 37.0029 18.9302C34.9509 18.9302 32.3218 17.9214 32.3218 14.7823V6.96649C32.3218 6.53376 32.0332 6.27777 31.7607 6.11719" fill="#112C5C"/>
8
+ <path d="M50.3575 12.5572V18.0508C50.3575 18.4674 50.5496 18.5951 50.8382 18.7557H48.2893C48.6098 18.5951 48.77 18.4674 48.77 18.0508V13.2297C48.77 12.2047 48.4334 11.0676 46.7983 11.0676C46.0129 11.0676 45.275 11.5801 44.9227 12.0285V18.0508C44.9227 18.4674 45.1148 18.5951 45.4034 18.7557H42.8384C43.1431 18.5951 43.3034 18.4674 43.3034 18.0508V11.1636C43.3034 10.5869 43.0148 10.491 42.6943 10.3789L44.9227 9.97852V11.2918C45.3392 10.8435 46.4137 9.97852 47.5999 9.97852C48.9949 9.97852 50.3575 10.9076 50.3575 12.5572Z" fill="#112C5C"/>
9
+ <path d="M54.1723 9.97943V18.0517C54.1723 18.4683 54.3649 18.596 54.6692 18.7566H52.0723C52.3609 18.596 52.5691 18.4683 52.5691 18.0517V11.1645C52.5691 10.5879 52.2164 10.5081 51.9121 10.4116L54.1723 9.97943ZM53.3546 6.26367C53.8519 6.26367 54.2684 6.66408 54.2684 7.14478C54.2684 7.67292 53.8519 8.08949 53.3546 8.08949C52.8577 8.08949 52.4251 7.67292 52.4251 7.14478C52.4251 6.66408 52.8577 6.26367 53.3546 6.26367Z" fill="#112C5C"/>
10
+ <path d="M59.9287 11.1643C61.6921 12.0772 63.4394 12.6538 63.4394 15.1366C63.4394 17.4587 61.3232 18.9321 59.3354 18.9321C57.716 18.9321 56.5616 18.2757 55.8722 17.8914L55.8242 15.1042C56.2094 16.4337 57.2192 18.1474 59.207 18.1474C61.211 18.1474 61.724 16.562 61.724 15.6491C61.724 13.8712 60.3776 13.5188 58.5818 12.6059C56.786 11.7248 55.8722 10.7639 55.8722 9.24254C55.8722 7.01631 57.9566 5.95898 59.72 5.95898C60.4094 5.95898 61.4996 6.08724 62.3815 6.66387L62.4776 9.11428C62.2532 8.2337 61.211 6.69567 59.4638 6.69567C57.8762 6.69567 57.3956 7.88125 57.3956 8.66591C57.3956 9.83533 58.1492 10.2837 59.9287 11.1643Z" fill="#112C5C"/>
11
+ <path d="M71.8079 9.97852V17.2661C71.8079 17.8266 71.9843 18.2432 72.5614 18.3229L70.9421 18.9314C70.4933 18.6592 70.2689 18.4674 70.2689 17.6181C69.7078 18.2432 68.8739 18.9314 67.5593 18.9314C66.4535 18.9314 64.7219 18.1947 64.7219 15.4403V11.1636C64.7219 10.5869 64.3691 10.5072 64.0967 10.4107L66.3413 9.97852V15.4403C66.3413 17.0096 67.2065 17.8266 68.2649 17.8266C69.1787 17.8266 69.6917 17.3939 70.237 16.8814V11.1636C70.237 10.5869 69.8842 10.5072 69.5795 10.4107" fill="#112C5C"/>
12
+ <path d="M77.1944 10.9874C76.3928 10.9874 75.6716 11.4519 75.3188 11.9003V17.3297C75.6554 17.7625 76.1684 18.1947 77.0018 18.1947C78.6536 18.1947 79.7114 16.7854 79.7114 14.4633C79.7114 11.6443 78.14 10.9874 77.1944 10.9874ZM75.7994 22.9996H73.2183C73.5069 22.8718 73.6994 22.6956 73.6994 22.2952V11.2277C73.6994 10.6354 73.379 10.5551 73.0742 10.4592L75.3026 9.97852V11.1156C75.6716 10.6834 76.6496 9.97852 77.8358 9.97852C79.4228 9.97852 81.4748 11.3236 81.4748 14.3992C81.4748 16.4012 80.0162 18.9314 77.2262 18.9314C76.3928 18.9314 75.8318 18.7557 75.3188 18.4992V22.2952C75.3188 22.6956 75.5108 22.8718 75.7994 22.9996Z" fill="#112C5C"/>
13
+ <path d="M86.4124 10.6354C85.0498 10.6354 84.3281 11.8523 84.1679 13.1338H88.4164C88.4164 11.3236 87.4223 10.6354 86.4124 10.6354ZM90.0515 15.9205C89.9878 17.4424 88.5605 18.9314 86.5727 18.9314C83.9596 18.9314 82.3564 16.6895 82.3564 14.4789C82.3564 12.4613 83.7832 9.97852 86.6368 9.97852C88.2082 9.97852 90.1318 11.0676 90.1318 13.8225H84.1037V14.335C84.1037 16.2088 85.0978 17.8428 87.07 17.8428C88.3846 17.8428 89.6992 16.7854 90.0515 15.9205Z" fill="#112C5C"/>
14
+ <path d="M93.2906 9.97852V11.6119C93.6753 10.9394 94.6532 9.97852 95.2946 9.97852C95.7434 9.97852 95.7753 10.0265 96.0002 10.1224V11.8685C95.7273 11.516 95.3906 11.2918 94.91 11.2918C94.2044 11.2918 93.6434 11.8523 93.2906 12.3007V18.0508C93.2906 18.4674 93.4989 18.5951 93.7713 18.7557H91.1906C91.4792 18.5951 91.6713 18.4674 91.6713 18.0508V11.1636C91.6713 10.5869 91.3185 10.5072 90.998 10.4107" fill="#112C5C"/>
15
+ </svg>
@@ -53,7 +53,10 @@ export class SuperSelectionApp {
53
53
  iframe.appReady();
54
54
  const ignoreExistingSelectionOption = O.fromNullable(this.ignoreExistingSelection);
55
55
  const shouldIgnoreExistingChoice = isSome(ignoreExistingSelectionOption) && ignoreExistingSelectionOption.value;
56
- if (isSome(chosenFundOption) &&
56
+ if (isSome(superSelectionAppService.state.superChoicePrefill)) {
57
+ navigationService.navigateInternally(this.history, SuperSelectionAppRoutes.Prefill);
58
+ }
59
+ else if (isSome(chosenFundOption) &&
57
60
  chosenFundOption.value.valid !== 'Inactive' &&
58
61
  !shouldIgnoreExistingChoice) {
59
62
  navigationService.navigateInternally(this.history, SuperSelectionAppRoutes.ExistingChoicePage);
@@ -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],"campaignConnectRequestInProgress":[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],"isMultiFund":[4,"is-multi-fund"]}],[0,"sss-loading-page"],[0,"sss-super-choice-item-top",{"name":[1],"logo":[1],"features":[16],"featureSubText":[16],"isMultiFund":[4,"is-multi-fund"],"isPromotedDefault":[4,"is-promoted-default"]}],[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);
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_38",[[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],"campaignConnectRequestInProgress":[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"],[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],"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-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],"isMultiFund":[4,"is-multi-fund"],"isPromotedDefault":[4,"is-promoted-default"]}],[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_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],"campaignConnectRequestInProgress":[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],"isMultiFund":[4,"is-multi-fund"]}],[0,"sss-loading-page"],[0,"sss-super-choice-item-top",{"name":[1],"logo":[1],"features":[16],"featureSubText":[16],"isMultiFund":[4,"is-multi-fund"],"isPromotedDefault":[4,"is-promoted-default"]}],[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);
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_38",[[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],"campaignConnectRequestInProgress":[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"],[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],"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-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],"isMultiFund":[4,"is-multi-fund"],"isPromotedDefault":[4,"is-promoted-default"]}],[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