File tree 2 files changed +19
-0
lines changed
client/packages/lowcoder/src
2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -1013,6 +1013,18 @@ export function styleControl<T extends readonly SingleColorConfig[]>(colorConfig
1013
1013
) ,
1014
1014
placeholder : props [ name ] ,
1015
1015
} )
1016
+ : name === 'boxShadow'
1017
+ ? (
1018
+ children [ name ] as InstanceType <
1019
+ typeof StringControl
1020
+ >
1021
+ ) . propertyView ( {
1022
+ label : config . label ,
1023
+ preInputNode : (
1024
+ < BoxShadowPropIcon title = "BoxShadow-Type" />
1025
+ ) ,
1026
+ placeholder : props [ name ] ,
1027
+ } )
1016
1028
: name === 'animation'
1017
1029
? (
1018
1030
children [ name ] as InstanceType <
Original file line number Diff line number Diff line change @@ -474,6 +474,13 @@ export const en = {
474
474
// fourth part
475
475
476
476
"style" : {
477
+ "boxShadowColor" : 'Box Shadow Color' ,
478
+ "boxShadow" : 'Box Shadow' ,
479
+ "opacity" : 'Opacity' ,
480
+ "animation" : 'Animation' ,
481
+ "animationIterationCount" : 'Animation Iteration Count' ,
482
+ "animationDelay" : 'Animation Delay' ,
483
+ "animationDuration" : 'Animation Duration' ,
477
484
"resetTooltip" : "Reset styles. Clear the input field to reset an individual style." ,
478
485
"textColor" : "Text Color" ,
479
486
"contrastText" : "Contrast Text Color" ,
You can’t perform that action at this time.
0 commit comments