@artsy/palette-mobile 13.0.7 → 13.0.8

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,3 +1,19 @@
1
+ # v13.0.8 (Thu Sep 14 2023)
2
+
3
+ :tada: This release contains work from a new contributor! :tada:
4
+
5
+ Thank you, Anandaroop Roy ([@anandaroop](https://github.com/anandaroop)), for all your work!
6
+
7
+ #### 🐛 Bug Fix
8
+
9
+ - fix(image): set default Gemini resize mode to `fill` [#149](https://github.com/artsy/palette-mobile/pull/149) ([@anandaroop](https://github.com/anandaroop))
10
+
11
+ #### Authors: 1
12
+
13
+ - Anandaroop Roy ([@anandaroop](https://github.com/anandaroop))
14
+
15
+ ---
16
+
1
17
  # v13.0.7 (Tue Sep 12 2023)
2
18
 
3
19
  #### 🐛 Bug Fix
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.createGeminiUrl = void 0;
4
4
  const react_native_1 = require("react-native");
5
- function createGeminiUrl({ imageURL, width, height, geminiHost = "d7hftxdivxxvm.cloudfront.net", imageQuality = 80, resizeMode = "fit", }) {
5
+ function createGeminiUrl({ imageURL, width, height, geminiHost = "d7hftxdivxxvm.cloudfront.net", imageQuality = 80, resizeMode = "fill", }) {
6
6
  const src = encodeURIComponent(imageURL);
7
7
  const roundedHeight = Math.round(height);
8
8
  const roundedWidth = Math.round(width);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/palette-mobile",
3
- "version": "13.0.7",
3
+ "version": "13.0.8",
4
4
  "description": "Artsy's design system for React Native",
5
5
  "scripts": {
6
6
  "android": "react-native run-android",