Skip to content

Commit 42095d4

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 2cea3f6 commit 42095d4

File tree

6 files changed

+11445
-11468
lines changed

6 files changed

+11445
-11468
lines changed

baselines/dom.generated.d.ts

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17154,7 +17154,7 @@ interface HTMLInputElement extends HTMLElement, PopoverTargetAttributes {
1715417154
*/
1715517155
selectionDirection: "forward" | "backward" | "none" | null;
1715617156
/**
17157-
* The **`selectionEnd`** property of the HTMLInputElement interface is a number that represents the end index of the selected text. When there is no selection, this returns the offset of the character immediately following the current text input cursor position.
17157+
* The **`selectionEnd`** property of the HTMLInputElement interface is a number that represents the end index of the selected text. That is, it represents the index of the character immediately following the selection. Likewise, when there is no selection, this returns the offset of the character immediately following the current text input cursor position.
1715817158
*
1715917159
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionEnd)
1716017160
*/
@@ -39420,11 +39420,7 @@ interface WindowEventHandlers {
3942039420
onstorage: ((this: WindowEventHandlers, ev: StorageEvent) => any) | null;
3942139421
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unhandledrejection_event) */
3942239422
onunhandledrejection: ((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any) | null;
39423-
/**
39424-
* @deprecated
39425-
*
39426-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event)
39427-
*/
39423+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event) */
3942839424
onunload: ((this: WindowEventHandlers, ev: Event) => any) | null;
3942939425
addEventListener<K extends keyof WindowEventHandlersEventMap>(type: K, listener: (this: WindowEventHandlers, ev: WindowEventHandlersEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
3943039426
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -41785,11 +41781,7 @@ declare var onrejectionhandled: ((this: Window, ev: PromiseRejectionEvent) => an
4178541781
declare var onstorage: ((this: Window, ev: StorageEvent) => any) | null;
4178641782
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unhandledrejection_event) */
4178741783
declare var onunhandledrejection: ((this: Window, ev: PromiseRejectionEvent) => any) | null;
41788-
/**
41789-
* @deprecated
41790-
*
41791-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event)
41792-
*/
41784+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event) */
4179341785
declare var onunload: ((this: Window, ev: Event) => any) | null;
4179441786
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/localStorage) */
4179541787
declare var localStorage: Storage;

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

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17136,7 +17136,7 @@ interface HTMLInputElement extends HTMLElement, PopoverTargetAttributes {
1713617136
*/
1713717137
selectionDirection: "forward" | "backward" | "none" | null;
1713817138
/**
17139-
* The **`selectionEnd`** property of the HTMLInputElement interface is a number that represents the end index of the selected text. When there is no selection, this returns the offset of the character immediately following the current text input cursor position.
17139+
* The **`selectionEnd`** property of the HTMLInputElement interface is a number that represents the end index of the selected text. That is, it represents the index of the character immediately following the selection. Likewise, when there is no selection, this returns the offset of the character immediately following the current text input cursor position.
1714017140
*
1714117141
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionEnd)
1714217142
*/
@@ -39394,11 +39394,7 @@ interface WindowEventHandlers {
3939439394
onstorage: ((this: WindowEventHandlers, ev: StorageEvent) => any) | null;
3939539395
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unhandledrejection_event) */
3939639396
onunhandledrejection: ((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any) | null;
39397-
/**
39398-
* @deprecated
39399-
*
39400-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event)
39401-
*/
39397+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event) */
3940239398
onunload: ((this: WindowEventHandlers, ev: Event) => any) | null;
3940339399
addEventListener<K extends keyof WindowEventHandlersEventMap>(type: K, listener: (this: WindowEventHandlers, ev: WindowEventHandlersEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
3940439400
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -41759,11 +41755,7 @@ declare var onrejectionhandled: ((this: Window, ev: PromiseRejectionEvent) => an
4175941755
declare var onstorage: ((this: Window, ev: StorageEvent) => any) | null;
4176041756
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unhandledrejection_event) */
4176141757
declare var onunhandledrejection: ((this: Window, ev: PromiseRejectionEvent) => any) | null;
41762-
/**
41763-
* @deprecated
41764-
*
41765-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event)
41766-
*/
41758+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event) */
4176741759
declare var onunload: ((this: Window, ev: Event) => any) | null;
4176841760
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/localStorage) */
4176941761
declare var localStorage: Storage;

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

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17151,7 +17151,7 @@ interface HTMLInputElement extends HTMLElement, PopoverTargetAttributes {
1715117151
*/
1715217152
selectionDirection: "forward" | "backward" | "none" | null;
1715317153
/**
17154-
* The **`selectionEnd`** property of the HTMLInputElement interface is a number that represents the end index of the selected text. When there is no selection, this returns the offset of the character immediately following the current text input cursor position.
17154+
* The **`selectionEnd`** property of the HTMLInputElement interface is a number that represents the end index of the selected text. That is, it represents the index of the character immediately following the selection. Likewise, when there is no selection, this returns the offset of the character immediately following the current text input cursor position.
1715517155
*
1715617156
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionEnd)
1715717157
*/
@@ -39417,11 +39417,7 @@ interface WindowEventHandlers {
3941739417
onstorage: ((this: WindowEventHandlers, ev: StorageEvent) => any) | null;
3941839418
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unhandledrejection_event) */
3941939419
onunhandledrejection: ((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any) | null;
39420-
/**
39421-
* @deprecated
39422-
*
39423-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event)
39424-
*/
39420+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event) */
3942539421
onunload: ((this: WindowEventHandlers, ev: Event) => any) | null;
3942639422
addEventListener<K extends keyof WindowEventHandlersEventMap>(type: K, listener: (this: WindowEventHandlers, ev: WindowEventHandlersEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
3942739423
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -41782,11 +41778,7 @@ declare var onrejectionhandled: ((this: Window, ev: PromiseRejectionEvent) => an
4178241778
declare var onstorage: ((this: Window, ev: StorageEvent) => any) | null;
4178341779
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unhandledrejection_event) */
4178441780
declare var onunhandledrejection: ((this: Window, ev: PromiseRejectionEvent) => any) | null;
41785-
/**
41786-
* @deprecated
41787-
*
41788-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event)
41789-
*/
41781+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event) */
4179041782
declare var onunload: ((this: Window, ev: Event) => any) | null;
4179141783
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/localStorage) */
4179241784
declare var localStorage: Storage;

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

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17151,7 +17151,7 @@ interface HTMLInputElement extends HTMLElement, PopoverTargetAttributes {
1715117151
*/
1715217152
selectionDirection: "forward" | "backward" | "none" | null;
1715317153
/**
17154-
* The **`selectionEnd`** property of the HTMLInputElement interface is a number that represents the end index of the selected text. When there is no selection, this returns the offset of the character immediately following the current text input cursor position.
17154+
* The **`selectionEnd`** property of the HTMLInputElement interface is a number that represents the end index of the selected text. That is, it represents the index of the character immediately following the selection. Likewise, when there is no selection, this returns the offset of the character immediately following the current text input cursor position.
1715517155
*
1715617156
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionEnd)
1715717157
*/
@@ -39417,11 +39417,7 @@ interface WindowEventHandlers {
3941739417
onstorage: ((this: WindowEventHandlers, ev: StorageEvent) => any) | null;
3941839418
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unhandledrejection_event) */
3941939419
onunhandledrejection: ((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any) | null;
39420-
/**
39421-
* @deprecated
39422-
*
39423-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event)
39424-
*/
39420+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event) */
3942539421
onunload: ((this: WindowEventHandlers, ev: Event) => any) | null;
3942639422
addEventListener<K extends keyof WindowEventHandlersEventMap>(type: K, listener: (this: WindowEventHandlers, ev: WindowEventHandlersEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
3942739423
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -41782,11 +41778,7 @@ declare var onrejectionhandled: ((this: Window, ev: PromiseRejectionEvent) => an
4178241778
declare var onstorage: ((this: Window, ev: StorageEvent) => any) | null;
4178341779
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unhandledrejection_event) */
4178441780
declare var onunhandledrejection: ((this: Window, ev: PromiseRejectionEvent) => any) | null;
41785-
/**
41786-
* @deprecated
41787-
*
41788-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event)
41789-
*/
41781+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event) */
4179041782
declare var onunload: ((this: Window, ev: Event) => any) | null;
4179141783
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/localStorage) */
4179241784
declare var localStorage: Storage;

0 commit comments

Comments
 (0)