Skip to content

Commit 69c81ce

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 2c1e3c3 commit 69c81ce

9 files changed

+53
-3
lines changed

baselines/dom.generated.d.ts

+16
Original file line numberDiff line numberDiff line change
@@ -6636,7 +6636,9 @@ interface DOMMatrix extends DOMMatrixReadOnly {
66366636
m44: number;
66376637
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
66386638
invertSelf(): DOMMatrix;
6639+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/multiplySelf) */
66396640
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
6641+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
66406642
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
66416643
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
66426644
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
@@ -6722,6 +6724,7 @@ interface DOMMatrixReadOnly {
67226724
flipY(): DOMMatrix;
67236725
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
67246726
inverse(): DOMMatrix;
6727+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
67256728
multiply(other?: DOMMatrixInit): DOMMatrix;
67266729
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
67276730
rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
@@ -20247,12 +20250,19 @@ declare var SVGClipPathElement: {
2024720250
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement)
2024820251
*/
2024920252
interface SVGComponentTransferFunctionElement extends SVGElement {
20253+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/amplitude) */
2025020254
readonly amplitude: SVGAnimatedNumber;
20255+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/exponent) */
2025120256
readonly exponent: SVGAnimatedNumber;
20257+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/intercept) */
2025220258
readonly intercept: SVGAnimatedNumber;
20259+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/offset) */
2025320260
readonly offset: SVGAnimatedNumber;
20261+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/slope) */
2025420262
readonly slope: SVGAnimatedNumber;
20263+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/tableValues) */
2025520264
readonly tableValues: SVGAnimatedNumberList;
20265+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/type) */
2025620266
readonly type: SVGAnimatedEnumeration;
2025720267
readonly SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN: 0;
2025820268
readonly SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY: 1;
@@ -21617,11 +21627,17 @@ declare var SVGRadialGradientElement: {
2161721627
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement)
2161821628
*/
2161921629
interface SVGRectElement extends SVGGeometryElement {
21630+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/height) */
2162021631
readonly height: SVGAnimatedLength;
21632+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/rx) */
2162121633
readonly rx: SVGAnimatedLength;
21634+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/ry) */
2162221635
readonly ry: SVGAnimatedLength;
21636+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/width) */
2162321637
readonly width: SVGAnimatedLength;
21638+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/x) */
2162421639
readonly x: SVGAnimatedLength;
21640+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/y) */
2162521641
readonly y: SVGAnimatedLength;
2162621642
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGRectElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2162721643
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;

baselines/serviceworker.generated.d.ts

+3
Original file line numberDiff line numberDiff line change
@@ -1862,7 +1862,9 @@ interface DOMMatrix extends DOMMatrixReadOnly {
18621862
m44: number;
18631863
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
18641864
invertSelf(): DOMMatrix;
1865+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/multiplySelf) */
18651866
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
1867+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
18661868
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
18671869
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
18681870
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
@@ -1940,6 +1942,7 @@ interface DOMMatrixReadOnly {
19401942
flipY(): DOMMatrix;
19411943
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
19421944
inverse(): DOMMatrix;
1945+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
19431946
multiply(other?: DOMMatrixInit): DOMMatrix;
19441947
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
19451948
rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;

baselines/sharedworker.generated.d.ts

+3
Original file line numberDiff line numberDiff line change
@@ -1789,7 +1789,9 @@ interface DOMMatrix extends DOMMatrixReadOnly {
17891789
m44: number;
17901790
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
17911791
invertSelf(): DOMMatrix;
1792+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/multiplySelf) */
17921793
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
1794+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
17931795
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
17941796
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
17951797
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
@@ -1867,6 +1869,7 @@ interface DOMMatrixReadOnly {
18671869
flipY(): DOMMatrix;
18681870
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
18691871
inverse(): DOMMatrix;
1872+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
18701873
multiply(other?: DOMMatrixInit): DOMMatrix;
18711874
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
18721875
rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;

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

+16
Original file line numberDiff line numberDiff line change
@@ -6629,7 +6629,9 @@ interface DOMMatrix extends DOMMatrixReadOnly {
66296629
m44: number;
66306630
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
66316631
invertSelf(): DOMMatrix;
6632+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/multiplySelf) */
66326633
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
6634+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
66336635
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
66346636
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
66356637
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
@@ -6715,6 +6717,7 @@ interface DOMMatrixReadOnly {
67156717
flipY(): DOMMatrix;
67166718
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
67176719
inverse(): DOMMatrix;
6720+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
67186721
multiply(other?: DOMMatrixInit): DOMMatrix;
67196722
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
67206723
rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
@@ -20226,12 +20229,19 @@ declare var SVGClipPathElement: {
2022620229
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement)
2022720230
*/
2022820231
interface SVGComponentTransferFunctionElement extends SVGElement {
20232+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/amplitude) */
2022920233
readonly amplitude: SVGAnimatedNumber;
20234+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/exponent) */
2023020235
readonly exponent: SVGAnimatedNumber;
20236+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/intercept) */
2023120237
readonly intercept: SVGAnimatedNumber;
20238+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/offset) */
2023220239
readonly offset: SVGAnimatedNumber;
20240+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/slope) */
2023320241
readonly slope: SVGAnimatedNumber;
20242+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/tableValues) */
2023420243
readonly tableValues: SVGAnimatedNumberList;
20244+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/type) */
2023520245
readonly type: SVGAnimatedEnumeration;
2023620246
readonly SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN: 0;
2023720247
readonly SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY: 1;
@@ -21596,11 +21606,17 @@ declare var SVGRadialGradientElement: {
2159621606
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement)
2159721607
*/
2159821608
interface SVGRectElement extends SVGGeometryElement {
21609+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/height) */
2159921610
readonly height: SVGAnimatedLength;
21611+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/rx) */
2160021612
readonly rx: SVGAnimatedLength;
21613+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/ry) */
2160121614
readonly ry: SVGAnimatedLength;
21615+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/width) */
2160221616
readonly width: SVGAnimatedLength;
21617+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/x) */
2160321618
readonly x: SVGAnimatedLength;
21619+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/y) */
2160421620
readonly y: SVGAnimatedLength;
2160521621
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGRectElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2160621622
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;

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

