@arsedizioni/ars-utils 21.2.353 → 21.2.355
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
|
@@ -1025,7 +1025,7 @@ declare class ClipperDocumentMenuComponent {
|
|
|
1025
1025
|
/** Internal counter incremented on each external selection-model change to drive signal re-evaluation. */
|
|
1026
1026
|
private readonly selectionChangeTick;
|
|
1027
1027
|
readonly useSelections: _angular_core.InputSignal<boolean>;
|
|
1028
|
-
readonly selectionSource: _angular_core.InputSignal<"
|
|
1028
|
+
readonly selectionSource: _angular_core.InputSignal<"selection" | "bag" | "none">;
|
|
1029
1029
|
/**
|
|
1030
1030
|
* Computed signal that returns the current effective document selection.
|
|
1031
1031
|
* Re-evaluates when any input signal or the underlying selection model changes.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { OnDestroy, DoCheck, ElementRef } from '@angular/core';
|
|
2
|
+
import { OnDestroy, AfterViewInit, DoCheck, ElementRef } from '@angular/core';
|
|
3
3
|
import { INode, Searchable, SearchBag, NameValueItem, DateInterval, SearchFilterMetadata, FileInfo } from '@arsedizioni/ars-utils/core';
|
|
4
4
|
import { MatFormFieldAppearance, MatFormFieldControl } from '@angular/material/form-field';
|
|
5
5
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
@@ -642,9 +642,10 @@ declare class PromptTimeDialogComponent {
|
|
|
642
642
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PromptTimeDialogComponent, "ng-component", never, {}, { "done": "done"; }, never, never, true, never>;
|
|
643
643
|
}
|
|
644
644
|
|
|
645
|
-
declare class SelectDialogComponent {
|
|
645
|
+
declare class SelectDialogComponent implements AfterViewInit {
|
|
646
646
|
readonly paginator: _angular_core.Signal<MatPaginator>;
|
|
647
647
|
readonly selection: _angular_core.Signal<MatSelectionList>;
|
|
648
|
+
private isViewReady;
|
|
648
649
|
private readonly dialogRef;
|
|
649
650
|
private readonly cdr;
|
|
650
651
|
protected readonly dialogData: _angular_core.WritableSignal<SelectDialogData>;
|
|
@@ -673,6 +674,7 @@ declare class SelectDialogComponent {
|
|
|
673
674
|
protected selectionMasterChecked: _angular_core.WritableSignal<boolean>;
|
|
674
675
|
protected total: _angular_core.WritableSignal<number>;
|
|
675
676
|
constructor();
|
|
677
|
+
ngAfterViewInit(): void;
|
|
676
678
|
/**
|
|
677
679
|
* Updates the total item count signal, triggering UI refresh.
|
|
678
680
|
* @param newTotal - The new total count; defaults to 0 if omitted.
|