valtech-components 4.0.12 → 4.0.13
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/member-import-modal/member-import-modal.component.mjs +33 -23
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +29 -21
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/organisms/member-import-modal/member-import-modal.component.d.ts +5 -2
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { FormControl } from '@angular/forms';
|
|
3
|
+
import { InputMetadata } from '../../types';
|
|
4
|
+
import { ImportMembersResponse, ImportRowResult } from '../../../services/org/types';
|
|
3
5
|
import * as i0 from "@angular/core";
|
|
4
6
|
/**
|
|
5
7
|
* `val-member-import-modal` — panel de carga masiva de miembros (ADR-023 fase 6).
|
|
@@ -26,8 +28,9 @@ export declare class MemberImportModalComponent implements OnInit {
|
|
|
26
28
|
/** Namespace i18n. */
|
|
27
29
|
i18nNamespace: string;
|
|
28
30
|
csv: string;
|
|
29
|
-
onConflict: ImportOnConflict;
|
|
30
31
|
sendActivation: boolean;
|
|
32
|
+
readonly onConflictControl: FormControl<string>;
|
|
33
|
+
readonly conflictSelectProps: import("@angular/core").Signal<Partial<InputMetadata>>;
|
|
31
34
|
readonly submitting: import("@angular/core").WritableSignal<boolean>;
|
|
32
35
|
readonly errorMsg: import("@angular/core").WritableSignal<string>;
|
|
33
36
|
readonly results: import("@angular/core").WritableSignal<ImportMembersResponse>;
|
package/lib/version.d.ts
CHANGED