@yarrow-uz/yarrow-map-web-sdk 1.0.44 → 1.0.45
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 +9 -0
- package/README.md +2 -2
- package/dist/config/main.d.ts +2 -1
- package/dist/main.js +3 -3
- package/dist/module.js +3 -3
- package/dist/react/index.js +1 -1
- package/dist/yarrow.css +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project are documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.0.45] - 2026-03-12
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- Upgraded `maplibre-gl` dependency from `^5.5.0` to `^5.19.0`.
|
|
9
|
+
- Migrated search API to new endpoint (`api.yarrow.uz/api/search/`) with updated query parameters (`lng`, `country`, `sort_by`, `page`, `page_size`).
|
|
10
|
+
- Search results response mapping updated to new API format.
|
|
11
|
+
- Search result markers now fall back to circle markers with text labels when icon images are unavailable.
|
|
12
|
+
- Adjusted dark theme opacity for brand badge and map controls for a softer appearance.
|
|
13
|
+
|
|
5
14
|
## [1.0.44] - 2026-02-28
|
|
6
15
|
|
|
7
16
|
### Added
|
package/README.md
CHANGED
|
@@ -1036,8 +1036,8 @@ interface SearchOptions {
|
|
|
1036
1036
|
|
|
1037
1037
|
## Version Information
|
|
1038
1038
|
|
|
1039
|
-
- **Current Version**: 1.0.
|
|
1040
|
-
- **Dependencies**: maplibre-gl ^5.
|
|
1039
|
+
- **Current Version**: 1.0.45
|
|
1040
|
+
- **Dependencies**: maplibre-gl ^5.19.0, axios ^1.7.9
|
|
1041
1041
|
- **Changelog**: `CHANGELOG.md`
|
|
1042
1042
|
|
|
1043
1043
|
## Support
|
package/dist/config/main.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
declare const YARROW_MAP_URL: string;
|
|
2
|
-
|
|
2
|
+
declare const YARROW_SEARCH_API_URL: string;
|
|
3
|
+
export { YARROW_MAP_URL, YARROW_SEARCH_API_URL };
|
|
3
4
|
export declare function setYarrowApiKey(apiKey: string): void;
|
|
4
5
|
export declare function getYarrowApiKey(): string;
|
|
5
6
|
//# sourceMappingURL=main.d.ts.map
|