@arsedizioni/ars-utils 19.0.11 → 19.0.13
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/clipper.ui/ui/document-menu/document-menu.component.d.ts +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.mjs +6 -6
- package/fesm2022/arsedizioni-ars-utils-ui.mjs.map +1 -1
- package/package.json +8 -8
|
@@ -12,7 +12,7 @@ export declare class ClipperDocumentMenuComponent implements OnInit, OnDestroy {
|
|
|
12
12
|
private changeDetector;
|
|
13
13
|
private clipperService;
|
|
14
14
|
useSelections: import("@angular/core").InputSignal<boolean>;
|
|
15
|
-
selectionSource: import("@angular/core").InputSignal<"
|
|
15
|
+
selectionSource: import("@angular/core").InputSignal<"none" | "bag" | "selection">;
|
|
16
16
|
protected selection: () => ClipperDocumentInfo[];
|
|
17
17
|
parent: import("@angular/core").InputSignal<ClipperSearchResultManager>;
|
|
18
18
|
item: import("@angular/core").InputSignal<ClipperDocumentInfo>;
|
|
@@ -859,9 +859,9 @@ class SelectDialogComponent {
|
|
|
859
859
|
this.selection().selectedOptions.selected.forEach((element) => {
|
|
860
860
|
selectedItems.push(element.value);
|
|
861
861
|
});
|
|
862
|
-
this.dialogRef.close();
|
|
863
862
|
setTimeout(() => {
|
|
864
863
|
this.done.emit({ selectedItems: selectedItems });
|
|
864
|
+
this.dialogRef.close();
|
|
865
865
|
}, 500);
|
|
866
866
|
}
|
|
867
867
|
}
|