Skip to content

Commit 3f58e59

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent c51c5e2 commit 3f58e59

File tree

5 files changed

+45
-25
lines changed

5 files changed

+45
-25
lines changed

baselines/dom.generated.d.ts

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5996,7 +5996,7 @@ declare var CSSStartingStyleRule: {
59965996
};
59975997

59985998
/**
5999-
* The **`CSSStyleDeclaration`** interface represents an object that is a CSS declaration block, and exposes style information and various style-related methods and properties.
5999+
* The **`CSSStyleDeclaration`** interface is the base class for objects that represent CSS declaration blocks with different supported sets of CSS style information:
60006000
*
60016001
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration)
60026002
*/
@@ -6060,6 +6060,7 @@ declare var CSSStyleDeclaration: {
60606060
new(): CSSStyleDeclaration;
60616061
};
60626062

6063+
/** The **`CSSStyleProperties`** interface of the CSS Object Model (CSSOM) represents inline or computed styles available on an element, or the styles associated with a CSS style rule. */
60636064
interface CSSStyleProperties extends CSSStyleDeclarationBase {
60646065
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/accent-color) */
60656066
accentColor: string;
@@ -6348,7 +6349,11 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
63486349
counterReset: string;
63496350
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-set) */
63506351
counterSet: string;
6351-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/cssFloat) */
6352+
/**
6353+
* The **`cssFloat`** property of the CSSStyleProperties interface returns the CSS float property.
6354+
*
6355+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/cssFloat)
6356+
*/
63526357
cssFloat: string;
63536358
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/cursor) */
63546359
cursor: string;
@@ -7422,7 +7427,7 @@ interface CSSStyleRule extends CSSGroupingRule {
74227427
*/
74237428
selectorText: string;
74247429
/**
7425-
* The read-only **`style`** property is the CSSStyleDeclaration interface for the declaration block of the CSSStyleRule.
7430+
* The read-only **`style`** property is a CSSStyleProperties object that represents the inline styles of a style rule (CSSStyleRule).
74267431
*
74277432
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleRule/style)
74287433
*/
@@ -9344,7 +9349,7 @@ declare var DOMMatrixReadOnly: {
93449349
*/
93459350
interface DOMParser {
93469351
/**
9347-
* The **`parseFromString()`** method of the DOMParser interface parses a string containing either HTML or XML, returning an HTMLDocument or an XMLDocument.
9352+
* The **`parseFromString()`** method of the DOMParser interface parses an input containing either HTML or XML, returning a Document with the type given in the Document/contentType property.
93489353
*
93499354
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMParser/parseFromString)
93509355
*/
@@ -37370,7 +37375,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
3737037375
*/
3737137376
focus(): void;
3737237377
/**
37373-
* The **`Window.getComputedStyle()`** method returns an object containing the values of all CSS properties of an element, after applying active stylesheets and resolving any basic computation those values may contain.
37378+
* The **`Window.getComputedStyle()`** method returns a live read-only CSSStyleProperties object containing the resolved values of all CSS properties of an element, after applying active stylesheets and resolving any computation those values may contain.
3737437379
*
3737537380
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
3737637381
*/
@@ -39534,7 +39539,7 @@ declare function confirm(message?: string): boolean;
3953439539
*/
3953539540
declare function focus(): void;
3953639541
/**
39537-
* The **`Window.getComputedStyle()`** method returns an object containing the values of all CSS properties of an element, after applying active stylesheets and resolving any basic computation those values may contain.
39542+
* The **`Window.getComputedStyle()`** method returns a live read-only CSSStyleProperties object containing the resolved values of all CSS properties of an element, after applying active stylesheets and resolving any computation those values may contain.
3953839543
*
3953939544
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
3954039545
*/

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

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5986,7 +5986,7 @@ declare var CSSStartingStyleRule: {
59865986
};
59875987

59885988
/**
5989-
* The **`CSSStyleDeclaration`** interface represents an object that is a CSS declaration block, and exposes style information and various style-related methods and properties.
5989+
* The **`CSSStyleDeclaration`** interface is the base class for objects that represent CSS declaration blocks with different supported sets of CSS style information:
59905990
*
59915991
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration)
59925992
*/
@@ -6050,6 +6050,7 @@ declare var CSSStyleDeclaration: {
60506050
new(): CSSStyleDeclaration;
60516051
};
60526052

6053+
/** The **`CSSStyleProperties`** interface of the CSS Object Model (CSSOM) represents inline or computed styles available on an element, or the styles associated with a CSS style rule. */
60536054
interface CSSStyleProperties extends CSSStyleDeclarationBase {
60546055
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/accent-color) */
60556056
accentColor: string;
@@ -6338,7 +6339,11 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
63386339
counterReset: string;
63396340
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-set) */
63406341
counterSet: string;
6341-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/cssFloat) */
6342+
/**
6343+
* The **`cssFloat`** property of the CSSStyleProperties interface returns the CSS float property.
6344+
*
6345+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/cssFloat)
6346+
*/
63426347
cssFloat: string;
63436348
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/cursor) */
63446349
cursor: string;
@@ -7412,7 +7417,7 @@ interface CSSStyleRule extends CSSGroupingRule {
74127417
*/
74137418
selectorText: string;
74147419
/**
7415-
* The read-only **`style`** property is the CSSStyleDeclaration interface for the declaration block of the CSSStyleRule.
7420+
* The read-only **`style`** property is a CSSStyleProperties object that represents the inline styles of a style rule (CSSStyleRule).
74167421
*
74177422
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleRule/style)
74187423
*/
@@ -9333,7 +9338,7 @@ declare var DOMMatrixReadOnly: {
93339338
*/
93349339
interface DOMParser {
93359340
/**
9336-
* The **`parseFromString()`** method of the DOMParser interface parses a string containing either HTML or XML, returning an HTMLDocument or an XMLDocument.
9341+
* The **`parseFromString()`** method of the DOMParser interface parses an input containing either HTML or XML, returning a Document with the type given in the Document/contentType property.
93379342
*
93389343
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMParser/parseFromString)
93399344
*/
@@ -37344,7 +37349,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
3734437349
*/
3734537350
focus(): void;
3734637351
/**
37347-
* The **`Window.getComputedStyle()`** method returns an object containing the values of all CSS properties of an element, after applying active stylesheets and resolving any basic computation those values may contain.
37352+
* The **`Window.getComputedStyle()`** method returns a live read-only CSSStyleProperties object containing the resolved values of all CSS properties of an element, after applying active stylesheets and resolving any computation those values may contain.
3734837353
*
3734937354
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
3735037355
*/
@@ -39508,7 +39513,7 @@ declare function confirm(message?: string): boolean;
3950839513
*/
3950939514
declare function focus(): void;
3951039515
/**
39511-
* The **`Window.getComputedStyle()`** method returns an object containing the values of all CSS properties of an element, after applying active stylesheets and resolving any basic computation those values may contain.
39516+
* The **`Window.getComputedStyle()`** method returns a live read-only CSSStyleProperties object containing the resolved values of all CSS properties of an element, after applying active stylesheets and resolving any computation those values may contain.
3951239517
*
3951339518
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
3951439519
*/

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

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5993,7 +5993,7 @@ declare var CSSStartingStyleRule: {
59935993
};
59945994

59955995
/**
5996-
* The **`CSSStyleDeclaration`** interface represents an object that is a CSS declaration block, and exposes style information and various style-related methods and properties.
5996+
* The **`CSSStyleDeclaration`** interface is the base class for objects that represent CSS declaration blocks with different supported sets of CSS style information:
59975997
*
59985998
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration)
59995999
*/
@@ -6057,6 +6057,7 @@ declare var CSSStyleDeclaration: {
60576057
new(): CSSStyleDeclaration;
60586058
};
60596059

6060+
/** The **`CSSStyleProperties`** interface of the CSS Object Model (CSSOM) represents inline or computed styles available on an element, or the styles associated with a CSS style rule. */
60606061
interface CSSStyleProperties extends CSSStyleDeclarationBase {
60616062
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/accent-color) */
60626063
accentColor: string;
@@ -6345,7 +6346,11 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
63456346
counterReset: string;
63466347
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-set) */
63476348
counterSet: string;
6348-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/cssFloat) */
6349+
/**
6350+
* The **`cssFloat`** property of the CSSStyleProperties interface returns the CSS float property.
6351+
*
6352+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/cssFloat)
6353+
*/
63496354
cssFloat: string;
63506355
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/cursor) */
63516356
cursor: string;
@@ -7419,7 +7424,7 @@ interface CSSStyleRule extends CSSGroupingRule {
74197424
*/
74207425
selectorText: string;
74217426
/**
7422-
* The read-only **`style`** property is the CSSStyleDeclaration interface for the declaration block of the CSSStyleRule.
7427+
* The read-only **`style`** property is a CSSStyleProperties object that represents the inline styles of a style rule (CSSStyleRule).
74237428
*
74247429
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleRule/style)
74257430
*/
@@ -9341,7 +9346,7 @@ declare var DOMMatrixReadOnly: {
93419346
*/
93429347
interface DOMParser {
93439348
/**
9344-
* The **`parseFromString()`** method of the DOMParser interface parses a string containing either HTML or XML, returning an HTMLDocument or an XMLDocument.
9349+
* The **`parseFromString()`** method of the DOMParser interface parses an input containing either HTML or XML, returning a Document with the type given in the Document/contentType property.
93459350
*
93469351
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMParser/parseFromString)
93479352
*/
@@ -37367,7 +37372,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
3736737372
*/
3736837373
focus(): void;
3736937374
/**
37370-
* The **`Window.getComputedStyle()`** method returns an object containing the values of all CSS properties of an element, after applying active stylesheets and resolving any basic computation those values may contain.
37375+
* The **`Window.getComputedStyle()`** method returns a live read-only CSSStyleProperties object containing the resolved values of all CSS properties of an element, after applying active stylesheets and resolving any computation those values may contain.
3737137376
*
3737237377
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
3737337378
*/
@@ -39531,7 +39536,7 @@ declare function confirm(message?: string): boolean;
3953139536
*/
3953239537
declare function focus(): void;
3953339538
/**
39534-
* The **`Window.getComputedStyle()`** method returns an object containing the values of all CSS properties of an element, after applying active stylesheets and resolving any basic computation those values may contain.
39539+
* The **`Window.getComputedStyle()`** method returns a live read-only CSSStyleProperties object containing the resolved values of all CSS properties of an element, after applying active stylesheets and resolving any computation those values may contain.
3953539540
*
3953639541
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
3953739542
*/

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

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5993,7 +5993,7 @@ declare var CSSStartingStyleRule: {
59935993
};
59945994

59955995
/**
5996-
* The **`CSSStyleDeclaration`** interface represents an object that is a CSS declaration block, and exposes style information and various style-related methods and properties.
5996+
* The **`CSSStyleDeclaration`** interface is the base class for objects that represent CSS declaration blocks with different supported sets of CSS style information:
59975997
*
59985998
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration)
59995999
*/
@@ -6057,6 +6057,7 @@ declare var CSSStyleDeclaration: {
60576057
new(): CSSStyleDeclaration;
60586058
};
60596059

6060+
/** The **`CSSStyleProperties`** interface of the CSS Object Model (CSSOM) represents inline or computed styles available on an element, or the styles associated with a CSS style rule. */
60606061
interface CSSStyleProperties extends CSSStyleDeclarationBase {
60616062
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/accent-color) */
60626063
accentColor: string;
@@ -6345,7 +6346,11 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
63456346
counterReset: string;
63466347
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-set) */
63476348
counterSet: string;
6348-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/cssFloat) */
6349+
/**
6350+
* The **`cssFloat`** property of the CSSStyleProperties interface returns the CSS float property.
6351+
*
6352+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/cssFloat)
6353+
*/
63496354
cssFloat: string;
63506355
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/cursor) */
63516356
cursor: string;
@@ -7419,7 +7424,7 @@ interface CSSStyleRule extends CSSGroupingRule {
74197424
*/
74207425
selectorText: string;
74217426
/**
7422-
* The read-only **`style`** property is the CSSStyleDeclaration interface for the declaration block of the CSSStyleRule.
7427+
* The read-only **`style`** property is a CSSStyleProperties object that represents the inline styles of a style rule (CSSStyleRule).
74237428
*
74247429
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleRule/style)
74257430
*/
@@ -9341,7 +9346,7 @@ declare var DOMMatrixReadOnly: {
93419346
*/
93429347
interface DOMParser {
93439348
/**
9344-
* The **`parseFromString()`** method of the DOMParser interface parses a string containing either HTML or XML, returning an HTMLDocument or an XMLDocument.
9349+
* The **`parseFromString()`** method of the DOMParser interface parses an input containing either HTML or XML, returning a Document with the type given in the Document/contentType property.
93459350
*
93469351
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMParser/parseFromString)
93479352
*/
@@ -37367,7 +37372,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
3736737372
*/
3736837373
focus(): void;
3736937374
/**
37370-
* The **`Window.getComputedStyle()`** method returns an object containing the values of all CSS properties of an element, after applying active stylesheets and resolving any basic computation those values may contain.
37375+
* The **`Window.getComputedStyle()`** method returns a live read-only CSSStyleProperties object containing the resolved values of all CSS properties of an element, after applying active stylesheets and resolving any computation those values may contain.
3737137376
*
3737237377
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
3737337378
*/
@@ -39531,7 +39536,7 @@ declare function confirm(message?: string): boolean;
3953139536
*/
3953239537
declare function focus(): void;
3953339538
/**
39534-
* The **`Window.getComputedStyle()`** method returns an object containing the values of all CSS properties of an element, after applying active stylesheets and resolving any basic computation those values may contain.
39539+
* The **`Window.getComputedStyle()`** method returns a live read-only CSSStyleProperties object containing the resolved values of all CSS properties of an element, after applying active stylesheets and resolving any computation those values may contain.
3953539540
*
3953639541
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
3953739542
*/

inputfiles/mdn

Submodule mdn updated 82 files

0 commit comments

Comments
 (0)