Skip to content
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

Manually update to [email protected], [email protected] #1807

Merged
merged 2 commits into from
Sep 22, 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
43 changes: 38 additions & 5 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11350,9 +11350,17 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
autocomplete: AutoFill;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/capture) */
capture: string;
/** Sets or retrieves the state of the check box or radio button. */
/**
* Sets or retrieves the state of the check box or radio button.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/checked)
*/
checked: boolean;
/** Sets or retrieves the state of the check box or radio button. */
/**
* Sets or retrieves the state of the check box or radio button.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/defaultChecked)
*/
defaultChecked: boolean;
/**
* Sets or retrieves the initial contents of the object.
Expand Down Expand Up @@ -13572,10 +13580,19 @@ interface HTMLTextAreaElement extends HTMLElement {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/rows)
*/
rows: number;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionDirection) */
selectionDirection: "forward" | "backward" | "none";
/** Gets or sets the end position or offset of a text selection. */
/**
* Gets or sets the end position or offset of a text selection.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionEnd)
*/
selectionEnd: number;
/** Gets or sets the starting position or offset of a text selection. */
/**
* Gets or sets the starting position or offset of a text selection.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionStart)
*/
selectionStart: number;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/textLength) */
readonly textLength: number;
Expand Down Expand Up @@ -13619,20 +13636,27 @@ interface HTMLTextAreaElement extends HTMLElement {
checkValidity(): boolean;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/reportValidity) */
reportValidity(): boolean;
/** Highlights the input area of a form element. */
/**
* Highlights the input area of a form element.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/select)
*/
select(): void;
/**
* Sets a custom error message that is displayed when a form is submitted.
* @param error Sets a custom error message that is displayed when a form is submitted.
*/
setCustomValidity(error: string): void;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/setRangeText) */
setRangeText(replacement: string): void;
setRangeText(replacement: string, start: number, end: number, selectionMode?: SelectionMode): void;
/**
* Sets the start and end positions of a selection in a text field.
* @param start The offset into the text field for the start of the selection.
* @param end The offset into the text field for the end of the selection.
* @param direction The direction in which the selection is performed.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/setSelectionRange)
*/
setSelectionRange(start: number | null, end: number | null, direction?: "forward" | "backward" | "none"): void;
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTextAreaElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
Expand Down Expand Up @@ -20612,14 +20636,23 @@ declare var SVGLength: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList)
*/
interface SVGLengthList {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/length) */
readonly length: number;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/numberOfItems) */
readonly numberOfItems: number;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/appendItem) */
appendItem(newItem: SVGLength): SVGLength;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/clear) */
clear(): void;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/getItem) */
getItem(index: number): SVGLength;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/initialize) */
initialize(newItem: SVGLength): SVGLength;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/insertItemBefore) */
insertItemBefore(newItem: SVGLength, index: number): SVGLength;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/removeItem) */
removeItem(index: number): SVGLength;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/replaceItem) */
replaceItem(newItem: SVGLength, index: number): SVGLength;
[index: number]: SVGLength;
}
Expand Down
43 changes: 38 additions & 5 deletions baselines/ts5.5/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11350,9 +11350,17 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
autocomplete: AutoFill;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/capture) */
capture: string;
/** Sets or retrieves the state of the check box or radio button. */
/**
* Sets or retrieves the state of the check box or radio button.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/checked)
*/
checked: boolean;
/** Sets or retrieves the state of the check box or radio button. */
/**
* Sets or retrieves the state of the check box or radio button.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/defaultChecked)
*/
defaultChecked: boolean;
/**
* Sets or retrieves the initial contents of the object.
Expand Down Expand Up @@ -13572,10 +13580,19 @@ interface HTMLTextAreaElement extends HTMLElement {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/rows)
*/
rows: number;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionDirection) */
selectionDirection: "forward" | "backward" | "none";
/** Gets or sets the end position or offset of a text selection. */
/**
* Gets or sets the end position or offset of a text selection.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionEnd)
*/
selectionEnd: number;
/** Gets or sets the starting position or offset of a text selection. */
/**
* Gets or sets the starting position or offset of a text selection.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionStart)
*/
selectionStart: number;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/textLength) */
readonly textLength: number;
Expand Down Expand Up @@ -13619,20 +13636,27 @@ interface HTMLTextAreaElement extends HTMLElement {
checkValidity(): boolean;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/reportValidity) */
reportValidity(): boolean;
/** Highlights the input area of a form element. */
/**
* Highlights the input area of a form element.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/select)
*/
select(): void;
/**
* Sets a custom error message that is displayed when a form is submitted.
* @param error Sets a custom error message that is displayed when a form is submitted.
*/
setCustomValidity(error: string): void;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/setRangeText) */
setRangeText(replacement: string): void;
setRangeText(replacement: string, start: number, end: number, selectionMode?: SelectionMode): void;
/**
* Sets the start and end positions of a selection in a text field.
* @param start The offset into the text field for the start of the selection.
* @param end The offset into the text field for the end of the selection.
* @param direction The direction in which the selection is performed.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/setSelectionRange)
*/
setSelectionRange(start: number | null, end: number | null, direction?: "forward" | "backward" | "none"): void;
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTextAreaElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
Expand Down Expand Up @@ -20612,14 +20636,23 @@ declare var SVGLength: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList)
*/
interface SVGLengthList {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/length) */
readonly length: number;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/numberOfItems) */
readonly numberOfItems: number;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/appendItem) */
appendItem(newItem: SVGLength): SVGLength;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/clear) */
clear(): void;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/getItem) */
getItem(index: number): SVGLength;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/initialize) */
initialize(newItem: SVGLength): SVGLength;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/insertItemBefore) */
insertItemBefore(newItem: SVGLength, index: number): SVGLength;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/removeItem) */
removeItem(index: number): SVGLength;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/replaceItem) */
replaceItem(newItem: SVGLength, index: number): SVGLength;
[index: number]: SVGLength;
}
Expand Down
7 changes: 4 additions & 3 deletions inputfiles/removedTypes.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -780,15 +780,16 @@
"WebTransportOptions": {
"members": {
"member": {
"anticipatedConcurrentIncomingBidirectionalStreams": null, // No implementation as of 2024-03
"anticipatedConcurrentIncomingUnidirectionalStreams": null // No implementation as of 2024-03
"anticipatedConcurrentIncomingBidirectionalStreams": null, // No implementation as of 2024-09
"anticipatedConcurrentIncomingUnidirectionalStreams": null, // No implementation as of 2024-09
"protocols": null // No implementation as of 2024-09
}
}
},
"WebTransportSendStreamOptions": {
"members": {
"member": {
"waitUntilAvailable": null // No implementation as of 2023-11
"waitUntilAvailable": null // Blink only as of 2024-09
}
}
}
Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

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

Loading