@types/react 19.1.5 → 19.1.6
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 +1 -1
- react/index.d.ts +3 -0
- react/package.json +2 -2
- react/ts5.0/index.d.ts +3 -0
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:
|
11
|
+
* Last updated: Tue, 27 May 2025 08:02:50 GMT
|
12
12
|
* Dependencies: [csstype](https://npmjs.com/package/csstype)
|
13
13
|
|
14
14
|
# Credits
|
react/index.d.ts
CHANGED
@@ -3225,6 +3225,7 @@ declare namespace React {
|
|
3225
3225
|
|
3226
3226
|
interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
|
3227
3227
|
as?: string | undefined;
|
3228
|
+
blocking?: "render" | (string & {}) | undefined;
|
3228
3229
|
crossOrigin?: CrossOrigin;
|
3229
3230
|
fetchPriority?: "high" | "low" | "auto";
|
3230
3231
|
href?: string | undefined;
|
@@ -3344,6 +3345,7 @@ declare namespace React {
|
|
3344
3345
|
|
3345
3346
|
interface ScriptHTMLAttributes<T> extends HTMLAttributes<T> {
|
3346
3347
|
async?: boolean | undefined;
|
3348
|
+
blocking?: "render" | (string & {}) | undefined;
|
3347
3349
|
/** @deprecated */
|
3348
3350
|
charSet?: string | undefined;
|
3349
3351
|
crossOrigin?: CrossOrigin;
|
@@ -3378,6 +3380,7 @@ declare namespace React {
|
|
3378
3380
|
}
|
3379
3381
|
|
3380
3382
|
interface StyleHTMLAttributes<T> extends HTMLAttributes<T> {
|
3383
|
+
blocking?: "render" | (string & {}) | undefined;
|
3381
3384
|
media?: string | undefined;
|
3382
3385
|
scoped?: boolean | undefined;
|
3383
3386
|
type?: string | undefined;
|
react/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/react",
|
3
|
-
"version": "19.1.
|
3
|
+
"version": "19.1.6",
|
4
4
|
"description": "TypeScript definitions for react",
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react",
|
6
6
|
"license": "MIT",
|
@@ -205,6 +205,6 @@
|
|
205
205
|
"csstype": "^3.0.2"
|
206
206
|
},
|
207
207
|
"peerDependencies": {},
|
208
|
-
"typesPublisherContentHash": "
|
208
|
+
"typesPublisherContentHash": "d69364f7ca8310f5e294400f1e12adb95cd625cef54bf527da66912f3b1c940e",
|
209
209
|
"typeScriptVersion": "5.1"
|
210
210
|
}
|
react/ts5.0/index.d.ts
CHANGED
@@ -3224,6 +3224,7 @@ declare namespace React {
|
|
3224
3224
|
|
3225
3225
|
interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
|
3226
3226
|
as?: string | undefined;
|
3227
|
+
blocking?: "render" | (string & {}) | undefined;
|
3227
3228
|
crossOrigin?: CrossOrigin;
|
3228
3229
|
fetchPriority?: "high" | "low" | "auto";
|
3229
3230
|
href?: string | undefined;
|
@@ -3343,6 +3344,7 @@ declare namespace React {
|
|
3343
3344
|
|
3344
3345
|
interface ScriptHTMLAttributes<T> extends HTMLAttributes<T> {
|
3345
3346
|
async?: boolean | undefined;
|
3347
|
+
blocking?: "render" | (string & {}) | undefined;
|
3346
3348
|
/** @deprecated */
|
3347
3349
|
charSet?: string | undefined;
|
3348
3350
|
crossOrigin?: CrossOrigin;
|
@@ -3377,6 +3379,7 @@ declare namespace React {
|
|
3377
3379
|
}
|
3378
3380
|
|
3379
3381
|
interface StyleHTMLAttributes<T> extends HTMLAttributes<T> {
|
3382
|
+
blocking?: "render" | (string & {}) | undefined;
|
3380
3383
|
media?: string | undefined;
|
3381
3384
|
scoped?: boolean | undefined;
|
3382
3385
|
type?: string | undefined;
|