@arsedizioni/ars-utils 19.4.2 → 19.4.3

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.
@@ -111,7 +111,7 @@ export declare class HelpViewerComponent implements OnInit, OnDestroy, AfterView
111
111
  * @param event : the click event
112
112
  * @returns : always false, to stop navigation
113
113
  */
114
- protected gotoChapter(event: any): boolean;
114
+ protected gotoChapter(e: any): boolean;
115
115
  /**
116
116
  * Find a node by id
117
117
  * @param id : folder id
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arsedizioni/ars-utils",
3
- "version": "19.4.2",
3
+ "version": "19.4.3",
4
4
  "author": {
5
5
  "email": "software@arsedizioni.it",
6
6
  "name": "Fabio Buscaroli, Alberto Doria"
@@ -40,10 +40,6 @@
40
40
  "types": "./clipper.ui/index.d.ts",
41
41
  "default": "./fesm2022/arsedizioni-ars-utils-clipper.ui.mjs"
42
42
  },
43
- "./evolution.common": {
44
- "types": "./evolution.common/index.d.ts",
45
- "default": "./fesm2022/arsedizioni-ars-utils-evolution.common.mjs"
46
- },
47
43
  "./core": {
48
44
  "types": "./core/index.d.ts",
49
45
  "default": "./fesm2022/arsedizioni-ars-utils-core.mjs"
@@ -52,6 +48,10 @@
52
48
  "types": "./help/index.d.ts",
53
49
  "default": "./fesm2022/arsedizioni-ars-utils-help.mjs"
54
50
  },
51
+ "./evolution.common": {
52
+ "types": "./evolution.common/index.d.ts",
53
+ "default": "./fesm2022/arsedizioni-ars-utils-evolution.common.mjs"
54
+ },
55
55
  "./support.common": {
56
56
  "types": "./support.common/index.d.ts",
57
57
  "default": "./fesm2022/arsedizioni-ars-utils-support.common.mjs"
@@ -64,14 +64,14 @@
64
64
  "types": "./tinymce/index.d.ts",
65
65
  "default": "./fesm2022/arsedizioni-ars-utils-tinymce.mjs"
66
66
  },
67
- "./ui": {
68
- "types": "./ui/index.d.ts",
69
- "default": "./fesm2022/arsedizioni-ars-utils-ui.mjs"
70
- },
71
67
  "./ui.application": {
72
68
  "types": "./ui.application/index.d.ts",
73
69
  "default": "./fesm2022/arsedizioni-ars-utils-ui.application.mjs"
74
70
  },
71
+ "./ui": {
72
+ "types": "./ui/index.d.ts",
73
+ "default": "./fesm2022/arsedizioni-ars-utils-ui.mjs"
74
+ },
75
75
  "./ui.oauth": {
76
76
  "types": "./ui.oauth/index.d.ts",
77
77
  "default": "./fesm2022/arsedizioni-ars-utils-ui.oauth.mjs"
@@ -23,7 +23,7 @@ export declare class SupportNotificationsBrowserComponent implements OnInit, OnD
23
23
  ngOnInit(): void;
24
24
  ngOnDestroy(): void;
25
25
  ngAfterViewInit(): void;
26
- protected onContextMenu(event: MouseEvent, item: any): void;
26
+ protected onContextMenu(e: MouseEvent, item: any): void;
27
27
  /**
28
28
  * Update scroll
29
29
  */
@@ -50,7 +50,7 @@ export declare class FilterBarComponent implements OnInit {
50
50
  * @param clear : true if the filter mus be removed
51
51
  * @param event : the click event
52
52
  */
53
- applyFilterAction(group: number, clear?: boolean, event?: any): void;
53
+ applyFilterAction(group: number, clear?: boolean): void;
54
54
  /**
55
55
  * Apply text filter
56
56
  */
@@ -20,11 +20,11 @@ export declare class SelectFileDialogComponent {
20
20
  * Submit selection
21
21
  */
22
22
  protected ok(): void;
23
- onDragOver(event: any): void;
24
- onDragEnter(event: any): void;
25
- onDragEnd(event: any): void;
26
- onDragLeave(event: any): void;
27
- onDrop(event: any): void;
23
+ onDragOver(e: any): void;
24
+ onDragEnter(e: any): void;
25
+ onDragEnd(e: any): void;
26
+ onDragLeave(e: any): void;
27
+ onDrop(e: any): void;
28
28
  /**
29
29
  * Add files
30
30
  * @param files : the files to add
@@ -11,8 +11,8 @@ export declare class ResizeTableColumnDirective implements OnInit {
11
11
  private table;
12
12
  private pressed;
13
13
  ngOnInit(): void;
14
- onMouseDown: (event: MouseEvent) => void;
15
- onMouseMove: (event: MouseEvent) => void;
14
+ onMouseDown: (e: MouseEvent) => void;
15
+ onMouseMove: (e: MouseEvent) => void;
16
16
  onMouseUp: () => void;
17
17
  static ɵfac: i0.ɵɵFactoryDeclaration<ResizeTableColumnDirective, never>;
18
18
  static ɵdir: i0.ɵɵDirectiveDeclaration<ResizeTableColumnDirective, "[resizeColumn]", never, { "resizable": { "alias": "resizeColumn"; "required": false; "isSignal": true; }; "index": { "alias": "index"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;