Compare commits

...
5 Commits
Author SHA1 Message Date
Tanner Linsley c99796342b 3.1.1 2016-11-02 15:07:27 -06:00
Tanner Linsley 1b4d8bd45f Fix pagination not showing with 0 pagesLength 2016-11-02 15:07:20 -06:00
Tanner Linsley e922a43741 No example/dist 2016-11-02 13:08:20 -06:00
Tanner Linsley 75317c2251 Example Update 2016-11-02 13:07:05 -06:00
Tanner Linsley e531ef1f64 Readme Updates 2016-11-02 12:12:29 -06:00
10 changed files with 12 additions and 59328 deletions
+1 -2
View File
@@ -3,5 +3,4 @@ lib/
react-table.js
react-table.css
*.log
dist/
example/dist/
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

-171
View File
File diff suppressed because one or more lines are too long
-59138
View File
File diff suppressed because one or more lines are too long
-13
View File
@@ -1,13 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>React-Table Demo</title>
<link rel="stylesheet" href="/app.css" charset="utf-8">
</head>
<body>
<div id="app"></div>
<script src="/app.js"></script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>
+3 -1
View File
@@ -12,4 +12,6 @@ Render(null, (
<Route path='server-side' component={ServerSide} />
</Route>
</Router>
))
), {
useHash: false
})
+1
View File
@@ -106,6 +106,7 @@ export default Component({
function getCode () {
return `
import ReactTable from 'react-table'
import Axios from 'axios'
export default React.creatClass({
getInitialState () {
+5 -1
View File
@@ -1,4 +1,8 @@
{
"name": "react-table",
"root": "dist"
"root": "dist",
"routes": [{
"src": "/**",
"dest": "index.html"
}]
}
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "react-table",
"version": "3.1.0",
"version": "3.1.1",
"description": "A fast, lightweight, opinionated table and datagrid built on React",
"license": "MIT",
"homepage": "https://github.com/tannerlinsley/react-table#readme",
+1 -1
View File
@@ -416,7 +416,7 @@ export default React.createClass({
})}
</TbodyComponent>
</TableComponent>
{this.props.showPagination && pagesLength > 1 && (
{this.props.showPagination && (
<Pagination
currentPage={currentPage}
pagesLength={pagesLength}