@arsedizioni/ars-utils 21.2.141 → 21.2.142
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/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +8 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +2 -2
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/package.json +1 -1
- package/types/arsedizioni-ars-utils-clipper.ui.d.ts +3 -2
- package/types/arsedizioni-ars-utils-ui.application.d.ts +37 -33
|
@@ -211,7 +211,7 @@ class SendToDialogComponent {
|
|
|
211
211
|
*/
|
|
212
212
|
populateRecipients() {
|
|
213
213
|
if (!this.dialogData.canPopulate) {
|
|
214
|
-
this.populate.emit(this.item);
|
|
214
|
+
this.populate.emit({ item: this.item, source: this });
|
|
215
215
|
}
|
|
216
216
|
}
|
|
217
217
|
/**
|
|
@@ -1340,7 +1340,7 @@ class ApplicationDialogService extends DialogService {
|
|
|
1340
1340
|
* @param options : checkable option list
|
|
1341
1341
|
* @param width: the preferred width
|
|
1342
1342
|
*/
|
|
1343
|
-
sendTo(title = 'Invia per email', canPopulate = false, count, options, width =
|
|
1343
|
+
sendTo(title = 'Invia per email', canPopulate = false, count, options, width = 600) {
|
|
1344
1344
|
return this.open(SendToDialogComponent, {
|
|
1345
1345
|
ariaLabel: 'invia per email',
|
|
1346
1346
|
autoFocus: true,
|