Skip to content

Commit 60c5fa2

Browse files
authored
🤖 Update core dependencies (#1659)
Co-authored-by: saschanaz <[email protected]>
1 parent de32b7c commit 60c5fa2

8 files changed

+143
-77
lines changed

baselines/dom.generated.d.ts

Lines changed: 36 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2513,7 +2513,9 @@ declare var AnimationEvent: {
25132513
};
25142514

25152515
interface AnimationFrameProvider {
2516+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/cancelAnimationFrame) */
25162517
cancelAnimationFrame(handle: number): void;
2518+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/requestAnimationFrame) */
25172519
requestAnimationFrame(callback: FrameRequestCallback): number;
25182520
}
25192521

@@ -4882,7 +4884,11 @@ interface CSSStyleDeclaration {
48824884
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-clip)
48834885
*/
48844886
webkitMaskClip: string;
4885-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-composite) */
4887+
/**
4888+
* @deprecated This is a legacy alias of `maskComposite`.
4889+
*
4890+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-composite)
4891+
*/
48864892
webkitMaskComposite: string;
48874893
/**
48884894
* @deprecated This is a legacy alias of `maskImage`.
@@ -11528,6 +11534,7 @@ interface HTMLMediaElement extends HTMLElement {
1152811534
preservesPitch: boolean;
1152911535
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/readyState) */
1153011536
readonly readyState: number;
11537+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/remote) */
1153111538
readonly remote: RemotePlayback;
1153211539
/**
1153311540
* Returns a TimeRanges object that represents the ranges of the current media resource that can be seeked.
@@ -12501,6 +12508,8 @@ interface HTMLSelectElement extends HTMLElement {
1250112508
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/setCustomValidity)
1250212509
*/
1250312510
setCustomValidity(error: string): void;
12511+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/showPicker) */
12512+
showPicker(): void;
1250412513
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSelectElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
1250512514
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
1250612515
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSelectElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
@@ -21266,6 +21275,7 @@ interface ServiceWorkerContainer extends EventTarget {
2126621275
oncontrollerchange: ((this: ServiceWorkerContainer, ev: Event) => any) | null;
2126721276
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/message_event) */
2126821277
onmessage: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;
21278+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/messageerror_event) */
2126921279
onmessageerror: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;
2127021280
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/ready) */
2127121281
readonly ready: Promise<ServiceWorkerRegistration>;
@@ -25679,6 +25689,7 @@ interface WindowEventMap extends GlobalEventHandlersEventMap, WindowEventHandler
2567925689
"DOMContentLoaded": Event;
2568025690
"devicemotion": DeviceMotionEvent;
2568125691
"deviceorientation": DeviceOrientationEvent;
25692+
"deviceorientationabsolute": DeviceOrientationEvent;
2568225693
"gamepadconnected": GamepadEvent;
2568325694
"gamepaddisconnected": GamepadEvent;
2568425695
"orientationchange": Event;
@@ -25767,6 +25778,12 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
2576725778
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/deviceorientation_event)
2576825779
*/
2576925780
ondeviceorientation: ((this: Window, ev: DeviceOrientationEvent) => any) | null;
25781+
/**
25782+
* Available only in secure contexts.
25783+
*
25784+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/deviceorientationabsolute_event)
25785+
*/
25786+
ondeviceorientationabsolute: ((this: Window, ev: DeviceOrientationEvent) => any) | null;
2577025787
/**
2577125788
* @deprecated
2577225789
*
@@ -26011,7 +26028,11 @@ interface WindowEventHandlers {
2601126028
onstorage: ((this: WindowEventHandlers, ev: StorageEvent) => any) | null;
2601226029
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unhandledrejection_event) */
2601326030
onunhandledrejection: ((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any) | null;
26014-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event) */
26031+
/**
26032+
* @deprecated
26033+
*
26034+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event)
26035+
*/
2601526036
onunload: ((this: WindowEventHandlers, ev: Event) => any) | null;
2601626037
addEventListener<K extends keyof WindowEventHandlersEventMap>(type: K, listener: (this: WindowEventHandlers, ev: WindowEventHandlersEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2601726038
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -27382,6 +27403,12 @@ declare var ondevicemotion: ((this: Window, ev: DeviceMotionEvent) => any) | nul
2738227403
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/deviceorientation_event)
2738327404
*/
2738427405
declare var ondeviceorientation: ((this: Window, ev: DeviceOrientationEvent) => any) | null;
27406+
/**
27407+
* Available only in secure contexts.
27408+
*
27409+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/deviceorientationabsolute_event)
27410+
*/
27411+
declare var ondeviceorientationabsolute: ((this: Window, ev: DeviceOrientationEvent) => any) | null;
2738527412
/**
2738627413
* @deprecated
2738727414
*
@@ -27565,7 +27592,9 @@ declare function toString(): string;
2756527592
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/dispatchEvent)
2756627593
*/
2756727594
declare function dispatchEvent(event: Event): boolean;
27595+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/cancelAnimationFrame) */
2756827596
declare function cancelAnimationFrame(handle: number): void;
27597+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/requestAnimationFrame) */
2756927598
declare function requestAnimationFrame(callback: FrameRequestCallback): number;
2757027599
/**
2757127600
* Fires when the user aborts the download.
@@ -28035,7 +28064,11 @@ declare var onrejectionhandled: ((this: Window, ev: PromiseRejectionEvent) => an
2803528064
declare var onstorage: ((this: Window, ev: StorageEvent) => any) | null;
2803628065
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unhandledrejection_event) */
2803728066
declare var onunhandledrejection: ((this: Window, ev: PromiseRejectionEvent) => any) | null;
28038-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event) */
28067+
/**
28068+
* @deprecated
28069+
*
28070+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event)
28071+
*/
2803928072
declare var onunload: ((this: Window, ev: Event) => any) | null;
2804028073
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/localStorage) */
2804128074
declare var localStorage: Storage;

