Skip to content

Commit b44ef9e

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 4681f74 commit b44ef9e

18 files changed

+448
-419
lines changed

baselines/dom.generated.d.ts

Lines changed: 77 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ interface AnimationPlaybackEventInit extends EventInit {
8383
timelineTime?: CSSNumberish | null;
8484
}
8585

86+
interface AriaNotificationOptions {
87+
priority?: AriaNotifyPriority;
88+
}
89+
8690
interface AssignedNodesOptions {
8791
flatten?: boolean;
8892
}
@@ -1215,6 +1219,15 @@ interface HashChangeEventInit extends EventInit {
12151219
oldURL?: string;
12161220
}
12171221

1222+
interface HighlightHitResult {
1223+
highlight?: Highlight;
1224+
ranges?: AbstractRange[];
1225+
}
1226+
1227+
interface HighlightsFromPointOptions {
1228+
shadowRoots?: ShadowRoot[];
1229+
}
1230+
12181231
interface HkdfParams extends Algorithm {
12191232
hash: HashAlgorithmIdentifier;
12201233
info: BufferSource;
@@ -3360,6 +3373,11 @@ interface ARIAMixin {
33603373
role: string | null;
33613374
}
33623375

3376+
interface ARIANotifyMixin {
3377+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/ariaNotify) */
3378+
ariaNotify(announcement: string, options?: AriaNotificationOptions): void;
3379+
}
3380+
33633381
/**
33643382
* The **`AbortController`** interface represents a controller object that allows you to abort one or more Web requests as and when desired.
33653383
*
@@ -5369,6 +5387,36 @@ declare var CSSCounterStyleRule: {
53695387
new(): CSSCounterStyleRule;
53705388
};
53715389

5390+
/**
5391+
* The **`CSSFontFaceDescriptors`** interface represents a CSS declaration block for an @font-face at-rule.
5392+
*
5393+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFaceDescriptors)
5394+
*/
5395+
interface CSSFontFaceDescriptors extends CSSStyleDeclarationBase {
5396+
"font-display": string;
5397+
"font-family": string;
5398+
"font-feature-settings": string;
5399+
"font-stretch": string;
5400+
"font-style": string;
5401+
"font-weight": string;
5402+
fontDisplay: string;
5403+
fontFamily: string;
5404+
fontFeatureSettings: string;
5405+
fontStretch: string;
5406+
fontStyle: string;
5407+
fontWeight: string;
5408+
"size-adjust": string;
5409+
sizeAdjust: string;
5410+
src: string;
5411+
"unicode-range": string;
5412+
unicodeRange: string;
5413+
}
5414+
5415+
declare var CSSFontFaceDescriptors: {
5416+
prototype: CSSFontFaceDescriptors;
5417+
new(): CSSFontFaceDescriptors;
5418+
};
5419+
53725420
/**
53735421
* The **`CSSFontFaceRule`** interface represents an @font-face at-rule.
53745422
*
@@ -9260,7 +9308,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
92609308
*/
92619309
vectorEffect: string;
92629310
/**
9263-
* The vertical-align CSS property sets vertical alignment of an inline, inline-block or table-cell box.
9311+
* The vertical-align CSS shorthand property sets the vertical alignment of an inline, inline-block, or table-cell box.
92649312
*
92659313
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/vertical-align)
92669314
*/
@@ -11465,7 +11513,7 @@ declare var DOMException: {
1146511513
*/
1146611514
interface DOMImplementation {
1146711515
/**
11468-
* The **`DOMImplementation.createDocument()`** method creates and returns an XMLDocument.
11516+
* The **`createDocument()`** method of the DOMImplementation interface creates and returns an XMLDocument.
1146911517
*
1147011518
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocument)
1147111519
*/
@@ -12620,7 +12668,7 @@ interface DocumentEventMap extends GlobalEventHandlersEventMap {
1262012668
*
1262112669
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document)
1262212670
*/
12623-
interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEventHandlers, NonElementParentNode, ParentNode, XPathEvaluatorBase {
12671+
interface Document extends Node, ARIANotifyMixin, DocumentOrShadowRoot, FontFaceSource, GlobalEventHandlers, NonElementParentNode, ParentNode, XPathEvaluatorBase {
1262412672
/**
1262512673
* The **`URL`** read-only property of the Document interface returns the document location as a string.
1262612674
*
@@ -12961,13 +13009,13 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1296113009
*/
1296213010
close(): void;
1296313011
/**
12964-
* The **`Document.createAttribute()`** method creates a new attribute node, and returns it. The object created is a node implementing the Attr interface. The DOM does not enforce what sort of attributes can be added to a particular element in this manner.
13012+
* The **`createAttribute()`** method of the Document interface creates a new attribute node.
1296513013
*
1296613014
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createAttribute)
1296713015
*/
1296813016
createAttribute(localName: string): Attr;
1296913017
/**
12970-
* The **`Document.createAttributeNS()`** method creates a new attribute node with the specified namespace URI and qualified name, and returns it. The object created is a node implementing the Attr interface. The DOM does not enforce what sort of attributes can be added to a particular element in this manner.
13018+
* The **`createAttributeNS()`** method of the Document interface creates a new attribute node with the specified namespace URI and qualified name.
1297113019
*
1297213020
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createAttributeNS)
1297313021
*/
@@ -12991,7 +13039,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1299113039
*/
1299213040
createDocumentFragment(): DocumentFragment;
1299313041
/**
12994-
* In an HTML document, the **`document.createElement()`** method creates the HTML element specified by localName, or an HTMLUnknownElement if localName isn't recognized.
13042+
* The **`createElement()`** method of the Document interface creates a new HTMLElement that has the specified localName.
1299513043
*
1299613044
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createElement)
1299713045
*/
@@ -13000,7 +13048,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1300013048
createElement<K extends keyof HTMLElementDeprecatedTagNameMap>(tagName: K, options?: ElementCreationOptions): HTMLElementDeprecatedTagNameMap[K];
1300113049
createElement(tagName: string, options?: ElementCreationOptions): HTMLElement;
1300213050
/**
13003-
* Creates an element with the specified namespace URI and qualified name.
13051+
* The **`createElementNS()`** method of the Document interface creates a new element with the specified namespace URI and qualified name.
1300413052
*
1300513053
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createElementNS)
1300613054
*/
@@ -13575,7 +13623,7 @@ interface ElementEventMap {
1357513623
*
1357613624
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element)
1357713625
*/
13578-
interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTypeChildNode, ParentNode, Slottable {
13626+
interface Element extends Node, ARIAMixin, ARIANotifyMixin, Animatable, ChildNode, NonDocumentTypeChildNode, ParentNode, Slottable {
1357913627
/**
1358013628
* The **`Element.attributes`** property returns a live collection of all attribute nodes registered to the specified node. It is a NamedNodeMap, not an Array, so it has no Array methods and the Attr nodes' indexes may differ among browsers. To be more specific, attributes is a key/value pair of strings that represents any information regarding that attribute.
1358113629
*
@@ -13973,7 +14021,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1397314021
*/
1397414022
setPointerCapture(pointerId: number): void;
1397514023
/**
13976-
* The **`toggleAttribute()`** method of the Element interface toggles a Boolean attribute (removing it if it is present and adding it if it is not present) on the given element.
14024+
* The **`toggleAttribute()`** method of the Element interface toggles a Boolean attribute on the given element, removing it if present and adding it if not present.
1397714025
*
1397814026
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/toggleAttribute)
1397914027
*/
@@ -18490,7 +18538,7 @@ interface HTMLIFrameElement extends HTMLElement {
1849018538
*/
1849118539
height: string;
1849218540
/**
18493-
* The **`loading`** property of the HTMLIFrameElement interface is a string that provides a hint to the user agent indicating whether the iframe should be loaded immediately on page load, or only when it is needed.
18541+
* The **`loading`** property of the HTMLIFrameElement interface is a string that provides a hint to the browser indicating whether the iframe should be loaded immediately on page load, or only when it is needed.
1849418542
*
1849518543
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/loading)
1849618544
*/
@@ -18633,7 +18681,7 @@ interface HTMLImageElement extends HTMLElement {
1863318681
*/
1863418682
isMap: boolean;
1863518683
/**
18636-
* The **`loading`** property of the HTMLImageElement interface provides a hint to the user agent on how to handle the loading of the image which is currently outside the window's visual viewport. This helps to optimize the loading of the document's contents by postponing loading the image until it's expected to be needed, rather than immediately during the initial page load. It reflects the <img> element's loading content attribute.
18684+
* The **`loading`** property of the HTMLImageElement interface provides a hint to the browser on how to handle the loading of the image which is currently outside the window's visual viewport. This helps to optimize the loading of the document's contents by postponing loading the image until it's expected to be needed, rather than immediately during the initial page load. It reflects the <img> element's loading content attribute.
1863718685
*
1863818686
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/loading)
1863918687
*/
@@ -21912,6 +21960,12 @@ declare var Highlight: {
2191221960
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HighlightRegistry)
2191321961
*/
2191421962
interface HighlightRegistry {
21963+
/**
21964+
* The **`highlightsFromPoint()`** method of the HighlightRegistry interface returns an array of objects representing the custom highlights applied at a specific point within the viewport.
21965+
*
21966+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HighlightRegistry/highlightsFromPoint)
21967+
*/
21968+
highlightsFromPoint(x: number, y: number, options?: HighlightsFromPointOptions): HighlightHitResult[];
2191521969
forEach(callbackfn: (value: Highlight, key: string, parent: HighlightRegistry) => void, thisArg?: any): void;
2191621970
}
2191721971

@@ -29479,6 +29533,12 @@ interface RTCIceTransport extends EventTarget {
2947929533
onselectedcandidatepairchange: ((this: RTCIceTransport, ev: Event) => any) | null;
2948029534
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceTransport/statechange_event) */
2948129535
onstatechange: ((this: RTCIceTransport, ev: Event) => any) | null;
29536+
/**
29537+
* The **`role`** read-only property of the RTCIceTransport interface indicates which ICE role the transport is fulfilling: that of the controlling agent, or the agent that is being controlled.
29538+
*
29539+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceTransport/role)
29540+
*/
29541+
readonly role: RTCIceRole;
2948229542
/**
2948329543
* The **`state`** read-only property of the RTCIceTransport interface returns the current state of the ICE transport, so you can determine the state of ICE gathering in which the ICE agent currently is operating.
2948429544
*
@@ -30010,7 +30070,7 @@ interface RTCSctpTransport extends EventTarget {
3001030070
*
3001130071
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/maxMessageSize)
3001230072
*/
30013-
readonly maxMessageSize: number;
30073+
readonly maxMessageSize: number | null;
3001430074
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/statechange_event) */
3001530075
onstatechange: ((this: RTCSctpTransport, ev: Event) => any) | null;
3001630076
/**
@@ -34945,7 +35005,7 @@ interface SecurityPolicyViolationEvent extends Event {
3494535005
*/
3494635006
readonly blockedURI: string;
3494735007
/**
34948-
* The **`columnNumber`** read-only property of the SecurityPolicyViolationEvent interface is the column number in the document or worker script at which the Content Security Policy (CSP) violation occurred.
35008+
* The **`columnNumber`** read-only property of the SecurityPolicyViolationEvent interface is the character position in the source file line of the document or worker script at which the Content Security Policy (CSP) violation occurred.
3494935009
*
3495035010
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber)
3495135011
*/
@@ -38303,6 +38363,7 @@ declare var ViewTransitionTypeSet: {
3830338363
interface VisualViewportEventMap {
3830438364
"resize": Event;
3830538365
"scroll": Event;
38366+
"scrollend": Event;
3830638367
}
3830738368

3830838369
/**
@@ -38333,6 +38394,8 @@ interface VisualViewport extends EventTarget {
3833338394
onresize: ((this: VisualViewport, ev: Event) => any) | null;
3833438395
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VisualViewport/scroll_event) */
3833538396
onscroll: ((this: VisualViewport, ev: Event) => any) | null;
38397+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VisualViewport/scrollend_event) */
38398+
onscrollend: ((this: VisualViewport, ev: Event) => any) | null;
3833638399
/**
3833738400
* The **`pageLeft`** read-only property of the VisualViewport interface returns the x coordinate of the left edge of the visual viewport relative to the initial containing block origin, in CSS pixels, or 0 if current document is not fully active.
3833838401
*
@@ -41168,12 +41231,6 @@ declare var WebTransportBidirectionalStream: {
4116841231
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream)
4116941232
*/
4117041233
interface WebTransportDatagramDuplexStream {
41171-
/**
41172-
* The **`incomingHighWaterMark`** property of the WebTransportDatagramDuplexStream interface gets or sets the high water mark for incoming chunks of data — this is the maximum size, in chunks, that the incoming ReadableStream's internal queue can reach before it is considered full. See Internal queues and queuing strategies for more information.
41173-
*
41174-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark)
41175-
*/
41176-
incomingHighWaterMark: number;
4117741234
/**
4117841235
* The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds.
4117941236
*
@@ -41186,12 +41243,6 @@ interface WebTransportDatagramDuplexStream {
4118641243
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize)
4118741244
*/
4118841245
readonly maxDatagramSize: number;
41189-
/**
41190-
* The **`outgoingHighWaterMark`** property of the WebTransportDatagramDuplexStream interface gets or sets the high water mark for outgoing chunks of data — this is the maximum size, in chunks, that the outgoing WritableStream's internal queue can reach before it is considered full. See Internal queues and queuing strategies for more information.
41191-
*
41192-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark)
41193-
*/
41194-
outgoingHighWaterMark: number;
4119541246
/**
4119641247
* The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds.
4119741248
*
@@ -44421,6 +44472,7 @@ type AlphaOption = "discard" | "keep";
4442144472
type AnimationPlayState = "finished" | "idle" | "paused" | "running";
4442244473
type AnimationReplaceState = "active" | "persisted" | "removed";
4442344474
type AppendMode = "segments" | "sequence";
44475+
type AriaNotifyPriority = "high" | "normal";
4442444476
type AttestationConveyancePreference = "direct" | "enterprise" | "indirect" | "none";
4442544477
type AudioContextLatencyCategory = "balanced" | "interactive" | "playback";
4442644478
type AudioContextState = "closed" | "interrupted" | "running" | "suspended";

baselines/serviceworker.generated.d.ts

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8490,7 +8490,7 @@ interface SecurityPolicyViolationEvent extends Event {
84908490
*/
84918491
readonly blockedURI: string;
84928492
/**
8493-
* The **`columnNumber`** read-only property of the SecurityPolicyViolationEvent interface is the column number in the document or worker script at which the Content Security Policy (CSP) violation occurred.
8493+
* The **`columnNumber`** read-only property of the SecurityPolicyViolationEvent interface is the character position in the source file line of the document or worker script at which the Content Security Policy (CSP) violation occurred.
84948494
*
84958495
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber)
84968496
*/
@@ -12291,12 +12291,6 @@ declare var WebTransportBidirectionalStream: {
1229112291
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream)
1229212292
*/
1229312293
interface WebTransportDatagramDuplexStream {
12294-
/**
12295-
* The **`incomingHighWaterMark`** property of the WebTransportDatagramDuplexStream interface gets or sets the high water mark for incoming chunks of data — this is the maximum size, in chunks, that the incoming ReadableStream's internal queue can reach before it is considered full. See Internal queues and queuing strategies for more information.
12296-
*
12297-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark)
12298-
*/
12299-
incomingHighWaterMark: number;
1230012294
/**
1230112295
* The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds.
1230212296
*
@@ -12309,12 +12303,6 @@ interface WebTransportDatagramDuplexStream {
1230912303
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize)
1231012304
*/
1231112305
readonly maxDatagramSize: number;
12312-
/**
12313-
* The **`outgoingHighWaterMark`** property of the WebTransportDatagramDuplexStream interface gets or sets the high water mark for outgoing chunks of data — this is the maximum size, in chunks, that the outgoing WritableStream's internal queue can reach before it is considered full. See Internal queues and queuing strategies for more information.
12314-
*
12315-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark)
12316-
*/
12317-
outgoingHighWaterMark: number;
1231812306
/**
1231912307
* The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds.
1232012308
*

0 commit comments

Comments
 (0)