@nextelco/common-ui 1.6.96 → 1.6.99
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.
@@ -8,7 +8,9 @@ type Props = PropsWithChildren<{
|
|
8
8
|
backgroundColor: string;
|
9
9
|
image: string;
|
10
10
|
isVideo: boolean;
|
11
|
+
videoUrl?: string;
|
12
|
+
showVideo?: boolean;
|
11
13
|
onClick: () => void;
|
12
14
|
}>;
|
13
|
-
declare const Card1: ({ text1, text2, textFontColor, backgroundColor, image, isVideo, onClick }: Props) => React.JSX.Element;
|
15
|
+
declare const Card1: ({ text1, text2, textFontColor, backgroundColor, image, videoUrl, showVideo, isVideo, onClick }: Props) => React.JSX.Element;
|
14
16
|
export default Card1;
|
@@ -8,8 +8,10 @@ type Props = PropsWithChildren<{
|
|
8
8
|
backgroundColor: string;
|
9
9
|
image: string;
|
10
10
|
image2: string;
|
11
|
+
videoUrl?: string;
|
12
|
+
showVideo?: boolean;
|
11
13
|
isVideo: boolean;
|
12
14
|
onClick: () => void;
|
13
15
|
}>;
|
14
|
-
declare const Card2: ({ text1, text2, textFontColor, backgroundColor, image, image2, isVideo, onClick }: Props) => React.JSX.Element;
|
16
|
+
declare const Card2: ({ text1, text2, textFontColor, backgroundColor, image, image2, isVideo, videoUrl, showVideo, onClick }: Props) => React.JSX.Element;
|
15
17
|
export default Card2;
|
@@ -8,7 +8,9 @@ type Props = PropsWithChildren<{
|
|
8
8
|
image: string;
|
9
9
|
icon: string;
|
10
10
|
isVideo: boolean;
|
11
|
+
videoUrl?: string;
|
12
|
+
showVideo?: boolean;
|
11
13
|
onClick: () => void;
|
12
14
|
}>;
|
13
|
-
declare const Card7: ({ text1, textFontColor, backgroundColor, icon, image, isVideo, onClick }: Props) => React.JSX.Element;
|
15
|
+
declare const Card7: ({ text1, textFontColor, backgroundColor, icon, image, isVideo, showVideo, videoUrl, onClick }: Props) => React.JSX.Element;
|
14
16
|
export default Card7;
|