google-closure-compiler 20260407.0.0 → 20260412.0.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.
@@ -161,14 +161,14 @@ google.maps.Animation = {
161
161
  * Marker bounces until animation is stopped by calling {@link
162
162
  * google.maps.Marker.setAnimation} with <code>null</code>.
163
163
  */
164
- BOUNCE: 0,
164
+ BOUNCE: 1,
165
165
  /**
166
166
  * Marker drops from the top of the map to its final location. Animation will
167
167
  * cease once the marker comes to rest and {@link
168
168
  * google.maps.Marker.getAnimation} will return <code>null</code>. This type
169
169
  * of animation is usually specified during creation of the marker.
170
170
  */
171
- DROP: 0,
171
+ DROP: 2,
172
172
  };
173
173
 
174
174
  /**
@@ -650,113 +650,113 @@ google.maps.ControlPosition = {
650
650
  /**
651
651
  * Equivalent to BOTTOM_CENTER in both LTR and RTL.
652
652
  */
653
- BLOCK_END_INLINE_CENTER: 0,
653
+ BLOCK_END_INLINE_CENTER: 24,
654
654
  /**
655
655
  * Equivalent to BOTTOM_RIGHT in LTR, or BOTTOM_LEFT in RTL.
656
656
  */
657
- BLOCK_END_INLINE_END: 0,
657
+ BLOCK_END_INLINE_END: 25,
658
658
  /**
659
659
  * Equivalent to BOTTOM_LEFT in LTR, or BOTTOM_RIGHT in RTL.
660
660
  */
661
- BLOCK_END_INLINE_START: 0,
661
+ BLOCK_END_INLINE_START: 23,
662
662
  /**
663
663
  * Equivalent to TOP_CENTER in both LTR and RTL.
664
664
  */
665
- BLOCK_START_INLINE_CENTER: 0,
665
+ BLOCK_START_INLINE_CENTER: 15,
666
666
  /**
667
667
  * Equivalent to TOP_RIGHT in LTR, or TOP_LEFT in RTL.
668
668
  */
669
- BLOCK_START_INLINE_END: 0,
669
+ BLOCK_START_INLINE_END: 16,
670
670
  /**
671
671
  * Equivalent to TOP_LEFT in LTR, or TOP_RIGHT in RTL.
672
672
  */
673
- BLOCK_START_INLINE_START: 0,
673
+ BLOCK_START_INLINE_START: 14,
674
674
  /**
675
675
  * Elements are positioned in the center of the bottom row. Consider using
676
676
  * BLOCK_END_INLINE_CENTER instead.
677
677
  */
678
- BOTTOM_CENTER: 0,
678
+ BOTTOM_CENTER: 11,
679
679
  /**
680
680
  * Elements are positioned in the bottom left and flow towards the middle.
681
681
  * Elements are positioned to the right of the Google logo. Consider using
682
682
  * BLOCK_END_INLINE_START instead.
683
683
  */
684
- BOTTOM_LEFT: 0,
684
+ BOTTOM_LEFT: 10,
685
685
  /**
686
686
  * Elements are positioned in the bottom right and flow towards the middle.
687
687
  * Elements are positioned to the left of the copyrights. Consider using
688
688
  * BLOCK_END_INLINE_END instead.
689
689
  */
690
- BOTTOM_RIGHT: 0,
690
+ BOTTOM_RIGHT: 12,
691
691
  /**
692
692
  * Equivalent to RIGHT_CENTER in LTR, or LEFT_CENTER in RTL.
693
693
  */
694
- INLINE_END_BLOCK_CENTER: 0,
694
+ INLINE_END_BLOCK_CENTER: 21,
695
695
  /**
696
696
  * Equivalent to RIGHT_BOTTOM in LTR, or LEFT_BOTTOM in RTL.
697
697
  */
