Skip to content

Commit fa60cf0

Browse files
authored
Merge pull request #4638 from GeekyAnts/release/3.3.6
release 3.3.6
2 parents 5ab57a8 + c7bb01e commit fa60cf0

File tree

3 files changed

+4
-15
lines changed

3 files changed

+4
-15
lines changed

example/storybook/stories/components/basic/SectionList/Basic.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export const Example = () => {
2828
},
2929
];
3030
return (
31-
<Center h="80">
31+
<Center h="80" w="100%">
3232
<SectionList
3333
maxW="300"
3434
w="100%"

example/storybook/stories/components/primitives/Radio/controlledRadio.tsx

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,6 @@ import { Radio } from 'native-base';
33

44
export const Example = () => {
55
const [value, setValue] = React.useState('one');
6-
const ref = React.useRef(null);
7-
React.useEffect(() => {
8-
console.log('ref here', ref.current);
9-
// ref.current.setNativeProps({
10-
// backgroundColor: 'red',
11-
// });
12-
// ref.current.setNativeProps({
13-
// backgroundColor: 'red',
14-
// });
15-
ref.current.focus();
16-
}, []);
176
return (
187
<Radio.Group
198
name="myRadioGroup"
@@ -23,10 +12,10 @@ export const Example = () => {
2312
setValue(nextValue);
2413
}}
2514
>
26-
<Radio value="one" my={1} bg="blue.200">
15+
<Radio value="one" my={1}>
2716
One
2817
</Radio>
29-
<Radio value="two" my={1} bg="red.200" ref={ref}>
18+
<Radio value="two" my={1}>
3019
Two
3120
</Radio>
3221
</Radio.Group>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"prettier --write"
3838
]
3939
},
40-
"version": "3.3.6-rc.2",
40+
"version": "3.3.6",
4141
"license": "MIT",
4242
"private": false,
4343
"main": "lib/commonjs/index",

0 commit comments

Comments
 (0)