@@ -180,14 +180,14 @@ export function TriContainer(props: TriContainerProps) {
180
180
value = { container . style . background }
181
181
>
182
182
< HeaderInnerGrid
183
- { ...otherHeaderProps }
183
+ { ...otherHeaderProps }
184
184
items = { gridItemCompToGridItems ( headerItems ) }
185
185
autoHeight = { true }
186
186
emptyRows = { 5 }
187
187
minHeight = "46px"
188
188
containerPadding = { [ 0 , 0 ] }
189
189
showName = { { bottom : showFooter ? 20 : 0 } }
190
- $backgroundColor = { headerStyle ?. headerBackground || " transparent" }
190
+ $backgroundColor = { headerStyle ?. headerBackground || ' transparent' }
191
191
style = { { padding : headerStyle . containerHeaderPadding } } />
192
192
</ BackgroundColorContext . Provider >
193
193
) }
@@ -208,14 +208,14 @@ export function TriContainer(props: TriContainerProps) {
208
208
minHeight = { showHeader ? "143px" : "142px" }
209
209
containerPadding = { [ 0 , 0 ] }
210
210
hintPlaceholder = { props . hintPlaceholder ?? HintPlaceHolder }
211
- $backgroundColor = { bodyStyle ?. background || " transparent" }
211
+ $backgroundColor = { bodyStyle ?. background || ' transparent' }
212
212
$borderColor = { style ?. border }
213
213
$borderWidth = { style ?. borderWidth }
214
214
style = { {
215
215
float : `${ props . float } ` ,
216
216
width : `${ props . float === "none" ? "100%" : `${ props . width } %` } ` ,
217
217
height : "100%" ,
218
- ...container . bodyStyle ,
218
+ ...container . bodyStyle
219
219
} }
220
220
/>
221
221
< FloatTextWrapper
@@ -246,16 +246,15 @@ export function TriContainer(props: TriContainerProps) {
246
246
minHeight = { "48px" }
247
247
containerPadding = { [ 0 , 0 ] }
248
248
showName = { { top : showHeader ? 20 : 0 } }
249
- $backgroundColor = { footerStyle ?. footerBackground || " transparent" }
249
+ $backgroundColor = { footerStyle ?. footerBackground || ' transparent' }
250
250
$footerBackgroundImage = { footerStyle ?. footerBackgroundImage }
251
251
$footerBackgroundImageRepeat = { footerStyle ?. footerBackgroundImageRepeat }
252
252
$footerBackgroundImageSize = { footerStyle ?. footerBackgroundImageSize }
253
253
$footerBackgroundImagePosition = { footerStyle ?. footerBackgroundImagePosition }
254
254
$footerBackgroundImageOrigin = { footerStyle ?. footerBackgroundImageOrigin }
255
255
$borderColor = { style ?. border }
256
256
$borderWidth = { style ?. borderWidth }
257
- style = { { padding : footerStyle . containerFooterPadding } }
258
- />
257
+ style = { { padding : footerStyle . containerFooterPadding } } />
259
258
</ BackgroundColorContext . Provider >
260
259
) }
261
260
</ Wrapper >
0 commit comments