@types/react 15.7.13 → 15.7.15
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 +3 -9
- react v15.7/package.json +2 -2
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: Thu, 06 Apr 2023 17:03:20 GMT
|
12
12
|
* Dependencies: none
|
13
13
|
* Global values: `React`
|
14
14
|
|
react v15.7/index.d.ts
CHANGED
@@ -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
|
|
@@ -2670,7 +2673,6 @@ declare namespace React {
|
|
2670
2673
|
classID?: string | undefined;
|
2671
2674
|
cols?: number | undefined;
|
2672
2675
|
colSpan?: number | undefined;
|
2673
|
-
content?: string | undefined;
|
2674
2676
|
controls?: boolean | undefined;
|
2675
2677
|
coords?: string | undefined;
|
2676
2678
|
crossOrigin?: "anonymous" | "use-credentials" | "" | undefined;
|
@@ -2726,7 +2728,6 @@ declare namespace React {
|
|
2726
2728
|
poster?: string | undefined;
|
2727
2729
|
preload?: string | undefined;
|
2728
2730
|
readOnly?: boolean | undefined;
|
2729
|
-
rel?: string | undefined;
|
2730
2731
|
required?: boolean | undefined;
|
2731
2732
|
reversed?: boolean | undefined;
|
2732
2733
|
rows?: number | undefined;
|
@@ -2762,7 +2763,6 @@ declare namespace React {
|
|
2762
2763
|
href?: string | undefined;
|
2763
2764
|
hrefLang?: string | undefined;
|
2764
2765
|
media?: string | undefined;
|
2765
|
-
rel?: string | undefined;
|
2766
2766
|
target?: string | undefined;
|
2767
2767
|
}
|
2768
2768
|
|
@@ -2775,7 +2775,6 @@ declare namespace React {
|
|
2775
2775
|
href?: string | undefined;
|
2776
2776
|
hrefLang?: string | undefined;
|
2777
2777
|
media?: string | undefined;
|
2778
|
-
rel?: string | undefined;
|
2779
2778
|
shape?: string | undefined;
|
2780
2779
|
target?: string | undefined;
|
2781
2780
|
}
|
@@ -2850,7 +2849,6 @@ declare namespace React {
|
|
2850
2849
|
name?: string | undefined;
|
2851
2850
|
noValidate?: boolean | undefined;
|
2852
2851
|
target?: string | undefined;
|
2853
|
-
rel?: string | undefined;
|
2854
2852
|
}
|
2855
2853
|
|
2856
2854
|
interface HtmlHTMLAttributes<T> extends HTMLAttributes<T> {
|
@@ -2951,7 +2949,6 @@ declare namespace React {
|
|
2951
2949
|
integrity?: string | undefined;
|
2952
2950
|
imageSrcSet?: string | undefined;
|
2953
2951
|
media?: string | undefined;
|
2954
|
-
rel?: string | undefined;
|
2955
2952
|
sizes?: string | undefined;
|
2956
2953
|
type?: string | undefined;
|
2957
2954
|
}
|
@@ -2978,7 +2975,6 @@ declare namespace React {
|
|
2978
2975
|
|
2979
2976
|
interface MetaHTMLAttributes<T> extends HTMLAttributes<T> {
|
2980
2977
|
charSet?: string | undefined;
|
2981
|
-
content?: string | undefined;
|
2982
2978
|
httpEquiv?: string | undefined;
|
2983
2979
|
name?: string | undefined;
|
2984
2980
|
media?: string | undefined;
|
@@ -3635,7 +3631,6 @@ declare namespace React {
|
|
3635
3631
|
|
3636
3632
|
declare global {
|
3637
3633
|
namespace JSX {
|
3638
|
-
// tslint:disable-next-line:no-empty-interface
|
3639
3634
|
interface Element extends React.ReactElement { }
|
3640
3635
|
interface ElementClass extends React.Component<any> {
|
3641
3636
|
render(): JSX.Element | null | false;
|
@@ -3643,7 +3638,6 @@ declare global {
|
|
3643
3638
|
interface ElementAttributesProperty { props: {}; }
|
3644
3639
|
interface ElementChildrenAttribute { children: {}; }
|
3645
3640
|
|
3646
|
-
// tslint:disable-next-line:no-empty-interface
|
3647
3641
|
interface IntrinsicAttributes extends React.Attributes { }
|
3648
3642
|
interface IntrinsicClassAttributes<T> extends React.ClassAttributes<T> { }
|
3649
3643
|
|
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.15",
|
4
4
|
"description": "TypeScript definitions for React",
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react",
|
6
6
|
"license": "MIT",
|
@@ -62,7 +62,7 @@
|
|
62
62
|
},
|
63
63
|
"scripts": {},
|
64
64
|
"dependencies": {},
|
65
|
-
"typesPublisherContentHash": "
|
65
|
+
"typesPublisherContentHash": "4fd527ecb981e78fd3223a7fcb4bf4a3a20fa7600e6aa6b2dfad91846be1b1e0",
|
66
66
|
"typeScriptVersion": "4.3",
|
67
67
|
"exports": {
|
68
68
|
".": {
|