baselines/serviceworker.generated.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4842,6 +4842,7 @@ interface ServiceWorkerContainer extends EventTarget {
48424842
oncontrollerchange: ((this: ServiceWorkerContainer, ev: Event) => any) | null;
48434843
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/message_event) */
48444844
onmessage: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;
4845+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/messageerror_event) */
48454846
onmessageerror: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;
48464847
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/ready) */
48474848
readonly ready: Promise<ServiceWorkerRegistration>;

baselines/sharedworker.generated.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4676,6 +4676,7 @@ interface ServiceWorkerContainer extends EventTarget {
46764676
oncontrollerchange: ((this: ServiceWorkerContainer, ev: Event) => any) | null;
46774677
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/message_event) */
46784678
onmessage: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;
4679+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/messageerror_event) */
46794680
onmessageerror: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;
46804681
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/ready) */
46814682
readonly ready: Promise<ServiceWorkerRegistration>;

baselines/webworker.generated.d.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -971,7 +971,9 @@ interface AbstractWorker {
971971
}
972972

973973
interface AnimationFrameProvider {
974+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/cancelAnimationFrame) */
974975
cancelAnimationFrame(handle: number): void;
976+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/requestAnimationFrame) */
975977
requestAnimationFrame(callback: FrameRequestCallback): number;
976978
}
977979

@@ -4766,7 +4768,7 @@ declare var RTCEncodedVideoFrame: {
47664768
};
47674769

47684770
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransformer) */
4769-
interface RTCRtpScriptTransformer {
4771+
interface RTCRtpScriptTransformer extends EventTarget {
47704772
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransformer/options) */
47714773
readonly options: any;
47724774
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransformer/readable) */
@@ -5164,6 +5166,7 @@ interface ServiceWorkerContainer extends EventTarget {
51645166
oncontrollerchange: ((this: ServiceWorkerContainer, ev: Event) => any) | null;
51655167
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/message_event) */
51665168
onmessage: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;
5169+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/messageerror_event) */
51675170
onmessageerror: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;
51685171
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/ready) */
51695172
readonly ready: Promise<ServiceWorkerRegistration>;
@@ -9255,7 +9258,9 @@ declare function setInterval(handler: TimerHandler, timeout?: number, ...argumen
92559258
declare function setTimeout(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
92569259
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/structuredClone) */
92579260
declare function structuredClone<T = any>(value: T, options?: StructuredSerializeOptions): T;
9261+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/cancelAnimationFrame) */
92589262
declare function cancelAnimationFrame(handle: number): void;
9263+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/requestAnimationFrame) */
92599264
declare function requestAnimationFrame(callback: FrameRequestCallback): number;
92609265
declare function addEventListener<K extends keyof DedicatedWorkerGlobalScopeEventMap>(type: K, listener: (this: DedicatedWorkerGlobalScope, ev: DedicatedWorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
92619266
declare function addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;

inputfiles/addedTypes.jsonc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -575,6 +575,10 @@
575575
"name": "deviceorientation",
576576
"type": "DeviceOrientationEvent"
577577
},
578+
{
579+
"name": "deviceorientationabsolute",
580+
"type": "DeviceOrientationEvent"
581+
},
578582
{
579583
"name": "gamepadconnected",
580584
"type": "GamepadEvent"

inputfiles/overridingTypes.jsonc

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2365,6 +2365,15 @@
23652365
}
23662366
}
23672367
},
2368+
"PromiseRejectionEvent": {
2369+
"properties": {
2370+
"property": {
2371+
"promise": {
2372+
"overrideType": "Promise<any>"
2373+
}
2374+
}
2375+
}
2376+
},
23682377
"ScriptProcessorNode": {
23692378
"events": {
23702379
"event": [
@@ -3349,6 +3358,15 @@
33493358
}
33503359
}
33513360
},
3361+
"PromiseRejectionEventInit": {
3362+
"members": {
3363+
"member": {
3364+
"promise": {
3365+
"overrideType": "Promise<any>"
3366+
}
3367+
}
3368+
}
3369+
},
33523370
"PublicKeyCredentialCreationOptions": {
33533371
"members": {
33543372
"member": {

0 commit comments

Comments
 (0)