Skip to content

Commit c33f118

Browse files
authored
🤖 Update core dependencies (microsoft#1889)
Co-authored-by: saschanaz <[email protected]>
1 parent e762245 commit c33f118

9 files changed

+77
-11
lines changed

Diff for: baselines/dom.generated.d.ts

+31-4
Original file line numberDiff line numberDiff line change
@@ -4854,11 +4854,23 @@ interface CSSStyleDeclaration {
48544854
paddingTop: string;
48554855
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page) */
48564856
page: string;
4857-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-after) */
4857+
/**
4858+
* @deprecated
4859+
*
4860+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-after)
4861+
*/
48584862
pageBreakAfter: string;
4859-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-before) */
4863+
/**
4864+
* @deprecated
4865+
*
4866+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-before)
4867+
*/
48604868
pageBreakBefore: string;
4861-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-inside) */
4869+
/**
4870+
* @deprecated
4871+
*
4872+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-inside)
4873+
*/
48624874
pageBreakInside: string;
48634875
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/paint-order) */
48644876
paintOrder: string;
@@ -6684,7 +6696,9 @@ interface DOMMatrixReadOnly {
66846696
readonly e: number;
66856697
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
66866698
readonly f: number;
6699+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/is2D) */
66876700
readonly is2D: boolean;
6701+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/isIdentity) */
66886702
readonly isIdentity: boolean;
66896703
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
66906704
readonly m11: number;
@@ -12430,7 +12444,11 @@ interface HTMLModElement extends HTMLElement {
1243012444
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement/cite)
1243112445
*/
1243212446
cite: string;
12433-
/** Sets or retrieves the date and time of a modification to the object. */
12447+
/**
12448+
* Sets or retrieves the date and time of a modification to the object.
12449+
*
12450+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement/dateTime)
12451+
*/
1243412452
dateTime: string;
1243512453
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLModElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
1243612454
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20186,8 +20204,11 @@ interface SVGAnimationElement extends SVGElement, SVGTests {
2018620204
endElement(): void;
2018720205
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/endElementAt) */
2018820206
endElementAt(offset: number): void;
20207+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/getCurrentTime) */
2018920208
getCurrentTime(): number;
20209+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/getSimpleDuration) */
2019020210
getSimpleDuration(): number;
20211+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/getStartTime) */
2019120212
getStartTime(): number;
2019220213
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGAnimationElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2019320214
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20868,8 +20889,11 @@ declare var SVGFEOffsetElement: {
2086820889
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEPointLightElement)
2086920890
*/
2087020891
interface SVGFEPointLightElement extends SVGElement {
20892+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEPointLightElement/x) */
2087120893
readonly x: SVGAnimatedNumber;
20894+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEPointLightElement/y) */
2087220895
readonly y: SVGAnimatedNumber;
20896+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEPointLightElement/z) */
2087320897
readonly z: SVGAnimatedNumber;
2087420898
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEPointLightElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2087520899
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20920,8 +20944,11 @@ interface SVGFESpotLightElement extends SVGElement {
2092020944
readonly pointsAtY: SVGAnimatedNumber;
2092120945
readonly pointsAtZ: SVGAnimatedNumber;
2092220946
readonly specularExponent: SVGAnimatedNumber;
20947+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/x) */
2092320948
readonly x: SVGAnimatedNumber;
20949+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/y) */
2092420950
readonly y: SVGAnimatedNumber;
20951+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/z) */
2092520952
readonly z: SVGAnimatedNumber;
2092620953
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFESpotLightElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2092720954
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;

Diff for: baselines/serviceworker.generated.d.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1902,7 +1902,9 @@ interface DOMMatrixReadOnly {
19021902
readonly e: number;
19031903
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
19041904
readonly f: number;
1905+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/is2D) */
19051906
readonly is2D: boolean;
1907+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/isIdentity) */
19061908
readonly isIdentity: boolean;
19071909
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
19081910
readonly m11: number;

Diff for: baselines/sharedworker.generated.d.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1829,7 +1829,9 @@ interface DOMMatrixReadOnly {
18291829
readonly e: number;
18301830
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
18311831
readonly f: number;
1832+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/is2D) */
18321833
readonly is2D: boolean;
1834+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/isIdentity) */
18331835
readonly isIdentity: boolean;
18341836
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
18351837
readonly m11: number;

Diff for: baselines/ts5.5/dom.generated.d.ts

