ikualo-ui-kit-mobile 1.7.8 → 1.7.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ikualo-ui-kit-mobile",
3
- "version": "1.7.8",
3
+ "version": "1.7.9",
4
4
  "main": "src/index.ts",
5
5
  "scripts": {
6
6
  "start": "expo start",
@@ -15,7 +15,7 @@ export const CardList = (props: ICardList) => {
15
15
  const stylesCards = getStylesCards(useStore().theme);
16
16
 
17
17
  const validateShowBackgroundCard = () => {
18
- if (props.showBackgroundCard) {
18
+ if (props.hideBackgroundCard) {
19
19
  return stylesCards['card-list-selected-transparent'];
20
20
  }
21
21
  return stylesCards['card-list-selected'];
@@ -107,7 +107,7 @@ export interface ICard {
107
107
  export interface ICardList {
108
108
  options: { value: string | JSX.Element; id: string }[];
109
109
  children?: React.ReactNode;
110
- showBackgroundCard?: boolean;
110
+ hideBackgroundCard?: boolean;
111
111
  onSelectOption: (value: string) => void;
112
112
  value?: string;
113
113
  }