@arsedizioni/ars-utils 18.3.59 → 18.3.60
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 +6 -3
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +5 -2
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/package.json +7 -7
- package/ui.application/ui/components/button-selector/button-selector.component.d.ts +2 -1
- package/ui.application/ui/components/chips-selector/chips-selector.component.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arsedizioni/ars-utils",
|
|
3
|
-
"version": "18.3.
|
|
3
|
+
"version": "18.3.60",
|
|
4
4
|
"author": {
|
|
5
5
|
"email": "software@arsedizioni.it",
|
|
6
6
|
"name": "Fabio Buscaroli, Alberto Doria"
|
|
@@ -46,12 +46,6 @@
|
|
|
46
46
|
"esm": "./esm2022/clipper.ui/arsedizioni-ars-utils-clipper.ui.mjs",
|
|
47
47
|
"default": "./fesm2022/arsedizioni-ars-utils-clipper.ui.mjs"
|
|
48
48
|
},
|
|
49
|
-
"./core": {
|
|
50
|
-
"types": "./core/index.d.ts",
|
|
51
|
-
"esm2022": "./esm2022/core/arsedizioni-ars-utils-core.mjs",
|
|
52
|
-
"esm": "./esm2022/core/arsedizioni-ars-utils-core.mjs",
|
|
53
|
-
"default": "./fesm2022/arsedizioni-ars-utils-core.mjs"
|
|
54
|
-
},
|
|
55
49
|
"./help": {
|
|
56
50
|
"types": "./help/index.d.ts",
|
|
57
51
|
"esm2022": "./esm2022/help/arsedizioni-ars-utils-help.mjs",
|
|
@@ -64,6 +58,12 @@
|
|
|
64
58
|
"esm": "./esm2022/evolution.common/arsedizioni-ars-utils-evolution.common.mjs",
|
|
65
59
|
"default": "./fesm2022/arsedizioni-ars-utils-evolution.common.mjs"
|
|
66
60
|
},
|
|
61
|
+
"./core": {
|
|
62
|
+
"types": "./core/index.d.ts",
|
|
63
|
+
"esm2022": "./esm2022/core/arsedizioni-ars-utils-core.mjs",
|
|
64
|
+
"esm": "./esm2022/core/arsedizioni-ars-utils-core.mjs",
|
|
65
|
+
"default": "./fesm2022/arsedizioni-ars-utils-core.mjs"
|
|
66
|
+
},
|
|
67
67
|
"./support.common": {
|
|
68
68
|
"types": "./support.common/index.d.ts",
|
|
69
69
|
"esm2022": "./esm2022/support.common/arsedizioni-ars-utils-support.common.mjs",
|
|
@@ -40,8 +40,9 @@ export declare class ButtonSelectorComponent implements OnInit, OnDestroy, Contr
|
|
|
40
40
|
/**
|
|
41
41
|
* Select an element
|
|
42
42
|
* @param item : the item to select
|
|
43
|
+
* @param notify: true if selection notification must be rised. Default is true
|
|
43
44
|
*/
|
|
44
|
-
select(item: NameValueItem<any
|
|
45
|
+
select(item: NameValueItem<any>, notify?: boolean): void;
|
|
45
46
|
/**
|
|
46
47
|
* Reset value
|
|
47
48
|
*/
|
|
@@ -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>;
|