ikualo-ui-kit-mobile 0.8.0 → 0.8.2

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.
@@ -20,7 +20,7 @@ export const getStylesCards = (theme: ITheme) => StyleSheet.create({
20
20
  marginVertical: 4,
21
21
  },
22
22
  'card-interactive-icon': {
23
- marginRight: 16,
23
+ marginHorizontal: 16,
24
24
  },
25
25
  'card-interactive-text': {
26
26
  color: theme.colors.text_p,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ikualo-ui-kit-mobile",
3
- "version": "0.8.0",
3
+ "version": "0.8.2",
4
4
  "main": "src/index.ts",
5
5
  "scripts": {
6
6
  "start": "expo start",
@@ -154,6 +154,7 @@ const dark = {
154
154
  export const darkTheme = {
155
155
  ...DefaultTheme,
156
156
  colors: {
157
+ ...DefaultTheme.colors,
157
158
  ...colors,
158
159
  ...dark,
159
160
  },
@@ -163,6 +164,7 @@ export const darkTheme = {
163
164
  export const lightTheme = {
164
165
  ...DefaultTheme,
165
166
  colors: {
167
+ ...DefaultTheme.colors,
166
168
  ...colors,
167
169
  ...light,
168
170
  },