@types/react 16.8.18 → 16.8.19
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 +1 -1
- react/global.d.ts +1 -0
- react/index.d.ts +2 -0
- react/package.json +2 -2
react/README.md
CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for React ( http://facebook.github.io/rea
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react
|
9
9
|
|
10
10
|
Additional Details
|
11
|
-
* Last updated:
|
11
|
+
* Last updated: Tue, 28 May 2019 19:24:48 GMT
|
12
12
|
* Dependencies: @types/csstype, @types/prop-types
|
13
13
|
* Global values: React
|
14
14
|
|
react/global.d.ts
CHANGED
@@ -75,6 +75,7 @@ interface HTMLTableDataCellElement extends HTMLElement { }
|
|
75
75
|
interface HTMLTableHeaderCellElement extends HTMLElement { }
|
76
76
|
interface HTMLTableRowElement extends HTMLElement { }
|
77
77
|
interface HTMLTableSectionElement extends HTMLElement { }
|
78
|
+
interface HTMLTemplateElement extends HTMLElement { }
|
78
79
|
interface HTMLTextAreaElement extends HTMLElement { }
|
79
80
|
interface HTMLTitleElement extends HTMLElement { }
|
80
81
|
interface HTMLTrackElement extends HTMLElement { }
|
react/index.d.ts
CHANGED
@@ -2594,6 +2594,7 @@ declare namespace React {
|
|
2594
2594
|
summary: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
|
2595
2595
|
sup: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
|
2596
2596
|
table: DetailedHTMLFactory<TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>;
|
2597
|
+
template: DetailedHTMLFactory<HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>;
|
2597
2598
|
tbody: DetailedHTMLFactory<HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>;
|
2598
2599
|
td: DetailedHTMLFactory<TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>;
|
2599
2600
|
textarea: DetailedHTMLFactory<TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>;
|
@@ -2926,6 +2927,7 @@ declare global {
|
|
2926
2927
|
summary: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
|
2927
2928
|
sup: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
|
2928
2929
|
table: React.DetailedHTMLProps<React.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>;
|
2930
|
+
template: React.DetailedHTMLProps<React.HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>;
|
2929
2931
|
tbody: React.DetailedHTMLProps<React.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>;
|
2930
2932
|
td: React.DetailedHTMLProps<React.TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>;
|
2931
2933
|
textarea: React.DetailedHTMLProps<React.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>;
|
react/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/react",
|
3
|
-
"version": "16.8.
|
3
|
+
"version": "16.8.19",
|
4
4
|
"description": "TypeScript definitions for React",
|
5
5
|
"license": "MIT",
|
6
6
|
"contributors": [
|
@@ -124,6 +124,6 @@
|
|
124
124
|
"@types/prop-types": "*",
|
125
125
|
"csstype": "^2.2.0"
|
126
126
|
},
|
127
|
-
"typesPublisherContentHash": "
|
127
|
+
"typesPublisherContentHash": "dc10bea525ad5d627edc0e123fb68bc0863eee835ed1e021d68883b5c08e47cd",
|
128
128
|
"typeScriptVersion": "2.8"
|
129
129
|
}
|