Compare commits

..
3 Commits
Author SHA1 Message Date
tannerlinsley 872304da17 v6.10.2 2019-09-06 10:59:48 -06:00
Dan OttandTanner Linsley 5875f80089 use getPrototypeOf instead of .prototype (#1503) 2019-09-06 10:58:41 -06:00
tannerlinsley d05e54dee8 v6.10.1 2019-09-06 08:22:14 -06:00
4 changed files with 8 additions and 3 deletions
+5
View File
@@ -1,3 +1,8 @@
## 6.10.1
- Fixed issues with `normalizeComponent` function
## 6.10.0
- Rebased volatile commits out of 6.9.0
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "react-table",
"version": "6.10.1",
"version": "6.10.2",
"description": "A fast, lightweight, opinionated table and datagrid built on React",
"license": "MIT",
"homepage": "https://github.com/react-tools/react-table#readme",
+1 -1
View File
@@ -218,7 +218,7 @@ function normalizeComponent (Comp, params = {}, fallback = Comp) {
function isClassComponent (component) {
return !!((
typeof component === 'function' &&
!!component.prototype.isReactComponent
!!Object.getPrototypeOf(component).isReactComponent
))
}
+1 -1
View File
@@ -3337,7 +3337,7 @@ prop-types@^15.5.8:
fbjs "^0.8.9"
loose-envify "^1.3.1"
prop-types@^15.6.0:
prop-types@^15.6.0, prop-types@^15.7.2:
version "15.7.2"
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==