google-closure-compiler 20260629.0.0 → 20260712.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.
|
@@ -12096,6 +12096,13 @@ google.maps.addressValidation.AddressValidationRequest = function() {};
|
|
|
12096
12096
|
*/
|
|
12097
12097
|
google.maps.addressValidation.AddressValidationRequest.prototype.address;
|
|
12098
12098
|
|
|
12099
|
+
/**
|
|
12100
|
+
* Identifiers used to attribute calls to specific packages or OSS libraries.
|
|
12101
|
+
* @type {!Iterable<string>|null|undefined}
|
|
12102
|
+
*/
|
|
12103
|
+
google.maps.addressValidation.AddressValidationRequest.prototype
|
|
12104
|
+
.internalUsageAttributionIds;
|
|
12105
|
+
|
|
12099
12106
|
/**
|
|
12100
12107
|
* If using a PlaceAutocompleteElement, include it here to link the
|
|
12101
12108
|
* AddressValidation API calls with the autocomplete session token.
|
|
@@ -27181,8 +27188,9 @@ google.maps.routes.Route.prototype.createPolylines = function(options) {};
|
|
|
27181
27188
|
* Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
|
|
27182
27189
|
* Creates a popover for the route based on the data available for the route,
|
|
27183
27190
|
* configured in a way suitable for annotating a route on a map. Currently
|
|
27184
|
-
* uses {@link google.maps.routes.Route.localizedValues}
|
|
27185
|
-
* google.maps.routes.Route.path},
|
|
27191
|
+
* uses {@link google.maps.routes.Route.localizedValues}, {@link
|
|
27192
|
+
* google.maps.routes.Route.path}, and {@link google.maps.routes.Route.legs}, if
|
|
27193
|
+
* available.
|
|
27186
27194
|
* @return {!Promise<!google.maps.maps3d.PopoverElement>}
|
|
27187
27195
|
*/
|
|
27188
27196
|
google.maps.routes.Route.prototype.createPopover = function() {};
|
|
@@ -12096,6 +12096,13 @@ google.maps.addressValidation.AddressValidationRequest = function() {};
|
|
|
12096
12096
|
*/
|
|
12097
12097
|
google.maps.addressValidation.AddressValidationRequest.prototype.address;
|
|
12098
12098
|
|
|
12099
|
+
/**
|
|
12100
|
+
* Identifiers used to attribute calls to specific packages or OSS libraries.
|
|
12101
|
+
* @type {!Iterable<string>|null|undefined}
|
|
12102
|
+
*/
|
|
12103
|
+
google.maps.addressValidation.AddressValidationRequest.prototype
|
|
12104
|
+
.internalUsageAttributionIds;
|
|
12105
|
+
|
|
12099
12106
|
/**
|
|
12100
12107
|
* If using a PlaceAutocompleteElement, include it here to link the
|
|
12101
12108
|
* AddressValidation API calls with the autocomplete session token.
|
|
@@ -27181,8 +27188,9 @@ google.maps.routes.Route.prototype.createPolylines = function(options) {};
|
|
|
27181
27188
|
* Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
|
|
27182
27189
|
* Creates a popover for the route based on the data available for the route,
|
|
27183
27190
|
* configured in a way suitable for annotating a route on a map. Currently
|
|
27184
|
-
* uses {@link google.maps.routes.Route.localizedValues}
|
|
27185
|
-
* google.maps.routes.Route.path},
|
|
27191
|
+
* uses {@link google.maps.routes.Route.localizedValues}, {@link
|
|
27192
|
+
* google.maps.routes.Route.path}, and {@link google.maps.routes.Route.legs}, if
|
|
27193
|
+
* available.
|
|
27186
27194
|
* @return {!Promise<!google.maps.maps3d.PopoverElement>}
|
|
27187
27195
|
*/
|
|
27188
27196
|
google.maps.routes.Route.prototype.createPopover = function() {};
|
|
@@ -3608,6 +3608,7 @@ Highlight.prototype.forEach = function(callbackfn, thisArg) {};
|
|
|
3608
3608
|
|
|
3609
3609
|
/**
|
|
3610
3610
|
* @interface
|
|
3611
|
+
* @see https://www.w3.org/TR/css-highlight-api-1/#registration
|
|
3611
3612
|
*/
|
|
3612
3613
|
function HighlightRegistry () {}
|
|
3613
3614
|
|
|
@@ -3618,6 +3619,39 @@ function HighlightRegistry () {}
|
|
|
3618
3619
|
*/
|
|
3619
3620
|
HighlightRegistry.prototype.forEach = function(callbackfn, thisArg) {};
|
|
3620
3621
|
|
|
3622
|
+
/**
|
|
3623
|
+
* @param {string} key
|
|
3624
|
+
* @param {!Highlight} value
|
|
3625
|
+
* @return {!HighlightRegistry}
|
|
3626
|
+
*/
|
|
3627
|
+
HighlightRegistry.prototype.set = function(key, value) {};
|
|
3628
|
+
|
|
3629
|
+
/**
|
|
3630
|
+
* @param {string} key
|
|
3631
|
+
* @return {boolean}
|
|
3632
|
+
*/
|
|
3633
|
+
HighlightRegistry.prototype.delete = function(key) {};
|
|
3634
|
+
|
|
3635
|
+
/**
|
|
3636
|
+
* @return {void}
|
|
3637
|
+
*/
|
|
3638
|
+
HighlightRegistry.prototype.clear = function() {};
|
|
3639
|
+
|
|
3640
|
+
/**
|
|
3641
|
+
* @param {string} key
|
|
3642
|
+
* @return {boolean}
|
|
3643
|
+
*/
|
|
3644
|
+
HighlightRegistry.prototype.has = function(key) {};
|
|
3645
|
+
|
|
3646
|
+
/**
|
|
3647
|
+
* @param {string} key
|
|
3648
|
+
* @return {?Highlight}
|
|
3649
|
+
*/
|
|
3650
|
+
HighlightRegistry.prototype.get = function(key) {};
|
|
3651
|
+
|
|
3652
|
+
/** @type {number} */
|
|
3653
|
+
HighlightRegistry.prototype.size;
|
|
3654
|
+
|
|
3621
3655
|
|
|
3622
3656
|
/** @type {!HighlightRegistry} */
|
|
3623
3657
|
CSSInterface.prototype.highlights;
|
|
@@ -3947,12 +3947,19 @@ RTCErrorEvent.prototype.message;
|
|
|
3947
3947
|
* @template T
|
|
3948
3948
|
* @record
|
|
3949
3949
|
* @struct
|
|
3950
|
+
* @see https://www.w3.org/TR/mediacapture-transform/#track-processor-interface
|
|
3950
3951
|
*/
|
|
3951
3952
|
function MediaStreamTrackProcessor() {}
|
|
3952
3953
|
|
|
3953
3954
|
/** @const {!ReadableStream<T>} */
|
|
3954
3955
|
MediaStreamTrackProcessor.prototype.readable;
|
|
3955
3956
|
|
|
3957
|
+
/** @const {number} */
|
|
3958
|
+
MediaStreamTrackProcessor.prototype.discardedFrames;
|
|
3959
|
+
|
|
3960
|
+
/** @const {number} */
|
|
3961
|
+
MediaStreamTrackProcessor.prototype.totalFrames;
|
|
3962
|
+
|
|
3956
3963
|
/**
|
|
3957
3964
|
* @typedef {{kind: string}}
|
|
3958
3965
|
* @see https://alvestrand.github.io/mediacapture-transform/chrome-96.html#generator
|
package/externs/es6.js
CHANGED
|
@@ -2453,7 +2453,7 @@ Object.getOwnPropertyDescriptors = function(obj) {};
|
|
|
2453
2453
|
|
|
2454
2454
|
/**
|
|
2455
2455
|
* @param {!Iterable<T>} items
|
|
2456
|
-
* @param {function(T, number=): string|symbol|number} callbackFn
|
|
2456
|
+
* @param {function(T, number=): (string|symbol|number)} callbackFn
|
|
2457
2457
|
* @return {!Object<string|symbol|number, !Array<T>>}
|
|
2458
2458
|
* @template T
|
|
2459
2459
|
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/groupBy
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "google-closure-compiler",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "20260712.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": "^
|
|
44
|
+
"google-closure-compiler-java": "^20260712.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": "^
|
|
51
|
-
"google-closure-compiler-linux-arm64": "^
|
|
52
|
-
"google-closure-compiler-macos": "^
|
|
53
|
-
"google-closure-compiler-windows": "^
|
|
50
|
+
"google-closure-compiler-linux": "^20260712.0.0",
|
|
51
|
+
"google-closure-compiler-linux-arm64": "^20260712.0.0",
|
|
52
|
+
"google-closure-compiler-macos": "^20260712.0.0",
|
|
53
|
+
"google-closure-compiler-windows": "^20260712.0.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"gulp": "^5.0.1",
|