@arsedizioni/ars-utils 22.0.71 → 22.0.73
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/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +11 -12
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +7 -8
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +19 -13
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/package.json +1 -1
- package/types/arsedizioni-ars-utils-clipper.common.d.ts +0 -2
- package/types/arsedizioni-ars-utils-clipper.ui.d.ts +1 -1
- package/types/arsedizioni-ars-utils-ui.application.d.ts +8 -5
- package/types/arsedizioni-ars-utils-ui.d.ts +1 -1
package/package.json
CHANGED
|
@@ -103,7 +103,6 @@ declare enum ClipperModule {
|
|
|
103
103
|
Giurisprudenza = 5,
|
|
104
104
|
ModificheAbrogazioniERinvii = 3,
|
|
105
105
|
ScadenzeESegnalazioni = 12,
|
|
106
|
-
AllerteAlimentari = 8,
|
|
107
106
|
Approfondimenti = 6,
|
|
108
107
|
QuesitiECasiRisolti = 10,
|
|
109
108
|
MetodiDiAnalisi = 11,
|
|
@@ -121,7 +120,6 @@ declare enum ClipperModel {
|
|
|
121
120
|
NormativaVigente = 9,
|
|
122
121
|
Scadenze = 10,
|
|
123
122
|
Coordinamento = 11,
|
|
124
|
-
AllerteAlimentari = 13,
|
|
125
123
|
MetodiDiAnalisi = 14,
|
|
126
124
|
GiurisprudenzaRecente = 18,
|
|
127
125
|
Segnalazioni = 20,
|
|
@@ -1049,7 +1049,7 @@ declare class ClipperDocumentMenuComponent {
|
|
|
1049
1049
|
private readonly renderer2;
|
|
1050
1050
|
private readonly clipperService;
|
|
1051
1051
|
readonly useSelections: _angular_core.InputSignal<boolean>;
|
|
1052
|
-
readonly selectionSource: _angular_core.InputSignal<"
|
|
1052
|
+
readonly selectionSource: _angular_core.InputSignal<"selection" | "bag" | "none">;
|
|
1053
1053
|
/**
|
|
1054
1054
|
* Computed signal that returns the current effective document selection.
|
|
1055
1055
|
* Re-evaluates when any input signal or the underlying selection model changes.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { INode, Searchable, SearchBag, NameValueItem, DateInterval, SearchFilterMetadata, FileInfo } from '@arsedizioni/ars-utils/core';
|
|
2
2
|
import { MatFormFieldAppearance, MatFormFieldControl } from '@angular/material/form-field';
|
|
3
3
|
import * as _angular_core from '@angular/core';
|
|
4
|
-
import { OnDestroy,
|
|
4
|
+
import { OnDestroy, DoCheck, ElementRef } from '@angular/core';
|
|
5
5
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
6
6
|
import { DialogService } from '@arsedizioni/ars-utils/ui';
|
|
7
7
|
import * as rxjs from 'rxjs';
|
|
@@ -611,7 +611,7 @@ declare class PromptTimeDialogComponent {
|
|
|
611
611
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PromptTimeDialogComponent, "ng-component", never, {}, { "done": "done"; }, never, never, true, never>;
|
|
612
612
|
}
|
|
613
613
|
|
|
614
|
-
declare class SelectDialogComponent
|
|
614
|
+
declare class SelectDialogComponent {
|
|
615
615
|
readonly paginator: _angular_core.Signal<MatPaginator>;
|
|
616
616
|
readonly selection: _angular_core.Signal<MatSelectionList>;
|
|
617
617
|
private isViewReady;
|
|
@@ -643,7 +643,6 @@ declare class SelectDialogComponent implements AfterViewInit {
|
|
|
643
643
|
protected selectionMasterChecked: _angular_core.WritableSignal<boolean>;
|
|
644
644
|
protected total: _angular_core.WritableSignal<number>;
|
|
645
645
|
constructor();
|
|
646
|
-
ngAfterViewInit(): void;
|
|
647
646
|
/**
|
|
648
647
|
* Updates the total item count signal, triggering UI refresh.
|
|
649
648
|
* @param newTotal - The new total count; defaults to 0 if omitted.
|
|
@@ -689,6 +688,10 @@ declare class SelectDialogComponent implements AfterViewInit {
|
|
|
689
688
|
* @param e - Optional keyboard event; lookup only fires on Enter.
|
|
690
689
|
*/
|
|
691
690
|
protected doFilter(text?: string, e?: KeyboardEvent): void;
|
|
691
|
+
/**
|
|
692
|
+
* Applies the current filter text, emitting a lookup event.
|
|
693
|
+
*/
|
|
694
|
+
private applyFilter;
|
|
692
695
|
/**
|
|
693
696
|
* Applies a structured filter option, emitting the filter output event.
|
|
694
697
|
* @param filterOption - The selected filter option object.
|
|
@@ -1002,7 +1005,7 @@ declare class ChipsSelectorComponent implements OnDestroy, ControlValueAccessor
|
|
|
1002
1005
|
/** Minimum width in pixels when collapsed. Use `-1` for automatic. */
|
|
1003
1006
|
readonly collapsedWidth: _angular_core.InputSignal<number>;
|
|
1004
1007
|
/** Display mode used when the selector is in collapsed state. */
|
|
1005
|
-
readonly collapsedDisplayMode: _angular_core.InputSignal<"
|
|
1008
|
+
readonly collapsedDisplayMode: _angular_core.InputSignal<"dropdown" | "button">;
|
|
1006
1009
|
/** Pixel threshold below which the selector collapses. Use `-1` to disable. */
|
|
1007
1010
|
readonly collapseAt: _angular_core.InputSignal<number>;
|
|
1008
1011
|
/** When `true`, `collapseAt` is compared against the container width rather than the window width. */
|
|
@@ -1015,7 +1018,7 @@ declare class ChipsSelectorComponent implements OnDestroy, ControlValueAccessor
|
|
|
1015
1018
|
/** When `true`, at least one item must remain selected. */
|
|
1016
1019
|
readonly mustSelect: _angular_core.InputSignal<boolean>;
|
|
1017
1020
|
/** Layout mode: `'collapsed'` forces dropdown mode, `'dynamic'` collapses based on `collapseAt`. */
|
|
1018
|
-
readonly mode: _angular_core.InputSignal<"
|
|
1021
|
+
readonly mode: _angular_core.InputSignal<"collapsed" | "dynamic">;
|
|
1019
1022
|
/** When `true`, chips are stacked vertically instead of wrapping horizontally. */
|
|
1020
1023
|
readonly stacked: _angular_core.InputSignal<boolean>;
|
|
1021
1024
|
/** Chips below this index receive extra padding to align with other UI elements. */
|
|
@@ -409,7 +409,7 @@ declare class BusyDialogComponent {
|
|
|
409
409
|
/** Current progress value (0–100). Used when `progressMode` is `'determinate'`. */
|
|
410
410
|
readonly progress: _angular_core.WritableSignal<number>;
|
|
411
411
|
/** Progress mode passed to the Material progress components. */
|
|
412
|
-
readonly progressMode: _angular_core.WritableSignal<"
|
|
412
|
+
readonly progressMode: _angular_core.WritableSignal<"determinate" | "indeterminate">;
|
|
413
413
|
/** Message displayed above the progress indicator. */
|
|
414
414
|
readonly message: _angular_core.WritableSignal<string>;
|
|
415
415
|
/**
|