@rangertechnologies/ngnxt 2.1.84 → 2.1.85
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/lib/components/pick-location/pick-location.component.mjs +33 -5
- package/esm2022/lib/pages/builder/element/element.component.mjs +5 -3
- package/esm2022/lib/pages/builder/properties/properties.component.mjs +2 -2
- package/esm2022/lib/services/data.service.mjs +3 -3
- package/fesm2022/rangertechnologies-ngnxt.mjs +40 -10
- package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -1
- package/lib/components/pick-location/pick-location.component.d.ts +5 -3
- package/package.json +1 -1
- package/rangertechnologies-ngnxt-2.1.85.tgz +0 -0
- package/rangertechnologies-ngnxt-2.1.84.tgz +0 -0
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
/// <reference types="google.maps" />
|
|
2
|
-
import { ElementRef, EventEmitter, NgZone, OnInit } from '@angular/core';
|
|
2
|
+
import { ElementRef, EventEmitter, ChangeDetectorRef, NgZone, OnInit, SimpleChanges, OnChanges } from '@angular/core';
|
|
3
3
|
import { I18nService } from '../../i18n.service';
|
|
4
4
|
import { ChangeWrapper } from '../../model/changeWrapper';
|
|
5
5
|
import { Question } from '../../wrapper';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class PickLocationComponent implements OnInit {
|
|
7
|
+
export declare class PickLocationComponent implements OnInit, OnChanges {
|
|
8
8
|
i18nService: I18nService;
|
|
9
9
|
private ngZone;
|
|
10
|
+
private cdr;
|
|
10
11
|
latitude: any;
|
|
11
12
|
longitude: any;
|
|
12
13
|
zoom: number;
|
|
@@ -27,8 +28,9 @@ export declare class PickLocationComponent implements OnInit {
|
|
|
27
28
|
};
|
|
28
29
|
markerOptions: any;
|
|
29
30
|
apiKey: any;
|
|
30
|
-
constructor(i18nService: I18nService, ngZone: NgZone);
|
|
31
|
+
constructor(i18nService: I18nService, ngZone: NgZone, cdr: ChangeDetectorRef);
|
|
31
32
|
ngOnInit(): void;
|
|
33
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
32
34
|
private loadGoogleMapsScript;
|
|
33
35
|
initAutocomplete(): void;
|
|
34
36
|
onMarkerDragEnd(): void;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|