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

1
7

1.2.0

Diff

Changelog

Source

1.2.0 - 2015-08-19

Added

  • [TextInput] Added minRows and maxRows properties #146
<TextInput minRows={ 5 } placeholder="Please fill in description …">

Fixed

  • [Select] Avoid printing a PropTypes warning when a Select has less than 2 children. #147
  • [Select] Allowing to a mix single components together with arrays of components as children. #161
<Select>
  <Placeholder>Choose your City</Placeholder>
  {
    cities.map((city, index) => {
      return (
        <Option key={ index } value={ city.id } >
          { city.name }
        </Option>
      );
    });
  }
</Select>
  • [ComboBox] Fix detecting isMatchingOption after pressing backspace. #162
nikgraf
published 1.1.1 •

Changelog

Source

1.1.1 - 2015-07-28

Fixed

  • Fix incompatibility with Windows. From now on it doesn't break anymore when doing npm install belle. #20
nikgraf
published 1.1.0 •

Changelog

Source

1.1.0 - 2015-07-28

Added

  • [ComboBox] The onUpdate callback now includes 3 more properties in the argument. #146
onUpdate({
  value: value string,
  identifier: identifier of the type you passed,
  isMatchingOption: true/false,
  isOptionSelection: true/false
})

Changed

  • Instead of using a copy of React 0.13.3 to create Markup for custom styles now the locally installed React version is used. #150

Fixed

  • Fix server-side rendering of Belle components by preventing to inject styles into the DOM without being available. #150
  • [TextInput] When rendered on the server the TextInput will have a height of 0px instead of throwing an exception. #157
nikgraf
published 1.0.2 •

Changelog

Source

1.0.2 - 2015-07-23

Fixed

  • [ComboBox] Filtered options are now updated when the ComboBox receives new props. #141
nikgraf
published 1.0.1 •

Changelog

Source

1.0.1 - 2015-07-20

Fixed

  • [ComboBox] Avoid exception when no Options children are supplied to ComboBox. #136
nikgraf
published 1.0.0 •

Changelog

Source

1.0.0 - 2015-07-15

Released the first version of Belle

nikgraf
published 0.0.38 •

nikgraf
published 0.0.37 •

nikgraf
published 0.0.36 •

nikgraf
published 0.0.35 •

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