@types/web 0.0.298 → 0.0.300

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -47,4 +47,4 @@ Prior to `@types/web` the web APIs were deployed with a version of TypeScript, a
47
47
 
48
48
  ## Deploy Metadata
49
49
 
50
- You can read what changed in version 0.0.298 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.298.
50
+ You can read what changed in version 0.0.300 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.300.
package/index.d.ts CHANGED
@@ -6233,13 +6233,13 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
6233
6233
  */
6234
6234
  animationRange: string;
6235
6235
  /**
6236
- * The animation-range-end CSS property is used to set the end of an animation's attachment range along its timeline, i.e., where along the timeline an animation will end.
6236
+ * The animation-range-end CSS property sets the point on the timeline where an animation should end.
6237
6237
  *
6238
6238
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-range-end)
6239
6239
  */
6240
6240
  animationRangeEnd: string;
6241
6241
  /**
6242
- * The animation-range-start CSS property is used to set the start of an animation's attachment range along its timeline, i.e., where along the timeline an animation will start.
6242
+ * The animation-range-start CSS property sets the point on the timeline where an animation should start.
6243
6243
  *
6244
6244
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-range-start)
6245
6245
  */
@@ -6353,6 +6353,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
6353
6353
  */
6354
6354
  backgroundSize: string;
6355
6355
  baselineShift: string;
6356
+ /** 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. */
6356
6357
  baselineSource: string;
6357
6358
  /**
6358
6359
  * 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.
@@ -8348,7 +8349,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
8348
8349
  */
8349
8350
  scrollTimeline: string;
8350
8351
  /**
8351
- * The scroll-timeline-axis CSS property is used to specify the scrollbar direction that will be used to provide the timeline for a scroll driven animation animation, which is progressed through by scrolling a scrollable element (scroller).
8352
+ * The scroll-timeline-axis CSS property is used to specify the scrollbar direction that will be used to provide the timeline for a scroll driven animation, which is progressed through by scrolling a scrollable element (scroller).
8352
8353
  *
8353
8354
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-timeline-axis)
8354
8355
  */
@@ -8606,7 +8607,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
8606
8607
  */
8607
8608
  textRendering: string;
8608
8609
  /**
8609
- * 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.
8610
+ * 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.
8610
8611
  *
8611
8612
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-shadow)
8612
8613
  */
@@ -13359,7 +13360,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
13359
13360
  */
13360
13361
  setAttribute(qualifiedName: string, value: string): void;
13361
13362
  /**
13362
- * **`setAttributeNS`** adds a new attribute or changes the value of an attribute with the given namespace and name.
13363
+ * If you are working with HTML documents and you don't need to specify the requested attribute as being part of a specific namespace, use the setAttribute() method instead.
13363
13364
  *
13364
13365
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNS)
13365
13366
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/web",
3
- "version": "0.0.298",
3
+ "version": "0.0.300",
4
4
  "description": "Types for the DOM, and other web technologies in browsers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],
package/ts5.5/index.d.ts CHANGED
@@ -6223,13 +6223,13 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
6223
6223
  */
6224
6224
  animationRange: string;
6225
6225
  /**
6226
- * The animation-range-end CSS property is used to set the end of an animation's attachment range along its timeline, i.e., where along the timeline an animation will end.
6226
+ * The animation-range-end CSS property sets the point on the timeline where an animation should end.
6227
6227
  *
6228
6228
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-range-end)
6229
6229
  */
6230
6230
  animationRangeEnd: string;
6231
6231
  /**
6232
- * The animation-range-start CSS property is used to set the start of an animation's attachment range along its timeline, i.e., where along the timeline an animation will start.
6232
+ * The animation-range-start CSS property sets the point on the timeline where an animation should start.
6233
6233
  *
6234
6234
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-range-start)
6235
6235
  */
@@ -6343,6 +6343,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
6343
6343
  */
6344
6344
  backgroundSize: string;
6345
6345
  baselineShift: string;
6346
+ /** 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. */
6346
6347
  baselineSource: string;
6347
6348
  /**
6348
6349
  * 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.
@@ -8338,7 +8339,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
8338
8339
  */
8339
8340
  scrollTimeline: string;
8340
8341
  /**
8341
- * The scroll-timeline-axis CSS property is used to specify the scrollbar direction that will be used to provide the timeline for a scroll driven animation animation, which is progressed through by scrolling a scrollable element (scroller).
8342
+ * The scroll-timeline-axis CSS property is used to specify the scrollbar direction that will be used to provide the timeline for a scroll driven animation, which is progressed through by scrolling a scrollable element (scroller).
8342
8343
  *
8343
8344
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-timeline-axis)
8344
8345
  */
@@ -8596,7 +8597,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
8596
8597
  */
8597
8598
  textRendering: string;
8598
8599
  /**
8599
- * 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.
8600
+ * 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.
8600
8601
  *
8601
8602
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-shadow)
8602
8603
  */
@@ -13346,7 +13347,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
13346
13347
  */
13347
13348
  setAttribute(qualifiedName: string, value: string): void;
