File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
client/packages/lowcoder/src/comps/comps/selectInputComp Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,8 @@ let CascaderBasicComp = (function () {
2121 return new UICompBuilder ( childrenMap , ( props ) => {
2222 return props . label ( {
2323 style : props . style ,
24- labelStyle :props . labelStyle ,
24+ labelStyle : props . labelStyle ,
25+ field :props . field ,
2526 children : (
2627 < CascaderStyle
2728 ref = { props . viewRef }
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { arrayStringExposingStateControl } from "comps/controls/codeStateControl
66import { BoolControl } from "comps/controls/boolControl" ;
77import { LabelControl } from "comps/controls/labelControl" ;
88import { styleControl } from "comps/controls/styleControl" ;
9- import { CascaderStyle , LabelStyle } from "comps/controls/styleControlConstants" ;
9+ import { CascaderStyle , ComponentStyle , LabelStyle } from "comps/controls/styleControlConstants" ;
1010import {
1111 allowClearPropertyView ,
1212 disabledPropertyView ,
@@ -40,6 +40,7 @@ export const CascaderChildren = {
4040 viewRef : RefControl < CascaderRef > ,
4141 margin : MarginControl ,
4242 padding : PaddingControl ,
43+ field :styleControl ( ComponentStyle )
4344} ;
4445
4546export const CascaderPropertyView = (
@@ -79,6 +80,9 @@ export const CascaderPropertyView = (
7980 < Section name = { sectionNames . labelStyle } >
8081 { children . labelStyle . getPropertyView ( ) }
8182 </ Section >
83+ < Section name = { sectionNames . field } >
84+ { children . field . getPropertyView ( ) }
85+ </ Section >
8286 </ >
8387 ) }
8488 </ >
You can’t perform that action at this time.
0 commit comments