Skip to content

Commit 0f25e2d

Browse files
TypeScript Botsaschanaz
TypeScript Bot
andauthored
🤖 Update core dependencies (#1664)
Co-authored-by: saschanaz <[email protected]>
1 parent 67b73ad commit 0f25e2d

File tree

5 files changed

+88
-79
lines changed

5 files changed

+88
-79
lines changed

baselines/dom.generated.d.ts

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8983,7 +8983,7 @@ interface GlobalEventHandlers {
89838983
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
89848984
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/auxclick_event) */
89858985
onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
8986-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforeinput_event) */
8986+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/beforeinput_event) */
89878987
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
89888988
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) */
89898989
onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
@@ -9124,7 +9124,7 @@ interface GlobalEventHandlers {
91249124
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
91259125
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/gotpointercapture_event) */
91269126
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
9127-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/input_event) */
9127+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/input_event) */
91289128
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
91299129
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/invalid_event) */
91309130
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
@@ -9178,7 +9178,7 @@ interface GlobalEventHandlers {
91789178
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadstart_event)
91799179
*/
91809180
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
9181-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/lostpointercapture_event) */
9181+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/lostpointercapture_event) */
91829182
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
91839183
/**
91849184
* Fires when the user clicks the object with either mouse button.
@@ -14477,7 +14477,11 @@ interface KeyboardEvent extends UIEvent {
1447714477
readonly shiftKey: boolean;
1447814478
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/getModifierState) */
1447914479
getModifierState(keyArg: string): boolean;
14480-
/** @deprecated */
14480+
/**
14481+
* @deprecated
14482+
*
14483+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/initKeyboardEvent)
14484+
*/
1448114485
initKeyboardEvent(typeArg: string, bubblesArg?: boolean, cancelableArg?: boolean, viewArg?: Window | null, keyArg?: string, locationArg?: number, ctrlKey?: boolean, altKey?: boolean, shiftKey?: boolean, metaKey?: boolean): void;
1448214486
readonly DOM_KEY_LOCATION_STANDARD: 0x00;
1448314487
readonly DOM_KEY_LOCATION_LEFT: 0x01;
@@ -23307,7 +23311,6 @@ declare var WebGL2RenderingContext: {
2330723311
readonly STENCIL: 0x1802;
2330823312
readonly RED: 0x1903;
2330923313
readonly RGB8: 0x8051;
23310-
readonly RGBA8: 0x8058;
2331123314
readonly RGB10_A2: 0x8059;
2331223315
readonly TEXTURE_BINDING_3D: 0x806A;
2331323316
readonly UNPACK_SKIP_IMAGES: 0x806D;
@@ -23818,6 +23821,7 @@ declare var WebGL2RenderingContext: {
2381823821
readonly RENDERBUFFER: 0x8D41;
2381923822
readonly RGBA4: 0x8056;
2382023823
readonly RGB5_A1: 0x8057;
23824+
readonly RGBA8: 0x8058;
2382123825
readonly RGB565: 0x8D62;
2382223826
readonly DEPTH_COMPONENT16: 0x81A5;
2382323827
readonly STENCIL_INDEX8: 0x8D48;
@@ -24052,7 +24056,6 @@ interface WebGL2RenderingContextBase {
2405224056
readonly STENCIL: 0x1802;
2405324057
readonly RED: 0x1903;
2405424058
readonly RGB8: 0x8051;
24055-
readonly RGBA8: 0x8058;
2405624059
readonly RGB10_A2: 0x8059;
2405724060
readonly TEXTURE_BINDING_3D: 0x806A;
2405824061
readonly UNPACK_SKIP_IMAGES: 0x806D;
@@ -24725,6 +24728,7 @@ declare var WebGLRenderingContext: {
2472524728
readonly RENDERBUFFER: 0x8D41;
2472624729
readonly RGBA4: 0x8056;
2472724730
readonly RGB5_A1: 0x8057;
24731+
readonly RGBA8: 0x8058;
2472824732
readonly RGB565: 0x8D62;
2472924733
readonly DEPTH_COMPONENT16: 0x81A5;
2473024734
readonly STENCIL_INDEX8: 0x8D48;
@@ -25300,6 +25304,7 @@ interface WebGLRenderingContextBase {
2530025304
readonly RENDERBUFFER: 0x8D41;
2530125305
readonly RGBA4: 0x8056;
2530225306
readonly RGB5_A1: 0x8057;
25307+
readonly RGBA8: 0x8058;
2530325308
readonly RGB565: 0x8D62;
2530425309
readonly DEPTH_COMPONENT16: 0x81A5;
2530525310
readonly STENCIL_INDEX8: 0x8D48;
@@ -27615,7 +27620,7 @@ declare var onanimationiteration: ((this: Window, ev: AnimationEvent) => any) |
2761527620
declare var onanimationstart: ((this: Window, ev: AnimationEvent) => any) | null;
2761627621
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/auxclick_event) */
2761727622
declare var onauxclick: ((this: Window, ev: MouseEvent) => any) | null;
27618-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforeinput_event) */
27623+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/beforeinput_event) */
2761927624
declare var onbeforeinput: ((this: Window, ev: InputEvent) => any) | null;
2762027625
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) */
2762127626
declare var onbeforetoggle: ((this: Window, ev: Event) => any) | null;
@@ -27756,7 +27761,7 @@ declare var onfocus: ((this: Window, ev: FocusEvent) => any) | null;
2775627761
declare var onformdata: ((this: Window, ev: FormDataEvent) => any) | null;
2775727762
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/gotpointercapture_event) */
2775827763
declare var ongotpointercapture: ((this: Window, ev: PointerEvent) => any) | null;
27759-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/input_event) */
27764+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/input_event) */
2776027765
declare var oninput: ((this: Window, ev: Event) => any) | null;
2776127766
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/invalid_event) */
2776227767
declare var oninvalid: ((this: Window, ev: Event) => any) | null;
@@ -27810,7 +27815,7 @@ declare var onloadedmetadata: ((this: Window, ev: Event) => any) | null;
2781027815
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadstart_event)
2781127816
*/
2781227817
declare var onloadstart: ((this: Window, ev: Event) => any) | null;
27813-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/lostpointercapture_event) */
27818+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/lostpointercapture_event) */
2781427819
declare var onlostpointercapture: ((this: Window, ev: PointerEvent) => any) | null;
2781527820
/**
2781627821
* Fires when the user clicks the object with either mouse button.

baselines/serviceworker.generated.d.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5554,7 +5554,6 @@ declare var WebGL2RenderingContext: {
55545554
readonly STENCIL: 0x1802;
55555555
readonly RED: 0x1903;
55565556
readonly RGB8: 0x8051;
5557-
readonly RGBA8: 0x8058;
55585557
readonly RGB10_A2: 0x8059;
55595558
readonly TEXTURE_BINDING_3D: 0x806A;
55605559
readonly UNPACK_SKIP_IMAGES: 0x806D;
@@ -6065,6 +6064,7 @@ declare var WebGL2RenderingContext: {
60656064
readonly RENDERBUFFER: 0x8D41;
60666065
readonly RGBA4: 0x8056;
60676066
readonly RGB5_A1: 0x8057;
6067+
readonly RGBA8: 0x8058;
60686068
readonly RGB565: 0x8D62;
60696069
readonly DEPTH_COMPONENT16: 0x81A5;
60706070
readonly STENCIL_INDEX8: 0x8D48;
@@ -6299,7 +6299,6 @@ interface WebGL2RenderingContextBase {
62996299
readonly STENCIL: 0x1802;
63006300
readonly RED: 0x1903;
63016301
readonly RGB8: 0x8051;
6302-
readonly RGBA8: 0x8058;
63036302
readonly RGB10_A2: 0x8059;
63046303
readonly TEXTURE_BINDING_3D: 0x806A;
63056304
readonly UNPACK_SKIP_IMAGES: 0x806D;
@@ -6972,6 +6971,7 @@ declare var WebGLRenderingContext: {
69726971
readonly RENDERBUFFER: 0x8D41;
69736972
readonly RGBA4: 0x8056;
69746973
readonly RGB5_A1: 0x8057;
6974+
readonly RGBA8: 0x8058;
69756975
readonly RGB565: 0x8D62;
69766976
readonly DEPTH_COMPONENT16: 0x81A5;
69776977
readonly STENCIL_INDEX8: 0x8D48;
@@ -7545,6 +7545,7 @@ interface WebGLRenderingContextBase {
75457545
readonly RENDERBUFFER: 0x8D41;
75467546
readonly RGBA4: 0x8056;
75477547
readonly RGB5_A1: 0x8057;
7548+
readonly RGBA8: 0x8058;
75487549
readonly RGB565: 0x8D62;
75497550
readonly DEPTH_COMPONENT16: 0x81A5;
75507551
readonly STENCIL_INDEX8: 0x8D48;

baselines/sharedworker.generated.d.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5368,7 +5368,6 @@ declare var WebGL2RenderingContext: {
53685368
readonly STENCIL: 0x1802;
53695369
readonly RED: 0x1903;
53705370
readonly RGB8: 0x8051;
5371-
readonly RGBA8: 0x8058;
53725371
readonly RGB10_A2: 0x8059;
53735372
readonly TEXTURE_BINDING_3D: 0x806A;
53745373
readonly UNPACK_SKIP_IMAGES: 0x806D;
@@ -5879,6 +5878,7 @@ declare var WebGL2RenderingContext: {
58795878
readonly RENDERBUFFER: 0x8D41;
58805879
readonly RGBA4: 0x8056;
58815880
readonly RGB5_A1: 0x8057;
5881+
readonly RGBA8: 0x8058;
58825882
readonly RGB565: 0x8D62;
58835883
readonly DEPTH_COMPONENT16: 0x81A5;
58845884
readonly STENCIL_INDEX8: 0x8D48;
@@ -6113,7 +6113,6 @@ interface WebGL2RenderingContextBase {
61136113
readonly STENCIL: 0x1802;
61146114
readonly RED: 0x1903;
61156115
readonly RGB8: 0x8051;
6116-
readonly RGBA8: 0x8058;
61176116
readonly RGB10_A2: 0x8059;
61186117
readonly TEXTURE_BINDING_3D: 0x806A;
61196118
readonly UNPACK_SKIP_IMAGES: 0x806D;
@@ -6786,6 +6785,7 @@ declare var WebGLRenderingContext: {
67866785
readonly RENDERBUFFER: 0x8D41;
67876786
readonly RGBA4: 0x8056;
67886787
readonly RGB5_A1: 0x8057;
6788+
readonly RGBA8: 0x8058;
67896789
readonly RGB565: 0x8D62;
67906790
readonly DEPTH_COMPONENT16: 0x81A5;
67916791
readonly STENCIL_INDEX8: 0x8D48;
@@ -7359,6 +7359,7 @@ interface WebGLRenderingContextBase {
73597359
readonly RENDERBUFFER: 0x8D41;
73607360
readonly RGBA4: 0x8056;
73617361
readonly RGB5_A1: 0x8057;
7362+
readonly RGBA8: 0x8058;
73627363
readonly RGB565: 0x8D62;
73637364
readonly DEPTH_COMPONENT16: 0x81A5;
73647365
readonly STENCIL_INDEX8: 0x8D48;

baselines/webworker.generated.d.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6042,7 +6042,6 @@ declare var WebGL2RenderingContext: {
60426042
readonly STENCIL: 0x1802;
60436043
readonly RED: 0x1903;
60446044
readonly RGB8: 0x8051;
6045-
readonly RGBA8: 0x8058;
60466045
readonly RGB10_A2: 0x8059;
60476046
readonly TEXTURE_BINDING_3D: 0x806A;
60486047
readonly UNPACK_SKIP_IMAGES: 0x806D;
@@ -6553,6 +6552,7 @@ declare var WebGL2RenderingContext: {
65536552
readonly RENDERBUFFER: 0x8D41;
65546553
readonly RGBA4: 0x8056;
65556554
readonly RGB5_A1: 0x8057;
6555+
readonly RGBA8: 0x8058;
65566556
readonly RGB565: 0x8D62;
65576557
readonly DEPTH_COMPONENT16: 0x81A5;
65586558
readonly STENCIL_INDEX8: 0x8D48;
@@ -6787,7 +6787,6 @@ interface WebGL2RenderingContextBase {
67876787
readonly STENCIL: 0x1802;
67886788
readonly RED: 0x1903;
67896789
readonly RGB8: 0x8051;
6790-
readonly RGBA8: 0x8058;
67916790
readonly RGB10_A2: 0x8059;
67926791
readonly TEXTURE_BINDING_3D: 0x806A;
67936792
readonly UNPACK_SKIP_IMAGES: 0x806D;
@@ -7460,6 +7459,7 @@ declare var WebGLRenderingContext: {
74607459
readonly RENDERBUFFER: 0x8D41;
74617460
readonly RGBA4: 0x8056;
74627461
readonly RGB5_A1: 0x8057;
7462+
readonly RGBA8: 0x8058;
74637463
readonly RGB565: 0x8D62;
74647464
readonly DEPTH_COMPONENT16: 0x81A5;
74657465
readonly STENCIL_INDEX8: 0x8D48;
@@ -8033,6 +8033,7 @@ interface WebGLRenderingContextBase {
80338033
readonly RENDERBUFFER: 0x8D41;
80348034
readonly RGBA4: 0x8056;
80358035
readonly RGB5_A1: 0x8057;
8036+
readonly RGBA8: 0x8058;
80368037
readonly RGB565: 0x8D62;
80378038
readonly DEPTH_COMPONENT16: 0x81A5;
80388039
readonly STENCIL_INDEX8: 0x8D48;

0 commit comments

Comments
 (0)