New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-bootstrap-table-next

Package Overview
Dependencies
Maintainers
1
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-bootstrap-table-next - npm Package Compare versions

Comparing version 3.0.1 to 3.0.2

9

lib/src/contexts/index.js

@@ -83,2 +83,11 @@ 'use strict';

});
exposedAPIEmitter.on('get.filtered.rows', function (payload) {
if (_this.searchContext) {
payload.result = _this.searchContext.getSearched();
} else if (_this.filterContext) {
payload.result = _this.filterContext.getFiltered();
} else {
payload.result = _this.table.getData();
}
});
props.registerExposedAPI(exposedAPIEmitter);

@@ -85,0 +94,0 @@ }

2

lib/src/row/should-updater.js

@@ -36,3 +36,3 @@ 'use strict';

if (!(this.props.clickToEdit || this.props.dbclickToEdit)) return false;
return nextProps.editingRowIdx === nextProps.rowIndex || this.props.editingRowIdx === nextProps.rowIndex && nextProps.editingRowIdx === null;
return nextProps.editingRowIdx === nextProps.rowIndex || this.props.editingRowIdx === nextProps.rowIndex && nextProps.editingRowIdx === null || this.props.editingRowIdx === nextProps.rowIndex;
}

@@ -39,0 +39,0 @@ }, {

{
"name": "react-bootstrap-table-next",
"version": "3.0.1",
"version": "3.0.2",
"description": "Next generation of react-bootstrap-table",

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

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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