@flarehr/apollo-super-selection 4.28.30096 → 4.29.30453

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 (31) 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/{p-0936abfe.system.entry.js → p-16367be3.system.entry.js} +1 -1
  4. package/dist/lib/apollo-super-selection/{p-8876ba69.entry.js → p-29a35f2a.entry.js} +4 -4
  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 +130 -135
  9. package/dist/lib/collection/apollo-super-selection.css +1 -1
  10. package/dist/lib/collection/components/super-selection-app/api/super-selection.api.dto.js +71 -86
  11. package/dist/lib/collection/components/super-selection-app/api/super-selection.api.js +1 -1
  12. package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/hesta-default.js +23 -0
  13. package/dist/lib/collection/components/super-selection-app/services/existing-super-choice-info.service.js +61 -45
  14. package/dist/lib/collection/components/super-selection-app/services/super-selection-app.service.js +1 -0
  15. package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-item/super-choice-item-top.js +19 -1
  16. package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +1 -1
  17. package/dist/lib/collection/utils/index.js +3 -0
  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_30.entry.js +130 -135
  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_30.entry.js +3 -3
  24. package/dist/lib/types/components/super-selection-app/api/super-selection.api.dto.d.ts +20 -0
  25. package/dist/lib/types/components/super-selection-app/funds/promoted-fund/funds/hesta-default.d.ts +3 -0
  26. package/dist/lib/types/components/super-selection-app/funds/promoted-fund/types.d.ts +1 -1
  27. package/dist/lib/types/components/super-selection-app/services/existing-super-choice-info.service.d.ts +9 -1
  28. package/dist/lib/types/components/super-selection-app/super-choice-page/super-choice-item/super-choice-item-top.d.ts +1 -0
  29. package/dist/lib/types/components.d.ts +2 -0
  30. package/dist/lib/types/utils/index.d.ts +1 -0
  31. package/package.json +1 -1
@@ -260,7 +260,7 @@ class TapSubscriber extends Subscriber {
260
260
  }
261
261
  }
262
262
 
263
- const AppVersion = '4.28.30096';
263
+ const AppVersion = '4.29.30453';
264
264
 
265
265
  // -------------------------------------------------------------------------------------
266
266
  // guards
@@ -3303,7 +3303,7 @@ class SuperSelectionApi {
3303
3303
  }
