@jobber/components-native 0.85.1-move-dupli-99be0f8.13 → 0.86.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.85.1-move-dupli-99be0f8.13+99be0f87a",
3
+ "version": "0.86.0",
4
4
  "license": "MIT",
5
5
  "description": "React Native implementation of Atlantis",
6
6
  "repository": {
@@ -53,6 +53,7 @@
53
53
  "ts-xor": "^1.1.0"
54
54
  },
55
55
  "devDependencies": {
56
+ "@react-native-community/datetimepicker": "^7.1.0",
56
57
  "@storybook/addon-a11y": "^9.1.2",
57
58
  "@storybook/react": "^9.1.2",
58
59
  "@storybook/react-native-web-vite": "^9.1.2",
@@ -66,6 +67,13 @@
66
67
  "date-fns": "^2.30.0",
67
68
  "date-fns-tz": "^2.0.0",
68
69
  "metro-react-native-babel-preset": "^0.76.0",
70
+ "react-native": "^0.77.0",
71
+ "react-native-gesture-handler": "^2.10.2",
72
+ "react-native-modal-datetime-picker": "^15.0.1",
73
+ "react-native-reanimated": "^3.7.1",
74
+ "react-native-safe-area-context": "^5.4.0",
75
+ "react-native-svg": "^15.1.0",
76
+ "react-native-web": "^0.20.0",
69
77
  "react-test-renderer": "^18.2.0",
70
78
  "storybook": "^9.1.2"
71
79
  },
@@ -87,5 +95,5 @@
87
95
  "react-native-safe-area-context": "^5.4.0",
88
96
  "react-native-svg": ">=12.0.0"
89
97
  },
90
- "gitHead": "99be0f87adc5047e339f84deab23a6cdaeb8ba22"
98
+ "gitHead": "712019a3de148ba8511e117278495ced049f331f"
91
99
  }
@@ -48,5 +48,7 @@ function getBannerIcon(type) {
48
48
  return "help";
49
49
  case "error":
50
50
  return "alert";
51
+ case "success":
52
+ return "checkmark";
51
53
  }
52
54
  }
@@ -14,5 +14,8 @@ export const useStyles = buildThemedStyles(tokens => {
14
14
  notice: {
15
15
  backgroundColor: tokens["color-informative"],
16
16
  },
17
+ success: {
18
+ backgroundColor: tokens["color-success"],
19
+ },
17
20
  };
18
21
  });
@@ -36,6 +36,7 @@ export const useStyles = buildThemedStyles(tokens => {
36
36
  right: 0,
37
37
  bottom: 0,
38
38
  left: 0,
39
+ zIndex: 1,
39
40
  },
40
41
  miniLabel: {
41
42
  top: 0,
@@ -44,7 +45,6 @@ export const useStyles = buildThemedStyles(tokens => {
44
45
  marginRight: tokens["space-small"],
45
46
  maxHeight: (typographyStyles.defaultSize.lineHeight || 0) +
46
47
  tokens["space-smaller"],
47
- zIndex: 1,
48
48
  },
49
49
  // Prevents the miniLabel from cutting off the ClearAction button
50
50
  miniLabelShowClearAction: {