698
- INLINE_END_BLOCK_END: 0,
698
+ INLINE_END_BLOCK_END: 22,
699
699
  /**
700
700
  * Equivalent to RIGHT_TOP in LTR, or LEFT_TOP in RTL.
701
701
  */
702
- INLINE_END_BLOCK_START: 0,
702
+ INLINE_END_BLOCK_START: 20,
703
703
  /**
704
704
  * Equivalent to LEFT_CENTER in LTR, or RIGHT_CENTER in RTL.
705
705
  */
706
- INLINE_START_BLOCK_CENTER: 0,
706
+ INLINE_START_BLOCK_CENTER: 17,
707
707
  /**
708
708
  * Equivalent to LEFT_BOTTOM in LTR, or RIGHT_BOTTOM in RTL.
709
709
  */
710
- INLINE_START_BLOCK_END: 0,
710
+ INLINE_START_BLOCK_END: 19,
711
711
  /**
712
712
  * Equivalent to LEFT_TOP in LTR, or RIGHT_TOP in RTL.
713
713
  */
714
- INLINE_START_BLOCK_START: 0,
714
+ INLINE_START_BLOCK_START: 18,
715
715
  /**
716
716
  * Elements are positioned on the left, above bottom-left elements, and flow
717
717
  * upwards. Consider using INLINE_START_BLOCK_END instead.
718
718
  */
719
- LEFT_BOTTOM: 0,
719
+ LEFT_BOTTOM: 6,
720
720
  /**
721
721
  * Elements are positioned in the center of the left side. Consider using
722
722
  * INLINE_START_BLOCK_CENTER instead.
723
723
  */
724
- LEFT_CENTER: 0,
724
+ LEFT_CENTER: 4,
725
725
  /**
726
726
  * Elements are positioned on the left, below top-left elements, and flow
727
727
  * downwards. Consider using INLINE_START_BLOCK_START instead.
728
728
  */
729
- LEFT_TOP: 0,
729
+ LEFT_TOP: 5,
730
730
  /**
731
731
  * Elements are positioned on the right, above bottom-right elements, and flow
732
732
  * upwards. Consider using INLINE_END_BLOCK_END instead.
733
733
  */
734
- RIGHT_BOTTOM: 0,
734
+ RIGHT_BOTTOM: 9,
735
735
  /**
736
736
  * Elements are positioned in the center of the right side. Consider using
737
737
  * INLINE_END_BLOCK_CENTER instead.
738
738
  */
739
- RIGHT_CENTER: 0,
739
+ RIGHT_CENTER: 8,
740
740
  /**
741
741
  * Elements are positioned on the right, below top-right elements, and flow
742
742
  * downwards. Consider using INLINE_END_BLOCK_START instead.
743
743
  */
744
- RIGHT_TOP: 0,
744
+ RIGHT_TOP: 7,
745
745
  /**
746
746
  * Elements are positioned in the center of the top row. Consider using
747
747
  * BLOCK_START_INLINE_CENTER instead.
748
748
  */
749
- TOP_CENTER: 0,
749
+ TOP_CENTER: 2,
750
750
  /**
751
751
  * Elements are positioned in the top left and flow towards the middle.
752
752
  * Consider using BLOCK_START_INLINE_START instead.
753
753
  */
754
- TOP_LEFT: 0,
754
+ TOP_LEFT: 1,
755
755
  /**
756
756
  * Elements are positioned in the top right and flow towards the middle.
757
757
  * Consider using BLOCK_START_INLINE_END instead.
758
758
  */
759
- TOP_RIGHT: 0,
759
+ TOP_RIGHT: 3,
760
760
  };
761
761
 
762
762
  /**
@@ -3398,6 +3398,7 @@ google.maps.FeatureType = {
3398
3398
  */
3399
3399
  COUNTRY: 'COUNTRY',
3400
3400
  /**
3401
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
3401
3402
  * Indicates a third-party dataset.
3402
3403
  */
3403
3404
  DATASET: 'DATASET',
