@hellobetterdigitalnz/selwynui 0.0.1-29 → 0.0.1-31

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.
@@ -0,0 +1,3 @@
1
+ import { ListingDetailBlockProps } from './ListingDetailBlockProps';
2
+ declare const ListingDetailBlock: ({ title, description, facilities, distance, elevation, address, hours, phone, websiteUrl, }: ListingDetailBlockProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default ListingDetailBlock;
@@ -2,6 +2,11 @@ export interface ListingDetailBlockProps {
2
2
  title: string;
3
3
  description: string;
4
4
  facilities: string[];
5
- contact: string[];
6
- location: string;
5
+ distance?: string;
6
+ elevation?: string;
7
+ address?: string;
8
+ hours?: string;
9
+ phone?: string;
10
+ websiteUrl?: string;
11
+ websiteText?: string;
7
12
  }
@@ -0,0 +1,3 @@
1
+ import { default as IconProps } from '../../IconProps';
2
+ declare const CheckCircle: ({ type }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default CheckCircle;
@@ -109,6 +109,7 @@ export { default as ToggleLeft } from './SystemAndDevice/ToggleLeft/ToggleLeft.t
109
109
  export { default as CloudCheck } from './SystemAndDevice/CloudCheck/CloudCheck.tsx';
110
110
  export { default as DeviceMobile } from './SystemAndDevice/DeviceMobile/DeviceMobile.tsx';
111
111
  export { default as Desktop } from './SystemAndDevice/Desktop/Desktop.tsx';
112
+ export { default as CheckCircle } from './SystemAndDevice/CheckCircle/CheckCircle.tsx';
112
113
  export { default as Calendar } from './Time/Calendar/Calendar';
113
114
  export { default as CalendarCheck } from './Time/CalendarCheck/CalendarCheck.tsx';
114
115
  export { default as CalendarBank } from './Time/CalendarBank/CalendarBank';