@lookiero/checkout 12.8.0 → 12.10.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.
@@ -1,12 +1,12 @@
1
1
  import { FC } from "react";
2
- import { ImageStyle, StyleProp } from "react-native";
2
+ import { StyleProp, ViewStyle } from "react-native";
3
3
  import { Country } from "@lookiero/sty-psp-locale";
4
4
  import { CheckoutItemStatus } from "../../../../../../domain/checkoutItem/model/checkoutItem";
5
5
  import { ColorProjection, MediaProjection } from "../../../../../../projection/checkoutItem/checkoutItem";
6
6
  import { PriceProjection } from "../../../../../../projection/price/price";
7
7
  import { SizeProjection } from "../../../../../../projection/size/size";
8
8
  interface ProductVariantStyle {
9
- readonly image: StyleProp<ImageStyle>;
9
+ readonly image: StyleProp<ViewStyle>;
10
10
  }
11
11
  interface ProductVariantProps {
12
12
  readonly media: MediaProjection[];
@@ -1 +1 @@
1
- export declare const VERSION = "12.8.0";
1
+ export declare const VERSION = "12.10.0";
@@ -1 +1 @@
1
- export const VERSION = "12.8.0";
1
+ export const VERSION = "12.10.0";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lookiero/checkout",
3
- "version": "12.8.0",
3
+ "version": "12.10.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "sideEffects": "false",
@@ -27,13 +27,13 @@
27
27
  "@lookiero/sty-psp-i18n": "^1.1",
28
28
  "@lookiero/sty-psp-locale": "^1.0",
29
29
  "@lookiero/sty-psp-logging": "^1.0",
30
- "@lookiero/sty-psp-notifications": "^2.2",
30
+ "@lookiero/sty-psp-notifications": "^2.4",
31
31
  "@lookiero/sty-psp-react-native": "^1.0",
32
32
  "@lookiero/sty-psp-segment": "^0.1",
33
33
  "@lookiero/sty-psp-storage": "^0.2",
34
34
  "@lookiero/sty-psp-tracking": "^2.1",
35
35
  "@lookiero/sty-psp-ui-settings": "^1.0",
36
- "@lookiero/sty-psp-ui": "^2.1",
36
+ "@lookiero/sty-psp-ui": "^2.3",
37
37
  "@lookiero/sty-psp-units": "^0.1",
38
38
  "@lookiero/sty-psp-uuid": "^0.2",
39
39
  "@lookiero/sty-sp-tradename": "^1.0",
@@ -1,6 +1,6 @@
1
1
  /* eslint-disable react/prop-types */
2
2
  import React, { useCallback, useMemo } from "react";
3
- import { TouchableHighlight, ViewStyle } from "react-native";
3
+ import { TouchableHighlight } from "react-native";
4
4
  import { Text } from "@lookiero/aurora";
5
5
  import { useI18nMessage } from "@lookiero/i18n-react";
6
6
  import { ReturnQuestionType } from "../../../../../../../projection/returnQuestion/returnQuestion.constants";
@@ -32,7 +32,7 @@ const OptionReturnQuestionItem: ReturnQuestionItem<ReturnQuestionType.OPTION> =
32
32
  underlayColor={style.containerUnderlayColor}
33
33
  onPress={handleOnPress}
34
34
  >
35
- <Text level={3} style={style.text as ViewStyle}>
35
+ <Text level={3} style={style.text}>
36
36
  {optionText}
37
37
  </Text>
38
38
  </TouchableHighlight>
@@ -1,5 +1,5 @@
1
1
  import React, { FC, useMemo } from "react";
2
- import { ImageStyle, Pressable, StyleProp, View } from "react-native";
2
+ import { Pressable, StyleProp, View, ViewStyle } from "react-native";
3
3
  import { Text } from "@lookiero/aurora";
4
4
  import { useI18nMessage } from "@lookiero/i18n-react";
5
5
  import { Country } from "@lookiero/sty-psp-locale";
@@ -14,7 +14,7 @@ import { COLOR_I18N_PREFIX, DOMAIN, I18nMessages } from "../../../../i18n/i18n";
14
14
  import { IMAGE_WIDTH, style as productVariantStyle } from "./ProductVariant.style";
15
15
 
16
16
  interface ProductVariantStyle {
17
- readonly image: StyleProp<ImageStyle>;
17
+ readonly image: StyleProp<ViewStyle>;
18
18
  }
19
19
 
20
20
  interface ProductVariantProps {