Skip to content

Commit fc91692

Browse files
committed
Merge branch 'master' into patch
2 parents be65430 + 5ecad2e commit fc91692

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"prettier --write"
3737
]
3838
},
39-
"version": "3.3.8",
39+
"version": "3.3.9",
4040
"license": "MIT",
4141
"private": false,
4242
"main": "lib/commonjs/index",

src/components/primitives/Checkbox/types.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export interface InterfaceCheckbox extends InterfaceBoxProps<ICheckboxProps> {
116116
/**
117117
* Icon related props can be passed in _icon.
118118
*/
119-
_icon?: IIconProps;
119+
_icon?: Partial<IIconProps>;
120120
/**
121121
* You can style interaction box around the checkbox using this.
122122
*/

src/components/primitives/Radio/types.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import type { ResponsiveValue } from '../../../components/types';
77
import type { ISizes } from '../../../theme/base/sizes';
88
export type IRadioValue = string;
99
import type { CustomProps } from '../../types';
10+
import type { IIconProps } from '../Icon';
1011

1112
export type IRadioGroupOnChangeHandler = (value: IRadioValue) => any;
1213

@@ -90,7 +91,7 @@ export interface InterfaceRadioProps extends IBoxProps<IRadioProps> {
9091
/**
9192
* Icon related props can be passed in _icon.
9293
*/
93-
_icon?: Partial<IRadioProps>;
94+
_icon?: Partial<IIconProps>;
9495
/**
9596
* Passed props will be applied on readonly state.
9697
*/

src/core/NativeBaseProvider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ const NativeBaseProvider = (props: NativeBaseProviderProps) => {
9494
<OverlayProvider>
9595
<ToastProvider>
9696
<InitializeToastRef />
97-
{isSSR ? <SSRProvider>{children}</SSRProvider> : children}
97+
<SSRProvider>{children}</SSRProvider>
9898
</ToastProvider>
9999
</OverlayProvider>
100100
</HybridProvider>

0 commit comments

Comments
 (0)