@macrostrat/map-interface 1.0.2 → 1.0.3
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.
- package/CHANGELOG.md +13 -4
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
All notable changes to this project will be documented in this file. The format
|
|
4
|
+
is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this
|
|
5
|
+
project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
7
|
+
## [1.0.3] - 2024-10-24
|
|
8
|
+
|
|
9
|
+
- Add package specifier for types
|
|
10
|
+
|
|
11
|
+
## [1.0.2] - 2024-10-24
|
|
12
|
+
|
|
13
|
+
- Update `axios` version
|
|
14
|
+
- Fix dependency versions
|
|
6
15
|
|
|
7
16
|
## [1.0.1] - 2024-10-02
|
|
8
17
|
|
|
@@ -10,4 +19,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
10
19
|
|
|
11
20
|
## [1.0.0] - 2024-10-02
|
|
12
21
|
|
|
13
|
-
Updated to use BlueprintJS 5.0
|
|
22
|
+
Updated to use BlueprintJS 5.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@macrostrat/map-interface",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Map interface for Macrostrat",
|
|
5
5
|
"main": "dist/main.js",
|
|
6
6
|
"module": "dist/module.js",
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
"source": "src/index.ts",
|
|
9
9
|
"style": "dist/main.css",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@macrostrat/hyper": "^
|
|
12
|
-
"@macrostrat/mapbox-react": "^2.2.
|
|
13
|
-
"@macrostrat/mapbox-utils": "^1.3.
|
|
14
|
-
"@macrostrat/ui-components": "^4.0.
|
|
11
|
+
"@macrostrat/hyper": "^3.0.0",
|
|
12
|
+
"@macrostrat/mapbox-react": "^2.2.3",
|
|
13
|
+
"@macrostrat/mapbox-utils": "^1.3.2",
|
|
14
|
+
"@macrostrat/ui-components": "^4.0.3",
|
|
15
15
|
"@mapbox/tilebelt": "^2.0.0",
|
|
16
16
|
"chroma-js": "^3.0.0",
|
|
17
17
|
"classnames": "^2.5.1",
|
|
@@ -36,7 +36,8 @@
|
|
|
36
36
|
".": {
|
|
37
37
|
"typescript": "./src",
|
|
38
38
|
"import": "./dist/module.js",
|
|
39
|
-
"require": "./dist/main.js"
|
|
39
|
+
"require": "./dist/main.js",
|
|
40
|
+
"types:": "./dist/types.d.ts"
|
|
40
41
|
},
|
|
41
42
|
"./dist/": {
|
|
42
43
|
"import": "./dist/",
|