Skip to content

Commit 4c1640e

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 52dadb5 commit 4c1640e

22 files changed

Lines changed: 1167 additions & 366 deletions

baselines/audioworklet.generated.d.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ interface Event {
600600
*/
601601
readonly eventPhase: number;
602602
/**
603-
* The **`isTrusted`** read-only property of the Event interface is a boolean value that is true when the event was generated by the user agent (including via user actions and programmatic methods such as HTMLElement.focus()), and false when the event was dispatched via EventTarget.dispatchEvent(). The only exception is the click event, which initializes the isTrusted property to false in user agents.
603+
* The **`isTrusted`** read-only property of the Event interface is a boolean value that is true when the event was generated by the user agent (including via user actions and programmatic methods such as HTMLElement.focus()), and false when the event was dispatched via EventTarget.dispatchEvent(). The click event fired through HTMLElement.click() sets the isTrusted property to false.
604604
*
605605
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/isTrusted)
606606
*/
@@ -831,6 +831,18 @@ declare var MessagePort: {
831831
new(): MessagePort;
832832
};
833833

834+
interface Origin {
835+
readonly opaque: boolean;
836+
isSameOrigin(other: Origin): boolean;
837+
isSameSite(other: Origin): boolean;
838+
}
839+
840+
declare var Origin: {
841+
prototype: Origin;
842+
new(): Origin;
843+
from(value: any): Origin;
844+
};
845+
834846
/**
835847
* The **`PromiseRejectionEvent`** interface represents events which are sent to the global script context when JavaScript Promises are rejected. These events are particularly useful for telemetry and debugging purposes.
836848
*

baselines/dom.generated.d.ts

Lines changed: 82 additions & 24 deletions
Large diffs are not rendered by default.

baselines/serviceworker.generated.d.ts

Lines changed: 45 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1560,9 +1560,29 @@ declare var CSSKeywordValue: {
15601560
new(value: string): CSSKeywordValue;
15611561
};
15621562

1563+
/**
1564+
* The **`CSSMathClamp`** interface of the CSS Typed Object Model API represents the CSS clamp() function. It inherits properties and methods from its parent CSSNumericValue.
1565+
*
1566+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathClamp)
1567+
*/
15631568
interface CSSMathClamp extends CSSMathValue {
1569+
/**
1570+
* The **`lower`** read-only property of the CSSMathClamp interface returns a CSSNumericValue object containing the minimum value of a CSSMathClamp object.
1571+
*
1572+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathClamp/lower)
1573+
*/
15641574
readonly lower: CSSNumericValue;
1575+
/**
1576+
* The **`upper`** read-only property of the CSSMathClamp interface returns a CSSNumericValue object containing the maximum value of a CSSMathClamp object.
1577+
*
1578+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathClamp/upper)
1579+
*/
15651580
readonly upper: CSSNumericValue;
1581+
/**
1582+
* The **`value`** read-only property of the CSSMathClamp interface returns a CSSNumericValue object containing the preferred value of a CSSMathClamp object.
1583+
*
1584+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathClamp/value)
1585+
*/
15661586
readonly value: CSSNumericValue;
15671587
}
15681588

@@ -2073,13 +2093,13 @@ declare var CSSTranslate: {
20732093
};
20742094

20752095
/**
2076-
* The **`CSSUnitValue`** interface of the CSS Typed Object Model API represents values that contain a single unit type. For example, "42px" would be represented by a CSSNumericValue.
2096+
* The **`CSSUnitValue`** interface of the CSS Typed Object Model API represents values that contain a single unit type.
20772097
*
20782098
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnitValue)
20792099
*/
20802100
interface CSSUnitValue extends CSSNumericValue {
20812101
/**
2082-
* The **`CSSUnitValue.unit`** read-only property of the CSSUnitValue interface returns a string indicating the type of unit.
2102+
* The **`CSSUnitValue.unit`** read-only property of the CSSUnitValue interface returns a string indicating the unit type.
20832103
*
20842104
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnitValue/unit)
20852105
*/
@@ -3736,7 +3756,7 @@ interface Event {
37363756
*/
37373757
readonly eventPhase: number;
37383758
/**
3739-
* The **`isTrusted`** read-only property of the Event interface is a boolean value that is true when the event was generated by the user agent (including via user actions and programmatic methods such as HTMLElement.focus()), and false when the event was dispatched via EventTarget.dispatchEvent(). The only exception is the click event, which initializes the isTrusted property to false in user agents.
3759+
* The **`isTrusted`** read-only property of the Event interface is a boolean value that is true when the event was generated by the user agent (including via user actions and programmatic methods such as HTMLElement.focus()), and false when the event was dispatched via EventTarget.dispatchEvent(). The click event fired through HTMLElement.click() sets the isTrusted property to false.
37403760
*
37413761
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/isTrusted)
37423762
*/
@@ -7236,7 +7256,7 @@ interface OffscreenCanvas extends EventTarget {
72367256
getContext(contextId: "webgl2", options?: any): WebGL2RenderingContext | null;
72377257
getContext(contextId: OffscreenRenderingContextId, options?: any): OffscreenRenderingContext | null;
72387258
/**
7239-
* The **`OffscreenCanvas.transferToImageBitmap()`** method creates an ImageBitmap object from the most recently rendered image of the OffscreenCanvas. The OffscreenCanvas allocates a new image for its subsequent rendering.
7259+
* The **`transferToImageBitmap()`** method of the OffscreenCanvas interface creates an ImageBitmap object from the most recently rendered image of the OffscreenCanvas. The image in the OffscreenCanvas is replaced with a new blank image for subsequent rendering.
72407260
*
72417261
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/transferToImageBitmap)
72427262
*/
@@ -7267,6 +7287,18 @@ declare var OffscreenCanvasRenderingContext2D: {
72677287
new(): OffscreenCanvasRenderingContext2D;
72687288
};
72697289

7290+
interface Origin {
7291+
readonly opaque: boolean;
7292+
isSameOrigin(other: Origin): boolean;
7293+
isSameSite(other: Origin): boolean;
7294+
}
7295+
7296+
declare var Origin: {
7297+
prototype: Origin;
7298+
new(): Origin;
7299+
from(value: any): Origin;
7300+
};
7301+
72707302
/**
72717303
* The **`Path2D`** interface of the Canvas 2D API is used to declare a path that can then be used on a CanvasRenderingContext2D object. The path methods of the CanvasRenderingContext2D interface are also present on this interface, which gives you the convenience of being able to retain and replay your path whenever desired.
72727304
*
@@ -7548,6 +7580,12 @@ interface PerformanceResourceTiming extends PerformanceEntry {
75487580
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/connectStart)
75497581
*/
75507582
readonly connectStart: DOMHighResTimeStamp;
7583+
/**
7584+
* The **`contentType`** read-only property of the PerformanceResourceTiming interface is a string indicating the content type of the fetched resource, formatted as a MIME type and subtype separated by a forward slash.
7585+
*
7586+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/contentType)
7587+
*/
7588+
readonly contentType: string;
75517589
/**
75527590
* The **`decodedBodySize`** read-only property returns the size (in octets) received from the fetch (HTTP or cache) of the message body after removing any applied content encoding (like gzip or Brotli). If the resource is retrieved from an application cache or local resources, it returns the size of the payload after removing any applied content encoding.
75537591
*
@@ -8490,7 +8528,7 @@ interface SecurityPolicyViolationEvent extends Event {
84908528
*/
84918529
readonly blockedURI: string;
84928530
/**
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.
8531+
* 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.
84948532
*
84958533
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber)
84968534
*/
@@ -9784,13 +9822,13 @@ interface WEBGL_draw_buffers {
97849822
*/
97859823
interface WEBGL_lose_context {
97869824
/**
9787-
* The **`WEBGL_lose_context.loseContext()`** method is part of the WebGL API and allows you to simulate losing the context of a WebGLRenderingContext context.
9825+
* The **`loseContext()`** method of the WEBGL_lose_context extension is part of the WebGL API and allows you to simulate losing the context of a WebGLRenderingContext.
97889826
*
97899827
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_lose_context/loseContext)
97909828
*/
97919829
loseContext(): void;
97929830
/**
9793-
* The **`WEBGL_lose_context.restoreContext()`** method is part of the WebGL API and allows you to simulate restoring the context of a WebGLRenderingContext object.
9831+
* The **`restoreContext()`** method of the WEBGL_lose_context extension is part of the WebGL API and allows you to simulate restoring the context of a WebGLRenderingContext.
97949832
*
97959833
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_lose_context/restoreContext)
97969834
*/

baselines/sharedworker.generated.d.ts

Lines changed: 45 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1496,9 +1496,29 @@ declare var CSSKeywordValue: {
14961496
new(value: string): CSSKeywordValue;
14971497
};
14981498

1499+
/**
1500+
* The **`CSSMathClamp`** interface of the CSS Typed Object Model API represents the CSS clamp() function. It inherits properties and methods from its parent CSSNumericValue.
1501+
*
1502+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathClamp)
1503+
*/
14991504
interface CSSMathClamp extends CSSMathValue {
1505+
/**
1506+
* The **`lower`** read-only property of the CSSMathClamp interface returns a CSSNumericValue object containing the minimum value of a CSSMathClamp object.
1507+
*
1508+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathClamp/lower)
1509+
*/
15001510
readonly lower: CSSNumericValue;
1511+
/**
1512+
* The **`upper`** read-only property of the CSSMathClamp interface returns a CSSNumericValue object containing the maximum value of a CSSMathClamp object.
1513+
*
1514+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathClamp/upper)
1515+
*/
15011516
readonly upper: CSSNumericValue;
1517+
/**
1518+
* The **`value`** read-only property of the CSSMathClamp interface returns a CSSNumericValue object containing the preferred value of a CSSMathClamp object.
1519+
*
1520+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathClamp/value)
1521+
*/
15021522
readonly value: CSSNumericValue;
15031523
}
15041524

@@ -2009,13 +2029,13 @@ declare var CSSTranslate: {
20092029
};
20102030

20112031
/**
2012-
* The **`CSSUnitValue`** interface of the CSS Typed Object Model API represents values that contain a single unit type. For example, "42px" would be represented by a CSSNumericValue.
2032+
* The **`CSSUnitValue`** interface of the CSS Typed Object Model API represents values that contain a single unit type.
20132033
*
20142034
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnitValue)
20152035
*/
20162036
interface CSSUnitValue extends CSSNumericValue {
20172037
/**
2018-
* The **`CSSUnitValue.unit`** read-only property of the CSSUnitValue interface returns a string indicating the type of unit.
2038+
* The **`CSSUnitValue.unit`** read-only property of the CSSUnitValue interface returns a string indicating the unit type.
20192039
*
20202040
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnitValue/unit)
20212041
*/
@@ -3517,7 +3537,7 @@ interface Event {
35173537
*/
35183538
readonly eventPhase: number;
35193539
/**
3520-
* The **`isTrusted`** read-only property of the Event interface is a boolean value that is true when the event was generated by the user agent (including via user actions and programmatic methods such as HTMLElement.focus()), and false when the event was dispatched via EventTarget.dispatchEvent(). The only exception is the click event, which initializes the isTrusted property to false in user agents.
3540+
* The **`isTrusted`** read-only property of the Event interface is a boolean value that is true when the event was generated by the user agent (including via user actions and programmatic methods such as HTMLElement.focus()), and false when the event was dispatched via EventTarget.dispatchEvent(). The click event fired through HTMLElement.click() sets the isTrusted property to false.
35213541
*
35223542
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/isTrusted)
35233543
*/
@@ -6894,7 +6914,7 @@ interface OffscreenCanvas extends EventTarget {
68946914
getContext(contextId: "webgl2", options?: any): WebGL2RenderingContext | null;
68956915
getContext(contextId: OffscreenRenderingContextId, options?: any): OffscreenRenderingContext | null;
68966916
/**
6897-
* The **`OffscreenCanvas.transferToImageBitmap()`** method creates an ImageBitmap object from the most recently rendered image of the OffscreenCanvas. The OffscreenCanvas allocates a new image for its subsequent rendering.
6917+
* The **`transferToImageBitmap()`** method of the OffscreenCanvas interface creates an ImageBitmap object from the most recently rendered image of the OffscreenCanvas. The image in the OffscreenCanvas is replaced with a new blank image for subsequent rendering.
68986918
*
68996919
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/transferToImageBitmap)
69006920
*/
@@ -6925,6 +6945,18 @@ declare var OffscreenCanvasRenderingContext2D: {
69256945
new(): OffscreenCanvasRenderingContext2D;
69266946
};
69276947

6948+
interface Origin {
6949+
readonly opaque: boolean;
6950+
isSameOrigin(other: Origin): boolean;
6951+
isSameSite(other: Origin): boolean;
6952+
}
6953+
6954+
declare var Origin: {
6955+
prototype: Origin;
6956+
new(): Origin;
6957+
from(value: any): Origin;
6958+
};
6959+
69286960
/**
69296961
* The **`Path2D`** interface of the Canvas 2D API is used to declare a path that can then be used on a CanvasRenderingContext2D object. The path methods of the CanvasRenderingContext2D interface are also present on this interface, which gives you the convenience of being able to retain and replay your path whenever desired.
69306962
*
@@ -7206,6 +7238,12 @@ interface PerformanceResourceTiming extends PerformanceEntry {
72067238
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/connectStart)
72077239
*/
72087240
readonly connectStart: DOMHighResTimeStamp;
7241+
/**
7242+
* The **`contentType`** read-only property of the PerformanceResourceTiming interface is a string indicating the content type of the fetched resource, formatted as a MIME type and subtype separated by a forward slash.
7243+
*
7244+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/contentType)
7245+
*/
7246+
readonly contentType: string;
72097247
/**
72107248
* The **`decodedBodySize`** read-only property returns the size (in octets) received from the fetch (HTTP or cache) of the message body after removing any applied content encoding (like gzip or Brotli). If the resource is retrieved from an application cache or local resources, it returns the size of the payload after removing any applied content encoding.
72117249
*
@@ -8073,7 +8111,7 @@ interface SecurityPolicyViolationEvent extends Event {
80738111
*/
80748112
readonly blockedURI: string;
80758113
/**
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.
8114+
* 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.
80778115
*
80788116
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber)
80798117
*/
@@ -9327,13 +9365,13 @@ interface WEBGL_draw_buffers {
93279365
*/
93289366
interface WEBGL_lose_context {
93299367
/**
9330-
* The **`WEBGL_lose_context.loseContext()`** method is part of the WebGL API and allows you to simulate losing the context of a WebGLRenderingContext context.
9368+
* The **`loseContext()`** method of the WEBGL_lose_context extension is part of the WebGL API and allows you to simulate losing the context of a WebGLRenderingContext.
93319369
*
93329370
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_lose_context/loseContext)
93339371
*/
93349372
loseContext(): void;
93359373
/**
9336-
* The **`WEBGL_lose_context.restoreContext()`** method is part of the WebGL API and allows you to simulate restoring the context of a WebGLRenderingContext object.
9374+
* The **`restoreContext()`** method of the WEBGL_lose_context extension is part of the WebGL API and allows you to simulate restoring the context of a WebGLRenderingContext.
93379375
*
93389376
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_lose_context/restoreContext)
93399377
*/

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

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ interface Event {
597597
*/
598598
readonly eventPhase: number;
599599
/**
600-
* The **`isTrusted`** read-only property of the Event interface is a boolean value that is true when the event was generated by the user agent (including via user actions and programmatic methods such as HTMLElement.focus()), and false when the event was dispatched via EventTarget.dispatchEvent(). The only exception is the click event, which initializes the isTrusted property to false in user agents.
600+
* The **`isTrusted`** read-only property of the Event interface is a boolean value that is true when the event was generated by the user agent (including via user actions and programmatic methods such as HTMLElement.focus()), and false when the event was dispatched via EventTarget.dispatchEvent(). The click event fired through HTMLElement.click() sets the isTrusted property to false.
601601
*
602602
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/isTrusted)
603603
*/
@@ -828,6 +828,18 @@ declare var MessagePort: {
828828
new(): MessagePort;
829829
};
830830

831+
interface Origin {
832+
readonly opaque: boolean;
833+
isSameOrigin(other: Origin): boolean;
834+
isSameSite(other: Origin): boolean;
835+
}
836+
837+
declare var Origin: {
838+
prototype: Origin;
839+
new(): Origin;
840+
from(value: any): Origin;
841+
};
842+
831843
/**
832844
* The **`PromiseRejectionEvent`** interface represents events which are sent to the global script context when JavaScript Promises are rejected. These events are particularly useful for telemetry and debugging purposes.
833845
*

0 commit comments

Comments
 (0)