general-library-union 3.2.18 → 3.2.19
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/esm2022/src/app/core/servicios/click-posicion.service.mjs +20 -0
- package/esm2022/src/app/core/servicios/utils.service.mjs +12 -21
- package/fesm2022/general-library-union.mjs +28 -20
- package/fesm2022/general-library-union.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/servicios/click-posicion.service.d.ts +11 -0
- package/src/app/core/servicios/utils.service.d.ts +3 -3
package/package.json
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ClickPosicionService {
|
|
3
|
+
private lastClickPosition;
|
|
4
|
+
setClickPosition(x: number, y: number): void;
|
|
5
|
+
getClickPosition(): {
|
|
6
|
+
x: number;
|
|
7
|
+
y: number;
|
|
8
|
+
};
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ClickPosicionService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ClickPosicionService>;
|
|
11
|
+
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { CookieService } from 'ngx-cookie-service';
|
|
2
|
+
import { ClickPosicionService } from './click-posicion.service';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class UtilsService {
|
|
4
5
|
private cookieService;
|
|
5
6
|
private document;
|
|
6
|
-
private
|
|
7
|
-
onDocumentClick(event: MouseEvent): void;
|
|
7
|
+
private clickPositionService;
|
|
8
8
|
private RESERVADAS_SQL_NOPUEDECONTENER;
|
|
9
9
|
private reservadas;
|
|
10
|
-
constructor(cookieService: CookieService, document: Document);
|
|
10
|
+
constructor(cookieService: CookieService, document: Document, clickPositionService: ClickPosicionService);
|
|
11
11
|
generarLlave(): string;
|
|
12
12
|
generarPin(cantidad: number): string;
|
|
13
13
|
rightpad(str: any, length: any, char: any): string;
|