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

belle

Package Overview
Dependencies
Maintainers
2
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

belle - npm Package Versions

13
7

2.0.3

Diff

Changelog

Source

2.0.3 - 2015-12-07

Fixed

  • [Select] Ensure the exact same markup is generated every time the element is rendered #155
nikgraf
published 2.0.2 •

Changelog

Source

2.0.2 - 2015-12-06

Fixed

  • [Button, ComboBox, DatePicker, Rating, Select, TextInput, Toggle] Fix styling issues when the component has a complex React id generated through API's like createFragment c73d06d
nikgraf
published 2.0.0 •

Changelog

Source

2.0.0 - 2015-11-28

Changed

  • Require React 0.14.0 #189
  • [Button, Card, Choice, ComboBox, Option, Placeholder, Rating, Select, Separator, TextInput, Toggle] Removed the 'Belle ' prefix from displayName
  • [Button] Prevent sticky hover for touch devices by leveraging mouseEnter & mouseLeave instead of the :hover pseudo class 8f590e2
  • [Toggle] Hide Webkit tap highlight on touch 5faf2c5

Added

  • [DatePicker] Add DatePicker component
<DatePicker />
  • [Spinner] Add Spinner component
<Spinner />

Fixed

  • [Rating] Fix styling the wrapper 82087cb
  • [Select] Fix rendering the selected option with a falsy value e.g. 0 f0e5611
  • [Select] Fix hovering and selecting Options with values of type Number 09c52e3
<Select>
  <Option value={ 0 }>Zero</Option>
  <Option value={ 1 }>One</Option>
</Select>
  • [ComboBox] Fix hovering and selecting Options with values of type Number 64a2797
  • [TextInput] fix calculating the height in case a defaultValue was provided and props were updated f1a9bc2

Removed

  • [Rating] Removed the resetValue function. Reseting should accomplished by making the Rating a controlled component and passing in the value as undefined. See an example below:
export default class extends Component {

  state = {
    ratingValue: 3
  }

  reset() {
    this.setState({ ratingValue: undefined });
  }

  render() {
    return (
      <div>
        <button onClick={ ::this.reset() }></button>
        <Rating value={ this.state.ratingValue } />
      </div>
    );
  }
}
nikgraf
published 2.0.0-rc4 •

nikgraf
published 2.0.0-rc3 •

nikgraf
published 2.0.0-rc2 •

nikgraf
published 2.0.0-rc1 •

nikgraf
published 2.0.0-beta1 •

nikgraf
published 1.2.2 •

Changelog

Source

1.2.2 - 2015-09-04

Fixed

  • Support for React 0.14.0-beta3 #178
  • [Toggle] Fix missing base-styles for Toggle #179
nikgraf
published 1.2.1 •

Changelog

Source

1.2.1 - 2015-08-26

Fixed

  • [Combobox, Select] Improve children manipulation to make Belle work with Radium #170
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