Skip to content

Update core dependencies #1636

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 18 additions & 4 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ interface CredentialCreationOptions {
}

interface CredentialPropertiesOutput {
authenticatorDisplayName?: string;
rk?: boolean;
}

Expand Down Expand Up @@ -2113,7 +2114,7 @@ interface WebTransportOptions {
}

interface WebTransportSendStreamOptions {
sendOrder?: number | null;
sendOrder?: number;
}

interface WheelEventInit extends MouseEventInit {
Expand Down Expand Up @@ -3052,6 +3053,7 @@ declare var BaseAudioContext: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/BeforeUnloadEvent)
*/
interface BeforeUnloadEvent extends Event {
/** @deprecated */
returnValue: any;
}

Expand Down Expand Up @@ -3709,6 +3711,7 @@ interface CSSRule {
readonly KEYFRAMES_RULE: 7;
readonly KEYFRAME_RULE: 8;
readonly SUPPORTS_RULE: 12;
readonly VIEW_TRANSITION_RULE: 15;
}

declare var CSSRule: {
Expand All @@ -3724,6 +3727,7 @@ declare var CSSRule: {
readonly KEYFRAMES_RULE: 7;
readonly KEYFRAME_RULE: 8;
readonly SUPPORTS_RULE: 12;
readonly VIEW_TRANSITION_RULE: 15;
};

/**
Expand Down Expand Up @@ -4328,6 +4332,8 @@ interface CSSStyleDeclaration {
offsetDistance: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-path) */
offsetPath: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-position) */
offsetPosition: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-rotate) */
offsetRotate: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/opacity) */
Expand Down Expand Up @@ -8839,6 +8845,7 @@ interface GlobalEventHandlersEventMap {
"animationstart": AnimationEvent;
"auxclick": MouseEvent;
"beforeinput": InputEvent;
"beforetoggle": Event;
"blur": FocusEvent;
"cancel": Event;
"canplay": Event;
Expand Down Expand Up @@ -8954,6 +8961,8 @@ interface GlobalEventHandlers {
onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforeinput_event) */
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) */
onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
/**
* Fires when the object loses the input focus.
* @param ev The focus event.
Expand Down Expand Up @@ -14641,7 +14650,7 @@ declare var MIDIAccess: {
*/
interface MIDIConnectionEvent extends Event {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIConnectionEvent/port) */
readonly port: MIDIPort;
readonly port: MIDIPort | null;
}

declare var MIDIConnectionEvent: {
Expand Down Expand Up @@ -14693,7 +14702,7 @@ declare var MIDIInputMap: {
*/
interface MIDIMessageEvent extends Event {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIMessageEvent/data) */
readonly data: Uint8Array;
readonly data: Uint8Array | null;
}

declare var MIDIMessageEvent: {
Expand Down Expand Up @@ -17727,6 +17736,7 @@ interface PublicKeyCredential extends Credential {
declare var PublicKeyCredential: {
prototype: PublicKeyCredential;
new(): PublicKeyCredential;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/isConditionalMediationAvailable) */
isConditionalMediationAvailable(): Promise<boolean>;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/isUserVerifyingPlatformAuthenticatorAvailable_static) */
isUserVerifyingPlatformAuthenticatorAvailable(): Promise<boolean>;
Expand Down Expand Up @@ -20072,6 +20082,8 @@ declare var SVGGraphicsElement: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement)
*/
interface SVGImageElement extends SVGGraphicsElement, SVGURIReference {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/crossorigin) */
crossOrigin: string | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/height) */
readonly height: SVGAnimatedLength;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/preserveAspectRatio) */
Expand Down Expand Up @@ -27525,6 +27537,8 @@ declare var onanimationstart: ((this: Window, ev: AnimationEvent) => any) | null
declare var onauxclick: ((this: Window, ev: MouseEvent) => any) | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforeinput_event) */
declare var onbeforeinput: ((this: Window, ev: InputEvent) => any) | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) */
declare var onbeforetoggle: ((this: Window, ev: Event) => any) | null;
/**
* Fires when the object loses the input focus.
* @param ev The focus event.
Expand Down Expand Up @@ -28186,7 +28200,7 @@ type MediaKeySessionClosedReason = "closed-by-application" | "hardware-context-r
type MediaKeySessionType = "persistent-license" | "temporary";
type MediaKeyStatus = "expired" | "internal-error" | "output-downscaled" | "output-restricted" | "released" | "status-pending" | "usable" | "usable-in-future";
type MediaKeysRequirement = "not-allowed" | "optional" | "required";
type MediaSessionAction = "nexttrack" | "pause" | "play" | "previoustrack" | "seekbackward" | "seekforward" | "seekto" | "skipad" | "stop";
type MediaSessionAction = "enterpictureinpicture" | "nexttrack" | "pause" | "play" | "previoustrack" | "seekbackward" | "seekforward" | "seekto" | "skipad" | "stop";
type MediaSessionPlaybackState = "none" | "paused" | "playing";
type MediaStreamTrackState = "ended" | "live";
type NavigationTimingType = "back_forward" | "navigate" | "prerender" | "reload";
Expand Down
2 changes: 1 addition & 1 deletion baselines/serviceworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ interface WebTransportOptions {
}

interface WebTransportSendStreamOptions {
sendOrder?: number | null;
sendOrder?: number;
}

interface WriteParams {
Expand Down
2 changes: 1 addition & 1 deletion baselines/sharedworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ interface WebTransportOptions {
}

interface WebTransportSendStreamOptions {
sendOrder?: number | null;
sendOrder?: number;
}

interface WorkerOptions {
Expand Down
2 changes: 1 addition & 1 deletion baselines/webworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,7 @@ interface WebTransportOptions {
}

interface WebTransportSendStreamOptions {
sendOrder?: number | null;
sendOrder?: number;
}

interface WorkerOptions {
Expand Down
73 changes: 40 additions & 33 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.