Skip to content

Commit 90bf9b0

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 300eda0 commit 90bf9b0

9 files changed

+93
-19
lines changed

baselines/dom.generated.d.ts

Lines changed: 39 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2308,6 +2308,7 @@ interface WebTransportHash {
23082308
interface WebTransportOptions {
23092309
allowPooling?: boolean;
23102310
congestionControl?: WebTransportCongestionControl;
2311+
protocols?: string[];
23112312
requireUnreliable?: boolean;
23122313
serverCertificateHashes?: WebTransportHash[];
23132314
}
@@ -11350,9 +11351,17 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
1135011351
autocomplete: AutoFill;
1135111352
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/capture) */
1135211353
capture: string;
11353-
/** Sets or retrieves the state of the check box or radio button. */
11354+
/**
11355+
* Sets or retrieves the state of the check box or radio button.
11356+
*
11357+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/checked)
11358+
*/
1135411359
checked: boolean;
11355-
/** Sets or retrieves the state of the check box or radio button. */
11360+
/**
11361+
* Sets or retrieves the state of the check box or radio button.
11362+
*
11363+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/defaultChecked)
11364+
*/
1135611365
defaultChecked: boolean;
1135711366
/**
1135811367
* Sets or retrieves the initial contents of the object.
@@ -13572,10 +13581,19 @@ interface HTMLTextAreaElement extends HTMLElement {
1357213581
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/rows)
1357313582
*/
1357413583
rows: number;
13584+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionDirection) */
1357513585
selectionDirection: "forward" | "backward" | "none";
13576-
/** Gets or sets the end position or offset of a text selection. */
13586+
/**
13587+
* Gets or sets the end position or offset of a text selection.
13588+
*
13589+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionEnd)
13590+
*/
1357713591
selectionEnd: number;
13578-
/** Gets or sets the starting position or offset of a text selection. */
13592+
/**
13593+
* Gets or sets the starting position or offset of a text selection.
13594+
*
13595+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionStart)
13596+
*/
1357913597
selectionStart: number;
1358013598
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/textLength) */
1358113599
readonly textLength: number;
@@ -13619,20 +13637,27 @@ interface HTMLTextAreaElement extends HTMLElement {
1361913637
checkValidity(): boolean;
1362013638
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/reportValidity) */
1362113639
reportValidity(): boolean;
13622-
/** Highlights the input area of a form element. */
13640+
/**
13641+
* Highlights the input area of a form element.
13642+
*
13643+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/select)
13644+
*/
1362313645
select(): void;
1362413646
/**
1362513647
* Sets a custom error message that is displayed when a form is submitted.
1362613648
* @param error Sets a custom error message that is displayed when a form is submitted.
1362713649
*/
1362813650
setCustomValidity(error: string): void;
13651+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/setRangeText) */
1362913652
setRangeText(replacement: string): void;
1363013653
setRangeText(replacement: string, start: number, end: number, selectionMode?: SelectionMode): void;
1363113654
/**
1363213655
* Sets the start and end positions of a selection in a text field.
1363313656
* @param start The offset into the text field for the start of the selection.
1363413657
* @param end The offset into the text field for the end of the selection.
1363513658
* @param direction The direction in which the selection is performed.
13659+
*
13660+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/setSelectionRange)
1363613661
*/
1363713662
setSelectionRange(start: number | null, end: number | null, direction?: "forward" | "backward" | "none"): void;
1363813663
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTextAreaElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -20612,14 +20637,23 @@ declare var SVGLength: {
2061220637
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList)
2061320638
*/
2061420639
interface SVGLengthList {
20640+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/length) */
2061520641
readonly length: number;
20642+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/numberOfItems) */
2061620643
readonly numberOfItems: number;
20644+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/appendItem) */
2061720645
appendItem(newItem: SVGLength): SVGLength;
20646+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/clear) */
2061820647
clear(): void;
20648+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/getItem) */
2061920649
getItem(index: number): SVGLength;
20650+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/initialize) */
2062020651
initialize(newItem: SVGLength): SVGLength;
20652+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/insertItemBefore) */
2062120653
insertItemBefore(newItem: SVGLength, index: number): SVGLength;
20654+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/removeItem) */
2062220655
removeItem(index: number): SVGLength;
20656+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/replaceItem) */
2062320657
replaceItem(newItem: SVGLength, index: number): SVGLength;
2062420658
[index: number]: SVGLength;
2062520659
}

