@hoddy-ui/next 2.0.37 → 2.0.38
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/dist/index.d.mts +10 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -123,6 +123,7 @@ interface IconButtonProps {
|
|
|
123
123
|
}
|
|
124
124
|
type locatorLocation = {
|
|
125
125
|
description: string;
|
|
126
|
+
formatted_address?: string;
|
|
126
127
|
longitude: number;
|
|
127
128
|
latitude: number;
|
|
128
129
|
};
|
|
@@ -339,7 +340,15 @@ declare const getPredictionsFromQuery: (query: string, country: string) => Promi
|
|
|
339
340
|
description: any;
|
|
340
341
|
id: any;
|
|
341
342
|
}[]>;
|
|
342
|
-
declare const getLocationFromPlaceId: (place_id: string) => Promise<
|
|
343
|
+
declare const getLocationFromPlaceId: (place_id: string) => Promise<{
|
|
344
|
+
formatted_address: string;
|
|
345
|
+
geometry: {
|
|
346
|
+
location: {
|
|
347
|
+
lat: number;
|
|
348
|
+
lng: number;
|
|
349
|
+
};
|
|
350
|
+
};
|
|
351
|
+
}>;
|
|
343
352
|
declare const Locator: React.FC<LocatorProps>;
|
|
344
353
|
|
|
345
354
|
declare const Popup: React.FC<PopupProps>;
|
package/dist/index.d.ts
CHANGED
|
@@ -123,6 +123,7 @@ interface IconButtonProps {
|
|
|
123
123
|
}
|
|
124
124
|
type locatorLocation = {
|
|
125
125
|
description: string;
|
|
126
|
+
formatted_address?: string;
|
|
126
127
|
longitude: number;
|
|
127
128
|
latitude: number;
|
|
128
129
|
};
|
|
@@ -339,7 +340,15 @@ declare const getPredictionsFromQuery: (query: string, country: string) => Promi
|
|
|
339
340
|
description: any;
|
|
340
341
|
id: any;
|
|
341
342
|
}[]>;
|
|
342
|
-
declare const getLocationFromPlaceId: (place_id: string) => Promise<
|
|
343
|
+
declare const getLocationFromPlaceId: (place_id: string) => Promise<{
|
|
344
|
+
formatted_address: string;
|
|
345
|
+
geometry: {
|
|
346
|
+
location: {
|
|
347
|
+
lat: number;
|
|
348
|
+
lng: number;
|
|
349
|
+
};
|
|
350
|
+
};
|
|
351
|
+
}>;
|
|
343
352
|
declare const Locator: React.FC<LocatorProps>;
|
|
344
353
|
|
|
345
354
|
declare const Popup: React.FC<PopupProps>;
|