@lookiero/checkout 8.3.0 → 8.5.0

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.
@@ -18,7 +18,7 @@ const InputField = ({ label, placeholder, value, multiline = false, error, style
18
18
  field: [style.field, customStyle?.field],
19
19
  fieldText: [{ color }, customStyle?.fieldText],
20
20
  } }),
21
- React.createElement(Input, { multiline: multiline, multilineMaxHeight: 242, placeholder: placeholder, placeholderTextColor: isFocused ? colorTextMedium : colorBgBase, style: [!!icon && { paddingRight: inputPaddingRightWithIcon }, style.input, { color }], testID: testID, value: value, onBlur: handleOnBlur,
21
+ React.createElement(Input, { autoCapitalize: "sentences", multiline: multiline, multilineMaxHeight: 242, placeholder: placeholder, placeholderTextColor: isFocused ? colorTextMedium : colorBgBase, style: [!!icon && { paddingRight: inputPaddingRightWithIcon }, style.input, { color }], testID: testID, value: value, onBlur: handleOnBlur,
22
22
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment
23
23
  // @ts-ignore
24
24
  onChange: handleOnChange, onFocus: handleOnFocus, ...inputRestProps }),
@@ -1 +1 @@
1
- export declare const VERSION = "8.3.0";
1
+ export declare const VERSION = "8.5.0";
@@ -1 +1 @@
1
- export const VERSION = "8.3.0";
1
+ export const VERSION = "8.5.0";
package/jest.setup.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import mockAsyncStorage from "@react-native-async-storage/async-storage/jest/async-storage-mock";
2
+ import "@testing-library/jest-native/extend-expect";
2
3
  import "@lookiero/sty-psp-jest-config/jest.setup.base";
3
- import '@testing-library/jest-native/extend-expect';
4
4
 
5
5
  require("react-native-reanimated").setUpTests();
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lookiero/checkout",
3
- "version": "8.3.0",
3
+ "version": "8.5.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "sideEffects": "false",
@@ -18,15 +18,15 @@
18
18
  "@lookiero/sty-psp-ab-testing": "^0.2.2",
19
19
  "@lookiero/sty-psp-expo-config": "^0.1.0",
20
20
  "@lookiero/sty-psp-http": "^2.0.0",
21
- "@lookiero/sty-psp-i18n": "^0.2.0",
21
+ "@lookiero/sty-psp-i18n": "^0.2.1",
22
22
  "@lookiero/sty-psp-locale": "^0.4.0",
23
23
  "@lookiero/sty-psp-logging": "^0.2.2",
24
- "@lookiero/sty-psp-notifications": "^0.5.9",
24
+ "@lookiero/sty-psp-notifications": "^0.5.10",
25
25
  "@lookiero/sty-psp-react-native": "^0.2.0",
26
26
  "@lookiero/sty-psp-segment": "^0.1.1",
27
27
  "@lookiero/sty-psp-storage": "^0.1.3",
28
28
  "@lookiero/sty-psp-tracking": "^0.1.9",
29
- "@lookiero/sty-psp-ui": "^0.5.6",
29
+ "@lookiero/sty-psp-ui": "^0.5.7",
30
30
  "@lookiero/sty-psp-ui-settings": "^0.1.1",
31
31
  "@lookiero/sty-psp-units": "^0.1.1",
32
32
  "@lookiero/sty-psp-uuid": "^0.1.0",
@@ -72,6 +72,7 @@ const InputField: FC<InputFieldProps> = ({
72
72
  }}
73
73
  />
74
74
  <Input
75
+ autoCapitalize="sentences"
75
76
  multiline={multiline}
76
77
  multilineMaxHeight={242}
77
78
  placeholder={placeholder}
@@ -112,7 +112,7 @@ exports[`InputField molecule matches the snapshot 1`] = `
112
112
  </View>
113
113
  <TextInput
114
114
  allowFontScaling={false}
115
- autoCapitalize="none"
115
+ autoCapitalize="sentences"
116
116
  autoCorrect={true}
117
117
  editable={true}
118
118
  keyboardType="default"