react-native-ui-lib 7.37.2-snapshot.6172 → 7.37.2-snapshot.6187
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 +1 -1
- package/src/components/colorSwatch/index.js +14 -12
- package/src/components/picker/helpers/usePickerMigrationWarnings.d.ts +3 -1
- package/src/components/picker/helpers/usePickerSelection.d.ts +2 -1
- package/src/components/picker/index.d.ts +6 -2
- package/src/components/picker/types.d.ts +2 -6
- package/src/components/switch/index.js +1 -4
- package/src/components/switch/switch.driver.d.ts +1 -2
- package/src/components/switch/switch.driver.js +1 -3
- package/src/incubator/expandableOverlay/index.js +12 -3
- package/src/incubator/toast/index.js +1 -3
- package/src/index.d.ts +1 -1
- package/src/style/colors.js +3 -0
- /package/{demo.js → index.js} +0 -0
package/package.json
CHANGED
|
@@ -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
|
-
|
|
108
|
-
|
|
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} {...
|
|
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 =
|
|
186
|
+
color = DEFAULT_COLOR
|
|
185
187
|
}) {
|
|
186
188
|
return StyleSheet.create({
|
|
187
189
|
container: {
|
|
188
190
|
backgroundColor: color,
|
|
189
|
-
borderWidth: color
|
|
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'
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { PickerProps } from '../types';
|
|
2
|
-
type UsePickerMigrationWarnings = Pick<PickerProps, 'children' | '
|
|
2
|
+
type UsePickerMigrationWarnings = Pick<PickerProps, 'children' | 'getItemLabel' | 'getItemValue' | 'onShow'> & {
|
|
3
|
+
migrate?: boolean;
|
|
4
|
+
};
|
|
3
5
|
declare const usePickerMigrationWarnings: (props: UsePickerMigrationWarnings) => void;
|
|
4
6
|
export default usePickerMigrationWarnings;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { RefObject } from 'react';
|
|
2
2
|
import { PickerProps, PickerValue, PickerSingleValue, PickerMultiValue } from '../types';
|
|
3
|
-
interface UsePickerSelectionProps extends Pick<PickerProps, '
|
|
3
|
+
interface UsePickerSelectionProps extends Pick<PickerProps, 'value' | 'onChange' | 'getItemValue' | 'topBarProps' | 'mode'> {
|
|
4
4
|
pickerExpandableRef: RefObject<any>;
|
|
5
5
|
setSearchValue: (searchValue: string) => void;
|
|
6
|
+
migrate?: boolean;
|
|
6
7
|
}
|
|
7
8
|
declare const usePickerSelection: (props: UsePickerSelectionProps) => {
|
|
8
9
|
multiDraftValue: PickerMultiValue;
|
|
@@ -8,8 +8,12 @@ type PickerStatics = {
|
|
|
8
8
|
fieldTypes: typeof PickerFieldTypes;
|
|
9
9
|
extractPickerItems: typeof extractPickerItems;
|
|
10
10
|
};
|
|
11
|
-
declare const Picker: React.ForwardRefExoticComponent<PickerProps &
|
|
11
|
+
declare const Picker: React.ForwardRefExoticComponent<(PickerProps & {
|
|
12
|
+
migrate?: boolean | undefined;
|
|
13
|
+
}) & React.RefAttributes<unknown>>;
|
|
12
14
|
export { PickerProps, PickerItemProps, PickerValue, PickerModes, PickerFieldTypes, PickerSearchStyle, RenderCustomModalProps, PickerItemsListProps, PickerMethods };
|
|
13
15
|
export { Picker };
|
|
14
|
-
declare const _default: React.ForwardRefExoticComponent<PickerProps &
|
|
16
|
+
declare const _default: React.ForwardRefExoticComponent<(PickerProps & {
|
|
17
|
+
migrate?: boolean | undefined;
|
|
18
|
+
}) & React.RefAttributes<unknown>> & PickerStatics;
|
|
15
19
|
export default _default;
|
|
@@ -34,11 +34,6 @@ export interface PickerSearchStyle {
|
|
|
34
34
|
selectionColor?: string;
|
|
35
35
|
}
|
|
36
36
|
type PickerPropsDeprecation = {
|
|
37
|
-
/**
|
|
38
|
-
* @deprecated
|
|
39
|
-
* Temporary prop required for migration to Picker's new API
|
|
40
|
-
*/
|
|
41
|
-
migrate?: boolean;
|
|
42
37
|
/**
|
|
43
38
|
* @deprecated
|
|
44
39
|
* A function that extract the unique value out of the value prop in case value has a custom structure (e.g. {myValue, myLabel})
|
|
@@ -281,11 +276,12 @@ export interface PickerItemProps extends Pick<TouchableOpacityProps, 'customValu
|
|
|
281
276
|
*/
|
|
282
277
|
testID?: string;
|
|
283
278
|
}
|
|
284
|
-
export interface PickerContextProps extends Pick<PickerProps, '
|
|
279
|
+
export interface PickerContextProps extends Pick<PickerProps, 'value' | 'getItemValue' | 'getItemLabel' | 'renderItem' | 'selectionLimit'> {
|
|
285
280
|
onPress: (value: PickerSingleValue) => void;
|
|
286
281
|
isMultiMode: boolean;
|
|
287
282
|
onSelectedLayout: (event: any) => any;
|
|
288
283
|
selectionLimit: PickerProps['selectionLimit'];
|
|
284
|
+
migrate?: boolean;
|
|
289
285
|
}
|
|
290
286
|
export type PickerItemsListProps = Pick<PropsWithChildren<PickerProps>, 'topBarProps' | 'listProps' | 'renderHeader' | 'useSafeArea' | 'showLoader' | 'customLoaderElement' | 'renderCustomTopElement' | 'showSearch' | 'searchStyle' | 'searchPlaceholder' | 'onSearchChange' | 'renderCustomSearch' | 'children' | 'useWheelPicker' | 'useDialog' | 'mode' | 'testID'> & {
|
|
291
287
|
items?: {
|
|
@@ -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: () =>
|
|
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.
|
|
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
|
};
|
|
@@ -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';
|
package/src/style/colors.js
CHANGED
|
@@ -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
|
}
|
/package/{demo.js → index.js}
RENAMED
|
File without changes
|