All Versions
128
Latest Version
Avg Release Cycle
35 days
Latest Release
651 days ago

Changelog History
Page 13

  • v0.6.2 Changes

    June 14, 2015

    ๐Ÿ›  Fix ignored events in MapComponent (#41).

  • v0.6.1 Changes

    May 22, 2015

    ๐Ÿ›  Fix PopupContainer export.

  • v0.6.0 Changes

    May 18, 2015
    • โž• Added style property on the Map component.
    • โšก๏ธ Replaced the <noscript> element in PopupContainer by a <div> to be properly updated.
  • v0.5.0 Changes

    May 02, 2015

    Set icon, zIndexOffset and opacity properties as dynamic on Marker.

  • v0.4.1 Changes

    April 06, 2015
    • โœ‚ Removed getLeafletElement() deprecation.
    • โšก๏ธ Updated Babel to v5.
  • v0.4.0 Changes

    March 28, 2015

    ๐Ÿš€ Released v0.4.

  • v0.4.0-rc.1 Changes

    March 11, 2015

    React v0.13.0.

  • v0.4.0-beta.1 Changes

    March 08, 2015
    • โšก๏ธ Updated React dependency to v0.13.0-rc2:
      • Components are defined as ES6 classes.
      • Mixins are replaced by the base components MapComponent, MapLayer, BaseTileLayer and PopupContainer. All components extend from these.
      • The new React.cloneElement() API is used instead of the deprecated React.addons.cloneWithProps() to pass the map property to the components.
      • The map property has been removed from the components propTypes definition as it is dynamically injected to its children by the Map component, React would now warn it is not set. It is still required by components to have access to the Leaflet object.
    • Events can now be set as on{Event} rather than onLeaflet{Event}, ex onClick instead of onLeafletClick, as all events are proxied to Leaflet.
    • ๐Ÿ—„ Deprecated getLeafletElement() method, simply use the leafletElement property instead to access the Leaflet object created for a component.