valtech-components 2.0.857 → 2.0.858

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.
@@ -48,6 +48,12 @@ export declare class MfaModalComponent implements OnDestroy {
48
48
  prefillCode?: string;
49
49
  /** Emite cuando el estado MFA cambia (habilitado / deshabilitado). */
50
50
  changed: EventEmitter<void>;
51
+ /**
52
+ * Emitido cuando un setup MFA se confirma exitosamente y el modal fue abierto
53
+ * vía deep-link (con `prefillCode`). El host puede usarlo para cerrar el
54
+ * modal y navegar (ej. a home) en lugar de quedarse en la página de Security.
55
+ */
56
+ enabledViaDeeplink: EventEmitter<void>;
51
57
  /** Emite cuando el user cierra el modal (botón X o backdrop). */
52
58
  dismissed: EventEmitter<void>;
53
59
  private auth;
@@ -133,6 +139,6 @@ export declare class MfaModalComponent implements OnDestroy {
133
139
  private resolveError;
134
140
  private showToast;
135
141
  static ɵfac: i0.ɵɵFactoryDeclaration<MfaModalComponent, never>;
136
- static ɵcmp: i0.ɵɵComponentDeclaration<MfaModalComponent, "val-mfa-modal", never, { "isOpen": { "alias": "isOpen"; "required": false; }; "prefillCode": { "alias": "prefillCode"; "required": false; }; }, { "changed": "changed"; "dismissed": "dismissed"; }, never, never, true, never>;
142
+ static ɵcmp: i0.ɵɵComponentDeclaration<MfaModalComponent, "val-mfa-modal", never, { "isOpen": { "alias": "isOpen"; "required": false; }; "prefillCode": { "alias": "prefillCode"; "required": false; }; }, { "changed": "changed"; "enabledViaDeeplink": "enabledViaDeeplink"; "dismissed": "dismissed"; }, never, never, true, never>;
137
143
  }
138
144
  export {};
package/lib/version.d.ts CHANGED
@@ -2,4 +2,4 @@
2
2
  * Current version of valtech-components.
3
3
  * This is automatically updated during the publish process.
4
4
  */
5
- export declare const VERSION = "2.0.857";
5
+ export declare const VERSION = "2.0.858";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valtech-components",
3
- "version": "2.0.857",
3
+ "version": "2.0.858",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "valtech-firebase-config": "./src/lib/services/firebase/scripts/generate-sw-config.js"