google-closure-compiler 20260804.0.0 → 20260809.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.
@@ -16909,6 +16909,58 @@ google.maps.maps3d.GestureHandling = {
16909
16909
  GREEDY: 'GREEDY',
16910
16910
  };
16911
16911
 
16912
+ /**
16913
+ * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
16914
+ *
16915
+ * Represents a text label associated with a 3D marker on a map, allowing
16916
+ * independent configuration of properties such as collision behavior.
16917
+ *
16918
+ * Access by calling `const {Label3DElement} = await
16919
+ * google.maps.importLibrary("maps3d");`. See
16920
+ * https://developers.google.com/maps/documentation/javascript/libraries.
16921
+ * @param {!google.maps.maps3d.Label3DElementOptions=} options
16922
+ * @implements {google.maps.maps3d.Label3DElementOptions}
16923
+ * @extends {HTMLElement}
16924
+ * @constructor
16925
+ */
16926
+ google.maps.maps3d.Label3DElement = function(options) {};
16927
+
16928
+ /**
16929
+ * An enumeration specifying how the label of a Marker3DElement should behave
16930
+ * when it collides with another element.
16931
+ * @default {@link google.maps.CollisionBehavior.REQUIRED}
16932
+ * @type {!google.maps.CollisionBehavior|null|undefined}
16933
+ */
16934
+ google.maps.maps3d.Label3DElement.prototype.collisionBehavior;
16935
+
16936
+ /**
16937
+ * The Marker3DElement that this label is for.
16938
+ * @type {string|!HTMLElement|null|undefined}
16939
+ */
16940
+ google.maps.maps3d.Label3DElement.prototype.for;
16941
+
16942
+ /**
16943
+ * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
16944
+ *
16945
+ * Label3DElementOptions object used to define the properties that can be set on
16946
+ * a Label3DElement.
16947
+ * @record
16948
+ */
16949
+ google.maps.maps3d.Label3DElementOptions = function() {};
16950
+
16951
+ /**
16952
+ * An enumeration specifying how the label of a Marker3DElement should behave
16953
+ * when it collides with another element.
16954
+ * @type {!google.maps.CollisionBehavior|null|undefined}
16955
+ */
16956
+ google.maps.maps3d.Label3DElementOptions.prototype.collisionBehavior;
16957
+
16958
+ /**
16959
+ * The Marker3DElement that this label is for.
16960
+ * @type {string|!HTMLElement|null|undefined}
16961
+ */
16962
+ google.maps.maps3d.Label3DElementOptions.prototype.for;
16963
+
16912
16964
  /**
16913
16965
  * This event is created from clicking a Map3DElement.
16914
16966
  *
@@ -27331,6 +27383,15 @@ google.maps.routes.Route3DElement.prototype.routes;
27331
27383
  */
27332
27384
  google.maps.routes.Route3DElement.prototype.routingPreference;
27333
27385
 
27386
+ /**
27387
+ * Whether to disable traffic-aware polylines. Traffic aware polylines are only
27388
+ * available when routingPreference is set to TRAFFIC_AWARE or
27389
+ * TRAFFIC_AWARE_OPTIMAL.
27390
+ * @default <code>false</code>
27391
+ * @type {boolean|null|undefined}
27392
+ */
27393
+ google.maps.routes.Route3DElement.prototype.trafficPolylinesDisabled;
27394
+
27334
27395
  /**
27335
27396
  * If provided, the polyline is based on the specified travel mode.
27336
27397
  * @type {!google.maps.TravelMode|null|undefined}
@@ -27380,6 +27441,14 @@ google.maps.routes.Route3DElementOptions.prototype.origin;
27380
27441
  */
27381
27442
  google.maps.routes.Route3DElementOptions.prototype.routingPreference;
27382
27443
 
