Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/feat/slug-callout-u…
Browse files Browse the repository at this point in the history
…pdates' into feat/slug-callout-updates
  • Loading branch information
ariellalgilmore committed Jan 23, 2024
2 parents 32c6cfe + 23baccb commit 912335d
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @license
*
* Copyright IBM Corp. 2020, 2023
* Copyright IBM Corp. 2020, 2024
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
Expand Down Expand Up @@ -62,6 +62,15 @@ export const WithVideo = (args) => {
`;
};

WithVideo.story = {
name: 'with video',
parameters: {
percy: {
skip: true,
},
},
};

export const WithDefaultSource = (args) => {
const { alt, gradientDirection, backgroundOpacity } =
args?.['c4d-background-media'] ?? {};
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @license
*
* Copyright IBM Corp. 2020, 2023
* Copyright IBM Corp. 2020, 2024
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
Expand Down Expand Up @@ -192,6 +192,11 @@ export const SuperWithVideo = (args) => {

SuperWithVideo.story = {
name: 'Super with video',
parameters: {
percy: {
skip: true,
},
},
};

export const Tall = (args) => {
Expand Down Expand Up @@ -327,6 +332,11 @@ export const TallWithVideo = (args) => {

TallWithVideo.story = {
name: 'Tall with video',
parameters: {
percy: {
skip: true,
},
},
};

export const Medium = (args) => {
Expand Down Expand Up @@ -462,6 +472,11 @@ export const MediumWithVideo = (args) => {

MediumWithVideo.story = {
name: 'Medium with video',
parameters: {
percy: {
skip: true,
},
},
};

export const Short = (args) => {
Expand Down Expand Up @@ -606,6 +621,11 @@ export const ShortWithVideo = (args) => {

ShortWithVideo.story = {
name: 'Short with video',
parameters: {
percy: {
skip: true,
},
},
};

export const Centered = (args) => {
Expand Down Expand Up @@ -715,6 +735,11 @@ export const CenteredWithVideo = (args) => {

CenteredWithVideo.story = {
name: 'Centered with video',
parameters: {
percy: {
skip: true,
},
},
};

const getAriaLabel = (type) => {
Expand Down

0 comments on commit 912335d

Please sign in to comment.