@momo-kits/step 0.103.2-rc.48 → 0.103.2-rc.49

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/StepsVertical.tsx CHANGED
@@ -75,12 +75,10 @@ const StepsVertical: FC<StepsProps> = ({
75
75
  </View>
76
76
  <View style={{flex: 1}}>
77
77
  <View
78
- style={[
79
- {
80
- flexDirection: 'row',
81
- justifyContent: 'space-between',
82
- },
83
- ]}>
78
+ style={{
79
+ flexDirection: 'row',
80
+ justifyContent: 'space-between',
81
+ }}>
84
82
  <Text
85
83
  numberOfLines={2}
86
84
  style={{marginRight: Spacing.S, flex: 1}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momo-kits/step",
3
- "version": "0.103.2-rc.48",
3
+ "version": "0.103.2-rc.49",
4
4
  "private": false,
5
5
  "main": "index.tsx",
6
6
  "dependencies": {},
package/utils.ts CHANGED
@@ -43,7 +43,7 @@ export const getStepTypo = (
43
43
  switch (status) {
44
44
  case 'current': {
45
45
  title.color = theme.colors.primary;
46
- title.typography = 'header_xs_semibold';
46
+ title.typography = 'header_s_semibold';
47
47
  break;
48
48
  }
49
49
 
@@ -58,7 +58,7 @@ export const getStepTypo = (
58
58
  }
59
59
 
60
60
  case 'error': {
61
- title.typography = 'header_xs_semibold';
61
+ title.typography = 'header_s_semibold';
62
62
  title.color = theme.colors.error.primary;
63
63
  break;
64
64
  }