@flarehr/apollo-super-selection 5.44.6793 → 5.45.6971
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.
- package/dist/lib/apollo-super-selection/apollo-super-selection.esm.js +1 -1
- package/dist/lib/apollo-super-selection/p-44edd355.system.entry.js +69 -0
- package/dist/lib/apollo-super-selection/p-46cf321a.entry.js +14 -0
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- package/dist/lib/cjs/apollo-super-selection.cjs.js +1 -1
- package/dist/lib/cjs/loader.cjs.js +1 -1
- package/dist/lib/cjs/{sss-button_33.cjs.entry.js → sss-button_34.cjs.entry.js} +205 -103
- package/dist/lib/collection/collection-manifest.json +5 -3
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund-inputs.js +253 -0
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund.js +121 -0
- package/dist/lib/collection/components/super-selection-app/services/super-selection-app.routes.js +1 -1
- package/dist/lib/esm/apollo-super-selection.js +1 -1
- package/dist/lib/esm/loader.js +1 -1
- package/dist/lib/esm/{sss-button_33.entry.js → sss-button_34.entry.js} +204 -103
- package/dist/lib/esm-es5/apollo-super-selection.js +1 -1
- package/dist/lib/esm-es5/loader.js +1 -1
- package/dist/lib/esm-es5/sss-button_34.entry.js +69 -0
- package/dist/lib/types/components/super-selection-app/funds/custom-fund/custom-fund.store.d.ts +1 -1
- package/dist/lib/types/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund-inputs.d.ts +29 -0
- package/dist/lib/types/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund.d.ts +14 -0
- package/dist/lib/types/components.d.ts +35 -15
- package/package.json +1 -1
- package/dist/lib/apollo-super-selection/p-36a6d49c.system.entry.js +0 -69
- package/dist/lib/apollo-super-selection/p-4f85f43b.entry.js +0 -14
- package/dist/lib/collection/components/super-smsf/super-smsf-types.js +0 -1
- package/dist/lib/collection/components/super-smsf/super-smsf.js +0 -136
- package/dist/lib/esm-es5/sss-button_33.entry.js +0 -69
- package/dist/lib/types/components/super-smsf/super-smsf-types.d.ts +0 -34
- package/dist/lib/types/components/super-smsf/super-smsf.d.ts +0 -18
- /package/dist/lib/collection/components/{super-smsf/super-smsf.form.js → super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund.form.js} +0 -0
- /package/dist/lib/types/components/{super-smsf/super-smsf.form.d.ts → super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund.form.d.ts} +0 -0
|
@@ -260,7 +260,7 @@ class TapSubscriber extends Subscriber {
|
|
|
260
260
|
}
|
|
261
261
|
}
|
|
262
262
|
|
|
263
|
-
const AppVersion = '5.
|
|
263
|
+
const AppVersion = '5.45.6971';
|
|
264
264
|
|
|
265
265
|
// -------------------------------------------------------------------------------------
|
|
266
266
|
// guards
|
|
@@ -1207,7 +1207,7 @@ const superSelectionAppStencilRoutes = [
|
|
|
1207
1207
|
h("stencil-route", { url: SuperSelectionAppRoutes.PrefillMyOwnFundPage, component: "sss-prefill-my-own-fund" }),
|
|
1208
1208
|
h("stencil-route", { url: SuperSelectionAppRoutes.PrefillSMSFPage, component: "sss-prefill-smsf" }),
|
|
1209
1209
|
h("stencil-route", { url: SuperSelectionAppRoutes.PrefillInvalidSMSFPage, component: "sss-prefill-invalid-smsf" }),
|
|
1210
|
-
h("stencil-route", { url: SuperSelectionAppRoutes.SelfManagedFund, component: "sss-
|
|
1210
|
+
h("stencil-route", { url: SuperSelectionAppRoutes.SelfManagedFund, component: "sss-self-managed-fund" }),
|
|
1211
1211
|
h("stencil-route", { url: SuperSelectionAppRoutes.DefaultFund, component: "sss-default-fund" }),
|
|
1212
1212
|
h("stencil-route", { url: SuperSelectionAppRoutes.FeaturedFunds, component: "sss-super-campaign-featured-funds" }),
|
|
1213
1213
|
h("stencil-route", { url: SuperSelectionAppRoutes.StandardChoice, component: "sss-standard-choice-form" }),
|
|
@@ -5877,6 +5877,207 @@ const PrefillWarningBox = class {
|
|
|
5877
5877
|
}
|
|
5878
5878
|
};
|
|
5879
5879
|
|
|
5880
|
+
function validateAbn(abn) {
|
|
5881
|
+
const digitArray = abn.split('').map(Number);
|
|
5882
|
+
const isAllDigits = digitArray.every((d) => !isNaN(d));
|
|
5883
|
+
const weightingFactors = [10, 1, 3, 5, 7, 9, 11, 13, 15, 17, 19];
|
|
5884
|
+
if (!isAllDigits || digitArray.length !== weightingFactors.length) {
|
|
5885
|
+
return false;
|
|
5886
|
+
}
|
|
5887
|
+
digitArray[0]--;
|
|
5888
|
+
const sum = digitArray.reduce((sum, digit, i) => sum + digit * weightingFactors[i], 0);
|
|
5889
|
+
return sum % 89 === 0;
|
|
5890
|
+
}
|
|
5891
|
+
|
|
5892
|
+
const SelfManagedFund = class {
|
|
5893
|
+
constructor(hostRef) {
|
|
5894
|
+
registerInstance(this, hostRef);
|
|
5895
|
+
this.isSubmitDisabled = true;
|
|
5896
|
+
this.isAbnValid = validateAbn(state$1.selfManagedFundForm.fundAbn);
|
|
5897
|
+
this.eventTrackingService = EventTrackingService.Instance;
|
|
5898
|
+
this.success = () => {
|
|
5899
|
+
navigationService.navigateInternallyToStandardChoice({
|
|
5900
|
+
history: this.history,
|
|
5901
|
+
fundName: 'Self-managed super fund',
|
|
5902
|
+
fundDetails: {
|
|
5903
|
+
type: 'smsf',
|
|
5904
|
+
fundName: state$1.selfManagedFundForm.fundName,
|
|
5905
|
+
fundEsa: state$1.selfManagedFundForm.fundEsa
|
|
5906
|
+
},
|
|
5907
|
+
handleSubmitFn: async (standardChoiceFormSignature) => {
|
|
5908
|
+
const requestDto = Object.assign({ smsfChoice: {
|
|
5909
|
+
abn: state$1.selfManagedFundForm.fundAbn,
|
|
5910
|
+
fundName: state$1.selfManagedFundForm.fundName,
|
|
5911
|
+
fundAddress: {
|
|
5912
|
+
addressLine1: state$1.selfManagedFundForm.addressLine1,
|
|
5913
|
+
addressLine2: state$1.selfManagedFundForm.addressLine2,
|
|
5914
|
+
city: state$1.selfManagedFundForm.city,
|
|
5915
|
+
state: state$1.selfManagedFundForm.state,
|
|
5916
|
+
postcode: state$1.selfManagedFundForm.postcode
|
|
5917
|
+
},
|
|
5918
|
+
bsb: state$1.selfManagedFundForm.bsb,
|
|
5919
|
+
bankAccountName: state$1.selfManagedFundForm.bankAccountName,
|
|
5920
|
+
bankAccountNumber: state$1.selfManagedFundForm.bankAccountNumber,
|
|
5921
|
+
electronicServiceAddress: state$1.selfManagedFundForm.fundEsa,
|
|
5922
|
+
memberFirstName: state$1.selfManagedFundForm.memberFirstName,
|
|
5923
|
+
memberFamilyName: state$1.selfManagedFundForm.memberFamilyName
|
|
5924
|
+
}, standardChoiceFormSignature }, superSelectionAppService.promotedFundsConfig);
|
|
5925
|
+
await customFundChoiceApi.submitSelfManagedFundChoiceAsync(requestDto);
|
|
5926
|
+
}
|
|
5927
|
+
});
|
|
5928
|
+
};
|
|
5929
|
+
}
|
|
5930
|
+
componentDidLoad() {
|
|
5931
|
+
this.updateIsSubmitDisabled();
|
|
5932
|
+
return this.eventTrackingService.TrackSmsfSuperFundDetailViewedAsync({
|
|
5933
|
+
promotedFundsShown: superSelectionAppService.promotedFunds,
|
|
5934
|
+
defaultFundUsiSet: toUndefined(superSelectionAppService.defaultFundUsi)
|
|
5935
|
+
});
|
|
5936
|
+
}
|
|
5937
|
+
render() {
|
|
5938
|
+
return (h(Host, null, h("sss-header-section", null), h("div", { class: "flex justify-center mt-11" }, h("sss-custom-fund", null, h("form", { noValidate: true, onSubmit: (ev) => ev.preventDefault(), class: {
|
|
5939
|
+
'was-validated': this.formState === 'validated'
|
|
5940
|
+
}, ref: (el) => (this.formElement = el), onInput: (_) => this.updateIsSubmitDisabled() }, h("div", { class: "p-4 sm:p-6 pb-6 sm:pb-8 border shadow-sm rounded-lg max-w-560" }, h("p", { class: "sm:text-lg font-bold" }, "Fund details"), h("div", { class: "bg-yellow-50 border-l-4 border-yellow-400 p-4 my-3" }, h("div", { class: "flex" }, h("div", { class: "flex-shrink-0" }, h("img", { class: "h-5 w-5", src: getAssetPath('assets/icon-exclamation.svg') })), h("div", { class: "ml-3 text-sm text-yellow-700 leading-5" }, "Make sure your Self-managed super fund (SMSF) is a registered fund before completing this step."))), h("sss-self-managed-fund-inputs", { fundForm: state$1.selfManagedFundForm, showValidationErrors: this.formState === 'validated', onFormChanged: (event) => {
|
|
5941
|
+
state$1.selfManagedFundForm = Object.assign(Object.assign({}, state$1.selfManagedFundForm), event.detail);
|
|
5942
|
+
if (event.detail.isAbnValid !== undefined)
|
|
5943
|
+
this.isAbnValid = event.detail.isAbnValid;
|
|
5944
|
+
this.updateIsSubmitDisabled();
|
|
5945
|
+
} })), h("div", { class: "flex justify-center mt-8" }, h("div", { class: "sm:max-w-320 w-full" }, h("div", { class: "mb-4", onClick:
|
|
5946
|
+
// user clicks on disabled button (div wrapper) then validation errors will show
|
|
5947
|
+
() => (this.formState = 'validated') }, h("sss-button", { testid: "continue-button", fillWidth: true, promiseFn: () => this.handleSubmitForm(), disabled: this.isSubmitDisabled }, "Continue")), h("stencil-route-link", { url: SuperSelectionAppRoutes.ChoicePage }, h("sss-button", { testid: "back-button", fillWidth: true, variant: "secondary" }, "Back")))))))));
|
|
5948
|
+
}
|
|
5949
|
+
updateIsSubmitDisabled() {
|
|
5950
|
+
this.isSubmitDisabled = !this.formElement.checkValidity() || !this.isAbnValid;
|
|
5951
|
+
}
|
|
5952
|
+
async handleSubmitForm() {
|
|
5953
|
+
this.formState = 'validated';
|
|
5954
|
+
if (this.formElement.checkValidity())
|
|
5955
|
+
this.success();
|
|
5956
|
+
}
|
|
5957
|
+
};
|
|
5958
|
+
injectHistory(SelfManagedFund);
|
|
5959
|
+
|
|
5960
|
+
var AbnValidationStatus;
|
|
5961
|
+
(function (AbnValidationStatus) {
|
|
5962
|
+
AbnValidationStatus[AbnValidationStatus["Invalid"] = 1] = "Invalid";
|
|
5963
|
+
AbnValidationStatus[AbnValidationStatus["AbnIsUsedForRegulatedFund"] = 2] = "AbnIsUsedForRegulatedFund";
|
|
5964
|
+
AbnValidationStatus[AbnValidationStatus["Valid"] = 3] = "Valid";
|
|
5965
|
+
})(AbnValidationStatus || (AbnValidationStatus = {}));
|
|
5966
|
+
const SelfManagedFundInputs = class {
|
|
5967
|
+
constructor(hostRef) {
|
|
5968
|
+
registerInstance(this, hostRef);
|
|
5969
|
+
this.formChanged = createEvent(this, "formChanged", 7);
|
|
5970
|
+
this.abnValidationStatus = AbnValidationStatus.Invalid;
|
|
5971
|
+
this.isAbnTouched = false;
|
|
5972
|
+
this.currentBank = none;
|
|
5973
|
+
this.addressErrorMessage = none;
|
|
5974
|
+
this.stateOptions = [
|
|
5975
|
+
{ value: 'NSW', label: 'NSW' },
|
|
5976
|
+
{ value: 'QLD', label: 'QLD' },
|
|
5977
|
+
{ value: 'ACT', label: 'ACT' },
|
|
5978
|
+
{ value: 'VIC', label: 'VIC' },
|
|
5979
|
+
{ value: 'TAS', label: 'TAS' },
|
|
5980
|
+
{ value: 'WA', label: 'WA' },
|
|
5981
|
+
{ value: 'SA', label: 'SA' },
|
|
5982
|
+
{ value: 'NT', label: 'NT' }
|
|
5983
|
+
];
|
|
5984
|
+
this.bsbRegex = new RegExp(/^[0-9]{3}[0-9]{3}$/);
|
|
5985
|
+
this.bankAccountNumberRegex = new RegExp(/^[0-9]{2,10}$/);
|
|
5986
|
+
}
|
|
5987
|
+
render() {
|
|
5988
|
+
const inputClass = {
|
|
5989
|
+
'relative shadow-sm focus:ring-primary-focus focus:border-primary-base block w-full text-base sm:text-sm border-gray-300 rounded-md focus:z-10': true,
|
|
5990
|
+
'invalid:border-red-300 invalid:text-red-900 invalid:placeholder-red-300 invalid:focus:ring-red-500 invalid:focus:border-red-500': this
|
|
5991
|
+
.showValidationErrors
|
|
5992
|
+
};
|
|
5993
|
+
return (h("div", null, h("div", null, h("label", { class: "text-sm font-medium text-gray-700" }, "Fund name"), h("div", { class: "mt-1" }, h("input", { type: "text", class: inputClass, required: true, minlength: "2", name: "fundName", id: "fundName", value: state$1.selfManagedFundForm.fundName, onChange: (ev) => this.updateFormField('fundName', ev.target.value.trim()) }), h("div", { class: "invalid-feedback mt-2 text-sm text-red-600" }, "Enter a valid fund name"))), h("div", { class: "mt-3" }, h("label", { class: "text-sm font-medium text-gray-700" }, "Fund ABN"), h("div", { class: "mt-1" }, h("input", { type: "text", class: inputClass, required: true, minlength: "2", name: "fundAbn", id: "fundAbn", value: state$1.selfManagedFundForm.fundAbn, inputmode: "numeric", pattern: "[0-9]*", onKeyUp: async (ev) => {
|
|
5994
|
+
const abnInput = ev.target;
|
|
5995
|
+
this.updateFormField('fundAbn', abnInput.value.trim());
|
|
5996
|
+
this.abnValidationStatus = AbnValidationStatus.Invalid;
|
|
5997
|
+
if (validateAbn(abnInput.value)) {
|
|
5998
|
+
const isAbnUsedForRegulatedFund = await this.isAbnUsedForRegulatedAsync(abnInput.value);
|
|
5999
|
+
this.abnValidationStatus = isAbnUsedForRegulatedFund
|
|
6000
|
+
? AbnValidationStatus.AbnIsUsedForRegulatedFund
|
|
6001
|
+
: AbnValidationStatus.Valid;
|
|
6002
|
+
}
|
|
6003
|
+
// We need to set a custom validity message to trigger css invalid styles for non valid cases
|
|
6004
|
+
const validityMessage = this.abnValidationStatus === AbnValidationStatus.Valid
|
|
6005
|
+
? ''
|
|
6006
|
+
: 'Enter a valid fund ABN (digits only)';
|
|
6007
|
+
abnInput.setCustomValidity(validityMessage);
|
|
6008
|
+
this.updateFormField('isAbnValid', this.abnValidationStatus === AbnValidationStatus.Valid);
|
|
6009
|
+
}, onBlur: () => (this.isAbnTouched = true) }), this.renderAbnValidationError())), h("div", { class: "mt-3" }, h("label", { class: "text-sm font-medium text-gray-700" }, "Electronic service address alias (ESA)"), h("div", { class: "mt-1" }, h("input", { type: "text", class: inputClass, required: true, minlength: "2", name: "fundEsa", id: "fundEsa", value: state$1.selfManagedFundForm.fundEsa, onChange: (ev) => this.updateFormField('fundEsa', ev.target.value.trim()) }), h("div", { class: "invalid-feedback mt-2 text-sm text-red-600" }, "Enter a valid fund ESA"))), h("div", { class: "mt-3" }, h("label", { class: "text-sm font-medium text-gray-700" }, "Fund address"), h("div", { class: "mt-1 rounded-md shadow-sm -space-y-px" }, h("input", { placeholder: "Address line 1", type: "text", class: Object.assign(Object.assign({}, inputClass), { 'rounded-none rounded-t-md shadow-none': true }), required: true, minlength: "2", name: "addressLine1", id: "addressLine1", value: state$1.selfManagedFundForm.addressLine1, onChange: (ev) => {
|
|
6010
|
+
this.updateFormField('addressLine1', ev.target.value.trim());
|
|
6011
|
+
this.updateAddressErrorMessage();
|
|
6012
|
+
}, ref: (el) => (this.addressLine1Element = el) }), h("input", { placeholder: "Address line 2 (optional)", type: "text", class: Object.assign(Object.assign({}, inputClass), { 'rounded-none shadow-none': true }), name: "addressLine2", id: "addressLine2", value: state$1.selfManagedFundForm.addressLine2, onChange: (ev) => this.updateFormField('addressLine2', ev.target.value.trim()) }), h("input", { placeholder: "City/suburb", type: "text", class: Object.assign(Object.assign({}, inputClass), { 'rounded-none shadow-none': true }), name: "city", required: true, id: "city", value: state$1.selfManagedFundForm.city, onChange: (ev) => {
|
|
6013
|
+
this.updateFormField('city', ev.target.value.trim());
|
|
6014
|
+
this.updateAddressErrorMessage();
|
|
6015
|
+
}, ref: (el) => (this.cityElement = el) }), h("div", { class: "flex -space-x-px" }, h("div", { class: "w-1/2 flex-1 min-w-0" }, h("input", { placeholder: "Postcode", type: "text", required: true, class: Object.assign(Object.assign({}, inputClass), { 'rounded-none rounded-bl-md shadow-none': true }), name: "postcode", minlength: "4", maxlength: "4", pattern: "[0-9]{4}", id: "postcode", value: state$1.selfManagedFundForm.postcode, inputmode: "numeric", onChange: (ev) => {
|
|
6016
|
+
this.updateFormField('postcode', ev.target.value.trim());
|
|
6017
|
+
this.updateAddressErrorMessage();
|
|
6018
|
+
}, ref: (el) => (this.postcodeElement = el) })), h("div", { class: "flex-1 min-w-0" }, h("select", { class: Object.assign(Object.assign({}, inputClass), { 'rounded-none rounded-br-md shadow-none': true, 'text-gray-500': this.fundForm.state !== undefined }), name: "state", required: true, id: "state", onChange: (ev) => {
|
|
6019
|
+
this.updateFormField('state', ev.target.value.trim());
|
|
6020
|
+
this.updateAddressErrorMessage();
|
|
6021
|
+
}, ref: (el) => (this.stateElement = el) }, h("option", { disabled: true, selected: this.fundForm.state !== undefined, value: "" }, "State"), this.stateOptions.map((s) => (h("option", { value: s.value, selected: this.fundForm.state === s.value }, s.label))))))), isSome(this.addressErrorMessage) && this.showValidationErrors && (h("div", { class: "mt-2 text-sm text-red-600" }, this.addressErrorMessage.value))), h("div", { class: "flex space-x-4" }, h("div", { class: "mt-3 w-1/2" }, h("label", { class: "text-sm font-medium text-gray-700" }, "Given name(s)"), h("div", { class: "mt-1" }, h("sss-name-input", { testId: "member-given-names-input", name: "memberFirstName", readableName: "Member given name(s)", showValidationErrors: this.showValidationErrors, value: state$1.selfManagedFundForm.memberFirstName, onChange: (ev) => this.updateFormField('memberFirstName', ev.target.value.trim()) }))), h("div", { class: "mt-3 w-1/2" }, h("label", { class: "text-sm font-medium text-gray-700" }, "Last name"), h("div", { class: "mt-1" }, h("sss-name-input", { testId: "member-last-name-input", name: "memberFamilyName", readableName: "Member last name", showValidationErrors: this.showValidationErrors, value: state$1.selfManagedFundForm.memberFamilyName, onChange: (ev) => this.updateFormField('memberFamilyName', ev.target.value.trim()) })))), h("h3", { class: "text-lg font-bold mt-6" }, "Fund bank details"), h("div", { class: "mt-3" }, h("label", { class: "text-sm font-medium text-gray-700" }, "Account name"), h("div", { class: "mt-1" }, h("input", { type: "text", required: true, class: inputClass, name: "bankAccountName", minlength: "2", id: "bankAccountName", value: state$1.selfManagedFundForm.bankAccountName, onChange: (ev) => this.updateFormField('bankAccountName', ev.target.value.trim()) }), h("div", { class: "invalid-feedback mt-2 text-sm text-red-600" }, "Enter a valid bank account name"))), h("div", { class: "mt-3" }, h("label", { class: "text-sm font-medium text-gray-700" }, "BSB"), h("div", { class: "mt-1" }, h("input", { type: "text", required: true, class: inputClass, name: "bsb", id: "bsb", minlength: "6", maxlength: "7", inputmode: "numeric", onKeyUp: (ev) => this.updateCurrentBank(ev), pattern: this.bsbRegex.source, value: state$1.selfManagedFundForm.bsb }), h("div", { class: "invalid-feedback mt-2 text-sm text-red-600" }, "Enter a valid BSB"))), isSome(this.currentBank) && (h("div", { class: "mt-3" }, h("label", { class: "text-sm font-medium text-gray-700" }, "Bank name"), h("div", { class: "mt-1 shadow-sm px-3 py-2 rounded-md border border-gray-300 bg-gray-50 text-gray-500 text-sm" }, this.currentBank.value))), h("div", { class: "mt-3" }, h("label", { class: "text-sm font-medium text-gray-700" }, "Account number"), h("div", { class: "mt-1" }, h("input", { type: "text", required: true, class: inputClass, name: "bankAccountNumber", id: "bankAccountNumber", minlength: "2", maxlength: "11", pattern: this.bankAccountNumberRegex.source, inputmode: "numeric", value: state$1.selfManagedFundForm.bankAccountNumber, onKeyUp: (ev) => this.updateCurrentBankAccountNumber(ev), onChange: (ev) => this.updateFormField('bankAccountNumber', ev.target.value.trim()) }), h("div", { class: "invalid-feedback mt-2 text-sm text-red-600" }, "Enter a valid bank account number")))));
|
|
6022
|
+
}
|
|
6023
|
+
updateFormField(key, value) {
|
|
6024
|
+
this.formChanged.emit({ [key]: value });
|
|
6025
|
+
}
|
|
6026
|
+
async isAbnUsedForRegulatedAsync(abn) {
|
|
6027
|
+
return !(await customFundChoiceApi.validateAbnForSMSF(abn));
|
|
6028
|
+
}
|
|
6029
|
+
renderAbnValidationError() {
|
|
6030
|
+
if (this.isAbnTouched || this.showValidationErrors) {
|
|
6031
|
+
switch (this.abnValidationStatus) {
|
|
6032
|
+
case AbnValidationStatus.Invalid:
|
|
6033
|
+
return h("div", { class: "mt-2 text-sm text-red-600" }, "Enter a valid fund ABN (digits only)");
|
|
6034
|
+
case AbnValidationStatus.AbnIsUsedForRegulatedFund:
|
|
6035
|
+
return (h("div", { class: "mt-2 text-sm text-red-600" }, "The supplied ABN is for a regulated fund"));
|
|
6036
|
+
case AbnValidationStatus.Valid:
|
|
6037
|
+
return [];
|
|
6038
|
+
}
|
|
6039
|
+
}
|
|
6040
|
+
return [];
|
|
6041
|
+
}
|
|
6042
|
+
filterDigits(str) {
|
|
6043
|
+
return str.replace(/[^0-9]/g, '');
|
|
6044
|
+
}
|
|
6045
|
+
updateCurrentBank(ev) {
|
|
6046
|
+
const value = this.filterDigits(ev.target.value);
|
|
6047
|
+
const firstTwoNumbers = value.substring(0, 2);
|
|
6048
|
+
const firstThreeNumbers = value.substring(0, 3);
|
|
6049
|
+
const firstTwoNumberBankName = bsbNumbers[firstTwoNumbers];
|
|
6050
|
+
const firstThreeNumberBankName = bsbNumbers[firstThreeNumbers];
|
|
6051
|
+
if (firstTwoNumberBankName)
|
|
6052
|
+
this.currentBank = some(firstTwoNumberBankName);
|
|
6053
|
+
if (firstThreeNumberBankName)
|
|
6054
|
+
this.currentBank = some(firstThreeNumberBankName);
|
|
6055
|
+
if (value === '' || value.length > 6)
|
|
6056
|
+
this.currentBank = none;
|
|
6057
|
+
this.updateFormField('bsb', value);
|
|
6058
|
+
}
|
|
6059
|
+
updateCurrentBankAccountNumber(ev) {
|
|
6060
|
+
const value = this.filterDigits(ev.target.value);
|
|
6061
|
+
this.updateFormField('bankAccountNumber', value);
|
|
6062
|
+
}
|
|
6063
|
+
updateAddressErrorMessage() {
|
|
6064
|
+
let message = none;
|
|
6065
|
+
if (isNone(message) && !this.addressLine1Element.checkValidity()) {
|
|
6066
|
+
message = some('Enter a valid address line 1');
|
|
6067
|
+
}
|
|
6068
|
+
if (isNone(message) && !this.cityElement.checkValidity()) {
|
|
6069
|
+
message = some('Enter a valid city/suburb');
|
|
6070
|
+
}
|
|
6071
|
+
if (isNone(message) && !this.postcodeElement.checkValidity()) {
|
|
6072
|
+
message = some('Enter a valid post code');
|
|
6073
|
+
}
|
|
6074
|
+
if (isNone(message) && !this.stateElement.checkValidity()) {
|
|
6075
|
+
message = some('Select a state');
|
|
6076
|
+
}
|
|
6077
|
+
this.addressErrorMessage = message;
|
|
6078
|
+
}
|
|
6079
|
+
};
|
|
6080
|
+
|
|
5880
6081
|
const StandardChoiceFormInputDefaultFund = class {
|
|
5881
6082
|
constructor(hostRef) {
|
|
5882
6083
|
registerInstance(this, hostRef);
|
|
@@ -16141,106 +16342,6 @@ const SuperCampaignHost = class {
|
|
|
16141
16342
|
};
|
|
16142
16343
|
injectHistory(SuperCampaignHost);
|
|
16143
16344
|
|
|
16144
|
-
const LoadWaitingTimeout$1 = 30000;
|
|
16145
|
-
|
|
16146
|
-
var SuperSmsfComponentStatus;
|
|
16147
|
-
(function (SuperSmsfComponentStatus) {
|
|
16148
|
-
SuperSmsfComponentStatus[SuperSmsfComponentStatus["NotLoaded"] = 1] = "NotLoaded";
|
|
16149
|
-
SuperSmsfComponentStatus[SuperSmsfComponentStatus["Loaded"] = 2] = "Loaded";
|
|
16150
|
-
})(SuperSmsfComponentStatus || (SuperSmsfComponentStatus = {}));
|
|
16151
|
-
let superSmsfComponentStatus = SuperSmsfComponentStatus.NotLoaded;
|
|
16152
|
-
const SuperSmsfHost = class {
|
|
16153
|
-
constructor(hostRef) {
|
|
16154
|
-
registerInstance(this, hostRef);
|
|
16155
|
-
this.subscribeToSuperSmsfEvents = () => {
|
|
16156
|
-
for (const eventName in this.smsfEventHandlers) {
|
|
16157
|
-
document.addEventListener(eventName, this.smsfEventHandlers[eventName]);
|
|
16158
|
-
}
|
|
16159
|
-
};
|
|
16160
|
-
this.unSubscribeFromSuperSmsfEvents = () => {
|
|
16161
|
-
for (const eventName in this.smsfEventHandlers) {
|
|
16162
|
-
document.removeEventListener(eventName, this.smsfEventHandlers[eventName]);
|
|
16163
|
-
}
|
|
16164
|
-
};
|
|
16165
|
-
this.smsfLoaded = async (event) => {
|
|
16166
|
-
if (event.detail.sender === 'super-smsf') {
|
|
16167
|
-
superSmsfComponentStatus = SuperSmsfComponentStatus.Loaded;
|
|
16168
|
-
clearTimeout(this.loadingTimeoutRef);
|
|
16169
|
-
}
|
|
16170
|
-
return Promise.resolve();
|
|
16171
|
-
};
|
|
16172
|
-
this.smsfCompleted = async (event) => {
|
|
16173
|
-
if (event.detail.sender === 'super-smsf') {
|
|
16174
|
-
navigationService.navigateInternallyToStandardChoice({
|
|
16175
|
-
history: this.history,
|
|
16176
|
-
fundName: 'Self-managed super fund',
|
|
16177
|
-
fundDetails: {
|
|
16178
|
-
type: 'smsf',
|
|
16179
|
-
fundName: event.detail.fundName,
|
|
16180
|
-
fundEsa: event.detail.fundEsa
|
|
16181
|
-
},
|
|
16182
|
-
handleSubmitFn: async (standardChoiceFormSignature) => {
|
|
16183
|
-
const requestDto = Object.assign({ smsfChoice: {
|
|
16184
|
-
abn: event.detail.fundAbn,
|
|
16185
|
-
fundName: event.detail.fundName,
|
|
16186
|
-
fundAddress: {
|
|
16187
|
-
addressLine1: event.detail.fundAddressLine1,
|
|
16188
|
-
addressLine2: event.detail.fundAddressLine2,
|
|
16189
|
-
city: event.detail.fundCity,
|
|
16190
|
-
state: event.detail.fundState,
|
|
16191
|
-
postcode: event.detail.fundPostcode
|
|
16192
|
-
},
|
|
16193
|
-
bsb: event.detail.bankBsb,
|
|
16194
|
-
bankAccountName: event.detail.bankAccountName,
|
|
16195
|
-
bankAccountNumber: event.detail.bankAccountNumber,
|
|
16196
|
-
electronicServiceAddress: event.detail.fundEsa,
|
|
16197
|
-
memberFirstName: event.detail.memberFirstName,
|
|
16198
|
-
memberFamilyName: event.detail.memberLastName
|
|
16199
|
-
}, standardChoiceFormSignature }, superSelectionAppService.promotedFundsConfig);
|
|
16200
|
-
await customFundChoiceApi.submitSelfManagedFundChoiceAsync(requestDto);
|
|
16201
|
-
}
|
|
16202
|
-
});
|
|
16203
|
-
}
|
|
16204
|
-
};
|
|
16205
|
-
this.smsfCancelled = async (event) => {
|
|
16206
|
-
if (event.detail.sender === 'super-smsf') {
|
|
16207
|
-
await navigationService.navigateInternally(this.history, SuperSelectionAppRoutes.ChoicePage);
|
|
16208
|
-
}
|
|
16209
|
-
};
|
|
16210
|
-
this.smsfEventHandlers = {
|
|
16211
|
-
'smsf-loaded': this.smsfLoaded.bind(this),
|
|
16212
|
-
'smsf-completed': this.smsfCompleted.bind(this),
|
|
16213
|
-
'smsf-cancelled': this.smsfCancelled.bind(this)
|
|
16214
|
-
};
|
|
16215
|
-
}
|
|
16216
|
-
async componentWillLoad() {
|
|
16217
|
-
if (Option.isSome(superSelectionAppService.backendUrl) && Option.isSome(superSelectionAppService.state.jwt)) {
|
|
16218
|
-
this.backendUrl = superSelectionAppService.backendUrl.value;
|
|
16219
|
-
this.accessToken = superSelectionAppService.state.jwt.value;
|
|
16220
|
-
if (superSmsfComponentStatus === SuperSmsfComponentStatus.NotLoaded) {
|
|
16221
|
-
this.loadingTimeoutRef = setTimeout(this.smsfLoadingTimeoutTriggered.bind(this), LoadWaitingTimeout$1);
|
|
16222
|
-
}
|
|
16223
|
-
this.subscribeToSuperSmsfEvents();
|
|
16224
|
-
}
|
|
16225
|
-
else {
|
|
16226
|
-
throw Error(`SuperSmsfHost pre-requisites not met.`);
|
|
16227
|
-
}
|
|
16228
|
-
}
|
|
16229
|
-
disconnectedCallback() {
|
|
16230
|
-
clearTimeout(this.loadingTimeoutRef);
|
|
16231
|
-
this.unSubscribeFromSuperSmsfEvents();
|
|
16232
|
-
}
|
|
16233
|
-
render() {
|
|
16234
|
-
return (h(Host, null, h("sss-header-section", null), h("div", { class: "flex justify-center mt-11" }, h("sss-custom-fund", null, h("div", null, h("apollo-super-smsf", { "backend-url": this.backendUrl, "access-token": this.accessToken }))))));
|
|
16235
|
-
}
|
|
16236
|
-
async smsfLoadingTimeoutTriggered() {
|
|
16237
|
-
if (superSmsfComponentStatus !== SuperSmsfComponentStatus.Loaded) {
|
|
16238
|
-
throw Error(`SMSF component failed to load.`);
|
|
16239
|
-
}
|
|
16240
|
-
}
|
|
16241
|
-
};
|
|
16242
|
-
injectHistory(SuperSmsfHost);
|
|
16243
|
-
|
|
16244
16345
|
const routeCss = "stencil-route.inactive{display:none}";
|
|
16245
16346
|
|
|
16246
16347
|
const Route = class {
|
|
@@ -18054,4 +18155,4 @@ const SuperSelectionAppHost = class {
|
|
|
18054
18155
|
};
|
|
18055
18156
|
SuperSelectionAppHost.style = superSelectionAppHostCss;
|
|
18056
18157
|
|
|
18057
|
-
export { Button as sss_button, ChoiceRouter as sss_choice_router, CustomFund as sss_custom_fund, DefaultFund as sss_default_fund, SelectInputAsync as sss_dropdown_async, ExistingChoice as sss_existing_choice_page, FooterSection as sss_footer_section, HeaderSection as sss_header_section, LoadingIndicator as sss_loading_indicator, LoadingPage as sss_loading_page, MyOwnFund as sss_my_own_fund, MyOwnFundEngagementStep as sss_my_own_fund_engagement_step_host, MyOwnFundInputs as sss_my_own_fund_inputs, MemberNameInput as sss_name_input, Prefill as sss_prefill, DisplayField as sss_prefill_display_field, PrefillErrorBox as sss_prefill_error_box, PrefillInvalidMyOwnFund as sss_prefill_invalid_my_own_fund, PrefillInvalidSMSF as sss_prefill_invalid_smsf, PrefillMyOwnFund as sss_prefill_my_own_fund, PrefillSMSF as sss_prefill_smsf, PrefillWarningBox as sss_prefill_warning_box, StandardChoiceFormInputDefaultFund as sss_standard_choice_form, Success as sss_success, FeaturedFunds as sss_super_campaign_featured_funds, SuperCampaignHost as sss_super_campaign_host,
|
|
18158
|
+
export { Button as sss_button, ChoiceRouter as sss_choice_router, CustomFund as sss_custom_fund, DefaultFund as sss_default_fund, SelectInputAsync as sss_dropdown_async, ExistingChoice as sss_existing_choice_page, FooterSection as sss_footer_section, HeaderSection as sss_header_section, LoadingIndicator as sss_loading_indicator, LoadingPage as sss_loading_page, MyOwnFund as sss_my_own_fund, MyOwnFundEngagementStep as sss_my_own_fund_engagement_step_host, MyOwnFundInputs as sss_my_own_fund_inputs, MemberNameInput as sss_name_input, Prefill as sss_prefill, DisplayField as sss_prefill_display_field, PrefillErrorBox as sss_prefill_error_box, PrefillInvalidMyOwnFund as sss_prefill_invalid_my_own_fund, PrefillInvalidSMSF as sss_prefill_invalid_smsf, PrefillMyOwnFund as sss_prefill_my_own_fund, PrefillSMSF as sss_prefill_smsf, PrefillWarningBox as sss_prefill_warning_box, SelfManagedFund as sss_self_managed_fund, SelfManagedFundInputs as sss_self_managed_fund_inputs, StandardChoiceFormInputDefaultFund as sss_standard_choice_form, Success as sss_success, FeaturedFunds as sss_super_campaign_featured_funds, SuperCampaignHost as sss_super_campaign_host, Route as stencil_route, RouteLink$1 as stencil_route_link, RouteSwitch as stencil_route_switch, Router as stencil_router, SuperSelectionApp as super_selection_app, SuperSelectionAppHost as super_selection_app_host };
|
|
@@ -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 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-
|
|
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_34",[[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]}],[1,"super-selection-app-host",{sessionState:[32],jwt:[32],appConfiguration:[32],ignoreExistingSelection:[32]}],[0,"sss-default-fund",{history:[16],defaultFundProductName:[32]}],[0,"sss-super-campaign-featured-funds",{history:[16],backendUrl:[32],accessToken:[32],currentView:[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-success"],[0,"sss-choice-router",{history:[16]}],[0,"sss-my-own-fund-engagement-step-host",{history:[16],backendUrl:[32],accessToken:[32],fundUsi:[32],fundName:[32],memberNumber:[32],memberFirstName:[32],memberFamilyName:[32]}],[0,"sss-super-campaign-host",{history:[16],scriptImported:[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-page"],[0,"sss-self-managed-fund-inputs",{fundForm:[16],showValidationErrors:[4,"show-validation-errors"],abnValidationStatus:[32],isAbnTouched:[32],currentBank:[32],addressErrorMessage:[32]}],[0,"sss-dropdown-async",{testId:[1,"test-id"],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:[1,"text-override"]}],[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]}],[0,"sss-prefill-warning-box",{notificationList:[16]}],[0,"sss-header-section"],[4,"sss-custom-fund",{history:[16],currentCustomFund:[32],fundOptionsList:[32],showFundOptionsSelection:[32]}],[0,"sss-name-input",{testId:[1,"test-id"],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",{testid:[1],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-
|
|
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_34",[[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]}],[1,"super-selection-app-host",{sessionState:[32],jwt:[32],appConfiguration:[32],ignoreExistingSelection:[32]}],[0,"sss-default-fund",{history:[16],defaultFundProductName:[32]}],[0,"sss-super-campaign-featured-funds",{history:[16],backendUrl:[32],accessToken:[32],currentView:[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-success"],[0,"sss-choice-router",{history:[16]}],[0,"sss-my-own-fund-engagement-step-host",{history:[16],backendUrl:[32],accessToken:[32],fundUsi:[32],fundName:[32],memberNumber:[32],memberFirstName:[32],memberFamilyName:[32]}],[0,"sss-super-campaign-host",{history:[16],scriptImported:[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-page"],[0,"sss-self-managed-fund-inputs",{fundForm:[16],showValidationErrors:[4,"show-validation-errors"],abnValidationStatus:[32],isAbnTouched:[32],currentBank:[32],addressErrorMessage:[32]}],[0,"sss-dropdown-async",{testId:[1,"test-id"],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:[1,"text-override"]}],[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]}],[0,"sss-prefill-warning-box",{notificationList:[16]}],[0,"sss-header-section"],[4,"sss-custom-fund",{history:[16],currentCustomFund:[32],fundOptionsList:[32],showFundOptionsSelection:[32]}],[0,"sss-name-input",{testId:[1,"test-id"],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",{testid:[1],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};
|