@types/react 18.3.22 → 18.3.23
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 v18.3/README.md +1 -1
- react v18.3/index.d.ts +3 -0
- react v18.3/package.json +2 -2
- react v18.3/ts5.0/index.d.ts +3 -0
react v18.3/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/v18.
|
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), [csstype](https://npmjs.com/package/csstype)
|
13
13
|
|
14
14
|
# Credits
|
react v18.3/index.d.ts
CHANGED
@@ -3433,6 +3433,7 @@ declare namespace React {
|
|
3433
3433
|
|
3434
3434
|
interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
|
3435
3435
|
as?: string | undefined;
|
3436
|
+
blocking?: "render" | (string & {}) | undefined;
|
3436
3437
|
crossOrigin?: CrossOrigin;
|
3437
3438
|
fetchPriority?: "high" | "low" | "auto";
|
3438
3439
|
href?: string | undefined;
|
@@ -3542,6 +3543,7 @@ declare namespace React {
|
|
3542
3543
|
|
3543
3544
|
interface ScriptHTMLAttributes<T> extends HTMLAttributes<T> {
|
3544
3545
|
async?: boolean | undefined;
|
3546
|
+
blocking?: "render" | (string & {}) | undefined;
|
3545
3547
|
/** @deprecated */
|
3546
3548
|
charSet?: string | undefined;
|
3547
3549
|
crossOrigin?: CrossOrigin;
|
@@ -3576,6 +3578,7 @@ declare namespace React {
|
|
3576
3578
|
}
|
3577
3579
|
|
3578
3580
|
interface StyleHTMLAttributes<T> extends HTMLAttributes<T> {
|
3581
|
+
blocking?: "render" | (string & {}) | undefined;
|
3579
3582
|
media?: string | undefined;
|
3580
3583
|
scoped?: boolean | undefined;
|
3581
3584
|
type?: string | undefined;
|
react v18.3/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/react",
|
3
|
-
"version": "18.3.
|
3
|
+
"version": "18.3.23",
|
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
|
"csstype": "^3.0.2"
|
202
202
|
},
|
203
203
|
"peerDependencies": {},
|
204
|
-
"typesPublisherContentHash": "
|
204
|
+
"typesPublisherContentHash": "f611668df87afe76cee4f7de955dacbad19f2a0500c824bf57e8337a4591e0d2",
|
205
205
|
"typeScriptVersion": "5.1"
|
206
206
|
}
|
react v18.3/ts5.0/index.d.ts
CHANGED
@@ -3434,6 +3434,7 @@ declare namespace React {
|
|
3434
3434
|
|
3435
3435
|
interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
|
3436
3436
|
as?: string | undefined;
|
3437
|
+
blocking?: "render" | (string & {}) | undefined;
|
3437
3438
|
crossOrigin?: CrossOrigin;
|
3438
3439
|
fetchPriority?: "high" | "low" | "auto";
|
3439
3440
|
href?: string | undefined;
|
@@ -3543,6 +3544,7 @@ declare namespace React {
|
|
3543
3544
|
|
3544
3545
|
interface ScriptHTMLAttributes<T> extends HTMLAttributes<T> {
|
3545
3546
|
async?: boolean | undefined;
|
3547
|
+
blocking?: "render" | (string & {}) | undefined;
|
3546
3548
|
/** @deprecated */
|
3547
3549
|
charSet?: string | undefined;
|
3548
3550
|
crossOrigin?: CrossOrigin;
|
@@ -3577,6 +3579,7 @@ declare namespace React {
|
|
3577
3579
|
}
|
3578
3580
|
|
3579
3581
|
interface StyleHTMLAttributes<T> extends HTMLAttributes<T> {
|
3582
|
+
blocking?: "render" | (string & {}) | undefined;
|
3580
3583
|
media?: string | undefined;
|
3581
3584
|
scoped?: boolean | undefined;
|
3582
3585
|
type?: string | undefined;
|