3304
3304
  async getCampaignConnectAsync() {
3305
3305
  return buildBackendApiClient()
3306
- .url('compaign-connect')
3306
+ .url('campaign-connect')
3307
3307
  .get()
3308
3308
  .notFound(() => {
3309
3309
  throw new Error('Failed to fetch campaign connect.');
@@ -3436,6 +3436,7 @@ class SuperSelectionAppService {
3436
3436
  this._state.profileConfiguration = Option.fromNullable(appStateResponse.profileConfiguration);
3437
3437
  this._state.superBuyer = Option.fromNullable(appStateResponse.superBuyer);
3438
3438
  this._state.promotedFunds = Option.fromNullable(appStateResponse.promotedFunds);
3439
+ this._state.campaignConnectEnabled = appStateResponse.campaignConnectEnabled;
3439
3440
  if (this._state.campaignConnectEnabled) {
3440
3441
  this._state.campaignConnectPromise = Option.fromNullable(superSelectionApi.getCampaignConnectAsync());
3441
3442
  }
@@ -4341,101 +4342,81 @@ const getFundUsiByFundId = (fundId) => fundId == fund$6.fundId ? some(slateUsi)
4341
4342
  const getLogoSrcByFundId = (fundId) => fundsById[fundId] != undefined ? some(getAssetPath(`assets/${fundsById[fundId].logo}`)) : none;
4342
4343
 
4343
4344
  function getPromotedFundUsi(dto) {
4344
- if ('slate' in dto) {
4345
- return none;
4346
- }
4347
- else if ('australianRetirementTrust' in dto) {
4348
- return some(dto.australianRetirementTrust.usi);
4349
- }
4350
- else if ('aware' in dto) {
4351
- return some(dto.aware.usi);
4352
- }
4353
- else if ('active' in dto) {
4354
- return some(dto.active.usi);
4355
- }
4356
- else if ('australianEthical' in dto) {
4357
- return some(dto.australianEthical.usi);
4358
- }
4359
- else if ('virgin' in dto) {
4360
- return some(dto.virgin.usi);
4361
- }
4362
- else if ('spirit' in dto) {
4363
- return some(dto.spirit.usi);
4364
- }
4365
- else if ('firstSuper' in dto) {
4366
- return some(dto.firstSuper.usi);
4367
- }
4368
- else if ('mercerMyChoice' in dto) {
4369
- return some(dto.mercerMyChoice.usi);
4370
- }
4371
- else {
4372
- return none;
4345
+ switch (dto.kind) {
4346
+ case 'slate':
4347
+ return none;
4348
+ case 'australianRetirementTrust':
4349
+ return some(dto.australianRetirementTrust.usi);
4350
+ case 'aware':
4351
+ return some(dto.aware.usi);
4352
+ case 'active':
4353
+ return some(dto.active.usi);
4354
+ case 'australianEthical':
4355
+ return some(dto.australianEthical.usi);
4356
+ case 'virgin':
4357
+ return some(dto.virgin.usi);
4358
+ case 'spirit':
4359
+ return some(dto.spirit.usi);
4360
+ case 'firstSuper':
4361
+ return some(dto.firstSuper.usi);
4362
+ case 'mercerMyChoice':
4363
+ return some(dto.mercerMyChoice.usi);
4364
+ default:
4365
+ return none;
4373
4366
  }
4374
4367
  }
4375
4368
  function getSuperChoiceUsi(dto) {
4376
- if ('promoted' in dto) {
4377
- return getPromotedFundUsi(dto.promoted);
4378
- }
4379
- else if ('myOwnFund' in dto) {
4380
- return some(dto.myOwnFund.usi);
4381
- }
4382
- else if ('smsf' in dto) {
4383
- return none;
4384
- }
4385
- else if ('default' in dto) {
4386
- return some(dto.default.usi);
4387
- }
4388
- else {
4389
- return none;
4369
+ switch (dto.kind) {
4370
+ case 'Promoted':
4371
+ return getPromotedFundUsi(dto.promoted);
4372
+ case 'MyOwnFund':
4373
+ return some(dto.myOwnFund.usi);
4374
+ case 'SMSF':
4375
+ return none;
4376
+ case 'Default':
4377
+ return some(dto.default.usi);
4378
+ case 'PromotedDefault':
4379
+ return some(dto.promotedDefault.usi);
4380
+ default:
4381
+ return none;
4390
4382
  }
4391
4383
  }
4392
4384
  function getPromotedFundMemberNumber(dto) {
4393
- if ('slate' in dto) {
4394
- return some(dto.slate.memberNumber);
4395
- }
4396
- else if ('australianRetirementTrust' in dto) {
4397
- return some(dto.australianRetirementTrust.memberNumber);
4398
- }
4399
- else if ('aware' in dto) {
4400
- return some(dto.aware.memberNumber);
4401
- }
4402
- else if ('active' in dto) {
4403
- return some(dto.active.memberNumber);
4404
- }
4405
- else if ('australianEthical' in dto) {
4406
- return some(dto.australianEthical.memberNumber);
4407
- }
4408
- else if ('virgin' in dto) {
4409
- return some(dto.virgin.memberNumber);
4410
- }
4411
- else if ('spirit' in dto) {
4412
- return some(dto.spirit.memberNumber);
4413
- }
4414
- else if ('firstSuper' in dto) {
4415
- return some(dto.firstSuper.memberNumber);
4416
- }
4417
- else if ('mercerMyChoice' in dto) {
4418
- return some(dto.mercerMyChoice.memberNumber);
4419
- }
4420
- else {
4421
- return none;
4385
+ switch (dto.kind) {
4386
+ case 'slate':
4387
+ return some(dto.slate.memberNumber);
4388
+ case 'australianRetirementTrust':
4389
+ return some(dto.australianRetirementTrust.memberNumber);
4390
+ case 'aware':
4391
+ return some(dto.aware.memberNumber);
4392
+ case 'active':
4393
+ return some(dto.active.memberNumber);
4394
+ case 'australianEthical':
4395
+ return some(dto.australianEthical.memberNumber);
4396
+ case 'virgin':
4397
+ return some(dto.virgin.memberNumber);
4398
+ case 'spirit':
4399
+ return some(dto.spirit.memberNumber);
4400
+ case 'firstSuper':
4401
+ return some(dto.firstSuper.memberNumber);
4402
+ case 'mercerMyChoice':
4403
+ return some(dto.mercerMyChoice.memberNumber);
4404
+ default:
4405
+ return none;
4422
4406
  }
4423
4407
  }
4424
4408
  function getSuperChoiceMemberNumber(dto) {
4425
- if ('promoted' in dto) {
4426
- return getPromotedFundMemberNumber(dto.promoted);
4427
- }
4428
- else if ('myOwnFund' in dto) {
4429
- return some(dto.myOwnFund.memberNumber);
4430
- }
4431
- else if ('smsf' in dto) {
4432
- return none;
4433
- }
4434
- else if ('default' in dto) {
4435
- return none;
4436
- }
4437
- else {
4438
- return none;
4409
+ switch (dto.kind) {
4410
+ case 'Promoted':
4411
+ return getPromotedFundMemberNumber(dto.promoted);
4412
+ case 'MyOwnFund':
4413
+ return some(dto.myOwnFund.memberNumber);
4414
+ case 'SMSF':
4415
+ case 'Default':
4416
+ case 'PromotedDefault':
4417
+ return none;
4418
+ default:
4419
+ return none;
4439
4420
  }
4440
4421
  }
4441
4422
 
@@ -4451,53 +4432,67 @@ class ExistingFundService {
4451
4432
  const dateSubmitted = choice.dateSubmitted == undefined ? none : some(new Date(choice.dateSubmitted));
4452
4433
  const usi = getSuperChoiceUsi(choiceDetails);
4453
4434
  const memberNumber = getSuperChoiceMemberNumber(choiceDetails);
4454
- if ('promoted' in choiceDetails) {
4455
- const dtoPropName = Object.keys(choiceDetails.promoted)[0];
4456
- const fund = getFundByDtoPropName(dtoPropName);
4457
- if (isNone(fund))
4435
+ switch (choiceDetails.kind) {
4436
+ case 'Promoted': {
4437
+ const dtoPropName = Object.keys(choiceDetails.promoted)[0];
4438
+ const fund = getFundByDtoPropName(dtoPropName);
4439
+ if (isNone(fund))
4440
+ return none;
4441
+ return some({
4442
+ type: 'Promoted Fund',
4443
+ id: fund.value.fundId,
4444
+ name: fund.value.name,
4445
+ usi: usi,
4446
+ valid: 'Active',
4447
+ memberNumber: memberNumber,
4448
+ lastNominatedAt: dateSubmitted
4449
+ });
4450
+ }
4451
+ case 'MyOwnFund': {
4452
+ const fundUsi = choiceDetails.myOwnFund.usi;
4453
+ const fund = await this.getFundByUsiAsync(fundUsi);
4454
+ return some({
4455
+ type: 'My Own Fund',
4456
+ name: isSome(fund) ? fund.value.productName : fundUsi,
4457
+ usi: usi,
4458
+ valid: this.toFundValidState(fund),
4459
+ memberNumber: memberNumber,
4460
+ lastNominatedAt: dateSubmitted
4461
+ });
4462
+ }
4463
+ case 'SMSF':
4464
+ return some({
4465
+ type: 'Self Managed Fund',
4466
+ name: choiceDetails.smsf.fundName,
4467
+ valid: 'Unknown',
4468
+ lastNominatedAt: dateSubmitted
4469
+ });
4470
+ case 'Default': {
4471
+ const defaultUsi = choiceDetails.default.usi;
4472
+ const defaultFund = await this.getFundByUsiAsync(defaultUsi);
4473
+ return some({
4474
+ type: 'Default Fund',
4475
+ name: isSome(defaultFund) ? defaultFund.value.productName : defaultUsi,
4476
+ usi: usi,
4477
+ valid: this.toFundValidState(defaultFund),
4478
+ lastNominatedAt: dateSubmitted
4479
+ });
4480
+ }
4481
+ case 'PromotedDefault': {
4482
+ const defaultUsi = choiceDetails.promotedDefault.usi;
4483
+ const defaultFund = await this.getFundByUsiAsync(defaultUsi);
4484
+ return some({
4485
+ type: 'Promoted Default Fund',
4486
+ id: choiceDetails.promotedDefault.fundId,
4487
+ name: isSome(defaultFund) ? defaultFund.value.productName : defaultUsi,
4488
+ usi: usi,
4489
+ valid: this.toFundValidState(defaultFund),
4490
+ lastNominatedAt: dateSubmitted
4491
+ });
4492
+ }
4493
+ default:
4458
4494
  return none;
4459
- return some({
4460
- type: 'Promoted Fund',
4461
- id: fund.value.fundId,
4462
- name: fund.value.name,
4463
- usi: usi,
4464
- valid: 'Active',
4465
- memberNumber: memberNumber,
4466
- lastNominatedAt: dateSubmitted
4467
- });
4468
- }
4469
- else if ('smsf' in choiceDetails) {
4470
- return some({
4471
- type: 'Self Managed Fund',
4472
- name: choiceDetails.smsf.fundName,
4473
- valid: 'Unknown',
4474
- lastNominatedAt: dateSubmitted
4475
- });
4476
- }
4477
- else if ('myOwnFund' in choiceDetails) {
4478
- const fundUsi = choiceDetails.myOwnFund.usi;
4479
- const fund = await this.getFundByUsiAsync(fundUsi);
4480
- return some({
4481
- type: 'My Own Fund',
4482
- name: isSome(fund) ? fund.value.productName : fundUsi,
4483
- usi: usi,
4484
- valid: this.toFundValidState(fund),
4485
- memberNumber: memberNumber,
4486
- lastNominatedAt: dateSubmitted
4487
- });
4488
- }
4489
- else if ('default' in choiceDetails) {
4490
- const defaultUsi = choiceDetails.default.usi;
4491
- const defaultFund = await this.getFundByUsiAsync(defaultUsi);
4492
- return some({
4493
- type: 'Default Fund',
4494
- name: isSome(defaultFund) ? defaultFund.value.productName : defaultUsi,
4495
- usi: usi,
4496
- valid: this.toFundValidState(defaultFund),
4497
- lastNominatedAt: dateSubmitted
4498
- });
4499
4495
  }
4500
- return none;
4501
4496
  }
4502
4497
  async submitRetainSuperFundAsync(dto) {
4503
4498
  return buildBackendApiClient()
@@ -5668,7 +5663,7 @@ const SuperChoiceItemTop = class {
5668
5663
  registerInstance(this, hostRef);
5669
5664
  }
5670
5665
  render() {
5671
- return (h(Host, null, h("div", { class: "px-4 lg:px-6 pt-6" }, h("div", { class: "text-right w-100 -mt-5 -mr-3.5 lg:-mr-5" }, h("span", { class: "text-xs bg-gray-100 text-gray-800 font-medium rounded-xl py-0.5 px-2.5 mr-0.5" }, "Featured")), h("div", { class: "flex lg:block mt-2 md:mt-0 lg:mt-4" }, h("img", { class: "h-12 md:h-14 lg:h-16 object-contain w-auto w-[80px] md:w-[96px] lg:w-[140px] md:hidden lg:block lg:object-left", alt: this.name, src: getAssetPath(`assets/${this.logo}`) }), h("div", { class: "grid content-center" }, h("p", { class: "text-base md:text-lg font-bold ml-4 md:ml-0 md:mb-0 lg:mt-4" }, this.name))), h("div", { class: "mt-4 sm:mt-2 text-sm space-y-2" }, this.features.map((feature) => (h("div", { class: "flex" }, h("div", { class: "h-5 w-5 flex-none mr-1.5" }, h("img", { alt: "checked", src: getAssetPath(`assets/icon-check.svg`) })), h("div", { class: "leading-5" }, feature))))), this.featureSubText && (h("p", { class: "text-xs text-gray-500 italic mt-4 leading-4" }, this.featureSubText)))));
5666
+ return (h(Host, null, h("div", { class: "px-4 lg:px-6 pt-6" }, h("div", { class: "text-right w-100 -mt-5 -mr-3.5 lg:-mr-5" }, this.isPromotedDefault && (h("span", { class: "text-xs bg-blue-100 text-blue-800 font-medium rounded-xl py-0.5 px-2.5 mr-1" }, "Employer Default")), h("span", { class: "text-xs bg-gray-100 text-gray-800 font-medium rounded-xl py-0.5 px-2.5 mr-0.5" }, "Featured")), h("div", { class: "flex lg:block mt-2 md:mt-0 lg:mt-4" }, h("img", { class: "h-12 md:h-14 lg:h-16 object-contain w-[80px] md:w-[96px] lg:w-[140px] md:hidden lg:block lg:object-left", alt: this.name, src: getAssetPath(`assets/${this.logo}`) }), h("div", { class: "grid content-center" }, h("p", { class: "text-base md:text-lg font-bold ml-4 md:ml-0 md:mb-0 lg:mt-4" }, this.name))), h("div", { class: "mt-4 sm:mt-2 text-sm space-y-2" }, this.features.map((feature) => (h("div", { class: "flex" }, h("div", { class: "h-5 w-5 flex-none mr-1.5" }, h("img", { alt: "checked", src: getAssetPath(`assets/icon-check.svg`) })), h("div", { class: "leading-5" }, feature))))), this.featureSubText && (h("p", { class: "text-xs text-gray-500 italic mt-4 leading-4" }, this.featureSubText)))));
5672
5667
  }
5673
5668
  };
5674
5669
 
@@ -5716,7 +5711,7 @@ const SuperChoicePage = class {
5716
5711
  } }, h("div", { class: {
5717
5712
  'flex border-b lg:border-b-0': true,
5718
5713
  'rounded-b-lg': index === this.promotedFunds.length - 1
5719
- } }, h("div", { class: "hidden md:flex lg:hidden w-36 justify-center pt-6 pl-6" }, h("img", { class: "h-16 object-contain w-full max-w-[96px]", alt: fund.name, src: getAssetPath(`assets/${fund.logo}`) })), h("div", { class: "w-full" }, h("sss-super-choice-item-top", { logo: fund.logo, name: fund.name, features: fund.features, featureSubText: fund.featureSubText }), h("div", { class: "lg:hidden" }, h("sss-super-choice-item-bottom", { disclaimer: fund.disclaimer, abnInfo: fund.abnInfo, abn: fund.abn, onJoinFundClicked: async () => this.handleJoinSuperClickAsync(fund) }))))))), this.promotedFunds.map((fund, index) => (h("div", { class: {
5714
+ } }, h("div", { class: "hidden md:flex lg:hidden w-36 justify-center pt-6 pl-6" }, h("img", { class: "h-16 object-contain w-full max-w-[96px]", alt: fund.name, src: getAssetPath(`assets/${fund.logo}`) })), h("div", { class: "w-full" }, h("sss-super-choice-item-top", { logo: fund.logo, name: fund.name, features: fund.features, featureSubText: fund.featureSubText, isPromotedDefault: fund.isPromotedDefault }), h("div", { class: "lg:hidden" }, h("sss-super-choice-item-bottom", { disclaimer: fund.disclaimer, abnInfo: fund.abnInfo, abn: fund.abn, onJoinFundClicked: async () => this.handleJoinSuperClickAsync(fund) }))))))), this.promotedFunds.map((fund, index) => (h("div", { class: {
5720
5715
  'hidden lg:block border-r': true,
5721
5716
  'rounded-br-lg': index === this.promotedFunds.length - 1
5722
5717
  } }, h("sss-super-choice-item-bottom", { disclaimer: fund.disclaimer, abnInfo: fund.abnInfo, abn: fund.abn, onJoinFundClicked: async () => this.handleJoinSuperClickAsync(fund) })))))), h("div", { class: "flex justify-center mt-8 sm:mt-12" }, h("div", { class: "pb-8 sm:pb-12 max-w-720 border-b" }, h("h5", { class: "font-bold sm:text-lg" }, "Or, choose another super fund:"), h("ul", { class: "list-disc list-outside ml-6 mt-3 mb-6 space-y-2 leading-6 text-sm sm:text-base" }, h("li", null, "Select this option if you'd like to use your current account with another super fund, your self-managed super fund, or your employer's default fund."), h("li", null, "If you are unsure of your current super fund details, you can find out at", ' ', h("a", { class: "text-primary-base font-medium hover:text-primary-hover", target: "_blank", href: navigationService.toExternalUrl(mygovLink) }, mygovLinkDisplay)), h("li", null, "A full list of super funds can be viewed at", ' ', h("a", { class: "text-primary-base font-medium hover:text-primary-hover", target: "_blank", href: navigationService.toExternalUrl(superfundsLink) }, superfundsLinkDisplay))), h("stencil-route-link", { url: SuperSelectionAppRoutes.MyOwnFund }, h("sss-button", { fillWidthOnMobile: true }, "Choose another super fund")))), h("div", { class: "flex justify-center" }, h("div", { class: "pt-8 sm:pt-12 max-w-720" }, h("h5", { class: "font-semibold" }, "IMPORTANT INFORMATION:"), h("ul", { class: "list-disc list-outside ml-6 mt-3 space-y-2 text-sm leading-6" }, h("li", null, "The superannuation funds featured above are for your information only. The order, position and placement of content should not be interpreted as an opinion or recommendation (actual or implied) by Flare as to the suitability or appropriateness of any superannuation fund for you. In featuring these superannuation funds, Flare has not taken into account your objectives, financial situation or needs."), h("li", null, "This is not a comparison service. This page contains factual information only and does not constitute either general or personal advice about any financial products. We do not take into account your objectives, financial situation or needs. If you have questions or need help making a decision about your superannuation fund, you should speak to a licensed financial product advice provider."), h("li", null, "Flare, the technology partner you are accessing Flare via and your employer do not endorse or accept responsibility for any financial product advice or services provided by the promoters or trustees of the featured superannuation funds. Flare does not endorse or accept responsibility for any of the content shown about any of the featured superannuation funds."), h("li", null, "You should consider the relevant superannuation fund\u2019s PDS and TMD (if applicable) in deciding whether to apply to join the superannuation fund. Each of the superannuation funds featured above include a link to their PDS and TMD (if applicable) for your convenience. If you are considering joining another superannuation fund, you can typically find the PDS and TMD (if applicable) on that fund\u2019s website."), h("li", null, "You should be aware that, if you do choose one of the featured superannuation funds, Flare and it\u2019s associates will normally receive a fee for you doing so (this includes Simple Financial Choices Pty Ltd, a wholly owned subsidiary of Flare, which is a sub-promoter of Slate Super).")))))));
