@hoddy-ui/core 1.0.9 → 1.0.10
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/index.ts +0 -1
- package/package.json +1 -1
- package/src/Components/Locator.tsx +1 -2
- package/src/config/KeyManager.ts +3 -1
package/index.ts
CHANGED
|
@@ -8,7 +8,6 @@ export * from "./src/Components/Checkbox";
|
|
|
8
8
|
export * from "./src/Components/FlashMessage";
|
|
9
9
|
export * from "./src/Components/Grid";
|
|
10
10
|
export * from "./src/Components/Locator";
|
|
11
|
-
export { default as Locator } from "./src/Components/Locator";
|
|
12
11
|
export * from "./src/Components/Popup";
|
|
13
12
|
export * from "./src/Components/SafeAreaView";
|
|
14
13
|
export { default as SelectMenu } from "./src/Components/SelectMenu";
|
package/package.json
CHANGED
|
@@ -44,7 +44,7 @@ export const getPredictionsFromCoords = async (coords: any) => {
|
|
|
44
44
|
return p;
|
|
45
45
|
};
|
|
46
46
|
|
|
47
|
-
const Locator: React.FC<LocatorProps> = ({
|
|
47
|
+
export const Locator: React.FC<LocatorProps> = ({
|
|
48
48
|
variant = "contained",
|
|
49
49
|
onLocationSelected,
|
|
50
50
|
label,
|
|
@@ -225,4 +225,3 @@ const Locator: React.FC<LocatorProps> = ({
|
|
|
225
225
|
);
|
|
226
226
|
};
|
|
227
227
|
|
|
228
|
-
export default Locator;
|