@@ -15,7 +15,7 @@ import {
15
15
} from "./selectInputConstants" ;
16
16
import { formDataChildren } from "../formComp/formDataConstants" ;
17
17
import { styleControl } from "comps/controls/styleControl" ;
18
- import { CheckboxStyle , CheckboxStyleType , LabelStyle } from "comps/controls/styleControlConstants" ;
18
+ import { CheckboxStyle , CheckboxStyleType , ComponentStyle , LabelStyle } from "comps/controls/styleControlConstants" ;
19
19
import { RadioLayoutOptions , RadioPropertyView } from "./radioCompConstants" ;
20
20
import { dropdownControl } from "../../controls/dropdownControl" ;
21
21
import { ValueFromOption } from "lowcoder-design" ;
@@ -140,7 +140,7 @@ let CheckboxBasicComp = (function () {
140
140
labelStyle : styleControl ( LabelStyle . filter ( ( style ) => [ 'accent' , 'validate' ] . includes ( style . name ) === false ) ) ,
141
141
layout : dropdownControl ( RadioLayoutOptions , "horizontal" ) ,
142
142
viewRef : RefControl < HTMLDivElement > ,
143
-
143
+ field : styleControl ( ComponentStyle ) ,
144
144
...SelectInputValidationChildren ,
145
145
...formDataChildren ,
146
146
} ;
@@ -153,6 +153,7 @@ let CheckboxBasicComp = (function () {
153
153
required : props . required ,
154
154
style : props . style ,
155
155
labelStyle : props . labelStyle ,
156
+ field :props . field ,
156
157
children : (
157
158
< CheckboxGroup
158
159
ref = { props . viewRef }
0 commit comments