@@ -1 +1 @@
1
- import{p as promiseResolve,b as bootstrapLazy}from"./index-189b2180.js";import"./datorama-akita-127aea91.js";import{g as globalScripts}from"./app-globals-c1f89805.js";var patchBrowser=function(){var s=import.meta.url;var e={};if(s!==""){e.resourcesUrl=new URL(".",s).href}return promiseResolve(e)};patchBrowser().then((function(s){globalScripts();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]}],[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"]}]]]],s)}));
1
+ import{p as promiseResolve,b as bootstrapLazy}from"./index-189b2180.js";import"./datorama-akita-127aea91.js";import{g as globalScripts}from"./app-globals-c1f89805.js";var patchBrowser=function(){var e=import.meta.url;var s={};if(e!==""){s.resourcesUrl=new URL(".",e).href}return promiseResolve(s)};patchBrowser().then((function(e){globalScripts();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]}],[0,"sss-loading-page"],[0,"sss-super-choice-item-top",{name:[1],logo:[1],features:[16],featureSubText:[16],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"]}]]]],e)}));
@@ -1 +1 @@
1
- import{p as promiseResolve,b as bootstrapLazy}from"./index-189b2180.js";import"./datorama-akita-127aea91.js";import{g as globalScripts}from"./app-globals-c1f89805.js";var patchEsm=function(){return promiseResolve()};var defineCustomElements=function(e,s){if(typeof window==="undefined")return Promise.resolve();return patchEsm().then((function(){globalScripts();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]}],[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"]}]]]],s)}))};export{defineCustomElements};
1
+ import{p as promiseResolve,b as bootstrapLazy}from"./index-189b2180.js";import"./datorama-akita-127aea91.js";import{g as globalScripts}from"./app-globals-c1f89805.js";var patchEsm=function(){return promiseResolve()};var defineCustomElements=function(e,s){if(typeof window==="undefined")return Promise.resolve();return patchEsm().then((function(){globalScripts();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]}],[0,"sss-loading-page"],[0,"sss-super-choice-item-top",{name:[1],logo:[1],features:[16],featureSubText:[16],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"]}]]]],s)}))};export{defineCustomElements};