@overmap-ai/core 1.0.60-geo-images.7 → 1.0.60-geo-images.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  import { Reducer } from "@reduxjs/toolkit";
2
- import { ProjectFile, OvermapRootState, OvermapSelector, MultiPointGeometry } from "../../typings";
2
+ import { MultiPointGeometry, OvermapRootState, OvermapSelector, OvermapSelectorWithArgs, ProjectFile } from "../../typings";
3
3
  export interface ProjectFileState {
4
4
  projectFiles: Record<string, ProjectFile>;
5
5
  activeProjectFileId: string | null;
@@ -44,6 +44,7 @@ export declare const addOrReplaceProjectFiles: import("@reduxjs/toolkit").Action
44
44
  fileId: string;
45
45
  visible: boolean;
46
46
  }, "projectFiles/setProjectFileVisible">, setIsImportingProjectFile: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, "projectFiles/setIsImportingProjectFile">, setActiveProjectFileId: import("@reduxjs/toolkit").ActionCreatorWithPayload<string | null, "projectFiles/setActiveProjectFileId">, saveActiveProjectFileBounds: import("@reduxjs/toolkit").ActionCreatorWithPayload<MultiPointGeometry, "projectFiles/saveActiveProjectFileBounds">, removeProjectFile: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "projectFiles/removeProjectFile">, removeProjectFilesOfProject: import("@reduxjs/toolkit").ActionCreatorWithPayload<number, "projectFiles/removeProjectFilesOfProject">, resetProjectFileObjectUrls: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"projectFiles/resetProjectFileObjectUrls">;
47
+ export declare const selectProjectFileMapping: (state: OvermapRootState) => Record<string, ProjectFile>;
47
48
  export declare const selectEnabledProjectFiles: (state: OvermapRootState) => Record<string, boolean | undefined>;
48
49
  export declare const selectProjectFileVisibility: OvermapSelector<Record<string, boolean>>;
49
50
  export declare const selectEnabledProjectFileMapping: (state: OvermapRootState) => Record<string, ProjectFile>;
@@ -54,4 +55,5 @@ export declare const selectProjectFiles: ((state: OvermapRootState) => ProjectFi
54
55
  };
55
56
  export declare const selectActiveProjectFileId: OvermapSelector<string | null>;
56
57
  export declare const selectIsImportingProjectFile: OvermapSelector<boolean>;
58
+ export declare const selectProjectFileById: OvermapSelectorWithArgs<string, ProjectFile>;
57
59
  export declare const projectFileReducer: Reducer<ProjectFileState>;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Core functionality for Overmap",
4
4
  "author": "Wôrdn Inc.",
5
5
  "license": "UNLICENSED",
6
- "version": "1.0.60-geo-images.7",
6
+ "version": "1.0.60-geo-images.8",
7
7
  "type": "module",
8
8
  "main": "dist/overmap-core.umd.cjs",
9
9
  "module": "dist/overmap-core.js",