@mappable-world/mappable-types 1.0.16650934 → 1.0.16731241

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.
@@ -75,6 +75,7 @@ declare const MAP_TYPES: {
75
75
  admin: string;
76
76
  driving: string;
77
77
  transit: string;
78
+ "future-map": string;
78
79
  };
79
80
  /**
80
81
  * Map default layer to show mappable-world scheme on map.
@@ -1,14 +1,15 @@
1
1
  import { Context } from "./Entities";
2
2
  import type { MAP_TYPES } from "./MMapDefaultSchemeLayer";
3
- export type MMapType = keyof typeof MAP_TYPES;
4
- export type MMapTypeContext = {
5
- type?: MMapType;
6
- };
7
3
  /**
8
4
  * Selects one of predefined map style modes optimized for particular use case. The following values are supported:
9
- * * `map` - basic map
5
+ * * `map` - basic map (by default)
6
+ * * `future-map` - the base map with the new design
10
7
  * * `driving` - automobile navigation map
11
8
  * * `transit` - public transport map
12
9
  * * `admin` - administrative map
13
10
  */
11
+ export type MMapType = keyof typeof MAP_TYPES;
12
+ export type MMapTypeContext = {
13
+ type?: MMapType;
14
+ };
14
15
  export declare const TypeContext: Context<MMapTypeContext>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mappable-world/mappable-types",
3
- "version": "1.0.16650934",
3
+ "version": "1.0.16731241",
4
4
  "description": "Types for mappable maps library",
5
5
  "main": "",
6
6
  "types": "index.d.ts",