@arsedizioni/ars-utils 22.0.1 → 22.0.2
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
|
@@ -1053,7 +1053,7 @@ declare class ClipperDocumentMenuComponent {
|
|
|
1053
1053
|
/** Internal counter incremented on each external selection-model change to drive signal re-evaluation. */
|
|
1054
1054
|
private readonly selectionChangeTick;
|
|
1055
1055
|
readonly useSelections: _angular_core.InputSignal<boolean>;
|
|
1056
|
-
readonly selectionSource: _angular_core.InputSignal<"
|
|
1056
|
+
readonly selectionSource: _angular_core.InputSignal<"selection" | "bag" | "none">;
|
|
1057
1057
|
/**
|
|
1058
1058
|
* Computed signal that returns the current effective document selection.
|
|
1059
1059
|
* Re-evaluates when any input signal or the underlying selection model changes.
|
|
@@ -1014,12 +1014,16 @@ declare class ChipsSelectorComponent implements OnDestroy, ControlValueAccessor
|
|
|
1014
1014
|
private readonly stateChanges;
|
|
1015
1015
|
private readonly destroyRef;
|
|
1016
1016
|
private changesEnabled;
|
|
1017
|
+
/** Observer that tracks size changes of the container element. */
|
|
1018
|
+
private resizeObserver?;
|
|
1019
|
+
/** Debounce bridge for `ResizeObserver` notifications. */
|
|
1020
|
+
private readonly resize$;
|
|
1017
1021
|
/** List of available options to display as chips. */
|
|
1018
1022
|
readonly options: _angular_core.InputSignal<NameValueItem<any>[]>;
|
|
1019
1023
|
/** Minimum width in pixels when collapsed. Use `-1` for automatic. */
|
|
1020
1024
|
readonly collapsedWidth: _angular_core.InputSignal<number>;
|
|
1021
1025
|
/** Display mode used when the selector is in collapsed state. */
|
|
1022
|
-
readonly collapsedDisplayMode: _angular_core.InputSignal<"
|
|
1026
|
+
readonly collapsedDisplayMode: _angular_core.InputSignal<"dropdown" | "button">;
|
|
1023
1027
|
/** Pixel threshold below which the selector collapses. Use `-1` to disable. */
|
|
1024
1028
|
readonly collapseAt: _angular_core.InputSignal<number>;
|
|
1025
1029
|
/** When `true`, `collapseAt` is compared against the container width rather than the window width. */
|