@jobber/components-native 0.73.2 → 0.73.3
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/dist/package.json +2 -2
- package/dist/src/Select/Select.js +2 -3
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/Select/Select.tsx +1 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jobber/components-native",
|
|
3
|
-
"version": "0.73.
|
|
3
|
+
"version": "0.73.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "React Native implementation of Atlantis",
|
|
6
6
|
"repository": {
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"react-native-safe-area-context": "^4.5.2",
|
|
80
80
|
"react-native-svg": ">=12.0.0"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "c222024abdad555a2180c6732f55b1a42f6cda94"
|
|
83
83
|
}
|
package/src/Select/Select.tsx
CHANGED
|
@@ -133,6 +133,7 @@ export function Select({
|
|
|
133
133
|
styleOverride={{
|
|
134
134
|
container: { paddingLeft: undefined },
|
|
135
135
|
}}
|
|
136
|
+
assistiveText={assistiveText}
|
|
136
137
|
>
|
|
137
138
|
<View
|
|
138
139
|
testID={getTestID(testID)}
|
|
@@ -174,16 +175,6 @@ export function Select({
|
|
|
174
175
|
</View>
|
|
175
176
|
</View>
|
|
176
177
|
</SelectInternalPicker>
|
|
177
|
-
|
|
178
|
-
{assistiveText && (
|
|
179
|
-
<Text
|
|
180
|
-
level="textSupporting"
|
|
181
|
-
variation={textVariation}
|
|
182
|
-
hideFromScreenReader={true}
|
|
183
|
-
>
|
|
184
|
-
{assistiveText}
|
|
185
|
-
</Text>
|
|
186
|
-
)}
|
|
187
178
|
</View>
|
|
188
179
|
</InputFieldWrapper>
|
|
189
180
|
);
|