Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

material-table

Package Overview
Dependencies
Maintainers
1
Versions
194
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

material-table - npm Package Compare versions

Comparing version 0.6.0 to 0.6.1

12

dist/material-table.js

@@ -231,3 +231,5 @@ 'use strict';

})
) : props.actions && props.actions.length > 0 && React.createElement(
) : props.actions && props.actions.filter(function (a) {
return !a.isFreeAction;
}).length > 0 && React.createElement(
_core.TableCell,

@@ -289,3 +291,5 @@ null,

}),
emptyCell: props.options.selection || props.actions && props.actions.length > 0,
emptyCell: props.options.selection || props.actions && props.actions.filter(function (a) {
return !a.isFreeAction;
}).length > 0,
onFilterChanged: function onFilterChanged(columnId, value) {

@@ -334,3 +338,5 @@ var columns = _this4.state.columns;

})
) : props.actions && props.actions.length > 0 && React.createElement(
) : props.actions && props.actions.filter(function (a) {
return !a.isFreeAction;
}).length > 0 && React.createElement(
_core.TableCell,

@@ -337,0 +343,0 @@ { style: { paddingTop: 0, paddingBottom: 0 } },

{
"name": "material-table",
"version": "0.6.0",
"version": "0.6.1",
"description": "Datatable for React based on https://material-ui.com/api/table/ with additional features",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc