Skip to content

Commit 27fa26c

Browse files
TypeScript Botsaschanaz
TypeScript Bot
andauthored
🤖 Update core dependencies (#1692)
Co-authored-by: saschanaz <[email protected]>
1 parent 2976aa2 commit 27fa26c

File tree

2 files changed

+57
-26
lines changed

2 files changed

+57
-26
lines changed

baselines/dom.generated.d.ts

Lines changed: 38 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11028,7 +11028,11 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
1102811028
checked: boolean;
1102911029
/** Sets or retrieves the state of the check box or radio button. */
1103011030
defaultChecked: boolean;
11031-
/** Sets or retrieves the initial contents of the object. */
11031+
/**
11032+
* Sets or retrieves the initial contents of the object.
11033+
*
11034+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/defaultValue)
11035+
*/
1103211036
defaultValue: string;
1103311037
dirName: string;
1103411038
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/disabled) */
@@ -11087,12 +11091,25 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
1108711091
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/list)
1108811092
*/
1108911093
readonly list: HTMLDataListElement | null;
11090-
/** Defines the maximum acceptable value for an input element with type="number".When used with the min and step attributes, lets you control the range and increment (such as only even numbers) that the user can enter into an input field. */
11094+
/**
11095+
* Defines the maximum acceptable value for an input element with type="number".When used with the min and step attributes, lets you control the range and increment (such as only even numbers) that the user can enter into an input field.
11096+
*
11097+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/max)
11098+
*/
1109111099
max: string;
11092-
/** Sets or retrieves the maximum number of characters that the user can enter in a text control. */
11100+
/**
11101+
* Sets or retrieves the maximum number of characters that the user can enter in a text control.
11102+
*
11103+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/maxLength)
11104+
*/
1109311105
maxLength: number;
11094-
/** Defines the minimum acceptable value for an input element with type="number". When used with the max and step attributes, lets you control the range and increment (such as even numbers only) that the user can enter into an input field. */
11106+
/**
11107+
* Defines the minimum acceptable value for an input element with type="number". When used with the max and step attributes, lets you control the range and increment (such as even numbers only) that the user can enter into an input field.
11108+
*
11109+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/min)
11110+
*/
1109511111
min: string;
11112+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/minLength) */
1109611113
minLength: number;
1109711114
/**
1109811115
* Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list.
@@ -11123,9 +11140,17 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
1112311140
required: boolean;
1112411141
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionDirection) */
1112511142
selectionDirection: "forward" | "backward" | "none" | null;
11126-
/** Gets or sets the end position or offset of a text selection. */
11143+
/**
11144+
* Gets or sets the end position or offset of a text selection.
11145+
*
11146+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionEnd)
11147+
*/
1112711148
selectionEnd: number | null;
11128-
/** Gets or sets the starting position or offset of a text selection. */
11149+
/**
11150+
* Gets or sets the starting position or offset of a text selection.
11151+
*
11152+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionStart)
11153+
*/
1112911154
selectionStart: number | null;
1113011155
size: number;
1113111156
/** The address or URL of the a media resource that is to be considered. */
@@ -11155,7 +11180,11 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
1115511180
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/validity)
1115611181
*/
1115711182
readonly validity: ValidityState;
11158-
/** Returns the value of the data at the cursor's current position. */
11183+
/**
11184+
* Returns the value of the data at the cursor's current position.
11185+
*
11186+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/value)
11187+
*/
1115911188
value: string;
1116011189
/** Returns a Date object representing the form control's value, if applicable; otherwise, returns null. Can be set, to change the value. Throws an "InvalidStateError" DOMException if the control isn't date- or time-based. */
1116111190
valueAsDate: Date | null;
@@ -12618,6 +12647,7 @@ declare var HTMLSlotElement: {
1261812647
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement)
1261912648
*/
1262012649
interface HTMLSourceElement extends HTMLElement {
12650+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/height) */
1262112651
height: number;
1262212652
/**
1262312653
* Gets or sets the intended media type of the media source.
@@ -12641,6 +12671,7 @@ interface HTMLSourceElement extends HTMLElement {
1264112671
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/type)
1264212672
*/
1264312673
type: string;
12674+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/width) */
1264412675
width: number;
1264512676
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSourceElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
1264612677
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;

package-lock.json

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

0 commit comments

Comments
 (0)