@jobber/components-native 0.71.1 → 0.71.2-TAYLORmax-6e14b32.19

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.71.1",
3
+ "version": "0.71.2-TAYLORmax-6e14b32.19+6e14b32d",
4
4
  "license": "MIT",
5
5
  "description": "React Native implementation of Atlantis",
6
6
  "repository": {
@@ -82,5 +82,5 @@
82
82
  "react-native-safe-area-context": "^4.5.2",
83
83
  "react-native-svg": ">=12.0.0"
84
84
  },
85
- "gitHead": "d9ef7b5f0325cce3a99a918367d67962f307438b"
85
+ "gitHead": "6e14b32d5a326475566187872f9e4e695ec3c0f8"
86
86
  }
@@ -5,7 +5,7 @@ export const shineWidth = tokens["space-largest"];
5
5
 
6
6
  export const styles = StyleSheet.create({
7
7
  container: {
8
- backgroundColor: tokens["color-surface--background"],
8
+ backgroundColor: "rgba(0, 0, 0, 0.05)",
9
9
  overflow: "hidden",
10
10
  position: "relative",
11
11
  width: "100%",
@@ -85,12 +85,18 @@ export function Glimmer({
85
85
  <LinearGradient id="gradientShine" x1={0} y1={0.5} x2={1} y2={0.5}>
86
86
  <Stop
87
87
  offset="0%"
88
- stopColor={tokens["color-surface--background"]}
88
+ stopColor="rgba(255,255,255,0)"
89
+ stopOpacity="0"
90
+ />
91
+ <Stop
92
+ offset="50%"
93
+ stopColor="rgba(255,255,255,1)"
94
+ stopOpacity="1"
89
95
  />
90
- <Stop offset="50%" stopColor={tokens["color-surface"]} />
91
96
  <Stop
92
97
  offset="100%"
93
- stopColor={tokens["color-surface--background"]}
98
+ stopColor="rgba(255,255,255,0)"
99
+ stopOpacity="0"
94
100
  />
95
101
  </LinearGradient>
96
102
  </Defs>