@arsedizioni/ars-utils 21.2.103 → 21.2.106
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 +6 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +293 -335
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.mjs +1798 -12
- package/fesm2022/arsedizioni-ars-utils-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/arsedizioni-ars-utils-ui.application.d.ts +99 -179
- package/types/arsedizioni-ars-utils-ui.d.ts +843 -48
- package/types/arsedizioni-ars-utils-clipper.common.d.ts.map +0 -1
- package/types/arsedizioni-ars-utils-clipper.ui.d.ts.map +0 -1
- package/types/arsedizioni-ars-utils-core.d.ts.map +0 -1
- package/types/arsedizioni-ars-utils-evolution.common.d.ts.map +0 -1
- package/types/arsedizioni-ars-utils-help.d.ts.map +0 -1
- package/types/arsedizioni-ars-utils-support.common.d.ts.map +0 -1
- package/types/arsedizioni-ars-utils-support.ui.d.ts.map +0 -1
- package/types/arsedizioni-ars-utils-tinymce.d.ts.map +0 -1
- package/types/arsedizioni-ars-utils-ui.application.d.ts.map +0 -1
- package/types/arsedizioni-ars-utils-ui.d.ts.map +0 -1
- package/types/arsedizioni-ars-utils-ui.oauth.d.ts.map +0 -1
- package/types/arsedizioni-ars-utils.d.ts.map +0 -1
|
@@ -350,9 +350,13 @@ class ClipperDocumentManager {
|
|
|
350
350
|
});
|
|
351
351
|
d.componentInstance.done
|
|
352
352
|
.subscribe((data) => {
|
|
353
|
-
|
|
353
|
+
const params = {
|
|
354
|
+
recipients: data.recipients,
|
|
355
|
+
subject: data.subject,
|
|
356
|
+
ids: items?.map(n => n.documentId ?? n.id) ?? []
|
|
357
|
+
};
|
|
354
358
|
this.dialogService.busy('Invio in corso...');
|
|
355
|
-
this.clipperService.sendTo(
|
|
359
|
+
this.clipperService.sendTo(params)
|
|
356
360
|
.pipe(finalize(() => this.dialogService.clearBusy()))
|
|
357
361
|
.subscribe(r => {
|
|
358
362
|
if (!r.success) {
|