@momo-kits/animated-tooltip 0.154.1-beta.16 → 0.154.1-beta.18

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.
Files changed (3) hide show
  1. package/index.tsx +1 -0
  2. package/package.json +1 -1
  3. package/styles.ts +2 -3
package/index.tsx CHANGED
@@ -285,6 +285,7 @@ const Tooltip = forwardRef<TooltipRef, TooltipProps>(function Tooltip(
285
285
  <View style={styles.contentHeader}>
286
286
  <View
287
287
  style={{
288
+ minWidth: 100,
288
289
  maxWidth: SCREEN_WIDTH - Spacing.M * 2 - 48,
289
290
  }}
290
291
  >
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momo-kits/animated-tooltip",
3
- "version": "0.154.1-beta.16",
3
+ "version": "0.154.1-beta.18",
4
4
  "private": false,
5
5
  "main": "index.tsx",
6
6
  "dependencies": {},
package/styles.ts CHANGED
@@ -24,16 +24,15 @@ export default StyleSheet.create({
24
24
  flexDirection: 'column',
25
25
  },
26
26
  title: {
27
- marginBottom: Spacing.XL,
27
+ marginBottom: Spacing.XS,
28
28
  },
29
29
  description: {
30
- marginBottom: Spacing.XXS,
30
+ marginBottom: Spacing.M,
31
31
  },
32
32
  buttonsRow: {
33
33
  flexDirection: 'row',
34
34
  flexWrap: 'wrap',
35
35
  justifyContent: 'flex-end',
36
- marginTop: Spacing.M,
37
36
  },
38
37
  button: {
39
38
  marginRight: Spacing.XXS,