@hellobetterdigitalnz/selwynui 0.0.1-42 → 0.0.1-43

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,2 +1,3 @@
1
- declare const CarouselBlock: () => import("react/jsx-runtime").JSX.Element;
1
+ import { default as CarouselBlockProps } from './CarouselBlockProps.tsx';
2
+ declare const CarouselBlock: (props: CarouselBlockProps) => import("react/jsx-runtime").JSX.Element;
2
3
  export default CarouselBlock;
@@ -1,5 +1,7 @@
1
+ import { ReactNode } from 'react';
1
2
  export interface SlideItem {
2
3
  title?: string;
4
+ date?: string;
3
5
  description?: string;
4
6
  image?: string;
5
7
  link?: {
@@ -12,6 +14,7 @@ export interface SlideItem {
12
14
  }
13
15
  interface CarouselBlockProps {
14
16
  title?: string;
17
+ action?: ReactNode;
15
18
  cards?: SlideItem[];
16
19
  }
17
20
  export default CarouselBlockProps;
@@ -0,0 +1,3 @@
1
+ import { default as ContentBlockProps } from './ContentBlockProps.tsx';
2
+ declare const ContentBlock: (props: ContentBlockProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default ContentBlock;
@@ -0,0 +1,5 @@
1
+ interface ContentBlockProps {
2
+ children: React.ReactNode;
3
+ pillar?: 'visit' | 'live' | 'business' | 'participate' | 'taste' | 'main';
4
+ }
5
+ export default ContentBlockProps;
@@ -1,3 +1,3 @@
1
- import { ListingDetailBlockProps } from './ListingDetailBlockProps';
1
+ import { default as ListingDetailBlockProps } from './ListingDetailBlockProps';
2
2
  declare const ListingDetailBlock: ({ title, description, facilities, distance, elevation, address, hours, phone, websiteUrl, }: ListingDetailBlockProps) => import("react/jsx-runtime").JSX.Element;
3
3
  export default ListingDetailBlock;
@@ -1,4 +1,4 @@
1
- export interface ListingDetailBlockProps {
1
+ interface ListingDetailBlockProps {
2
2
  title: string;
3
3
  description: string;
4
4
  facilities: string[];
@@ -10,3 +10,4 @@ export interface ListingDetailBlockProps {
10
10
  websiteUrl?: string;
11
11
  websiteText?: string;
12
12
  }
13
+ export default ListingDetailBlockProps;
@@ -20,6 +20,10 @@ export { default as TestimonyCard } from './TestimonyCard/TestimonyCard';
20
20
  export type { default as TestimonyCardProps } from './TestimonyCard/TestimonyCardProps';
21
21
  export { default as Pathway } from './ListBlock/ListBlock.tsx';
22
22
  export type { default as PathwayProps } from './ListBlock/ListBlockProps.tsx';
23
+ export { default as ListingDetailBlock } from './ListingDetailBlock/ListingDetailBlock';
24
+ export type { default as ListingDetailBlockProps } from './ListingDetailBlock/ListingDetailBlockProps';
25
+ export { default as ContentBlock } from './ContentBlock/ContentBlock';
26
+ export type { default as ContentBlockProps } from './ContentBlock/ContentBlockProps';
23
27
  export { default as PromoBannerBlock } from './PromoBannerBlock/PromoBannerBlock';
24
28
  export type { default as PromoBannerBlockProps } from './PromoBannerBlock/PromoBannerBlockProps';
25
29
  export { default as ContactBlock } from './ContactsBlock/ContactsBlock';
@@ -30,3 +34,5 @@ export { default as ImageContent } from './ImageContent/ImageContent';
30
34
  export type { default as ImageContentProps } from './ImageContent/ImageContentProps';
31
35
  export { default as ListBlock } from './ListBlock/ListBlock';
32
36
  export type { default as ListBlockProps } from './ListBlock/ListBlockProps';
37
+ export { default as CarouselBlock } from './CarouselBlock/CarouselBlock.tsx';
38
+ export type { default as CarouselBlockProps } from './CarouselBlock/CarouselBlockProps.tsx';