@arsedizioni/ars-utils 18.2.217 → 18.2.219
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 +8 -6
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +7 -5
- 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 +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arsedizioni/ars-utils",
|
|
3
|
-
"version": "18.2.
|
|
3
|
+
"version": "18.2.219",
|
|
4
4
|
"author": {
|
|
5
5
|
"email": "software@arsedizioni.it",
|
|
6
6
|
"name": "Fabio Buscaroli, Alberto Doria"
|
|
@@ -47,18 +47,18 @@
|
|
|
47
47
|
"esm": "./esm2022/clipper.ui/arsedizioni-ars-utils-clipper.ui.mjs",
|
|
48
48
|
"default": "./fesm2022/arsedizioni-ars-utils-clipper.ui.mjs"
|
|
49
49
|
},
|
|
50
|
-
"./help": {
|
|
51
|
-
"types": "./help/index.d.ts",
|
|
52
|
-
"esm2022": "./esm2022/help/arsedizioni-ars-utils-help.mjs",
|
|
53
|
-
"esm": "./esm2022/help/arsedizioni-ars-utils-help.mjs",
|
|
54
|
-
"default": "./fesm2022/arsedizioni-ars-utils-help.mjs"
|
|
55
|
-
},
|
|
56
50
|
"./core": {
|
|
57
51
|
"types": "./core/index.d.ts",
|
|
58
52
|
"esm2022": "./esm2022/core/arsedizioni-ars-utils-core.mjs",
|
|
59
53
|
"esm": "./esm2022/core/arsedizioni-ars-utils-core.mjs",
|
|
60
54
|
"default": "./fesm2022/arsedizioni-ars-utils-core.mjs"
|
|
61
55
|
},
|
|
56
|
+
"./help": {
|
|
57
|
+
"types": "./help/index.d.ts",
|
|
58
|
+
"esm2022": "./esm2022/help/arsedizioni-ars-utils-help.mjs",
|
|
59
|
+
"esm": "./esm2022/help/arsedizioni-ars-utils-help.mjs",
|
|
60
|
+
"default": "./fesm2022/arsedizioni-ars-utils-help.mjs"
|
|
61
|
+
},
|
|
62
62
|
"./support.common": {
|
|
63
63
|
"types": "./support.common/index.d.ts",
|
|
64
64
|
"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;
|
|
@@ -19,7 +19,7 @@ export declare class FilterBarComponent implements OnInit {
|
|
|
19
19
|
text2Length: import("@angular/core").InputSignal<string>;
|
|
20
20
|
text3Length: import("@angular/core").InputSignal<string>;
|
|
21
21
|
showTextSearchButton: import("@angular/core").InputSignal<boolean>;
|
|
22
|
-
appearance: import("@angular/core").InputSignal<"
|
|
22
|
+
appearance: import("@angular/core").InputSignal<"outline" | "fill">;
|
|
23
23
|
text: string;
|
|
24
24
|
text2: string;
|
|
25
25
|
text3: string;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from "@angular/core";
|
|
2
|
+
import { MatCheckboxChange } from "@angular/material/checkbox";
|
|
2
3
|
import { MatSelectionList } from "@angular/material/list";
|
|
3
4
|
import { MatPaginator } from '@angular/material/paginator';
|
|
5
|
+
import { MatSelectChange } from "@angular/material/select";
|
|
4
6
|
import { SelectDialogAppend, SelectDialogData, SelectDialogDelete, SelectDialogFilter, SelectDialogLookup, SelectDialogResult, SelectableItem } from "../../definitions";
|
|
5
7
|
import * as i0 from "@angular/core";
|
|
6
8
|
export declare class SelectDialogComponent implements OnInit {
|
|
@@ -46,12 +48,14 @@ export declare class SelectDialogComponent implements OnInit {
|
|
|
46
48
|
private hasSelection;
|
|
47
49
|
/**
|
|
48
50
|
* Master selection toggle
|
|
51
|
+
* @param e: the event
|
|
49
52
|
*/
|
|
50
|
-
protected masterSelectionToggle(
|
|
53
|
+
protected masterSelectionToggle(e: MatCheckboxChange): void;
|
|
51
54
|
/**
|
|
52
55
|
* Handle selection/deselection of an item
|
|
56
|
+
* @param e: the event
|
|
53
57
|
*/
|
|
54
|
-
protected select(e:
|
|
58
|
+
protected select(e: MatSelectChange): void;
|
|
55
59
|
/**
|
|
56
60
|
* Update selection info
|
|
57
61
|
*/
|