@nextelco/common-ui 1.5.78 → 1.5.79
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/bundle.js +1 -1
- package/dist/types/components/atoms/Card/Card2.d.ts +2 -1
- package/dist/types/components/atoms/Card/Card3.d.ts +2 -1
- package/dist/types/components/atoms/Card/Card4.d.ts +2 -1
- package/dist/types/components/atoms/Card/Card5.d.ts +2 -1
- package/dist/types/components/atoms/Card/Card6.d.ts +2 -1
- package/package.json +1 -1
@@ -10,7 +10,8 @@ type Props = PropsWithChildren<{
|
|
10
10
|
clickable: boolean;
|
11
11
|
fontColor: string;
|
12
12
|
backgroundColor: string;
|
13
|
+
fixedSize: boolean;
|
13
14
|
onClick: () => void;
|
14
15
|
}>;
|
15
|
-
declare const Card2: ({ icon, title, subtitle, thumbnail, isVideo, clickable, fontColor, backgroundColor, onClick }: Props) => React.JSX.Element;
|
16
|
+
declare const Card2: ({ icon, title, subtitle, thumbnail, isVideo, clickable, fontColor, backgroundColor, fixedSize, onClick }: Props) => React.JSX.Element;
|
16
17
|
export default Card2;
|
@@ -11,7 +11,8 @@ type Props = PropsWithChildren<{
|
|
11
11
|
buttonIcon: IconProp;
|
12
12
|
buttonFontColor: string;
|
13
13
|
buttonBackgroundColor: string;
|
14
|
+
fixedSize: true;
|
14
15
|
onClick: () => void;
|
15
16
|
}>;
|
16
|
-
declare const Card3: ({ image, title, subtitle, fontColor, backgroundColor, buttonIcon, buttonFontColor, buttonBackgroundColor, onClick }: Props) => React.JSX.Element;
|
17
|
+
declare const Card3: ({ image, title, subtitle, fontColor, backgroundColor, buttonIcon, buttonFontColor, buttonBackgroundColor, fixedSize, onClick }: Props) => React.JSX.Element;
|
17
18
|
export default Card3;
|
@@ -11,7 +11,8 @@ type Props = PropsWithChildren<{
|
|
11
11
|
clickable: boolean;
|
12
12
|
fontColor: string;
|
13
13
|
backgroundColor: string;
|
14
|
+
fixedSize: boolean;
|
14
15
|
onClick: () => void;
|
15
16
|
}>;
|
16
|
-
declare const Card4: ({ icon, iconColor, title, thumbnail, isVideo, clickable, fontColor, backgroundColor, onClick }: Props) => React.JSX.Element;
|
17
|
+
declare const Card4: ({ icon, iconColor, title, thumbnail, isVideo, clickable, fontColor, backgroundColor, fixedSize, onClick }: Props) => React.JSX.Element;
|
17
18
|
export default Card4;
|
@@ -9,7 +9,8 @@ type Props = PropsWithChildren<{
|
|
9
9
|
icon: string;
|
10
10
|
fontColor: string;
|
11
11
|
backgroundColor: string;
|
12
|
+
fixedSize: boolean;
|
12
13
|
onClick: () => void;
|
13
14
|
}>;
|
14
|
-
declare const Card5: ({ image, title, subtitle, undertitle, icon, fontColor, backgroundColor, onClick }: Props) => React.JSX.Element;
|
15
|
+
declare const Card5: ({ image, title, subtitle, undertitle, icon, fontColor, backgroundColor, fixedSize, onClick }: Props) => React.JSX.Element;
|
15
16
|
export default Card5;
|
@@ -14,7 +14,8 @@ type Props = PropsWithChildren<{
|
|
14
14
|
fontColor: string;
|
15
15
|
backgroundColor: string;
|
16
16
|
image: string;
|
17
|
+
fixedSize: boolean;
|
17
18
|
onClick: () => void;
|
18
19
|
}>;
|
19
|
-
declare const Card6: ({ title, subtitle, content, content2, buttonContent, buttonIcon, buttonFontColor, buttonBackgroundColor, fontColor, backgroundColor, image, onClick }: Props) => React.JSX.Element;
|
20
|
+
declare const Card6: ({ title, subtitle, content, content2, buttonContent, buttonIcon, buttonFontColor, buttonBackgroundColor, fontColor, backgroundColor, image, fixedSize, onClick }: Props) => React.JSX.Element;
|
20
21
|
export default Card6;
|