@@ -6910,6 +6911,12 @@ google.maps.Maps3DLibrary.prototype.SteadyChangeEvent;
6910
6911
  */
6911
6912
  google.maps.MapsAppCheckTokenResult = function() {};
6912
6913
 
6914
+ /**
6915
+ * The Firebase App Check token.
6916
+ * @type {string}
6917
+ */
6918
+ google.maps.MapsAppCheckTokenResult.prototype.token;
6919
+
6913
6920
  /**
6914
6921
  * An event listener, created by <code><a
6915
6922
  * href="#event">google.maps.event.addListener</a>()</code> and friends.
@@ -10480,11 +10487,11 @@ google.maps.StrokePosition = {
10480
10487
  /**
10481
10488
  * The stroke lies inside the polygon.
10482
10489
  */
10483
- INSIDE: 0,
10490
+ INSIDE: 1,
10484
10491
  /**
10485
10492
  * The stroke lies outside the polygon.
10486
10493
  */
10487
- OUTSIDE: 0,
10494
+ OUTSIDE: 2,
10488
10495
  };
10489
10496
 
10490
10497
  /**
@@ -10692,11 +10699,11 @@ google.maps.SymbolPath = {
10692
10699
  /**
10693
10700
  * A backward-pointing closed arrow.
10694
10701
  */
10695
- BACKWARD_CLOSED_ARROW: 0,
10702
+ BACKWARD_CLOSED_ARROW: 3,
10696
10703
  /**
10697
10704
  * A backward-pointing open arrow.
10698
10705
  */
10699
- BACKWARD_OPEN_ARROW: 0,
10706
+ BACKWARD_OPEN_ARROW: 4,
10700
10707
  /**
10701
10708
  * A circle.
10702
10709
  */
@@ -10704,11 +10711,11 @@ google.maps.SymbolPath = {
10704
10711
  /**
10705
10712
  * A forward-pointing closed arrow.
10706
10713
  */
10707
- FORWARD_CLOSED_ARROW: 0,
10714
+ FORWARD_CLOSED_ARROW: 1,
10708
10715
  /**
10709
10716
  * A forward-pointing open arrow.
10710
10717
  */
10711
- FORWARD_OPEN_ARROW: 0,
10718
+ FORWARD_OPEN_ARROW: 2,
10712
10719
  };
10713
10720
 
10714
10721
  /**
@@ -11033,6 +11040,7 @@ google.maps.TransitMode = {
11033
11040
  */
11034
11041
  BUS: 'BUS',
11035
11042
  /**
11043
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
11036
11044
  * Specifies light rail as a preferred mode of transit.
11037
11045
  */
11038
11046
  LIGHT_RAIL: 'LIGHT_RAIL',
