@types/react 16.14.61 → 16.14.63
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 +9 -1
- react v16.14/package.json +4 -3
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: 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 v16.14/index.d.ts
CHANGED
@@ -1861,6 +1861,7 @@ declare namespace React {
|
|
1861
1861
|
|
1862
1862
|
// Standard HTML Attributes
|
1863
1863
|
accessKey?: string | undefined;
|
1864
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
|
1864
1865
|
autoFocus?: boolean | undefined;
|
1865
1866
|
className?: string | undefined;
|
1866
1867
|
contentEditable?: Booleanish | "inherit" | undefined;
|
@@ -1899,7 +1900,6 @@ declare namespace React {
|
|
1899
1900
|
vocab?: string | undefined;
|
1900
1901
|
|
1901
1902
|
// Non-standard Attributes
|
1902
|
-
autoCapitalize?: string | undefined;
|
1903
1903
|
autoCorrect?: string | undefined;
|
1904
1904
|
autoSave?: string | undefined;
|
1905
1905
|
color?: string | undefined;
|
@@ -1923,6 +1923,14 @@ declare namespace React {
|
|
1923
1923
|
* @see https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is
|
1924
1924
|
*/
|
1925
1925
|
is?: string | undefined;
|
1926
|
+
/**
|
1927
|
+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/exportparts}
|
1928
|
+
*/
|
1929
|
+
exportparts?: string | undefined;
|
1930
|
+
/**
|
1931
|
+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/part}
|
1932
|
+
*/
|
1933
|
+
part?: string | undefined;
|
1926
1934
|
}
|
1927
1935
|
|
1928
1936
|
interface AllHTMLAttributes<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.63",
|
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,7 @@
|
|
164
164
|
"@types/scheduler": "^0.16",
|
165
165
|
"csstype": "^3.0.2"
|
166
166
|
},
|
167
|
-
"
|
168
|
-
"
|
167
|
+
"peerDependencies": {},
|
168
|
+
"typesPublisherContentHash": "0bae6e49724ef9f1b94aaf0436dba2ec1a5ffb03db09c4ef80258782ae7e36b7",
|
169
|
+
"typeScriptVersion": "5.0"
|
169
170
|
}
|