ordering-ui-react-native 0.16.5 → 0.16.6

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": "ordering-ui-react-native",
3
- "version": "0.16.5",
3
+ "version": "0.16.6",
4
4
  "description": "Reusable components made in react native",
5
5
  "main": "src/index.tsx",
6
6
  "author": "ordering.inc",
@@ -21,6 +21,7 @@ interface Props extends TextInputProps {
21
21
  isSecured?: boolean;
22
22
  style?: ViewStyle;
23
23
  placeholder?: string;
24
+ placeholderTextColor?:string;
24
25
  icon?: ImageSourcePropType | string;
25
26
  iconRight?: ImageSourcePropType;
26
27
  iconColor?: string;
@@ -80,6 +81,7 @@ const OInput = (props: Props): React.ReactElement => {
80
81
  onChangeText={(txt: any) => props.name ? props.onChange({ target: { name: props.name, value: txt } }) : props.onChange(txt)}
81
82
  defaultValue={props.value}
82
83
  placeholder={props.placeholder ? props.placeholder : ''}
84
+ placeholderTextColor={props?.placeholderTextColor ? props?.placeholderTextColor : 'initial'}
83
85
  keyboardType={props.type || 'default'}
84
86
  multiline={props.multiline}
85
87
  scrollEnabled={props.multiline}
@@ -581,6 +581,7 @@ export interface BusinessSearchParams {
581
581
  setFilters: (filters: any) => void,
582
582
  lazySearch?: boolean,
583
583
  brandList?: any;
584
+ tags?: any;
584
585
  }
585
586
 
586
587
  export interface NoNetworkParams {