@ledgerhq/lumen-ui-rnative 0.0.75 → 0.0.76

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/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/lumen-ui-rnative",
3
- "version": "0.0.74",
3
+ "version": "0.0.75",
4
4
  "license": "Apache-2.0",
5
5
  "keywords": [
6
6
  "react-native",
@@ -67,7 +67,7 @@ const useStyles = ({ appearance, disabled, pressed, }) => {
67
67
  ]),
68
68
  icon: {
69
69
  flexShrink: 0,
70
- color: disabled ? t.colors.text.disabled : t.colors.text.base,
70
+ color: disabled ? t.colors.text.disabled : t.colors.text.muted,
71
71
  },
72
72
  };
73
73
  }, [appearance, disabled, pressed]);
@@ -1,5 +1,5 @@
1
1
  import { TabBarItemProps, TabBarProps } from './types';
2
- export declare const TAB_BAR_HEIGHT = 56;
2
+ export declare const TAB_BAR_HEIGHT = 60;
3
3
  /**
4
4
  * Individual tab item component that displays an icon and label.
5
5
  * Must be used as a child of TabBar.
@@ -7,7 +7,7 @@ import { useStyleSheet, useTheme } from '../../../styles';
7
7
  import { Placeholder } from '../../Symbols';
8
8
  import { Box, Pressable } from '../Utility';
9
9
  import { TabBarContextProvider, useTabBarContext } from './TabBarContext';
10
- export const TAB_BAR_HEIGHT = 56;
10
+ export const TAB_BAR_HEIGHT = 60;
11
11
  const PILL_INSET = 4;
12
12
  /**
13
13
  * Individual tab item component that displays an icon and label.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/lumen-ui-rnative",
3
- "version": "0.0.75",
3
+ "version": "0.0.76",
4
4
  "license": "Apache-2.0",
5
5
  "keywords": [
6
6
  "react-native",
@@ -83,7 +83,7 @@ const useStyles = ({
83
83
  ]),
84
84
  icon: {
85
85
  flexShrink: 0,
86
- color: disabled ? t.colors.text.disabled : t.colors.text.base,
86
+ color: disabled ? t.colors.text.disabled : t.colors.text.muted,
87
87
  },
88
88
  };
89
89
  },
@@ -15,7 +15,7 @@ import { Box, Pressable } from '../Utility';
15
15
  import { TabBarContextProvider, useTabBarContext } from './TabBarContext';
16
16
  import { TabBarItemProps, TabBarProps } from './types';
17
17
 
18
- export const TAB_BAR_HEIGHT = 56;
18
+ export const TAB_BAR_HEIGHT = 60;
19
19
  const PILL_INSET = 4;
20
20
 
21
21
  /**