mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-12 16:52:50 +00:00
41 lines
1.2 KiB
JavaScript
41 lines
1.2 KiB
JavaScript
export * from './actions/index';
|
|
export * from './behavior/index';
|
|
export * from './core/index';
|
|
export * from './geo/index';
|
|
export * from './modes/index';
|
|
export * from './operations/index';
|
|
export * from './osm/index';
|
|
export * from './presets/index';
|
|
export * from './renderer/index';
|
|
export * from './services/index';
|
|
export * from './svg/index';
|
|
export * from './ui/fields/index';
|
|
export * from './ui/intro/index';
|
|
export * from './ui/panels/index';
|
|
export * from './ui/panes/index';
|
|
export * from './ui/sections/index';
|
|
export * from './ui/settings/index';
|
|
export * from './ui/index';
|
|
export * from './util/index';
|
|
export * from './validations/index';
|
|
|
|
// When `debug = true`, we use `Object.freeze` on immutables in iD.
|
|
// This is only done in testing because of the performance penalty.
|
|
export let debug = false;
|
|
|
|
/** @param {boolean} newValue */
|
|
export const setDebug = (newValue) => { debug = newValue; };
|
|
|
|
// Reexport just what our tests use, see #4379
|
|
import * as D3 from 'd3';
|
|
export let d3 = {
|
|
dispatch: D3.dispatch,
|
|
geoMercator: D3.geoMercator,
|
|
geoProjection: D3.geoProjection,
|
|
polygonArea: D3.polygonArea,
|
|
polygonCentroid: D3.polygonCentroid,
|
|
select: D3.select,
|
|
selectAll: D3.selectAll,
|
|
timerFlush: D3.timerFlush
|
|
};
|