baselines/serviceworker.generated.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -737,6 +737,7 @@ interface WebTransportHash {
737737
interface WebTransportOptions {
738738
allowPooling?: boolean;
739739
congestionControl?: WebTransportCongestionControl;
740+
protocols?: string[];
740741
requireUnreliable?: boolean;
741742
serverCertificateHashes?: WebTransportHash[];
742743
}

baselines/sharedworker.generated.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -703,6 +703,7 @@ interface WebTransportHash {
703703
interface WebTransportOptions {
704704
allowPooling?: boolean;
705705
congestionControl?: WebTransportCongestionControl;
706+
protocols?: string[];
706707
requireUnreliable?: boolean;
707708
serverCertificateHashes?: WebTransportHash[];
708709
}

baselines/ts5.5/dom.generated.d.ts

Lines changed: 39 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2308,6 +2308,7 @@ interface WebTransportHash {
23082308
interface WebTransportOptions {
23092309
allowPooling?: boolean;
23102310
congestionControl?: WebTransportCongestionControl;
2311+
protocols?: string[];
23112312
requireUnreliable?: boolean;
23122313
serverCertificateHashes?: WebTransportHash[];
23132314
}
@@ -11350,9 +11351,17 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
1135011351
autocomplete: AutoFill;
1135111352
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/capture) */
1135211353
capture: string;
11353-
/** Sets or retrieves the state of the check box or radio button. */
11354+
/**
11355+
* Sets or retrieves the state of the check box or radio button.
11356+
*
11357+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/checked)
11358+
*/
1135411359
checked: boolean;
11355-
/** Sets or retrieves the state of the check box or radio button. */
11360+
/**
11361+
* Sets or retrieves the state of the check box or radio button.
11362+
*
11363+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/defaultChecked)
11364+
*/
1135611365
defaultChecked: boolean;
1135711366
/**
1135811367
* Sets or retrieves the initial contents of the object.
@@ -13572,10 +13581,19 @@ interface HTMLTextAreaElement extends HTMLElement {
1357213581
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/rows)
1357313582
*/
1357413583
rows: number;
13584+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionDirection) */
1357513585
selectionDirection: "forward" | "backward" | "none";
13576-
/** Gets or sets the end position or offset of a text selection. */
13586+
/**
13587+
* Gets or sets the end position or offset of a text selection.
13588+
*
13589+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionEnd)
13590+
*/
1357713591
selectionEnd: number;
13578-
/** Gets or sets the starting position or offset of a text selection. */
13592+
/**
13593+
* Gets or sets the starting position or offset of a text selection.
13594+
*
13595+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionStart)
13596+
*/
1357913597
selectionStart: number;
1358013598
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/textLength) */
1358113599
readonly textLength: number;
@@ -13619,20 +13637,27 @@ interface HTMLTextAreaElement extends HTMLElement {
1361913637
checkValidity(): boolean;
1362013638
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/reportValidity) */
1362113639
reportValidity(): boolean;
13622-
/** Highlights the input area of a form element. */
13640+
/**
13641+
* Highlights the input area of a form element.
13642+
*
13643+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/select)
13644+
*/
1362313645
select(): void;
1362413646
/**
1362513647
* Sets a custom error message that is displayed when a form is submitted.
1362613648
* @param error Sets a custom error message that is displayed when a form is submitted.
1362713649
*/
1362813650
setCustomValidity(error: string): void;
13651+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/setRangeText) */
1362913652
setRangeText(replacement: string): void;
1363013653
setRangeText(replacement: string, start: number, end: number, selectionMode?: SelectionMode): void;
1363113654
/**
1363213655
* Sets the start and end positions of a selection in a text field.
1363313656
* @param start The offset into the text field for the start of the selection.
1363413657
* @param end The offset into the text field for the end of the selection.
1363513658
* @param direction The direction in which the selection is performed.
13659+
*
13660+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/setSelectionRange)
1363613661
*/
1363713662
setSelectionRange(start: number | null, end: number | null, direction?: "forward" | "backward" | "none"): void;
1363813663
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTextAreaElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -20612,14 +20637,23 @@ declare var SVGLength: {
2061220637
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList)
2061320638
*/
2061420639
interface SVGLengthList {
20640+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/length) */
2061520641
readonly length: number;
20642+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/numberOfItems) */
2061620643
readonly numberOfItems: number;
20644+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/appendItem) */
2061720645
appendItem(newItem: SVGLength): SVGLength;
20646+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/clear) */
2061820647
clear(): void;
20648+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/getItem) */
2061920649
getItem(index: number): SVGLength;
20650+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/initialize) */
2062020651
initialize(newItem: SVGLength): SVGLength;
20652+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/insertItemBefore) */
2062120653
insertItemBefore(newItem: SVGLength, index: number): SVGLength;
20654+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/removeItem) */
2062220655
removeItem(index: number): SVGLength;
20656+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/replaceItem) */
2062320657
replaceItem(newItem: SVGLength, index: number): SVGLength;
2062420658
[index: number]: SVGLength;
2062520659
}

baselines/ts5.5/serviceworker.generated.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -737,6 +737,7 @@ interface WebTransportHash {
737737
interface WebTransportOptions {
738738
allowPooling?: boolean;
739739
congestionControl?: WebTransportCongestionControl;
740+
protocols?: string[];
740741
requireUnreliable?: boolean;
741742
serverCertificateHashes?: WebTransportHash[];
742743
}

baselines/ts5.5/sharedworker.generated.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -703,6 +703,7 @@ interface WebTransportHash {
703703
interface WebTransportOptions {
704704
allowPooling?: boolean;
705705
congestionControl?: WebTransportCongestionControl;
706+
protocols?: string[];
706707
requireUnreliable?: boolean;
707708
serverCertificateHashes?: WebTransportHash[];
708709
}

baselines/ts5.5/webworker.generated.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -953,6 +953,7 @@ interface WebTransportHash {
953953
interface WebTransportOptions {
954954
allowPooling?: boolean;
955955
congestionControl?: WebTransportCongestionControl;
956+
protocols?: string[];
956957
requireUnreliable?: boolean;
957958
serverCertificateHashes?: WebTransportHash[];
958959
}

baselines/webworker.generated.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -953,6 +953,7 @@ interface WebTransportHash {
953953
interface WebTransportOptions {
954954
allowPooling?: boolean;
955955
congestionControl?: WebTransportCongestionControl;
956+
protocols?: string[];
956957
requireUnreliable?: boolean;
957958
serverCertificateHashes?: WebTransportHash[];
958959
}

package-lock.json

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

0 commit comments

Comments
 (0)