@sudobility/building_blocks_rn 0.0.26 → 0.0.27

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.
@@ -30,11 +30,13 @@ const useStyles = createThemedStyles(colors => ({
30
30
  fontWeight: '700',
31
31
  color: colors.text,
32
32
  marginBottom: 8,
33
+ alignSelf: 'flex-start',
33
34
  },
34
35
  lastUpdated: {
35
36
  fontSize: 14,
36
37
  color: colors.textMuted,
37
38
  marginBottom: 24,
39
+ alignSelf: 'flex-start',
38
40
  },
39
41
  section: {
40
42
  marginBottom: 24,
@@ -45,25 +47,30 @@ const useStyles = createThemedStyles(colors => ({
45
47
  fontWeight: '600',
46
48
  color: colors.text,
47
49
  marginBottom: 8,
50
+ alignSelf: 'flex-start',
48
51
  },
49
52
  subsectionTitle: {
50
53
  fontSize: 17,
51
54
  fontWeight: '600',
52
55
  color: colors.text,
53
56
  marginBottom: 6,
57
+ alignSelf: 'flex-start',
54
58
  },
55
59
  sectionContent: {
56
60
  fontSize: 15,
57
61
  lineHeight: 22,
58
62
  color: colors.textSecondary,
63
+ alignSelf: 'flex-start',
59
64
  },
60
65
  list: {
61
66
  marginTop: 8,
62
67
  gap: 6,
68
+ alignSelf: 'stretch',
63
69
  },
64
70
  listItem: {
65
71
  flexDirection: 'row',
66
72
  paddingStart: 8,
73
+ alignSelf: 'flex-start',
67
74
  },
68
75
  bullet: {
69
76
  fontSize: 15,
@@ -88,11 +95,13 @@ const useStyles = createThemedStyles(colors => ({
88
95
  fontSize: 15,
89
96
  color: colors.primary,
90
97
  marginTop: 8,
98
+ alignSelf: 'flex-start',
91
99
  },
92
100
  gdprNotice: {
93
101
  fontSize: 13,
94
102
  color: colors.textMuted,
95
103
  marginTop: 12,
96
104
  fontStyle: 'italic',
105
+ alignSelf: 'flex-start',
97
106
  },
98
107
  }));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sudobility/building_blocks_rn",
3
- "version": "0.0.26",
3
+ "version": "0.0.27",
4
4
  "description": "Higher-level shared UI building blocks for Sudobility React Native apps",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",