remove table modifications.
This commit is contained in:
parent
547ea94483
commit
74ba8b2091
|
@ -32,7 +32,6 @@ render: function() {
|
|||
|
||||
### `TableCard` props
|
||||
|
||||
* `isCompact`: Applies `is-compact` class and hides pagination.
|
||||
* `headers`: An array of column headers (see `Table` props).
|
||||
* `onQueryChange`: A function which returns a callback function to update the query string for a given `param`.
|
||||
* `onClickDownload`: A callback function which handles then "download" button press. Optional, if not used, the button won't appear.
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
* External dependencies
|
||||
*/
|
||||
import { __ } from '@wordpress/i18n';
|
||||
import classnames from 'classnames';
|
||||
import { Component } from '@wordpress/element';
|
||||
import { IconButton, ToggleControl } from '@wordpress/components';
|
||||
import { fill, find, findIndex, first, isArray, noop } from 'lodash';
|
||||
|
@ -59,26 +58,15 @@ class TableCard extends Component {
|
|||
}
|
||||
|
||||
render() {
|
||||
const {
|
||||
isCompact,
|
||||
onClickDownload,
|
||||
onQueryChange,
|
||||
query,
|
||||
rowHeader,
|
||||
summary,
|
||||
title,
|
||||
} = this.props;
|
||||
const { onClickDownload, onQueryChange, query, rowHeader, summary, title } = this.props;
|
||||
const { showCols } = this.state;
|
||||
const allHeaders = this.props.headers;
|
||||
const headers = this.filterCols( this.props.headers );
|
||||
const rows = this.filterCols( this.props.rows );
|
||||
const classNames = classnames( 'woocommerce-table', {
|
||||
'is-compact': isCompact,
|
||||
} );
|
||||
|
||||
return (
|
||||
<Card
|
||||
className={ classNames }
|
||||
className="woocommerce-table"
|
||||
title={ title }
|
||||
action={
|
||||
onClickDownload && (
|
||||
|
@ -119,7 +107,6 @@ class TableCard extends Component {
|
|||
|
||||
{ summary && <TableSummary data={ summary } /> }
|
||||
|
||||
{ ! isCompact && (
|
||||
<Pagination
|
||||
page={ parseInt( query.page ) || 1 }
|
||||
perPage={ parseInt( query.per_page ) || 25 }
|
||||
|
@ -127,7 +114,6 @@ class TableCard extends Component {
|
|||
onPageChange={ onQueryChange( 'page' ) }
|
||||
onPerPageChange={ onQueryChange( 'per_page' ) }
|
||||
/>
|
||||
) }
|
||||
</Card>
|
||||
);
|
||||
}
|
||||
|
@ -143,7 +129,6 @@ TableCard.propTypes = {
|
|||
required: PropTypes.bool,
|
||||
} )
|
||||
),
|
||||
isCompact: PropTypes.bool,
|
||||
onQueryChange: PropTypes.func,
|
||||
onClickDownload: PropTypes.func,
|
||||
query: PropTypes.object,
|
||||
|
@ -166,7 +151,6 @@ TableCard.propTypes = {
|
|||
};
|
||||
|
||||
TableCard.defaultProps = {
|
||||
isCompact: false,
|
||||
onQueryChange: noop,
|
||||
query: {},
|
||||
rowHeader: 0,
|
||||
|
|
|
@ -6,12 +6,6 @@
|
|||
padding-bottom: $gap;
|
||||
}
|
||||
|
||||
&.is-compact {
|
||||
.woocommerce-card__body {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.woocommerce-card__action,
|
||||
.woocommerce-card__menu {
|
||||
justify-self: flex-end;
|
||||
|
@ -31,14 +25,6 @@
|
|||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.is-compact & {
|
||||
margin-bottom: 0px;
|
||||
|
||||
tr:last-child {
|
||||
border-bottom-style: hidden;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.woocommerce-table__header,
|
||||
|
|
Loading…
Reference in New Issue