@types/react-dom 16.9.18 → 16.9.19

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.
@@ -8,7 +8,7 @@ This package contains type definitions for React (react-dom) (https://reactjs.or
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom/v16.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Wed, 15 Feb 2023 00:32:44 GMT
11
+ * Last updated: Tue, 25 Apr 2023 20:32:50 GMT
12
12
  * Dependencies: [@types/react](https://npmjs.com/package/@types/react)
13
13
  * Global values: `ReactDOM`, `ReactDOMServer`
14
14
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/react-dom",
3
- "version": "16.9.18",
3
+ "version": "16.9.19",
4
4
  "description": "TypeScript definitions for React (react-dom)",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom",
6
6
  "license": "MIT",
@@ -49,6 +49,6 @@
49
49
  "dependencies": {
50
50
  "@types/react": "^16"
51
51
  },
52
- "typesPublisherContentHash": "b229ad33a419884f004fd4e1823e41bae30bd462a08c2374cb4a779fd45ff142",
53
- "typeScriptVersion": "4.2"
52
+ "typesPublisherContentHash": "bf7007a07feb8c5f626088459485d80ac74fcdef8ed3f960b41cea18c6c468fd",
53
+ "typeScriptVersion": "4.3"
54
54
  }
@@ -81,22 +81,25 @@ export interface ShallowRenderer {
81
81
  * Simulate an event dispatch on a DOM node with optional `eventData` event data.
82
82
  * `Simulate` has a method for every event that React understands.
83
83
  */
84
- export namespace Simulate {
84
+ export namespace Simulate {
85
85
  const abort: EventSimulator;
86
86
  const animationEnd: EventSimulator;
87
87
  const animationIteration: EventSimulator;
88
88
  const animationStart: EventSimulator;
89
89
  const blur: EventSimulator;
90
+ const cancel: EventSimulator;
90
91
  const canPlay: EventSimulator;
91
92
  const canPlayThrough: EventSimulator;
92
93
  const change: EventSimulator;
93
94
  const click: EventSimulator;
95
+ const close: EventSimulator;
94
96
  const compositionEnd: EventSimulator;
95
97
  const compositionStart: EventSimulator;
96
98
  const compositionUpdate: EventSimulator;
97
99
  const contextMenu: EventSimulator;
98
100
  const copy: EventSimulator;
99
101
  const cut: EventSimulator;
102
+ const auxClick: EventSimulator;
100
103
  const doubleClick: EventSimulator;
101
104
  const drag: EventSimulator;
102
105
  const dragEnd: EventSimulator;
@@ -133,11 +136,24 @@ export namespace Simulate {
133
136
  const play: EventSimulator;
134
137
  const playing: EventSimulator;
135
138
  const progress: EventSimulator;
139
+ const pointerCancel: EventSimulator;
140
+ const pointerDown: EventSimulator;
141
+ const pointerUp: EventSimulator;
142
+ const pointerMove: EventSimulator;
143
+ const pointerOut: EventSimulator;
144
+ const pointerOver: EventSimulator;
145
+ const pointerEnter: EventSimulator;
146
+ const pointerLeave: EventSimulator;
147
+ const gotPointerCapture: EventSimulator;
148
+ const lostPointerCapture: EventSimulator;
136
149
  const rateChange: EventSimulator;
150
+ const reset: EventSimulator;
137
151
  const scroll: EventSimulator;
152
+ const toggle: EventSimulator;
138
153
  const seeked: EventSimulator;
139
154
  const seeking: EventSimulator;
140
155
  const select: EventSimulator;
156
+ const beforeInput: EventSimulator;
141
157
  const stalled: EventSimulator;
142
158
  const submit: EventSimulator;
143
159
  const suspend: EventSimulator;