@material-ui/core
Version:
React components that implement Google's Material Design.
82 lines (73 loc) • 2.06 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import withStyles from '../styles/withStyles';
export const styles = theme => ({
/* Styles applied to the root element. */
root: {
display: 'table',
fontFamily: theme.typography.fontFamily,
width: '100%',
borderCollapse: 'collapse',
borderSpacing: 0
}
});
class Table extends React.Component {
getChildContext() {
// eslint-disable-line class-methods-use-this
return {
table: {
padding: this.props.padding
}
};
}
render() {
const _this$props = this.props,
{
classes,
className,
component: Component,
padding
} = _this$props,
other = _objectWithoutProperties(_this$props, ["classes", "className", "component", "padding"]);
return React.createElement(Component, _extends({
className: classNames(classes.root, className)
}, other));
}
}
Table.propTypes = process.env.NODE_ENV !== "production" ? {
/**
* The content of the table, normally `TableHeader` and `TableBody`.
*/
children: PropTypes.node.isRequired,
/**
* Override or extend the styles applied to the component.
* See [CSS API](#css-api) below for more details.
*/
classes: PropTypes.object.isRequired,
/**
* @ignore
*/
className: PropTypes.string,
/**
* The component used for the root node.
* Either a string to use a DOM element or a component.
*/
component: PropTypes.oneOfType([PropTypes.string, PropTypes.func, PropTypes.object]),
/**
* Allows TableCells to inherit padding of the Table.
*/
padding: PropTypes.oneOf(['default', 'checkbox', 'dense', 'none'])
} : {};
Table.defaultProps = {
component: 'table',
padding: 'default'
};
Table.childContextTypes = {
table: PropTypes.object
};
export default withStyles(styles, {
name: 'MuiTable'
})(Table);