taxtank-core 0.19.1 → 0.19.2

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.
@@ -8,14 +8,21 @@ import { IEventListener } from '../../interfaces/event-listener.interface';
8
8
  */
9
9
  export declare class BankAccountForm extends AbstractForm<BankAccount> implements IEventListener {
10
10
  private bankAccount;
11
+ /**
12
+ * UI flag: user confirm he completed fill the form
13
+ * https://taxtank.atlassian.net/browse/TT-1917 (point 2)
14
+ */
15
+ isConfirmed: boolean;
11
16
  constructor(bankAccount?: BankAccount);
12
17
  listenEvents(): void;
13
18
  get properties(): BankAccountPropertiesForm;
14
19
  isLoan(): boolean;
15
20
  isPropertyTank(): boolean;
21
+ confirm(): void;
16
22
  private addPropertiesArray;
17
23
  /**
18
24
  * Add/Remove properties form array depending on selected tank type
19
25
  */
20
26
  private listenTankTypeChanges;
27
+ private listenValueChanges;
21
28
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.19.1",
3
+ "version": "0.19.2",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^12.2.3 || ~13.0.0",