react-native-ui-lib 7.37.2 → 7.38.0-snapshot.6221

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": "react-native-ui-lib",
3
- "version": "7.37.2",
3
+ "version": "7.38.0-snapshot.6221",
4
4
  "main": "src/index.js",
5
5
  "types": "src/index.d.ts",
6
6
  "author": "Ethan Sharabi <ethan.shar@gmail.com>",
@@ -0,0 +1,2 @@
1
+ import {SearchInput} from './src';
2
+ export default SearchInput;
package/searchInput.js ADDED
@@ -0,0 +1 @@
1
+ module.exports = require('./src/components/searchInput').default;
@@ -58,6 +58,7 @@ const Avatar = forwardRef((props, ref) => {
58
58
  onPress,
59
59
  children
60
60
  } = themeProps;
61
+ const hitTargetPadding = Math.max(0, (48 - size) / 2);
61
62
  const {
62
63
  size: _badgeSize,
63
64
  borderWidth: badgeBorderWidth = 0
@@ -174,7 +175,7 @@ const Avatar = forwardRef((props, ref) => {
174
175
  }
175
176
  };
176
177
  const Container = onPress ? TouchableOpacity : View;
177
- return <Container style={_containerStyle} ref={ref} testID={testID} onPress={onPress} accessible={!_isUndefined(onPress)} accessibilityLabel={'Avatar'} accessibilityRole={onPress ? 'button' : 'image'} {...accessibilityProps}>
178
+ return <Container style={_containerStyle} ref={ref} testID={testID} onPress={onPress} accessible={!_isUndefined(onPress)} accessibilityLabel={'Avatar'} accessibilityRole={onPress ? 'button' : 'image'} hitSlop={onPress ? hitTargetPadding : undefined} {...accessibilityProps}>
178
179
  <View testID={`${testID}.container`} style={textContainerStyle}>
179
180
  {!_isUndefined(text) && <Text numberOfLines={1} style={textStyle} testID={`${testID}.label`}>
180
181
  {text}
@@ -10,6 +10,7 @@ const transparentImage = require("./assets/transparentSwatch/TransparentSwatch.p
10
10
  const DEFAULT_SIZE = Constants.isTablet ? 44 : 36;
11
11
  export const SWATCH_MARGIN = 12;
12
12
  export const SWATCH_SIZE = DEFAULT_SIZE;
13
+ const DEFAULT_COLOR = Colors.grey30;
13
14
 
14
15
  /**
15
16
  * @description: A color swatch component
@@ -83,9 +84,8 @@ class ColorSwatch extends PureComponent {
83
84
  value,
84
85
  index
85
86
  } = this.props;
86
- const color = this.color ?? '';
87
87
  const tintColor = this.getTintColor(value);
88
- const result = value || color;
88
+ const result = value || this.color || '';
89
89
  const hexString = Colors.getHexString(result);
90
90
  this.props.onPress?.(result, {
91
91
  tintColor,
@@ -102,10 +102,14 @@ class ColorSwatch extends PureComponent {
102
102
  }
103
103
  }
104
104
  getAccessibilityInfo() {
105
- const color = this.color;
105
+ const color = this.color || DEFAULT_COLOR;
106
+ const defaultText = !this.color ? 'default' : '';
106
107
  return {
107
- accessibilityLabel: color && Colors.getColorName(color),
108
- accessibilityStates: this.props.selected ? ['selected'] : []
108
+ accessible: true,
109
+ accessibilityLabel: `${defaultText} color ${Colors.getColorName(color)}`,
110
+ accessibilityState: {
111
+ selected: this.props.selected
112
+ }
109
113
  };
110
114
  }
111
115
  getLayout() {
@@ -122,13 +126,11 @@ class ColorSwatch extends PureComponent {
122
126
  size = DEFAULT_SIZE,
123
127
  ...others
124
128
  } = this.props;
125
- const color = this.color;
126
129
  const {
127
130
  isSelected
128
131
  } = this.state;
129
132
  const Container = onPress ? TouchableOpacity : View;
130
- const tintColor = this.getTintColor(color);
131
- const accessibilityInfo = Constants.accessibility.isScreenReaderEnabled && this.getAccessibilityInfo();
133
+ const tintColor = this.getTintColor(this.color);
132
134
  return <Container {...others} center activeOpacity={1} throttleTime={0} hitSlop={{
133
135
  top: 10,
134
136
  bottom: 10,
@@ -138,8 +140,8 @@ class ColorSwatch extends PureComponent {
138
140
  width: size,
139
141
  height: size,
140
142
  borderRadius: size / 2
141
- }, style]} onLayout={this.onLayout} {...accessibilityInfo}>
142
- {Colors.isTransparent(color) && <Image source={transparentImage} style={this.styles.transparentImage} resizeMode={'cover'} />}
143
+ }, style]} onLayout={this.onLayout} {...this.getAccessibilityInfo()}>
144
+ {Colors.isTransparent(this.color) && <Image source={transparentImage} style={this.styles.transparentImage} resizeMode={'cover'} />}
143
145
  {unavailable ? <View style={[this.styles.unavailable, {
144
146
  backgroundColor: tintColor
145
147
  }]} /> : <Animated.Image source={Assets.icons.check} style={{
@@ -181,12 +183,12 @@ class ColorSwatch extends PureComponent {
181
183
  }
182
184
  export default asBaseComponent(ColorSwatch);
183
185
  function createStyles({
184
- color = Colors.grey30
186
+ color = DEFAULT_COLOR
185
187
  }) {
186
188
  return StyleSheet.create({
187
189
  container: {
188
190
  backgroundColor: color,
189
- borderWidth: color === 'transparent' ? undefined : 1,
191
+ borderWidth: Colors.isTransparent(color) ? undefined : 1,
190
192
  borderColor: Colors.rgba(Colors.$outlineDisabledHeavy, 0.2),
191
193
  margin: SWATCH_MARGIN,
192
194
  overflow: 'hidden'
@@ -137,6 +137,9 @@ export default {
137
137
  get ProgressiveImage() {
138
138
  return require('./progressiveImage').default;
139
139
  },
140
+ get SearchInput() {
141
+ return require('./searchInput').default;
142
+ },
140
143
  get StateScreen() {
141
144
  return require('./stateScreen').default;
142
145
  },
@@ -0,0 +1,39 @@
1
+ import React from 'react';
2
+ import { SearchInputPresets, SearchInputProps, SearchInputRef } from './types';
3
+ declare const SearchInput: React.ForwardRefExoticComponent<import("react-native").TextInputProps & {
4
+ onClear?: (() => void) | undefined;
5
+ onDismiss?: (() => void) | undefined;
6
+ cancelButtonProps?: import("../button").ButtonProps | undefined;
7
+ renderCustomRightElement?: (() => React.ReactElement<any, string | React.JSXElementConstructor<any>>) | undefined;
8
+ title?: string | undefined;
9
+ showLoader?: boolean | undefined;
10
+ loaderProps?: import("react-native").ActivityIndicatorProps | undefined;
11
+ renderLoaderElement?: (() => React.ReactElement<any, string | React.JSXElementConstructor<any>>) | undefined;
12
+ invertColors?: boolean | undefined;
13
+ inaccessible?: boolean | undefined;
14
+ useSafeArea?: boolean | undefined;
15
+ style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
16
+ containerStyle?: import("react-native").StyleProp<import("react-native").TextStyle | import("react-native").ViewStyle>;
17
+ preset?: "default" | "prominent" | SearchInputPresets | undefined;
18
+ } & React.RefAttributes<any>>;
19
+ interface StaticMembers {
20
+ presets: typeof SearchInputPresets;
21
+ }
22
+ export { SearchInput, SearchInputProps, SearchInputRef, SearchInputPresets };
23
+ declare const _default: React.ForwardRefExoticComponent<import("react-native").TextInputProps & {
24
+ onClear?: (() => void) | undefined;
25
+ onDismiss?: (() => void) | undefined;
26
+ cancelButtonProps?: import("../button").ButtonProps | undefined;
27
+ renderCustomRightElement?: (() => React.ReactElement<any, string | React.JSXElementConstructor<any>>) | undefined;
28
+ title?: string | undefined;
29
+ showLoader?: boolean | undefined;
30
+ loaderProps?: import("react-native").ActivityIndicatorProps | undefined;
31
+ renderLoaderElement?: (() => React.ReactElement<any, string | React.JSXElementConstructor<any>>) | undefined;
32
+ invertColors?: boolean | undefined;
33
+ inaccessible?: boolean | undefined;
34
+ useSafeArea?: boolean | undefined;
35
+ style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
36
+ containerStyle?: import("react-native").StyleProp<import("react-native").TextStyle | import("react-native").ViewStyle>;
37
+ preset?: "default" | "prominent" | SearchInputPresets | undefined;
38
+ } & React.RefAttributes<any>> & StaticMembers;
39
+ export default _default;
@@ -0,0 +1,220 @@
1
+ import _isEmpty from "lodash/isEmpty";
2
+ import React, { useImperativeHandle, forwardRef, useEffect, useRef, useState } from 'react';
3
+ import { StyleSheet, Animated, TextInput, ActivityIndicator } from 'react-native';
4
+ import { SearchInputPresets, SearchInputProps, SearchInputRef } from "./types";
5
+ import { Colors, BorderRadiuses, Spacings, Typography } from "../../style";
6
+ import { Constants, asBaseComponent } from "../../commons/new";
7
+ import Button from "../button";
8
+ import Icon from "../icon";
9
+ import View from "../view";
10
+ import Assets from "../../assets";
11
+ const ICON_SIZE = 24;
12
+ const INPUT_HEIGHT = 60;
13
+ const TOP_INPUT_HEIGHT = Constants.isIOS ? 40 : 56;
14
+ const PROMINENT_INPUT_HEIGHT = 48;
15
+ const INVERTED_TEXT_COLOR = Colors.$textDefaultLight;
16
+ const INVERTED_ICON_COLOR = Colors.$iconDefaultLight;
17
+ const HIT_SLOP_VALUE = 20;
18
+ const SearchInput = forwardRef((props, ref) => {
19
+ const {
20
+ preset = SearchInputPresets.DEFAULT,
21
+ onDismiss,
22
+ useSafeArea,
23
+ invertColors,
24
+ testID,
25
+ showLoader,
26
+ loaderProps,
27
+ value: controlledValue,
28
+ onChangeText,
29
+ onClear,
30
+ containerStyle,
31
+ renderCustomRightElement,
32
+ style,
33
+ inaccessible
34
+ } = props;
35
+ const currentAnimatedValue = useRef();
36
+ const searchInputRef = useRef(null);
37
+ const [hasValue, setHasValue] = useState(Boolean(controlledValue));
38
+ const [value, setValue] = useState(controlledValue);
39
+ const [valueState] = useState(new Animated.Value(_isEmpty(controlledValue) ? 0 : 1));
40
+ const [isAnimatingClearButton, setIsAnimatingClearButton] = useState(!_isEmpty(controlledValue));
41
+ useImperativeHandle(ref, () => {
42
+ return {
43
+ blur: () => searchInputRef.current?.blur(),
44
+ focus: () => searchInputRef.current?.focus(),
45
+ clear: () => {
46
+ searchInputRef.current?.clear();
47
+ onChangeText?.('');
48
+ onClear?.();
49
+ }
50
+ };
51
+ });
52
+ useEffect(() => {
53
+ if (controlledValue !== value) {
54
+ setValue(controlledValue);
55
+ setHasValue(Boolean(controlledValue));
56
+ }
57
+ }, [controlledValue]);
58
+ useEffect(() => {
59
+ if (hasValue) {
60
+ animatedValueState(1);
61
+ } else {
62
+ animatedValueState(0);
63
+ }
64
+ }, [hasValue]);
65
+ useEffect(() => {
66
+ return () => {
67
+ currentAnimatedValue.current?.stop();
68
+ };
69
+ }, []);
70
+ const animatedValueState = value => {
71
+ setIsAnimatingClearButton(true);
72
+ if (currentAnimatedValue.current) {
73
+ currentAnimatedValue.current.stop();
74
+ }
75
+ currentAnimatedValue.current = Animated.timing(valueState, {
76
+ toValue: value,
77
+ duration: 160,
78
+ useNativeDriver: true
79
+ });
80
+ currentAnimatedValue.current.start(() => {
81
+ if (!hasValue) {
82
+ setIsAnimatingClearButton(false);
83
+ }
84
+ });
85
+ };
86
+ const getHeight = () => {
87
+ const isProminent = preset === SearchInputPresets.PROMINENT;
88
+ if (isProminent) {
89
+ return PROMINENT_INPUT_HEIGHT;
90
+ }
91
+ return useSafeArea ? TOP_INPUT_HEIGHT : INPUT_HEIGHT;
92
+ };
93
+ const onChangeTextHandler = text => {
94
+ console.log(`onChangeTextHandler, text:`, text);
95
+ onChangeText?.(text);
96
+ setValue(text);
97
+ setHasValue(!_isEmpty(text));
98
+ };
99
+ const clearInput = () => {
100
+ searchInputRef?.current?.clear();
101
+ onChangeTextHandler('');
102
+ onClear?.();
103
+ };
104
+ const renderClearButton = () => {
105
+ const transform = [{
106
+ translateY: valueState.interpolate({
107
+ inputRange: [0, 1],
108
+ outputRange: [50, 1]
109
+ })
110
+ }];
111
+ const clearButtonStyle = !isDismissible() && isAnimatingClearButton && styles.clearButton;
112
+ const iconStyle = {
113
+ tintColor: invertColors ? INVERTED_ICON_COLOR : Colors.grey40,
114
+ width: 12,
115
+ height: 12
116
+ };
117
+ return <Animated.View style={[{
118
+ transform
119
+ }, clearButtonStyle]}>
120
+ <Button link grey10 text80 iconSource={Assets.icons.x} iconStyle={iconStyle} onPress={clearInput} hitSlop={HIT_SLOP_VALUE} accessible={Boolean(hasValue)} accessibilityLabel={'clear'} testID={`${testID}.clearButton`} />
121
+ </Animated.View>;
122
+ };
123
+ const renderCancelButton = () => {
124
+ const {
125
+ cancelButtonProps
126
+ } = props;
127
+ if (onDismiss) {
128
+ return <Button style={styles.cancelButton} link color={invertColors ? INVERTED_TEXT_COLOR : undefined} $textDefault text65M {...cancelButtonProps} onPress={onDismiss} testID={`${testID}.cancelButton`} />;
129
+ }
130
+ };
131
+ const renderTextInput = () => {
132
+ const {
133
+ placeholder
134
+ } = props;
135
+ const height = getHeight();
136
+ const placeholderTextColor = invertColors ? INVERTED_TEXT_COLOR : Colors.$textDefault;
137
+ const selectionColor = invertColors ? INVERTED_TEXT_COLOR : Colors.$textDefault;
138
+ return <View style={[styles.inputContainer, {
139
+ height
140
+ }]}>
141
+ <TextInput accessibilityRole={'search'} placeholder={placeholder} placeholderTextColor={placeholderTextColor} underlineColorAndroid="transparent" selectionColor={selectionColor} ref={searchInputRef} value={value} allowFontScaling={false} style={[styles.input, containerStyle, invertColors && {
142
+ color: INVERTED_TEXT_COLOR
143
+ }, (!isDismissible() || isAnimatingClearButton) && styles.emptyInput]} onChangeText={onChangeTextHandler} testID={testID} />
144
+ {isAnimatingClearButton && renderClearButton()}
145
+ {isDismissible() && renderCancelButton()}
146
+ {!isDismissible() && renderCustomRightElement && renderCustomRightElement()}
147
+ </View>;
148
+ };
149
+ const isDismissible = () => {
150
+ return typeof onDismiss !== 'undefined';
151
+ };
152
+ const renderIcon = (icon, left = true) => {
153
+ const invertedColor = invertColors ? {
154
+ tintColor: INVERTED_ICON_COLOR
155
+ } : undefined;
156
+ return <View>
157
+ <Icon tintColor={invertedColor?.tintColor} style={[styles.icon, invertedColor, left && styles.leftIcon]} source={icon} size={ICON_SIZE} />
158
+ </View>;
159
+ };
160
+ const renderLoader = () => {
161
+ const {
162
+ renderLoaderElement
163
+ } = props;
164
+ return <View>
165
+ {renderLoaderElement ? renderLoaderElement() : <ActivityIndicator style={styles.loader} {...loaderProps} />}
166
+ </View>;
167
+ };
168
+ const topInputTopMargin = useSafeArea && {
169
+ marginTop: Constants.isIOS ? Constants.statusBarHeight : 0
170
+ };
171
+ const isProminent = preset === SearchInputPresets.PROMINENT;
172
+ return <View inaccessible={inaccessible} row centerV style={[style, isProminent && styles.prominentContainer, topInputTopMargin]} testID={`${testID}.searchBox`}>
173
+ {showLoader ? renderLoader() : renderIcon(Assets.icons.search)}
174
+ {renderTextInput()}
175
+ </View>;
176
+ });
177
+ const styles = StyleSheet.create({
178
+ inputContainer: {
179
+ height: INPUT_HEIGHT,
180
+ flex: 1,
181
+ flexDirection: 'row',
182
+ alignItems: 'center',
183
+ overflow: 'hidden'
184
+ },
185
+ prominentContainer: {
186
+ borderWidth: 1,
187
+ borderColor: Colors.$outlineDefault,
188
+ borderRadius: BorderRadiuses.br20,
189
+ marginHorizontal: Spacings.s5
190
+ },
191
+ input: {
192
+ flex: 1,
193
+ ...Typography.body,
194
+ lineHeight: undefined,
195
+ color: Colors.$textDefault,
196
+ textAlign: Constants.isRTL ? 'right' : 'left'
197
+ },
198
+ emptyInput: {
199
+ marginRight: Spacings.s4
200
+ },
201
+ cancelButton: {
202
+ marginLeft: Spacings.s4,
203
+ marginRight: Spacings.s4
204
+ },
205
+ clearButton: {
206
+ marginRight: Spacings.s4
207
+ },
208
+ icon: {
209
+ marginRight: Spacings.s4
210
+ },
211
+ leftIcon: {
212
+ marginLeft: Spacings.s4
213
+ },
214
+ loader: {
215
+ marginHorizontal: Spacings.s4
216
+ }
217
+ });
218
+ SearchInput.displayName = 'SearchInput';
219
+ export { SearchInput, SearchInputProps, SearchInputRef, SearchInputPresets };
220
+ export default asBaseComponent(SearchInput);
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "SearchInput",
3
+ "category": "form",
4
+ "description": "Search input for filtering purpose",
5
+ "example": "https://github.com/wix-private/wix-react-native-ui-lib/blob/master/example/screens/components/SearchInputScreen.tsx",
6
+ "extends": ["TextInput"],
7
+ "extendsLink": "https://reactnative.dev/docs/textinput",
8
+ "props": [
9
+ {"name": "onDismiss", "type": "() => void", "description": "callback for dismiss action"},
10
+ {"name": "onClear", "type": "() => void", "description": "On clear button callback."},
11
+ {"name": "title", "type": "string", "description": "Title prop."},
12
+ {"name": "showFilterIcon", "type": "boolean", "description": "Pass true to add filter icon on the right."},
13
+ {
14
+ "name": "showLoader",
15
+ "type": "boolean",
16
+ "description": "Whether to show a loader instead of the left search icon."
17
+ },
18
+ {
19
+ "name": "renderLoaderElement",
20
+ "type": " () => React.ReactElement",
21
+ "description": "custom loader element to render instead of the default loader"
22
+ },
23
+ {
24
+ "name": "renderLoaderElement",
25
+ "type": " () => React.ReactElement",
26
+ "description": "custom loader element to render instead of the default loader"
27
+ },
28
+ {
29
+ "name": "cancelButtonProps",
30
+ "type": "ButtonProps",
31
+ "description": "Props for the cancel button"
32
+ },
33
+ {
34
+ "name": "schemeColor",
35
+ "type": "string | null",
36
+ "description": "The SearchInput colors (affects the search icon color, the filter icon color when 'showFilterIcon' is passed and the cancel button color)"
37
+ },
38
+ {
39
+ "name": "inaccessible",
40
+ "type": "boolean",
41
+ "description": "Turn off accessibility for this view and its nested children"
42
+ },
43
+ {
44
+ "name": "useSafeArea",
45
+ "type": "boolean",
46
+ "description": "in case the SearchInput is rendered in a safe area (top of the screen)"
47
+ },
48
+ {"name": "containerStyle", "type": "ViewStyle", "description": "Override styles for the input"},
49
+ {"name": "style", "type": "ViewStyle", "description": "Override styles for container"}
50
+ ],
51
+ "snippet": [
52
+ "<SearchInput",
53
+ " ref={searchInputRef$1}",
54
+ " testID={'searchInput'$2}",
55
+ " placeholder={'Search'$3}",
56
+ " onDismiss={onDismiss$4}",
57
+ " showFilterIcon={showFilterIcon$5}",
58
+ "/>"
59
+ ]
60
+ }
@@ -0,0 +1,70 @@
1
+ /// <reference types="react" />
2
+ import { TextInputProps, StyleProp, ViewStyle, TextStyle, ActivityIndicatorProps } from 'react-native';
3
+ import { ButtonProps } from '../button';
4
+ export declare enum SearchInputPresets {
5
+ DEFAULT = "default",
6
+ PROMINENT = "prominent"
7
+ }
8
+ export interface SearchInputRef {
9
+ blur: () => void;
10
+ clear: () => void;
11
+ focus: () => void;
12
+ }
13
+ export type SearchInputProps = TextInputProps & {
14
+ /**
15
+ * On clear button callback.
16
+ */
17
+ onClear?: () => void;
18
+ /**
19
+ * callback for dismiss action
20
+ */
21
+ onDismiss?: () => void;
22
+ /**
23
+ * Props for the cancel button
24
+ */
25
+ cancelButtonProps?: ButtonProps;
26
+ /**
27
+ * Custom right element
28
+ */
29
+ renderCustomRightElement?: () => React.ReactElement;
30
+ /**
31
+ * Title prop
32
+ */
33
+ title?: string;
34
+ /**
35
+ * Whether to show a loader instead of the left search icon
36
+ */
37
+ showLoader?: boolean;
38
+ /**
39
+ * Loader props
40
+ */
41
+ loaderProps?: ActivityIndicatorProps;
42
+ /**
43
+ * custom loader element
44
+ */
45
+ renderLoaderElement?: () => React.ReactElement;
46
+ /**
47
+ * converts the colors of the search's input elements, icons and button to white
48
+ */
49
+ invertColors?: boolean;
50
+ /**
51
+ * Turn off accessibility for this view and its nested children
52
+ */
53
+ inaccessible?: boolean;
54
+ /**
55
+ * in case the SearchInput is rendered in a safe area (top of the screen)
56
+ */
57
+ useSafeArea?: boolean;
58
+ /**
59
+ * Override styles for container
60
+ */
61
+ style?: StyleProp<ViewStyle>;
62
+ /**
63
+ * Override styles for the input
64
+ */
65
+ containerStyle?: StyleProp<ViewStyle | TextStyle>;
66
+ /**
67
+ * The preset for the search input: default or prominent
68
+ */
69
+ preset?: SearchInputPresets | `${SearchInputPresets}`;
70
+ };
@@ -0,0 +1,5 @@
1
+ export let SearchInputPresets = /*#__PURE__*/function (SearchInputPresets) {
2
+ SearchInputPresets["DEFAULT"] = "default";
3
+ SearchInputPresets["PROMINENT"] = "prominent";
4
+ return SearchInputPresets;
5
+ }({});
@@ -36,10 +36,7 @@ class Switch extends Component {
36
36
  accessibilityRole: 'switch',
37
37
  accessibilityState: {
38
38
  disabled,
39
- checked: value ? 'checked' : 'unchecked'
40
- },
41
- accessibilityValue: {
42
- text: value ? '1' : '0'
39
+ checked: value
43
40
  }
44
41
  };
45
42
  }
@@ -114,13 +111,27 @@ class Switch extends Component {
114
111
  };
115
112
  return <Animated.View style={[this.styles.thumb, thumbPositionStyle, thumbStyle]} />;
116
113
  }
114
+ getAccessibleHitSlop() {
115
+ const {
116
+ width = DEFAULT_WIDTH,
117
+ height = DEFAULT_HEIGHT
118
+ } = this.props;
119
+ const verticalPadding = Math.max(0, (48 - height) / 2);
120
+ const horizontalPadding = Math.max(0, (48 - width) / 2);
121
+ return {
122
+ top: verticalPadding,
123
+ bottom: verticalPadding,
124
+ left: horizontalPadding,
125
+ right: horizontalPadding
126
+ };
127
+ }
117
128
  render() {
118
129
  const {
119
130
  ...others
120
131
  } = this.props;
121
132
  return (
122
133
  // @ts-ignore
123
- <TouchableOpacity {...this.getAccessibilityProps()} activeOpacity={1} {...others} style={this.getSwitchStyle()} onPress={this.onPress}>
134
+ <TouchableOpacity {...this.getAccessibilityProps()} activeOpacity={1} hitSlop={this.getAccessibleHitSlop()} {...others} style={this.getSwitchStyle()} onPress={this.onPress}>
124
135
  {this.renderThumb()}
125
136
  </TouchableOpacity>
126
137
  );
@@ -2,9 +2,8 @@ import { ViewStyle } from 'react-native';
2
2
  import { ComponentProps } from '../../testkit/new/Component.driver';
3
3
  export declare const SwitchDriver: (props: ComponentProps) => {
4
4
  getStyle: () => ViewStyle;
5
- getAccessibilityValue: () => boolean;
6
5
  isDisabled: () => boolean;
7
- isChecked: () => boolean;
6
+ isChecked: () => any;
8
7
  press: () => void;
9
8
  hasOnPress: () => boolean;
10
9
  onPressIn: () => void;
@@ -3,13 +3,11 @@ import { usePressableDriver } from "../../testkit/new/usePressable.driver";
3
3
  export const SwitchDriver = props => {
4
4
  const driver = usePressableDriver(useComponentDriver(props));
5
5
  const getStyle = () => driver.getElement().props.style;
6
- const getAccessibilityValue = () => driver.getElement().props.accessibilityValue?.text === '1';
7
6
  const isDisabled = () => driver.getElement().props.accessibilityState?.disabled === true;
8
- const isChecked = () => driver.getElement().props.accessibilityValue?.text === '1';
7
+ const isChecked = () => driver.getElement().props.accessibilityState?.checked;
9
8
  return {
10
9
  ...driver,
11
10
  getStyle,
12
- getAccessibilityValue,
13
11
  isDisabled,
14
12
  isChecked
15
13
  };
@@ -149,7 +149,7 @@ const TabBar = props => {
149
149
  }, [labelColor, selectedLabelColor]);
150
150
  return <View style={_containerStyle} key={key} bg-$backgroundElevated>
151
151
  <FadedScrollView ref={tabBar} horizontal showsHorizontalScrollIndicator={false} showStartFader startFaderProps={faderProps} showEndFader endFaderProps={faderProps} contentContainerStyle={scrollViewContainerStyle} testID={testID} onContentSizeChange={onContentSizeChange} onLayout={onLayout}>
152
- <View style={tabBarContainerStyle}>{tabBarItems}</View>
152
+ <View style={tabBarContainerStyle} accessibilityRole={Constants.isIOS ? 'tabbar' : 'tablist'}>{tabBarItems}</View>
153
153
  {itemsCount > 1 && <Reanimated.View style={[styles.selectedIndicator, indicatorStyle, _indicatorTransitionStyle]} />}
154
154
  </FadedScrollView>
155
155
  </View>;
@@ -3,9 +3,9 @@ import _isEmpty from "lodash/isEmpty";
3
3
  import _isUndefined from "lodash/isUndefined";
4
4
  import _cloneDeep from "lodash/cloneDeep";
5
5
  // TODO: support commented props
6
- import React, { useCallback, useContext, useEffect, useRef, useMemo } from 'react';
6
+ import React, { useCallback, useContext, useEffect, useRef, useMemo, useState } from 'react';
7
7
  import { StyleSheet } from 'react-native';
8
- import Reanimated, { runOnJS, useAnimatedStyle, useSharedValue } from 'react-native-reanimated';
8
+ import Reanimated, { runOnJS, useAnimatedReaction, useAnimatedStyle, useSharedValue } from 'react-native-reanimated';
9
9
  import { Gesture, GestureDetector } from 'react-native-gesture-handler';
10
10
  import { Colors, Typography, Spacings } from "../../style";
11
11
  import Badge from "../badge";
@@ -52,6 +52,7 @@ export default function TabBarItem({
52
52
  // JSON.parse(JSON.stringify is due to an issue with reanimated
53
53
  const sharedLabelStyle = useSharedValue(JSON.parse(JSON.stringify(StyleSheet.flatten(labelStyle))));
54
54
  const sharedSelectedLabelStyle = useSharedValue(JSON.parse(JSON.stringify(StyleSheet.flatten(selectedLabelStyle))));
55
+ const [isSelected, setIsSelected] = useState(currentPage.value === index);
55
56
 
56
57
  // NOTE: We clone these color values in refs because they might contain a PlatformColor value
57
58
  // which throws an error (see https://github.com/software-mansion/react-native-reanimated/issues/3164)
@@ -71,6 +72,11 @@ export default function TabBarItem({
71
72
  }, index);
72
73
  }
73
74
  }, []);
75
+ useAnimatedReaction(() => currentPage.value === index, (isSelected, prevIsSelected) => {
76
+ if (isSelected !== prevIsSelected) {
77
+ runOnJS(setIsSelected)(isSelected);
78
+ }
79
+ });
74
80
  const onLayout = useCallback(event => {
75
81
  const {
76
82
  width
@@ -120,6 +126,9 @@ export default function TabBarItem({
120
126
  flex
121
127
  }, style, constantWidthStyle, pressStyle];
122
128
  }, [style, spreadItems]);
129
+ const accessibilityState = useMemo(() => ({
130
+ selected: isSelected
131
+ }), [isSelected]);
123
132
  const gesture = Gesture.Tap().maxDuration(60000).onEnd(() => {
124
133
  if (!ignore) {
125
134
  setCurrentIndex(index);
@@ -133,7 +142,7 @@ export default function TabBarItem({
133
142
  return <GestureDetector gesture={gesture}>
134
143
  <View reanimated
135
144
  // @ts-expect-error
136
- ref={itemRef} style={_style} onLayout={onLayout} testID={testID}>
145
+ ref={itemRef} style={_style} onLayout={onLayout} testID={testID} accessible accessibilityRole="tab" accessibilityState={accessibilityState}>
137
146
  {leadingAccessory}
138
147
  {icon && <Reanimated.Image source={icon} style={[!_isUndefined(label) && styles.tabItemIconWithLabel, animatedIconStyle]} />}
139
148
  {!_isEmpty(label) && <Reanimated.Text {...labelProps} fsTagName={'unmask'} style={[styles.tabItemLabel, labelStyle, animatedLabelStyle, animatedLabelColorStyle]}>
@@ -159,7 +159,10 @@ const TextField = props => {
159
159
  {placeholder}
160
160
  </Text>}
161
161
  {floatingPlaceholder && <FloatingPlaceholder defaultValue={others.defaultValue} placeholder={placeholder} floatingPlaceholderStyle={_floatingPlaceholderStyle} floatingPlaceholderColor={floatingPlaceholderColor} floatOnFocus={floatOnFocus} validationMessagePosition={validationMessagePosition} extraOffset={leadingAccessoryMeasurements?.width} testID={`${props.testID}.floatingPlaceholder`} showMandatoryIndication={showMandatoryIndication} />}
162
- <Input placeholderTextColor={hidePlaceholder ? 'transparent' : placeholderTextColor} value={fieldState.value} {...others} readonly={readonly} style={inputStyle} onFocus={onFocus} onBlur={onBlur} onChangeText={onChangeText} placeholder={placeholder} hint={hint} showMandatoryIndication={showMandatoryIndication && !label} />
162
+ <Input hitSlop={{
163
+ top: 20,
164
+ bottom: 20
165
+ }} placeholderTextColor={hidePlaceholder ? 'transparent' : placeholderTextColor} value={fieldState.value} {...others} readonly={readonly} style={inputStyle} onFocus={onFocus} onBlur={onBlur} onChangeText={onChangeText} placeholder={placeholder} hint={hint} showMandatoryIndication={showMandatoryIndication && !label} />
163
166
  </View>}
164
167
  {showClearButton && <ClearButton onClear={onClear} testID={`${props.testID}.clearButton`} onChangeText={onChangeText} clearButtonStyle={clearButtonStyle} />}
165
168
  {trailingAccessory}
@@ -1,4 +1,5 @@
1
- import React, { useCallback, useState, forwardRef, useImperativeHandle } from 'react';
1
+ import React, { useCallback, useState, forwardRef, useImperativeHandle, useRef } from 'react';
2
+ import { AccessibilityInfo, findNodeHandle } from 'react-native';
2
3
  import TouchableOpacity from "../../components/touchableOpacity";
3
4
  import View from "../../components/view";
4
5
  import Modal from "../../components/modal";
@@ -23,14 +24,22 @@ const ExpandableOverlay = (props, ref) => {
23
24
  ...others
24
25
  } = props;
25
26
  const [visible, setExpandableVisible] = useState(false);
27
+ const containerRef = useRef(null);
28
+ const focusAccessibility = useCallback(() => {
29
+ const reactTag = findNodeHandle(containerRef.current);
30
+ if (reactTag) {
31
+ AccessibilityInfo.setAccessibilityFocus(reactTag);
32
+ }
33
+ }, []);
26
34
  const openExpandable = useCallback(() => {
27
35
  setExpandableVisible(true);
28
36
  onPress?.(props);
29
37
  }, [onPress, customValue]);
30
38
  const closeExpandable = useCallback(() => {
31
39
  setExpandableVisible(false);
40
+ focusAccessibility();
32
41
  useDialog ? dialogProps?.onDismiss?.() : modalProps?.onDismiss?.();
33
- }, [useDialog, dialogProps?.onDismiss, modalProps?.onDismiss]);
42
+ }, [useDialog, dialogProps?.onDismiss, modalProps?.onDismiss, focusAccessibility]);
34
43
  const toggleExpandable = useCallback(() => visible ? closeExpandable() : openExpandable(), [visible, openExpandable, closeExpandable]);
35
44
  useImperativeHandle(ref, () => ({
36
45
  openExpandable,
@@ -61,7 +70,7 @@ const ExpandableOverlay = (props, ref) => {
61
70
  return useDialog ? renderDialog() : renderModal();
62
71
  }
63
72
  };
64
- return <TouchableOpacity {...others} onPress={openExpandable} disabled={disabled} testID={testID}>
73
+ return <TouchableOpacity ref={containerRef} {...others} onPress={openExpandable} disabled={disabled} testID={testID}>
65
74
  <View pointerEvents="none">{children}</View>
66
75
  {renderOverlay()}
67
76
  </TouchableOpacity>;
@@ -57,11 +57,9 @@ const Toast = props => {
57
57
  });
58
58
  const playAccessibilityFeatures = () => {
59
59
  if (visible) {
60
- if (viewRef.current && action) {
60
+ if (viewRef.current && (action || message)) {
61
61
  const reactTag = findNodeHandle(viewRef.current);
62
62
  AccessibilityInfo.setAccessibilityFocus(reactTag);
63
- } else if (message) {
64
- AccessibilityInfo.announceForAccessibility?.(toastPreset.accessibilityMessage);
65
63
  }
66
64
  }
67
65
  };
package/src/index.d.ts CHANGED
@@ -68,7 +68,7 @@ export { default as PanningProvider, PanningDirections, PanLocationProps, PanAmo
68
68
  export { default as PanResponderView, PanResponderViewProps } from './components/panningViews/panResponderView';
69
69
  export { default as asPanViewConsumer } from './components/panningViews/asPanViewConsumer';
70
70
  export { default as Picker, PickerProps, PickerItemProps, PickerValue, PickerModes, PickerFieldTypes, PickerSearchStyle, RenderCustomModalProps, PickerItemsListProps, PickerMethods } from './components/picker';
71
- export { default as PieChart, PieChartSegmentProps } from './components/pieChart';
71
+ export { default as PieChart, type PieChartProps, PieChartSegmentProps } from './components/pieChart';
72
72
  export { default as ProgressBar, ProgressBarProps } from './components/progressBar';
73
73
  export { default as ProgressiveImage, ProgressiveImageProps } from './components/progressiveImage';
74
74
  export { default as RadioButton, RadioButtonProps } from './components/radioButton';
@@ -76,6 +76,7 @@ export { default as RadioGroup, RadioGroupProps } from './components/radioGroup'
76
76
  export type { RecorderProps } from './typings/recorderTypes';
77
77
  export type { ComponentStatics } from './typings/common';
78
78
  export { default as ScrollBar, ScrollBarProps } from './components/scrollBar';
79
+ export { default as SearchInput, SearchInputProps, SearchInputRef, SearchInputPresets } from './components/searchInput';
79
80
  export { default as SectionsWheelPicker, SectionsWheelPickerProps } from './components/sectionsWheelPicker';
80
81
  export { default as SegmentedControl, SegmentedControlProps, SegmentedControlItemProps, SegmentedControlPreset } from './components/segmentedControl';
81
82
  export { default as SharedTransition } from './components/sharedTransition';
package/src/index.js CHANGED
@@ -178,6 +178,10 @@ var _exportNames = {
178
178
  RadioGroupProps: true,
179
179
  ScrollBar: true,
180
180
  ScrollBarProps: true,
181
+ SearchInput: true,
182
+ SearchInputProps: true,
183
+ SearchInputRef: true,
184
+ SearchInputPresets: true,
181
185
  SectionsWheelPicker: true,
182
186
  SectionsWheelPickerProps: true,
183
187
  SegmentedControl: true,
@@ -1206,6 +1210,30 @@ Object.defineProperty(exports, "ScrollBarProps", {
1206
1210
  return _scrollBar().ScrollBarProps;
1207
1211
  }
1208
1212
  });
1213
+ Object.defineProperty(exports, "SearchInput", {
1214
+ enumerable: true,
1215
+ get: function () {
1216
+ return _searchInput().default;
1217
+ }
1218
+ });
1219
+ Object.defineProperty(exports, "SearchInputPresets", {
1220
+ enumerable: true,
1221
+ get: function () {
1222
+ return _searchInput().SearchInputPresets;
1223
+ }
1224
+ });
1225
+ Object.defineProperty(exports, "SearchInputProps", {
1226
+ enumerable: true,
1227
+ get: function () {
1228
+ return _searchInput().SearchInputProps;
1229
+ }
1230
+ });
1231
+ Object.defineProperty(exports, "SearchInputRef", {
1232
+ enumerable: true,
1233
+ get: function () {
1234
+ return _searchInput().SearchInputRef;
1235
+ }
1236
+ });
1209
1237
  Object.defineProperty(exports, "SectionsWheelPicker", {
1210
1238
  enumerable: true,
1211
1239
  get: function () {
@@ -2193,6 +2221,13 @@ function _scrollBar() {
2193
2221
  };
2194
2222
  return data;
2195
2223
  }
2224
+ function _searchInput() {
2225
+ const data = _interopRequireWildcard(require("./components/searchInput"));
2226
+ _searchInput = function () {
2227
+ return data;
2228
+ };
2229
+ return data;
2230
+ }
2196
2231
  function _sectionsWheelPicker() {
2197
2232
  const data = _interopRequireWildcard(require("./components/sectionsWheelPicker"));
2198
2233
  _sectionsWheelPicker = function () {
@@ -145,6 +145,9 @@ export class Colors {
145
145
  return Scheme.getScheme(schemeType)[colorKey];
146
146
  }
147
147
  getColorName(colorValue) {
148
+ if (this.isTransparent(colorValue)) {
149
+ return 'transparent';
150
+ }
148
151
  const color = colorStringValue(colorValue);
149
152
  return ColorName.name(color)[1];
150
153
  }
File without changes