Skip to content

Commit f38fef2

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

18 files changed

+265
-361
lines changed

baselines/dom.generated.d.ts

Lines changed: 45 additions & 87 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
*/
@@ -7389,7 +7390,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
73897390
*/
73907391
columnWidth: string;
73917392
/**
7392-
* The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.
7393+
* The **`columns`** CSS shorthand property sets the maximum number of columns to use when drawing an element's contents, along with the minimum width and maximum height of the element's columns.
73937394
*
73947395
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/columns)
73957396
*/
@@ -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.
@@ -17096,7 +17105,7 @@ declare var HTMLAllCollection: {
1709617105
*
1709717106
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement)
1709817107
*/
17099-
interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils {
17108+
interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils, HyperlinkElementUtils {
1710017109
/** @deprecated */
1710117110
charset: string;
1710217111
/** @deprecated */
@@ -17178,7 +17187,7 @@ declare var HTMLAnchorElement: {
1717817187
*
1717917188
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement)
1718017189
*/
17181-
interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
17190+
interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils, HyperlinkElementUtils {
1718217191
/**
1718317192
* The **`alt`** property of the HTMLAreaElement interface specifies the text of the hyperlink, defining the textual label for an image map's link. It reflects the <area> element's alt attribute.
1718417193
*
@@ -18430,30 +18439,6 @@ declare var HTMLHtmlElement: {
1843018439
};
1843118440

1843218441
interface HTMLHyperlinkElementUtils {
18433-
/**
18434-
* Returns the hyperlink's URL's fragment (includes leading "#" if non-empty).
18435-
*
18436-
* Can be set, to change the URL's fragment (ignores leading "#").
18437-
*
18438-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/hash)
18439-
*/
18440-
hash: string;
18441-
/**
18442-
* Returns the hyperlink's URL's host and port (if different from the default port for the scheme).
18443-
*
18444-
* Can be set, to change the URL's host and port.
18445-
*
18446-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/host)
18447-
*/
18448-
host: string;
18449-
/**
18450-
* Returns the hyperlink's URL's host.
18451-
*
18452-
* Can be set, to change the URL's host.
18453-
*
18454-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/hostname)
18455-
*/
18456-
hostname: string;
1845718442
/**
1845818443
* Returns the hyperlink's URL.
1845918444
*
@@ -18463,60 +18448,6 @@ interface HTMLHyperlinkElementUtils {
1846318448
*/
1846418449
href: string;
1846518450
toString(): string;
18466-
/**
18467-
* Returns the hyperlink's URL's origin.
18468-
*
18469-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/origin)
18470-
*/
18471-
readonly origin: string;
18472-
/**
18473-
* Returns the hyperlink's URL's password.
18474-
*
18475-
* Can be set, to change the URL's password.
18476-
*
18477-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/password)
18478-
*/
18479-
password: string;
18480-
/**
18481-
* Returns the hyperlink's URL's path.
18482-
*
18483-
* Can be set, to change the URL's path.
18484-
*
18485-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/pathname)
18486-
*/
18487-
pathname: string;
18488-
/**
18489-
* Returns the hyperlink's URL's port.
18490-
*
18491-
* Can be set, to change the URL's port.
18492-
*
18493-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/port)
18494-
*/
18495-
port: string;
18496-
/**
18497-
* Returns the hyperlink's URL's scheme.
18498-
*
18499-
* Can be set, to change the URL's scheme.
18500-
*
18501-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/protocol)
18502-
*/
18503-
protocol: string;
18504-
/**
18505-
* Returns the hyperlink's URL's query (includes leading "?" if non-empty).
18506-
*
18507-
* Can be set, to change the URL's query (ignores leading "?").
18508-
*
18509-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/search)
18510-
*/
18511-
search: string;
18512-
/**
18513-
* Returns the hyperlink's URL's username.
18514-
*
18515-
* Can be set, to change the URL's username.
18516-
*
18517-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/username)
18518-
*/
18519-
username: string;
1852018451
}
1852118452

1852218453
/**
@@ -21399,7 +21330,11 @@ interface HTMLTemplateElement extends HTMLElement {
2139921330
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootClonable)
2140021331
*/
2140121332
shadowRootClonable: boolean;
21402-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootCustomElementRegistry) */
21333+
/**
21334+
* The **`shadowRootCustomElementRegistry`** property of the HTMLTemplateElement interface reflects the value of the shadowrootcustomelementregistry attribute of the associated <template> element.
21335+
*
21336+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootCustomElementRegistry)
21337+
*/
2140321338
shadowRootCustomElementRegistry: string;
2140421339
/**
2140521340
* The **`shadowRootDelegatesFocus`** property of the HTMLTemplateElement interface reflects the value of the shadowrootdelegatesfocus attribute of the associated <template> element.
@@ -22047,6 +21982,29 @@ declare var History: {
2204721982
new(): History;
2204821983
};
2204921984

21985+
interface HyperlinkElementUtils {
21986+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/hash) */
21987+
hash: string;
21988+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/host) */
21989+
host: string;
21990+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/hostname) */
21991+
hostname: string;
21992+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/origin) */
21993+
readonly origin: string;
21994+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/password) */
21995+
password: string;
21996+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/pathname) */
21997+
pathname: string;
21998+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/port) */
21999+
port: string;
22000+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/protocol) */
22001+
protocol: string;
22002+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/search) */
22003+
search: string;
22004+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/username) */
22005+
username: string;
22006+
}
22007+
2205022008
/**
2205122009
* The **`IDBCursor`** interface of the IndexedDB API represents a cursor for traversing or iterating over multiple records in a database.
2205222010
*

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[];

0 commit comments

Comments
 (0)