@types/react 17.0.86 → 17.0.87
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 +3 -0
- react v17.0/package.json +2 -2
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: Tue, 27 May 2025 08:02:50 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
@@ -2321,6 +2321,7 @@ declare namespace React {
|
|
2321
2321
|
|
2322
2322
|
interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
|
2323
2323
|
as?: string | undefined;
|
2324
|
+
blocking?: "render" | (string & {}) | undefined;
|
2324
2325
|
crossOrigin?: CrossOrigin;
|
2325
2326
|
fetchPriority?: "high" | "low" | "auto";
|
2326
2327
|
href?: string | undefined;
|
@@ -2429,6 +2430,7 @@ declare namespace React {
|
|
2429
2430
|
|
2430
2431
|
interface ScriptHTMLAttributes<T> extends HTMLAttributes<T> {
|
2431
2432
|
async?: boolean | undefined;
|
2433
|
+
blocking?: "render" | (string & {}) | undefined;
|
2432
2434
|
/** @deprecated */
|
2433
2435
|
charSet?: string | undefined;
|
2434
2436
|
crossOrigin?: CrossOrigin;
|
@@ -2463,6 +2465,7 @@ declare namespace React {
|
|
2463
2465
|
}
|
2464
2466
|
|
2465
2467
|
interface StyleHTMLAttributes<T> extends HTMLAttributes<T> {
|
2468
|
+
blocking?: "render" | (string & {}) | undefined;
|
2466
2469
|
media?: string | undefined;
|
2467
2470
|
scoped?: boolean | undefined;
|
2468
2471
|
type?: string | undefined;
|
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.87",
|
4
4
|
"description": "TypeScript definitions for react",
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react",
|
6
6
|
"license": "MIT",
|
@@ -170,6 +170,6 @@
|
|
170
170
|
"csstype": "^3.0.2"
|
171
171
|
},
|
172
172
|
"peerDependencies": {},
|
173
|
-
"typesPublisherContentHash": "
|
173
|
+
"typesPublisherContentHash": "6b8782b557f2d14f636786ebd8ceec837a78ce09baa512eba215445133c1d09b",
|
174
174
|
"typeScriptVersion": "5.1"
|
175
175
|
}
|