@arsedizioni/ars-utils 18.4.108 → 18.5.2
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/clipper.ui/ui/document/document.component.d.ts +0 -4
- package/clipper.ui/ui/references/references.component.d.ts +0 -4
- package/esm2022/clipper.ui/ui/browser-dialog/browser-dialog.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/document/document.component.mjs +5 -30
- package/esm2022/clipper.ui/ui/document-manager/document-manager.mjs +2 -2
- package/esm2022/clipper.ui/ui/references/references.component.mjs +4 -27
- package/esm2022/help/components/help-viewer/help-viewer.component.mjs +5 -27
- package/esm2022/help/services/help.service.mjs +2 -2
- package/esm2022/support.ui/ui/notifications-browser/notification/notification.component.mjs +1 -19
- package/esm2022/support.ui/ui/notifications-browser/notifications-browser.component.mjs +4 -26
- package/esm2022/ui.application/ui/components/file-preview/file-preview.component.mjs +2 -26
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +10 -57
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-help.mjs +5 -27
- package/fesm2022/arsedizioni-ars-utils-help.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-support.ui.mjs +3 -43
- package/fesm2022/arsedizioni-ars-utils-support.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +0 -24
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/help/components/help-viewer/help-viewer.component.d.ts +0 -4
- package/package.json +7 -7
- package/support.ui/ui/notifications-browser/notification/notification.component.d.ts +2 -7
- package/support.ui/ui/notifications-browser/notifications-browser.component.d.ts +0 -4
- package/ui.application/ui/components/file-preview/file-preview.component.d.ts +2 -7
|
@@ -91,10 +91,6 @@ export declare class HelpViewerComponent implements OnInit, OnDestroy, AfterView
|
|
|
91
91
|
ngOnDestroy(): void;
|
|
92
92
|
ngAfterViewInit(): void;
|
|
93
93
|
/**
|
|
94
|
-
* Resize
|
|
95
|
-
*/
|
|
96
|
-
private resize;
|
|
97
|
-
/**
|
|
98
94
|
* Handle filter pane visibility
|
|
99
95
|
*/
|
|
100
96
|
private handleFilterPaneVisibility;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arsedizioni/ars-utils",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.5.2",
|
|
4
4
|
"author": {
|
|
5
5
|
"email": "software@arsedizioni.it",
|
|
6
6
|
"name": "Fabio Buscaroli, Alberto Doria"
|
|
@@ -46,12 +46,6 @@
|
|
|
46
46
|
"esm": "./esm2022/clipper.ui/arsedizioni-ars-utils-clipper.ui.mjs",
|
|
47
47
|
"default": "./fesm2022/arsedizioni-ars-utils-clipper.ui.mjs"
|
|
48
48
|
},
|
|
49
|
-
"./evolution.common": {
|
|
50
|
-
"types": "./evolution.common/index.d.ts",
|
|
51
|
-
"esm2022": "./esm2022/evolution.common/arsedizioni-ars-utils-evolution.common.mjs",
|
|
52
|
-
"esm": "./esm2022/evolution.common/arsedizioni-ars-utils-evolution.common.mjs",
|
|
53
|
-
"default": "./fesm2022/arsedizioni-ars-utils-evolution.common.mjs"
|
|
54
|
-
},
|
|
55
49
|
"./core": {
|
|
56
50
|
"types": "./core/index.d.ts",
|
|
57
51
|
"esm2022": "./esm2022/core/arsedizioni-ars-utils-core.mjs",
|
|
@@ -64,6 +58,12 @@
|
|
|
64
58
|
"esm": "./esm2022/help/arsedizioni-ars-utils-help.mjs",
|
|
65
59
|
"default": "./fesm2022/arsedizioni-ars-utils-help.mjs"
|
|
66
60
|
},
|
|
61
|
+
"./evolution.common": {
|
|
62
|
+
"types": "./evolution.common/index.d.ts",
|
|
63
|
+
"esm2022": "./esm2022/evolution.common/arsedizioni-ars-utils-evolution.common.mjs",
|
|
64
|
+
"esm": "./esm2022/evolution.common/arsedizioni-ars-utils-evolution.common.mjs",
|
|
65
|
+
"default": "./fesm2022/arsedizioni-ars-utils-evolution.common.mjs"
|
|
66
|
+
},
|
|
67
67
|
"./support.common": {
|
|
68
68
|
"types": "./support.common/index.d.ts",
|
|
69
69
|
"esm2022": "./esm2022/support.common/arsedizioni-ars-utils-support.common.mjs",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
2
|
import { ScreenService } from '@arsedizioni/ars-utils/core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export interface SupportNotificationData {
|
|
5
5
|
id?: number | null;
|
|
6
6
|
}
|
|
7
|
-
export declare class SupportNotificationComponent implements OnInit
|
|
7
|
+
export declare class SupportNotificationComponent implements OnInit {
|
|
8
8
|
protected screenService: ScreenService;
|
|
9
9
|
private supportService;
|
|
10
10
|
private changeDetector;
|
|
@@ -14,11 +14,6 @@ export declare class SupportNotificationComponent implements OnInit, AfterViewIn
|
|
|
14
14
|
protected id: number;
|
|
15
15
|
protected item: any | null;
|
|
16
16
|
ngOnInit(): void;
|
|
17
|
-
ngAfterViewInit(): void;
|
|
18
|
-
/**
|
|
19
|
-
* Resize dialog
|
|
20
|
-
*/
|
|
21
|
-
private resize;
|
|
22
17
|
/**
|
|
23
18
|
* Retrieve data
|
|
24
19
|
*/
|
|
@@ -23,10 +23,6 @@ export declare class SupportNotificationsBrowserComponent implements OnInit, OnD
|
|
|
23
23
|
ngOnInit(): void;
|
|
24
24
|
ngOnDestroy(): void;
|
|
25
25
|
ngAfterViewInit(): void;
|
|
26
|
-
/**
|
|
27
|
-
* Resize dialog
|
|
28
|
-
*/
|
|
29
|
-
private resize;
|
|
30
26
|
protected onContextMenu(event: MouseEvent, item: any): void;
|
|
31
27
|
/**
|
|
32
28
|
* Update scroll
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { OnInit, OnDestroy
|
|
1
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export interface FilePreviewDialogData {
|
|
4
4
|
url?: string | null;
|
|
5
5
|
embed?: boolean | null;
|
|
6
6
|
authToken?: string | null;
|
|
7
7
|
}
|
|
8
|
-
export declare class FilePreviewComponent implements OnInit, OnDestroy
|
|
8
|
+
export declare class FilePreviewComponent implements OnInit, OnDestroy {
|
|
9
9
|
private unsubscribe;
|
|
10
10
|
private httpClient;
|
|
11
11
|
private dialogService;
|
|
@@ -13,11 +13,6 @@ export declare class FilePreviewComponent implements OnInit, OnDestroy, AfterVie
|
|
|
13
13
|
protected url: import("@angular/core").WritableSignal<any>;
|
|
14
14
|
ngOnInit(): void;
|
|
15
15
|
ngOnDestroy(): void;
|
|
16
|
-
ngAfterViewInit(): void;
|
|
17
|
-
/**
|
|
18
|
-
* Resize
|
|
19
|
-
*/
|
|
20
|
-
private resize;
|
|
21
16
|
/**
|
|
22
17
|
* Download manually
|
|
23
18
|
*/
|