+31-4
Original file line numberDiff line numberDiff line change
@@ -4848,11 +4848,23 @@ interface CSSStyleDeclaration {
48484848
paddingTop: string;
48494849
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page) */
48504850
page: string;
4851-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-after) */
4851+
/**
4852+
* @deprecated
4853+
*
4854+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-after)
4855+
*/
48524856
pageBreakAfter: string;
4853-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-before) */
4857+
/**
4858+
* @deprecated
4859+
*
4860+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-before)
4861+
*/
48544862
pageBreakBefore: string;
4855-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-inside) */
4863+
/**
4864+
* @deprecated
4865+
*
4866+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-inside)
4867+
*/
48564868
pageBreakInside: string;
48574869
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/paint-order) */
48584870
paintOrder: string;
@@ -6677,7 +6689,9 @@ interface DOMMatrixReadOnly {
66776689
readonly e: number;
66786690
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
66796691
readonly f: number;
6692+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/is2D) */
66806693
readonly is2D: boolean;
6694+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/isIdentity) */
66816695
readonly isIdentity: boolean;
66826696
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
66836697
readonly m11: number;
@@ -12413,7 +12427,11 @@ interface HTMLModElement extends HTMLElement {
1241312427
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement/cite)
1241412428
*/
1241512429
cite: string;
12416-
/** Sets or retrieves the date and time of a modification to the object. */
12430+
/**
12431+
* Sets or retrieves the date and time of a modification to the object.
12432+
*
12433+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement/dateTime)
12434+
*/
1241712435
dateTime: string;
1241812436
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLModElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
1241912437
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20165,8 +20183,11 @@ interface SVGAnimationElement extends SVGElement, SVGTests {
2016520183
endElement(): void;
2016620184
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/endElementAt) */
2016720185
endElementAt(offset: number): void;
20186+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/getCurrentTime) */
2016820187
getCurrentTime(): number;
20188+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/getSimpleDuration) */
2016920189
getSimpleDuration(): number;
20190+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/getStartTime) */
2017020191
getStartTime(): number;
2017120192
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGAnimationElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2017220193
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20847,8 +20868,11 @@ declare var SVGFEOffsetElement: {
2084720868
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEPointLightElement)
2084820869
*/
2084920870
interface SVGFEPointLightElement extends SVGElement {
20871+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEPointLightElement/x) */
2085020872
readonly x: SVGAnimatedNumber;
20873+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEPointLightElement/y) */
2085120874
readonly y: SVGAnimatedNumber;
20875+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEPointLightElement/z) */
2085220876
readonly z: SVGAnimatedNumber;
2085320877
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEPointLightElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2085420878
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20899,8 +20923,11 @@ interface SVGFESpotLightElement extends SVGElement {
2089920923
readonly pointsAtY: SVGAnimatedNumber;
2090020924
readonly pointsAtZ: SVGAnimatedNumber;
2090120925
readonly specularExponent: SVGAnimatedNumber;
20926+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/x) */
2090220927
readonly x: SVGAnimatedNumber;
20928+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/y) */
2090320929
readonly y: SVGAnimatedNumber;
20930+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/z) */
2090420931
readonly z: SVGAnimatedNumber;
2090520932
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFESpotLightElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2090620933
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;

Diff for: baselines/ts5.5/serviceworker.generated.d.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1902,7 +1902,9 @@ interface DOMMatrixReadOnly {
19021902
readonly e: number;
19031903
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
19041904
readonly f: number;
1905+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/is2D) */
19051906
readonly is2D: boolean;
1907+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/isIdentity) */
19061908
readonly isIdentity: boolean;
19071909
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
19081910
readonly m11: number;

Diff for: baselines/ts5.5/sharedworker.generated.d.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1829,7 +1829,9 @@ interface DOMMatrixReadOnly {
18291829
readonly e: number;
18301830
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
18311831
readonly f: number;
1832+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/is2D) */
18321833
readonly is2D: boolean;
1834+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/isIdentity) */
18331835
readonly isIdentity: boolean;
18341836
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
18351837
readonly m11: number;

Diff for: baselines/ts5.5/webworker.generated.d.ts

+2
Original file line numberDiff line numberDiff line change
@@ -2258,7 +2258,9 @@ interface DOMMatrixReadOnly {
22582258
readonly e: number;
22592259
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
22602260
readonly f: number;
2261+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/is2D) */
22612262
readonly is2D: boolean;
2263+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/isIdentity) */
22622264
readonly isIdentity: boolean;
22632265
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
22642266
readonly m11: number;

Diff for: baselines/webworker.generated.d.ts

+2
Original file line numberDiff line numberDiff line change
@@ -2258,7 +2258,9 @@ interface DOMMatrixReadOnly {
22582258
readonly e: number;
22592259
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
22602260
readonly f: number;
2261+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/is2D) */
22612262
readonly is2D: boolean;
2263+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/isIdentity) */
22622264
readonly isIdentity: boolean;
22632265
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
22642266
readonly m11: number;

Diff for: 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)