@aws-amplify/ui-react-native 1.2.12 → 1.2.14

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/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @aws-amplify/ui-react-native
2
2
 
3
+ ## 1.2.14
4
+
5
+ ### Patch Changes
6
+
7
+ - [#3654](https://github.com/aws-amplify/amplify-ui/pull/3654) [`579ace564`](https://github.com/aws-amplify/amplify-ui/commit/579ace564ef85c4ec465b4ddfed38587c2669140) Thanks [@calebpollman](https://github.com/calebpollman)! - fix(ui-react-native): remove themed selectionColor from TextField
8
+
9
+ - [#3674](https://github.com/aws-amplify/amplify-ui/pull/3674) [`2ad7c2f5b`](https://github.com/aws-amplify/amplify-ui/commit/2ad7c2f5b9b04b8beb4f1f9746cbdc5d37285851) Thanks [@calebpollman](https://github.com/calebpollman)! - chore(ui-react-native): loosen Authenticator.Container children prop, update docs
10
+
11
+ - Updated dependencies [[`bc3fd6d95`](https://github.com/aws-amplify/amplify-ui/commit/bc3fd6d951b1ab1b188722f59ce04118d04d16af), [`747516159`](https://github.com/aws-amplify/amplify-ui/commit/747516159d504b551dab09cbe8f214fa7b4505df)]:
12
+ - @aws-amplify/ui@5.6.0
13
+ - @aws-amplify/ui-react-core@2.1.19
14
+
15
+ ## 1.2.13
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies [[`fefc4cb3d`](https://github.com/aws-amplify/amplify-ui/commit/fefc4cb3df12d344792b33ad100c6252c9fa2819)]:
20
+ - @aws-amplify/ui@5.5.10
21
+ - @aws-amplify/ui-react-core@2.1.18
22
+
3
23
  ## 1.2.12
4
24
 
5
25
  ### Patch Changes
@@ -6,7 +6,6 @@ export interface ContainerStyles {
6
6
  scrollView?: ViewStyle;
7
7
  }
8
8
  export interface ContainerProps extends ScrollViewProps, Pick<KeyboardAvoidingViewProps, 'behavior' | 'keyboardVerticalOffset'> {
9
- children: React.ReactNode;
10
9
  keyboardAvoidingViewStyle?: StyleProp<ViewStyle>;
11
10
  scrollViewContentContainerStyle?: StyleProp<ViewStyle>;
12
11
  }
@@ -7,7 +7,7 @@ export const TEXTFIELD_CONTAINER_TEST_ID = 'amplify__text-field-container';
7
7
  export const INPUT_CONTAINER_TEST_ID = 'amplify__text-field__input-container';
8
8
  export default function TextField({ accessibilityLabel, accessibilityRole, accessibilityState, accessible = true, autoCapitalize = 'none', disabled, endAccessory, error, errorMessage, errorMessageStyle, fieldStyle, label, labelStyle, style, ...rest }) {
9
9
  const theme = useTheme();
10
- const themedStyle = getThemedStyles(theme);
10
+ const themedStyle = useMemo(() => getThemedStyles(theme), [theme]);
11
11
  const fieldContainerStyle = useMemo(() => ({
12
12
  ...themedStyle.fieldContainer,
13
13
  ...(disabled && themedStyle.disabled),
@@ -17,7 +17,7 @@ export default function TextField({ accessibilityLabel, accessibilityRole, acces
17
17
  {label}
18
18
  </Label>) : null}
19
19
  <View accessible style={fieldContainerStyle} testID={INPUT_CONTAINER_TEST_ID}>
20
- <TextInput {...rest} accessible={accessible} accessibilityLabel={label ? undefined : accessibilityLabel} accessibilityRole={accessibilityRole} accessibilityState={{ disabled, ...accessibilityState }} autoCapitalize={autoCapitalize} editable={!disabled} placeholderTextColor={theme.tokens.colors.font.tertiary} selectionColor={theme.tokens.colors.font.primary} style={[themedStyle.field, fieldStyle]}/>
20
+ <TextInput {...rest} accessible={accessible} accessibilityLabel={label ? undefined : accessibilityLabel} accessibilityRole={accessibilityRole} accessibilityState={{ disabled, ...accessibilityState }} autoCapitalize={autoCapitalize} editable={!disabled} placeholderTextColor={theme.tokens.colors.font.tertiary} style={[themedStyle.field, fieldStyle]}/>
21
21
  {endAccessory ?? null}
22
22
  </View>
23
23
  {error && errorMessage ? (<Label style={errorMessageStyle}>{errorMessage}</Label>) : null}
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const VERSION = "1.2.12";
1
+ export declare const VERSION = "1.2.14";
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const VERSION = '1.2.12';
1
+ export const VERSION = '1.2.14';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-amplify/ui-react-native",
3
- "version": "1.2.12",
3
+ "version": "1.2.14",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -37,8 +37,8 @@
37
37
  "rimraf": "^3.0.2"
38
38
  },
39
39
  "dependencies": {
40
- "@aws-amplify/ui": "5.5.9",
41
- "@aws-amplify/ui-react-core": "2.1.17"
40
+ "@aws-amplify/ui": "5.6.0",
41
+ "@aws-amplify/ui-react-core": "2.1.19"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "aws-amplify": ">= 5.0.1",
@@ -96,7 +96,6 @@ Array [
96
96
  onChangeText={[Function]}
97
97
  placeholder="Code"
98
98
  placeholderTextColor="hsl(210, 10%, 40%)"
99
- selectionColor="hsl(210, 50%, 10%)"
100
99
  style={
101
100
  Array [
102
101
  Object {
@@ -181,7 +180,6 @@ Array [
181
180
  placeholder="New Password"
182
181
  placeholderTextColor="hsl(210, 10%, 40%)"
183
182
  secureTextEntry={true}
184
- selectionColor="hsl(210, 50%, 10%)"
185
183
  style={
186
184
  Array [
187
185
  Object {
@@ -330,7 +328,6 @@ Array [
330
328
  placeholder="Confirm Password"
331
329
  placeholderTextColor="hsl(210, 10%, 40%)"
332
330
  secureTextEntry={true}
333
- selectionColor="hsl(210, 50%, 10%)"
334
331
  style={
335
332
  Array [
336
333
  Object {
@@ -664,7 +661,6 @@ Array [
664
661
  onChangeText={[Function]}
665
662
  placeholder="Code"
666
663
  placeholderTextColor="hsl(210, 10%, 40%)"
667
- selectionColor="hsl(210, 50%, 10%)"
668
664
  style={
669
665
  Array [
670
666
  Object {
@@ -749,7 +745,6 @@ Array [
749
745
  placeholder="New Password"
750
746
  placeholderTextColor="hsl(210, 10%, 40%)"
751
747
  secureTextEntry={true}
752
- selectionColor="hsl(210, 50%, 10%)"
753
748
  style={
754
749
  Array [
755
750
  Object {
@@ -898,7 +893,6 @@ Array [
898
893
  placeholder="Confirm Password"
899
894
  placeholderTextColor="hsl(210, 10%, 40%)"
900
895
  secureTextEntry={true}
901
- selectionColor="hsl(210, 50%, 10%)"
902
896
  style={
903
897
  Array [
904
898
  Object {
@@ -96,7 +96,6 @@ Array [
96
96
  onChangeText={[Function]}
97
97
  placeholder="Code"
98
98
  placeholderTextColor="hsl(210, 10%, 40%)"
99
- selectionColor="hsl(210, 50%, 10%)"
100
99
  style={
101
100
  Array [
102
101
  Object {
@@ -375,7 +374,6 @@ Array [
375
374
  onChangeText={[Function]}
376
375
  placeholder="Code"
377
376
  placeholderTextColor="hsl(210, 10%, 40%)"
378
- selectionColor="hsl(210, 50%, 10%)"
379
377
  style={
380
378
  Array [
381
379
  Object {
@@ -73,7 +73,6 @@ Array [
73
73
  onChangeText={[Function]}
74
74
  placeholderTextColor="hsl(210, 10%, 40%)"
75
75
  secureTextEntry={true}
76
- selectionColor="hsl(210, 50%, 10%)"
77
76
  style={
78
77
  Array [
79
78
  Object {
@@ -393,7 +392,6 @@ Array [
393
392
  onChangeText={[Function]}
394
393
  placeholderTextColor="hsl(210, 10%, 40%)"
395
394
  secureTextEntry={true}
396
- selectionColor="hsl(210, 50%, 10%)"
397
395
  style={
398
396
  Array [
399
397
  Object {
@@ -656,7 +654,6 @@ Array [
656
654
  onChangeText={[Function]}
657
655
  placeholderTextColor="hsl(210, 10%, 40%)"
658
656
  secureTextEntry={true}
659
- selectionColor="hsl(210, 50%, 10%)"
660
657
  style={
661
658
  Array [
662
659
  Object {
@@ -96,7 +96,6 @@ Array [
96
96
  onChangeText={[Function]}
97
97
  placeholder="Username"
98
98
  placeholderTextColor="hsl(210, 10%, 40%)"
99
- selectionColor="hsl(210, 50%, 10%)"
100
99
  style={
101
100
  Array [
102
101
  Object {
@@ -375,7 +374,6 @@ Array [
375
374
  onChangeText={[Function]}
376
375
  placeholder="Username"
377
376
  placeholderTextColor="hsl(210, 10%, 40%)"
378
- selectionColor="hsl(210, 50%, 10%)"
379
377
  style={
380
378
  Array [
381
379
  Object {
@@ -141,7 +141,6 @@ Array [
141
141
  onChangeText={[Function]}
142
142
  placeholder="Code"
143
143
  placeholderTextColor="hsl(210, 10%, 40%)"
144
- selectionColor="hsl(210, 50%, 10%)"
145
144
  style={
146
145
  Array [
147
146
  Object {
@@ -465,7 +464,6 @@ Array [
465
464
  onChangeText={[Function]}
466
465
  placeholder="Code"
467
466
  placeholderTextColor="hsl(210, 10%, 40%)"
468
- selectionColor="hsl(210, 50%, 10%)"
469
467
  style={
470
468
  Array [
471
469
  Object {
@@ -96,7 +96,6 @@ Array [
96
96
  onChangeText={[Function]}
97
97
  placeholder="Username"
98
98
  placeholderTextColor="hsl(210, 10%, 40%)"
99
- selectionColor="hsl(210, 50%, 10%)"
100
99
  style={
101
100
  Array [
102
101
  Object {
@@ -181,7 +180,6 @@ Array [
181
180
  placeholder="Password"
182
181
  placeholderTextColor="hsl(210, 10%, 40%)"
183
182
  secureTextEntry={true}
184
- selectionColor="hsl(210, 50%, 10%)"
185
183
  style={
186
184
  Array [
187
185
  Object {
@@ -514,7 +512,6 @@ Array [
514
512
  onChangeText={[Function]}
515
513
  placeholder="Username"
516
514
  placeholderTextColor="hsl(210, 10%, 40%)"
517
- selectionColor="hsl(210, 50%, 10%)"
518
515
  style={
519
516
  Array [
520
517
  Object {
@@ -599,7 +596,6 @@ Array [
599
596
  placeholder="Password"
600
597
  placeholderTextColor="hsl(210, 10%, 40%)"
601
598
  secureTextEntry={true}
602
- selectionColor="hsl(210, 50%, 10%)"
603
599
  style={
604
600
  Array [
605
601
  Object {
@@ -884,7 +880,6 @@ Array [
884
880
  onChangeText={[Function]}
885
881
  placeholder="Username"
886
882
  placeholderTextColor="hsl(210, 10%, 40%)"
887
- selectionColor="hsl(210, 50%, 10%)"
888
883
  style={
889
884
  Array [
890
885
  Object {
@@ -969,7 +964,6 @@ Array [
969
964
  placeholder="Password"
970
965
  placeholderTextColor="hsl(210, 10%, 40%)"
971
966
  secureTextEntry={true}
972
- selectionColor="hsl(210, 50%, 10%)"
973
967
  style={
974
968
  Array [
975
969
  Object {
@@ -96,7 +96,6 @@ Array [
96
96
  onChangeText={[Function]}
97
97
  placeholder="Username"
98
98
  placeholderTextColor="hsl(210, 10%, 40%)"
99
- selectionColor="hsl(210, 50%, 10%)"
100
99
  style={
101
100
  Array [
102
101
  Object {
@@ -181,7 +180,6 @@ Array [
181
180
  placeholder="Password"
182
181
  placeholderTextColor="hsl(210, 10%, 40%)"
183
182
  secureTextEntry={true}
184
- selectionColor="hsl(210, 50%, 10%)"
185
183
  style={
186
184
  Array [
187
185
  Object {
@@ -330,7 +328,6 @@ Array [
330
328
  placeholder="Confirm Password"
331
329
  placeholderTextColor="hsl(210, 10%, 40%)"
332
330
  secureTextEntry={true}
333
- selectionColor="hsl(210, 50%, 10%)"
334
331
  style={
335
332
  Array [
336
333
  Object {
@@ -482,7 +479,6 @@ Array [
482
479
  onChangeText={[Function]}
483
480
  placeholder="Phone"
484
481
  placeholderTextColor="hsl(210, 10%, 40%)"
485
- selectionColor="hsl(210, 50%, 10%)"
486
482
  style={
487
483
  Array [
488
484
  Object {
@@ -706,7 +702,6 @@ Array [
706
702
  onChangeText={[Function]}
707
703
  placeholder="Username"
708
704
  placeholderTextColor="hsl(210, 10%, 40%)"
709
- selectionColor="hsl(210, 50%, 10%)"
710
705
  style={
711
706
  Array [
712
707
  Object {
@@ -791,7 +786,6 @@ Array [
791
786
  placeholder="Password"
792
787
  placeholderTextColor="hsl(210, 10%, 40%)"
793
788
  secureTextEntry={true}
794
- selectionColor="hsl(210, 50%, 10%)"
795
789
  style={
796
790
  Array [
797
791
  Object {
@@ -940,7 +934,6 @@ Array [
940
934
  placeholder="Confirm Password"
941
935
  placeholderTextColor="hsl(210, 10%, 40%)"
942
936
  secureTextEntry={true}
943
- selectionColor="hsl(210, 50%, 10%)"
944
937
  style={
945
938
  Array [
946
939
  Object {
@@ -1092,7 +1085,6 @@ Array [
1092
1085
  onChangeText={[Function]}
1093
1086
  placeholder="Phone"
1094
1087
  placeholderTextColor="hsl(210, 10%, 40%)"
1095
- selectionColor="hsl(210, 50%, 10%)"
1096
1088
  style={
1097
1089
  Array [
1098
1090
  Object {
@@ -1259,7 +1251,6 @@ Array [
1259
1251
  onChangeText={[Function]}
1260
1252
  placeholder="Username"
1261
1253
  placeholderTextColor="hsl(210, 10%, 40%)"
1262
- selectionColor="hsl(210, 50%, 10%)"
1263
1254
  style={
1264
1255
  Array [
1265
1256
  Object {
@@ -1345,7 +1336,6 @@ Array [
1345
1336
  placeholder="Password"
1346
1337
  placeholderTextColor="hsl(210, 10%, 40%)"
1347
1338
  secureTextEntry={true}
1348
- selectionColor="hsl(210, 50%, 10%)"
1349
1339
  style={
1350
1340
  Array [
1351
1341
  Object {
@@ -1497,7 +1487,6 @@ Array [
1497
1487
  placeholder="Confirm Password"
1498
1488
  placeholderTextColor="hsl(210, 10%, 40%)"
1499
1489
  secureTextEntry={true}
1500
- selectionColor="hsl(210, 50%, 10%)"
1501
1490
  style={
1502
1491
  Array [
1503
1492
  Object {
@@ -1652,7 +1641,6 @@ Array [
1652
1641
  onChangeText={[Function]}
1653
1642
  placeholder="Phone"
1654
1643
  placeholderTextColor="hsl(210, 10%, 40%)"
1655
- selectionColor="hsl(210, 50%, 10%)"
1656
1644
  style={
1657
1645
  Array [
1658
1646
  Object {
@@ -1876,7 +1864,6 @@ Array [
1876
1864
  onChangeText={[Function]}
1877
1865
  placeholder="Username"
1878
1866
  placeholderTextColor="hsl(210, 10%, 40%)"
1879
- selectionColor="hsl(210, 50%, 10%)"
1880
1867
  style={
1881
1868
  Array [
1882
1869
  Object {
@@ -1961,7 +1948,6 @@ Array [
1961
1948
  placeholder="Password"
1962
1949
  placeholderTextColor="hsl(210, 10%, 40%)"
1963
1950
  secureTextEntry={true}
1964
- selectionColor="hsl(210, 50%, 10%)"
1965
1951
  style={
1966
1952
  Array [
1967
1953
  Object {
@@ -2110,7 +2096,6 @@ Array [
2110
2096
  placeholder="Confirm Password"
2111
2097
  placeholderTextColor="hsl(210, 10%, 40%)"
2112
2098
  secureTextEntry={true}
2113
- selectionColor="hsl(210, 50%, 10%)"
2114
2099
  style={
2115
2100
  Array [
2116
2101
  Object {
@@ -2262,7 +2247,6 @@ Array [
2262
2247
  onChangeText={[Function]}
2263
2248
  placeholder="Phone"
2264
2249
  placeholderTextColor="hsl(210, 10%, 40%)"
2265
- selectionColor="hsl(210, 50%, 10%)"
2266
2250
  style={
2267
2251
  Array [
2268
2252
  Object {
@@ -2545,7 +2529,6 @@ Array [
2545
2529
  onChangeText={[Function]}
2546
2530
  placeholder="Username"
2547
2531
  placeholderTextColor="hsl(210, 10%, 40%)"
2548
- selectionColor="hsl(210, 50%, 10%)"
2549
2532
  style={
2550
2533
  Array [
2551
2534
  Object {
@@ -2660,7 +2643,6 @@ Array [
2660
2643
  placeholder="Password"
2661
2644
  placeholderTextColor="hsl(210, 10%, 40%)"
2662
2645
  secureTextEntry={true}
2663
- selectionColor="hsl(210, 50%, 10%)"
2664
2646
  style={
2665
2647
  Array [
2666
2648
  Object {
@@ -2812,7 +2794,6 @@ Array [
2812
2794
  placeholder="Confirm Password"
2813
2795
  placeholderTextColor="hsl(210, 10%, 40%)"
2814
2796
  secureTextEntry={true}
2815
- selectionColor="hsl(210, 50%, 10%)"
2816
2797
  style={
2817
2798
  Array [
2818
2799
  Object {
@@ -2967,7 +2948,6 @@ Array [
2967
2948
  onChangeText={[Function]}
2968
2949
  placeholder="Phone"
2969
2950
  placeholderTextColor="hsl(210, 10%, 40%)"
2970
- selectionColor="hsl(210, 50%, 10%)"
2971
2951
  style={
2972
2952
  Array [
2973
2953
  Object {
@@ -27,7 +27,7 @@ const TestComponent = () => {
27
27
  return null;
28
28
  };
29
29
 
30
- function Container({ children }: { children: React.ReactNode }) {
30
+ function Container({ children }: { children?: React.ReactNode }) {
31
31
  return <View testID={CONTAINER_TEST_ID}>{children}</View>;
32
32
  }
33
33
 
@@ -15,7 +15,6 @@ export interface ContainerStyles {
15
15
  export interface ContainerProps
16
16
  extends ScrollViewProps,
17
17
  Pick<KeyboardAvoidingViewProps, 'behavior' | 'keyboardVerticalOffset'> {
18
- children: React.ReactNode;
19
18
  keyboardAvoidingViewStyle?: StyleProp<ViewStyle>;
20
19
  scrollViewContentContainerStyle?: StyleProp<ViewStyle>;
21
20
  }
@@ -68,7 +68,6 @@ exports[`PasswordField applies theme and style props 1`] = `
68
68
  editable={true}
69
69
  placeholderTextColor="hsl(210, 10%, 40%)"
70
70
  secureTextEntry={true}
71
- selectionColor="hsl(210, 50%, 10%)"
72
71
  style={
73
72
  Array [
74
73
  Object {
@@ -202,7 +201,6 @@ exports[`PasswordField renders as expected 1`] = `
202
201
  editable={true}
203
202
  placeholderTextColor="hsl(210, 10%, 40%)"
204
203
  secureTextEntry={true}
205
- selectionColor="hsl(210, 50%, 10%)"
206
204
  style={
207
205
  Array [
208
206
  Object {
@@ -335,7 +333,6 @@ exports[`PasswordField renders as expected when disabled 1`] = `
335
333
  editable={false}
336
334
  placeholderTextColor="hsl(210, 10%, 40%)"
337
335
  secureTextEntry={true}
338
- selectionColor="hsl(210, 50%, 10%)"
339
336
  style={
340
337
  Array [
341
338
  Object {
@@ -474,7 +471,6 @@ exports[`PasswordField should be able to hide show password icon 1`] = `
474
471
  editable={true}
475
472
  placeholderTextColor="hsl(210, 10%, 40%)"
476
473
  secureTextEntry={true}
477
- selectionColor="hsl(210, 50%, 10%)"
478
474
  style={
479
475
  Array [
480
476
  Object {
@@ -558,7 +554,6 @@ exports[`PasswordField should be able to obscure text programmatically 1`] = `
558
554
  editable={true}
559
555
  placeholderTextColor="hsl(210, 10%, 40%)"
560
556
  secureTextEntry={false}
561
- selectionColor="hsl(210, 50%, 10%)"
562
557
  style={
563
558
  Array [
564
559
  Object {
@@ -40,7 +40,6 @@ exports[`PhoneNumberField applies theming 1`] = `
40
40
  editable={true}
41
41
  keyboardType="phone-pad"
42
42
  placeholderTextColor="hsl(210, 10%, 40%)"
43
- selectionColor="hsl(210, 50%, 10%)"
44
43
  style={
45
44
  Array [
46
45
  Object {
@@ -101,7 +100,6 @@ exports[`PhoneNumberField renders as expected 1`] = `
101
100
  editable={true}
102
101
  keyboardType="phone-pad"
103
102
  placeholderTextColor="hsl(210, 10%, 40%)"
104
- selectionColor="hsl(210, 50%, 10%)"
105
103
  style={
106
104
  Array [
107
105
  Object {
@@ -163,7 +161,6 @@ exports[`PhoneNumberField renders as expected when disabled 1`] = `
163
161
  editable={false}
164
162
  keyboardType="phone-pad"
165
163
  placeholderTextColor="hsl(210, 10%, 40%)"
166
- selectionColor="hsl(210, 50%, 10%)"
167
164
  style={
168
165
  Array [
169
166
  Object {
@@ -27,7 +27,7 @@ export default function TextField({
27
27
  ...rest
28
28
  }: TextFieldProps): JSX.Element {
29
29
  const theme = useTheme();
30
- const themedStyle = getThemedStyles(theme);
30
+ const themedStyle = useMemo(() => getThemedStyles(theme), [theme]);
31
31
 
32
32
  const fieldContainerStyle: ViewStyle = useMemo(
33
33
  () => ({
@@ -64,7 +64,6 @@ export default function TextField({
64
64
  autoCapitalize={autoCapitalize}
65
65
  editable={!disabled}
66
66
  placeholderTextColor={theme.tokens.colors.font.tertiary}
67
- selectionColor={theme.tokens.colors.font.primary}
68
67
  style={[themedStyle.field, fieldStyle]}
69
68
  />
70
69
  {endAccessory ?? null}
@@ -63,7 +63,6 @@ exports[`TextField doesn't render the errorMessage if error prop is false 1`] =
63
63
  editable={true}
64
64
  placeholder="Placeholder"
65
65
  placeholderTextColor="hsl(210, 10%, 40%)"
66
- selectionColor="hsl(210, 50%, 10%)"
67
66
  style={
68
67
  Array [
69
68
  Object {
@@ -144,7 +143,6 @@ exports[`TextField doesn't render the errorMessage if errorMessage prop is undef
144
143
  editable={true}
145
144
  placeholder="Placeholder"
146
145
  placeholderTextColor="hsl(210, 10%, 40%)"
147
- selectionColor="hsl(210, 50%, 10%)"
148
146
  style={
149
147
  Array [
150
148
  Object {
@@ -225,7 +223,6 @@ exports[`TextField renders as expected 1`] = `
225
223
  editable={true}
226
224
  placeholder="Placeholder"
227
225
  placeholderTextColor="hsl(210, 10%, 40%)"
228
- selectionColor="hsl(210, 50%, 10%)"
229
226
  style={
230
227
  Array [
231
228
  Object {
@@ -307,7 +304,6 @@ exports[`TextField renders as expected as password field 1`] = `
307
304
  placeholder="Placeholder"
308
305
  placeholderTextColor="hsl(210, 10%, 40%)"
309
306
  secureTextEntry={true}
310
- selectionColor="hsl(210, 50%, 10%)"
311
307
  style={
312
308
  Array [
313
309
  Object {
@@ -389,7 +385,6 @@ exports[`TextField renders as expected when disabled 1`] = `
389
385
  editable={false}
390
386
  placeholder="Placeholder"
391
387
  placeholderTextColor="hsl(210, 10%, 40%)"
392
- selectionColor="hsl(210, 50%, 10%)"
393
388
  style={
394
389
  Array [
395
390
  Object {
@@ -470,7 +465,6 @@ exports[`TextField renders as expected with error message 1`] = `
470
465
  editable={true}
471
466
  placeholder="Placeholder"
472
467
  placeholderTextColor="hsl(210, 10%, 40%)"
473
- selectionColor="hsl(210, 50%, 10%)"
474
468
  style={
475
469
  Array [
476
470
  Object {
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '1.2.12';
1
+ export const VERSION = '1.2.14';