@kashifd/jwero-components 0.8.45 → 0.8.48

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.
@@ -35,6 +35,8 @@ export type JweroDataCardType = {
35
35
  showStatusChip?: boolean;
36
36
  showBackgroundImage?: boolean;
37
37
  showSubData?: boolean;
38
+ showValueTooltip?: boolean;
39
+ valueTooltip?: ReactNode;
38
40
  labelProps?: Omit<CustomTypographyProps, "children">;
39
41
  dataProps?: Omit<CustomTypographyProps, "children">;
40
42
  boxSx: SxProps<Theme>;
@@ -50,5 +52,5 @@ export type JweroDataCardType = {
50
52
  styles?: object;
51
53
  };
52
54
  };
53
- declare const JweroDataCard: ({ info, showStatusChip, showBackgroundImage, showSubData, labelProps, dataProps, boxSx, customFooter, chartProps, animateLabelProps, }: JweroDataCardType) => import("react/jsx-runtime").JSX.Element;
55
+ declare const JweroDataCard: ({ info, showStatusChip, showBackgroundImage, showSubData, showValueTooltip, valueTooltip, labelProps, dataProps, boxSx, customFooter, chartProps, animateLabelProps, }: JweroDataCardType) => import("react/jsx-runtime").JSX.Element;
54
56
  export default JweroDataCard;
@@ -0,0 +1,2 @@
1
+ declare const FacebookIcon: () => import("react/jsx-runtime").JSX.Element;
2
+ export default FacebookIcon;
@@ -0,0 +1,5 @@
1
+ type InstagramIconType = {
2
+ props?: any;
3
+ };
4
+ declare const InstagramIcon: ({ ...props }: InstagramIconType) => import("react/jsx-runtime").JSX.Element;
5
+ export default InstagramIcon;
@@ -0,0 +1,4 @@
1
+ declare const MessengerIcon: ({ ...props }: {
2
+ [x: string]: any;
3
+ }) => import("react/jsx-runtime").JSX.Element;
4
+ export default MessengerIcon;
@@ -0,0 +1,5 @@
1
+ type WebchatIconTypes = {
2
+ props?: any;
3
+ };
4
+ declare const WebchatIcon: ({ props }: WebchatIconTypes) => import("react/jsx-runtime").JSX.Element;
5
+ export default WebchatIcon;
@@ -0,0 +1,5 @@
1
+ type WhatsappIconType = {
2
+ props?: any;
3
+ };
4
+ declare const WhatsappIcon: ({ ...props }: WhatsappIconType) => import("react/jsx-runtime").JSX.Element;
5
+ export default WhatsappIcon;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@kashifd/jwero-components",
3
3
  "description": "A Jwero UI library for React",
4
4
  "private": false,
5
- "version": "0.8.45",
5
+ "version": "0.8.48",
6
6
  "type": "module",
7
7
  "main": "dist/index.umd.js",
8
8
  "module": "dist/index.es.js",
@@ -90,7 +90,7 @@
90
90
  "storybook"
91
91
  ],
92
92
  "author": {
93
- "name": "Kashif"
93
+ "name": "kashifd"
94
94
  },
95
95
  "license": "ISC",
96
96
  "bugs": {