Skip to content

Commit c2cd830

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 37af214 commit c2cd830

18 files changed

+150
-36
lines changed

baselines/dom.generated.d.ts

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ interface CSSNumericType {
351351
}
352352

353353
interface CSSStyleSheetInit {
354-
baseURL?: string;
354+
baseURL?: string | null;
355355
disabled?: boolean;
356356
media?: MediaList | string;
357357
}
@@ -3152,6 +3152,7 @@ interface WebTransportHash {
31523152
interface WebTransportOptions {
31533153
allowPooling?: boolean;
31543154
congestionControl?: WebTransportCongestionControl;
3155+
headers?: HeadersInit;
31553156
protocols?: string[];
31563157
requireUnreliable?: boolean;
31573158
serverCertificateHashes?: WebTransportHash[];
@@ -5376,7 +5377,7 @@ declare var CSSCounterStyleRule: {
53765377
*/
53775378
interface CSSFontFaceRule extends CSSRule {
53785379
/**
5379-
* The read-only **`style`** property of the CSSFontFaceRule interface contains a CSSStyleDeclaration object representing the descriptors available in the @font-face rule's body.
5380+
* The read-only **`style`** property of the CSSFontFaceRule interface returns a CSSFontFaceDescriptors object representing the descriptors available in the @font-face rule's body.
53805381
*
53815382
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFaceRule/style)
53825383
*/
@@ -11288,7 +11289,7 @@ declare var CryptoKey: {
1128811289
};
1128911290

1129011291
/**
11291-
* The **`CustomElementRegistry`** interface provides methods for registering custom elements and querying registered elements. To get an instance of it, use the window.customElements property.
11292+
* The **`CustomElementRegistry`** interface provides methods for registering custom elements and querying registered elements. To get an instance of it, use the window.customElements property. To create a scoped registry, use the CustomElementRegistry() constructor.
1129211293
*
1129311294
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry)
1129411295
*/
@@ -11311,7 +11312,11 @@ interface CustomElementRegistry {
1131111312
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
1131211313
*/
1131311314
getName(constructor: CustomElementConstructor): string | null;
11314-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/initialize) */
11315+
/**
11316+
* The **`initialize()`** method of the CustomElementRegistry interface associates this registry with a DOM subtree, setting the customElementRegistry of each inclusive descendant that doesn't already have one, and attempting to upgrade any custom elements found.
11317+
*
11318+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/initialize)
11319+
*/
1131511320
initialize(root: Node): void;
1131611321
/**
1131711322
* 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.
@@ -13621,7 +13626,11 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1362113626
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/currentCSSZoom)
1362213627
*/
1362313628
readonly currentCSSZoom: number;
13624-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/customElementRegistry) */
13629+
/**
13630+
* The **`customElementRegistry`** read-only property of the Element interface returns the CustomElementRegistry object associated with this element, or null if one has not been set.
13631+
*
13632+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/customElementRegistry)
13633+
*/
1362513634
readonly customElementRegistry: CustomElementRegistry | null;
1362613635
/**
1362713636
* The **`id`** property of the Element interface represents the element's identifier, reflecting the id global attribute.
@@ -21399,7 +21408,11 @@ interface HTMLTemplateElement extends HTMLElement {
2139921408
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootClonable)
2140021409
*/
2140121410
shadowRootClonable: boolean;
21402-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootCustomElementRegistry) */
21411+
/**
21412+
* The **`shadowRootCustomElementRegistry`** property of the HTMLTemplateElement interface reflects the value of the shadowrootcustomelementregistry attribute of the associated <template> element.
21413+
*
21414+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootCustomElementRegistry)
21415+
*/
2140321416
shadowRootCustomElementRegistry: string;
2140421417
/**
2140521418
* The **`shadowRootDelegatesFocus`** property of the HTMLTemplateElement interface reflects the value of the shadowrootdelegatesfocus attribute of the associated <template> element.

baselines/serviceworker.generated.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1235,6 +1235,7 @@ interface WebTransportHash {
12351235
interface WebTransportOptions {
12361236
allowPooling?: boolean;
12371237
congestionControl?: WebTransportCongestionControl;
1238+
headers?: HeadersInit;
12381239
protocols?: string[];
12391240
requireUnreliable?: boolean;
12401241
serverCertificateHashes?: WebTransportHash[];

baselines/sharedworker.generated.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1165,6 +1165,7 @@ interface WebTransportHash {
11651165
interface WebTransportOptions {
11661166
allowPooling?: boolean;
11671167
congestionControl?: WebTransportCongestionControl;
1168+
headers?: HeadersInit;
11681169
protocols?: string[];
11691170
requireUnreliable?: boolean;
11701171
serverCertificateHashes?: WebTransportHash[];

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

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ interface CSSNumericType {
348348
}
349349

350350
interface CSSStyleSheetInit {
351-
baseURL?: string;
351+
baseURL?: string | null;
352352
disabled?: boolean;
353353
media?: MediaList | string;
354354
}
@@ -3149,6 +3149,7 @@ interface WebTransportHash {
31493149
interface WebTransportOptions {
31503150
allowPooling?: boolean;
31513151
congestionControl?: WebTransportCongestionControl;
3152+
headers?: HeadersInit;
31523153
protocols?: string[];
31533154
requireUnreliable?: boolean;
31543155
serverCertificateHashes?: WebTransportHash[];
@@ -5373,7 +5374,7 @@ declare var CSSCounterStyleRule: {
53735374
*/
53745375
interface CSSFontFaceRule extends CSSRule {
53755376
/**
5376-
* The read-only **`style`** property of the CSSFontFaceRule interface contains a CSSStyleDeclaration object representing the descriptors available in the @font-face rule's body.
5377+
* The read-only **`style`** property of the CSSFontFaceRule interface returns a CSSFontFaceDescriptors object representing the descriptors available in the @font-face rule's body.
53775378
*
53785379
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFaceRule/style)
53795380
*/
@@ -11277,7 +11278,7 @@ declare var CryptoKey: {
1127711278
};
1127811279

1127911280
/**
11280-
* The **`CustomElementRegistry`** interface provides methods for registering custom elements and querying registered elements. To get an instance of it, use the window.customElements property.
11281+
* The **`CustomElementRegistry`** interface provides methods for registering custom elements and querying registered elements. To get an instance of it, use the window.customElements property. To create a scoped registry, use the CustomElementRegistry() constructor.
1128111282
*
1128211283
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry)
1128311284
*/
@@ -11300,7 +11301,11 @@ interface CustomElementRegistry {
1130011301
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
1130111302
*/
1130211303
getName(constructor: CustomElementConstructor): string | null;
11303-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/initialize) */
11304+
/**
11305+
* The **`initialize()`** method of the CustomElementRegistry interface associates this registry with a DOM subtree, setting the customElementRegistry of each inclusive descendant that doesn't already have one, and attempting to upgrade any custom elements found.
11306+
*
11307+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/initialize)
11308+
*/
1130411309
initialize(root: Node): void;
1130511310
/**
1130611311
* 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.
@@ -13609,7 +13614,11 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1360913614
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/currentCSSZoom)
1361013615
*/
1361113616
readonly currentCSSZoom: number;
13612-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/customElementRegistry) */
13617+
/**
13618+
* The **`customElementRegistry`** read-only property of the Element interface returns the CustomElementRegistry object associated with this element, or null if one has not been set.
13619+
*
13620+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/customElementRegistry)
13621+
*/
1361313622
readonly customElementRegistry: CustomElementRegistry | null;
1361413623
/**
1361513624
* The **`id`** property of the Element interface represents the element's identifier, reflecting the id global attribute.
@@ -21375,7 +21384,11 @@ interface HTMLTemplateElement extends HTMLElement {
2137521384
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootClonable)
2137621385
*/
2137721386
shadowRootClonable: boolean;
21378-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootCustomElementRegistry) */
21387+
/**
21388+
* The **`shadowRootCustomElementRegistry`** property of the HTMLTemplateElement interface reflects the value of the shadowrootcustomelementregistry attribute of the associated <template> element.
21389+
*
21390+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootCustomElementRegistry)
21391+
*/
2137921392
shadowRootCustomElementRegistry: string;
2138021393
/**
2138121394
* The **`shadowRootDelegatesFocus`** property of the HTMLTemplateElement interface reflects the value of the shadowrootdelegatesfocus attribute of the associated <template> element.

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1232,6 +1232,7 @@ interface WebTransportHash {
12321232
interface WebTransportOptions {
12331233
allowPooling?: boolean;
12341234
congestionControl?: WebTransportCongestionControl;
1235+
headers?: HeadersInit;
12351236
protocols?: string[];
12361237
requireUnreliable?: boolean;
12371238
serverCertificateHashes?: WebTransportHash[];

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1162,6 +1162,7 @@ interface WebTransportHash {
11621162
interface WebTransportOptions {
11631163
allowPooling?: boolean;
11641164
congestionControl?: WebTransportCongestionControl;
1165+
headers?: HeadersInit;
11651166
protocols?: string[];
11661167
requireUnreliable?: boolean;
11671168
serverCertificateHashes?: WebTransportHash[];

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1481,6 +1481,7 @@ interface WebTransportHash {
14811481
interface WebTransportOptions {
14821482
allowPooling?: boolean;
14831483
congestionControl?: WebTransportCongestionControl;
1484+
headers?: HeadersInit;
14841485
protocols?: string[];
14851486
requireUnreliable?: boolean;
14861487
serverCertificateHashes?: WebTransportHash[];

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

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ interface CSSNumericType {
348348
}
349349

350350
interface CSSStyleSheetInit {
351-
baseURL?: string;
351+
baseURL?: string | null;
352352
disabled?: boolean;
353353
media?: MediaList | string;
354354
}
@@ -3149,6 +3149,7 @@ interface WebTransportHash {
31493149
interface WebTransportOptions {
31503150
allowPooling?: boolean;
31513151
congestionControl?: WebTransportCongestionControl;
3152+
headers?: HeadersInit;
31523153
protocols?: string[];
31533154
requireUnreliable?: boolean;
31543155
serverCertificateHashes?: WebTransportHash[];
@@ -5373,7 +5374,7 @@ declare var CSSCounterStyleRule: {
53735374
*/
53745375
interface CSSFontFaceRule extends CSSRule {
53755376
/**
5376-
* The read-only **`style`** property of the CSSFontFaceRule interface contains a CSSStyleDeclaration object representing the descriptors available in the @font-face rule's body.
5377+
* The read-only **`style`** property of the CSSFontFaceRule interface returns a CSSFontFaceDescriptors object representing the descriptors available in the @font-face rule's body.
53775378
*
53785379
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFaceRule/style)
53795380
*/
@@ -11285,7 +11286,7 @@ declare var CryptoKey: {
1128511286
};
1128611287

1128711288
/**
11288-
* The **`CustomElementRegistry`** interface provides methods for registering custom elements and querying registered elements. To get an instance of it, use the window.customElements property.
11289+
* The **`CustomElementRegistry`** interface provides methods for registering custom elements and querying registered elements. To get an instance of it, use the window.customElements property. To create a scoped registry, use the CustomElementRegistry() constructor.
1128911290
*
1129011291
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry)
1129111292
*/
@@ -11308,7 +11309,11 @@ interface CustomElementRegistry {
1130811309
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
1130911310
*/
1131011311
getName(constructor: CustomElementConstructor): string | null;
11311-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/initialize) */
11312+
/**
11313+
* The **`initialize()`** method of the CustomElementRegistry interface associates this registry with a DOM subtree, setting the customElementRegistry of each inclusive descendant that doesn't already have one, and attempting to upgrade any custom elements found.
11314+
*
11315+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/initialize)
11316+
*/
1131211317
initialize(root: Node): void;
1131311318
/**
1131411319
* 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.
@@ -13618,7 +13623,11 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1361813623
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/currentCSSZoom)
1361913624
*/
1362013625
readonly currentCSSZoom: number;
13621-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/customElementRegistry) */
13626+
/**
13627+
* The **`customElementRegistry`** read-only property of the Element interface returns the CustomElementRegistry object associated with this element, or null if one has not been set.
13628+
*
13629+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/customElementRegistry)
13630+
*/
1362213631
readonly customElementRegistry: CustomElementRegistry | null;
1362313632
/**
1362413633
* The **`id`** property of the Element interface represents the element's identifier, reflecting the id global attribute.
@@ -21396,7 +21405,11 @@ interface HTMLTemplateElement extends HTMLElement {
2139621405
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootClonable)
2139721406
*/
2139821407
shadowRootClonable: boolean;
21399-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootCustomElementRegistry) */
21408+
/**
21409+
* The **`shadowRootCustomElementRegistry`** property of the HTMLTemplateElement interface reflects the value of the shadowrootcustomelementregistry attribute of the associated <template> element.
21410+
*
21411+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootCustomElementRegistry)
21412+
*/
2140021413
shadowRootCustomElementRegistry: string;
2140121414
/**
2140221415
* The **`shadowRootDelegatesFocus`** property of the HTMLTemplateElement interface reflects the value of the shadowrootdelegatesfocus attribute of the associated <template> element.

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1232,6 +1232,7 @@ interface WebTransportHash {
12321232
interface WebTransportOptions {
12331233
allowPooling?: boolean;
12341234
congestionControl?: WebTransportCongestionControl;
1235+
headers?: HeadersInit;
12351236
protocols?: string[];
12361237
requireUnreliable?: boolean;
12371238
serverCertificateHashes?: WebTransportHash[];

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1162,6 +1162,7 @@ interface WebTransportHash {
11621162
interface WebTransportOptions {
11631163
allowPooling?: boolean;
11641164
congestionControl?: WebTransportCongestionControl;
1165+
headers?: HeadersInit;
11651166
protocols?: string[];
11661167
requireUnreliable?: boolean;
11671168
serverCertificateHashes?: WebTransportHash[];

0 commit comments

Comments
 (0)