diff options
Diffstat (limited to 'src/components/molecules/images')
| -rw-r--r-- | src/components/molecules/images/flipping-logo.stories.tsx | 3 | ||||
| -rw-r--r-- | src/components/molecules/images/responsive-image.stories.tsx | 57 | 
2 files changed, 52 insertions, 8 deletions
| diff --git a/src/components/molecules/images/flipping-logo.stories.tsx b/src/components/molecules/images/flipping-logo.stories.tsx index 40a4c49..9d09293 100644 --- a/src/components/molecules/images/flipping-logo.stories.tsx +++ b/src/components/molecules/images/flipping-logo.stories.tsx @@ -54,7 +54,6 @@ export default {          required: true,        },      }, -    unoptimized: { table: { disable: true } },    },  } as ComponentMeta<typeof FlippingLogoComponent>; @@ -70,6 +69,4 @@ FlippingLogo.args = {    altText: 'Website picture',    logoTitle: 'Website logo',    photo: 'http://placeimg.com/640/480', -  // @ts-ignore - Needed because of the placeholder image. -  unoptimized: true,  }; diff --git a/src/components/molecules/images/responsive-image.stories.tsx b/src/components/molecules/images/responsive-image.stories.tsx index ca69d4f..4917cde 100644 --- a/src/components/molecules/images/responsive-image.stories.tsx +++ b/src/components/molecules/images/responsive-image.stories.tsx @@ -80,7 +80,6 @@ export default {          required: false,        },      }, -    unoptimized: { table: { disable: true } },      width: {        control: {          type: 'number', @@ -121,7 +120,18 @@ Default.args = {    src: 'http://placeimg.com/640/480/transport',    width: 640,    height: 480, -  unoptimized: true, +}; + +/** + * Responsive Image Stories - With borders + */ +export const WithBorders = Template.bind({}); +WithBorders.args = { +  alt: 'An example', +  src: 'http://placeimg.com/640/480/transport', +  width: 640, +  height: 480, +  withBorders: true,  };  /** @@ -133,11 +143,23 @@ WithLink.args = {    src: 'http://placeimg.com/640/480/transport',    width: 640,    height: 480, -  unoptimized: true,    target: '#',  };  /** + * Responsive Image Stories - With link and borders + */ +export const WithLinkAndBorders = Template.bind({}); +WithLinkAndBorders.args = { +  alt: 'An example', +  src: 'http://placeimg.com/640/480/transport', +  width: 640, +  height: 480, +  target: '#', +  withBorders: true, +}; + +/**   * Responsive Image Stories - With caption   */  export const WithCaption = Template.bind({}); @@ -147,7 +169,19 @@ WithCaption.args = {    width: 640,    height: 480,    caption: 'Omnis nulla labore', -  unoptimized: true, +}; + +/** + * Responsive Image Stories - With caption and borders + */ +export const WithCaptionAndBorders = Template.bind({}); +WithCaptionAndBorders.args = { +  alt: 'An example', +  src: 'http://placeimg.com/640/480/transport', +  width: 640, +  height: 480, +  caption: 'Omnis nulla labore', +  withBorders: true,  };  /** @@ -161,5 +195,18 @@ WithCaptionAndLink.args = {    height: 480,    caption: 'Omnis nulla labore',    target: '#', -  unoptimized: true, +}; + +/** + * Responsive Image Stories - With caption, link and borders + */ +export const WithCaptionLinkAndBorders = Template.bind({}); +WithCaptionLinkAndBorders.args = { +  alt: 'An example', +  src: 'http://placeimg.com/640/480/transport', +  width: 640, +  height: 480, +  caption: 'Omnis nulla labore', +  target: '#', +  withBorders: true,  }; | 
