@angular/google-maps 21.2.1 → 21.3.0-next.0

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": "@angular/google-maps",
3
- "version": "21.2.1",
3
+ "version": "21.3.0-next.0",
4
4
  "description": "Angular Google Maps",
5
5
  "repository": {
6
6
  "type": "git",
@@ -21,8 +21,8 @@
21
21
  "tslib": "^2.3.0"
22
22
  },
23
23
  "peerDependencies": {
24
- "@angular/core": "^21.0.0 || ^22.0.0",
25
- "@angular/common": "^21.0.0 || ^22.0.0",
24
+ "@angular/core": "^21.0.0-0 || ^21.1.0-0 || ^21.2.0-0 || ^21.3.0-0 || ^22.0.0-0",
25
+ "@angular/common": "^21.0.0-0 || ^21.1.0-0 || ^21.2.0-0 || ^21.3.0-0 || ^22.0.0-0",
26
26
  "rxjs": "^6.5.3 || ^7.4.0"
27
27
  },
28
28
  "sideEffects": false,
@@ -140,7 +140,7 @@ declare class GoogleMap implements OnChanges, OnInit, OnDestroy {
140
140
  */
141
141
  readonly zoomChanged: Observable<void>;
142
142
  constructor(...args: unknown[]);
143
- ngOnChanges(changes: SimpleChanges): void;
143
+ ngOnChanges(changes: SimpleChanges<this>): void;
144
144
  ngOnInit(): void;
145
145
  private _initialize;
146
146
  ngOnDestroy(): void;
@@ -443,7 +443,7 @@ declare class MapDirectionsRenderer implements OnInit, OnChanges, OnDestroy {
443
443
  constructor(...args: unknown[]);
444
444
  ngOnInit(): void;
445
445
  private _initialize;
446
- ngOnChanges(changes: SimpleChanges): void;
446
+ ngOnChanges(changes: SimpleChanges<this>): void;
447
447
  ngOnDestroy(): void;
448
448
  /**
449
449
  * See developers.google.com/maps/documentation/javascript/reference/directions
@@ -570,7 +570,7 @@ declare class MapHeatmapLayer implements OnInit, OnChanges, OnDestroy {
570
570
  constructor(...args: unknown[]);
571
571
  ngOnInit(): void;
572
572
  private _initialize;
573
- ngOnChanges(changes: SimpleChanges): void;
573
+ ngOnChanges(changes: SimpleChanges<this>): void;
574
574
  ngOnDestroy(): void;
575
575
  /**
576
576
  * Gets the data that is currently shown on the heatmap.
@@ -935,7 +935,7 @@ declare class MapMarker implements OnInit, OnChanges, OnDestroy, MapAnchorPoint,
935
935
  constructor(...args: unknown[]);
936
936
  ngOnInit(): void;
937
937
  private _initialize;
938
- ngOnChanges(changes: SimpleChanges): void;
938
+ ngOnChanges(changes: SimpleChanges<this>): void;
939
939
  ngOnDestroy(): void;
940
940
  /**
941
941
  * See
@@ -1107,7 +1107,7 @@ declare class MapAdvancedMarker implements OnInit, OnChanges, OnDestroy, MapAnch
1107
1107
  constructor(...args: unknown[]);
1108
1108
  ngOnInit(): void;
1109
1109
  private _initialize;
1110
- ngOnChanges(changes: SimpleChanges): void;
1110
+ ngOnChanges(changes: SimpleChanges<this>): void;
1111
1111
  ngOnDestroy(): void;
1112
1112
  getAnchor(): google.maps.marker.AdvancedMarkerElement;
1113
1113
  /** Returns a promise that resolves when the marker has been initialized. */
@@ -1361,7 +1361,7 @@ declare class DeprecatedMapMarkerClusterer implements OnInit, AfterContentInit,
1361
1361
  constructor(...args: unknown[]);
1362
1362
  ngOnInit(): void;
1363
1363
  ngAfterContentInit(): void;
1364
- ngOnChanges(changes: SimpleChanges): void;
1364
+ ngOnChanges(changes: SimpleChanges<this>): void;
1365
1365
  ngOnDestroy(): void;
1366
1366
  fitMapToMarkers(padding: number | google.maps.Padding): void;
1367
1367
  getAverageCenter(): boolean;
@@ -1916,7 +1916,7 @@ declare class MapMarkerClusterer implements OnInit, OnChanges, OnDestroy {
1916
1916
  /** Underlying MarkerClusterer object used to interact with Google Maps. */
1917
1917
  markerClusterer?: MarkerClusterer;
1918
1918
  ngOnInit(): Promise<void>;
1919
- ngOnChanges(changes: SimpleChanges): Promise<void>;
1919
+ ngOnChanges(changes: SimpleChanges<this>): Promise<void>;
1920
1920
  ngOnDestroy(): void;
1921
1921
  private _createCluster;
1922
1922
  private _watchForMarkerChanges;