diff --git a/.circleci/config.yml b/.circleci/config.yml index 021a19e08..d8e45cb09 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -26,15 +26,14 @@ jobs: - run: name: Install dependencies (dash) command: | - git clone git@github.com:plotly/dash.git + git clone -b dash-component-system git@github.com:plotly/dash.git git clone git@github.com:plotly/dash-renderer.git - git clone git@github.com:plotly/dash-html-components.git - git clone git@github.com:plotly/dash-table.git + git clone -b dash-component-system git@github.com:plotly/dash-html-components.git . venv/bin/activate pip install -e ./dash --quiet cd dash-renderer && npm install --ignore-scripts && npm run build && pip install -e . && cd .. - cd dash-core-components && npm install --ignore-scripts && npm run build && pip install -e . && cd .. cd dash-html-components && npm install --ignore-scripts && npm run build && pip install -e . && cd .. + - run: name: Build command: | diff --git a/dash_core_components/Checklist.py b/dash_core_components/Checklist.py deleted file mode 100644 index 407566a71..000000000 --- a/dash_core_components/Checklist.py +++ /dev/null @@ -1,48 +0,0 @@ -# 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