@lookiero/checkout 2.2.0 → 2.2.1

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/README.md CHANGED
@@ -45,6 +45,7 @@ Once we can replace the build of Jenkins for NPM one, we are going to be able to
45
45
  "devDependencies": {
46
46
  (...)
47
47
  "pino-std-serializers": "^6.0.0",
48
+ "@types/pino-pretty": "^5.0.0",
48
49
  (...)
49
50
  }
50
51
  }
@@ -77,7 +77,9 @@ const Modal = ({ children, visible, header, footer, portalHostName, onClose, sho
77
77
  showCloseButton && (React.createElement(ButtonIcon, { name: "close", style: { button: customStyle?.closeButton }, onPress: onClose })))),
78
78
  React.createElement(ModalContentView, null,
79
79
  React.createElement(View, { style: {
80
- paddingBottom: safeAreaInsetBottom + (Platform.OS === "web" ? spaceXL : footerHeight),
80
+ paddingBottom: safeAreaInsetBottom +
81
+ (Platform.OS !== "ios" ? spaceXL : 0) +
82
+ (Platform.OS !== "web" ? footerHeight : 0),
81
83
  } }, children)),
82
84
  footer && (React.createElement(Sticky, { style: style.stickyFooter, onLayout: handleOnFooterLayout }, footer))))))))));
83
85
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lookiero/checkout",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [
@@ -80,6 +80,7 @@
80
80
  "@testing-library/react-native": "^11.5.0",
81
81
  "@trivago/prettier-plugin-sort-imports": "^3.3.0",
82
82
  "@types/jest": "^29.2.4",
83
+ "@types/pino-pretty": "^5.0.0",
83
84
  "@types/react": "~18.0.27",
84
85
  "@types/react-dom": "~18.0.10",
85
86
  "@types/react-native": "^0.70.13",