@nextelco/common-ui 1.5.78 → 1.5.80

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.
@@ -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: boolean;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextelco/common-ui",
3
- "version": "1.5.78",
3
+ "version": "1.5.80",
4
4
  "description": "",
5
5
  "main": "dist/bundle.js",
6
6
  "types": "dist/types/index.d.ts",
@@ -12,7 +12,7 @@
12
12
  "storybook": "storybook dev -p 6006",
13
13
  "build-storybook": "storybook build",
14
14
  "pub": "git add . && git commit -m \"update\" && git push && npm version patch && npm run build && npm publish",
15
- "pubOnly": "npm version patch && npm run build && npm publish"
15
+ "pubOnly": "npm run build && npm publish"
16
16
  },
17
17
  "keywords": [],
18
18
  "author": "",