From e6c1e5727e28735ce4cf5b9c12f687ffc9a540ac Mon Sep 17 00:00:00 2001 From: Jake Moxey Date: Wed, 19 Oct 2016 00:37:50 +1100 Subject: [PATCH 1/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 93b6d23..a5de374 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Inspiration from [@sonnylazuardi](https://github.com/sonnylazuardi/react-native- showMembershipNumber | bool | `true` | Shows the membership number. showSwipeBar | bool | `true` | Whether or not to show the black swipe bar on the back of the card. showRank | bool | `true` | Shows the rank. - type | string | `generic` | Type of health fund card. Available options: `generic`, `ahm`, `mbp`, `hcf`. (More coming soon) + type | string | `generic` | Type of health fund card. Available options: `generic`, `ahm`, `bupa`, `mbp`, `hcf`. (More coming soon) width | number | `300` | The width of the card. ## Example From 7ee182b218f478449e5936f66c34fb2ac4989113 Mon Sep 17 00:00:00 2001 From: Paul Wong Date: Wed, 19 Oct 2016 10:59:42 +1100 Subject: [PATCH 2/3] updated bupa code to 'bup' --- modules/Cards/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Cards/index.js b/modules/Cards/index.js index a6ee7a6..64d37da 100644 --- a/modules/Cards/index.js +++ b/modules/Cards/index.js @@ -7,7 +7,7 @@ import MedibankCard from './MedibankCard'; export const getCardComponent = (type) => { switch (type) { case 'ahm': return AHMCard; - case 'bupa': return BupaCard; + case 'bup': return BupaCard; case 'generic': return GenericCard; case 'hcf': return HCFCard; case 'mbp': return MedibankCard; From 13ece375febb67f715b4710f084de310a8cd131c Mon Sep 17 00:00:00 2001 From: Paul Wong Date: Wed, 19 Oct 2016 11:14:07 +1100 Subject: [PATCH 3/3] 0.2.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1629ba4..a9edfc3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-health-card", - "version": "0.2.0", + "version": "0.2.1", "description": "React native health card display component", "main": "index.js", "scripts": {