@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
|
@@ -161,6 +161,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.8", ngImpor
|
|
|
161
161
|
|
|
162
162
|
class ClipperDocumentManager {
|
|
163
163
|
constructor() {
|
|
164
|
+
this.populateContacts = output();
|
|
164
165
|
this.clipboard = inject(Clipboard);
|
|
165
166
|
this.clipperService = inject(ClipperService);
|
|
166
167
|
this.broadcastService = inject(BroadcastService);
|
|
@@ -343,6 +344,7 @@ class ClipperDocumentManager {
|
|
|
343
344
|
data: {
|
|
344
345
|
info: 'Puoi inviare i documenti a chi vuoi ma, per poterli visualizzare, è necessario essere un utente abbonato.',
|
|
345
346
|
count: items.length,
|
|
347
|
+
canPopulate: true,
|
|
346
348
|
},
|
|
347
349
|
minWidth: '375px',
|
|
348
350
|
maxWidth: '600px',
|
|
@@ -368,6 +370,10 @@ class ClipperDocumentManager {
|
|
|
368
370
|
}
|
|
369
371
|
});
|
|
370
372
|
});
|
|
373
|
+
d.componentInstance.populate
|
|
374
|
+
.subscribe((data) => {
|
|
375
|
+
this.populateContacts.emit(data);
|
|
376
|
+
});
|
|
371
377
|
}
|
|
372
378
|
/**
|
|
373
379
|
* Display a document report
|
|
@@ -621,7 +627,7 @@ class ClipperDocumentManager {
|
|
|
621
627
|
this.broadcastService.sendMessage(ClipperMessages.INTEROP_RS_USAGE_REPORT, document);
|
|
622
628
|
}
|
|
623
629
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.8", ngImport: i0, type: ClipperDocumentManager, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
624
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.8", type: ClipperDocumentManager, isStandalone: true, selector: "ng-component", ngImport: i0, template: '<div></div>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
630
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.8", type: ClipperDocumentManager, isStandalone: true, selector: "ng-component", outputs: { populateContacts: "populateContacts" }, ngImport: i0, template: '<div></div>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
625
631
|
}
|
|
626
632
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.8", ngImport: i0, type: ClipperDocumentManager, decorators: [{
|
|
627
633
|
type: Component,
|
|
@@ -630,7 +636,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.8", ngImpor
|
|
|
630
636
|
standalone: true,
|
|
631
637
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
632
638
|
}]
|
|
633
|
-
}] });
|
|
639
|
+
}], propDecorators: { populateContacts: [{ type: i0.Output, args: ["populateContacts"] }] } });
|
|
634
640
|
|
|
635
641
|
class ClipperDocumentMenuComponent {
|
|
636
642
|
constructor() {
|