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

rsuite-table

Package Overview
Dependencies
Maintainers
1
Versions
223
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rsuite-table - npm Package Compare versions

Comparing version 3.8.2 to 3.8.3

4

CHANGELOG.md

@@ -0,1 +1,5 @@

# 3.8.3
- `<Table>` The "empty" status is not displayed by default when loading
# 3.8.2

@@ -2,0 +6,0 @@

9

lib/Table.js

@@ -1034,9 +1034,10 @@ 'use strict';

value: function renderInfo() {
if (this._visibleRows.length) {
return null;
}
var _props10 = this.props,
locale = _props10.locale,
renderEmpty = _props10.renderEmpty;
renderEmpty = _props10.renderEmpty,
loading = _props10.loading;
if (this._visibleRows.length || loading) {
return null;
}
var emptyMessage = React.createElement(

@@ -1043,0 +1044,0 @@ 'div',

{
"name": "rsuite-table",
"version": "3.8.2",
"version": "3.8.3",
"description": "A React table component",

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

@@ -1351,6 +1351,6 @@ // @flow

renderInfo() {
if (this._visibleRows.length) {
const { locale, renderEmpty, loading } = this.props;
if (this._visibleRows.length || loading) {
return null;
}
const { locale, renderEmpty } = this.props;
const emptyMessage = <div className={this.addPrefix('body-info')}>{locale.emptyMessage}</div>;

@@ -1357,0 +1357,0 @@

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