@hellobetterdigitalnz/selwynui 0.0.1-35 → 0.0.1-37

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.
@@ -5,16 +5,16 @@ import {Button} from "../../Form";
5
5
  import ArrowRight from "../../Icons/Arrows/ArrowRight/ArrowRight.tsx";
6
6
 
7
7
  const ListingDetailBlock = ({
8
- title,
9
- description,
10
- facilities,
11
- distance,
12
- elevation,
13
- address,
14
- hours,
15
- phone,
16
- websiteUrl,
17
- }: ListingDetailBlockProps) => {
8
+ title,
9
+ description,
10
+ facilities,
11
+ distance,
12
+ elevation,
13
+ address,
14
+ hours,
15
+ phone,
16
+ websiteUrl,
17
+ }: ListingDetailBlockProps) => {
18
18
  return (
19
19
  <div className={styles.listingDetail}>
20
20
  {/* Main Content - Left */}
@@ -27,17 +27,14 @@ const PathwayBlockTemplate: Story = {
27
27
  pillar="visit"
28
28
  cards={[
29
29
  {
30
- date: "2024-01-15",
31
30
  description: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt",
32
31
  image: "https://images.pexels.com/photos/1854897/pexels-photo-1854897.jpeg"
33
32
  },
34
33
  {
35
- date: "2024-01-16",
36
34
  description: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt",
37
35
  image: "https://images.pexels.com/photos/1595655/pexels-photo-1595655.jpeg"
38
36
  },
39
37
  {
40
- date: "2024-01-17",
41
38
  description: "Lorem ipsum dolor sit amet, consectetur adipiscing elit",
42
39
  image: "https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg"
43
40
  }
@@ -32,9 +32,9 @@ export type { default as ChatItenaryBlockProps } from './ChatItenaryBlock/ChatIt
32
32
  export { default as TestimonyCard } from './TestimonyCard/TestimonyCard';
33
33
  export type { default as TestimonyCardProps } from './TestimonyCard/TestimonyCardProps';
34
34
 
35
- // Pathway
36
- export { default as Pathway } from './Pathway/Pathway';
37
- export type { default as PathwayProps } from './Pathway/PathwayProps';
35
+ // ListBlock
36
+ export { default as Pathway } from './ListBlock/ListBlock.tsx';
37
+ export type { default as PathwayProps } from './ListBlock/ListBlockProps.tsx';
38
38
 
39
39
  // PromoBanner
40
40
  export { default as PromoBannerBlock } from './PromoBannerBlock/PromoBannerBlock';
@@ -48,3 +48,7 @@ export type { default as ContactItemProps } from './ContactsBlock/ContactItemPro
48
48
  //ImageContent
49
49
  export {default as ImageContent} from './ImageContent/ImageContent'
50
50
  export type {default as ImageContentProps} from './ImageContent/ImageContentProps'
51
+
52
+ //List Block
53
+ export { default as ListBlock } from './ListBlock/ListBlock'
54
+ export type { default as ListBlockProps } from './ListBlock/ListBlockProps'
@@ -1,3 +0,0 @@
1
- import { default as PathwayProps } from './PathwayProps';
2
- declare const Pathway: (props: PathwayProps) => import("react/jsx-runtime").JSX.Element;
3
- export default Pathway;