File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 36
36
" prettier --write"
37
37
]
38
38
},
39
- "version" : " 3.3.8 " ,
39
+ "version" : " 3.3.9 " ,
40
40
"license" : " MIT" ,
41
41
"private" : false ,
42
42
"main" : " lib/commonjs/index" ,
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ export interface InterfaceCheckbox extends InterfaceBoxProps<ICheckboxProps> {
116
116
/**
117
117
* Icon related props can be passed in _icon.
118
118
*/
119
- _icon ?: IIconProps ;
119
+ _icon ?: Partial < IIconProps > ;
120
120
/**
121
121
* You can style interaction box around the checkbox using this.
122
122
*/
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import type { ResponsiveValue } from '../../../components/types';
7
7
import type { ISizes } from '../../../theme/base/sizes' ;
8
8
export type IRadioValue = string ;
9
9
import type { CustomProps } from '../../types' ;
10
+ import type { IIconProps } from '../Icon' ;
10
11
11
12
export type IRadioGroupOnChangeHandler = ( value : IRadioValue ) => any ;
12
13
@@ -90,7 +91,7 @@ export interface InterfaceRadioProps extends IBoxProps<IRadioProps> {
90
91
/**
91
92
* Icon related props can be passed in _icon.
92
93
*/
93
- _icon ?: Partial < IRadioProps > ;
94
+ _icon ?: Partial < IIconProps > ;
94
95
/**
95
96
* Passed props will be applied on readonly state.
96
97
*/
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ const NativeBaseProvider = (props: NativeBaseProviderProps) => {
94
94
< OverlayProvider >
95
95
< ToastProvider >
96
96
< InitializeToastRef />
97
- { isSSR ? < SSRProvider > { children } </ SSRProvider > : children }
97
+ < SSRProvider > { children } </ SSRProvider >
98
98
</ ToastProvider >
99
99
</ OverlayProvider >
100
100
</ HybridProvider >
You can’t perform that action at this time.
0 commit comments