@types/react 15.7.12 → 15.7.13
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 v15.7/README.md +1 -1
- react v15.7/index.d.ts +1 -7
- react v15.7/package.json +3 -3
react v15.7/README.md
CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for React (http://facebook.github.io/reac
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react/v15.
|
9
9
|
|
10
10
|
### Additional Details
|
11
|
-
* Last updated:
|
11
|
+
* Last updated: Mon, 27 Mar 2023 18:33:57 GMT
|
12
12
|
* Dependencies: none
|
13
13
|
* Global values: `React`
|
14
14
|
|
react v15.7/index.d.ts
CHANGED
@@ -131,7 +131,6 @@ declare namespace React {
|
|
131
131
|
interface WebViewHTMLAttributes<T> extends HTMLAttributes<T> {
|
132
132
|
allowFullScreen?: boolean | undefined;
|
133
133
|
allowpopups?: boolean | undefined;
|
134
|
-
autoFocus?: boolean | undefined;
|
135
134
|
autosize?: boolean | undefined;
|
136
135
|
blinkfeatures?: string | undefined;
|
137
136
|
disableblinkfeatures?: string | undefined;
|
@@ -2591,6 +2590,7 @@ declare namespace React {
|
|
2591
2590
|
|
2592
2591
|
// Standard HTML Attributes
|
2593
2592
|
accessKey?: string | undefined;
|
2593
|
+
autoFocus?: boolean | undefined;
|
2594
2594
|
className?: string | undefined;
|
2595
2595
|
contentEditable?: boolean | undefined;
|
2596
2596
|
contextMenu?: string | undefined;
|
@@ -2659,7 +2659,6 @@ declare namespace React {
|
|
2659
2659
|
as?: string | undefined;
|
2660
2660
|
async?: boolean | undefined;
|
2661
2661
|
autoComplete?: string | undefined;
|
2662
|
-
autoFocus?: boolean | undefined;
|
2663
2662
|
autoPlay?: boolean | undefined;
|
2664
2663
|
capture?: boolean | string | undefined;
|
2665
2664
|
cellPadding?: number | string | undefined;
|
@@ -2791,7 +2790,6 @@ declare namespace React {
|
|
2791
2790
|
}
|
2792
2791
|
|
2793
2792
|
interface ButtonHTMLAttributes<T> extends HTMLAttributes<T> {
|
2794
|
-
autoFocus?: boolean | undefined;
|
2795
2793
|
disabled?: boolean | undefined;
|
2796
2794
|
form?: string | undefined;
|
2797
2795
|
formAction?: string | undefined;
|
@@ -2895,7 +2893,6 @@ declare namespace React {
|
|
2895
2893
|
accept?: string | undefined;
|
2896
2894
|
alt?: string | undefined;
|
2897
2895
|
autoComplete?: string | undefined;
|
2898
|
-
autoFocus?: boolean | undefined;
|
2899
2896
|
capture?: boolean | string | undefined; // https://www.w3.org/TR/html-media-capture/#the-capture-attribute
|
2900
2897
|
checked?: boolean | undefined;
|
2901
2898
|
crossOrigin?: "anonymous" | "use-credentials" | "" | undefined;
|
@@ -2929,7 +2926,6 @@ declare namespace React {
|
|
2929
2926
|
}
|
2930
2927
|
|
2931
2928
|
interface KeygenHTMLAttributes<T> extends HTMLAttributes<T> {
|
2932
|
-
autoFocus?: boolean | undefined;
|
2933
2929
|
challenge?: string | undefined;
|
2934
2930
|
disabled?: boolean | undefined;
|
2935
2931
|
form?: string | undefined;
|
@@ -3060,7 +3056,6 @@ declare namespace React {
|
|
3060
3056
|
|
3061
3057
|
interface SelectHTMLAttributes<T> extends HTMLAttributes<T> {
|
3062
3058
|
autoComplete?: string | undefined;
|
3063
|
-
autoFocus?: boolean | undefined;
|
3064
3059
|
disabled?: boolean | undefined;
|
3065
3060
|
form?: string | undefined;
|
3066
3061
|
multiple?: boolean | undefined;
|
@@ -3094,7 +3089,6 @@ declare namespace React {
|
|
3094
3089
|
|
3095
3090
|
interface TextareaHTMLAttributes<T> extends HTMLAttributes<T> {
|
3096
3091
|
autoComplete?: string | undefined;
|
3097
|
-
autoFocus?: boolean | undefined;
|
3098
3092
|
cols?: number | undefined;
|
3099
3093
|
dirName?: string | undefined;
|
3100
3094
|
disabled?: boolean | undefined;
|
react v15.7/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/react",
|
3
|
-
"version": "15.7.
|
3
|
+
"version": "15.7.13",
|
4
4
|
"description": "TypeScript definitions for React",
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react",
|
6
6
|
"license": "MIT",
|
@@ -62,8 +62,8 @@
|
|
62
62
|
},
|
63
63
|
"scripts": {},
|
64
64
|
"dependencies": {},
|
65
|
-
"typesPublisherContentHash": "
|
66
|
-
"typeScriptVersion": "4.
|
65
|
+
"typesPublisherContentHash": "02620e668ce990acceb52c9ce7262e66a2960d88909180e8755534f3c2deaf61",
|
66
|
+
"typeScriptVersion": "4.3",
|
67
67
|
"exports": {
|
68
68
|
".": {
|
69
69
|
"types": {
|