@widergy/mobile-ui 0.38.0 → 0.39.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/CHANGELOG.md +7 -0
- package/lib/components/Picker/index.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [0.39.0](https://github.com/widergy/mobile-ui/compare/v0.38.0...v0.39.0) (2023-08-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* add disabled ([#247](https://github.com/widergy/mobile-ui/issues/247)) ([39c8fb4](https://github.com/widergy/mobile-ui/commit/39c8fb45d0b4ae90b48d4c3a00e25cdb719f12ed))
|
|
7
|
+
|
|
1
8
|
# [0.38.0](https://github.com/widergy/mobile-ui/compare/v0.37.7...v0.38.0) (2023-08-11)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -22,7 +22,7 @@ const Picker = ({
|
|
|
22
22
|
theme,
|
|
23
23
|
withMarkdownTitle,
|
|
24
24
|
markdownStyles,
|
|
25
|
-
disabled
|
|
25
|
+
disabled = false
|
|
26
26
|
}) => (
|
|
27
27
|
<Fragment>
|
|
28
28
|
{!!title && (
|
|
@@ -35,7 +35,7 @@ const Picker = ({
|
|
|
35
35
|
</Label>
|
|
36
36
|
)}
|
|
37
37
|
<View style={styles.fieldInput}>
|
|
38
|
-
<Touchable borderless style={styles.touchable} onPress={onAdd}>
|
|
38
|
+
<Touchable borderless style={styles.touchable} disabled={disabled} onPress={onAdd}>
|
|
39
39
|
<Input
|
|
40
40
|
backgroundColor="transparent"
|
|
41
41
|
value={fileName}
|
package/package.json
CHANGED