@arsedizioni/ars-utils 21.2.294 → 21.2.295
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.ui.mjs +6 -8
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/arsedizioni-ars-utils-clipper.ui.d.ts +1 -1
- package/types/arsedizioni-ars-utils-ui.application.d.ts +1 -1
- package/types/arsedizioni-ars-utils-ui.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1020,7 +1020,7 @@ declare class ClipperDocumentMenuComponent {
|
|
|
1020
1020
|
/** Internal counter incremented on each external selection-model change to drive signal re-evaluation. */
|
|
1021
1021
|
private readonly selectionChangeTick;
|
|
1022
1022
|
readonly useSelections: _angular_core.InputSignal<boolean>;
|
|
1023
|
-
readonly selectionSource: _angular_core.InputSignal<"
|
|
1023
|
+
readonly selectionSource: _angular_core.InputSignal<"selection" | "none" | "bag">;
|
|
1024
1024
|
/**
|
|
1025
1025
|
* Computed signal that returns the current effective document selection.
|
|
1026
1026
|
* Re-evaluates when any input signal or the underlying selection model changes.
|
|
@@ -1002,7 +1002,7 @@ declare class ChipsSelectorComponent implements OnInit, OnDestroy, AfterContentI
|
|
|
1002
1002
|
/** When `true`, at least one item must remain selected. */
|
|
1003
1003
|
readonly mustSelect: _angular_core.InputSignal<boolean>;
|
|
1004
1004
|
/** Layout mode: `'collapsed'` forces dropdown mode, `'dynamic'` collapses based on `collapseAt`. */
|
|
1005
|
-
readonly mode: _angular_core.InputSignal<"
|
|
1005
|
+
readonly mode: _angular_core.InputSignal<"collapsed" | "dynamic">;
|
|
1006
1006
|
/** When `true`, chips are stacked vertically instead of wrapping horizontally. */
|
|
1007
1007
|
readonly stacked: _angular_core.InputSignal<boolean>;
|
|
1008
1008
|
/** Chips below this index receive extra padding to align with other UI elements. */
|
|
@@ -400,7 +400,7 @@ declare class BusyDialogComponent {
|
|
|
400
400
|
/** Current progress value (0–100). Used when `progressMode` is `'determinate'`. */
|
|
401
401
|
readonly progress: _angular_core.WritableSignal<number>;
|
|
402
402
|
/** Progress mode passed to the Material progress components. */
|
|
403
|
-
readonly progressMode: _angular_core.WritableSignal<"
|
|
403
|
+
readonly progressMode: _angular_core.WritableSignal<"determinate" | "indeterminate">;
|
|
404
404
|
/** Message displayed above the progress indicator. */
|
|
405
405
|
readonly message: _angular_core.WritableSignal<string>;
|
|
406
406
|
/**
|