|
@@ -5,19 +5,19 @@
|
|
* @author Alexander Rose <alexander.rose@weirdbyte.de>
|
|
* @author Alexander Rose <alexander.rose@weirdbyte.de>
|
|
*/
|
|
*/
|
|
|
|
|
|
-import { Vec2, Vec3 } from '../../../mol-math/linear-algebra';
|
|
|
|
-import { Color } from '../../../mol-util/color';
|
|
|
|
-import { ColorListName, getColorListFromName } from '../../../mol-util/color/lists';
|
|
|
|
-import { memoize1 } from '../../../mol-util/memoize';
|
|
|
|
-import { ParamDefinition as PD } from '../../../mol-util/param-definition';
|
|
|
|
-import { camelCaseToWords } from '../../../mol-util/string';
|
|
|
|
|
|
+import { Vec2, Vec3 } from '../../mol-math/linear-algebra';
|
|
|
|
+import { Color } from '../../mol-util/color';
|
|
|
|
+import { ColorListName, getColorListFromName } from '../../mol-util/color/lists';
|
|
|
|
+import { memoize1 } from '../../mol-util/memoize';
|
|
|
|
+import { ParamDefinition as PD } from '../../mol-util/param-definition';
|
|
|
|
+import { camelCaseToWords } from '../../mol-util/string';
|
|
import * as React from 'react';
|
|
import * as React from 'react';
|
|
import LineGraphComponent from './line-graph/line-graph-component';
|
|
import LineGraphComponent from './line-graph/line-graph-component';
|
|
import { Slider, Slider2 } from './slider';
|
|
import { Slider, Slider2 } from './slider';
|
|
import { NumericInput, IconButton, ControlGroup } from './common';
|
|
import { NumericInput, IconButton, ControlGroup } from './common';
|
|
import { _Props, _State } from '../base';
|
|
import { _Props, _State } from '../base';
|
|
import { legendFor } from './legend';
|
|
import { legendFor } from './legend';
|
|
-import { Legend as LegendData } from '../../../mol-util/legend';
|
|
|
|
|
|
+import { Legend as LegendData } from '../../mol-util/legend';
|
|
import { CombinedColorControl, ColorValueOption, ColorOptions } from './color';
|
|
import { CombinedColorControl, ColorValueOption, ColorOptions } from './color';
|
|
|
|
|
|
export interface ParameterControlsProps<P extends PD.Params = PD.Params> {
|
|
export interface ParameterControlsProps<P extends PD.Params = PD.Params> {
|