Releases: GeekyAnts/NativeBase
Releases · GeekyAnts/NativeBase
3.4.19-rc.0
Merge pull request #5458 from GeekyAnts/release/3.4.18 Release/3.4.18
v3.4.18
Features
- Introducing a new hook 🪝
useSx
that resolves style prop to style object.
Example
const textStyle: StyledProps = {
color: ['orange.900', 'white', 'black'],
textAlign: 'center',
size: '12',
};
export const Example = () => {
const sx = useSx();
return (
<View
style={[
sx({
p: 2,
bg: ['blue.300', 'violet.400', 'red.400'],
width: 48,
height: 48,
}),
{ justifyContent: 'center', alignItems: 'center' },
]}
>
<Text style={sx(textStyle)}>New Feat useSx in NativeBase</Text>
</View>
);
};
Fixes
Link
isUnderline prop inside pseudo prop#4dc754e
Radio
andCheckbox
dynamicsize
change#3801923
Radio
disabled hover styling#9f94763
- Focus and press state addition in web
Radio
#39ded36
- Removed
_unchecked
fromRadio
#7110d01
Toast
hardware back press conflict#98c1779
IconButton
isDisabled prop#5549e8e
CheckBox
extractingaccessibilityLabel
from nonLayoutProps#8058fcb
v3.5.0-rc.4
Merge pull request #5423 from GeekyAnts/release/3.4.17 release 3.4.17
v3.5.0-rc.2
Merge pull request #5419 from GeekyAnts/release/3.5.0-rc.2 v3.5.0-rc.2
v3.4.17
v3.4.16
Fix
• size
prop typing issues Button
, Select
and other components
v3.4.15
v3.4.14
Fixes
- Unset focus from
Modal
8205c6e dataSet
issue on web 9e94070- Responsive props resolution 55a1a76
Input
outline color props adda321- Arrow forward icon 125384d
- Correcting prop description ff5ff33
Icon
is not aligned with the text badccff- Add
use-subscription
types 745ffc2 - Live color mode change 51a558c
Actionsheet
only on android and ios 0407503- Removing mode and adding
_light
and_dark
9d96089 - Outline issue of safari d617571
- Added new palette for theming 5d888e0
- Remove event listener 1aa908c
- Key prop warning 6e8c04b
- Removing
_light
from theme dd7a2be - Added type for variant and size in custom props type c29a966
- Updated
HStack
theme f7aad04 - SSR warning f056c6c
- Input addon theme c418562
nativeID
issue inFormControl
27d8dc4Input
focus ring fixes 885711e
v3.4.14-rc.1
Merge pull request #5325 from GeekyAnts/release/3.4.14-rc.1 Release/3.4.14 rc.1
v3.4.14-rc.0
Merge pull request #5290 from GeekyAnts/release/3.4.14-rc.0 Release/3.4.14 rc.0