@arsedizioni/ars-utils 21.0.32 → 21.0.34

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arsedizioni/ars-utils",
3
- "version": "21.0.32",
3
+ "version": "21.0.34",
4
4
  "author": {
5
5
  "email": "software@arsedizioni.it",
6
6
  "name": "Fabio Buscaroli, Alberto Doria"
@@ -88,6 +88,8 @@ interface InfoDialogData {
88
88
  onNavigate?: (url: string) => void;
89
89
  }
90
90
  declare class InfoDialogComponent implements OnInit {
91
+ readonly dialogContent: i0.Signal<HTMLElement>;
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(): Promise<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
  }