@arsedizioni/ars-utils 21.0.31 → 21.0.33
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 +2 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.mjs +23 -13
- package/fesm2022/arsedizioni-ars-utils-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/arsedizioni-ars-utils-clipper.ui.d.ts +1 -1
- package/types/arsedizioni-ars-utils-ui.d.ts +6 -0
package/package.json
CHANGED
|
@@ -1038,7 +1038,7 @@ declare class ClipperDocumentMenuComponent implements OnInit, OnDestroy {
|
|
|
1038
1038
|
private changeDetector;
|
|
1039
1039
|
private clipperService;
|
|
1040
1040
|
readonly useSelections: _angular_core.InputSignal<boolean>;
|
|
1041
|
-
readonly selectionSource: _angular_core.InputSignal<"
|
|
1041
|
+
readonly selectionSource: _angular_core.InputSignal<"selection" | "bag" | "none">;
|
|
1042
1042
|
protected selection: () => ClipperDocumentInfo[];
|
|
1043
1043
|
readonly parent: _angular_core.InputSignal<ClipperSearchResultManager>;
|
|
1044
1044
|
readonly item: _angular_core.InputSignal<ClipperDocumentInfo>;
|
|
@@ -88,6 +88,8 @@ interface InfoDialogData {
|
|
|
88
88
|
onNavigate?: (url: string) => void;
|
|
89
89
|
}
|
|
90
90
|
declare class InfoDialogComponent implements OnInit {
|
|
91
|
+
private clipboard;
|
|
92
|
+
private dialogService;
|
|
91
93
|
private dialogRef;
|
|
92
94
|
protected dialogData: InfoDialogData;
|
|
93
95
|
ngOnInit(): void;
|
|
@@ -101,6 +103,10 @@ declare class InfoDialogComponent implements OnInit {
|
|
|
101
103
|
* @param url : the url to navigate to
|
|
102
104
|
*/
|
|
103
105
|
protected navigate(url: string): void;
|
|
106
|
+
/**
|
|
107
|
+
* Copy to clipboard
|
|
108
|
+
*/
|
|
109
|
+
protected copy(): void;
|
|
104
110
|
static ɵfac: i0.ɵɵFactoryDeclaration<InfoDialogComponent, never>;
|
|
105
111
|
static ɵcmp: i0.ɵɵComponentDeclaration<InfoDialogComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
106
112
|
}
|