valtech-components 4.0.96 → 4.0.98
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/esm2022/lib/components/organisms/verify-view/types.mjs +2 -0
- package/esm2022/lib/components/organisms/verify-view/verify-view.component.mjs +210 -0
- package/esm2022/lib/components/organisms/verify-view/verify-view.i18n.mjs +35 -0
- package/esm2022/lib/version.mjs +2 -2
- package/esm2022/public-api.mjs +4 -1
- package/fesm2022/valtech-components.mjs +236 -2
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/organisms/verify-view/types.d.ts +8 -0
- package/lib/components/organisms/verify-view/verify-view.component.d.ts +28 -0
- package/lib/components/organisms/verify-view/verify-view.i18n.d.ts +2 -0
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { VerifyViewMetadata } from './types';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
type VerifyState = 'verifying' | 'success' | 'error';
|
|
5
|
+
export declare class VerifyViewComponent implements OnInit {
|
|
6
|
+
props: VerifyViewMetadata;
|
|
7
|
+
readonly onSuccess: import("@angular/core").OutputEmitterRef<void>;
|
|
8
|
+
private auth;
|
|
9
|
+
private router;
|
|
10
|
+
private i18n;
|
|
11
|
+
readonly state: import("@angular/core").WritableSignal<VerifyState>;
|
|
12
|
+
readonly errorMessage: import("@angular/core").WritableSignal<string>;
|
|
13
|
+
readonly errorCode: import("@angular/core").WritableSignal<string>;
|
|
14
|
+
readonly resendSent: import("@angular/core").WritableSignal<boolean>;
|
|
15
|
+
readonly resending: import("@angular/core").WritableSignal<boolean>;
|
|
16
|
+
readonly maskedEmail: () => string;
|
|
17
|
+
constructor();
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
t(key: string): string;
|
|
20
|
+
private runVerify;
|
|
21
|
+
onContinue(): void;
|
|
22
|
+
onGoToLogin(): void;
|
|
23
|
+
onResend(): Promise<void>;
|
|
24
|
+
private resolveError;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VerifyViewComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VerifyViewComponent, "val-verify-view", never, { "props": { "alias": "props"; "required": false; }; }, { "onSuccess": "onSuccess"; }, never, never, true, never>;
|
|
27
|
+
}
|
|
28
|
+
export {};
|
package/lib/version.d.ts
CHANGED
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -385,6 +385,8 @@ export * from './lib/services/image';
|
|
|
385
385
|
export * from './lib/services/ads';
|
|
386
386
|
export * from './lib/components/molecules/ad-slot/ad-slot.component';
|
|
387
387
|
export * from './lib/services/content';
|
|
388
|
+
export * from './lib/components/organisms/verify-view/verify-view.component';
|
|
389
|
+
export * from './lib/components/organisms/verify-view/types';
|
|
388
390
|
export * from './lib/services/content-platform';
|
|
389
391
|
export * from './lib/services/feedback';
|
|
390
392
|
export * from './lib/services/whatsapp';
|