@arsedizioni/ars-utils 21.2.187 → 21.2.188
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
|
@@ -1054,7 +1054,7 @@ declare class ClipperDocumentMenuComponent implements OnInit {
|
|
|
1054
1054
|
private readonly changeDetector;
|
|
1055
1055
|
private readonly clipperService;
|
|
1056
1056
|
readonly useSelections: _angular_core.InputSignal<boolean>;
|
|
1057
|
-
readonly selectionSource: _angular_core.InputSignal<"
|
|
1057
|
+
readonly selectionSource: _angular_core.InputSignal<"selection" | "bag" | "none">;
|
|
1058
1058
|
protected selection: () => ClipperDocumentInfo[];
|
|
1059
1059
|
readonly parent: _angular_core.InputSignal<any>;
|
|
1060
1060
|
readonly item: _angular_core.InputSignal<ClipperDocumentInfo>;
|
|
@@ -35,6 +35,7 @@ interface SendToDialogData {
|
|
|
35
35
|
canPopulate?: boolean;
|
|
36
36
|
title?: string;
|
|
37
37
|
text?: string;
|
|
38
|
+
subject?: string;
|
|
38
39
|
info?: string;
|
|
39
40
|
appearance?: MatFormFieldAppearance;
|
|
40
41
|
options?: any;
|
|
@@ -691,12 +692,14 @@ declare class ApplicationDialogService extends DialogService {
|
|
|
691
692
|
/**
|
|
692
693
|
* Sent to
|
|
693
694
|
* @param title : title
|
|
695
|
+
* @param text : text
|
|
696
|
+
* @param subject : subject
|
|
694
697
|
* @param canPopulate: true if the populate fuction is allowed
|
|
695
698
|
* @param count : elements to send or null
|
|
696
699
|
* @param options : checkable option list
|
|
697
700
|
* @param width: the preferred width
|
|
698
701
|
*/
|
|
699
|
-
sendTo(title?: string, canPopulate?: boolean, count?: number, options?: any, width?: number): MatDialogRef<SendToDialogComponent, any>;
|
|
702
|
+
sendTo(title?: string, text?: string, subject?: string, canPopulate?: boolean, count?: number, options?: any, width?: number): MatDialogRef<SendToDialogComponent, any>;
|
|
700
703
|
/**
|
|
701
704
|
* Select a tree node
|
|
702
705
|
* @param nodes : tree nodes
|