Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

Latest commit

 

History

History
106 lines (82 loc) · 3.82 KB

CHANGELOG.md

File metadata and controls

106 lines (82 loc) · 3.82 KB

Change Log for dash-html-components

All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning.

Unreleased

Changed

  • Included 0.13.4 and 0.13.5 in v1

[1.0.0a1] - 2018-12-17

Changed

  • Initial Dash 1.0 alpha release #5

[0.13.5] - 2019-01-11

Changed

  • Added .idea, tests, dist, .circleci to npmignore.
  • Added repository url and long_description to setup.py

Removed

  • Removed click events - these have been obsolete since 0.7.0 #89

[0.13.4] - 2018-12-17

Fixed

  • Fix build from wrong dash version.

[0.13.3] - 2018-12-17

Fixed

  • n_clicks/n_clicks_timestamp PropType changed from invalid integer to number.
  • omit n_clicks/n_clicks_timestamp from wrapped element props.

[0.13.2] - 2018-09-21

Fixed

  • Fixes Python3.7 incompatibility with 0.13.0 and 0.13.1.

Changed

  • Regenerated classes with Python3.7 to remove async keyword.

[0.13.1] - 2018-09-20

Fixed

  • Renamed __init__.py external_path to dash_html_components.min.js

[0.13.0] - 2018-09-20

Added

  • Unminified dev bundle support. #64

Unreleased

[0.12.0] - 2018-06-01

Changed

  • dash_html_components/__init__.py now imports from python class files rather than generating classes at runtime, adding support for IDE auto complete etc.

[0.11.0] - 2018-06-01

Added

  • A n_clicks_timestamp property was added to all of the components. This property represents the date that the element was clicked on and can be used to determine which element was clicked on in callbacks with multiple elements. This is considered a stop-gap solution: ultimately we'll want a solution that works for all properties across all components, not just the n_clicks property. #45

[0.10.1] - 2018-04-29

Added

  • aria-* and data-* attributes are now supported in all dash html components #40 These new keywords can be added using a dictionary expansion, e.g.
    html.Div(id="my-div", **{"data-toggle": "toggled", "aria-toggled": "true"})
    
  • The role attribute was added to all components
  • The autoComplete property was added to textarea

[0.10.0] - 2018-04-03

Added

  • Previously, if a user named their app file dash.py, an unhelpful error message would be raised. Now, import dash_html_components will check if the user has a file named dash.py and warn the users appropriately. #39

[0.9.0] - 2018-02-11

Changed

  • Moved PropTypes import from using react to using prop-types package to support using React 16+ in dash-renderer

Added

  • Added Picture and Base components
  • Added muted property to Audio component

[0.8.0] - 2017-09-29

Added

[0.7.0] - 2017-07-18

Added

  • A n_clicks property has been added to every component that gets incremented automatically when the element has been clicked on

0.2.3 - 2016-07-20

Fixed

  • style propType is now correctly set to object, not string

0.2.2 - 2016-07-17

Fixed

  • Issue with component metadata path in pypi package

0.2.0 - 2016-07-07

Added

  • Fix issues with attribute casing

0.1.0 - 2016-06-28

  • Initial release