@types/react 18.2.70 → 18.2.72

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.
react/README.md CHANGED
@@ -8,8 +8,8 @@ This package contains type definitions for react (https://react.dev/).
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Mon, 25 Mar 2024 09:35:32 GMT
12
- * Dependencies: [@types/prop-types](https://npmjs.com/package/@types/prop-types), [@types/scheduler](https://npmjs.com/package/@types/scheduler), [csstype](https://npmjs.com/package/csstype)
11
+ * Last updated: Tue, 26 Mar 2024 18:35:47 GMT
12
+ * Dependencies: [@types/prop-types](https://npmjs.com/package/@types/prop-types), [csstype](https://npmjs.com/package/csstype)
13
13
 
14
14
  # Credits
15
15
  These definitions were written by [Asana](https://asana.com), [AssureSign](http://www.assuresign.com), [Microsoft](https://microsoft.com), [John Reilly](https://github.com/johnnyreilly), [Benoit Benezech](https://github.com/bbenezech), [Patricio Zavolinsky](https://github.com/pzavolinsky), [Eric Anderson](https://github.com/ericanderson), [Dovydas Navickas](https://github.com/DovydasNavickas), [Josh Rutherford](https://github.com/theruther4d), [Guilherme Hübner](https://github.com/guilhermehubner), [Ferdy Budhidharma](https://github.com/ferdaber), [Johann Rakotoharisoa](https://github.com/jrakotoharisoa), [Olivier Pascal](https://github.com/pascaloliv), [Martin Hochel](https://github.com/hotell), [Frank Li](https://github.com/franklixuefei), [Jessica Franco](https://github.com/Jessidhia), [Saransh Kataria](https://github.com/saranshkataria), [Kanitkorn Sujautra](https://github.com/lukyth), [Sebastian Silbermann](https://github.com/eps1lon), [Kyle Scully](https://github.com/zieka), [Cong Zhang](https://github.com/dancerphil), [Dimitri Mitropoulos](https://github.com/dimitropoulos), [JongChan Choi](https://github.com/disjukr), [Victor Magalhães](https://github.com/vhfmag), [Dale Tan](https://github.com/hellatan), [Priyanshu Rav](https://github.com/priyanshurav), [Dmitry Semigradsky](https://github.com/Semigradsky), and [Matt Pocock](https://github.com/mattpocock).
react/index.d.ts CHANGED
@@ -6,7 +6,6 @@
6
6
 
7
7
  import * as CSS from "csstype";
8
8
  import * as PropTypes from "prop-types";
9
- import { Interaction as SchedulerInteraction } from "scheduler/tracing";
10
9
 
11
10
  type NativeAnimationEvent = AnimationEvent;
12
11
  type NativeClipboardEvent = ClipboardEvent;
@@ -917,7 +916,6 @@ declare namespace React {
917
916
  * @see {@link https://react.dev/reference/react/Profiler#onrender-callback React Docs}
918
917
  */
919
918
  commitTime: number,
920
- interactions: Set<SchedulerInteraction>,
921
919
  ) => void;
922
920
 
923
921
  /**
react/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/react",
3
- "version": "18.2.70",
3
+ "version": "18.2.72",
4
4
  "description": "TypeScript definitions for react",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react",
6
6
  "license": "MIT",
@@ -203,9 +203,8 @@
203
203
  "scripts": {},
204
204
  "dependencies": {
205
205
  "@types/prop-types": "*",
206
- "@types/scheduler": "*",
207
206
  "csstype": "^3.0.2"
208
207
  },
209
- "typesPublisherContentHash": "73fd0bbfbb1887efb5bc0d6baf9a096118379ae3db40b4eadd11d127d729c42c",
208
+ "typesPublisherContentHash": "5df9233c804ceaab7414ae8685fa2b1f5235e52cabd99df03c17b2375ecee68c",
210
209
  "typeScriptVersion": "4.7"
211
210
  }
react/ts5.0/index.d.ts CHANGED
@@ -6,7 +6,6 @@
6
6
 
7
7
  import * as CSS from "csstype";
8
8
  import * as PropTypes from "prop-types";
9
- import { Interaction as SchedulerInteraction } from "scheduler/tracing";
10
9
 
11
10
  type NativeAnimationEvent = AnimationEvent;
12
11
  type NativeClipboardEvent = ClipboardEvent;
@@ -918,7 +917,6 @@ declare namespace React {
918
917
  * @see {@link https://react.dev/reference/react/Profiler#onrender-callback React Docs}
919
918
  */
920
919
  commitTime: number,
921
- interactions: Set<SchedulerInteraction>,
922
920
  ) => void;
923
921
 
924
922
  /**