Sha256: 50b9e4c9e6f16b33e237ef3cc1224222c3095d67b44b7b5a7e9ed87e6448729c

Contents?: true

Size: 534 Bytes

Versions: 35

Compression:

Stored size: 534 Bytes

Contents

const Table = ({ children, scrollable, sticky }) => {

  const className = classNames({
    'table-wrapper': true,
    'table-wrapper--scrollable': scrollable,
    'table-wrapper--sticky': sticky
  });

  return (
    <div className={className}>
      <table className="expanded">
        {children}
      </table>
    </div>
  );
};

Table.PropTypes = {
  children: React.PropTypes.node.isRequired,
  scrollable: React.PropTypes.bool,
  sticky: React.PropTypes.bool
};

Table.defaultProps = {
  scrollable: false,
  sticky: false
};

Version data entries

35 entries across 35 versions & 1 rubygems

Version Path
disco_app-0.16.1.pre.sidekiq.pre.6.pre.release app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx
disco_app-0.11.0 app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx
disco_app-0.11.1 app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx
disco_app-0.12.0 app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx
disco_app-0.12.1 app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx
disco_app-0.12.5 app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx
disco_app-0.12.6 app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx
disco_app-0.12.7 app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx
disco_app-0.13.0 app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx
disco_app-0.13.1 app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx
disco_app-0.13.2 app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx
disco_app-0.13.3 app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx
disco_app-0.13.4 app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx
disco_app-0.13.5 app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx
disco_app-0.13.6 app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx
disco_app-0.13.7 app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx
disco_app-0.13.8 app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx
disco_app-0.14.1 app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx
disco_app-0.14.2 app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx
disco_app-0.15.0 app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx