@arsedizioni/ars-utils 20.4.35 → 20.4.37
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.
|
@@ -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
|