Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [0.38.0] - 2018-11-07
### Fixed
- Changed the way the default CSS files for some components are loaded to being loaded with webpack instead of as dependencies.

## [0.37.2] - 2018-11-07
### Changed
- Updated `react-select` to version `2.1.0`
Expand Down Expand Up @@ -399,6 +403,7 @@ As part of the plotly.js upgrade:
- Broken sourcemaps for debugging.
### Added
- Testing configuration for CHROMEPATH and SERVER_PROCESSES

## [0.22.1] - 2018-04-09
### Fixed
- Various bugs with the `ohlc` and `candlestick` chart type in the `dcc.Graph`
Expand Down
23 changes: 0 additions & 23 deletions dash_core_components/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,28 +50,5 @@
}
]


_css_dist = [
{
'relative_package_path': [
'rc-slider@6.1.2.css',
'react-select@1.0.0-rc.3.min.css',
'react-virtualized@9.9.0.css',
'react-virtualized-select@3.1.0.css',
'react-dates@12.3.0.css'
],
'external_url': [
'https://unpkg.com/react-select@1.0.0-rc.3/dist/react-select.min.css',
'https://unpkg.com/react-virtualized@9.9.0/styles.css',
'https://unpkg.com/react-virtualized-select@3.1.0/styles.css',
'https://unpkg.com/rc-slider@6.1.2/assets/index.css',
'https://unpkg.com/dash-core-components@{}/dash_core_components/react-dates@12.3.0.css'.format(__version__)
],
'namespace': 'dash_core_components'
}
]


for _component in __all__:
setattr(locals()[_component], '_js_dist', _js_dist)
setattr(locals()[_component], '_css_dist', _css_dist)
151 changes: 147 additions & 4 deletions dash_core_components/dash_core_components.dev.js

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions dash_core_components/dash_core_components.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_core_components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-core-components",
"version": "0.37.2",
"version": "0.38.0",
"description": "Core component suite for Dash",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion dash_core_components/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.37.2'
__version__ = '0.38.0'
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-core-components",
"version": "0.37.2",
"version": "0.38.0",
"description": "Core component suite for Dash",
"repository": {
"type": "git",
Expand Down
1 change: 1 addition & 0 deletions src/components/DatePickerRange.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import moment from 'moment';
import PropTypes from 'prop-types';
import R from 'ramda';
import React, {Component} from 'react';
import './css/react-dates@12.3.0.css';

/**
* DatePickerRange is a tailor made component designed for selecting
Expand Down
2 changes: 2 additions & 0 deletions src/components/Dropdown.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import R, {omit} from 'ramda';
import React, {Component} from 'react';
import ReactDropdown from 'react-virtualized-select';
import createFilterOptions from 'react-select-fast-filter-options';
import './css/react-virtualized-select@3.1.0.css';
import './css/react-virtualized@9.9.0.css';

// Custom tokenizer, see https://github.com/bvaughn/js-search/issues/43
// Split on spaces
Expand Down
1 change: 1 addition & 0 deletions src/components/RadioItems.react.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import PropTypes from 'prop-types';
import React, {Component} from 'react';
import './css/react-select@1.0.0-rc.3.min.css';

/**
* RadioItems is a component that encapsulates several radio item inputs.
Expand Down
1 change: 1 addition & 0 deletions src/components/Slider.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React, {Component} from 'react';
import ReactSlider from 'rc-slider';
import PropTypes from 'prop-types';
import {omit} from 'ramda';
import './css/rc-slider@6.1.2.css';

/**
* A slider component with a single handle.
Expand Down