@sikka/hawa 0.0.242 → 0.0.243

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.
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ type IconCountTypes = {
3
+ icon: any;
4
+ count?: string;
5
+ };
6
+ export declare const HawaIconCount: React.FunctionComponent<IconCountTypes>;
7
+ export {};
@@ -7,7 +7,16 @@ interface ItemCardTypes {
7
7
  lang?: string;
8
8
  cardImage?: string;
9
9
  onCardClick?: any;
10
+ counts?: any;
10
11
  orientation?: "horizontal" | "vertical";
12
+ /** Enabling this blurs the image on hover and shows an action button */
13
+ clickableImage?: boolean;
14
+ /** The function of the action button on the image of the card */
15
+ clickableImageAction?: () => void;
16
+ /** The text of the action button on the image of the card */
17
+ clickableImageActionText: string;
18
+ /** The icon of the action button on the image of the card */
19
+ clickableImageActionIcon?: any;
11
20
  }
12
21
  type THeaderActions = {
13
22
  icon?: JSX.Element;
@@ -3,6 +3,7 @@ export * from "./HawaSwitch";
3
3
  export * from "./HawaCheckbox";
4
4
  export * from "./HawaPanelTabs";
5
5
  export * from "./HawaChip";
6
+ export * from "./HawaIconCount";
6
7
  export * from "./HawaSettingsRow";
7
8
  export * from "./HawaSelect";
8
9
  export * from "./HawaRange";