taxtank-core 0.6.0 → 0.7.0

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.
@@ -0,0 +1,4 @@
1
+ import { FormGroup } from '@angular/forms';
2
+ export declare abstract class AbstractForm extends FormGroup {
3
+ submit(): object;
4
+ }
@@ -0,0 +1,6 @@
1
+ export * from './abstract.form';
2
+ export * from './login/login.form';
3
+ export * from './register/register-client.form';
4
+ export * from './register/register-firm.form';
5
+ export * from './user/password.form';
6
+ export * from './user/reset-password.form';
@@ -0,0 +1,4 @@
1
+ import { AbstractForm } from '../abstract.form';
2
+ export declare class LoginForm extends AbstractForm {
3
+ constructor();
4
+ }
@@ -0,0 +1,5 @@
1
+ import { AbstractForm } from '../abstract.form';
2
+ export declare class RegisterClientForm extends AbstractForm {
3
+ constructor(referenceCode?: string);
4
+ submit(): object;
5
+ }
@@ -0,0 +1,7 @@
1
+ import { AbstractForm } from '../abstract.form';
2
+ import { FirmTypeEnum } from '../../db/Enums/firm-type.enum';
3
+ export declare class RegisterFirmForm extends AbstractForm {
4
+ private firmType;
5
+ constructor(firmType: FirmTypeEnum, referenceCode?: string);
6
+ submit(): object;
7
+ }
@@ -0,0 +1,4 @@
1
+ import { AbstractForm } from '../abstract.form';
2
+ export declare class PasswordForm extends AbstractForm {
3
+ constructor();
4
+ }
@@ -0,0 +1,4 @@
1
+ import { AbstractForm } from '../abstract.form';
2
+ export declare class ResetPasswordForm extends AbstractForm {
3
+ constructor();
4
+ }
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^12.2.3 || ~13.0.0",
7
7
  "@angular/core": "^12.2.3 || ~13.0.0",
8
+ "@angular/forms": "^12.2.3 || ~13.0.0",
8
9
  "@angular/router": "^12.2.3 || ~13.0.0",
9
10
  "@auth0/angular-jwt": "^5.0.2",
10
11
  "@stripe/stripe-js": "^1.11.0",
package/public-api.d.ts CHANGED
@@ -348,3 +348,7 @@ export * from './lib/functions/array';
348
348
  * Interceptors
349
349
  */
350
350
  export * from './lib/interceptors/interceptors.module';
351
+ /**
352
+ * Forms
353
+ */
354
+ export * from './lib/forms';