@jobber/components-native 0.82.1-JOB-131123-46bcb04.40 → 0.82.1-JOB-131123-391054a.41

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobber/components-native",
3
- "version": "0.82.1-JOB-131123-46bcb04.40+46bcb041",
3
+ "version": "0.82.1-JOB-131123-391054a.41+391054a8",
4
4
  "license": "MIT",
5
5
  "description": "React Native implementation of Atlantis",
6
6
  "repository": {
@@ -79,5 +79,5 @@
79
79
  "react-native-safe-area-context": "^5.4.0",
80
80
  "react-native-svg": ">=12.0.0"
81
81
  },
82
- "gitHead": "46bcb04157a11807031042ad5c1f9f7938ee3248"
82
+ "gitHead": "391054a8bb3771381935943dd5a98c8c3a67f625"
83
83
  }
@@ -73,7 +73,7 @@ exports[`when Heading called with maxLines should match snapshot 1`] = `
73
73
  adjustsFontSizeToFit={false}
74
74
  allowFontScaling={true}
75
75
  collapsable={false}
76
- ellipsizeMode="tail"
76
+ ellipsizeMode="middle"
77
77
  numberOfLines={1}
78
78
  selectable={true}
79
79
  selectionColor="hsl(86, 100%, 46%)"
@@ -108,7 +108,7 @@ exports[`renders text that is not scaled down with adjustsFontSize false 1`] = `
108
108
  adjustsFontSizeToFit={false}
109
109
  allowFontScaling={true}
110
110
  collapsable={false}
111
- ellipsizeMode="tail"
111
+ ellipsizeMode="middle"
112
112
  maxFontSizeMultiplier={3.125}
113
113
  numberOfLines={4}
114
114
  selectable={true}
@@ -144,7 +144,7 @@ exports[`renders text that is scaled down with adjustsFontSize true 1`] = `
144
144
  adjustsFontSizeToFit={true}
145
145
  allowFontScaling={true}
146
146
  collapsable={false}
147
- ellipsizeMode="tail"
147
+ ellipsizeMode="middle"
148
148
  maxFontSizeMultiplier={3.125}
149
149
  numberOfLines={4}
150
150
  selectable={true}
@@ -212,7 +212,7 @@ function InternalTypography<T extends FontFamily = "base">({
212
212
  adjustsFontSizeToFit,
213
213
  style,
214
214
  numberOfLines: numberOfLinesForNativeText,
215
- ellipsizeMode: numberOfLinesForNativeText ? "tail" : undefined,
215
+ ellipsizeMode: numberOfLinesForNativeText ? "middle" : undefined,
216
216
  }}
217
217
  {...accessibilityProps}
218
218
  maxFontSizeMultiplier={getScaleMultiplier(
@@ -39,7 +39,7 @@ exports[`renders text using the maxLines is also passed 1`] = `
39
39
  adjustsFontSizeToFit={false}
40
40
  allowFontScaling={true}
41
41
  collapsable={false}
42
- ellipsizeMode="tail"
42
+ ellipsizeMode="middle"
43
43
  numberOfLines={2}
44
44
  selectable={true}
45
45
  selectionColor="hsl(86, 100%, 46%)"
@@ -74,7 +74,7 @@ exports[`renders text with adjustsFontSizeToFit set to true 1`] = `
74
74
  adjustsFontSizeToFit={true}
75
75
  allowFontScaling={true}
76
76
  collapsable={false}
77
- ellipsizeMode="tail"
77
+ ellipsizeMode="middle"
78
78
  numberOfLines={1}
79
79
  selectable={true}
80
80
  selectionColor="hsl(86, 100%, 46%)"