@aws-amplify/ui-react-geo 2.2.7 → 2.2.9

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/README.md CHANGED
@@ -1,23 +1,14 @@
1
- # Amplify UI
1
+ # Amplify UI React Geo
2
2
 
3
- Amplify UI is an open-source UI library with cloud-connected components that are endlessly customizable, accessible, and can integrate into _any_ application. Amplify UI consists of:
3
+ The React Geo package provides geolocation and mapping components for Amplify connected applications.
4
4
 
5
- 1. Connected components that simplify complex cloud-connected workflows, like Authenticator.
6
- 2. Primitive components that create consistency across Amplify UI and allow you to build complete applications that fit your brand, like Buttons and Badges.
7
- 3. Data-bound components that make it easy to display dynamic data, like DataStoreCollections.
8
- 4. Theming capabilities that allow you to customize the appearance of Amplify UI to match your brand.
5
+ ## Contents
9
6
 
10
- ## React Documentation
11
-
12
- - https://ui.docs.amplify.aws/react
7
+ ### Core Components
13
8
 
14
- ## Features 🚀
9
+ - `MapView` - Component for displaying maps
10
+ - `LocationSearch` - Component for location search functionality
15
11
 
16
- - **Better developer experience** Connected-components like Authenticator are being written with framework-specific implementations so that they follow framework conventions and are easier to integrate into your application.
17
- - **Endlessly customizable** Every detail of Amplify UI is customizable to match your brand. Style all of Amplify UI with themes, override components with your own, or build your own UI and use Amplify for complex state management.
18
- - **Accessible** Amplify UI components follow [WCAG](https://www.w3.org/WAI/standards-guidelines/wcag/) and [WAI-ARIA](https://www.w3.org/TR/wai-aria-1.2/) best practices and guidelines such as color contrast, keyboard navigation, accessible labels, and focus management.
19
- - **Primitive components (React only right now)** Primitive components are used in the connected components, like Authenticator, you can also customize them and use them to build the rest of your UI.
20
-
21
- ## We love contributors!!
12
+ ## React Documentation
22
13
 
23
- See our contributing guide [CONTRIBUTING.md](/CONTRIBUTING.md) to help us scale Amplify UI!
14
+ - https://ui.docs.amplify.aws/react
@@ -1,3 +1,3 @@
1
- const VERSION = '2.2.7';
1
+ const VERSION = '2.2.9';
2
2
 
3
3
  export { VERSION };
package/dist/index.js CHANGED
@@ -70,7 +70,7 @@ const MapView = React.forwardRef(({ mapLib, mapStyle, style, ...props }, ref) =>
70
70
  });
71
71
  MapView.displayName = 'MapView';
72
72
 
73
- const VERSION = '2.2.7';
73
+ const VERSION = '2.2.9';
74
74
 
75
75
  const LOCATION_SEARCH_OPTIONS = {
76
76
  maplibregl: maplibregl__default["default"],
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { LocationSearchProps } from '../types/maplibre-gl-geocoder';
2
+ import type { LocationSearchProps } from '../types/maplibre-gl-geocoder';
3
3
  /**
4
4
  * The `<LocationSearch>` component provides location search.
5
5
  *
@@ -1 +1 @@
1
- export declare const VERSION = "2.2.7";
1
+ export declare const VERSION = "2.2.9";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-amplify/ui-react-geo",
3
- "version": "2.2.7",
3
+ "version": "2.2.9",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/esm/index.mjs",
6
6
  "exports": {
@@ -39,7 +39,7 @@
39
39
  "typecheck": "tsc --noEmit"
40
40
  },
41
41
  "dependencies": {
42
- "@aws-amplify/ui-react-core": "3.4.1",
42
+ "@aws-amplify/ui-react-core": "3.4.3",
43
43
  "mapbox-gl": "1.13.1",
44
44
  "maplibre-gl": "2.1.9",
45
45
  "maplibre-gl-js-amplify": "^4.0.2",
@@ -48,7 +48,7 @@
48
48
  },
49
49
  "peerDependencies": {
50
50
  "@aws-amplify/geo": "^3.0.59",
51
- "aws-amplify": "^6.9.0",
51
+ "aws-amplify": "^6.14.3",
52
52
  "react": "^16.14 || ^17 || ^18 || ^19",
53
53
  "react-dom": "^16.14 || ^17 || ^18 || ^19"
54
54
  },