@arsedizioni/ars-utils 18.3.51 → 18.3.52
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/esm2022/ui.application/ui/services/applicationDialog.service.mjs +4 -3
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +3 -2
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/package.json +7 -7
- package/ui.application/ui/services/applicationDialog.service.d.ts +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arsedizioni/ars-utils",
|
|
3
|
-
"version": "18.3.
|
|
3
|
+
"version": "18.3.52",
|
|
4
4
|
"author": {
|
|
5
5
|
"email": "software@arsedizioni.it",
|
|
6
6
|
"name": "Fabio Buscaroli, Alberto Doria"
|
|
@@ -46,12 +46,6 @@
|
|
|
46
46
|
"esm": "./esm2022/clipper.ui/arsedizioni-ars-utils-clipper.ui.mjs",
|
|
47
47
|
"default": "./fesm2022/arsedizioni-ars-utils-clipper.ui.mjs"
|
|
48
48
|
},
|
|
49
|
-
"./help": {
|
|
50
|
-
"types": "./help/index.d.ts",
|
|
51
|
-
"esm2022": "./esm2022/help/arsedizioni-ars-utils-help.mjs",
|
|
52
|
-
"esm": "./esm2022/help/arsedizioni-ars-utils-help.mjs",
|
|
53
|
-
"default": "./fesm2022/arsedizioni-ars-utils-help.mjs"
|
|
54
|
-
},
|
|
55
49
|
"./core": {
|
|
56
50
|
"types": "./core/index.d.ts",
|
|
57
51
|
"esm2022": "./esm2022/core/arsedizioni-ars-utils-core.mjs",
|
|
@@ -64,6 +58,12 @@
|
|
|
64
58
|
"esm": "./esm2022/evolution.common/arsedizioni-ars-utils-evolution.common.mjs",
|
|
65
59
|
"default": "./fesm2022/arsedizioni-ars-utils-evolution.common.mjs"
|
|
66
60
|
},
|
|
61
|
+
"./help": {
|
|
62
|
+
"types": "./help/index.d.ts",
|
|
63
|
+
"esm2022": "./esm2022/help/arsedizioni-ars-utils-help.mjs",
|
|
64
|
+
"esm": "./esm2022/help/arsedizioni-ars-utils-help.mjs",
|
|
65
|
+
"default": "./fesm2022/arsedizioni-ars-utils-help.mjs"
|
|
66
|
+
},
|
|
67
67
|
"./support.common": {
|
|
68
68
|
"types": "./support.common/index.d.ts",
|
|
69
69
|
"esm2022": "./esm2022/support.common/arsedizioni-ars-utils-support.common.mjs",
|
|
@@ -51,8 +51,9 @@ export declare class ApplicationDialogService extends DialogService {
|
|
|
51
51
|
/**
|
|
52
52
|
* Display a multipourpose selection and CRUD dialog
|
|
53
53
|
* @param data : the dialog configuration model
|
|
54
|
+
* @param disableClose : false to allow closing with esc or a click outside
|
|
54
55
|
*/
|
|
55
|
-
select(data: SelectDialogData): MatDialogRef<SelectDialogComponent, any>;
|
|
56
|
+
select(data: SelectDialogData, disableClose?: boolean): MatDialogRef<SelectDialogComponent, any>;
|
|
56
57
|
/**
|
|
57
58
|
* Prompt user to insert a value
|
|
58
59
|
* @param title : the dialog title
|