@jobber/components-native 0.90.1-JOB-140976-676a3bc.17 → 0.90.1-JOB-140976-fc0b992.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.
@@ -14,4 +14,8 @@ export declare const useStyles: () => {
14
14
  multilineInputiOS: {
15
15
  paddingTop: number;
16
16
  };
17
+ multilineWithoutMiniLabel: {
18
+ paddingTop: number;
19
+ paddingBottom: number;
20
+ };
17
21
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobber/components-native",
3
- "version": "0.90.1-JOB-140976-676a3bc.17+676a3bc2e",
3
+ "version": "0.90.1-JOB-140976-fc0b992.18+fc0b9928e",
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": "676a3bc2eb3879aa5fda68db6121d30c9bf4828f"
97
+ "gitHead": "fc0b9928ec110279df2577c8646e8c423c57e56a"
98
98
  }
@@ -27,5 +27,10 @@ export const useStyles = buildThemedStyles(tokens => {
27
27
  paddingTop:
28
28
  (typographyStyles.defaultSize.fontSize || 0) + tokens["space-smallest"],
29
29
  },
30
+
31
+ multilineWithoutMiniLabel: {
32
+ paddingTop: tokens["space-base"] + tokens["space-smallest"],
33
+ paddingBottom: tokens["space-base"] + tokens["space-smallest"],
34
+ },
30
35
  };
31
36
  });
@@ -407,6 +407,9 @@ function InputTextInternal(
407
407
  multiline && styles.multiLineInput,
408
408
  multiline && Platform.OS === "ios" && styles.multilineInputiOS,
409
409
  multiline && miniLabelActive && styles.multiLineInputWithMini,
410
+ multiline &&
411
+ placeholderMode === "hidden" &&
412
+ styles.multilineWithoutMiniLabel,
410
413
  styleOverride?.inputText,
411
414
  loading && loadingType === "glimmer" && { color: "transparent" },
412
415
  ]}