27444
+ /**
27445
+ * Whether to disable traffic-aware polylines. Traffic aware polylines are only
27446
+ * available when routingPreference is set to TRAFFIC_AWARE or
27447
+ * TRAFFIC_AWARE_OPTIMAL.
27448
+ * @type {boolean|null|undefined}
27449
+ */
27450
+ google.maps.routes.Route3DElementOptions.prototype.trafficPolylinesDisabled;
27451
+
27383
27452
  /**
27384
27453
  * See {@link google.maps.routes.Route3DElement.travelMode}.
27385
27454
  * @type {!google.maps.TravelMode|null|undefined}
@@ -16909,6 +16909,58 @@ google.maps.maps3d.GestureHandling = {
16909
16909
  GREEDY: 'GREEDY',
16910
16910
  };
16911
16911
 
16912
+ /**
16913
+ * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
16914
+ *
16915
+ * Represents a text label associated with a 3D marker on a map, allowing
16916
+ * independent configuration of properties such as collision behavior.
16917
+ *
16918
+ * Access by calling `const {Label3DElement} = await
16919
+ * google.maps.importLibrary("maps3d");`. See
16920
+ * https://developers.google.com/maps/documentation/javascript/libraries.
16921
+ * @param {!google.maps.maps3d.Label3DElementOptions=} options
16922
+ * @implements {google.maps.maps3d.Label3DElementOptions}
16923
+ * @extends {HTMLElement}
16924
+ * @constructor
16925
+ */
16926
+ google.maps.maps3d.Label3DElement = function(options) {};
16927
+
16928
+ /**
16929
+ * An enumeration specifying how the label of a Marker3DElement should behave
16930
+ * when it collides with another element.
16931
+ * @default {@link google.maps.CollisionBehavior.REQUIRED}
16932
+ * @type {!google.maps.CollisionBehavior|null|undefined}
16933
+ */
16934
+ google.maps.maps3d.Label3DElement.prototype.collisionBehavior;
16935
+
16936
+ /**
16937
+ * The Marker3DElement that this label is for.
16938
+ * @type {string|!HTMLElement|null|undefined}
16939
+ */
16940
+ google.maps.maps3d.Label3DElement.prototype.for;
16941
+
16942
+ /**
16943
+ * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
16944
+ *
16945
+ * Label3DElementOptions object used to define the properties that can be set on
16946
+ * a Label3DElement.
16947
+ * @record
16948
+ */
16949
+ google.maps.maps3d.Label3DElementOptions = function() {};
16950
+
16951
+ /**
16952
+ * An enumeration specifying how the label of a Marker3DElement should behave
16953
+ * when it collides with another element.
16954
+ * @type {!google.maps.CollisionBehavior|null|undefined}
16955
+ */
16956
+ google.maps.maps3d.Label3DElementOptions.prototype.collisionBehavior;
16957
+
16958
+ /**
16959
+ * The Marker3DElement that this label is for.
16960
+ * @type {string|!HTMLElement|null|undefined}
16961
+ */
16962
+ google.maps.maps3d.Label3DElementOptions.prototype.for;
16963
+
16912
16964
  /**
16913
16965
  * This event is created from clicking a Map3DElement.
16914
16966
  *
@@ -27331,6 +27383,15 @@ google.maps.routes.Route3DElement.prototype.routes;
27331
27383
  */
27332
27384
  google.maps.routes.Route3DElement.prototype.routingPreference;
27333
27385
 
27386
+ /**
27387
+ * Whether to disable traffic-aware polylines. Traffic aware polylines are only
27388
+ * available when routingPreference is set to TRAFFIC_AWARE or
27389
+ * TRAFFIC_AWARE_OPTIMAL.
27390
+ * @default <code>false</code>
27391
+ * @type {boolean|null|undefined}
27392
+ */
27393
+ google.maps.routes.Route3DElement.prototype.trafficPolylinesDisabled;
27394
+
27334
27395
  /**
27335
27396
  * If provided, the polyline is based on the specified travel mode.
27336
27397
  * @type {!google.maps.TravelMode|null|undefined}
@@ -27380,6 +27441,14 @@ google.maps.routes.Route3DElementOptions.prototype.origin;
27380
27441
  */
27381
27442
  google.maps.routes.Route3DElementOptions.prototype.routingPreference;
27382
27443
 
27444
+ /**
27445
+ * Whether to disable traffic-aware polylines. Traffic aware polylines are only
27446
+ * available when routingPreference is set to TRAFFIC_AWARE or
27447
+ * TRAFFIC_AWARE_OPTIMAL.
27448
+ * @type {boolean|null|undefined}
27449
+ */
27450
+ google.maps.routes.Route3DElementOptions.prototype.trafficPolylinesDisabled;
27451
+
27383
27452
  /**
27384
27453
  * See {@link google.maps.routes.Route3DElement.travelMode}.
27385
27454
  * @type {!google.maps.TravelMode|null|undefined}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "google-closure-compiler",
3
- "version": "20260804.0.0",
3
+ "version": "20260809.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": "^20260804.0.0",
44
+ "google-closure-compiler-java": "^20260809.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": "^20260804.0.0",
51
- "google-closure-compiler-linux-arm64": "^20260804.0.0",
52
- "google-closure-compiler-macos": "^20260804.0.0",
53
- "google-closure-compiler-windows": "^20260804.0.0"
50
+ "google-closure-compiler-linux": "^20260809.0.0",
51
+ "google-closure-compiler-linux-arm64": "^20260809.0.0",
52
+ "google-closure-compiler-macos": "^20260809.0.0",
53
+ "google-closure-compiler-windows": "^20260809.0.0"
54
54
  },
55
55
  "devDependencies": {
56
56
  "gulp": "^5.0.1",