Skip to content

Commit

Permalink
Version 0.2.3: Some of the props are optional now
Browse files Browse the repository at this point in the history
  • Loading branch information
WrathChaos committed Sep 7, 2020
1 parent ab4e78c commit 69a57fc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions lib/RNSingleSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ export interface ISingleSelectDataType {
}

interface IProps {
width: number;
height: number;
darkMode: boolean;
width?: number;
height?: number;
darkMode?: boolean;
imageWidth?: number;
imageHeight?: number;
placeholder?: string;
ImageComponent: any;
TextComponent: any;
ImageComponent?: any;
TextComponent?: any;
arrowImageStyle?: ImageStyle;
menuItemTextStyle?: TextStyle;
menuBarContainerHeight?: number;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@freakycoder/react-native-single-select",
"version": "0.2.2",
"version": "0.2.3",
"description": "Customizable & Easy to Use Single Select Library for React Native",
"main": "./build/dist/RNSingleSelect.js",
"repository": "[email protected]:WrathChaos/react-native-single-select.git",
Expand Down

0 comments on commit 69a57fc

Please sign in to comment.