File tree Expand file tree Collapse file tree 1 file changed +12
-10
lines changed
client/packages/lowcoder/src/comps/controls Expand file tree Collapse file tree 1 file changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -817,16 +817,16 @@ export const AvatarStyle = [
817817 color : '#bfbfbf' ,
818818 } ,
819819 FILL ,
820- {
821- name : "label" ,
822- label : trans ( "avatarComp.label" ) ,
823- color : '#000000' ,
824- } ,
825- {
826- name : "caption" ,
827- label : trans ( "avatarComp.caption" ) ,
828- color : '#a5a5a5' ,
829- } ,
820+ ] as const ;
821+
822+ export const avatarContainerStyle = [
823+ getStaticBackground ( SURFACE_COLOR ) ,
824+ ... STYLING_FIELDS_CONTAINER_SEQUENCE
825+ ] as const ;
826+
827+ export const avatarLabelStyle = [
828+ getStaticBackground ( SURFACE_COLOR ) ,
829+ ... STYLING_FIELDS_SEQUENCE
830830] as const ;
831831
832832export const avatarGroupStyle = [
@@ -1578,6 +1578,8 @@ export const RichTextEditorStyle = [
15781578
15791579export type QRCodeStyleType = StyleConfigType < typeof QRCodeStyle > ;
15801580export type AvatarStyleType = StyleConfigType < typeof AvatarStyle > ;
1581+ export type AvatarLabelStyleType = StyleConfigType < typeof avatarLabelStyle > ;
1582+ export type AvatarContainerStyleType = StyleConfigType < typeof avatarContainerStyle > ;
15811583export type AvatarGroupStyleType = StyleConfigType < typeof avatarGroupStyle > ;
15821584export type FloatButtonStyleType = StyleConfigType < typeof FloatButtonStyle > ;
15831585export type TransferStyleType = StyleConfigType < typeof TransferStyle > ;
You can’t perform that action at this time.
0 commit comments