@momo-kits/foundation 0.92.32 → 0.92.34

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.
@@ -183,7 +183,7 @@ const StackScreen: React.FC<ScreenParams> = props => {
183
183
  });
184
184
  navigator?.maxApi?.stopTrace?.(
185
185
  tracked.current.traceIdLoad,
186
- {value: timeLoad.current},
186
+ {value: timeLoad.current / 1000},
187
187
  null
188
188
  );
189
189
  navigator?.maxApi?.showToastDebug?.({
@@ -223,7 +223,7 @@ const StackScreen: React.FC<ScreenParams> = props => {
223
223
  });
224
224
  navigator?.maxApi?.stopTrace?.(
225
225
  tracked.current.traceIdInteraction,
226
- {value: timeInteraction.current},
226
+ {value: timeInteraction.current / 1000},
227
227
  null
228
228
  );
229
229
  navigator?.maxApi?.showToastDebug?.({
package/Tag/styles.ts CHANGED
@@ -1,19 +1,20 @@
1
1
  import {StyleSheet} from 'react-native';
2
2
  import {Radius, Spacing} from '../Consts';
3
+ import {scaleSize} from '../Text';
3
4
 
4
5
  export default StyleSheet.create({
5
6
  container: {
6
7
  paddingHorizontal: Spacing.S,
7
8
  borderRadius: Radius.S,
8
9
  flexDirection: 'row',
9
- height: 24,
10
+ height: scaleSize(24),
10
11
  alignItems: 'center',
11
12
  justifyContent: 'center',
12
13
  },
13
14
  mediumContainer: {
14
15
  paddingHorizontal: Spacing.S,
15
16
  borderRadius: Radius.S,
16
- height: 18,
17
+ height: scaleSize(18),
17
18
  alignItems: 'center',
18
19
  flexDirection: 'row',
19
20
  justifyContent: 'center',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momo-kits/foundation",
3
- "version": "0.92.32",
3
+ "version": "0.92.34",
4
4
  "description": "React Native Component Kits",
5
5
  "main": "index.ts",
6
6
  "scripts": {},