@types/react 18.2.33 → 18.2.35

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,7 +8,7 @@ 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: Thu, 26 Oct 2023 05:16:20 GMT
11
+ * Last updated: Sun, 05 Nov 2023 09:44:24 GMT
12
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)
13
13
 
14
14
  # Credits
react/index.d.ts CHANGED
@@ -1952,7 +1952,7 @@ declare namespace React {
1952
1952
  accessKey?: string | undefined;
1953
1953
  autoFocus?: boolean | undefined;
1954
1954
  className?: string | undefined;
1955
- contentEditable?: Booleanish | "inherit" | undefined;
1955
+ contentEditable?: Booleanish | "inherit" | "plaintext-only" | undefined;
1956
1956
  contextMenu?: string | undefined;
1957
1957
  dir?: string | undefined;
1958
1958
  draggable?: Booleanish | undefined;
react/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/react",
3
- "version": "18.2.33",
3
+ "version": "18.2.35",
4
4
  "description": "TypeScript definitions for react",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react",
6
6
  "license": "MIT",
@@ -201,6 +201,6 @@
201
201
  "@types/scheduler": "*",
202
202
  "csstype": "^3.0.2"
203
203
  },
204
- "typesPublisherContentHash": "5e704d45296f0ebcba83d5224ff9187aa470b5234d62c4ccfd47ff6857fa98fe",
204
+ "typesPublisherContentHash": "3e50f4775d3a586dbdd3a75ab82946999238ced30cb35e5d65477b668f5cbd68",
205
205
  "typeScriptVersion": "4.5"
206
206
  }
@@ -110,7 +110,7 @@ declare module "." {
110
110
  * @see https://reactjs.org/docs/concurrent-mode-reference.html#suspenselist
111
111
  * @see https://reactjs.org/docs/concurrent-mode-patterns.html#suspenselist
112
112
  */
113
- export const SuspenseList: ExoticComponent<SuspenseListProps>;
113
+ export const unstable_SuspenseList: ExoticComponent<SuspenseListProps>;
114
114
 
115
115
  // tslint:disable-next-line ban-types
116
116
  export function experimental_useEffectEvent<T extends Function>(event: T): T;
react/ts5.0/index.d.ts CHANGED
@@ -1953,7 +1953,7 @@ declare namespace React {
1953
1953
  accessKey?: string | undefined;
1954
1954
  autoFocus?: boolean | undefined;
1955
1955
  className?: string | undefined;
1956
- contentEditable?: Booleanish | "inherit" | undefined;
1956
+ contentEditable?: Booleanish | "inherit" | "plaintext-only" | undefined;
1957
1957
  contextMenu?: string | undefined;
1958
1958
  dir?: string | undefined;
1959
1959
  draggable?: Booleanish | undefined;