@types/web 0.0.323 → 0.0.324

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.323 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.323.
50
+ You can read what changed in version 0.0.324 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.324.
package/index.d.ts CHANGED
@@ -16856,13 +16856,13 @@ interface HTMLDialogElement extends HTMLElement {
16856
16856
  */
16857
16857
  requestClose(returnValue?: string): void;
16858
16858
  /**
16859
- * The **`show()`** method of the HTMLDialogElement interface displays the dialog modelessly, i.e., still allowing interaction with content outside of the dialog.
16859
+ * The **`show()`** method of the HTMLDialogElement interface displays the dialog as a non-modal dialog.
16860
16860
  *
16861
16861
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/show)
16862
16862
  */
16863
16863
  show(): void;
16864
16864
  /**
16865
- * The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal, over the top of any other dialogs that might be present. It displays in the top layer, along with a ::backdrop pseudo-element. Elements inside the same document as the dialog, except the dialog and its descendants, become inert (as if the inert attribute is specified). Only the containing document becomes blocked; if the dialog is rendered inside an iframe, the rest of the page remains interactive.
16865
+ * The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal dialog, over the top of any other dialogs or elements that might be visible.
16866
16866
  *
16867
16867
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal)
16868
16868
  */
@@ -24274,13 +24274,13 @@ interface MouseEvent extends UIEvent {
24274
24274
  */
24275
24275
  readonly metaKey: boolean;
24276
24276
  /**
24277
- * The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementX = currentEvent.screenX - previousEvent.screenX.
24277
+ * The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
24278
24278
  *
24279
24279
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementX)
24280
24280
  */
24281
24281
  readonly movementX: number;
24282
24282
  /**
24283
- * The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementY = currentEvent.screenY - previousEvent.screenY.
24283
+ * The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
24284
24284
  *
24285
24285
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementY)
24286
24286
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/web",
3
- "version": "0.0.323",
3
+ "version": "0.0.324",
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
@@ -16840,13 +16840,13 @@ interface HTMLDialogElement extends HTMLElement {
16840
16840
  */
16841
16841
  requestClose(returnValue?: string): void;
16842
16842
  /**
16843
- * The **`show()`** method of the HTMLDialogElement interface displays the dialog modelessly, i.e., still allowing interaction with content outside of the dialog.
16843
+ * The **`show()`** method of the HTMLDialogElement interface displays the dialog as a non-modal dialog.
16844
16844
  *
16845
16845
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/show)
16846
16846
  */
16847
16847
  show(): void;
16848
16848
  /**
16849
- * The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal, over the top of any other dialogs that might be present. It displays in the top layer, along with a ::backdrop pseudo-element. Elements inside the same document as the dialog, except the dialog and its descendants, become inert (as if the inert attribute is specified). Only the containing document becomes blocked; if the dialog is rendered inside an iframe, the rest of the page remains interactive.
16849
+ * The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal dialog, over the top of any other dialogs or elements that might be visible.
16850
16850
  *
16851
16851
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal)
16852
16852
  */
@@ -24250,13 +24250,13 @@ interface MouseEvent extends UIEvent {
24250
24250
  */
24251
24251
  readonly metaKey: boolean;
24252
24252
  /**
24253
- * The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementX = currentEvent.screenX - previousEvent.screenX.
24253
+ * The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
24254
24254
  *
24255
24255
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementX)
24256
24256
  */
24257
24257
  readonly movementX: number;
24258
24258
  /**
24259
- * The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementY = currentEvent.screenY - previousEvent.screenY.
24259
+ * The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
24260
24260
  *
24261
24261
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementY)
24262
24262
  */
package/ts5.6/index.d.ts CHANGED
@@ -16853,13 +16853,13 @@ interface HTMLDialogElement extends HTMLElement {
16853
16853
  */
16854
16854
  requestClose(returnValue?: string): void;
16855
16855
  /**
16856
- * The **`show()`** method of the HTMLDialogElement interface displays the dialog modelessly, i.e., still allowing interaction with content outside of the dialog.
16856
+ * The **`show()`** method of the HTMLDialogElement interface displays the dialog as a non-modal dialog.
16857
16857
  *
16858
16858
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/show)
16859
16859
  */
16860
16860
  show(): void;
16861
16861
  /**
16862
- * The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal, over the top of any other dialogs that might be present. It displays in the top layer, along with a ::backdrop pseudo-element. Elements inside the same document as the dialog, except the dialog and its descendants, become inert (as if the inert attribute is specified). Only the containing document becomes blocked; if the dialog is rendered inside an iframe, the rest of the page remains interactive.
16862
+ * The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal dialog, over the top of any other dialogs or elements that might be visible.
16863
16863
  *
16864
16864
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal)
16865
16865
  */
@@ -24271,13 +24271,13 @@ interface MouseEvent extends UIEvent {
24271
24271
  */
24272
24272
  readonly metaKey: boolean;
24273
24273
  /**
24274
- * The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementX = currentEvent.screenX - previousEvent.screenX.
24274
+ * The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
24275
24275
  *
24276
24276
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementX)
24277
24277
  */
24278
24278
  readonly movementX: number;
24279
24279
  /**
24280
- * The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementY = currentEvent.screenY - previousEvent.screenY.
24280
+ * The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
24281
24281
  *
24282
24282
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementY)
24283
24283
  */
package/ts5.9/index.d.ts CHANGED
@@ -16853,13 +16853,13 @@ interface HTMLDialogElement extends HTMLElement {
16853
16853
  */
16854
16854
  requestClose(returnValue?: string): void;
16855
16855
  /**
16856
- * The **`show()`** method of the HTMLDialogElement interface displays the dialog modelessly, i.e., still allowing interaction with content outside of the dialog.
16856
+ * The **`show()`** method of the HTMLDialogElement interface displays the dialog as a non-modal dialog.
16857
16857
  *
16858
16858
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/show)
16859
16859
  */
16860
16860
  show(): void;
16861
16861
  /**
16862
- * The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal, over the top of any other dialogs that might be present. It displays in the top layer, along with a ::backdrop pseudo-element. Elements inside the same document as the dialog, except the dialog and its descendants, become inert (as if the inert attribute is specified). Only the containing document becomes blocked; if the dialog is rendered inside an iframe, the rest of the page remains interactive.
16862
+ * The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal dialog, over the top of any other dialogs or elements that might be visible.
16863
16863
  *
16864
16864
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal)
16865
16865
  */
@@ -24271,13 +24271,13 @@ interface MouseEvent extends UIEvent {
24271
24271
  */
24272
24272
  readonly metaKey: boolean;
24273
24273
  /**
24274
- * The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementX = currentEvent.screenX - previousEvent.screenX.
24274
+ * The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
24275
24275
  *
24276
24276
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementX)
24277
24277
  */
24278
24278
  readonly movementX: number;
24279
24279
  /**
24280
- * The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementY = currentEvent.screenY - previousEvent.screenY.
24280
+ * The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
24281
24281
  *
24282
24282
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementY)
24283
24283
  */