@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.
@@ -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<SelfManagedFundForm>>;
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
  }
@@ -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;
@@ -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<SelfManagedFundForm>>) => void;
365
+ "onFormChanged"?: (event: CustomEvent<Partial<FormChangedEvent>>) => void;
365
366
  "showValidationErrors"?: boolean;
366
367
  }
367
368
  interface SssSlateJoinPage {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flarehr/apollo-super-selection",
3
- "version": "3.61.64036",
3
+ "version": "3.62.64158",
4
4
  "description": "Apollo Super Selection",
5
5
  "main": "dist/lib/index.cjs.js",
6
6
  "module": "dist/lib/index.js",