@flarehr/apollo-super-selection 3.60.63971 → 3.63.64333
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-0f723eb4.system.js +1 -1
- package/dist/lib/apollo-super-selection/{p-5ec7c48e.system.entry.js → p-3633c389.system.entry.js} +18 -18
- package/dist/lib/apollo-super-selection/{p-23565ba5.entry.js → p-ae75dece.entry.js} +4 -4
- 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_30.cjs.entry.js +34 -6
- package/dist/lib/collection/collection-manifest.json +1 -1
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/abn-validation.js +11 -0
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund-inputs.js +18 -10
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund.js +13 -2
- package/dist/lib/esm/apollo-super-selection.js +1 -1
- package/dist/lib/esm/loader.js +1 -1
- package/dist/lib/esm/sss-button_30.entry.js +34 -6
- 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_30.entry.js +1 -1
- package/dist/lib/types/components/super-selection-app/funds/custom-fund/self-managed-fund/abn-validation.d.ts +1 -0
- package/dist/lib/types/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund-inputs.d.ts +6 -1
- package/dist/lib/types/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund.d.ts +2 -0
- package/dist/lib/types/components.d.ts +2 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function validateAbn(abn: string): boolean;
|
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
import { EventEmitter } from '../../../../../stencil-public-runtime';
|
|
2
2
|
import { SelfManagedFundForm } from './self-managed-fund.form';
|
|
3
|
+
export interface FormChangedEvent extends SelfManagedFundForm {
|
|
4
|
+
isAbnValid: boolean;
|
|
5
|
+
}
|
|
3
6
|
export declare class SelfManagedFundInputs {
|
|
4
7
|
fundForm: Partial<SelfManagedFundForm>;
|
|
5
8
|
showValidationErrors: boolean;
|
|
6
|
-
formChanged: EventEmitter<Partial<
|
|
9
|
+
formChanged: EventEmitter<Partial<FormChangedEvent>>;
|
|
10
|
+
private isAbnValid;
|
|
11
|
+
private isAbnTouched;
|
|
7
12
|
private currentBank;
|
|
8
13
|
private addressErrorMessage;
|
|
9
14
|
private readonly stateOptions;
|
|
@@ -4,6 +4,7 @@ export declare class SelfManagedFund {
|
|
|
4
4
|
private formState;
|
|
5
5
|
private showSmsfNotSupported;
|
|
6
6
|
private isSubmitDisabled;
|
|
7
|
+
private isAbnValid;
|
|
7
8
|
private readonly eventTrackingService;
|
|
8
9
|
private formElement;
|
|
9
10
|
private notSupportedDialog;
|
|
@@ -11,5 +12,6 @@ export declare class SelfManagedFund {
|
|
|
11
12
|
render(): Element[];
|
|
12
13
|
componentDidRender(): void;
|
|
13
14
|
private success;
|
|
15
|
+
private updateIsSubmitDisabled;
|
|
14
16
|
private handleSubmitForm;
|
|
15
17
|
}
|
|
@@ -10,6 +10,7 @@ import { LocationSegments, RouterHistory } from "@stencil/router";
|
|
|
10
10
|
import { SelectInputOption } from "./components/super-selection-app/misc/dropdown-async";
|
|
11
11
|
import { MyOwnFundFormState } from "./components/super-selection-app/funds/custom-fund/custom-fund.store";
|
|
12
12
|
import { SelfManagedFundForm } from "./components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund.form";
|
|
13
|
+
import { FormChangedEvent } from "./components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund-inputs";
|
|
13
14
|
import { VNode } from "./stencil-public-runtime";
|
|
14
15
|
import { InitialisedWith } from "./components/super-selection-app/super-selection-app";
|
|
15
16
|
export namespace Components {
|
|
@@ -361,7 +362,7 @@ declare namespace LocalJSX {
|
|
|
361
362
|
}
|
|
362
363
|
interface SssSelfManagedFundInputs {
|
|
363
364
|
"fundForm"?: Partial<SelfManagedFundForm>;
|
|
364
|
-
"onFormChanged"?: (event: CustomEvent<Partial<
|
|
365
|
+
"onFormChanged"?: (event: CustomEvent<Partial<FormChangedEvent>>) => void;
|
|
365
366
|
"showValidationErrors"?: boolean;
|
|
366
367
|
}
|
|
367
368
|
interface SssSlateJoinPage {
|