diff --git a/CHANGELOG.md b/CHANGELOG.md index 858e5590a..368dc09f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [0.27.1] +### Fixed +- `ConfirmDialogProvider` can now be used without a callback. [#241](https://github.com/plotly/dash-core-components/pull/241) +- `ConfirmDialog`, only fire `submit` when `submit` is clicked. [#242](https://github.com/plotly/dash-core-components/issues/242) fixed in [#241](https://github.com/plotly/dash-core-components/pull/241) + ## [0.27.0] ### Changed - `dash_core_components/__init__.py` now imports from python class files rather than generating classes at runtime, diff --git a/dash_core_components/Checklist.py b/dash_core_components/Checklist.py index 086911e9c..00641210c 100644 --- a/dash_core_components/Checklist.py +++ b/dash_core_components/Checklist.py @@ -1,69 +1,69 @@ -# AUTO GENERATED FILE - DO NOT EDIT - -from dash.development.base_component import Component, _explicitize_args - - -class Checklist(Component): - """A Checklist component. -Checklist is a component that encapsulates several checkboxes. -The values and labels of the checklist is specified in the `options` -property and the checked items are specified with the `values` property. -Each checkbox is rendered as an input with a surrounding label. - -Keyword arguments: -- id (string; optional) -- options (list; optional): An array of options -- values (list; optional): The currently selected value -- className (string; optional): The class of the container (div) -- style (dict; optional): The style of the container (div) -- inputStyle (dict; optional): The style of the checkbox element -- inputClassName (string; optional): The class of the checkbox element -- labelStyle (dict; optional): The style of the