@overmap-ai/core 1.0.65-asset-models-improvements.6 → 1.0.65-asset-models-improvements.7

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,9 +1,7 @@
1
1
  export * from "./coordinates";
2
- export * from "./css";
3
2
  export * from "./file";
4
3
  export * from "./logging";
5
4
  export * from "./offline";
6
- export * from "./search";
7
5
  export * from "./string";
8
6
  export * from "./utils";
9
7
  export * from "./optimization";
@@ -1,11 +1,8 @@
1
1
  export declare function shallowEqual(objA: Record<string, unknown>, objB: Record<string, unknown>): boolean;
2
2
  export declare function memoize<T extends (...args: never[]) => unknown>(func: T): T;
3
- export type EqualityChecker<TArgs> = (current: TArgs, previous: TArgs) => boolean;
4
- export declare function useMemoCompare<TValue>(next: TValue | undefined, compare: (prev: TValue | undefined, next: TValue | undefined) => boolean): TValue | undefined;
5
3
  /**
6
4
  * Performs an equality check by contents in order.
7
5
  * Reference types like objects and arrays are compared by reference.
8
6
  */
9
7
  export declare function areArraysEqual(first: unknown[], second: unknown[]): boolean;
10
- export declare const genericMemo: <T>(component: T) => T;
11
8
  export declare const fallbackToEmptyArray: <T>(array: T[]) => T[];
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.65-asset-models-improvements.6",
6
+ "version": "1.0.65-asset-models-improvements.7",
7
7
  "type": "module",
8
8
  "main": "dist/overmap-core.umd.cjs",
9
9
  "module": "dist/overmap-core.js",
@@ -1 +0,0 @@
1
- export declare const fullAssetMarkerSize = 45;
File without changes
@@ -1,5 +0,0 @@
1
- /**
2
- * Combines multiple class names into a single string. Keys are class names and values are booleans.
3
- * If the value is true, the key is added to the string.
4
- */
5
- export declare function classNames(...args: (object | string | undefined | null | number)[]): string;
@@ -1,3 +0,0 @@
1
- import { SearchResult, Stored } from "../typings";
2
- import { Issue } from "../typings";
3
- export declare const issueToSearchResult: (issue: Stored<Issue>, tag: string | null) => SearchResult<Stored<Issue>>;