13348
13349
  /**
13349
- * **`setAttributeNS`** adds a new attribute or changes the value of an attribute with the given namespace and name.
13350
+ * If you are working with HTML documents and you don't need to specify the requested attribute as being part of a specific namespace, use the setAttribute() method instead.
13350
13351
  *
13351
13352
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNS)
13352
13353
  */
package/ts5.6/index.d.ts CHANGED
@@ -6230,13 +6230,13 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
6230
6230
  */
6231
6231
  animationRange: string;
6232
6232
  /**
6233
- * The animation-range-end CSS property is used to set the end of an animation's attachment range along its timeline, i.e., where along the timeline an animation will end.
6233
+ * The animation-range-end CSS property sets the point on the timeline where an animation should end.
6234
6234
  *
6235
6235
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-range-end)
6236
6236
  */
6237
6237
  animationRangeEnd: string;
6238
6238
  /**
6239
- * The animation-range-start CSS property is used to set the start of an animation's attachment range along its timeline, i.e., where along the timeline an animation will start.
6239
+ * The animation-range-start CSS property sets the point on the timeline where an animation should start.
6240
6240
  *
6241
6241
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-range-start)
6242
6242
  */
@@ -6350,6 +6350,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
6350
6350
  */
6351
6351
  backgroundSize: string;
6352
6352
  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. */
6353
6354
  baselineSource: string;
6354
6355
  /**
6355
6356
  * 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.
@@ -8345,7 +8346,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
8345
8346
  */
8346
8347
  scrollTimeline: string;
8347
8348
  /**
8348
- * The scroll-timeline-axis CSS property is used to specify the scrollbar direction that will be used to provide the timeline for a scroll driven animation animation, which is progressed through by scrolling a scrollable element (scroller).
8349
+ * The scroll-timeline-axis CSS property is used to specify the scrollbar direction that will be used to provide the timeline for a scroll driven animation, which is progressed through by scrolling a scrollable element (scroller).
8349
8350
  *
8350
8351
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-timeline-axis)
8351
8352
  */
@@ -8603,7 +8604,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
8603
8604
  */
8604
8605
  textRendering: string;
8605
8606
  /**
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.
8607
8608
  *
8608
8609
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-shadow)
8609
8610
  */
@@ -13356,7 +13357,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
13356
13357
  */
13357
13358
  setAttribute(qualifiedName: string, value: string): void;
13358
13359
  /**
13359
- * **`setAttributeNS`** adds a new attribute or changes the value of an attribute with the given namespace and name.
13360
+ * If you are working with HTML documents and you don't need to specify the requested attribute as being part of a specific namespace, use the setAttribute() method instead.
13360
13361
  *
13361
13362
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNS)
13362
13363
  */
package/ts5.9/index.d.ts CHANGED
@@ -6230,13 +6230,13 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
6230
6230
  */
6231
6231
  animationRange: string;
6232
6232
  /**
6233
- * The animation-range-end CSS property is used to set the end of an animation's attachment range along its timeline, i.e., where along the timeline an animation will end.
6233
+ * The animation-range-end CSS property sets the point on the timeline where an animation should end.
6234
6234
  *
6235
6235
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-range-end)
6236
6236
  */
6237
6237
  animationRangeEnd: string;
6238
6238
  /**
6239
- * The animation-range-start CSS property is used to set the start of an animation's attachment range along its timeline, i.e., where along the timeline an animation will start.
6239
+ * The animation-range-start CSS property sets the point on the timeline where an animation should start.
6240
6240
  *
6241
6241
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-range-start)
6242
6242
  */
@@ -6350,6 +6350,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
6350
6350
  */
6351
6351
  backgroundSize: string;
6352
6352
  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. */
6353
6354
  baselineSource: string;
6354
6355
  /**
6355
6356
  * 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.
@@ -8345,7 +8346,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
8345
8346
  */
8346
8347
  scrollTimeline: string;
8347
8348
  /**
8348
- * The scroll-timeline-axis CSS property is used to specify the scrollbar direction that will be used to provide the timeline for a scroll driven animation animation, which is progressed through by scrolling a scrollable element (scroller).
8349
+ * The scroll-timeline-axis CSS property is used to specify the scrollbar direction that will be used to provide the timeline for a scroll driven animation, which is progressed through by scrolling a scrollable element (scroller).
8349
8350
  *
8350
8351
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-timeline-axis)
8351
8352
  */
@@ -8603,7 +8604,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
8603
8604
  */
8604
8605
  textRendering: string;
8605
8606
  /**
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.
8607
8608
  *
8608
8609
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/text-shadow)
8609
8610
  */
@@ -13356,7 +13357,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
13356
13357
  */
13357
13358
  setAttribute(qualifiedName: string, value: string): void;
13358
13359
  /**
13359
- * **`setAttributeNS`** adds a new attribute or changes the value of an attribute with the given namespace and name.
13360
+ * If you are working with HTML documents and you don't need to specify the requested attribute as being part of a specific namespace, use the setAttribute() method instead.
13360
13361
  *
13361
13362
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNS)
13362
13363
  */