@arsedizioni/ars-utils 21.2.272 → 21.2.274
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/package.json
CHANGED
|
@@ -57,6 +57,7 @@ declare class SendToDialogComponent {
|
|
|
57
57
|
readonly done: _angular_core.OutputEmitterRef<SendToDialogResult>;
|
|
58
58
|
/** Emitted when the user requests to populate the recipient list. */
|
|
59
59
|
readonly populate: _angular_core.OutputEmitterRef<SendToPopulateData>;
|
|
60
|
+
private readonly cdr;
|
|
60
61
|
/** Dialog configuration, injected and exposed as a signal. */
|
|
61
62
|
protected readonly dialogData: _angular_core.WritableSignal<SendToDialogData>;
|
|
62
63
|
/** Form model for the send-to form fields. */
|
|
@@ -626,6 +627,7 @@ declare class SelectDialogComponent {
|
|
|
626
627
|
readonly paginator: _angular_core.Signal<MatPaginator>;
|
|
627
628
|
readonly selection: _angular_core.Signal<MatSelectionList>;
|
|
628
629
|
private readonly dialogRef;
|
|
630
|
+
private readonly cdr;
|
|
629
631
|
protected readonly dialogData: _angular_core.WritableSignal<SelectDialogData>;
|
|
630
632
|
readonly done: _angular_core.OutputEmitterRef<SelectDialogResult>;
|
|
631
633
|
readonly edit: _angular_core.OutputEmitterRef<SelectDialogEdit>;
|
|
@@ -643,7 +645,7 @@ declare class SelectDialogComponent {
|
|
|
643
645
|
protected okDisabled: _angular_core.WritableSignal<boolean>;
|
|
644
646
|
protected filterMetadata: SearchFilterMetadata;
|
|
645
647
|
protected filterText: string;
|
|
646
|
-
protected filterOptions: SelectableFilter[]
|
|
648
|
+
protected readonly filterOptions: _angular_core.WritableSignal<SelectableFilter[]>;
|
|
647
649
|
protected filterOptionsInfo: _angular_core.WritableSignal<string>;
|
|
648
650
|
protected lookupField: string;
|
|
649
651
|
private lookupParams?;
|
|
@@ -652,7 +654,6 @@ declare class SelectDialogComponent {
|
|
|
652
654
|
protected selectionMasterChecked: _angular_core.WritableSignal<boolean>;
|
|
653
655
|
protected total: _angular_core.WritableSignal<number>;
|
|
654
656
|
constructor();
|
|
655
|
-
ngOnInit(): void;
|
|
656
657
|
/**
|
|
657
658
|
* Updates the total item count signal, triggering UI refresh.
|
|
658
659
|
* @param newTotal - The new total count; defaults to 0 if omitted.
|