[Maps] Move vector-style component to vector folder (#51779) (#51986)

This commit is contained in:
Thomas Neirynck 2019-12-02 13:06:31 -05:00 committed by GitHub
parent 5a13a20076
commit ffd5712dbe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 5 additions and 5 deletions

View file

@ -1,3 +1,3 @@
@import './components/color_gradient';
@import './components/static_dynamic_style_row';
@import './vector/components/static_dynamic_style_row';
@import './vector/components/color/color_stops';

View file

@ -6,7 +6,7 @@
import React from 'react';
import { StaticDynamicStyleRow } from '../../../components/static_dynamic_style_row';
import { StaticDynamicStyleRow } from '../static_dynamic_style_row';
import { DynamicColorSelection } from './dynamic_color_selection';
import { StaticColorSelection } from './static_color_selection';
import { getVectorStyleLabel } from '../get_vector_style_label';

View file

@ -6,7 +6,7 @@
import React from 'react';
import { StaticDynamicStyleRow } from '../../../components/static_dynamic_style_row';
import { StaticDynamicStyleRow } from '../static_dynamic_style_row';
import { DynamicOrientationSelection } from './dynamic_orientation_selection';
import { StaticOrientationSelection } from './static_orientation_selection';
import { i18n } from '@kbn/i18n';

View file

@ -6,7 +6,7 @@
import React from 'react';
import { StaticDynamicStyleRow } from '../../../components/static_dynamic_style_row';
import { StaticDynamicStyleRow } from '../static_dynamic_style_row';
import { DynamicSizeSelection } from './dynamic_size_selection';
import { StaticSizeSelection } from './static_size_selection';
import { getVectorStyleLabel } from '../get_vector_style_label';

View file

@ -5,7 +5,7 @@
*/
import React from 'react';
import { VectorStyle } from '../vector/vector_style';
import { VectorStyle } from '../vector_style';
import _ from 'lodash';
import { i18n } from '@kbn/i18n';