@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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arsedizioni/ars-utils",
|
|
3
|
-
"version": "20.4.
|
|
3
|
+
"version": "20.4.37",
|
|
4
4
|
"author": {
|
|
5
5
|
"email": "software@arsedizioni.it",
|
|
6
6
|
"name": "Fabio Buscaroli, Alberto Doria"
|
|
@@ -36,14 +36,14 @@
|
|
|
36
36
|
"types": "./clipper.common/index.d.ts",
|
|
37
37
|
"default": "./fesm2022/arsedizioni-ars-utils-clipper.common.mjs"
|
|
38
38
|
},
|
|
39
|
-
"./clipper.ui": {
|
|
40
|
-
"types": "./clipper.ui/index.d.ts",
|
|
41
|
-
"default": "./fesm2022/arsedizioni-ars-utils-clipper.ui.mjs"
|
|
42
|
-
},
|
|
43
39
|
"./core": {
|
|
44
40
|
"types": "./core/index.d.ts",
|
|
45
41
|
"default": "./fesm2022/arsedizioni-ars-utils-core.mjs"
|
|
46
42
|
},
|
|
43
|
+
"./clipper.ui": {
|
|
44
|
+
"types": "./clipper.ui/index.d.ts",
|
|
45
|
+
"default": "./fesm2022/arsedizioni-ars-utils-clipper.ui.mjs"
|
|
46
|
+
},
|
|
47
47
|
"./evolution.common": {
|
|
48
48
|
"types": "./evolution.common/index.d.ts",
|
|
49
49
|
"default": "./fesm2022/arsedizioni-ars-utils-evolution.common.mjs"
|
|
@@ -56,14 +56,14 @@
|
|
|
56
56
|
"types": "./support.common/index.d.ts",
|
|
57
57
|
"default": "./fesm2022/arsedizioni-ars-utils-support.common.mjs"
|
|
58
58
|
},
|
|
59
|
-
"./tinymce": {
|
|
60
|
-
"types": "./tinymce/index.d.ts",
|
|
61
|
-
"default": "./fesm2022/arsedizioni-ars-utils-tinymce.mjs"
|
|
62
|
-
},
|
|
63
59
|
"./support.ui": {
|
|
64
60
|
"types": "./support.ui/index.d.ts",
|
|
65
61
|
"default": "./fesm2022/arsedizioni-ars-utils-support.ui.mjs"
|
|
66
62
|
},
|
|
63
|
+
"./tinymce": {
|
|
64
|
+
"types": "./tinymce/index.d.ts",
|
|
65
|
+
"default": "./fesm2022/arsedizioni-ars-utils-tinymce.mjs"
|
|
66
|
+
},
|
|
67
67
|
"./ui": {
|
|
68
68
|
"types": "./ui/index.d.ts",
|
|
69
69
|
"default": "./fesm2022/arsedizioni-ars-utils-ui.mjs"
|
|
@@ -10,7 +10,7 @@ import { MatSelectionList, MatSelectionListChange } from '@angular/material/list
|
|
|
10
10
|
import { MatPaginator, PageEvent } from '@angular/material/paginator';
|
|
11
11
|
import { MatFormFieldControl } from '@angular/material/form-field';
|
|
12
12
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
13
|
-
import { DialogService, InfoDialogComponent, ToastComponent, ConfirmDialogOption } from '@arsedizioni/ars-utils/ui';
|
|
13
|
+
import { DialogService, BusyTimer, InfoDialogComponent, ToastComponent, ConfirmDialogOption } from '@arsedizioni/ars-utils/ui';
|
|
14
14
|
import { MatSnackBarRef } from '@angular/material/snack-bar';
|
|
15
15
|
|
|
16
16
|
declare class ResizeTableColumnDirective implements OnInit {
|
|
@@ -658,6 +658,13 @@ declare class ApplicationDialogService {
|
|
|
658
658
|
* @returns true if a new popup has been opened
|
|
659
659
|
*/
|
|
660
660
|
busy(message: string, progress?: number, progressMode?: 'determinate' | 'indeterminate', action?: Observable<Object>): boolean;
|
|
661
|
+
/**
|
|
662
|
+
* Display a busy timer
|
|
663
|
+
* @param message : new message
|
|
664
|
+
* @param due: the number of milliseconds. Default is 100
|
|
665
|
+
* @returns the busy timer object
|
|
666
|
+
*/
|
|
667
|
+
busyTimer(message?: string, due?: number): BusyTimer;
|
|
661
668
|
/**
|
|
662
669
|
* Display a busy indeterminate dialog as hourglass
|
|
663
670
|
* @param message : new message
|