@jobber/components-native 0.92.0 → 0.93.0

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/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobber/components-native",
3
- "version": "0.92.0",
3
+ "version": "0.93.0",
4
4
  "license": "MIT",
5
5
  "description": "React Native implementation of Atlantis",
6
6
  "repository": {
@@ -94,5 +94,5 @@
94
94
  "react-native-safe-area-context": "^5.4.0",
95
95
  "react-native-svg": ">=12.0.0"
96
96
  },
97
- "gitHead": "1ca01305080db58e135d5224ab329a8df4ad92ff"
97
+ "gitHead": "a84b7d122f13b650fd7f77cda794d71f1d25317b"
98
98
  }
@@ -12,6 +12,9 @@ export const useHorizontalStyles = buildThemedStyles(tokens => {
12
12
  noneChildSpace: {
13
13
  padding: 0,
14
14
  },
15
+ minusculeChildSpace: {
16
+ paddingLeft: tokens["space-minuscule"],
17
+ },
15
18
  smallestChildSpace: {
16
19
  paddingLeft: tokens["space-smallest"],
17
20
  },
@@ -21,11 +24,23 @@ export const useHorizontalStyles = buildThemedStyles(tokens => {
21
24
  smallChildSpace: {
22
25
  paddingLeft: tokens["space-small"],
23
26
  },
27
+ slimChildSpace: {
28
+ paddingLeft: tokens["space-slim"],
29
+ },
24
30
  baseChildSpace: {
25
31
  paddingLeft: tokens["space-base"],
26
32
  },
27
33
  largeChildSpace: {
28
34
  paddingLeft: tokens["space-large"],
29
35
  },
36
+ largerChildSpace: {
37
+ paddingLeft: tokens["space-larger"],
38
+ },
39
+ largestChildSpace: {
40
+ paddingLeft: tokens["space-largest"],
41
+ },
42
+ extravagantChildSpace: {
43
+ paddingLeft: tokens["space-extravagant"],
44
+ },
30
45
  };
31
46
  });
@@ -4,6 +4,9 @@ export const useSpaceAroundStyles = buildThemedStyles(tokens => {
4
4
  noneSpace: {
5
5
  padding: 0,
6
6
  },
7
+ minusculeSpace: {
8
+ padding: tokens["space-minuscule"],
9
+ },
7
10
  smallestSpace: {
8
11
  padding: tokens["space-smallest"],
9
12
  },
@@ -13,11 +16,23 @@ export const useSpaceAroundStyles = buildThemedStyles(tokens => {
13
16
  smallSpace: {
14
17
  padding: tokens["space-small"],
15
18
  },
19
+ slimSpace: {
20
+ padding: tokens["space-slim"],
21
+ },
16
22
  baseSpace: {
17
23
  padding: tokens["space-base"],
18
24
  },
19
25
  largeSpace: {
20
26
  padding: tokens["space-large"],
21
27
  },
28
+ largerSpace: {
29
+ padding: tokens["space-larger"],
30
+ },
31
+ largestSpace: {
32
+ padding: tokens["space-largest"],
33
+ },
34
+ extravagantSpace: {
35
+ padding: tokens["space-extravagant"],
36
+ },
22
37
  };
23
38
  });
@@ -12,6 +12,9 @@ export const useVerticalStyles = buildThemedStyles(tokens => {
12
12
  noneChildSpace: {
13
13
  padding: 0,
14
14
  },
15
+ minusculeChildSpace: {
16
+ paddingTop: tokens["space-minuscule"],
17
+ },
15
18
  smallestChildSpace: {
16
19
  paddingTop: tokens["space-smallest"],
17
20
  },
@@ -21,11 +24,23 @@ export const useVerticalStyles = buildThemedStyles(tokens => {
21
24
  smallChildSpace: {
22
25
  paddingTop: tokens["space-small"],
23
26
  },
27
+ slimChildSpace: {
28
+ paddingTop: tokens["space-slim"],
29
+ },
24
30
  baseChildSpace: {
25
31
  paddingTop: tokens["space-base"],
26
32
  },
27
33
  largeChildSpace: {
28
34
  paddingTop: tokens["space-large"],
29
35
  },
36
+ largerChildSpace: {
37
+ paddingTop: tokens["space-larger"],
38
+ },
39
+ largestChildSpace: {
40
+ paddingTop: tokens["space-largest"],
41
+ },
42
+ extravagantChildSpace: {
43
+ paddingTop: tokens["space-extravagant"],
44
+ },
30
45
  };
31
46
  });