Skip to content

Commit 9aac6e8

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 01a3267 commit 9aac6e8

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
@@ -11098,6 +11098,7 @@ interface CustomElementRegistry {
1109811098
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
1109911099
*/
1110011100
getName(constructor: CustomElementConstructor): string | null;
11101+
initialize(root: Node): void;
1110111102
/**
1110211103
* 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.
1110311104
*
@@ -13095,6 +13096,7 @@ interface DocumentOrShadowRoot {
1309513096
readonly activeElement: Element | null;
1309613097
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/adoptedStyleSheets) */
1309713098
adoptedStyleSheets: CSSStyleSheet[];
13099+
readonly customElementRegistry: CustomElementRegistry | null;
1309813100
/**
1309913101
* Returns document's fullscreen element.
1310013102
*
@@ -13404,6 +13406,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1340413406
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/currentCSSZoom)
1340513407
*/
1340613408
readonly currentCSSZoom: number;
13409+
readonly customElementRegistry: CustomElementRegistry | null;
1340713410
/**
1340813411
* The **`id`** property of the Element interface represents the element's identifier, reflecting the id global attribute.
1340913412
*
@@ -21080,6 +21083,7 @@ interface HTMLTemplateElement extends HTMLElement {
2108021083
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootClonable)
2108121084
*/
2108221085
shadowRootClonable: boolean;
21086+
shadowRootCustomElementRegistry: string;
2108321087
/**
2108421088
* The **`shadowRootDelegatesFocus`** property of the HTMLTemplateElement interface reflects the value of the shadowrootdelegatesfocus attribute of the associated <template> element.
2108521089
*
@@ -25442,6 +25446,12 @@ declare var NavigationHistoryEntry: {
2544225446
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController)
2544325447
*/
2544425448
interface NavigationPrecommitController {
25449+
/**
25450+
* 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.
25451+
*
25452+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController/addHandler)
25453+
*/
25454+
addHandler(handler: NavigationInterceptHandler): void;
2544525455
/**
2544625456
* The **`redirect()`** method of the NavigationPrecommitController interface redirects the browser to a specified URL and specifies history behavior and any desired state information.
2544725457
*

baselines/serviceworker.generated.d.ts

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6349,19 +6349,6 @@ interface ImportMeta {
63496349
resolve(specifier: string): string;
63506350
}
63516351

6352-
/**
6353-
* 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.
6354-
*
6355-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InstallEvent)
6356-
*/
6357-
interface InstallEvent extends ExtendableEvent {
6358-
}
6359-
6360-
declare var InstallEvent: {
6361-
prototype: InstallEvent;
6362-
new(type: string, eventInitDict?: ExtendableEventInit): InstallEvent;
6363-
};
6364-
63656352
/**
63666353
* 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.
63676354
*

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11087,6 +11087,7 @@ interface CustomElementRegistry {
1108711087
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
1108811088
*/
1108911089
getName(constructor: CustomElementConstructor): string | null;
11090+
initialize(root: Node): void;
1109011091
/**
1109111092
* 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.
1109211093
*
@@ -13084,6 +13085,7 @@ interface DocumentOrShadowRoot {
1308413085
readonly activeElement: Element | null;
1308513086
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/adoptedStyleSheets) */
1308613087
adoptedStyleSheets: CSSStyleSheet[];
13088+
readonly customElementRegistry: CustomElementRegistry | null;
1308713089
/**
1308813090
* Returns document's fullscreen element.
1308913091
*
@@ -13392,6 +13394,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1339213394
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/currentCSSZoom)
1339313395
*/
1339413396
readonly currentCSSZoom: number;
13397+
readonly customElementRegistry: CustomElementRegistry | null;
1339513398
/**
1339613399
* The **`id`** property of the Element interface represents the element's identifier, reflecting the id global attribute.
1339713400
*
@@ -21056,6 +21059,7 @@ interface HTMLTemplateElement extends HTMLElement {
2105621059
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootClonable)
2105721060
*/
2105821061
shadowRootClonable: boolean;
21062+
shadowRootCustomElementRegistry: string;
2105921063
/**
2106021064
* The **`shadowRootDelegatesFocus`** property of the HTMLTemplateElement interface reflects the value of the shadowrootdelegatesfocus attribute of the associated <template> element.
2106121065
*
@@ -25418,6 +25422,12 @@ declare var NavigationHistoryEntry: {
2541825422
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController)
2541925423
*/
2542025424
interface NavigationPrecommitController {
25425+
/**
25426+
* 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.
25427+
*
25428+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController/addHandler)
25429+
*/
25430+
addHandler(handler: NavigationInterceptHandler): void;
2542125431
/**
2542225432
* The **`redirect()`** method of the NavigationPrecommitController interface redirects the browser to a specified URL and specifies history behavior and any desired state information.
2542325433
*

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

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6346,19 +6346,6 @@ interface ImportMeta {
63466346
resolve(specifier: string): string;
63476347
}
63486348

6349-
/**
6350-
* 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.
6351-
*
6352-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InstallEvent)
6353-
*/
6354-
interface InstallEvent extends ExtendableEvent {
6355-
}
6356-
6357-
declare var InstallEvent: {
6358-
prototype: InstallEvent;
6359-
new(type: string, eventInitDict?: ExtendableEventInit): InstallEvent;
6360-
};
6361-
63626349
/**
63636350
* 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.
63646351
*

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

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7188,19 +7188,6 @@ interface ImportMeta {
71887188
resolve(specifier: string): string;
71897189
}
71907190

7191-
/**
7192-
* 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.
7193-
*
7194-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InstallEvent)
7195-
*/
7196-
interface InstallEvent extends ExtendableEvent {
7197-
}
7198-
7199-
declare var InstallEvent: {
7200-
prototype: InstallEvent;
7201-
new(type: string, eventInitDict?: ExtendableEventInit): InstallEvent;
7202-
};
7203-
72047191
/**
72057192
* 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.
72067193
*

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11095,6 +11095,7 @@ interface CustomElementRegistry {
1109511095
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
1109611096
*/
1109711097
getName(constructor: CustomElementConstructor): string | null;
11098+
initialize(root: Node): void;
1109811099
/**
1109911100
* 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.
1110011101
*
@@ -13092,6 +13093,7 @@ interface DocumentOrShadowRoot {
1309213093
readonly activeElement: Element | null;
1309313094
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/adoptedStyleSheets) */
1309413095
adoptedStyleSheets: CSSStyleSheet[];
13096+
readonly customElementRegistry: CustomElementRegistry | null;
1309513097
/**
1309613098
* Returns document's fullscreen element.
1309713099
*
@@ -13401,6 +13403,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1340113403
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/currentCSSZoom)
1340213404
*/
1340313405
readonly currentCSSZoom: number;
13406+
readonly customElementRegistry: CustomElementRegistry | null;
1340413407
/**
1340513408
* The **`id`** property of the Element interface represents the element's identifier, reflecting the id global attribute.
1340613409
*
@@ -21077,6 +21080,7 @@ interface HTMLTemplateElement extends HTMLElement {
2107721080
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootClonable)
2107821081
*/
2107921082
shadowRootClonable: boolean;
21083+
shadowRootCustomElementRegistry: string;
2108021084
/**
2108121085
* The **`shadowRootDelegatesFocus`** property of the HTMLTemplateElement interface reflects the value of the shadowrootdelegatesfocus attribute of the associated <template> element.
2108221086
*
@@ -25439,6 +25443,12 @@ declare var NavigationHistoryEntry: {
2543925443
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController)
2544025444
*/
2544125445
interface NavigationPrecommitController {
25446+
/**
25447+
* 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.
25448+
*
25449+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController/addHandler)
25450+
*/
25451+
addHandler(handler: NavigationInterceptHandler): void;
2544225452
/**
2544325453
* The **`redirect()`** method of the NavigationPrecommitController interface redirects the browser to a specified URL and specifies history behavior and any desired state information.
2544425454
*

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

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6346,19 +6346,6 @@ interface ImportMeta {
63466346
resolve(specifier: string): string;
63476347
}
63486348

6349-
/**
6350-
* 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.
6351-
*
6352-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InstallEvent)
6353-
*/
6354-
interface InstallEvent extends ExtendableEvent {
6355-
}
6356-
6357-
declare var InstallEvent: {
6358-
prototype: InstallEvent;
6359-
new(type: string, eventInitDict?: ExtendableEventInit): InstallEvent;
6360-
};
6361-
63626349
/**
63636350
* 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.
63646351
*

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

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7188,19 +7188,6 @@ interface ImportMeta {
71887188
resolve(specifier: string): string;
71897189
}
71907190

7191-
/**
7192-
* 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.
7193-
*
7194-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InstallEvent)
7195-
*/
7196-
interface InstallEvent extends ExtendableEvent {
7197-
}
7198-
7199-
declare var InstallEvent: {
7200-
prototype: InstallEvent;
7201-
new(type: string, eventInitDict?: ExtendableEventInit): InstallEvent;
7202-
};
7203-
72047191
/**
72057192
* 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.
72067193
*

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11095,6 +11095,7 @@ interface CustomElementRegistry {
1109511095
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
1109611096
*/
1109711097
getName(constructor: CustomElementConstructor): string | null;
11098+
initialize(root: Node): void;
1109811099
/**
1109911100
* 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.
1110011101
*
@@ -13092,6 +13093,7 @@ interface DocumentOrShadowRoot {
1309213093
readonly activeElement: Element | null;
1309313094
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/adoptedStyleSheets) */
1309413095
adoptedStyleSheets: CSSStyleSheet[];
13096+
readonly customElementRegistry: CustomElementRegistry | null;
1309513097
/**
1309613098
* Returns document's fullscreen element.
1309713099
*
@@ -13401,6 +13403,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1340113403
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/currentCSSZoom)
1340213404
*/
1340313405
readonly currentCSSZoom: number;
13406+
readonly customElementRegistry: CustomElementRegistry | null;
1340413407
/**
1340513408
* The **`id`** property of the Element interface represents the element's identifier, reflecting the id global attribute.
1340613409
*
@@ -21077,6 +21080,7 @@ interface HTMLTemplateElement extends HTMLElement {
2107721080
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootClonable)
2107821081
*/
2107921082
shadowRootClonable: boolean;
21083+
shadowRootCustomElementRegistry: string;
2108021084
/**
2108121085
* The **`shadowRootDelegatesFocus`** property of the HTMLTemplateElement interface reflects the value of the shadowrootdelegatesfocus attribute of the associated <template> element.
2108221086
*
@@ -25439,6 +25443,12 @@ declare var NavigationHistoryEntry: {
2543925443
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController)
2544025444
*/
2544125445
interface NavigationPrecommitController {
25446+
/**
25447+
* 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.
25448+
*
25449+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController/addHandler)
25450+
*/
25451+
addHandler(handler: NavigationInterceptHandler): void;
2544225452
/**
2544325453
* The **`redirect()`** method of the NavigationPrecommitController interface redirects the browser to a specified URL and specifies history behavior and any desired state information.
2544425454
*

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

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6346,19 +6346,6 @@ interface ImportMeta {
63466346
resolve(specifier: string): string;
63476347
}
63486348

6349-
/**
6350-
* 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.
6351-
*
6352-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InstallEvent)
6353-
*/
6354-
interface InstallEvent extends ExtendableEvent {
6355-
}
6356-
6357-
declare var InstallEvent: {
6358-
prototype: InstallEvent;
6359-
new(type: string, eventInitDict?: ExtendableEventInit): InstallEvent;
6360-
};
6361-
63626349
/**
63636350
* 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.
63646351
*

0 commit comments

Comments
 (0)