@flarehr/apollo-super-selection 3.61.64036 → 3.62.64158
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-11954377.entry.js → p-af8b28ab.entry.js} +4 -4
- package/dist/lib/apollo-super-selection/{p-4b744211.system.entry.js → p-e4cfd5f5.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_30.cjs.entry.js +28 -6
- package/dist/lib/collection/collection-manifest.json +1 -1
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund-inputs.js +26 -10
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund.js +8 -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 +28 -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/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 +1 -0
- package/dist/lib/types/components.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,9 +1,13 @@
|
|
|
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;
|
|
7
11
|
private currentBank;
|
|
8
12
|
private addressErrorMessage;
|
|
9
13
|
private readonly stateOptions;
|
|
@@ -19,4 +23,5 @@ export declare class SelfManagedFundInputs {
|
|
|
19
23
|
private updateCurrentBank;
|
|
20
24
|
private updateCurrentBankAccountNumber;
|
|
21
25
|
private updateAddressErrorMessage;
|
|
26
|
+
private validateAbn;
|
|
22
27
|
}
|
|
@@ -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 {
|