@arsedizioni/ars-utils 18.4.61 → 18.4.62
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/dialogs/select/select-dialog.component.mjs +4 -2
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +3 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/package.json +7 -7
- package/ui.application/ui/components/file-input/file-input.component.d.ts +1 -1
- package/ui.application/ui/components/filter-bar/filter-bar.component.d.ts +1 -1
- package/ui.application/ui/dialogs/select/select-dialog.component.d.ts +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arsedizioni/ars-utils",
|
|
3
|
-
"version": "18.4.
|
|
3
|
+
"version": "18.4.62",
|
|
4
4
|
"author": {
|
|
5
5
|
"email": "software@arsedizioni.it",
|
|
6
6
|
"name": "Fabio Buscaroli, Alberto Doria"
|
|
@@ -46,6 +46,12 @@
|
|
|
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
|
+
"./evolution.common": {
|
|
50
|
+
"types": "./evolution.common/index.d.ts",
|
|
51
|
+
"esm2022": "./esm2022/evolution.common/arsedizioni-ars-utils-evolution.common.mjs",
|
|
52
|
+
"esm": "./esm2022/evolution.common/arsedizioni-ars-utils-evolution.common.mjs",
|
|
53
|
+
"default": "./fesm2022/arsedizioni-ars-utils-evolution.common.mjs"
|
|
54
|
+
},
|
|
49
55
|
"./core": {
|
|
50
56
|
"types": "./core/index.d.ts",
|
|
51
57
|
"esm2022": "./esm2022/core/arsedizioni-ars-utils-core.mjs",
|
|
@@ -58,12 +64,6 @@
|
|
|
58
64
|
"esm": "./esm2022/help/arsedizioni-ars-utils-help.mjs",
|
|
59
65
|
"default": "./fesm2022/arsedizioni-ars-utils-help.mjs"
|
|
60
66
|
},
|
|
61
|
-
"./evolution.common": {
|
|
62
|
-
"types": "./evolution.common/index.d.ts",
|
|
63
|
-
"esm2022": "./esm2022/evolution.common/arsedizioni-ars-utils-evolution.common.mjs",
|
|
64
|
-
"esm": "./esm2022/evolution.common/arsedizioni-ars-utils-evolution.common.mjs",
|
|
65
|
-
"default": "./fesm2022/arsedizioni-ars-utils-evolution.common.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",
|
|
@@ -34,7 +34,7 @@ export declare class FileInputComponent implements OnDestroy, AfterViewInit, DoC
|
|
|
34
34
|
minSizeMb: import("@angular/core").InputSignal<number>;
|
|
35
35
|
isNew: import("@angular/core").InputSignal<boolean>;
|
|
36
36
|
canPreview: import("@angular/core").InputSignal<boolean>;
|
|
37
|
-
appearance: import("@angular/core").InputSignal<"
|
|
37
|
+
appearance: import("@angular/core").InputSignal<"outline" | "fill">;
|
|
38
38
|
accept: import("@angular/core").InputSignal<string>;
|
|
39
39
|
get empty(): boolean;
|
|
40
40
|
get errorState(): boolean;
|
|
@@ -23,7 +23,7 @@ export declare class FilterBarComponent implements OnInit {
|
|
|
23
23
|
text2Length: import("@angular/core").InputSignal<string>;
|
|
24
24
|
text3Length: import("@angular/core").InputSignal<string>;
|
|
25
25
|
showTextSearchButton: import("@angular/core").InputSignal<boolean>;
|
|
26
|
-
appearance: import("@angular/core").InputSignal<"
|
|
26
|
+
appearance: import("@angular/core").InputSignal<"outline" | "fill">;
|
|
27
27
|
protected text: string | null;
|
|
28
28
|
protected text2: string | null;
|
|
29
29
|
protected text3: string | null;
|
|
@@ -35,8 +35,9 @@ export declare class SelectDialogComponent implements OnInit {
|
|
|
35
35
|
ngOnInit(): void;
|
|
36
36
|
/**
|
|
37
37
|
* Mark for check
|
|
38
|
+
* @param newTotal: the optional new total
|
|
38
39
|
*/
|
|
39
|
-
notifyChanges(): void;
|
|
40
|
+
notifyChanges(newTotal?: number | null | undefined): void;
|
|
40
41
|
/**
|
|
41
42
|
* Check if every element are selected
|
|
42
43
|
*/
|