@types/react 15.6.27 → 15.6.28

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/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/v15
9
9
 
10
10
  Additional Details
11
- * Last updated: Wed, 31 Jul 2019 17:06:41 GMT
11
+ * Last updated: Wed, 16 Oct 2019 17:28:14 GMT
12
12
  * Dependencies: none
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>, and Stéphane Goetz <https://github.com/onigoetz>.
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>, Stéphane Goetz <https://github.com/onigoetz>, and Kyle Scully <https://github.com/zieka>.
react v15/index.d.ts CHANGED
@@ -10,6 +10,7 @@
10
10
  // Eric Anderson <https://github.com/ericanderson>
11
11
  // Dovydas Navickas <https://github.com/DovydasNavickas>
12
12
  // Stéphane Goetz <https://github.com/onigoetz>
13
+ // Kyle Scully <https://github.com/zieka>
13
14
  // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
14
15
  // TypeScript Version: 2.8
15
16
 
@@ -2602,8 +2603,6 @@ declare namespace React {
2602
2603
  title?: string;
2603
2604
 
2604
2605
  // Unknown
2605
- inputMode?: string;
2606
- is?: string;
2607
2606
  radioGroup?: string; // <command>, <menuitem>
2608
2607
 
2609
2608
  // WAI-ARIA
@@ -2632,6 +2631,18 @@ declare namespace React {
2632
2631
  results?: number;
2633
2632
  security?: string;
2634
2633
  unselectable?: boolean;
2634
+
2635
+ // Living Standard
2636
+ /**
2637
+ * Hints at the type of data that might be entered by the user while editing the element or its contents
2638
+ * @see https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute
2639
+ */
2640
+ inputMode?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
2641
+ /**
2642
+ * Specify that a standard HTML element should behave like a defined custom built-in element
2643
+ * @see https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is
2644
+ */
2645
+ is?: string;
2635
2646
  }
2636
2647
 
2637
2648
  interface AllHTMLAttributes<T> extends HTMLAttributes<T> {
react v15/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/react",
3
- "version": "15.6.27",
3
+ "version": "15.6.28",
4
4
  "description": "TypeScript definitions for React",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -49,6 +49,11 @@
49
49
  "name": "Stéphane Goetz",
50
50
  "url": "https://github.com/onigoetz",
51
51
  "githubUsername": "onigoetz"
52
+ },
53
+ {
54
+ "name": "Kyle Scully",
55
+ "url": "https://github.com/zieka",
56
+ "githubUsername": "zieka"
52
57
  }
53
58
  ],
54
59
  "main": "",
@@ -60,6 +65,6 @@
60
65
  },
61
66
  "scripts": {},
62
67
  "dependencies": {},
63
- "typesPublisherContentHash": "af8c49807c9cec72d165efaa862ff3d396f815551f65ddca3c0a97bd9630a045",
68
+ "typesPublisherContentHash": "0691a602e746d309649a9471d1c07913bdc1e4c49b93c7504a6b7d9643ed6074",
64
69
  "typeScriptVersion": "2.8"
65
70
  }