Skip to content

Commit 43bb6ef

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 4a002c9 commit 43bb6ef

18 files changed

+214
-221
lines changed

baselines/dom.generated.d.ts

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3195,6 +3195,11 @@ interface WindowPostMessageOptions extends StructuredSerializeOptions {
31953195
targetOrigin?: string;
31963196
}
31973197

3198+
interface WorkerAndParameters {
3199+
type?: RTCRtpScriptTransformType;
3200+
worker: Worker;
3201+
}
3202+
31983203
interface WorkerOptions {
31993204
credentials?: RequestCredentials;
32003205
name?: string;
@@ -9299,7 +9304,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
92999304
*/
93009305
vectorEffect: string;
93019306
/**
9302-
* The vertical-align CSS property sets vertical alignment of an inline, inline-block or table-cell box.
9307+
* The vertical-align CSS shorthand property sets the vertical alignment of an inline, inline-block, or table-cell box.
93039308
*
93049309
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/vertical-align)
93059310
*/
@@ -10494,7 +10499,7 @@ interface CanvasRect {
1049410499
*/
1049510500
interface CanvasRenderingContext2D extends CanvasCompositing, CanvasDrawImage, CanvasDrawPath, CanvasFillStrokeStyles, CanvasFilters, CanvasImageData, CanvasImageSmoothing, CanvasPath, CanvasPathDrawingStyles, CanvasRect, CanvasSettings, CanvasShadowStyles, CanvasState, CanvasText, CanvasTextDrawingStyles, CanvasTransform, CanvasUserInterface {
1049610501
/**
10497-
* The **`CanvasRenderingContext2D.canvas`** property, part of the Canvas API, is a read-only reference to the HTMLCanvasElement object that is associated with a given context. It might be null if there is no associated <canvas> element.
10502+
* The **`CanvasRenderingContext2D.canvas`** property, part of the Canvas API, is a read-only reference to the HTMLCanvasElement object that is associated with a given context.
1049810503
*
1049910504
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/canvas)
1050010505
*/
@@ -11504,7 +11509,7 @@ declare var DOMException: {
1150411509
*/
1150511510
interface DOMImplementation {
1150611511
/**
11507-
* The **`DOMImplementation.createDocument()`** method creates and returns an XMLDocument.
11512+
* The **`createDocument()`** method of the DOMImplementation interface creates and returns an XMLDocument.
1150811513
*
1150911514
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocument)
1151011515
*/
@@ -13000,13 +13005,13 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1300013005
*/
1300113006
close(): void;
1300213007
/**
13003-
* 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.
13008+
* The **`createAttribute()`** method of the Document interface creates a new attribute node.
1300413009
*
1300513010
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createAttribute)
1300613011
*/
1300713012
createAttribute(localName: string): Attr;
1300813013
/**
13009-
* 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.
13014+
* The **`createAttributeNS()`** method of the Document interface creates a new attribute node with the specified namespace URI and qualified name.
1301013015
*
1301113016
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createAttributeNS)
1301213017
*/
@@ -13030,7 +13035,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1303013035
*/
1303113036
createDocumentFragment(): DocumentFragment;
1303213037
/**
13033-
* In an HTML document, the **`document.createElement()`** method creates the HTML element specified by localName, or an HTMLUnknownElement if localName isn't recognized.
13038+
* The **`createElement()`** method of the Document interface creates a new HTMLElement that has the specified localName.
1303413039
*
1303513040
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createElement)
1303613041
*/
@@ -13039,7 +13044,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1303913044
createElement<K extends keyof HTMLElementDeprecatedTagNameMap>(tagName: K, options?: ElementCreationOptions): HTMLElementDeprecatedTagNameMap[K];
1304013045
createElement(tagName: string, options?: ElementCreationOptions): HTMLElement;
1304113046
/**
13042-
* Creates an element with the specified namespace URI and qualified name.
13047+
* The **`createElementNS()`** method of the Document interface creates a new element with the specified namespace URI and qualified name.
1304313048
*
1304413049
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createElementNS)
1304513050
*/
@@ -14012,7 +14017,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1401214017
*/
1401314018
setPointerCapture(pointerId: number): void;
1401414019
/**
14015-
* 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.
14020+
* 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.
1401614021
*
1401714022
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/toggleAttribute)
1401814023
*/
@@ -18529,7 +18534,7 @@ interface HTMLIFrameElement extends HTMLElement {
1852918534
*/
1853018535
height: string;
1853118536
/**
18532-
* 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.
18537+
* 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.
1853318538
*
1853418539
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/loading)
1853518540
*/
@@ -18672,7 +18677,7 @@ interface HTMLImageElement extends HTMLElement {
1867218677
*/
1867318678
isMap: boolean;
1867418679
/**
18675-
* 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.
18680+
* 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.
1867618681
*
1867718682
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/loading)
1867818683
*/
@@ -29909,7 +29914,7 @@ interface RTCRtpScriptTransform {
2990929914

2991029915
declare var RTCRtpScriptTransform: {
2991129916
prototype: RTCRtpScriptTransform;
29912-
new(worker: Worker, options?: any, transfer?: any[]): RTCRtpScriptTransform;
29917+
new(workerOrWorkerAndParameters: WorkerOrWorkerAndParameters, options?: any, transfer?: any[]): RTCRtpScriptTransform;
2991329918
};
2991429919

2991529920
/**
@@ -34996,7 +35001,7 @@ interface SecurityPolicyViolationEvent extends Event {
3499635001
*/
3499735002
readonly blockedURI: string;
3499835003
/**
34999-
* 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.
35004+
* 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.
3500035005
*
3500135006
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber)
3500235007
*/
@@ -44468,6 +44473,7 @@ type URLPatternInput = string | URLPatternInit;
4446844473
type Uint32List = Uint32Array<ArrayBufferLike> | GLuint[];
4446944474
type VibratePattern = number | number[];
4447044475
type WindowProxy = Window;
44476+
type WorkerOrWorkerAndParameters = Worker | WorkerAndParameters;
4447144477
type XMLHttpRequestBodyInit = Blob | BufferSource | FormData | URLSearchParams | string;
4447244478
type AacBitstreamFormat = "aac" | "adts";
4447344479
type AlignSetting = "center" | "end" | "left" | "right" | "start";
@@ -44650,6 +44656,7 @@ type RTCPeerConnectionState = "closed" | "connected" | "connecting" | "disconnec
4465044656
type RTCPriorityType = "high" | "low" | "medium" | "very-low";
4465144657
type RTCQualityLimitationReason = "bandwidth" | "cpu" | "none" | "other";
4465244658
type RTCRtcpMuxPolicy = "require";
44659+
type RTCRtpScriptTransformType = "sframe";
4465344660
type RTCRtpTransceiverDirection = "inactive" | "recvonly" | "sendonly" | "sendrecv" | "stopped";
4465444661
type RTCSctpTransportState = "closed" | "connected" | "connecting";
4465544662
type RTCSdpType = "answer" | "offer" | "pranswer" | "rollback";

baselines/serviceworker.generated.d.ts

Lines changed: 1 addition & 1 deletion
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
*/

baselines/sharedworker.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8073,7 +8073,7 @@ interface SecurityPolicyViolationEvent extends Event {
80738073
*/
80748074
readonly blockedURI: string;
80758075
/**
8076-
* 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.
8076+
* 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.
80778077
*
80788078
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber)
80798079
*/

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

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3192,6 +3192,11 @@ interface WindowPostMessageOptions extends StructuredSerializeOptions {
31923192
targetOrigin?: string;
31933193
}
31943194

3195+
interface WorkerAndParameters {
3196+
type?: RTCRtpScriptTransformType;
3197+
worker: Worker;
3198+
}
3199+
31953200
interface WorkerOptions {
31963201
credentials?: RequestCredentials;
31973202
name?: string;
@@ -9289,7 +9294,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
92899294
*/
92909295
vectorEffect: string;
92919296
/**
9292-
* The vertical-align CSS property sets vertical alignment of an inline, inline-block or table-cell box.
9297+
* The vertical-align CSS shorthand property sets the vertical alignment of an inline, inline-block, or table-cell box.
92939298
*
92949299
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/vertical-align)
92959300
*/
@@ -10483,7 +10488,7 @@ interface CanvasRect {
1048310488
*/
1048410489
interface CanvasRenderingContext2D extends CanvasCompositing, CanvasDrawImage, CanvasDrawPath, CanvasFillStrokeStyles, CanvasFilters, CanvasImageData, CanvasImageSmoothing, CanvasPath, CanvasPathDrawingStyles, CanvasRect, CanvasSettings, CanvasShadowStyles, CanvasState, CanvasText, CanvasTextDrawingStyles, CanvasTransform, CanvasUserInterface {
1048510490
/**
10486-
* The **`CanvasRenderingContext2D.canvas`** property, part of the Canvas API, is a read-only reference to the HTMLCanvasElement object that is associated with a given context. It might be null if there is no associated <canvas> element.
10491+
* The **`CanvasRenderingContext2D.canvas`** property, part of the Canvas API, is a read-only reference to the HTMLCanvasElement object that is associated with a given context.
1048710492
*
1048810493
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/canvas)
1048910494
*/
@@ -11493,7 +11498,7 @@ declare var DOMException: {
1149311498
*/
1149411499
interface DOMImplementation {
1149511500
/**
11496-
* The **`DOMImplementation.createDocument()`** method creates and returns an XMLDocument.
11501+
* The **`createDocument()`** method of the DOMImplementation interface creates and returns an XMLDocument.
1149711502
*
1149811503
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocument)
1149911504
*/
@@ -12989,13 +12994,13 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1298912994
*/
1299012995
close(): void;
1299112996
/**
12992-
* 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.
12997+
* The **`createAttribute()`** method of the Document interface creates a new attribute node.
1299312998
*
1299412999
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createAttribute)
1299513000
*/
1299613001
createAttribute(localName: string): Attr;
1299713002
/**
12998-
* 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.
13003+
* The **`createAttributeNS()`** method of the Document interface creates a new attribute node with the specified namespace URI and qualified name.
1299913004
*
1300013005
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createAttributeNS)
1300113006
*/
@@ -13019,7 +13024,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1301913024
*/
1302013025
createDocumentFragment(): DocumentFragment;
1302113026
/**
13022-
* In an HTML document, the **`document.createElement()`** method creates the HTML element specified by localName, or an HTMLUnknownElement if localName isn't recognized.
13027+
* The **`createElement()`** method of the Document interface creates a new HTMLElement that has the specified localName.
1302313028
*
1302413029
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createElement)
1302513030
*/
@@ -13028,7 +13033,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1302813033
createElement<K extends keyof HTMLElementDeprecatedTagNameMap>(tagName: K, options?: ElementCreationOptions): HTMLElementDeprecatedTagNameMap[K];
1302913034
createElement(tagName: string, options?: ElementCreationOptions): HTMLElement;
1303013035
/**
13031-
* Creates an element with the specified namespace URI and qualified name.
13036+
* The **`createElementNS()`** method of the Document interface creates a new element with the specified namespace URI and qualified name.
1303213037
*
1303313038
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createElementNS)
1303413039
*/
@@ -13999,7 +14004,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1399914004
*/
1400014005
setPointerCapture(pointerId: number): void;
1400114006
/**
14002-
* 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.
14007+
* 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.
1400314008
*
1400414009
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/toggleAttribute)
1400514010
*/
@@ -18512,7 +18517,7 @@ interface HTMLIFrameElement extends HTMLElement {
1851218517
*/
1851318518
height: string;
1851418519
/**
18515-
* 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.
18520+
* 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.
1851618521
*
1851718522
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/loading)
1851818523
*/
@@ -18654,7 +18659,7 @@ interface HTMLImageElement extends HTMLElement {
1865418659
*/
1865518660
isMap: boolean;
1865618661
/**
18657-
* 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.
18662+
* 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.
1865818663
*
1865918664
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/loading)
1866018665
*/
@@ -29885,7 +29890,7 @@ interface RTCRtpScriptTransform {
2988529890

2988629891
declare var RTCRtpScriptTransform: {
2988729892
prototype: RTCRtpScriptTransform;
29888-
new(worker: Worker, options?: any, transfer?: any[]): RTCRtpScriptTransform;
29893+
new(workerOrWorkerAndParameters: WorkerOrWorkerAndParameters, options?: any, transfer?: any[]): RTCRtpScriptTransform;
2988929894
};
2989029895

2989129896
/**
@@ -34971,7 +34976,7 @@ interface SecurityPolicyViolationEvent extends Event {
3497134976
*/
3497234977
readonly blockedURI: string;
3497334978
/**
34974-
* 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.
34979+
* 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.
3497534980
*
3497634981
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber)
3497734982
*/
@@ -44442,6 +44447,7 @@ type URLPatternInput = string | URLPatternInit;
4444244447
type Uint32List = Uint32Array | GLuint[];
4444344448
type VibratePattern = number | number[];
4444444449
type WindowProxy = Window;
44450+
type WorkerOrWorkerAndParameters = Worker | WorkerAndParameters;
4444544451
type XMLHttpRequestBodyInit = Blob | BufferSource | FormData | URLSearchParams | string;
4444644452
type AacBitstreamFormat = "aac" | "adts";
4444744453
type AlignSetting = "center" | "end" | "left" | "right" | "start";
@@ -44624,6 +44630,7 @@ type RTCPeerConnectionState = "closed" | "connected" | "connecting" | "disconnec
4462444630
type RTCPriorityType = "high" | "low" | "medium" | "very-low";
4462544631
type RTCQualityLimitationReason = "bandwidth" | "cpu" | "none" | "other";
4462644632
type RTCRtcpMuxPolicy = "require";
44633+
type RTCRtpScriptTransformType = "sframe";
4462744634
type RTCRtpTransceiverDirection = "inactive" | "recvonly" | "sendonly" | "sendrecv" | "stopped";
4462844635
type RTCSctpTransportState = "closed" | "connected" | "connecting";
4462944636
type RTCSdpType = "answer" | "offer" | "pranswer" | "rollback";

0 commit comments

Comments
 (0)