@utilitywarehouse/hearth-react-native 0.34.3 → 0.34.4

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,13 @@
1
1
  # @utilitywarehouse/hearth-react-native
2
2
 
3
+ ## 0.34.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1375](https://github.com/utilitywarehouse/hearth/pull/1375) [`549739e`](https://github.com/utilitywarehouse/hearth/commit/549739eae90e467dbe2311dbc60cfd35d13f49c4) Thanks [@declanelcocks](https://github.com/declanelcocks)! - 🐛 [FIX]: `Modal` image container children pushed to bottom, and missing gap between image and heading
8
+
9
+ `imageContainer` had `flex: 1` applied, which caused `children` to be pushed to the bottom of the container. Additionally, the gap between the `image` and the `heading` was missing.
10
+
3
11
  ## 0.34.3
4
12
 
5
13
  ### Patch Changes
@@ -171,7 +171,7 @@ const styles = StyleSheet.create((theme, rt) => ({
171
171
  },
172
172
  imageContainer: {
173
173
  alignItems: 'center',
174
- flex: 1,
174
+ gap: theme.components.modal.content.gap,
175
175
  },
176
176
  textContent: {
177
177
  gap: theme.components.modal.content.gap,
@@ -9,6 +9,14 @@ import { BackToTopButton, NextPrevPage } from './components';
9
9
  The changelog for the Hearth React Native library. Here you can find all the changes, improvements, and bug fixes for each version.
10
10
 
11
11
 
12
+ ## 0.34.4
13
+
14
+ ### Patch Changes
15
+
16
+ - [#1375](https://github.com/utilitywarehouse/hearth/pull/1375) [`549739e`](https://github.com/utilitywarehouse/hearth/commit/549739eae90e467dbe2311dbc60cfd35d13f49c4) Thanks [@declanelcocks](https://github.com/declanelcocks)! - 🐛 [FIX]: `Modal` image container children pushed to bottom, and missing gap between image and heading
17
+
18
+ `imageContainer` had `flex: 1` applied, which caused `children` to be pushed to the bottom of the container. Additionally, the gap between the `image` and the `heading` was missing.
19
+
12
20
  ## 0.34.3
13
21
 
14
22
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@utilitywarehouse/hearth-react-native",
3
- "version": "0.34.3",
3
+ "version": "0.34.4",
4
4
  "description": "Utility Warehouse React Native UI library",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -363,7 +363,7 @@ const styles = StyleSheet.create((theme, rt) => ({
363
363
  },
364
364
  imageContainer: {
365
365
  alignItems: 'center',
366
- flex: 1,
366
+ gap: theme.components.modal.content.gap,
367
367
  },
368
368
  textContent: {
369
369
  gap: theme.components.modal.content.gap,