formica-ui-lib 1.0.130 → 1.0.133

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,11 @@
1
+ export interface ArticleRecentCardProps {
2
+ imageSrc: string;
3
+ imageAlt?: string;
4
+ category: string;
5
+ title: string;
6
+ publishDate: string;
7
+ body: string;
8
+ buttonLabel: string;
9
+ onViewClick?: () => void;
10
+ className?: string;
11
+ }
@@ -1,7 +1,11 @@
1
+ export type SwatchStatus = "new" | "discontinued" | "comingSoon" | "sale";
1
2
  export interface SwatchCardProps {
2
3
  imageSrc: string;
3
4
  imageAlt: string;
4
5
  title: string;
5
6
  brand: string;
6
- decorNumber: number;
7
+ product: string;
8
+ decorNumber: string;
9
+ onClick: () => void;
10
+ status?: SwatchStatus;
7
11
  }
@@ -0,0 +1,6 @@
1
+ import type { ArticleRecentCardProps } from "../../../molecules/card/articlerecentcard/ArticleRecentCardProps";
2
+ export interface ArticleRecentSectionProps {
3
+ title?: string;
4
+ items: ArticleRecentCardProps[];
5
+ className?: string;
6
+ }
@@ -0,0 +1,4 @@
1
+ import { SwatchCardProps } from "../../molecules/card/swatchcard/SwatchCardProps";
2
+ export interface DecorGridProps {
3
+ Swatches: SwatchCardProps[];
4
+ }
@@ -2,11 +2,15 @@ import type { ArticleBannerProps } from "../../organisms/banner/articlebanner/Ar
2
2
  import type { ArticleTextProps } from "../../organisms/articles/articletext/ArticleTextProps";
3
3
  import type { ArticleImageProps } from "../../organisms/articles/articleimage/ArticleImageProps";
4
4
  import type { ArticleCarouselProps } from "../../organisms/articles/articlecarousel/ArticleCarouselProps";
5
- export type ArticlePageProps = {
5
+ import { FeaturedProductsCarouselProps } from "../../organisms/carousels/featureproductcarousel/FeaturedProductsCarouselProps";
6
+ import { ArticleRecentSectionProps } from "../../organisms/articles/articlerecentsection/ArticleRecentSectionProps";
7
+ export interface ArticlePageProps {
6
8
  articleBannerProps: ArticleBannerProps;
7
9
  articleHeaderProps: ArticleTextProps;
8
10
  articleTextProps: ArticleTextProps;
9
11
  articleTextProps2: ArticleTextProps;
10
12
  articleImageProps: ArticleImageProps;
11
13
  articleCarouselProps: ArticleCarouselProps;
12
- };
14
+ featuredProductsCarouselProps: FeaturedProductsCarouselProps;
15
+ articleRecentSectionProps: ArticleRecentSectionProps;
16
+ }
@@ -0,0 +1,10 @@
1
+ import type { StandardCopyHeroProps } from "../../organisms/banner/standardcopyhero/StandardCopyHeroProps";
2
+ import type { MultiButtonBarProps } from "../../molecules/selectors/multibuttonbar/MultiButtonBarProps";
3
+ import type { SortAndSearchBarProps } from "../../molecules/selectors/sortandsearchbar/SortAndSearchBarProps";
4
+ import type { DecorGridProps } from "../../organisms/decorgrid/DecorGridProps";
5
+ export type CategorySceneProps = {
6
+ standardCopyHeroProps: StandardCopyHeroProps;
7
+ multiButtonBarProps: MultiButtonBarProps;
8
+ sortAndSearchBarProps: SortAndSearchBarProps;
9
+ decorGridProps: DecorGridProps;
10
+ };