@arsedizioni/ars-utils 20.4.35 → 20.4.36
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/index.d.ts
CHANGED
|
@@ -1033,7 +1033,7 @@ declare class ClipperDocumentMenuComponent implements OnInit, OnDestroy {
|
|
|
1033
1033
|
private changeDetector;
|
|
1034
1034
|
private clipperService;
|
|
1035
1035
|
readonly useSelections: _angular_core.InputSignal<boolean>;
|
|
1036
|
-
readonly selectionSource: _angular_core.InputSignal<"
|
|
1036
|
+
readonly selectionSource: _angular_core.InputSignal<"none" | "selection" | "bag">;
|
|
1037
1037
|
protected selection: () => ClipperDocumentInfo[];
|
|
1038
1038
|
readonly parent: _angular_core.InputSignal<ClipperSearchResultManager>;
|
|
1039
1039
|
readonly item: _angular_core.InputSignal<ClipperDocumentInfo>;
|
|
@@ -1199,6 +1199,15 @@ class ApplicationDialogService {
|
|
|
1199
1199
|
busy(message, progress = -1, progressMode = 'indeterminate', action) {
|
|
1200
1200
|
return this.dialogService.setBusy(message, progress, progressMode, 'bar', action);
|
|
1201
1201
|
}
|
|
1202
|
+
/**
|
|
1203
|
+
* Display a busy timer
|
|
1204
|
+
* @param message : new message
|
|
1205
|
+
* @param due: the number of milliseconds. Default is 100
|
|
1206
|
+
* @returns the busy timer object
|
|
1207
|
+
*/
|
|
1208
|
+
busyTimer(message = "Operazione in corso...", due = 100) {
|
|
1209
|
+
return this.dialogService.busyTimer(message, due);
|
|
1210
|
+
}
|
|
1202
1211
|
/**
|
|
1203
1212
|
* Display a busy indeterminate dialog as hourglass
|
|
1204
1213
|
* @param message : new message
|