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

hui-ui

Package Overview
Dependencies
Maintainers
2
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hui-ui - npm Package Compare versions

Comparing version 0.0.10 to 0.0.11

14

lib/chart/chart.jsx

@@ -83,3 +83,3 @@ import React from 'react';

activeIndex: 0,
isFold: false,
isFold: !!this.props.isFold,
isHide: false

@@ -95,2 +95,10 @@ }

componentWillReceiveProps(nextProps) {
if (this.props.isFold !== nextProps.isFold) {
this.setState({
isFold: nextProps.isFold
});
}
}
showChart() {

@@ -151,5 +159,7 @@ let data = this.props.dataSource[this.state.activeIndex];

handleToggleFold() {
var isFold = !this.state.isFold;
this.setState({
isFold: !this.state.isFold
isFold: isFold
});
this.props.onFoldChange && this.props.onFoldChange(isFold);
}

@@ -156,0 +166,0 @@

2

package.json
{
"name": "hui-ui",
"version": "0.0.10",
"version": "0.0.11",
"description": "hui-ui",

@@ -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