mirror of
https://github.com/gosticks/react-bootstrap-table2.git
synced 2026-06-28 21:20:04 +00:00
Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2cd5d65db1 | ||
|
|
ae4f503b30 | ||
|
|
0e7c145f96 | ||
|
|
3d37a31103 | ||
|
|
f4f6649b91 | ||
|
|
4daa5ef4d7 | ||
|
|
acb9c9f61e | ||
|
|
5a44384e3c | ||
|
|
ec742a43f6 | ||
|
|
be916d81a3 | ||
|
|
49d1ce8812 | ||
|
|
cf5b24e9e8 | ||
|
|
da86b4aa1a |
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "react-bootstrap-table2-editor",
|
||||
"version": "1.3.2",
|
||||
"version": "1.4.0",
|
||||
"description": "it's the editor addon for react-bootstrap-table2",
|
||||
"main": "./lib/index.js",
|
||||
"scripts": {
|
||||
|
||||
@@ -48,7 +48,11 @@ const columns = [{
|
||||
data={ products }
|
||||
columns={ columns }
|
||||
exportCSV={ {
|
||||
ignoreFooter: false
|
||||
fileName: 'custom.csv',
|
||||
separator: '|',
|
||||
ignoreHeader: true,
|
||||
noAutoBOM: false,
|
||||
blobType: 'text/csv;charset=ansi'
|
||||
} }
|
||||
>
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "react-bootstrap-table2-example",
|
||||
"version": "1.0.30",
|
||||
"version": "1.0.36",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"private": true,
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "react-bootstrap-table2-filter",
|
||||
"version": "1.1.12",
|
||||
"version": "1.3.0",
|
||||
"description": "it's a column filter addon for react-bootstrap-table2",
|
||||
"main": "./lib/index.js",
|
||||
"repository": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "react-bootstrap-table2-paginator",
|
||||
"version": "2.0.8",
|
||||
"version": "2.1.0",
|
||||
"description": "it's the pagination addon for react-bootstrap-table2",
|
||||
"main": "./lib/index.js",
|
||||
"repository": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "react-bootstrap-table2-toolkit",
|
||||
"version": "2.0.1",
|
||||
"version": "2.1.1",
|
||||
"description": "The toolkit for react-bootstrap-table2",
|
||||
"main": "./lib/index.js",
|
||||
"repository": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "react-bootstrap-table-next",
|
||||
"version": "3.1.9",
|
||||
"version": "3.3.3",
|
||||
"description": "Next generation of react-bootstrap-table",
|
||||
"main": "./lib/index.js",
|
||||
"repository": {
|
||||
@@ -36,7 +36,7 @@
|
||||
}
|
||||
],
|
||||
"dependencies": {
|
||||
"classnames": "^2.2.5",
|
||||
"classnames": "2.2.5",
|
||||
"react-transition-group": "2.5.3",
|
||||
"underscore": "1.9.1"
|
||||
},
|
||||
|
||||
@@ -48,7 +48,7 @@ const Header = (props) => {
|
||||
return (
|
||||
<HeaderCell
|
||||
index={ i }
|
||||
key={ column.dataField }
|
||||
key={ column.key ? column.key : column.dataField }
|
||||
column={ column }
|
||||
onSort={ onSort }
|
||||
sorting={ currSort }
|
||||
|
||||
Reference in New Issue
Block a user