Skip to content

Commit 8398716

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 79b5a01 commit 8398716

File tree

6 files changed

+94
-10
lines changed

6 files changed

+94
-10
lines changed

baselines/dom.generated.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6350,6 +6350,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
63506350
*/
63516351
backgroundSize: string;
63526352
baselineShift: string;
6353+
/** The baseline-source CSS property defines which baseline to use when inline-level boxes have multiple possible baselines, such as multi-line inline blocks or inline flex containers. The values allow for choosing between aligning to the box's first baseline, last baseline, or letting the browser decide automatically based on the box type. */
63536354
baselineSource: string;
63546355
/**
63556356
* The block-size CSS property defines the size of an element's block along the block axis. If the writing-mode is horizontal, it corresponds to the height; if the writing mode is vertical, it corresponds to the width. A related property is inline-size, which defines the other dimension of the element.
@@ -8603,7 +8604,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
86038604
*/
86048605
textRendering: string;
86058606
/**
8606-
* The text-shadow CSS property adds shadows to text. It accepts a comma-separated list of shadows to be applied to the text and any of its decorations. Each shadow is described by some combination of X and Y offsets from the element, blur radius, and color.
8607+
* The text-shadow CSS property adds shadows to text. It accepts a comma-separated list of shadows to be applied to the text and any of its text-decoration. Each shadow is described by some combination of X and Y offsets from the element, blur radius, and color.
86078608
*
86088609
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-shadow)
86098610
*/

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6340,6 +6340,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
63406340
*/
63416341
backgroundSize: string;
63426342
baselineShift: string;
6343+
/** The baseline-source CSS property defines which baseline to use when inline-level boxes have multiple possible baselines, such as multi-line inline blocks or inline flex containers. The values allow for choosing between aligning to the box's first baseline, last baseline, or letting the browser decide automatically based on the box type. */
63436344
baselineSource: string;
63446345
/**
63456346
* The block-size CSS property defines the size of an element's block along the block axis. If the writing-mode is horizontal, it corresponds to the height; if the writing mode is vertical, it corresponds to the width. A related property is inline-size, which defines the other dimension of the element.
@@ -8593,7 +8594,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
85938594
*/
85948595
textRendering: string;
85958596
/**
8596-
* The text-shadow CSS property adds shadows to text. It accepts a comma-separated list of shadows to be applied to the text and any of its decorations. Each shadow is described by some combination of X and Y offsets from the element, blur radius, and color.
8597+
* The text-shadow CSS property adds shadows to text. It accepts a comma-separated list of shadows to be applied to the text and any of its text-decoration. Each shadow is described by some combination of X and Y offsets from the element, blur radius, and color.
85978598
*
85988599
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-shadow)
85998600
*/

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6347,6 +6347,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
63476347
*/
63486348
backgroundSize: string;
63496349
baselineShift: string;
6350+
/** The baseline-source CSS property defines which baseline to use when inline-level boxes have multiple possible baselines, such as multi-line inline blocks or inline flex containers. The values allow for choosing between aligning to the box's first baseline, last baseline, or letting the browser decide automatically based on the box type. */
63506351
baselineSource: string;
63516352
/**
63526353
* The block-size CSS property defines the size of an element's block along the block axis. If the writing-mode is horizontal, it corresponds to the height; if the writing mode is vertical, it corresponds to the width. A related property is inline-size, which defines the other dimension of the element.
@@ -8600,7 +8601,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
86008601
*/
86018602
textRendering: string;
86028603
/**
8603-
* The text-shadow CSS property adds shadows to text. It accepts a comma-separated list of shadows to be applied to the text and any of its decorations. Each shadow is described by some combination of X and Y offsets from the element, blur radius, and color.
8604+
* The text-shadow CSS property adds shadows to text. It accepts a comma-separated list of shadows to be applied to the text and any of its text-decoration. Each shadow is described by some combination of X and Y offsets from the element, blur radius, and color.
86048605
*
86058606
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-shadow)
86068607
*/

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6347,6 +6347,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
63476347
*/
63486348
backgroundSize: string;
63496349
baselineShift: string;
6350+
/** The baseline-source CSS property defines which baseline to use when inline-level boxes have multiple possible baselines, such as multi-line inline blocks or inline flex containers. The values allow for choosing between aligning to the box's first baseline, last baseline, or letting the browser decide automatically based on the box type. */
63506351
baselineSource: string;
63516352
/**
63526353
* The block-size CSS property defines the size of an element's block along the block axis. If the writing-mode is horizontal, it corresponds to the height; if the writing mode is vertical, it corresponds to the width. A related property is inline-size, which defines the other dimension of the element.
@@ -8600,7 +8601,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
86008601
*/
86018602
textRendering: string;
86028603
/**
8603-
* The text-shadow CSS property adds shadows to text. It accepts a comma-separated list of shadows to be applied to the text and any of its decorations. Each shadow is described by some combination of X and Y offsets from the element, blur radius, and color.
8604+
* The text-shadow CSS property adds shadows to text. It accepts a comma-separated list of shadows to be applied to the text and any of its text-decoration. Each shadow is described by some combination of X and Y offsets from the element, blur radius, and color.
86048605
*
86058606
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-shadow)
86068607
*/

