Skip to content

Commit ca8d9cd

Browse files
committed
constants added
1 parent b0d79c4 commit ca8d9cd

File tree

3 files changed

+538
-519
lines changed

3 files changed

+538
-519
lines changed

client/packages/lowcoder/src/comps/controls/styleControl.tsx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1013,6 +1013,18 @@ export function styleControl<T extends readonly SingleColorConfig[]>(colorConfig
10131013
),
10141014
placeholder: props[name],
10151015
})
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+
})
10161028
: name === 'animation'
10171029
? (
10181030
children[name] as InstanceType<

0 commit comments

Comments
 (0)