+3
Original file line numberDiff line numberDiff line change
@@ -1862,7 +1862,9 @@ interface DOMMatrix extends DOMMatrixReadOnly {
18621862
m44: number;
18631863
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
18641864
invertSelf(): DOMMatrix;
1865+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/multiplySelf) */
18651866
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
1867+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
18661868
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
18671869
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
18681870
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
@@ -1940,6 +1942,7 @@ interface DOMMatrixReadOnly {
19401942
flipY(): DOMMatrix;
19411943
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
19421944
inverse(): DOMMatrix;
1945+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
19431946
multiply(other?: DOMMatrixInit): DOMMatrix;
19441947
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
19451948
rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;

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

+3
Original file line numberDiff line numberDiff line change
@@ -1789,7 +1789,9 @@ interface DOMMatrix extends DOMMatrixReadOnly {
17891789
m44: number;
17901790
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
17911791
invertSelf(): DOMMatrix;
1792+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/multiplySelf) */
17921793
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
1794+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
17931795
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
17941796
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
17951797
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
@@ -1867,6 +1869,7 @@ interface DOMMatrixReadOnly {
18671869
flipY(): DOMMatrix;
18681870
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
18691871
inverse(): DOMMatrix;
1872+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
18701873
multiply(other?: DOMMatrixInit): DOMMatrix;
18711874
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
18721875
rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;

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

+3
Original file line numberDiff line numberDiff line change
@@ -2218,7 +2218,9 @@ interface DOMMatrix extends DOMMatrixReadOnly {
22182218
m44: number;
22192219
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
22202220
invertSelf(): DOMMatrix;
2221+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/multiplySelf) */
22212222
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
2223+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
22222224
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
22232225
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
22242226
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
@@ -2296,6 +2298,7 @@ interface DOMMatrixReadOnly {
22962298
flipY(): DOMMatrix;
22972299
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
22982300
inverse(): DOMMatrix;
2301+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
22992302
multiply(other?: DOMMatrixInit): DOMMatrix;
23002303
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
23012304
rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;

baselines/webworker.generated.d.ts

+3
Original file line numberDiff line numberDiff line change
@@ -2218,7 +2218,9 @@ interface DOMMatrix extends DOMMatrixReadOnly {
22182218
m44: number;
22192219
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
22202220
invertSelf(): DOMMatrix;
2221+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/multiplySelf) */
22212222
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
2223+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
22222224
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
22232225
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
22242226
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
@@ -2296,6 +2298,7 @@ interface DOMMatrixReadOnly {
22962298
flipY(): DOMMatrix;
22972299
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
22982300
inverse(): DOMMatrix;
2301+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
22992302
multiply(other?: DOMMatrixInit): DOMMatrix;
23002303
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
23012304
rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;

package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)