New "Time Series - Table" visualization (#3543)

* [WiP] adding a new "Time Series - Table" viz

* Adding drag-n-drop to collection

* Using keys in arrays

* tests
This commit is contained in:
Maxime Beauchemin
2017-10-04 10:17:33 -07:00
committed by GitHub
parent 645de384e3
commit bb0f69d074
20 changed files with 710 additions and 90 deletions

View File

@@ -5,16 +5,11 @@ import ControlHeader from '../ControlHeader';
import { t } from '../../../locales';
const propTypes = {
name: PropTypes.string.isRequired,
label: PropTypes.string,
description: PropTypes.string,
onChange: PropTypes.func,
value: PropTypes.array,
};
const defaultProps = {
label: null,
description: null,
onChange: () => {},
value: [null, null],
};