@types/react 17.0.83 → 17.0.84
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 v17.0/README.md +1 -1
- react v17.0/index.d.ts +8 -0
- react v17.0/package.json +4 -3
react v17.0/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/v17.
|
9
9
|
|
10
10
|
### Additional Details
|
11
|
-
* Last updated:
|
11
|
+
* Last updated: Wed, 19 Mar 2025 15:02:26 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 v17.0/index.d.ts
CHANGED
@@ -1924,6 +1924,14 @@ declare namespace React {
|
|
1924
1924
|
* @see https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is
|
1925
1925
|
*/
|
1926
1926
|
is?: string | undefined;
|
1927
|
+
/**
|
1928
|
+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/exportparts}
|
1929
|
+
*/
|
1930
|
+
exportparts?: string | undefined;
|
1931
|
+
/**
|
1932
|
+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/part}
|
1933
|
+
*/
|
1934
|
+
part?: string | undefined;
|
1927
1935
|
}
|
1928
1936
|
|
1929
1937
|
interface AllHTMLAttributes<T> extends HTMLAttributes<T> {
|
react v17.0/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/react",
|
3
|
-
"version": "17.0.
|
3
|
+
"version": "17.0.84",
|
4
4
|
"description": "TypeScript definitions for react",
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react",
|
6
6
|
"license": "MIT",
|
@@ -169,6 +169,7 @@
|
|
169
169
|
"@types/scheduler": "^0.16",
|
170
170
|
"csstype": "^3.0.2"
|
171
171
|
},
|
172
|
-
"
|
173
|
-
"
|
172
|
+
"peerDependencies": {},
|
173
|
+
"typesPublisherContentHash": "bde960465cc06ea7da4f9d23fa1df9e00ee7c545afe171bd150e6428ae63a5fd",
|
174
|
+
"typeScriptVersion": "5.0"
|
174
175
|
}
|