@types/react 15.7.12 → 15.7.14
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 +4 -14
- 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, 03 Apr 2023 20:03:17 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;
|
@@ -2613,11 +2613,14 @@ declare namespace React {
|
|
2613
2613
|
|
2614
2614
|
// RDFa Attributes
|
2615
2615
|
about?: string | undefined;
|
2616
|
+
content?: string | undefined;
|
2616
2617
|
datatype?: string | undefined;
|
2617
2618
|
inlist?: any;
|
2618
2619
|
prefix?: string | undefined;
|
2619
2620
|
property?: string | undefined;
|
2621
|
+
rel?: string | undefined;
|
2620
2622
|
resource?: string | undefined;
|
2623
|
+
rev?: string | undefined;
|
2621
2624
|
typeof?: string | undefined;
|
2622
2625
|
vocab?: string | undefined;
|
2623
2626
|
|
@@ -2659,7 +2662,6 @@ declare namespace React {
|
|
2659
2662
|
as?: string | undefined;
|
2660
2663
|
async?: boolean | undefined;
|
2661
2664
|
autoComplete?: string | undefined;
|
2662
|
-
autoFocus?: boolean | undefined;
|
2663
2665
|
autoPlay?: boolean | undefined;
|
2664
2666
|
capture?: boolean | string | undefined;
|
2665
2667
|
cellPadding?: number | string | undefined;
|
@@ -2671,7 +2673,6 @@ declare namespace React {
|
|
2671
2673
|
classID?: string | undefined;
|
2672
2674
|
cols?: number | undefined;
|
2673
2675
|
colSpan?: number | undefined;
|
2674
|
-
content?: string | undefined;
|
2675
2676
|
controls?: boolean | undefined;
|
2676
2677
|
coords?: string | undefined;
|
2677
2678
|
crossOrigin?: "anonymous" | "use-credentials" | "" | undefined;
|
@@ -2727,7 +2728,6 @@ declare namespace React {
|
|
2727
2728
|
poster?: string | undefined;
|
2728
2729
|
preload?: string | undefined;
|
2729
2730
|
readOnly?: boolean | undefined;
|
2730
|
-
rel?: string | undefined;
|
2731
2731
|
required?: boolean | undefined;
|
2732
2732
|
reversed?: boolean | undefined;
|
2733
2733
|
rows?: number | undefined;
|
@@ -2763,7 +2763,6 @@ declare namespace React {
|
|
2763
2763
|
href?: string | undefined;
|
2764
2764
|
hrefLang?: string | undefined;
|
2765
2765
|
media?: string | undefined;
|
2766
|
-
rel?: string | undefined;
|
2767
2766
|
target?: string | undefined;
|
2768
2767
|
}
|
2769
2768
|
|
@@ -2776,7 +2775,6 @@ declare namespace React {
|
|
2776
2775
|
href?: string | undefined;
|
2777
2776
|
hrefLang?: string | undefined;
|
2778
2777
|
media?: string | undefined;
|
2779
|
-
rel?: string | undefined;
|
2780
2778
|
shape?: string | undefined;
|
2781
2779
|
target?: string | undefined;
|
2782
2780
|
}
|
@@ -2791,7 +2789,6 @@ declare namespace React {
|
|
2791
2789
|
}
|
2792
2790
|
|
2793
2791
|
interface ButtonHTMLAttributes<T> extends HTMLAttributes<T> {
|
2794
|
-
autoFocus?: boolean | undefined;
|
2795
2792
|
disabled?: boolean | undefined;
|
2796
2793
|
form?: string | undefined;
|
2797
2794
|
formAction?: string | undefined;
|
@@ -2852,7 +2849,6 @@ declare namespace React {
|
|
2852
2849
|
name?: string | undefined;
|
2853
2850
|
noValidate?: boolean | undefined;
|
2854
2851
|
target?: string | undefined;
|
2855
|
-
rel?: string | undefined;
|
2856
2852
|
}
|
2857
2853
|
|
2858
2854
|
interface HtmlHTMLAttributes<T> extends HTMLAttributes<T> {
|
@@ -2895,7 +2891,6 @@ declare namespace React {
|
|
2895
2891
|
accept?: string | undefined;
|
2896
2892
|
alt?: string | undefined;
|
2897
2893
|
autoComplete?: string | undefined;
|
2898
|
-
autoFocus?: boolean | undefined;
|
2899
2894
|
capture?: boolean | string | undefined; // https://www.w3.org/TR/html-media-capture/#the-capture-attribute
|
2900
2895
|
checked?: boolean | undefined;
|
2901
2896
|
crossOrigin?: "anonymous" | "use-credentials" | "" | undefined;
|
@@ -2929,7 +2924,6 @@ declare namespace React {
|
|
2929
2924
|
}
|
2930
2925
|
|
2931
2926
|
interface KeygenHTMLAttributes<T> extends HTMLAttributes<T> {
|
2932
|
-
autoFocus?: boolean | undefined;
|
2933
2927
|
challenge?: string | undefined;
|
2934
2928
|
disabled?: boolean | undefined;
|
2935
2929
|
form?: string | undefined;
|
@@ -2955,7 +2949,6 @@ declare namespace React {
|
|
2955
2949
|
integrity?: string | undefined;
|
2956
2950
|
imageSrcSet?: string | undefined;
|
2957
2951
|
media?: string | undefined;
|
2958
|
-
rel?: string | undefined;
|
2959
2952
|
sizes?: string | undefined;
|
2960
2953
|
type?: string | undefined;
|
2961
2954
|
}
|
@@ -2982,7 +2975,6 @@ declare namespace React {
|
|
2982
2975
|
|
2983
2976
|
interface MetaHTMLAttributes<T> extends HTMLAttributes<T> {
|
2984
2977
|
charSet?: string | undefined;
|
2985
|
-
content?: string | undefined;
|
2986
2978
|
httpEquiv?: string | undefined;
|
2987
2979
|
name?: string | undefined;
|
2988
2980
|
media?: string | undefined;
|
@@ -3060,7 +3052,6 @@ declare namespace React {
|
|
3060
3052
|
|
3061
3053
|
interface SelectHTMLAttributes<T> extends HTMLAttributes<T> {
|
3062
3054
|
autoComplete?: string | undefined;
|
3063
|
-
autoFocus?: boolean | undefined;
|
3064
3055
|
disabled?: boolean | undefined;
|
3065
3056
|
form?: string | undefined;
|
3066
3057
|
multiple?: boolean | undefined;
|
@@ -3094,7 +3085,6 @@ declare namespace React {
|
|
3094
3085
|
|
3095
3086
|
interface TextareaHTMLAttributes<T> extends HTMLAttributes<T> {
|
3096
3087
|
autoComplete?: string | undefined;
|
3097
|
-
autoFocus?: boolean | undefined;
|
3098
3088
|
cols?: number | undefined;
|
3099
3089
|
dirName?: string | undefined;
|
3100
3090
|
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.14",
|
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": "cf0f27ad9e610c2cb730b3e79b451a53977c1a19b5d9f48d4ae7ee97c70c202f",
|
66
|
+
"typeScriptVersion": "4.3",
|
67
67
|
"exports": {
|
68
68
|
".": {
|
69
69
|
"types": {
|