valtech-components 2.0.849 → 2.0.850

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.
@@ -69,6 +69,8 @@ export declare class MfaModalComponent implements OnDestroy {
69
69
  readonly totpQr: import("@angular/core").WritableSignal<QrResult>;
70
70
  /** Códigos de respaldo recién regenerados — se muestran una sola vez. */
71
71
  readonly regeneratedCodes: import("@angular/core").WritableSignal<string[]>;
72
+ /** Marca momentánea cuando el secreto TOTP se acaba de copiar (feedback visual). */
73
+ readonly copiedSecret: import("@angular/core").WritableSignal<boolean>;
72
74
  readonly resendCooldown: import("@angular/core").WritableSignal<number>;
73
75
  readonly pinControl: FormControl<string>;
74
76
  readonly phoneControl: FormControl<string>;
@@ -115,6 +117,8 @@ export declare class MfaModalComponent implements OnDestroy {
115
117
  onDisableSubmit(event: FormSubmit): void;
116
118
  /** Copia una lista de códigos de respaldo al portapapeles. */
117
119
  copyCodes(codes: string[]): Promise<void>;
120
+ /** Copia el secreto TOTP al portapapeles + feedback visual (check) durante 2s. */
121
+ copySecret(secret: string): Promise<void>;
118
122
  /** Etiqueta i18n legible para un método MFA. */
119
123
  methodLabel(method: MFAMethod | null): string;
120
124
  private resetFlow;
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.849";
5
+ export declare const VERSION = "2.0.850";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valtech-components",
3
- "version": "2.0.849",
3
+ "version": "2.0.850",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "valtech-firebase-config": "./src/lib/services/firebase/scripts/generate-sw-config.js"