@types/web 0.0.341 → 0.0.343

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.341 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.341.
50
+ You can read what changed in version 0.0.343 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.343.
package/index.d.ts CHANGED
@@ -8000,7 +8000,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
8000
8000
  */
8001
8001
  left: string;
8002
8002
  /**
8003
- * The letter-spacing CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing causes characters to spread farther apart, while negative values of letter-spacing bring characters closer together.
8003
+ * The letter-spacing CSS property sets the spacing between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing spread characters further apart, while negative values of letter-spacing bring characters closer together.
8004
8004
  *
8005
8005
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/letter-spacing)
8006
8006
  */
@@ -8078,7 +8078,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
8078
8078
  */
8079
8079
  marginBottom: string;
8080
8080
  /**
8081
- * The margin-inline CSS shorthand property is a shorthand property that defines both the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
8081
+ * The margin-inline CSS shorthand property defines both the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
8082
8082
  *
8083
8083
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/margin-inline)
8084
8084
  */
@@ -9765,7 +9765,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
9765
9765
  */
9766
9766
  wordBreak: string;
9767
9767
  /**
9768
- * The word-spacing CSS property sets the length of space between words and between tags.
9768
+ * The word-spacing CSS property sets the spacing between words and between tags.
9769
9769
  *
9770
9770
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/word-spacing)
9771
9771
  */
@@ -34717,7 +34717,7 @@ interface Sanitizer {
34717
34717
  */
34718
34718
  removeElement(element: SanitizerElement): boolean;
34719
34719
  /**
34720
- * The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer configuration so that it will remove all elements, attributes, and event handler content attributes that are considered XSS-unsafe by the browser.
34720
+ * The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer so that it will remove all elements and attributes that are considered XSS-unsafe by the browser.
34721
34721
  *
34722
34722
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Sanitizer/removeUnsafe)
34723
34723
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/web",
3
- "version": "0.0.341",
3
+ "version": "0.0.343",
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
@@ -7990,7 +7990,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
7990
7990
  */
7991
7991
  left: string;
7992
7992
  /**
7993
- * The letter-spacing CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing causes characters to spread farther apart, while negative values of letter-spacing bring characters closer together.
7993
+ * The letter-spacing CSS property sets the spacing between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing spread characters further apart, while negative values of letter-spacing bring characters closer together.
7994
7994
  *
7995
7995
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/letter-spacing)
7996
7996
  */
@@ -8068,7 +8068,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
8068
8068
  */
8069
8069
  marginBottom: string;
8070
8070
  /**
8071
- * The margin-inline CSS shorthand property is a shorthand property that defines both the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
8071
+ * The margin-inline CSS shorthand property defines both the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
8072
8072
  *
8073
8073
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/margin-inline)
8074
8074
  */
@@ -9755,7 +9755,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
9755
9755
  */
9756
9756
  wordBreak: string;
9757
9757
  /**
9758
- * The word-spacing CSS property sets the length of space between words and between tags.
9758
+ * The word-spacing CSS property sets the spacing between words and between tags.
9759
9759
  *
9760
9760
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/word-spacing)
9761
9761
  */
@@ -34692,7 +34692,7 @@ interface Sanitizer {
34692
34692
  */
34693
34693
  removeElement(element: SanitizerElement): boolean;
34694
34694
  /**
34695
- * The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer configuration so that it will remove all elements, attributes, and event handler content attributes that are considered XSS-unsafe by the browser.
34695
+ * The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer so that it will remove all elements and attributes that are considered XSS-unsafe by the browser.
34696
34696
  *
34697
34697
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Sanitizer/removeUnsafe)
34698
34698
  */
package/ts5.6/index.d.ts CHANGED
@@ -7997,7 +7997,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
7997
7997
  */
7998
7998
  left: string;
7999
7999
  /**
8000
- * The letter-spacing CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing causes characters to spread farther apart, while negative values of letter-spacing bring characters closer together.
8000
+ * The letter-spacing CSS property sets the spacing between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing spread characters further apart, while negative values of letter-spacing bring characters closer together.
8001
8001
  *
8002
8002
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/letter-spacing)
8003
8003
  */
@@ -8075,7 +8075,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
8075
8075
  */
8076
8076
  marginBottom: string;
8077
8077
  /**
8078
- * The margin-inline CSS shorthand property is a shorthand property that defines both the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
8078
+ * The margin-inline CSS shorthand property defines both the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
8079
8079
  *
8080
8080
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/margin-inline)
8081
8081
  */
@@ -9762,7 +9762,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
9762
9762
  */
9763
9763
  wordBreak: string;
9764
9764
  /**
9765
- * The word-spacing CSS property sets the length of space between words and between tags.
9765
+ * The word-spacing CSS property sets the spacing between words and between tags.
9766
9766
  *
9767
9767
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/word-spacing)
9768
9768
  */
@@ -34714,7 +34714,7 @@ interface Sanitizer {
34714
34714
  */
34715
34715
  removeElement(element: SanitizerElement): boolean;
34716
34716
  /**
34717
- * The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer configuration so that it will remove all elements, attributes, and event handler content attributes that are considered XSS-unsafe by the browser.
34717
+ * The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer so that it will remove all elements and attributes that are considered XSS-unsafe by the browser.
34718
34718
  *
34719
34719
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Sanitizer/removeUnsafe)
34720
34720
  */
package/ts5.9/index.d.ts CHANGED
@@ -7997,7 +7997,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
7997
7997
  */
7998
7998
  left: string;
7999
7999
  /**
8000
- * The letter-spacing CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing causes characters to spread farther apart, while negative values of letter-spacing bring characters closer together.
8000
+ * The letter-spacing CSS property sets the spacing between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing spread characters further apart, while negative values of letter-spacing bring characters closer together.
8001
8001
  *
8002
8002
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/letter-spacing)
8003
8003
  */
@@ -8075,7 +8075,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
8075
8075
  */
8076
8076
  marginBottom: string;
8077
8077
  /**
8078
- * The margin-inline CSS shorthand property is a shorthand property that defines both the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
8078
+ * The margin-inline CSS shorthand property defines both the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
8079
8079
  *
8080
8080
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/margin-inline)
8081
8081
  */
@@ -9762,7 +9762,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
9762
9762
  */
9763
9763
  wordBreak: string;
9764
9764
  /**
9765
- * The word-spacing CSS property sets the length of space between words and between tags.
9765
+ * The word-spacing CSS property sets the spacing between words and between tags.
9766
9766
  *
9767
9767
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/word-spacing)
9768
9768
  */
@@ -34714,7 +34714,7 @@ interface Sanitizer {
34714
34714
  */
34715
34715
  removeElement(element: SanitizerElement): boolean;
34716
34716
  /**
34717
- * The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer configuration so that it will remove all elements, attributes, and event handler content attributes that are considered XSS-unsafe by the browser.
34717
+ * The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer so that it will remove all elements and attributes that are considered XSS-unsafe by the browser.
34718
34718
  *
34719
34719
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Sanitizer/removeUnsafe)
34720
34720
  */