@flarehr/apollo-super-selection 1.2.18176 → 1.2.18324
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-bdcfc026.system.js +1 -1
- package/dist/lib/apollo-super-selection/{p-1f7bf4ff.entry.js → p-be156448.entry.js} +4 -4
- package/dist/lib/apollo-super-selection/{p-531cd2f4.system.entry.js → p-f71fbc35.system.entry.js} +7 -7
- 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_29.cjs.entry.js +33 -5
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/api/custom-fund-choice.api.js +10 -0
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund-inputs.js +24 -4
- package/dist/lib/esm/apollo-super-selection.js +1 -1
- package/dist/lib/esm/loader.js +1 -1
- package/dist/lib/esm/sss-button_29.entry.js +33 -5
- 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_29.entry.js +1 -1
- package/dist/lib/types/components/super-selection-app/funds/custom-fund/api/custom-fund-choice.api.d.ts +1 -0
- package/dist/lib/types/components/super-selection-app/funds/custom-fund/api/custom-fund-choice.api.dto.d.ts +3 -0
- package/dist/lib/types/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund-inputs.d.ts +3 -0
- package/package.json +1 -1
|
@@ -3,6 +3,7 @@ export declare class CustomFundChoiceApi {
|
|
|
3
3
|
submitDefaultFundChoiceAsync(dto: DefaultFundForm): Promise<void>;
|
|
4
4
|
submitCustomFundChoiceAsync(dto: MyOwnFundDto): Promise<void>;
|
|
5
5
|
submitSelfManagedFundChoiceAsync(dto: SelfManagedFundRequestDto): Promise<void>;
|
|
6
|
+
validateAbnForSMSF(abn: string): Promise<boolean>;
|
|
6
7
|
}
|
|
7
8
|
declare const _default: CustomFundChoiceApi;
|
|
8
9
|
export default _default;
|
|
@@ -9,6 +9,7 @@ export declare class SelfManagedFundInputs {
|
|
|
9
9
|
formChanged: EventEmitter<Partial<FormChangedEvent>>;
|
|
10
10
|
private isAbnValid;
|
|
11
11
|
private isAbnTouched;
|
|
12
|
+
private isAbnUsedForRegulated;
|
|
12
13
|
private currentBank;
|
|
13
14
|
private addressErrorMessage;
|
|
14
15
|
private readonly stateOptions;
|
|
@@ -20,6 +21,8 @@ export declare class SelfManagedFundInputs {
|
|
|
20
21
|
private stateElement;
|
|
21
22
|
render(): Element[];
|
|
22
23
|
private updateFormField;
|
|
24
|
+
private isAbnUsedForRegulatedAsync;
|
|
25
|
+
private renderAbnValidationError;
|
|
23
26
|
private filterDigits;
|
|
24
27
|
private updateCurrentBank;
|
|
25
28
|
private updateCurrentBankAccountNumber;
|