File tree 4 files changed +6
-4
lines changed
4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ import {
123
123
ICheckboxProps ,
124
124
ICheckboxGroupProps ,
125
125
Radio ,
126
+ RadioContext ,
126
127
IRadioProps ,
127
128
IRadioValue ,
128
129
IRadioGroupProps ,
@@ -202,6 +203,7 @@ export {
202
203
Code ,
203
204
Checkbox ,
204
205
Radio ,
206
+ RadioContext ,
205
207
Column ,
206
208
Row ,
207
209
Center ,
Original file line number Diff line number Diff line change @@ -610,7 +610,8 @@ export const getStyleAndFilteredProps = ({
610
610
let { styleFromProps, responsiveStyles } : any = getStyledFromProps (
611
611
styledSystemProps ,
612
612
theme ,
613
- currentBreakpoint
613
+ currentBreakpoint ,
614
+ propConfig
614
615
) ;
615
616
616
617
if ( responsiveStyles ) {
Original file line number Diff line number Diff line change 1
- import { propConfig } from '../theme/styled-system' ;
2
1
import { hasValidBreakpointFormat } from '../theme/tools' ;
3
2
import { getRNKeyAndStyleValue } from './getRNKeyAndStyleValue' ;
4
3
import type { ITheme } from '../theme' ;
@@ -13,7 +12,8 @@ import type { ITheme } from '../theme';
13
12
export const getStyledFromProps = (
14
13
styledSystemProps : any ,
15
14
theme : any ,
16
- currentBreakpoint : any
15
+ currentBreakpoint : any ,
16
+ propConfig : any
17
17
) => {
18
18
let styleFromProps : any = { } ;
19
19
let responsiveStyles : null | Record <
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ export {
14
14
composeEventHandlers ,
15
15
} ;
16
16
export { wrapStringChild } from './wrapStringChild' ;
17
- export { RadioContext } from '../components/primitives/Radio/RadioGroup' ;
18
17
export { combineContextAndProps } from './combineContextAndProps' ;
19
18
export type { IAccessibilityProps } from './accessibilityTypes' ;
20
19
export { ariaAttr } from './accessibilityUtils' ;
You can’t perform that action at this time.
0 commit comments