@types/react 16.9.37 → 16.9.38
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/README.md +2 -2
- react/index.d.ts +4 -0
- react/package.json +7 -2
react/README.md
CHANGED
@@ -8,9 +8,9 @@ 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.
|
9
9
|
|
10
10
|
### Additional Details
|
11
|
-
* Last updated: Wed, 17 Jun 2020
|
11
|
+
* Last updated: Wed, 17 Jun 2020 14:55:18 GMT
|
12
12
|
* Dependencies: [@types/csstype](https://npmjs.com/package/@types/csstype), [@types/prop-types](https://npmjs.com/package/@types/prop-types)
|
13
13
|
* Global values: `React`
|
14
14
|
|
15
15
|
# Credits
|
16
|
-
These definitions were written by [Asana](https://asana.com), [AssureSign](http://www.assuresign.com), [Microsoft](https://microsoft.com), [John Reilly](https://github.com/johnnyreilly), [Benoit Benezech](https://github.com/bbenezech), [Patricio Zavolinsky](https://github.com/pzavolinsky), [Digiguru](https://github.com/digiguru), [Eric Anderson](https://github.com/ericanderson), [Dovydas Navickas](https://github.com/DovydasNavickas), [Josh Rutherford](https://github.com/theruther4d), [Guilherme Hübner](https://github.com/guilhermehubner), [Ferdy Budhidharma](https://github.com/ferdaber), [Johann Rakotoharisoa](https://github.com/jrakotoharisoa), [Olivier Pascal](https://github.com/pascaloliv), [Martin Hochel](https://github.com/hotell), [Frank Li](https://github.com/franklixuefei), [Jessica Franco](https://github.com/Jessidhia), [Saransh Kataria](https://github.com/saranshkataria), [Kanitkorn Sujautra](https://github.com/lukyth), [Sebastian Silbermann](https://github.com/eps1lon), [Kyle Scully](https://github.com/zieka), [Cong Zhang](https://github.com/dancerphil), [Dimitri Mitropoulos](https://github.com/dimitropoulos), [JongChan Choi](https://github.com/disjukr),
|
16
|
+
These definitions were written by [Asana](https://asana.com), [AssureSign](http://www.assuresign.com), [Microsoft](https://microsoft.com), [John Reilly](https://github.com/johnnyreilly), [Benoit Benezech](https://github.com/bbenezech), [Patricio Zavolinsky](https://github.com/pzavolinsky), [Digiguru](https://github.com/digiguru), [Eric Anderson](https://github.com/ericanderson), [Dovydas Navickas](https://github.com/DovydasNavickas), [Josh Rutherford](https://github.com/theruther4d), [Guilherme Hübner](https://github.com/guilhermehubner), [Ferdy Budhidharma](https://github.com/ferdaber), [Johann Rakotoharisoa](https://github.com/jrakotoharisoa), [Olivier Pascal](https://github.com/pascaloliv), [Martin Hochel](https://github.com/hotell), [Frank Li](https://github.com/franklixuefei), [Jessica Franco](https://github.com/Jessidhia), [Saransh Kataria](https://github.com/saranshkataria), [Kanitkorn Sujautra](https://github.com/lukyth), [Sebastian Silbermann](https://github.com/eps1lon), [Kyle Scully](https://github.com/zieka), [Cong Zhang](https://github.com/dancerphil), [Dimitri Mitropoulos](https://github.com/dimitropoulos), [JongChan Choi](https://github.com/disjukr), [Victor Magalhães](https://github.com/vhfmag), and [Dale Tan](https://github.com/hellatan).
|
react/index.d.ts
CHANGED
@@ -25,6 +25,7 @@
|
|
25
25
|
// Dimitri Mitropoulos <https://github.com/dimitropoulos>
|
26
26
|
// JongChan Choi <https://github.com/disjukr>
|
27
27
|
// Victor Magalhães <https://github.com/vhfmag>
|
28
|
+
// Dale Tan <https://github.com/hellatan>
|
28
29
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
29
30
|
// TypeScript Version: 2.8
|
30
31
|
|
@@ -2266,6 +2267,7 @@ declare namespace React {
|
|
2266
2267
|
cellPadding?: number | string;
|
2267
2268
|
cellSpacing?: number | string;
|
2268
2269
|
summary?: string;
|
2270
|
+
width?: number | string;
|
2269
2271
|
}
|
2270
2272
|
|
2271
2273
|
interface TextareaHTMLAttributes<T> extends HTMLAttributes<T> {
|
@@ -2295,6 +2297,8 @@ declare namespace React {
|
|
2295
2297
|
rowSpan?: number;
|
2296
2298
|
scope?: string;
|
2297
2299
|
abbr?: string;
|
2300
|
+
height?: number | string;
|
2301
|
+
width?: number | string;
|
2298
2302
|
valign?: "top" | "middle" | "bottom" | "baseline";
|
2299
2303
|
}
|
2300
2304
|
|
react/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/react",
|
3
|
-
"version": "16.9.
|
3
|
+
"version": "16.9.38",
|
4
4
|
"description": "TypeScript definitions for React",
|
5
5
|
"license": "MIT",
|
6
6
|
"contributors": [
|
@@ -125,6 +125,11 @@
|
|
125
125
|
"name": "Victor Magalhães",
|
126
126
|
"url": "https://github.com/vhfmag",
|
127
127
|
"githubUsername": "vhfmag"
|
128
|
+
},
|
129
|
+
{
|
130
|
+
"name": "Dale Tan",
|
131
|
+
"url": "https://github.com/hellatan",
|
132
|
+
"githubUsername": "hellatan"
|
128
133
|
}
|
129
134
|
],
|
130
135
|
"main": "",
|
@@ -139,6 +144,6 @@
|
|
139
144
|
"@types/prop-types": "*",
|
140
145
|
"csstype": "^2.2.0"
|
141
146
|
},
|
142
|
-
"typesPublisherContentHash": "
|
147
|
+
"typesPublisherContentHash": "8b1a29657ff80c709ef195b7c494d795a1cc3d980b1702119df17595b838d6a3",
|
143
148
|
"typeScriptVersion": "3.0"
|
144
149
|
}
|