valtech-components 4.0.955 → 4.0.957
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/molecules/metadata-list/metadata-list.component.mjs +3 -3
- package/esm2022/lib/components/molecules/select-search/select-search-picker-modal.component.mjs +6 -15
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +9 -18
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/molecules/select-search/select-search-picker-modal.component.d.ts +3 -3
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
1
2
|
import { I18nService } from '../../../services/i18n';
|
|
2
3
|
import { ButtonMetadata } from '../../types';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
@@ -22,7 +23,7 @@ export interface SelectSearchPickerProps {
|
|
|
22
23
|
* Selección múltiple: acumula localmente, footer con "Aplicar" (Regla #5,
|
|
23
24
|
* val-modal-layout con `actions`).
|
|
24
25
|
*/
|
|
25
|
-
export declare class SelectSearchPickerModalComponent {
|
|
26
|
+
export declare class SelectSearchPickerModalComponent implements OnInit {
|
|
26
27
|
_modalRef?: {
|
|
27
28
|
dismiss: (data?: unknown, role?: string) => void;
|
|
28
29
|
};
|
|
@@ -31,10 +32,9 @@ export declare class SelectSearchPickerModalComponent {
|
|
|
31
32
|
props: SelectSearchPickerProps;
|
|
32
33
|
readonly query: import("@angular/core").WritableSignal<string>;
|
|
33
34
|
readonly selected: import("@angular/core").WritableSignal<unknown[]>;
|
|
35
|
+
ngOnInit(): void;
|
|
34
36
|
readonly filteredItems: import("@angular/core").Signal<Record<string, unknown>[]>;
|
|
35
37
|
readonly footerActions: import("@angular/core").Signal<ButtonMetadata[]>;
|
|
36
|
-
private seeded;
|
|
37
|
-
private ensureSeeded;
|
|
38
38
|
isSelected(item: Record<string, unknown>): boolean;
|
|
39
39
|
toggle(item: Record<string, unknown>): void;
|
|
40
40
|
apply(): void;
|
package/lib/version.d.ts
CHANGED