Skip to content

Commit 49446ac

Browse files
TypeScript Botsaschanaz
TypeScript Bot
andauthored
🤖 Update core dependencies (#1673)
Co-authored-by: saschanaz <[email protected]>
1 parent f4e507c commit 49446ac

File tree

2 files changed

+101
-66
lines changed

2 files changed

+101
-66
lines changed

baselines/dom.generated.d.ts

Lines changed: 41 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,9 @@ interface ChannelSplitterOptions extends AudioNodeOptions {
201201
interface CheckVisibilityOptions {
202202
checkOpacity?: boolean;
203203
checkVisibilityCSS?: boolean;
204+
contentVisibilityAuto?: boolean;
205+
opacityProperty?: boolean;
206+
visibilityProperty?: boolean;
204207
}
205208

206209
interface ClientQueryOptions {
@@ -8712,7 +8715,7 @@ interface Gamepad {
87128715
readonly mapping: GamepadMappingType;
87138716
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/timestamp) */
87148717
readonly timestamp: DOMHighResTimeStamp;
8715-
readonly vibrationActuator: GamepadHapticActuator | null;
8718+
readonly vibrationActuator: GamepadHapticActuator;
87168719
}
87178720

87188721
declare var Gamepad: {
@@ -8762,8 +8765,6 @@ declare var GamepadEvent: {
87628765
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadHapticActuator)
87638766
*/
87648767
interface GamepadHapticActuator {
8765-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadHapticActuator/type) */
8766-
readonly type: GamepadHapticActuatorType;
87678768
playEffect(type: GamepadHapticEffectType, params?: GamepadEffectParameters): Promise<GamepadHapticsResult>;
87688769
reset(): Promise<GamepadHapticsResult>;
87698770
}
@@ -9474,6 +9475,7 @@ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils {
94749475
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/name)
94759476
*/
94769477
name: string;
9478+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/ping) */
94779479
ping: string;
94789480
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/referrerPolicy) */
94799481
referrerPolicy: string;
@@ -9551,6 +9553,7 @@ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
95519553
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/noHref)
95529554
*/
95539555
noHref: boolean;
9556+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/ping) */
95549557
ping: string;
95559558
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/referrerPolicy) */
95569559
referrerPolicy: string;
@@ -10146,7 +10149,11 @@ declare var HTMLElement: {
1014610149
interface HTMLEmbedElement extends HTMLElement {
1014710150
/** @deprecated */
1014810151
align: string;
10149-
/** Sets or retrieves the height of the object. */
10152+
/**
10153+
* Sets or retrieves the height of the object.
10154+
*
10155+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/height)
10156+
*/
1015010157
height: string;
1015110158
/**
1015210159
* Sets or retrieves the name of the object.
@@ -10156,7 +10163,11 @@ interface HTMLEmbedElement extends HTMLElement {
1015610163
/** Sets or retrieves a URL to be loaded by the object. */
1015710164
src: string;
1015810165
type: string;
10159-
/** Sets or retrieves the width of the object. */
10166+
/**
10167+
* Sets or retrieves the width of the object.
10168+
*
10169+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/width)
10170+
*/
1016010171
width: string;
1016110172
getSVGDocument(): Document | null;
1016210173
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLEmbedElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -13451,11 +13462,13 @@ interface HTMLVideoElement extends HTMLMediaElement {
1345113462
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/width)
1345213463
*/
1345313464
width: number;
13465+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/cancelVideoFrameCallback) */
1345413466
cancelVideoFrameCallback(handle: number): void;
1345513467
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/getVideoPlaybackQuality) */
1345613468
getVideoPlaybackQuality(): VideoPlaybackQuality;
1345713469
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/requestPictureInPicture) */
1345813470
requestPictureInPicture(): Promise<PictureInPictureWindow>;
13471+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/requestVideoFrameCallback) */
1345913472
requestVideoFrameCallback(callback: VideoFrameRequestCallback): number;
1346013473
addEventListener<K extends keyof HTMLVideoElementEventMap>(type: K, listener: (this: HTMLVideoElement, ev: HTMLVideoElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
1346113474
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -14537,6 +14550,29 @@ declare var KeyframeEffect: {
1453714550
new(source: KeyframeEffect): KeyframeEffect;
1453814551
};
1453914552

14553+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint) */
14554+
interface LargestContentfulPaint extends PerformanceEntry {
14555+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/element) */
14556+
readonly element: Element | null;
14557+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/id) */
14558+
readonly id: string;
14559+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/loadTime) */
14560+
readonly loadTime: DOMHighResTimeStamp;
14561+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/renderTime) */
14562+
readonly renderTime: DOMHighResTimeStamp;
14563+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/size) */
14564+
readonly size: number;
14565+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/url) */
14566+
readonly url: string;
14567+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/toJSON) */
14568+
toJSON(): any;
14569+
}
14570+
14571+
declare var LargestContentfulPaint: {
14572+
prototype: LargestContentfulPaint;
14573+
new(): LargestContentfulPaint;
14574+
};
14575+
1454014576
interface LinkStyle {
1454114577
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/sheet) */
1454214578
readonly sheet: CSSStyleSheet | null;
@@ -28275,7 +28311,6 @@ type FontDisplay = "auto" | "block" | "fallback" | "optional" | "swap";
2827528311
type FontFaceLoadStatus = "error" | "loaded" | "loading" | "unloaded";
2827628312
type FontFaceSetLoadStatus = "loaded" | "loading";
2827728313
type FullscreenNavigationUI = "auto" | "hide" | "show";
28278-
type GamepadHapticActuatorType = "vibration";
2827928314
type GamepadHapticEffectType = "dual-rumble";
2828028315
type GamepadHapticsResult = "complete" | "preempted";
2828128316
type GamepadMappingType = "" | "standard" | "xr-standard";

package-lock.json

Lines changed: 60 additions & 60 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)