inputfiles/mdn.json

Lines changed: 72 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12124,6 +12124,11 @@
1212412124
"pageType": "web-api-instance-property",
1212512125
"summary": "The hreflang property of the HTMLAnchorElement interface is a string that is the language of the linked resource."
1212612126
},
12127+
{
12128+
"mdn_url": "/en-US/docs/Web/API/HTMLAnchorElement/interestForElement",
12129+
"pageType": "web-api-instance-property",
12130+
"summary": "The interestForElement property of the HTMLAnchorElement interface gets or sets the target element of an interest invoker, in cases where the associated <a> element is specified as an interest invoker."
12131+
},
1212712132
{
1212812133
"mdn_url": "/en-US/docs/Web/API/HTMLAnchorElement/origin",
1212912134
"pageType": "web-api-instance-property",
@@ -12239,6 +12244,11 @@
1223912244
"pageType": "web-api-instance-property",
1224012245
"summary": "The HTMLAreaElement.href property is a\nstringifier that returns a string containing the whole URL, and allows\nthe href to be updated."
1224112246
},
12247+
{
12248+
"mdn_url": "/en-US/docs/Web/API/HTMLAreaElement/interestForElement",
12249+
"pageType": "web-api-instance-property",
12250+
"summary": "The interestForElement property of the HTMLAreaElement interface gets or sets the target element of an interest invoker, in cases where the associated <area> element is specified as an interest invoker."
12251+
},
1224212252
{
1224312253
"mdn_url": "/en-US/docs/Web/API/HTMLAreaElement/origin",
1224412254
"pageType": "web-api-instance-property",
@@ -12399,6 +12409,11 @@
1239912409
"pageType": "web-api-instance-property",
1240012410
"summary": "The formTarget property of the HTMLButtonElement interface is the tab, window, or iframe where the response of the submitted <form> is to be displayed. It reflects the value of the <button> element's formtarget attribute."
1240112411
},
12412+
{
12413+
"mdn_url": "/en-US/docs/Web/API/HTMLButtonElement/interestForElement",
12414+
"pageType": "web-api-instance-property",
12415+
"summary": "The interestForElement property of the HTMLButtonElement interface gets or sets the target element of an interest invoker, in cases where the associated <button> element is specified as an interest invoker."
12416+
},
1240212417
{
1240312418
"mdn_url": "/en-US/docs/Web/API/HTMLButtonElement/labels",
1240412419
"pageType": "web-api-instance-property",
@@ -12819,6 +12834,11 @@
1281912834
"pageType": "web-api-instance-property",
1282012835
"summary": "The HTMLElement property inputMode reflects the value of the element's inputmode attribute."
1282112836
},
12837+
{
12838+
"mdn_url": "/en-US/docs/Web/API/HTMLElement/interest_event",
12839+
"pageType": "web-api-event",
12840+
"summary": "The interest event of the HTMLElement interface is fired on an interest invoker's target element when interest is shown, allowing code to be run in response."
12841+
},
1282212842
{
1282312843
"mdn_url": "/en-US/docs/Web/API/HTMLElement/isContentEditable",
1282412844
"pageType": "web-api-instance-property",
@@ -12834,6 +12854,11 @@
1283412854
"pageType": "web-api-event",
1283512855
"summary": "The load event fires for elements containing a resource when the resource has successfully loaded. Currently, the list of supported HTML elements are: <body>, <embed>, <iframe>, <img>, <link>, <object>, <script>, <style>, and <track>."
1283612856
},
12857+
{
12858+
"mdn_url": "/en-US/docs/Web/API/HTMLElement/loseinterest_event",
12859+
"pageType": "web-api-event",
12860+
"summary": "The loseinterest event of the HTMLElement interface is fired on the target element of an interest invoker when interest is lost, allowing code to be run in response."
12861+
},
1283712862
{
1283812863
"mdn_url": "/en-US/docs/Web/API/HTMLElement/nonce",
1283912864
"pageType": "web-api-instance-property",
@@ -16654,6 +16679,21 @@
1665416679
"pageType": "web-api-interface",
1665516680
"summary": "The IntegrityViolationReportBody dictionary is an extension of the Reporting API that represents the body of an Integrity Policy violation report."
1665616681
},
16682+
{
16683+
"mdn_url": "/en-US/docs/Web/API/InterestEvent",
16684+
"pageType": "web-api-interface",
16685+
"summary": "The InterestEvent interface represents an event that fires when interest is shown or lost on an interest invoker."
16686+
},
16687+
{
16688+
"mdn_url": "/en-US/docs/Web/API/InterestEvent/InterestEvent",
16689+
"pageType": "web-api-constructor",
16690+
"summary": "The InterestEvent() constructor creates a new InterestEvent object."
16691+
},
16692+
{
16693+
"mdn_url": "/en-US/docs/Web/API/InterestEvent/source",
16694+
"pageType": "web-api-instance-property",
16695+
"summary": "The source read-only property of the InterestEvent interface is an Element object instance that represents the interest invoker element on which interest was shown or lost to fire the event."
16696+
},
1665716697
{
1665816698
"mdn_url": "/en-US/docs/Web/API/Intersection_Observer_API",
1665916699
"pageType": "web-api-overview",
@@ -22479,6 +22519,11 @@
2247922519
"pageType": "guide",
2248022520
"summary": "The Popover API provides developers with a standard, consistent, flexible mechanism for displaying popover content on top of other page content. Popover content can be controlled either declaratively using HTML attributes, or via JavaScript. This article provides a detailed guide to using all of its features."
2248122521
},
22522+
{
22523+
"mdn_url": "/en-US/docs/Web/API/Popover_API/Using_interest_invokers",
22524+
"pageType": "guide",
22525+
"summary": "Interest invokers provide a mechanism for updating an interface or running custom code when a user \"shows interest\" or \"loses interest\" in an element (for example, by hovering or unhovering it). They are most commonly used to show and hide popovers. This guide explains the concepts behind interest invokers, what their use cases are, and how to use them."
22526+
},
2248222527
{
2248322528
"mdn_url": "/en-US/docs/Web/API/PopStateEvent",
2248422529
"pageType": "web-api-interface",
@@ -23162,7 +23207,7 @@
2316223207
{
2316323208
"mdn_url": "/en-US/docs/Web/API/Range/Range",
2316423209
"pageType": "web-api-constructor",
23165-
"summary": "The Range() constructor returns a newly created\nRange object whose start and end are offset 0 of the the global document\nobject."
23210+
"summary": "The Range() constructor returns a newly created\nRange object whose start and end are offset 0 of the global document\nobject."
2316623211
},
2316723212
{
2316823213
"mdn_url": "/en-US/docs/Web/API/Range/selectNode",
@@ -28534,6 +28579,11 @@
2853428579
"pageType": "web-api-instance-property",
2853528580
"summary": "The hreflang property of the SVGAElement interface returns a string indicating the language of the linked resource."
2853628581
},
28582+
{
28583+
"mdn_url": "/en-US/docs/Web/API/SVGAElement/interestForElement",
28584+
"pageType": "web-api-instance-property",
28585+
"summary": "The interestForElement property of the SVGAElement interface gets or sets the target element of an interest invoker, in cases where the associated <a> element is specified as an interest invoker."
28586+
},
2853728587
{
2853828588
"mdn_url": "/en-US/docs/Web/API/SVGAElement/origin",
2853928589
"pageType": "web-api-instance-property",
@@ -39524,6 +39574,11 @@
3952439574
"pageType": "css-property",
3952539575
"summary": "The background-size CSS property sets the size of the element's background image.\nThe image can be left to its natural size, stretched, or constrained to fit the available space."
3952639576
},
39577+
{
39578+
"mdn_url": "/en-US/docs/Web/CSS/Reference/Properties/baseline-source",
39579+
"pageType": "css-property",
39580+
"summary": "The baseline-source CSS property defines which baseline to use when inline-level boxes have multiple possible baselines, such as multi-line inline blocks or inline flex containers.\nThe values allow for choosing between aligning to the box's first baseline, last baseline, or letting the browser decide automatically based on the box type."
39581+
},
3952739582
{
3952839583
"mdn_url": "/en-US/docs/Web/CSS/Reference/Properties/block-size",
3952939584
"pageType": "css-property",
@@ -40614,6 +40669,21 @@
4061440669
"pageType": "css-property",
4061540670
"summary": "The interactivity CSS property specifies whether an element and its descendant nodes are set to be inert."
4061640671
},
40672+
{
40673+
"mdn_url": "/en-US/docs/Web/CSS/Reference/Properties/interest-delay",
40674+
"pageType": "css-shorthand-property",
40675+
"summary": "The interest-delay CSS property specifies the delay between the user showing interest in an interest invoker element and the interest event firing, and the delay between the user losing interest and the loseinterest event firing."
40676+
},
40677+
{
40678+
"mdn_url": "/en-US/docs/Web/CSS/Reference/Properties/interest-delay-end",
40679+
"pageType": "css-shorthand-property",
40680+
"summary": "The interest-delay-end CSS property specifies the delay between the user losing interest in an interest invoker element and the loseinterest event firing."
40681+
},
40682+
{
40683+
"mdn_url": "/en-US/docs/Web/CSS/Reference/Properties/interest-delay-start",
40684+
"pageType": "css-shorthand-property",
40685+
"summary": "The interest-delay-start CSS property specifies the delay between the user showing interest in an interest invoker element and the interest event firing."
40686+
},
4061740687
{
4061840688
"mdn_url": "/en-US/docs/Web/CSS/Reference/Properties/interpolate-size",
4061940689
"pageType": "css-property",
@@ -41677,7 +41747,7 @@
4167741747
{
4167841748
"mdn_url": "/en-US/docs/Web/CSS/Reference/Properties/text-shadow",
4167941749
"pageType": "css-property",
41680-
"summary": "The text-shadow CSS property adds shadows to text. It accepts a comma-separated list of shadows to be applied to the text and any of its decorations. Each shadow is described by some combination of X and Y offsets from the element, blur radius, and color."
41750+
"summary": "The text-shadow CSS property adds shadows to text. It accepts a comma-separated list of shadows to be applied to the text and any of its text-decoration. Each shadow is described by some combination of X and Y offsets from the element, blur radius, and color."
4168141751
},
4168241752
{
4168341753
"mdn_url": "/en-US/docs/Web/CSS/Reference/Properties/text-size-adjust",

0 commit comments

Comments
 (0)