@@ -67,13 +67,17 @@ const getStyle = (
6767 &,
6868 > td {
6969 background: ${ genLinerGradient ( rowStyle . background ) } ;
70+ border-bottom:${ rowStyle . borderWidth } ${ rowStyle . borderStyle } ${ rowStyle . border } !important;
71+ border-right:${ rowStyle . borderWidth } ${ rowStyle . borderStyle } ${ rowStyle . border } !important;
7072 }
7173 }
7274
7375 > tr:nth-of-type(2n) {
7476 &,
7577 > td {
7678 background: ${ alternateBackground } ;
79+ border-bottom:${ rowStyle . borderWidth } ${ rowStyle . borderStyle } ${ rowStyle . border } !important;
80+ border-right:${ rowStyle . borderWidth } ${ rowStyle . borderStyle } ${ rowStyle . border } !important;
7781 }
7882 }
7983
@@ -136,14 +140,15 @@ const BackgroundWrapper = styled.div<{
136140 $style : TableStyleType ;
137141 $tableAutoHeight : boolean ;
138142} > `
139- ${ ( props ) => ! props . $tableAutoHeight && `height: calc(100% - ${ props . $style . margin } - ${ props . $style . margin } );` }
140143 background: ${ ( props ) => props . $style . background } !important;
141- border: ${ ( props ) => `${ props . $style . borderWidth } solid ${ props . $style . border } !important` } ;
144+ // border: ${ ( props ) => `${ props . $style . border } !important` } ;
142145 border-radius: ${ ( props ) => props . $style . radius } !important;
143146 // padding: unset !important;
144- padding: ${ ( props ) => props . $style . padding } !important
147+ padding: ${ ( props ) => props . $style . padding } !important;
145148 margin: ${ ( props ) => props . $style . margin } !important;
146149 overflow: scroll !important;
150+ border-style:${ ( props ) => props . $style . borderStyle } !important;
151+ border-width: ${ ( props ) => `${ props . $style . borderWidth } !important` } ;
147152 ${ ( props ) => props . $style }
148153` ;
149154
@@ -339,7 +344,6 @@ const TableTd = styled.td<{
339344 }
340345 background: ${ ( props ) => props . $background } !important;
341346 border-color: ${ ( props ) => props . $style . border } !important;
342- border-width: ${ ( props ) => props . $style . borderWidth } !important;
343347 border-radius: ${ ( props ) => props . $style . radius } ;
344348
345349 padding: 0 !important;
@@ -533,7 +537,7 @@ function TableCellView(props: {
533537 text : columnStyle . text || columnsStyle . text ,
534538 border : columnStyle . border || columnsStyle . border ,
535539 radius : columnStyle . radius || columnsStyle . radius ,
536- borderWidth : columnStyle . borderWidth || columnsStyle . borderWidth ,
540+ // borderWidth: columnStyle.borderWidth || columnsStyle.borderWidth,
537541 textSize : columnStyle . textSize || columnsStyle . textSize ,
538542 textWeight : columnsStyle . textWeight || columnStyle . textWeight ,
539543 fontFamily : columnsStyle . fontFamily || columnStyle . fontFamily ,
0 commit comments