Skip to content

Commit 9ab1c52

Browse files
committed
Add declaration type for styleIndicator
1 parent 5182ce4 commit 9ab1c52

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ The component takes 3 compulsory props - `items`, `uniqueKey` and `onSelectedIte
152152
| single | No | (Boolean) Toggles select component between single option and multi option |
153153
| styleDropdownMenu | No | (Style) Style the view of the dropdown menu |
154154
| styleDropdownMenuSubsection | No | (Style) Style the inner view of the dropdown menu |
155+
| styleIndicator | No | (Style) Style the Icon for indicator |
155156
| styleInputGroup | No | (Style) Style the Container of the Text Input Group |
156157
| styleItemsContainer | No | (Style) Style the Container of the items that are displayed in a list |
157158
| styleListContainer | No | (Style) Style the Container of main list. See [this issue] (https://github.com/toystars/react-native-multiple-select/issues/12)|
@@ -161,7 +162,6 @@ The component takes 3 compulsory props - `items`, `uniqueKey` and `onSelectedIte
161162
| styleTextDropdown | No | (Text Style) Style text of the Dropdown |
162163
| styleTextDropdownSelected | No | (Text Style) Style text of the Dropdown selected |
163164
| styleTextTag | No | (Text Style) Style text of the tag |
164-
| styleIndicator | No | (Style) Style the Icon for indicator |
165165
| submitButtonColor | No | (String) Background color for submit button |
166166
| submitButtonText | No | (String) Text displayed on submit button |
167167
| tagBorderColor | No | (String) Border color for each selected item |

index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export interface MultiSelectProps {
2525
selectText?: string;
2626
styleDropdownMenu?: StyleProp<ViewStyle>;
2727
styleDropdownMenuSubsection?: StyleProp<ViewStyle>;
28+
styleIndicator?: StyleProp<ViewStyle>;
2829
styleInputGroup?: StyleProp<ViewStyle>;
2930
styleItemsContainer?: StyleProp<ViewStyle>;
3031
styleListContainer?: StyleProp<ViewStyle>;

0 commit comments

Comments
 (0)