@arsedizioni/ars-utils 22.0.65 → 22.0.67
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/clipper.ui/ui/clipper.scss +51 -63
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +12 -12
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +4 -4
- package/fesm2022/arsedizioni-ars-utils-ui.application.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 +2 -2
- package/types/arsedizioni-ars-utils-ui.d.ts +1 -1
package/package.json
CHANGED
|
@@ -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<"bag" | "selection" | "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.
|
|
@@ -996,7 +996,7 @@ declare class ChipsSelectorComponent implements OnDestroy, ControlValueAccessor
|
|
|
996
996
|
/** Minimum width in pixels when collapsed. Use `-1` for automatic. */
|
|
997
997
|
readonly collapsedWidth: _angular_core.InputSignal<number>;
|
|
998
998
|
/** Display mode used when the selector is in collapsed state. */
|
|
999
|
-
readonly collapsedDisplayMode: _angular_core.InputSignal<"
|
|
999
|
+
readonly collapsedDisplayMode: _angular_core.InputSignal<"dropdown" | "button">;
|
|
1000
1000
|
/** Pixel threshold below which the selector collapses. Use `-1` to disable. */
|
|
1001
1001
|
readonly collapseAt: _angular_core.InputSignal<number>;
|
|
1002
1002
|
/** When `true`, `collapseAt` is compared against the container width rather than the window width. */
|
|
@@ -1009,7 +1009,7 @@ declare class ChipsSelectorComponent implements OnDestroy, ControlValueAccessor
|
|
|
1009
1009
|
/** When `true`, at least one item must remain selected. */
|
|
1010
1010
|
readonly mustSelect: _angular_core.InputSignal<boolean>;
|
|
1011
1011
|
/** Layout mode: `'collapsed'` forces dropdown mode, `'dynamic'` collapses based on `collapseAt`. */
|
|
1012
|
-
readonly mode: _angular_core.InputSignal<"
|
|
1012
|
+
readonly mode: _angular_core.InputSignal<"collapsed" | "dynamic">;
|
|
1013
1013
|
/** When `true`, chips are stacked vertically instead of wrapping horizontally. */
|
|
1014
1014
|
readonly stacked: _angular_core.InputSignal<boolean>;
|
|
1015
1015
|
/** 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
|
/**
|