Skip to content

Commit

Permalink
Build fix
Browse files Browse the repository at this point in the history
Signed-off-by: Daria Terekhova <daria.terekhova@actionengine.com>
  • Loading branch information
dariaterekhova-actionengine committed Aug 30, 2022
1 parent 5347c17 commit edd8d2a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
3 changes: 1 addition & 2 deletions src/processors/src/data-processor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,8 @@ import {
getFieldsFromData,
toArray
} from '@kepler.gl/utils';
import {KeplerGlSchema, ParsedDataset, SavedMap} from 'schemas';
import {KeplerGlSchema, ParsedDataset, SavedMap, LoadedMap} from '@kepler.gl/schemas';
import {Feature} from '@nebula.gl/edit-modes';
import {LoadedMap} from 'schemas/schema-manager';

// if any of these value occurs in csv, parse it to null;
// const CSV_NULLS = ['', 'null', 'NULL', 'Null', 'NaN', '/N'];
Expand Down
8 changes: 7 additions & 1 deletion src/reducers/vis-state-merger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,13 @@ import {isObject, arrayInsert, getInitialMapLayersForSplitMap} from '@kepler.gl/

import {LayerColumns, LayerColumn, Layer} from '@kepler.gl/layers';
import {LAYER_BLENDINGS} from '@kepler.gl/constants';
import {CURRENT_VERSION, Merger, VisState, VisStateMergers, visStateSchema} from '@kepler.gl/schemas';
import {
CURRENT_VERSION,
Merger,
VisState,
VisStateMergers,
visStateSchema
} from '@kepler.gl/schemas';

import {ParsedConfig} from 'schemas';
import {ParsedLayer, SavedInteractionConfig, TooltipInfo} from '@kepler.gl/types';
Expand Down
3 changes: 1 addition & 2 deletions src/schemas/src/dataset-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@
import pick from 'lodash.pick';
import {console as globalConsole} from 'global/window';

import {ProtoDataset} from '@kepler.gl/types';
import {ProtoDataset, RGBColor} from '@kepler.gl/types';
import {KeplerTable} from '@kepler.gl/table';
import {RGBColor} from 'types';
import {VERSIONS} from './versions';
import Schema from './schema';
import {getFieldsFromData, getSampleForTypeAnalyze} from '@kepler.gl/utils';
Expand Down
3 changes: 2 additions & 1 deletion src/schemas/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ export {
export type {
ParsedConfig,
SavedConfigV1,
SavedMap
SavedMap,
LoadedMap
} from './schema-manager';
export {CURRENT_VERSION, VERSIONS} from './versions';
export {
Expand Down

0 comments on commit edd8d2a

Please sign in to comment.