File tree 2 files changed +16
-5
lines changed
packages/ra-ui-materialui/src/input
2 files changed +16
-5
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ import InputHelperText from './InputHelperText';
16
16
import classnames from 'classnames' ;
17
17
import Labeled from './Labeled' ;
18
18
import { LinearProgress } from '../layout' ;
19
+ import { ClassesOverride } from '../types' ;
19
20
20
21
/**
21
22
* An Input component for a checkbox group, using an array of objects for the options
@@ -79,9 +80,7 @@ import { LinearProgress } from '../layout';
79
80
*
80
81
* The object passed as `options` props is passed to the material-ui <Checkbox> components
81
82
*/
82
- const CheckboxGroupInput : FunctionComponent <
83
- ChoicesInputProps < CheckboxProps > & FormControlProps
84
- > = props => {
83
+ const CheckboxGroupInput : FunctionComponent < CheckboxGroupInputProps > = props => {
85
84
const {
86
85
choices = [ ] ,
87
86
className,
@@ -260,4 +259,10 @@ CheckboxGroupInput.defaultProps = {
260
259
row : true ,
261
260
} ;
262
261
262
+ export interface CheckboxGroupInputProps
263
+ extends ChoicesInputProps < CheckboxProps > ,
264
+ FormControlProps {
265
+ classes ?: ClassesOverride < typeof useStyles > ;
266
+ }
267
+
263
268
export default CheckboxGroupInput ;
Original file line number Diff line number Diff line change @@ -4,7 +4,9 @@ import AutocompleteArrayInput, {
4
4
} from './AutocompleteArrayInput' ;
5
5
import AutocompleteInput , { AutocompleteInputProps } from './AutocompleteInput' ;
6
6
import BooleanInput from './BooleanInput' ;
7
- import CheckboxGroupInput from './CheckboxGroupInput' ;
7
+ import CheckboxGroupInput , {
8
+ CheckboxGroupInputProps ,
9
+ } from './CheckboxGroupInput' ;
8
10
import DateInput from './DateInput' ;
9
11
import DateTimeInput from './DateTimeInput' ;
10
12
import FileInput from './FileInput' ;
@@ -56,4 +58,8 @@ export {
56
58
sanitizeInputRestProps ,
57
59
} ;
58
60
59
- export type { AutocompleteInputProps , AutocompleteArrayInputProps } ;
61
+ export type {
62
+ AutocompleteInputProps ,
63
+ AutocompleteArrayInputProps ,
64
+ CheckboxGroupInputProps ,
65
+ } ;
You can’t perform that action at this time.
0 commit comments