valtech-components 2.0.1030 → 2.0.1031

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.
@@ -31,10 +31,14 @@ export declare class MemberImportModalComponent implements OnInit {
31
31
  readonly submitting: import("@angular/core").WritableSignal<boolean>;
32
32
  readonly errorMsg: import("@angular/core").WritableSignal<string>;
33
33
  readonly results: import("@angular/core").WritableSignal<ImportMembersResponse>;
34
+ /** Nombre del archivo CSV cargado (vacío si se pegó manualmente). */
35
+ readonly fileName: import("@angular/core").WritableSignal<string>;
34
36
  readonly rolesHint: import("@angular/core").Signal<string>;
35
37
  readonly summaryLabel: import("@angular/core").Signal<string>;
36
38
  constructor();
37
39
  ngOnInit(): void;
40
+ /** Carga un archivo CSV seleccionado: lee su texto al textarea (`csv`). */
41
+ onFileSelected(event: Event): void;
38
42
  /** Parsea el CSV pegado a filas {email,name,roleName}. Tolera header. */
39
43
  private parseCsv;
40
44
  submit(): void;
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.1030";
5
+ export declare const VERSION = "2.0.1031";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valtech-components",
3
- "version": "2.0.1030",
3
+ "version": "2.0.1031",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "valtech-firebase-config": "./src/lib/services/firebase/scripts/generate-sw-config.js"