@hellobetterdigitalnz/selwynui 0.0.1-35 → 0.0.1-36
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/Components/DataDisplay/ListBlock/ListBlock.d.ts +3 -0
- package/dist/Components/DataDisplay/{Pathway/PathwayProps.d.ts → ListBlock/ListBlockProps.d.ts} +4 -3
- package/dist/Components/DataDisplay/index.d.ts +4 -2
- package/dist/index.cjs.js +13 -13
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +931 -932
- package/dist/index.es.js.map +1 -1
- package/dist/selwynui.css +1 -1
- package/package.json +1 -1
- package/src/Components/DataDisplay/DetailsCard/DetailsCard.tsx +3 -3
- package/src/Components/DataDisplay/DetailsCard/detailsCard.module.scss +1 -0
- package/src/Components/DataDisplay/{Pathway/Pathway.stories.tsx → ListBlock/ListBlock.stories.tsx} +17 -14
- package/src/Components/DataDisplay/{Pathway/Pathway.tsx → ListBlock/ListBlock.tsx} +35 -35
- package/src/Components/DataDisplay/{Pathway/PathwayProps.tsx → ListBlock/ListBlockProps.tsx} +6 -4
- package/src/Components/DataDisplay/{Pathway/pathway.module.scss → ListBlock/listBlock.module.scss} +28 -6
- package/src/Components/DataDisplay/ListingDetailBlock/ListingDetailBlock.tsx +10 -10
- package/src/Components/DataDisplay/index.ts +7 -3
- package/dist/Components/DataDisplay/Pathway/Pathway.d.ts +0 -3
|
@@ -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
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
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 */}
|
|
@@ -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
|
-
//
|
|
36
|
-
export { default as Pathway } from './
|
|
37
|
-
export type { default as PathwayProps } from './
|
|
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'
|