@arsedizioni/ars-utils 21.2.138 → 21.2.141
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
|
@@ -1047,7 +1047,7 @@ declare class ClipperDocumentMenuComponent implements OnInit {
|
|
|
1047
1047
|
private readonly changeDetector;
|
|
1048
1048
|
private readonly clipperService;
|
|
1049
1049
|
readonly useSelections: _angular_core.InputSignal<boolean>;
|
|
1050
|
-
readonly selectionSource: _angular_core.InputSignal<"
|
|
1050
|
+
readonly selectionSource: _angular_core.InputSignal<"none" | "selection" | "bag">;
|
|
1051
1051
|
protected selection: () => ClipperDocumentInfo[];
|
|
1052
1052
|
readonly parent: _angular_core.InputSignal<any>;
|
|
1053
1053
|
readonly item: _angular_core.InputSignal<ClipperDocumentInfo>;
|
|
@@ -269,15 +269,16 @@ declare class CurrentFilterItem<T> {
|
|
|
269
269
|
|
|
270
270
|
interface SendToDialogData {
|
|
271
271
|
count: number;
|
|
272
|
+
canPopulate?: boolean;
|
|
272
273
|
title?: string;
|
|
273
274
|
info?: string;
|
|
274
275
|
appearance?: MatFormFieldAppearance;
|
|
275
|
-
allowPopulate?: boolean;
|
|
276
276
|
options?: any;
|
|
277
277
|
}
|
|
278
278
|
declare class SendToDialogComponent implements OnInit {
|
|
279
279
|
readonly done: _angular_core.OutputEmitterRef<SendToDialogResult>;
|
|
280
280
|
readonly populate: _angular_core.OutputEmitterRef<SendToDialogResult>;
|
|
281
|
+
private changeDetector;
|
|
281
282
|
protected dialogData: SendToDialogData;
|
|
282
283
|
protected item: SendToDialogResult;
|
|
283
284
|
ngOnInit(): void;
|
|
@@ -285,7 +286,15 @@ declare class SendToDialogComponent implements OnInit {
|
|
|
285
286
|
* Submit
|
|
286
287
|
*/
|
|
287
288
|
protected ok(): void;
|
|
289
|
+
/**
|
|
290
|
+
* Populate recipients
|
|
291
|
+
*/
|
|
288
292
|
protected populateRecipients(): void;
|
|
293
|
+
/**
|
|
294
|
+
* Update recipients
|
|
295
|
+
* @param recipients the new recipients value
|
|
296
|
+
*/
|
|
297
|
+
updateRecipients(recipients: string): void;
|
|
289
298
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SendToDialogComponent, never>;
|
|
290
299
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SendToDialogComponent, "ng-component", never, {}, { "done": "done"; "populate": "populate"; }, never, never, true, never>;
|
|
291
300
|
}
|
|
@@ -676,12 +685,12 @@ declare class ApplicationDialogService extends DialogService {
|
|
|
676
685
|
/**
|
|
677
686
|
* Sent to
|
|
678
687
|
* @param title : title
|
|
679
|
-
* @param
|
|
688
|
+
* @param canPopulate: true if the populate fuction is allowed
|
|
680
689
|
* @param count : elements to send or null
|
|
681
690
|
* @param options : checkable option list
|
|
682
691
|
* @param width: the preferred width
|
|
683
692
|
*/
|
|
684
|
-
sendTo(title?: string,
|
|
693
|
+
sendTo(title?: string, canPopulate?: boolean, count?: number, options?: any, width?: number): MatDialogRef<SendToDialogComponent, any>;
|
|
685
694
|
/**
|
|
686
695
|
* Select a tree node
|
|
687
696
|
* @param nodes : tree nodes
|
|
@@ -813,7 +822,7 @@ declare class FileInputComponent implements OnInit, OnDestroy, DoCheck, OnChange
|
|
|
813
822
|
readonly minSizeMb: _angular_core.InputSignal<number>;
|
|
814
823
|
readonly isNew: _angular_core.InputSignal<boolean>;
|
|
815
824
|
readonly canPreview: _angular_core.InputSignal<boolean>;
|
|
816
|
-
readonly appearance: _angular_core.InputSignal<"
|
|
825
|
+
readonly appearance: _angular_core.InputSignal<"fill" | "outline">;
|
|
817
826
|
readonly accept: _angular_core.InputSignal<string>;
|
|
818
827
|
get empty(): boolean;
|
|
819
828
|
get errorState(): boolean;
|
|
@@ -917,7 +926,7 @@ declare class FilterBarComponent implements OnInit {
|
|
|
917
926
|
readonly text2Length: _angular_core.InputSignal<string>;
|
|
918
927
|
readonly text3Length: _angular_core.InputSignal<string>;
|
|
919
928
|
readonly showTextSearchButton: _angular_core.InputSignal<boolean>;
|
|
920
|
-
readonly appearance: _angular_core.InputSignal<"
|
|
929
|
+
readonly appearance: _angular_core.InputSignal<"fill" | "outline">;
|
|
921
930
|
protected text?: string;
|
|
922
931
|
protected text2?: string;
|
|
923
932
|
protected text3?: string;
|