Skip to content

Update core dependencies #1855

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 1 commit into from
Nov 30, 2024
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
36 changes: 32 additions & 4 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10721,13 +10721,15 @@ interface HTMLEmbedElement extends HTMLElement {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/src)
*/
src: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/type) */
type: string;
/**
* Sets or retrieves the width of the object.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/width)
*/
width: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/getSVGDocument) */
getSVGDocument(): Document | null;
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLEmbedElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
Expand Down Expand Up @@ -11355,6 +11357,7 @@ interface HTMLIFrameElement extends HTMLElement {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/width)
*/
width: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIframeElement/getSVGDocument) */
getSVGDocument(): Document | null;
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLIFrameElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
Expand Down Expand Up @@ -11964,6 +11967,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
* @deprecated
*/
rev: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/sizes) */
get sizes(): DOMTokenList;
set sizes(value: string);
/**
Expand Down Expand Up @@ -12542,6 +12546,7 @@ interface HTMLObjectElement extends HTMLElement {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/checkValidity)
*/
checkValidity(): boolean;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/getSVGDocument) */
getSVGDocument(): Document | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/reportValidity) */
reportValidity(): boolean;
Expand Down Expand Up @@ -13177,13 +13182,27 @@ declare var HTMLSlotElement: {
interface HTMLSourceElement extends HTMLElement {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/height) */
height: number;
/** Gets or sets the intended media type of the media source. */
/**
* Gets or sets the intended media type of the media source.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/media)
*/
media: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/sizes) */
sizes: string;
/** The address or URL of the a media resource that is to be considered. */
/**
* The address or URL of the a media resource that is to be considered.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/src)
*/
src: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/srcset) */
srcset: string;
/** Gets or sets the MIME type of a media resource. */
/**
* Gets or sets the MIME type of a media resource.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/type)
*/
type: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/width) */
width: number;
Expand Down Expand Up @@ -14004,14 +14023,23 @@ declare var HTMLTitleElement: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement)
*/
interface HTMLTrackElement extends HTMLElement {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/default) */
default: boolean;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/kind) */
kind: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/label) */
label: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/readyState) */
readonly readyState: number;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/src) */
src: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/srclang) */
srclang: string;
/** Returns the TextTrack object corresponding to the text track of the track element. */
/**
* Returns the TextTrack object corresponding to the text track of the track element.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/track)
*/
readonly track: TextTrack;
readonly NONE: 0;
readonly LOADING: 1;
Expand Down
36 changes: 32 additions & 4 deletions baselines/ts5.5/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10709,13 +10709,15 @@ interface HTMLEmbedElement extends HTMLElement {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/src)
*/
src: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/type) */
type: string;
/**
* Sets or retrieves the width of the object.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/width)
*/
width: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/getSVGDocument) */
getSVGDocument(): Document | null;
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLEmbedElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
Expand Down Expand Up @@ -11341,6 +11343,7 @@ interface HTMLIFrameElement extends HTMLElement {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/width)
*/
width: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIframeElement/getSVGDocument) */
getSVGDocument(): Document | null;
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLIFrameElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
Expand Down Expand Up @@ -11948,6 +11951,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
* @deprecated
*/
rev: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/sizes) */
readonly sizes: DOMTokenList;
/**
* Sets or retrieves the window or frame at which to target content.
Expand Down Expand Up @@ -12525,6 +12529,7 @@ interface HTMLObjectElement extends HTMLElement {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/checkValidity)
*/
checkValidity(): boolean;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/getSVGDocument) */
getSVGDocument(): Document | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/reportValidity) */
reportValidity(): boolean;
Expand Down Expand Up @@ -13158,13 +13163,27 @@ declare var HTMLSlotElement: {
interface HTMLSourceElement extends HTMLElement {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/height) */
height: number;
/** Gets or sets the intended media type of the media source. */
/**
* Gets or sets the intended media type of the media source.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/media)
*/
media: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/sizes) */
sizes: string;
/** The address or URL of the a media resource that is to be considered. */
/**
* The address or URL of the a media resource that is to be considered.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/src)
*/
src: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/srcset) */
srcset: string;
/** Gets or sets the MIME type of a media resource. */
/**
* Gets or sets the MIME type of a media resource.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/type)
*/
type: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/width) */
width: number;
Expand Down Expand Up @@ -13984,14 +14003,23 @@ declare var HTMLTitleElement: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement)
*/
interface HTMLTrackElement extends HTMLElement {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/default) */
default: boolean;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/kind) */
kind: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/label) */
label: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/readyState) */
readonly readyState: number;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/src) */
src: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/srclang) */
srclang: string;
/** Returns the TextTrack object corresponding to the text track of the track element. */
/**
* Returns the TextTrack object corresponding to the text track of the track element.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/track)
*/
readonly track: TextTrack;
readonly NONE: 0;
readonly LOADING: 1;
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

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