utopia-ui 3.0.0-alpha.178 → 3.0.0-alpha.179

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.
@@ -1,5 +1,5 @@
1
1
  import { Item, ItemsApi } from "../../../../types";
2
- export declare function HeaderView({ item, api, editCallback, deleteCallback, setPositionCallback, itemNameField, itemSubnameField, itemAvatarField, loading, hideMenu, big, truncateSubname, hideSubname }: {
2
+ export declare function HeaderView({ item, api, editCallback, deleteCallback, setPositionCallback, itemNameField, itemSubnameField, itemAvatarField, loading, hideMenu, big, truncateSubname, hideSubname, showAddress }: {
3
3
  item: Item;
4
4
  api?: ItemsApi<any>;
5
5
  editCallback?: any;
@@ -13,4 +13,5 @@ export declare function HeaderView({ item, api, editCallback, deleteCallback, se
13
13
  big?: boolean;
14
14
  hideSubname?: boolean;
15
15
  truncateSubname?: boolean;
16
+ showAddress?: boolean;
16
17
  }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ declare const ContactInfo: ({ email, name, avatar }: {
2
+ email: string;
3
+ name: string;
4
+ avatar: string;
5
+ }) => import("react/jsx-runtime").JSX.Element;
6
+ export default ContactInfo;
@@ -0,0 +1,8 @@
1
+ declare const SubHeader: ({ location, country, countryCode, url, title }: {
2
+ location: any;
3
+ country: any;
4
+ countryCode: any;
5
+ url: any;
6
+ title: any;
7
+ }) => import("react/jsx-runtime").JSX.Element;
8
+ export default SubHeader;
@@ -0,0 +1,6 @@
1
+ declare const RelationCard: ({ title, description, imageSrc }: {
2
+ title: any;
3
+ description: any;
4
+ imageSrc: any;
5
+ }) => import("react/jsx-runtime").JSX.Element;
6
+ export default RelationCard;
@@ -0,0 +1,6 @@
1
+ declare const SocialShareBar: ({ url, title, platforms }: {
2
+ url: any;
3
+ title: any;
4
+ platforms?: string[] | undefined;
5
+ }) => import("react/jsx-runtime").JSX.Element;
6
+ export default SocialShareBar;
@@ -0,0 +1,6 @@
1
+ declare const SocialShareButton: ({ platform, url, title }: {
2
+ platform: any;
3
+ url: any;
4
+ title: any;
5
+ }) => import("react/jsx-runtime").JSX.Element | null;
6
+ export default SocialShareButton;
@@ -0,0 +1 @@
1
+ export declare function reverseGeocode(lat: number, lon: number): Promise<string>;