@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/esm2022/ui.application/ui/components/button-selector/button-selector.component.mjs +8 -8
- package/esm2022/ui.application/ui/components/chips-selector/chips-selector.component.mjs +16 -33
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +20 -37
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/package.json +1 -1
- package/ui.application/ui/components/button-selector/button-selector.component.d.ts +1 -1
- package/ui.application/ui/components/chips-selector/chips-selector.component.d.ts +3 -6
package/package.json
CHANGED
|
@@ -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
|
|
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<"
|
|
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;
|