@types/react 16.14.54 → 16.14.56
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 v16.14/README.md +1 -1
- react v16.14/index.d.ts +3 -2
- react v16.14/package.json +2 -2
react v16.14/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/v16.
|
9
9
|
|
10
10
|
### Additional Details
|
11
|
-
* Last updated:
|
11
|
+
* Last updated: Mon, 15 Jan 2024 09:07:05 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 v16.14/index.d.ts
CHANGED
@@ -1555,7 +1555,7 @@ declare namespace React {
|
|
1555
1555
|
onTransitionEndCapture?: TransitionEventHandler<T> | undefined;
|
1556
1556
|
}
|
1557
1557
|
|
1558
|
-
export interface CSSProperties extends CSS.Properties<
|
1558
|
+
export interface CSSProperties extends CSS.Properties<string | number> {
|
1559
1559
|
/**
|
1560
1560
|
* The index signature was removed to enable closed typing for style
|
1561
1561
|
* using CSSType. You're able to use type assertion or module augmentation
|
@@ -2304,9 +2304,10 @@ declare namespace React {
|
|
2304
2304
|
|
2305
2305
|
interface MetaHTMLAttributes<T> extends HTMLAttributes<T> {
|
2306
2306
|
charSet?: string | undefined;
|
2307
|
+
content?: string | undefined;
|
2307
2308
|
httpEquiv?: string | undefined;
|
2308
|
-
name?: string | undefined;
|
2309
2309
|
media?: string | undefined;
|
2310
|
+
name?: string | undefined;
|
2310
2311
|
}
|
2311
2312
|
|
2312
2313
|
interface MeterHTMLAttributes<T> extends HTMLAttributes<T> {
|
react v16.14/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/react",
|
3
|
-
"version": "16.14.
|
3
|
+
"version": "16.14.56",
|
4
4
|
"description": "TypeScript definitions for react",
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react",
|
6
6
|
"license": "MIT",
|
@@ -164,6 +164,6 @@
|
|
164
164
|
"@types/scheduler": "*",
|
165
165
|
"csstype": "^3.0.2"
|
166
166
|
},
|
167
|
-
"typesPublisherContentHash": "
|
167
|
+
"typesPublisherContentHash": "f467800b8e2a327aa4679c4b48cdc407c89e999587cc082eb7410ac909e0e0f1",
|
168
168
|
"typeScriptVersion": "4.6"
|
169
169
|
}
|