@@ -55,6 +55,44 @@ const StyleTracesPanel = ({localize: _}) => (
5555 />
5656 </ Section >
5757
58+ < Section name = { _ ( 'Header' ) } >
59+ < Numeric label = { _ ( 'Height' ) } attr = "header.height" />
60+ < ColorPicker label = { _ ( 'Fill Color' ) } attr = "header.fill.color" />
61+ < FontSelector label = { _ ( 'Typeface' ) } attr = "header.font.family" />
62+ < Numeric label = { _ ( 'Font Size' ) } attr = "header.font.size" />
63+ < Dropdown
64+ label = { _ ( 'Text Alignment' ) }
65+ options = { [
66+ { label : _ ( 'Left' ) , value : 'left' } ,
67+ { label : _ ( 'Center' ) , value : 'center' } ,
68+ { label : _ ( 'Right' ) , value : 'right' } ,
69+ ] }
70+ attr = "header.align"
71+ />
72+ < ColorPicker label = { _ ( 'Font Color' ) } attr = "header.font.color" />
73+ < Numeric label = { _ ( 'Border Width' ) } attr = "header.line.width" />
74+ < ColorPicker label = { _ ( 'Border Color' ) } attr = "header.line.color" />
75+ </ Section >
76+
77+ < Section name = { _ ( 'Cells' ) } >
78+ < Numeric label = { _ ( 'Height' ) } attr = "cells.height" />
79+ < ColorPicker label = { _ ( 'Fill Color' ) } attr = "cells.fill.color" />
80+ < FontSelector label = { _ ( 'Typeface' ) } attr = "cells.font.family" />
81+ < Numeric label = { _ ( 'Font Size' ) } attr = "cells.font.size" />
82+ < Dropdown
83+ label = { _ ( 'Text Alignment' ) }
84+ options = { [
85+ { label : _ ( 'Left' ) , value : 'left' } ,
86+ { label : _ ( 'Center' ) , value : 'center' } ,
87+ { label : _ ( 'Right' ) , value : 'right' } ,
88+ ] }
89+ attr = "cells.align"
90+ />
91+ < ColorPicker label = { _ ( 'Font Color' ) } attr = "cells.font.color" />
92+ < Numeric label = { _ ( 'Border Width' ) } attr = "cells.line.width" />
93+ < ColorPicker label = { _ ( 'Border Color' ) } attr = "cells.line.color" />
94+ </ Section >
95+
5896 < Section name = { _ ( 'Display' ) } >
5997 < Flaglist
6098 attr = "mode"
0 commit comments