@arsedizioni/ars-utils 18.3.31 → 18.3.33

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arsedizioni/ars-utils",
3
- "version": "18.3.31",
3
+ "version": "18.3.33",
4
4
  "author": {
5
5
  "email": "software@arsedizioni.it",
6
6
  "name": "Fabio Buscaroli, Alberto Doria"
@@ -20,7 +20,7 @@ export declare class ButtonSelectorComponent implements OnInit, OnDestroy, Contr
20
20
  id: string;
21
21
  describedBy: string;
22
22
  private renderer;
23
- protected current: NameValueItem<any> | null;
23
+ protected current: import("@angular/core").WritableSignal<NameValueItem<any>>;
24
24
  width: import("@angular/core").InputSignal<number>;
25
25
  border: import("@angular/core").InputSignal<number>;
26
26
  borderRadius: import("@angular/core").InputSignal<string>;
@@ -14,7 +14,7 @@ export declare class ChipsSelectorComponent implements OnInit, OnDestroy, AfterC
14
14
  private changesEnabled;
15
15
  options: import("@angular/core").InputSignal<NameValueItem<any>[]>;
16
16
  collapsedWidth: import("@angular/core").InputSignal<number>;
17
- collapsedDisplayMode: import("@angular/core").InputSignal<"button" | "dropdown">;
17
+ collapsedDisplayMode: import("@angular/core").InputSignal<"dropdown" | "button">;
18
18
  collapseAt: import("@angular/core").InputSignal<number>;
19
19
  collapseAtContainer: import("@angular/core").InputSignal<boolean>;
20
20
  label: import("@angular/core").InputSignal<string>;
@@ -41,7 +41,8 @@ export declare class ChipsSelectorComponent implements OnInit, OnDestroy, AfterC
41
41
  get shouldLabelFloat(): boolean;
42
42
  describedBy: string;
43
43
  private renderer;
44
- protected selection: any;
44
+ protected selection: NameValueItem<any>[];
45
+ protected singleSelection: NameValueItem<any> | null;
45
46
  constructor(ngControl: NgControl);
46
47
  ngOnInit(): void;
47
48
  ngOnDestroy(): void;
@@ -50,10 +51,6 @@ export declare class ChipsSelectorComponent implements OnInit, OnDestroy, AfterC
50
51
  * Update container width
51
52
  */
52
53
  private updateContainerWidth;
53
- /**
54
- * Update current value with a little delay
55
- */
56
- updateValue(): void;
57
54
  writeValue(value: any): void;
58
55
  registerOnChange(fn: any): void;
59
56
  registerOnTouched(fn: any): void;