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