@treely/strapi-slices 5.5.0 → 5.5.1
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/slices/BlogCards/BlogCards.stories.d.ts +5 -0
- package/dist/slices/Comparison/Comparison.stories.d.ts +6 -0
- package/dist/slices/Cta/Cta.stories.d.ts +9 -0
- package/dist/slices/CtaOnly/CtaOnly.stories.d.ts +3 -0
- package/dist/slices/CustomerStories/CustomerStories.stories.d.ts +6 -0
- package/dist/slices/Facts/Facts.stories.d.ts +7 -0
- package/dist/slices/FullWidthHighlightQuote/FullWidthHighlightQuote.stories.d.ts +4 -0
- package/dist/slices/FullWidthImage/FullWidthImage.stories.d.ts +5 -0
- package/dist/slices/FullWidthImageSlider/FullWidthImageSlider.stories.d.ts +3 -0
- package/dist/slices/Glossary/Glossary.stories.d.ts +3 -0
- package/dist/slices/Hero/Hero.stories.d.ts +9 -0
- package/dist/slices/IconGrid/IconGrid.stories.d.ts +5 -0
- package/dist/slices/ImageGrid/ImageGrid.stories.d.ts +5 -0
- package/dist/slices/ImageTextSequence/ImageTextSequence.stories.d.ts +7 -0
- package/dist/slices/LeftTextRightCard/LeftTextRightCard.stories.d.ts +8 -0
- package/dist/slices/LinkCardsGrid/LinkCardsGrid.stories.d.ts +5 -0
- package/dist/slices/LogoGridWithText/LogoGridWithText.stories.d.ts +6 -0
- package/dist/slices/MapHero/MapHero.stories.d.ts +8 -0
- package/dist/slices/ProjectFacts/ProjectFacts.stories.d.ts +8 -0
- package/dist/slices/ProjectsGrid/ProjectsGrid.stories.d.ts +3 -0
- package/dist/slices/ProjectsMap/ProjectsMap.stories.d.ts +6 -0
- package/dist/slices/QAndA/QAndA.stories.d.ts +7 -0
- package/dist/slices/QuoteCards/QuoteCards.stories.d.ts +8 -0
- package/dist/slices/RichTextSection/RichTextSection.stories.d.ts +3 -0
- package/dist/slices/ShopCheckout/ShopCheckout.stories.d.ts +7 -0
- package/dist/slices/SideBySideImages/SideBySideImages.stories.d.ts +3 -0
- package/dist/slices/SmallHero/SmallHero.stories.d.ts +11 -0
- package/dist/slices/Steps/Steps.stories.d.ts +7 -0
- package/dist/slices/TextCardGrid/TextCardGrid.stories.d.ts +8 -0
- package/dist/slices/TextCarousel/TextCarousel.stories.d.ts +6 -0
- package/dist/slices/TextWithCard/TextWithCard.stories.d.ts +10 -0
- package/dist/slices/TextWithTextCards/TextWithTextCards.stories.d.ts +7 -0
- package/dist/slices/Timeline/Timeline.stories.d.ts +9 -0
- package/dist/slices/Video/Video.stories.d.ts +3 -0
- package/dist/strapi-slices.cjs.development.js +16 -15
- package/dist/strapi-slices.cjs.development.js.map +1 -1
- package/dist/strapi-slices.cjs.production.min.js +1 -1
- package/dist/strapi-slices.cjs.production.min.js.map +1 -1
- package/dist/strapi-slices.esm.js +16 -15
- package/dist/strapi-slices.esm.js.map +1 -1
- package/package.json +6 -1
- package/src/components/portfolio/SmallCheckout/SmallCheckout.tsx +7 -6
- package/src/slices/BlogCards/BlogCards.stories.tsx +16 -11
- package/src/slices/ImageTextSequence/ImageTextSequence.stories.tsx +8 -1
- package/src/slices/ProjectsMap/ProjectsMap.stories.tsx +5 -5
- package/src/slices/ShopCheckout/ShopCheckout.tsx +9 -7
- package/src/slices/Steps/Steps.tsx +1 -0
- package/src/slices/TextWithCard/TextWithCard.stories.tsx +3 -2
- package/src/slices/Timeline/Timeline.stories.tsx +6 -2
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./BlogCards").BlogCardsProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const White: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./BlogCards").BlogCardsProps>;
|
|
4
|
+
export declare const Gray: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./BlogCards").BlogCardsProps>;
|
|
5
|
+
export declare const WithButton: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./BlogCards").BlogCardsProps>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./Comparison").ComparisonProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const White: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Comparison").ComparisonProps>;
|
|
4
|
+
export declare const Gray: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Comparison").ComparisonProps>;
|
|
5
|
+
export declare const WithGreen: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Comparison").ComparisonProps>;
|
|
6
|
+
export declare const WithTitle: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Comparison").ComparisonProps>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./Cta").CtaProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Left: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Cta").CtaProps>;
|
|
4
|
+
export declare const Right: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Cta").CtaProps>;
|
|
5
|
+
export declare const RightWithoutShapes: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Cta").CtaProps>;
|
|
6
|
+
export declare const CenterWithGreenBackground: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Cta").CtaProps>;
|
|
7
|
+
export declare const CenterGreen: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Cta").CtaProps>;
|
|
8
|
+
export declare const CenterWhite: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Cta").CtaProps>;
|
|
9
|
+
export declare const CenterWithImage: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Cta").CtaProps>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./CtaOnly").CtaOnlyProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const WithRichText: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./CtaOnly").CtaOnlyProps>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./CustomerStories").CustomerStoriesProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const WithCustomerCard: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./CustomerStories").CustomerStoriesProps>;
|
|
4
|
+
export declare const WithQuoteCard: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./CustomerStories").CustomerStoriesProps>;
|
|
5
|
+
export declare const WithLogoCard: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./CustomerStories").CustomerStoriesProps>;
|
|
6
|
+
export declare const WithMultipleCards: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./CustomerStories").CustomerStoriesProps>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./Facts").FactsProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Facts").FactsProps>;
|
|
4
|
+
export declare const WithTitle: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Facts").FactsProps>;
|
|
5
|
+
export declare const WithButton: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Facts").FactsProps>;
|
|
6
|
+
export declare const Green: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Facts").FactsProps>;
|
|
7
|
+
export declare const White: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Facts").FactsProps>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./FullWidthHighlightQuote").FullWidthHighlightQuoteProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./FullWidthHighlightQuote").FullWidthHighlightQuoteProps>;
|
|
4
|
+
export declare const WithTagline: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./FullWidthHighlightQuote").FullWidthHighlightQuoteProps>;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./FullWidthImage").FullWidthImageProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./FullWidthImage").FullWidthImageProps>;
|
|
4
|
+
export declare const WithTagline: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./FullWidthImage").FullWidthImageProps>;
|
|
5
|
+
export declare const WithTaglineAndText: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./FullWidthImage").FullWidthImageProps>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./FullWidthImageSlider").FullWidthImageSliderProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./FullWidthImageSlider").FullWidthImageSliderProps>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./Glossary").GlossaryProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Glossary").GlossaryProps>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./Hero").HeroProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Hero").HeroProps>;
|
|
4
|
+
export declare const WithTagline: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Hero").HeroProps>;
|
|
5
|
+
export declare const WithButton: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Hero").HeroProps>;
|
|
6
|
+
export declare const WithAdditionalButton: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Hero").HeroProps>;
|
|
7
|
+
export declare const WithImage: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Hero").HeroProps>;
|
|
8
|
+
export declare const TextAlignLeft: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Hero").HeroProps>;
|
|
9
|
+
export declare const TextAlignLeftWithShape: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Hero").HeroProps>;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./IconGrid").IconGridProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./IconGrid").IconGridProps>;
|
|
4
|
+
export declare const WithTaglineTitleAndText: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./IconGrid").IconGridProps>;
|
|
5
|
+
export declare const WithButton: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./IconGrid").IconGridProps>;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./ImageGrid").ImageGridProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ImageGrid").ImageGridProps>;
|
|
4
|
+
export declare const WithTagline: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ImageGrid").ImageGridProps>;
|
|
5
|
+
export declare const WithTaglineAndText: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ImageGrid").ImageGridProps>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./ImageTextSequence").ImageTextSequenceProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ImageTextSequence").ImageTextSequenceProps>;
|
|
4
|
+
export declare const WithTagline: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ImageTextSequence").ImageTextSequenceProps>;
|
|
5
|
+
export declare const WithTaglineAndText: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ImageTextSequence").ImageTextSequenceProps>;
|
|
6
|
+
export declare const WithButtons: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ImageTextSequence").ImageTextSequenceProps>;
|
|
7
|
+
export declare const WithoutBackgroundMap: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ImageTextSequence").ImageTextSequenceProps>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./LeftTextRightCard").LeftTextRightCardProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./LeftTextRightCard").LeftTextRightCardProps>;
|
|
4
|
+
export declare const WithTagline: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./LeftTextRightCard").LeftTextRightCardProps>;
|
|
5
|
+
export declare const WithTaglineAndText: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./LeftTextRightCard").LeftTextRightCardProps>;
|
|
6
|
+
export declare const WithList: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./LeftTextRightCard").LeftTextRightCardProps>;
|
|
7
|
+
export declare const WithButton: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./LeftTextRightCard").LeftTextRightCardProps>;
|
|
8
|
+
export declare const WithCard: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./LeftTextRightCard").LeftTextRightCardProps>;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./LinkCardsGrid").LinkCardsGridProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./LinkCardsGrid").LinkCardsGridProps>;
|
|
4
|
+
export declare const WithTagline: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./LinkCardsGrid").LinkCardsGridProps>;
|
|
5
|
+
export declare const WithTaglineAndText: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./LinkCardsGrid").LinkCardsGridProps>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./LogoGridWithText").LogoGridWithTextProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./LogoGridWithText").LogoGridWithTextProps>;
|
|
4
|
+
export declare const WithButton: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./LogoGridWithText").LogoGridWithTextProps>;
|
|
5
|
+
export declare const WithMoreThan2Logos: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./LogoGridWithText").LogoGridWithTextProps>;
|
|
6
|
+
export declare const WithLogosWithLinks: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./LogoGridWithText").LogoGridWithTextProps>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./MapHero").MapHeroProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./MapHero").MapHeroProps>;
|
|
4
|
+
export declare const WithTagline: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./MapHero").MapHeroProps>;
|
|
5
|
+
export declare const WithTaglineAndSubTitle: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./MapHero").MapHeroProps>;
|
|
6
|
+
export declare const WithButton: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./MapHero").MapHeroProps>;
|
|
7
|
+
export declare const WithTwoButtons: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./MapHero").MapHeroProps>;
|
|
8
|
+
export declare const WithShape: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./MapHero").MapHeroProps>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./ProjectFacts").ProjectFactsProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ProjectFacts").ProjectFactsProps>;
|
|
4
|
+
export declare const WithDocuments: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ProjectFacts").ProjectFactsProps>;
|
|
5
|
+
export declare const WithCheckout: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ProjectFacts").ProjectFactsProps>;
|
|
6
|
+
export declare const FullProps: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ProjectFacts").ProjectFactsProps>;
|
|
7
|
+
export declare const WithContact: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ProjectFacts").ProjectFactsProps>;
|
|
8
|
+
export declare const WithDocumentsAndContact: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ProjectFacts").ProjectFactsProps>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./ProjectsGrid").ProjectsGridProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ProjectsGrid").ProjectsGridProps>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./ProjectsMap").ProjectsMapProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ProjectsMap").ProjectsMapProps>;
|
|
4
|
+
export declare const WithHero: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ProjectsMap").ProjectsMapProps>;
|
|
5
|
+
export declare const InitialPosition: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ProjectsMap").ProjectsMapProps>;
|
|
6
|
+
export declare const FullProps: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ProjectsMap").ProjectsMapProps>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./QAndA").QAndAProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./QAndA").QAndAProps>;
|
|
4
|
+
export declare const WithHero: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./QAndA").QAndAProps>;
|
|
5
|
+
export declare const WithScroll: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./QAndA").QAndAProps>;
|
|
6
|
+
export declare const Gray: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./QAndA").QAndAProps>;
|
|
7
|
+
export declare const White: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./QAndA").QAndAProps>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./QuoteCards").QuoteCardsProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./QuoteCards").QuoteCardsProps>;
|
|
4
|
+
export declare const WithMultipleCards: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./QuoteCards").QuoteCardsProps>;
|
|
5
|
+
export declare const WithTagline: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./QuoteCards").QuoteCardsProps>;
|
|
6
|
+
export declare const WithTaglineAndText: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./QuoteCards").QuoteCardsProps>;
|
|
7
|
+
export declare const WithShapes: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./QuoteCards").QuoteCardsProps>;
|
|
8
|
+
export declare const WithHero: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./QuoteCards").QuoteCardsProps>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./RichTextSection").RichTextSectionProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./RichTextSection").RichTextSectionProps>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./ShopCheckout").ShopCheckoutProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ShopCheckout").ShopCheckoutProps>;
|
|
4
|
+
export declare const WithTagline: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ShopCheckout").ShopCheckoutProps>;
|
|
5
|
+
export declare const WithText: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ShopCheckout").ShopCheckoutProps>;
|
|
6
|
+
export declare const WithBadge: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ShopCheckout").ShopCheckoutProps>;
|
|
7
|
+
export declare const WithCHF: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./ShopCheckout").ShopCheckoutProps>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./SideBySideImages").SideBySideImagesProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./SideBySideImages").SideBySideImagesProps>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./SmallHero").SmallHeroProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./SmallHero").SmallHeroProps>;
|
|
4
|
+
export declare const WithSubTitle: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./SmallHero").SmallHeroProps>;
|
|
5
|
+
export declare const WithTagline: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./SmallHero").SmallHeroProps>;
|
|
6
|
+
export declare const WithImage: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./SmallHero").SmallHeroProps>;
|
|
7
|
+
export declare const WithImageGradient: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./SmallHero").SmallHeroProps>;
|
|
8
|
+
export declare const WithTags: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./SmallHero").SmallHeroProps>;
|
|
9
|
+
export declare const WithTagsAndButton: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./SmallHero").SmallHeroProps>;
|
|
10
|
+
export declare const LightTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./SmallHero").SmallHeroProps>;
|
|
11
|
+
export declare const LightThemeWithTagsAndButton: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./SmallHero").SmallHeroProps>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./Steps").StepsProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Steps").StepsProps>;
|
|
4
|
+
export declare const WithTagline: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Steps").StepsProps>;
|
|
5
|
+
export declare const WithTaglineAndText: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Steps").StepsProps>;
|
|
6
|
+
export declare const WithImage: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Steps").StepsProps>;
|
|
7
|
+
export declare const WithCard: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Steps").StepsProps>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextCardGrid").TextCardGridProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextCardGrid").TextCardGridProps>;
|
|
4
|
+
export declare const WithTagline: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextCardGrid").TextCardGridProps>;
|
|
5
|
+
export declare const WithTaglineAndText: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextCardGrid").TextCardGridProps>;
|
|
6
|
+
export declare const WithTaglineInCards: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextCardGrid").TextCardGridProps>;
|
|
7
|
+
export declare const ImageVariant: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextCardGrid").TextCardGridProps>;
|
|
8
|
+
export declare const WithButtons: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextCardGrid").TextCardGridProps>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextCarousel").TextCarouselProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextCarousel").TextCarouselProps>;
|
|
4
|
+
export declare const WithTagline: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextCarousel").TextCarouselProps>;
|
|
5
|
+
export declare const WithTaglineAndText: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextCarousel").TextCarouselProps>;
|
|
6
|
+
export declare const WithButton: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextCarousel").TextCarouselProps>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextWithCard").TextWithCardProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextWithCard").TextWithCardProps>;
|
|
4
|
+
export declare const WithTagline: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextWithCard").TextWithCardProps>;
|
|
5
|
+
export declare const WithTaglineAndText: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextWithCard").TextWithCardProps>;
|
|
6
|
+
export declare const WithList: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextWithCard").TextWithCardProps>;
|
|
7
|
+
export declare const WithButton: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextWithCard").TextWithCardProps>;
|
|
8
|
+
export declare const WithCard: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextWithCard").TextWithCardProps>;
|
|
9
|
+
export declare const WithCardOnRight: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextWithCard").TextWithCardProps>;
|
|
10
|
+
export declare const WithProjects: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextWithCard").TextWithCardProps>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextWithTextCards").TextWithTextCardsProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextWithTextCards").TextWithTextCardsProps>;
|
|
4
|
+
export declare const WithTagline: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextWithTextCards").TextWithTextCardsProps>;
|
|
5
|
+
export declare const WithTaglineAndText: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextWithTextCards").TextWithTextCardsProps>;
|
|
6
|
+
export declare const WithContact: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextWithTextCards").TextWithTextCardsProps>;
|
|
7
|
+
export declare const WithShape: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./TextWithTextCards").TextWithTextCardsProps>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./Timeline").TimelineProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Minimal: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Timeline").TimelineProps>;
|
|
4
|
+
export declare const WithTaglineAndText: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Timeline").TimelineProps>;
|
|
5
|
+
export declare const WithBackgroundShapes: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Timeline").TimelineProps>;
|
|
6
|
+
export declare const WithButton: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Timeline").TimelineProps>;
|
|
7
|
+
export declare const WithBadgeOrLogo: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Timeline").TimelineProps>;
|
|
8
|
+
export declare const WithImage: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Timeline").TimelineProps>;
|
|
9
|
+
export declare const WithIcon: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Timeline").TimelineProps>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("./Video").VideoProps>;
|
|
2
|
+
export default _default;
|
|
3
|
+
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("./Video").VideoProps>;
|
|
@@ -1822,6 +1822,7 @@ var Steps = function Steps(_ref) {
|
|
|
1822
1822
|
text: slice.card.text,
|
|
1823
1823
|
shapes: slice.card.shapes && ((_slice$card$shapes = slice.card.shapes) == null ? void 0 : _slice$card$shapes.map(function (shape) {
|
|
1824
1824
|
return React__default.default.createElement(Image__default.default, {
|
|
1825
|
+
key: shape.id,
|
|
1825
1826
|
src: strapiMediaUrl(shape.img, 'small'),
|
|
1826
1827
|
alt: shape.alt,
|
|
1827
1828
|
fill: true,
|
|
@@ -3810,7 +3811,6 @@ var ShopCheckout = function ShopCheckout(_ref) {
|
|
|
3810
3811
|
formatNumber = _useContext.formatNumber,
|
|
3811
3812
|
locale = _useContext.locale;
|
|
3812
3813
|
var _useRouter = router.useRouter(),
|
|
3813
|
-
asPath = _useRouter.asPath,
|
|
3814
3814
|
push = _useRouter.push;
|
|
3815
3815
|
var validateForm = React.useCallback(function (values) {
|
|
3816
3816
|
var errors = {};
|
|
@@ -3831,12 +3831,13 @@ var ShopCheckout = function ShopCheckout(_ref) {
|
|
|
3831
3831
|
}, [locale]);
|
|
3832
3832
|
var onSubmit = function onSubmit(_ref2) {
|
|
3833
3833
|
var contributionValue = _ref2.contributionValue;
|
|
3834
|
-
var
|
|
3835
|
-
|
|
3836
|
-
|
|
3837
|
-
|
|
3838
|
-
|
|
3839
|
-
|
|
3834
|
+
var checkoutURL = new URL(FPM_API_URI + "/v1/webhooks/shop/checkout");
|
|
3835
|
+
var currentURL = new URL(window.location.href);
|
|
3836
|
+
checkoutURL.searchParams.append('batchId', slice.batchId);
|
|
3837
|
+
checkoutURL.searchParams.append('quantity', Math.floor(contributionValue / slice.pricePerKg).toString());
|
|
3838
|
+
checkoutURL.searchParams.append('cancelPath', currentURL.pathname);
|
|
3839
|
+
if (slice.couponId) checkoutURL.searchParams.append('couponId', slice.couponId);
|
|
3840
|
+
push(checkoutURL.toString());
|
|
3840
3841
|
};
|
|
3841
3842
|
return React__default.default.createElement(boemly.DefaultSectionContainer, {
|
|
3842
3843
|
backgroundColor: primary50,
|
|
@@ -4184,7 +4185,6 @@ var SmallCheckout = function SmallCheckout(_ref) {
|
|
|
4184
4185
|
formatMessage = _useContext.formatMessage,
|
|
4185
4186
|
locale = _useContext.locale;
|
|
4186
4187
|
var _useRouter = router.useRouter(),
|
|
4187
|
-
asPath = _useRouter.asPath,
|
|
4188
4188
|
push = _useRouter.push;
|
|
4189
4189
|
var validateForm = React.useCallback(function (values) {
|
|
4190
4190
|
var errors = {};
|
|
@@ -4205,17 +4205,18 @@ var SmallCheckout = function SmallCheckout(_ref) {
|
|
|
4205
4205
|
}, [locale]);
|
|
4206
4206
|
var onSubmit = /*#__PURE__*/function () {
|
|
4207
4207
|
var _ref3 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(_ref2) {
|
|
4208
|
-
var contributionValueCurrency,
|
|
4208
|
+
var contributionValueCurrency, checkoutURL, currentURL;
|
|
4209
4209
|
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
4210
4210
|
while (1) switch (_context.prev = _context.next) {
|
|
4211
4211
|
case 0:
|
|
4212
4212
|
contributionValueCurrency = _ref2.contributionValueCurrency;
|
|
4213
|
-
|
|
4214
|
-
|
|
4215
|
-
|
|
4216
|
-
|
|
4217
|
-
|
|
4218
|
-
|
|
4213
|
+
checkoutURL = new URL(FPM_API_URI + "/v1/webhooks/shop/checkout");
|
|
4214
|
+
currentURL = new URL(window.location.href);
|
|
4215
|
+
checkoutURL.searchParams.append('batchId', batchId);
|
|
4216
|
+
checkoutURL.searchParams.append('quantity', Math.floor(contributionValueCurrency / pricePerKg).toString());
|
|
4217
|
+
checkoutURL.searchParams.append('cancelPath', currentURL.pathname);
|
|
4218
|
+
push(checkoutURL.toString());
|
|
4219
|
+
case 7:
|
|
4219
4220
|
case "end":
|
|
4220
4221
|
return _context.stop();
|
|
4221
4222
|
}
|