Skip to content

Commit 4d7a1cd

Browse files
Update core dependencies (#2418)
Co-authored-by: saschanaz <saschanaz@users.noreply.github.com>
1 parent a376819 commit 4d7a1cd

14 files changed

+82
-111
lines changed

baselines/dom.generated.d.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11177,6 +11177,7 @@ interface CustomElementRegistry {
1117711177
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
1117811178
*/
1117911179
getName(constructor: CustomElementConstructor): string | null;
11180+
initialize(root: Node): void;
1118011181
/**
1118111182
* The **`upgrade()`** method of the CustomElementRegistry interface upgrades all shadow-containing custom elements in a Node subtree, even before they are connected to the main document.
1118211183
*
@@ -13174,6 +13175,7 @@ interface DocumentOrShadowRoot {
1317413175
readonly activeElement: Element | null;
1317513176
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/adoptedStyleSheets) */
1317613177
adoptedStyleSheets: CSSStyleSheet[];
13178+
readonly customElementRegistry: CustomElementRegistry | null;
1317713179
/**
1317813180
* Returns document's fullscreen element.
1317913181
*
@@ -13483,6 +13485,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1348313485
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/currentCSSZoom)
1348413486
*/
1348513487
readonly currentCSSZoom: number;
13488+
readonly customElementRegistry: CustomElementRegistry | null;
1348613489
/**
1348713490
* The **`id`** property of the Element interface represents the element's identifier, reflecting the id global attribute.
1348813491
*
@@ -21171,6 +21174,7 @@ interface HTMLTemplateElement extends HTMLElement {
2117121174
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootClonable)
2117221175
*/
2117321176
shadowRootClonable: boolean;
21177+
shadowRootCustomElementRegistry: string;
2117421178
/**
2117521179
* The **`shadowRootDelegatesFocus`** property of the HTMLTemplateElement interface reflects the value of the shadowrootdelegatesfocus attribute of the associated <template> element.
2117621180
*
@@ -25533,6 +25537,12 @@ declare var NavigationHistoryEntry: {
2553325537
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController)
2553425538
*/
2553525539
interface NavigationPrecommitController {
25540+
/**
25541+
* The **`addHandler()`** method of the NavigationPrecommitController interface allows you to dynamically add a handler callback function in precommit code, which will then be run after the navigation has committed.
25542+
*
25543+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController/addHandler)
25544+
*/
25545+
addHandler(handler: NavigationInterceptHandler): void;
2553625546
/**
2553725547
* The **`redirect()`** method of the NavigationPrecommitController interface redirects the browser to a specified URL and specifies history behavior and any desired state information.
2553825548
*

baselines/serviceworker.generated.d.ts

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6440,19 +6440,6 @@ interface ImportMeta {
64406440
resolve(specifier: string): string;
64416441
}
64426442

6443-
/**
6444-
* The parameter passed into an install event handler function, the **`InstallEvent`** interface represents an install action that is dispatched on the ServiceWorkerGlobalScope of a ServiceWorker. As a child of ExtendableEvent, it ensures that functional events such as FetchEvent are not dispatched during installation.
6445-
*
6446-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InstallEvent)
6447-
*/
6448-
interface InstallEvent extends ExtendableEvent {
6449-
}
6450-
6451-
declare var InstallEvent: {
6452-
prototype: InstallEvent;
6453-
new(type: string, eventInitDict?: ExtendableEventInit): InstallEvent;
6454-
};
6455-
64566443
/**
64576444
* The **`KHR_parallel_shader_compile`** extension is part of the WebGL API and enables a non-blocking poll operation, so that compile/link status availability (COMPLETION_STATUS_KHR) can be queried without potentially incurring stalls. In other words you can check the status of your shaders compiling without blocking the runtime.
64586445
*

baselines/ts5.5/dom.generated.d.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11166,6 +11166,7 @@ interface CustomElementRegistry {
1116611166
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
1116711167
*/
1116811168
getName(constructor: CustomElementConstructor): string | null;
11169+
initialize(root: Node): void;
1116911170
/**
1117011171
* The **`upgrade()`** method of the CustomElementRegistry interface upgrades all shadow-containing custom elements in a Node subtree, even before they are connected to the main document.
1117111172
*
@@ -13163,6 +13164,7 @@ interface DocumentOrShadowRoot {
1316313164
readonly activeElement: Element | null;
1316413165
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/adoptedStyleSheets) */
1316513166
adoptedStyleSheets: CSSStyleSheet[];
13167+
readonly customElementRegistry: CustomElementRegistry | null;
1316613168
/**
1316713169
* Returns document's fullscreen element.
1316813170
*
@@ -13471,6 +13473,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1347113473
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/currentCSSZoom)
1347213474
*/
1347313475
readonly currentCSSZoom: number;
13476+
readonly customElementRegistry: CustomElementRegistry | null;
1347413477
/**
1347513478
* The **`id`** property of the Element interface represents the element's identifier, reflecting the id global attribute.
1347613479
*
@@ -21147,6 +21150,7 @@ interface HTMLTemplateElement extends HTMLElement {
2114721150
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootClonable)
2114821151
*/
2114921152
shadowRootClonable: boolean;
21153+
shadowRootCustomElementRegistry: string;
2115021154
/**
2115121155
* The **`shadowRootDelegatesFocus`** property of the HTMLTemplateElement interface reflects the value of the shadowrootdelegatesfocus attribute of the associated <template> element.
2115221156
*
@@ -25509,6 +25513,12 @@ declare var NavigationHistoryEntry: {
2550925513
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController)
2551025514
*/
2551125515
interface NavigationPrecommitController {
25516+
/**
25517+
* The **`addHandler()`** method of the NavigationPrecommitController interface allows you to dynamically add a handler callback function in precommit code, which will then be run after the navigation has committed.
25518+
*
25519+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController/addHandler)
25520+
*/
25521+
addHandler(handler: NavigationInterceptHandler): void;
2551225522
/**
2551325523
* The **`redirect()`** method of the NavigationPrecommitController interface redirects the browser to a specified URL and specifies history behavior and any desired state information.
2551425524
*

baselines/ts5.5/serviceworker.generated.d.ts

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6437,19 +6437,6 @@ interface ImportMeta {
64376437
resolve(specifier: string): string;
64386438
}
64396439

6440-
/**
6441-
* The parameter passed into an install event handler function, the **`InstallEvent`** interface represents an install action that is dispatched on the ServiceWorkerGlobalScope of a ServiceWorker. As a child of ExtendableEvent, it ensures that functional events such as FetchEvent are not dispatched during installation.
6442-
*
6443-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InstallEvent)
6444-
*/
6445-
interface InstallEvent extends ExtendableEvent {
6446-
}
6447-
6448-
declare var InstallEvent: {
6449-
prototype: InstallEvent;
6450-
new(type: string, eventInitDict?: ExtendableEventInit): InstallEvent;
6451-
};
6452-
64536440
/**
64546441
* The **`KHR_parallel_shader_compile`** extension is part of the WebGL API and enables a non-blocking poll operation, so that compile/link status availability (COMPLETION_STATUS_KHR) can be queried without potentially incurring stalls. In other words you can check the status of your shaders compiling without blocking the runtime.
64556442
*

baselines/ts5.5/webworker.generated.d.ts

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7279,19 +7279,6 @@ interface ImportMeta {
72797279
resolve(specifier: string): string;
72807280
}
72817281

7282-
/**
7283-
* The parameter passed into an install event handler function, the **`InstallEvent`** interface represents an install action that is dispatched on the ServiceWorkerGlobalScope of a ServiceWorker. As a child of ExtendableEvent, it ensures that functional events such as FetchEvent are not dispatched during installation.
7284-
*
7285-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InstallEvent)
7286-
*/
7287-
interface InstallEvent extends ExtendableEvent {
7288-
}
7289-
7290-
declare var InstallEvent: {
7291-
prototype: InstallEvent;
7292-
new(type: string, eventInitDict?: ExtendableEventInit): InstallEvent;
7293-
};
7294-
72957282
/**
72967283
* The **`KHR_parallel_shader_compile`** extension is part of the WebGL API and enables a non-blocking poll operation, so that compile/link status availability (COMPLETION_STATUS_KHR) can be queried without potentially incurring stalls. In other words you can check the status of your shaders compiling without blocking the runtime.
72977284
*

baselines/ts5.6/dom.generated.d.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11174,6 +11174,7 @@ interface CustomElementRegistry {
1117411174
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
1117511175
*/
1117611176
getName(constructor: CustomElementConstructor): string | null;
11177+
initialize(root: Node): void;
1117711178
/**
1117811179
* The **`upgrade()`** method of the CustomElementRegistry interface upgrades all shadow-containing custom elements in a Node subtree, even before they are connected to the main document.
1117911180
*
@@ -13171,6 +13172,7 @@ interface DocumentOrShadowRoot {
1317113172
readonly activeElement: Element | null;
1317213173
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/adoptedStyleSheets) */
1317313174
adoptedStyleSheets: CSSStyleSheet[];
13175+
readonly customElementRegistry: CustomElementRegistry | null;
1317413176
/**
1317513177
* Returns document's fullscreen element.
1317613178
*
@@ -13480,6 +13482,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1348013482
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/currentCSSZoom)
1348113483
*/
1348213484
readonly currentCSSZoom: number;
13485+
readonly customElementRegistry: CustomElementRegistry | null;
1348313486
/**
1348413487
* The **`id`** property of the Element interface represents the element's identifier, reflecting the id global attribute.
1348513488
*
@@ -21168,6 +21171,7 @@ interface HTMLTemplateElement extends HTMLElement {
2116821171
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootClonable)
2116921172
*/
2117021173
shadowRootClonable: boolean;
21174+
shadowRootCustomElementRegistry: string;
2117121175
/**
2117221176
* The **`shadowRootDelegatesFocus`** property of the HTMLTemplateElement interface reflects the value of the shadowrootdelegatesfocus attribute of the associated <template> element.
2117321177
*
@@ -25530,6 +25534,12 @@ declare var NavigationHistoryEntry: {
2553025534
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController)
2553125535
*/
2553225536
interface NavigationPrecommitController {
25537+
/**
25538+
* The **`addHandler()`** method of the NavigationPrecommitController interface allows you to dynamically add a handler callback function in precommit code, which will then be run after the navigation has committed.
25539+
*
25540+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController/addHandler)
25541+
*/
25542+
addHandler(handler: NavigationInterceptHandler): void;
2553325543
/**
2553425544
* The **`redirect()`** method of the NavigationPrecommitController interface redirects the browser to a specified URL and specifies history behavior and any desired state information.
2553525545
*

baselines/ts5.6/serviceworker.generated.d.ts

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6437,19 +6437,6 @@ interface ImportMeta {
64376437
resolve(specifier: string): string;
64386438
}
64396439

6440-
/**
6441-
* The parameter passed into an install event handler function, the **`InstallEvent`** interface represents an install action that is dispatched on the ServiceWorkerGlobalScope of a ServiceWorker. As a child of ExtendableEvent, it ensures that functional events such as FetchEvent are not dispatched during installation.
6442-
*
6443-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InstallEvent)
6444-
*/
6445-
interface InstallEvent extends ExtendableEvent {
6446-
}
6447-
6448-
declare var InstallEvent: {
6449-
prototype: InstallEvent;
6450-
new(type: string, eventInitDict?: ExtendableEventInit): InstallEvent;
6451-
};
6452-
64536440
/**
64546441
* The **`KHR_parallel_shader_compile`** extension is part of the WebGL API and enables a non-blocking poll operation, so that compile/link status availability (COMPLETION_STATUS_KHR) can be queried without potentially incurring stalls. In other words you can check the status of your shaders compiling without blocking the runtime.
64556442
*

baselines/ts5.6/webworker.generated.d.ts

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7279,19 +7279,6 @@ interface ImportMeta {
72797279
resolve(specifier: string): string;
72807280
}
72817281

7282-
/**
7283-
* The parameter passed into an install event handler function, the **`InstallEvent`** interface represents an install action that is dispatched on the ServiceWorkerGlobalScope of a ServiceWorker. As a child of ExtendableEvent, it ensures that functional events such as FetchEvent are not dispatched during installation.
7284-
*
7285-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InstallEvent)
7286-
*/
7287-
interface InstallEvent extends ExtendableEvent {
7288-
}
7289-
7290-
declare var InstallEvent: {
7291-
prototype: InstallEvent;
7292-
new(type: string, eventInitDict?: ExtendableEventInit): InstallEvent;
7293-
};
7294-
72957282
/**
72967283
* The **`KHR_parallel_shader_compile`** extension is part of the WebGL API and enables a non-blocking poll operation, so that compile/link status availability (COMPLETION_STATUS_KHR) can be queried without potentially incurring stalls. In other words you can check the status of your shaders compiling without blocking the runtime.
72977284
*

baselines/ts5.9/dom.generated.d.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11174,6 +11174,7 @@ interface CustomElementRegistry {
1117411174
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
1117511175
*/
1117611176
getName(constructor: CustomElementConstructor): string | null;
11177+
initialize(root: Node): void;
1117711178
/**
1117811179
* The **`upgrade()`** method of the CustomElementRegistry interface upgrades all shadow-containing custom elements in a Node subtree, even before they are connected to the main document.
1117911180
*
@@ -13171,6 +13172,7 @@ interface DocumentOrShadowRoot {
1317113172
readonly activeElement: Element | null;
1317213173
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/adoptedStyleSheets) */
1317313174
adoptedStyleSheets: CSSStyleSheet[];
13175+
readonly customElementRegistry: CustomElementRegistry | null;
1317413176
/**
1317513177
* Returns document's fullscreen element.
1317613178
*
@@ -13480,6 +13482,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1348013482
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/currentCSSZoom)
1348113483
*/
1348213484
readonly currentCSSZoom: number;
13485+
readonly customElementRegistry: CustomElementRegistry | null;
1348313486
/**
1348413487
* The **`id`** property of the Element interface represents the element's identifier, reflecting the id global attribute.
1348513488
*
@@ -21168,6 +21171,7 @@ interface HTMLTemplateElement extends HTMLElement {
2116821171
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootClonable)
2116921172
*/
2117021173
shadowRootClonable: boolean;
21174+
shadowRootCustomElementRegistry: string;
2117121175
/**
2117221176
* The **`shadowRootDelegatesFocus`** property of the HTMLTemplateElement interface reflects the value of the shadowrootdelegatesfocus attribute of the associated <template> element.
2117321177
*
@@ -25530,6 +25534,12 @@ declare var NavigationHistoryEntry: {
2553025534
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController)
2553125535
*/
2553225536
interface NavigationPrecommitController {
25537+
/**
25538+
* The **`addHandler()`** method of the NavigationPrecommitController interface allows you to dynamically add a handler callback function in precommit code, which will then be run after the navigation has committed.
25539+
*
25540+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController/addHandler)
25541+
*/
25542+
addHandler(handler: NavigationInterceptHandler): void;
2553325543
/**
2553425544
* The **`redirect()`** method of the NavigationPrecommitController interface redirects the browser to a specified URL and specifies history behavior and any desired state information.
2553525545
*

baselines/ts5.9/serviceworker.generated.d.ts

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6437,19 +6437,6 @@ interface ImportMeta {
64376437
resolve(specifier: string): string;
64386438
}
64396439

6440-
/**
6441-
* The parameter passed into an install event handler function, the **`InstallEvent`** interface represents an install action that is dispatched on the ServiceWorkerGlobalScope of a ServiceWorker. As a child of ExtendableEvent, it ensures that functional events such as FetchEvent are not dispatched during installation.
6442-
*
6443-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InstallEvent)
6444-
*/
6445-
interface InstallEvent extends ExtendableEvent {
6446-
}
6447-
6448-
declare var InstallEvent: {
6449-
prototype: InstallEvent;
6450-
new(type: string, eventInitDict?: ExtendableEventInit): InstallEvent;
6451-
};
6452-
64536440
/**
64546441
* The **`KHR_parallel_shader_compile`** extension is part of the WebGL API and enables a non-blocking poll operation, so that compile/link status availability (COMPLETION_STATUS_KHR) can be queried without potentially incurring stalls. In other words you can check the status of your shaders compiling without blocking the runtime.
64556442
*

0 commit comments

Comments
 (0)