@@ -11193,6 +11201,7 @@ google.maps.TravelMode = {
11193
11201
  */
11194
11202
  TRANSIT: 'TRANSIT',
11195
11203
  /**
11204
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
11196
11205
  * Specifies a two-wheeler directions request.
11197
11206
  */
11198
11207
  TWO_WHEELER: 'TWO_WHEELER',
@@ -11216,7 +11225,7 @@ google.maps.UnitSystem = {
11216
11225
  * Specifies that distances in the <code>DirectionsResult</code> should be
11217
11226
  * expressed in imperial units.
11218
11227
  */
11219
- IMPERIAL: 0,
11228
+ IMPERIAL: 1,
11220
11229
  /**
11221
11230
  * Specifies that distances in the <code>DirectionsResult</code> should be
11222
11231
  * expressed in metric units.
@@ -17274,6 +17283,7 @@ google.maps.maps3d.MapMode = {
17274
17283
  */
17275
17284
  HYBRID: 'HYBRID',
17276
17285
  /**
17286
+ * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
17277
17287
  * This map mode displays a normal street map.
17278
17288
  */
17279
17289
  ROADMAP: 'ROADMAP',
@@ -18539,9 +18549,12 @@ google.maps.marker.AdvancedMarkerElementOptions.prototype.title;
18539
18549
  * <code>AdvancedMarkerElement</code>s with lower values. By default,
18540
18550
  * <code>AdvancedMarkerElement</code>s are displayed according to their vertical
18541
18551
  * position on screen, with lower <code>AdvancedMarkerElement</code>s appearing
18542
- * in front of <code>AdvancedMarkerElement</code>s farther up the screen. Note
18543
- * that <code>zIndex</code> is also used to help determine relative priority
18544
- * between {@link
18552
+ * in front of <code>AdvancedMarkerElement</code>s farther up the screen. Mixing
18553
+ * markers with an explicit <code>zIndex</code> and markers without one can lead
18554
+ * to unexpected visual results. To ensure predictable behavior, it is
18555
+ * recommended to either set the <code>zIndex</code> for all markers or leave it
18556
+ * unset. Note that <code>zIndex</code> is also used to help determine relative
18557
+ * priority between {@link
18545
18558
  * google.maps.CollisionBehavior.OPTIONAL_AND_HIDES_LOWER_PRIORITY} Advanced
18546
18559
  * Markers. A higher <code>zIndex</code> value indicates higher priority.
18547
18560
  * @type {number|null|undefined}
@@ -161,14 +161,14 @@ google.maps.Animation = {
161
161
  * Marker bounces until animation is stopped by calling {@link
162
162
  * google.maps.Marker.setAnimation} with <code>null</code>.
163
163
  */
164
- BOUNCE: 0,
164
+ BOUNCE: 1,
165
165
  /**
166
166
  * Marker drops from the top of the map to its final location. Animation will
167
167
  * cease once the marker comes to rest and {@link
168
168
  * google.maps.Marker.getAnimation} will return <code>null</code>. This type
169
169
  * of animation is usually specified during creation of the marker.
170
170
  */
171
- DROP: 0,
171
+ DROP: 2,
172
172
  };
173
173
 
174
174
  /**
@@ -650,113 +650,113 @@ google.maps.ControlPosition = {
650
650
  /**
651
651
  * Equivalent to BOTTOM_CENTER in both LTR and RTL.
652
652
  */
653
- BLOCK_END_INLINE_CENTER: 0,
653
+ BLOCK_END_INLINE_CENTER: 24,
654
654
  /**
655
655
  * Equivalent to BOTTOM_RIGHT in LTR, or BOTTOM_LEFT in RTL.
656
656
  */
657
- BLOCK_END_INLINE_END: 0,
657
+ BLOCK_END_INLINE_END: 25,
658
658
  /**
659
659
  * Equivalent to BOTTOM_LEFT in LTR, or BOTTOM_RIGHT in RTL.
660
660
  */
661
- BLOCK_END_INLINE_START: 0,
661
+ BLOCK_END_INLINE_START: 23,
662
662
  /**
663
663
  * Equivalent to TOP_CENTER in both LTR and RTL.
664
664
  */
665
- BLOCK_START_INLINE_CENTER: 0,
665
+ BLOCK_START_INLINE_CENTER: 15,
666
666
  /**
667
667
  * Equivalent to TOP_RIGHT in LTR, or TOP_LEFT in RTL.
668
668
  */
669
- BLOCK_START_INLINE_END: 0,
669
+ BLOCK_START_INLINE_END: 16,
670
670
  /**
671
671
  * Equivalent to TOP_LEFT in LTR, or TOP_RIGHT in RTL.
672
672
  */
673
- BLOCK_START_INLINE_START: 0,
673
+ BLOCK_START_INLINE_START: 14,
674
674
  /**
675
675
  * Elements are positioned in the center of the bottom row. Consider using
676
676
  * BLOCK_END_INLINE_CENTER instead.
677
677
  */
678
- BOTTOM_CENTER: 0,
678
+ BOTTOM_CENTER: 11,
679
679
  /**
680
680
  * Elements are positioned in the bottom left and flow towards the middle.
681
681
  * Elements are positioned to the right of the Google logo. Consider using
682
682
  * BLOCK_END_INLINE_START instead.
683
683
  */
684
- BOTTOM_LEFT: 0,
684
+ BOTTOM_LEFT: 10,
685
685
  /**
686
686
  * Elements are positioned in the bottom right and flow towards the middle.
687
687
  * Elements are positioned to the left of the copyrights. Consider using
688
688
  * BLOCK_END_INLINE_END instead.
689
689
  */
690
- BOTTOM_RIGHT: 0,
690
+ BOTTOM_RIGHT: 12,
691
691
  /**
692
692
  * Equivalent to RIGHT_CENTER in LTR, or LEFT_CENTER in RTL.
693
693
  */
694
- INLINE_END_BLOCK_CENTER: 0,
694
+ INLINE_END_BLOCK_CENTER: 21,
695
695
  /**
696
696
  * Equivalent to RIGHT_BOTTOM in LTR, or LEFT_BOTTOM in RTL.
697
697
  */
698
- INLINE_END_BLOCK_END: 0,
698
+ INLINE_END_BLOCK_END: 22,
699
699
  /**
700
700
  * Equivalent to RIGHT_TOP in LTR, or LEFT_TOP in RTL.
701
701
  */
702
- INLINE_END_BLOCK_START: 0,
702
+ INLINE_END_BLOCK_START: 20,
703
703
  /**
704
704
  * Equivalent to LEFT_CENTER in LTR, or RIGHT_CENTER in RTL.
705
705
  */
706
- INLINE_START_BLOCK_CENTER: 0,
706
+ INLINE_START_BLOCK_CENTER: 17,
707
707
  /**
708
708
  * Equivalent to LEFT_BOTTOM in LTR, or RIGHT_BOTTOM in RTL.
709
709
  */
710
- INLINE_START_BLOCK_END: 0,
710
+ INLINE_START_BLOCK_END: 19,
711
711
  /**
712
712
  * Equivalent to LEFT_TOP in LTR, or RIGHT_TOP in RTL.
713
713
  */
714
- INLINE_START_BLOCK_START: 0,
714
+ INLINE_START_BLOCK_START: 18,
715
715
  /**
716
716
  * Elements are positioned on the left, above bottom-left elements, and flow
717
717
  * upwards. Consider using INLINE_START_BLOCK_END instead.
718
718
  */
719
- LEFT_BOTTOM: 0,
719
+ LEFT_BOTTOM: 6,
720
720
  /**
721
721
  * Elements are positioned in the center of the left side. Consider using
722
722
  * INLINE_START_BLOCK_CENTER instead.
723
723
  */
724
- LEFT_CENTER: 0,
724
+ LEFT_CENTER: 4,
725
725
  /**
726
726
  * Elements are positioned on the left, below top-left elements, and flow
727
727
  * downwards. Consider using INLINE_START_BLOCK_START instead.
728
728
  */
729
- LEFT_TOP: 0,
729
+ LEFT_TOP: 5,
730
730
  /**
731
731
  * Elements are positioned on the right, above bottom-right elements, and flow
732
732
  * upwards. Consider using INLINE_END_BLOCK_END instead.
733
733
  */
734
- RIGHT_BOTTOM: 0,
734
+ RIGHT_BOTTOM: 9,
735
735
  /**
736
736
  * Elements are positioned in the center of the right side. Consider using
737
737
  * INLINE_END_BLOCK_CENTER instead.
738
738
  */
739
- RIGHT_CENTER: 0,
739
+ RIGHT_CENTER: 8,
740
740
  /**
741
741
  * Elements are positioned on the right, below top-right elements, and flow
742
742
  * downwards. Consider using INLINE_END_BLOCK_START instead.
743
743
  */
744
- RIGHT_TOP: 0,
744
+ RIGHT_TOP: 7,
745
745
  /**
746
746
  * Elements are positioned in the center of the top row. Consider using
747
747
  * BLOCK_START_INLINE_CENTER instead.
748
748
  */
749
- TOP_CENTER: 0,
749
+ TOP_CENTER: 2,
750
750
  /**
751
751
  * Elements are positioned in the top left and flow towards the middle.
752
752
  * Consider using BLOCK_START_INLINE_START instead.
753
753
  */
754
- TOP_LEFT: 0,
754
+ TOP_LEFT: 1,
755
755
  /**
756
756
  * Elements are positioned in the top right and flow towards the middle.
757
757
  * Consider using BLOCK_START_INLINE_END instead.
758
758
  */
759
- TOP_RIGHT: 0,
759
+ TOP_RIGHT: 3,
760
760
  };
761
761
 
762
762
  /**
@@ -3398,6 +3398,7 @@ google.maps.FeatureType = {
3398
3398
  */
3399
3399
  COUNTRY: 'COUNTRY',
3400
3400
  /**
3401
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
3401
3402
  * Indicates a third-party dataset.
3402
3403
  */
3403
3404
  DATASET: 'DATASET',
@@ -6910,6 +6911,12 @@ google.maps.Maps3DLibrary.prototype.SteadyChangeEvent;
6910
6911
  */
6911
6912
  google.maps.MapsAppCheckTokenResult = function() {};
6912
6913
 
6914
+ /**
6915
+ * The Firebase App Check token.
6916
+ * @type {string}
6917
+ */
6918
+ google.maps.MapsAppCheckTokenResult.prototype.token;
6919
+
6913
6920
  /**
6914
6921
  * An event listener, created by <code><a
6915
6922
  * href="#event">google.maps.event.addListener</a>()</code> and friends.
@@ -10480,11 +10487,11 @@ google.maps.StrokePosition = {
10480
10487
  /**
10481
10488
  * The stroke lies inside the polygon.
10482
10489
  */
10483
- INSIDE: 0,
10490
+ INSIDE: 1,
10484
10491
  /**
10485
10492
  * The stroke lies outside the polygon.
10486
10493
  */
10487
- OUTSIDE: 0,
10494
+ OUTSIDE: 2,
10488
10495
  };
10489
10496
 
10490
10497
  /**
@@ -10692,11 +10699,11 @@ google.maps.SymbolPath = {
10692
10699
  /**
10693
10700
  * A backward-pointing closed arrow.
10694
10701
  */
10695
- BACKWARD_CLOSED_ARROW: 0,
10702
+ BACKWARD_CLOSED_ARROW: 3,
10696
10703
  /**
10697
10704
  * A backward-pointing open arrow.
10698
10705
  */
10699
- BACKWARD_OPEN_ARROW: 0,
10706
+ BACKWARD_OPEN_ARROW: 4,
10700
10707
  /**
10701
10708
  * A circle.
10702
10709
  */
@@ -10704,11 +10711,11 @@ google.maps.SymbolPath = {
10704
10711
  /**
10705
10712
  * A forward-pointing closed arrow.
10706
10713
  */
10707
- FORWARD_CLOSED_ARROW: 0,
10714
+ FORWARD_CLOSED_ARROW: 1,
10708
10715
  /**
10709
10716
  * A forward-pointing open arrow.
10710
10717
  */
10711
- FORWARD_OPEN_ARROW: 0,
10718
+ FORWARD_OPEN_ARROW: 2,
10712
10719
  };
10713
10720
 
10714
10721
  /**
@@ -11033,6 +11040,7 @@ google.maps.TransitMode = {
11033
11040
  */
11034
11041
  BUS: 'BUS',
11035
11042
  /**
11043
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
11036
11044
  * Specifies light rail as a preferred mode of transit.
11037
11045
  */
11038
11046
  LIGHT_RAIL: 'LIGHT_RAIL',
@@ -11193,6 +11201,7 @@ google.maps.TravelMode = {
11193
11201
  */
11194
11202
  TRANSIT: 'TRANSIT',
11195
11203
  /**
11204
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
11196
11205
  * Specifies a two-wheeler directions request.
11197
11206
  */
11198
11207
  TWO_WHEELER: 'TWO_WHEELER',
@@ -11216,7 +11225,7 @@ google.maps.UnitSystem = {
11216
11225
  * Specifies that distances in the <code>DirectionsResult</code> should be
11217
11226
  * expressed in imperial units.
11218
11227
  */
11219
- IMPERIAL: 0,
11228
+ IMPERIAL: 1,
11220
11229
  /**
11221
11230
  * Specifies that distances in the <code>DirectionsResult</code> should be
11222
11231
  * expressed in metric units.
@@ -17274,6 +17283,7 @@ google.maps.maps3d.MapMode = {
17274
17283
  */
17275
17284
  HYBRID: 'HYBRID',
17276
17285
  /**
17286
+ * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
17277
17287
  * This map mode displays a normal street map.
17278
17288
  */
17279
17289
  ROADMAP: 'ROADMAP',
@@ -18539,9 +18549,12 @@ google.maps.marker.AdvancedMarkerElementOptions.prototype.title;
18539
18549
  * <code>AdvancedMarkerElement</code>s with lower values. By default,
18540
18550
  * <code>AdvancedMarkerElement</code>s are displayed according to their vertical
18541
18551
  * position on screen, with lower <code>AdvancedMarkerElement</code>s appearing
18542
- * in front of <code>AdvancedMarkerElement</code>s farther up the screen. Note
18543
- * that <code>zIndex</code> is also used to help determine relative priority
18544
- * between {@link
18552
+ * in front of <code>AdvancedMarkerElement</code>s farther up the screen. Mixing
18553
+ * markers with an explicit <code>zIndex</code> and markers without one can lead
18554
+ * to unexpected visual results. To ensure predictable behavior, it is
18555
+ * recommended to either set the <code>zIndex</code> for all markers or leave it
18556
+ * unset. Note that <code>zIndex</code> is also used to help determine relative
18557
+ * priority between {@link
18545
18558
  * google.maps.CollisionBehavior.OPTIONAL_AND_HIDES_LOWER_PRIORITY} Advanced
18546
18559
  * Markers. A higher <code>zIndex</code> value indicates higher priority.
18547
18560
  * @type {number|null|undefined}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "google-closure-compiler",
3
- "version": "20260407.0.0",
3
+ "version": "20260412.0.0",
4
4
  "description": "Check, compile, optimize and compress Javascript with Closure-Compiler",
5
5
  "type": "module",
6
6
  "repository": {
@@ -41,16 +41,16 @@
41
41
  "homepage": "https://developers.google.com/closure/compiler/",
42
42
  "dependencies": {
43
43
  "chalk": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 <5.6.1 || ^5.6.2 >5.6.1",
44
- "google-closure-compiler-java": "^20260407.0.0",
44
+ "google-closure-compiler-java": "^20260412.0.0",
45
45
  "minimist": "^1.0.0",
46
46
  "vinyl": "^3.0.1",
47
47
  "vinyl-sourcemaps-apply": "^0.2.0"
48
48
  },
49
49
  "optionalDependencies": {
50
- "google-closure-compiler-linux": "^20260407.0.0",
51
- "google-closure-compiler-linux-arm64": "^20260407.0.0",
52
- "google-closure-compiler-macos": "^20260407.0.0",
53
- "google-closure-compiler-windows": "^20260407.0.0"
50
+ "google-closure-compiler-linux": "^20260412.0.0",
51
+ "google-closure-compiler-linux-arm64": "^20260412.0.0",
52
+ "google-closure-compiler-macos": "^20260412.0.0",
53
+ "google-closure-compiler-windows": "^20260412.0.0"
54
54
  },
55
55
  "devDependencies": {
56
56
  "gulp": "^5.0.1",