@jobber/components-native 0.101.6 → 0.101.7
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/docs/Icon/Icon.md +1 -0
- package/dist/docs/InputPressable/InputPressable.md +1 -1
- package/dist/docs/usage-guidelines/usage-guidelines.md +0 -1
- package/dist/package.json +3 -3
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/src/ContentOverlay/BottomSheetKeyboardAwareScrollView.d.ts +1 -2
- package/package.json +3 -3
package/dist/docs/Icon/Icon.md
CHANGED
|
@@ -60,5 +60,5 @@ To prevent a previously focused input from being focused again when the
|
|
|
60
60
|
| `prefix` | `{ icon?: IconNames; label?: string; }` | No | — | Symbol to display before the text input |
|
|
61
61
|
| `ref` | `Ref<Text>` | No | — | Allows getting a ref to the component instance. Once the component unmounts, React will set `ref.current` to `null` (... |
|
|
62
62
|
| `showMiniLabel` | `boolean` | No | `true` | Controls the visibility of the mini label that appears inside the input when a value is entered. By default, the plac... |
|
|
63
|
-
| `suffix` | `
|
|
63
|
+
| `suffix` | `{ icon: IconNames; label?: string; onPress: () => void; } | { onPress?: never; icon?: IconNames; label?: string; }` | No | — | Symbol to display after the text input |
|
|
64
64
|
| `value` | `string` | No | — | Current value of the component |
|
|
@@ -14,7 +14,6 @@ deprecated.
|
|
|
14
14
|
| Component | Import | v2 prop |
|
|
15
15
|
| ---------------- | ------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- |
|
|
16
16
|
| Autocomplete | `import { Autocomplete } from "@jobber/components/Autocomplete"` | `version={2}` — fully controlled, async support |
|
|
17
|
-
| Checkbox | `import { Checkbox } from "@jobber/components/Checkbox"` | `version={2}` |
|
|
18
17
|
| InputDate | `import { InputDate } from "@jobber/components/InputDate"` | `version={2}` |
|
|
19
18
|
| InputEmail | `import { InputEmail } from "@jobber/components/InputEmail"` | `version={2}` |
|
|
20
19
|
| InputNumber | `import { InputNumber } from "@jobber/components/InputNumber"` | `version={2}` |
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jobber/components-native",
|
|
3
|
-
"version": "0.101.
|
|
3
|
+
"version": "0.101.7",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "React Native implementation of Atlantis",
|
|
6
6
|
"repository": {
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@babel/runtime": "^7.29.2",
|
|
60
60
|
"@gorhom/bottom-sheet": "^5.2.8",
|
|
61
|
-
"@jobber/design": "0.
|
|
61
|
+
"@jobber/design": "0.99.0",
|
|
62
62
|
"@jobber/hooks": "2.19.4",
|
|
63
63
|
"@react-native-community/datetimepicker": "^8.4.5",
|
|
64
64
|
"@react-native/babel-preset": "^0.82.1",
|
|
@@ -109,5 +109,5 @@
|
|
|
109
109
|
"react-native-screens": ">=4.18.0",
|
|
110
110
|
"react-native-svg": ">=12.0.0"
|
|
111
111
|
},
|
|
112
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "1513cc5ba2285ff22a2cb3eb537a2c105e9f793b"
|
|
113
113
|
}
|