Skip to content

Update to [email protected], [email protected] #1638

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

Merged
merged 3 commits into from
Oct 21, 2023
Merged
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
17 changes: 14 additions & 3 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2113,7 +2113,7 @@ interface WebTransportOptions {
}

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

interface WheelEventInit extends MouseEventInit {
Expand Down Expand Up @@ -3052,6 +3052,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 +3710,8 @@ interface CSSRule {
readonly KEYFRAMES_RULE: 7;
readonly KEYFRAME_RULE: 8;
readonly SUPPORTS_RULE: 12;
readonly COUNTER_STYLE_RULE: 11;
readonly FONT_FEATURE_VALUES_RULE: 14;
}

declare var CSSRule: {
Expand All @@ -3724,6 +3727,8 @@ declare var CSSRule: {
readonly KEYFRAMES_RULE: 7;
readonly KEYFRAME_RULE: 8;
readonly SUPPORTS_RULE: 12;
readonly COUNTER_STYLE_RULE: 11;
readonly FONT_FEATURE_VALUES_RULE: 14;
};

/**
Expand Down Expand Up @@ -8839,6 +8844,7 @@ interface GlobalEventHandlersEventMap {
"animationstart": AnimationEvent;
"auxclick": MouseEvent;
"beforeinput": InputEvent;
"beforetoggle": Event;
"blur": FocusEvent;
"cancel": Event;
"canplay": Event;
Expand Down Expand Up @@ -8954,6 +8960,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 +14649,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 +14701,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 +17735,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 @@ -27525,6 +27534,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
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
13 changes: 10 additions & 3 deletions inputfiles/removedTypes.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
},
"MediaSessionAction": {
"value": [
"enterpictureinpicture", // Blink only as of 2023-10
"hangup", // Blink only as of 2022-09
"nextslide", // No implementation as of 2022-09
"previousslide", // No implementation as of 2022-09
Expand Down Expand Up @@ -68,9 +69,8 @@
"CSSRule": {
"constants": {
"constant": {
"COUNTER_STYLE_RULE": null,
"FONT_FEATURE_VALUES_RULE": null,
"MARGIN_RULE": null
"MARGIN_RULE": null, // WebKit only as of 2023-10
"VIEW_TRANSITION_RULE": null // No implementation as of 2023-10
}
}
},
Expand Down Expand Up @@ -205,6 +205,13 @@
}
}
},
"CredentialPropertiesOutput": {
"members": {
"member": {
"authenticatorDisplayName": null // No implementation as of 2023-10
}
}
},
"CredentialRequestOptions": {
"members": {
"member": {
Expand Down
36 changes: 18 additions & 18 deletions package-lock.json

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