mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-06 19:31:41 +00:00
Consolidate localization behavior and init to a coreLocalizer function and singleton Explicitly support `en-US` locale Rename coreData to coreFileFetcher and export a singleton rather than using a property of coreContext Add `apiConnections` property of coreContext to simplify adding a source switcher Replace some init functions with re-callable, promise-supporting `ensureLoaded` functions Make coreContext itself load the UI if a container has been specified at init time Fix code tests
10 lines
411 B
JavaScript
10 lines
411 B
JavaScript
export { coreContext } from './context';
|
|
export { coreFileFetcher, fileFetcher } from './file_fetcher';
|
|
export { coreDifference } from './difference';
|
|
export { coreGraph } from './graph';
|
|
export { coreHistory } from './history';
|
|
export { coreLocalizer, t, localizer } from './localizer';
|
|
export { coreTree } from './tree';
|
|
export { coreUploader } from './uploader';
|
|
export { coreValidator } from './validator';
|