diff --git a/.changeset/sweet-apes-roll.md b/.changeset/sweet-apes-roll.md new file mode 100644 index 00000000000..c266f953797 --- /dev/null +++ b/.changeset/sweet-apes-roll.md @@ -0,0 +1,5 @@ +--- +'@razorpay/blade': patch +--- + +feat: ability to align individual table column items diff --git a/packages/blade/src/components/Table/TableBody.web.tsx b/packages/blade/src/components/Table/TableBody.web.tsx index 717924ebbdb..d30eb7d5152 100644 --- a/packages/blade/src/components/Table/TableBody.web.tsx +++ b/packages/blade/src/components/Table/TableBody.web.tsx @@ -256,7 +256,8 @@ export const CellWrapper = styled(BaseBox)<{ $rowDensity: NonNullable['rowDensity']>; showStripedRows?: boolean; hasPadding?: boolean; -}>(({ theme, $rowDensity, showStripedRows, hasPadding = true }) => { + textAlign?: TableCellProps['textAlign']; +}>(({ theme, $rowDensity, showStripedRows, hasPadding = true, textAlign }) => { const rowBackgroundTransition = `background-color ${makeMotionTime( getIn(theme.motion, tableRow.backgroundColorMotionDuration), )} ${getIn(theme.motion, tableRow.backgroundColorMotionEasing)}`; @@ -272,6 +273,7 @@ export const CellWrapper = styled(BaseBox)<{ minHeight: makeSize(getIn(size, tableRow.minHeight[$rowDensity])), height: '100%', width: '100%', + justifyContent: textAlign, ...(!showStripedRows && { borderBottomWidth: makeSpace(getIn(theme.border.width, tableRow.borderBottomWidth)), borderBottomColor: getIn(theme.colors, tableRow.borderColor), @@ -281,7 +283,12 @@ export const CellWrapper = styled(BaseBox)<{ }; }); -const _TableCell = ({ children, _hasPadding, ...rest }: TableCellProps): React.ReactElement => { +const _TableCell = ({ + children, + textAlign, + _hasPadding, + ...rest +}: TableCellProps): React.ReactElement => { const isChildrenString = typeof children === 'string'; const { selectionType, rowDensity, showStripedRows, backgroundColor } = useTableContext(); const isSelectable = selectionType !== 'none'; @@ -303,6 +310,7 @@ const _TableCell = ({ children, _hasPadding, ...rest }: TableCellProps): React.R alignItems="center" hasPadding={_hasPadding} flex={1} + textAlign={textAlign} // when a direct string child is passed we want to disable pointer events // for custom cells components, consumers can handle pointer events themselves pointerEvents={isChildrenString && isSelectable ? 'none' : 'auto'} diff --git a/packages/blade/src/components/Table/TableFooter.web.tsx b/packages/blade/src/components/Table/TableFooter.web.tsx index 6c502f640bc..0b66d3cd9f2 100644 --- a/packages/blade/src/components/Table/TableFooter.web.tsx +++ b/packages/blade/src/components/Table/TableFooter.web.tsx @@ -79,7 +79,8 @@ const TableFooterRow = assignWithoutSideEffects(_TableFooterRow, { const StyledFooterCell = styled(FooterCell)<{ $backgroundColor: TableBackgroundColors; $rowDensity: NonNullable['rowDensity']>; -}>(({ theme, $backgroundColor, $rowDensity }) => ({ + $textAlign?: string; +}>(({ theme, $backgroundColor, $rowDensity, $textAlign }) => ({ '&&&': { height: '100%', backgroundColor: getIn(theme.colors, $backgroundColor), @@ -98,11 +99,16 @@ const StyledFooterCell = styled(FooterCell)<{ paddingRight: makeSpace(getIn(theme, tableRow.paddingRight[$rowDensity])), minHeight: makeSize(getIn(size, tableRow.minHeight[$rowDensity])), alignItems: 'center', + justifyContent: $textAlign ? $textAlign : 'left', }, }, })); -const _TableFooterCell = ({ children, ...rest }: TableFooterCellProps): React.ReactElement => { +const _TableFooterCell = ({ + children, + textAlign, + ...rest +}: TableFooterCellProps): React.ReactElement => { const isChildrenString = typeof children === 'string'; const { backgroundColor, rowDensity } = useTableContext(); @@ -110,6 +116,7 @@ const _TableFooterCell = ({ children, ...rest }: TableFooterCellProps): React.Re diff --git a/packages/blade/src/components/Table/TableHeader.web.tsx b/packages/blade/src/components/Table/TableHeader.web.tsx index c7e7611e148..298ae1a8330 100644 --- a/packages/blade/src/components/Table/TableHeader.web.tsx +++ b/packages/blade/src/components/Table/TableHeader.web.tsx @@ -96,8 +96,11 @@ const StyledHeaderCell = styled(HeaderCell)<{ $backgroundColor: TableBackgroundColors; $rowDensity: NonNullable['rowDensity']>; $hasPadding: boolean; -}>(({ theme, $isSortable, $backgroundColor, $rowDensity, $hasPadding }) => ({ + $textAlign: 'left' | 'center' | 'right'; +}>(({ theme, $isSortable, $backgroundColor, $rowDensity, $hasPadding, $textAlign }) => ({ '&&&': { + display: $textAlign ? 'flex' : 'block', + justifyContent: $textAlign ? 'space-between' : 'initial', height: '100%', backgroundColor: getIn(theme.colors, $backgroundColor), borderBottomWidth: makeSpace(getIn(theme.border.width, tableHeader.borderBottomAndTopWidth)), @@ -111,7 +114,7 @@ const StyledHeaderCell = styled(HeaderCell)<{ backgroundColor: getIn(theme.colors, tableHeader.backgroundColor), display: 'flex', flexDirection: 'row', - justifyContent: 'space-between', + justifyContent: $textAlign ? $textAlign : 'space-between', alignItems: 'center', height: '100%', paddingLeft: $hasPadding @@ -130,6 +133,7 @@ const _TableHeaderCell = ({ children, headerKey, _hasPadding = true, + textAlign, ...rest }: TableHeaderCellProps): React.ReactElement => { const { @@ -149,6 +153,7 @@ const _TableHeaderCell = ({ $backgroundColor={backgroundColor} $rowDensity={headerRowDensity ?? rowDensity} $hasPadding={_hasPadding} + $textAlign={textAlign} onClick={() => { if (isSortable) { toggleSort(headerKey); @@ -157,15 +162,17 @@ const _TableHeaderCell = ({ {...metaAttribute({ name: MetaConstants.TableHeaderCell })} {...makeAnalyticsAttribute(rest)} > - {isChildrenString ? ( - - {children} - - ) : ( - children - )} + + {isChildrenString ? ( + + {children} + + ) : ( + children + )} + {isSortable && ( - + should accept data-analytics-* props 1`] = ` position: relative; } -.c8.c8.c8.c8.c8 { +.c4.c4.c4.c4.c4 { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-flex: 1; + -webkit-flex-grow: 1; + -ms-flex-positive: 1; + flex-grow: 1; +} + +.c9.c9.c9.c9.c9 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; @@ -20,7 +31,7 @@ exports[` should accept data-analytics-* props 1`] = ` height: 100%; } -.c9.c9.c9.c9.c9 { +.c10.c10.c10.c10.c10 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; @@ -37,7 +48,7 @@ exports[`
should accept data-analytics-* props 1`] = ` pointer-events: auto; } -.c4.c4.c4.c4.c4 { +.c5.c5.c5.c5.c5 { color: hsla(212,39%,16%,1); font-family: "Inter","Inter Fallback Arial",Arial; font-size: 0.875rem; @@ -54,7 +65,7 @@ exports[`
should accept data-analytics-* props 1`] = ` padding: 0; } -.c11.c11.c11.c11.c11 { +.c12.c12.c12.c12.c12 { color: hsla(212,39%,16%,1); font-family: "Inter","Inter Fallback Arial",Arial; font-size: 0.875rem; @@ -77,111 +88,111 @@ exports[`
should accept data-analytics-* props 1`] = ` overflow-wrap: break-word; } -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 { +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 { border: none; -webkit-transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); } -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 tr:last-child .cell-wrapper { +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 tr:last-child .cell-wrapper { border-bottom: none; } -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-single-selected .cell-wrapper-base, -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-selected .cell-wrapper-base { +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-single-selected .cell-wrapper-base, +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-selected .cell-wrapper-base { background-color: hsla(227,100%,59%,0.09); } -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-single-selected:hover:not(.disabled-row) .cell-wrapper-base, -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-selected:hover:not(.disabled-row) .cell-wrapper-base { +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-single-selected:hover:not(.disabled-row) .cell-wrapper-base, +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-selected:hover:not(.disabled-row) .cell-wrapper-base { background-color: hsla(227,100%,59%,0.18); } -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-single-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions, -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions { +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-single-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions, +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions { background-color: hsla(0,0%,100%,1); -webkit-transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); } -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-single-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2, -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2 { +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-single-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2, +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2 { background-color: hsla(0,0%,100%,0); -webkit-transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); } -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-single-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3, -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3 { +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-single-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3, +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3 { background-color: hsla(227,100%,59%,0.18); -webkit-transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); } -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-single-selected:focus:not(.disabled-row) .cell-wrapper-base, -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-selected:focus:not(.disabled-row) .cell-wrapper-base { +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-single-selected:focus:not(.disabled-row) .cell-wrapper-base, +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-selected:focus:not(.disabled-row) .cell-wrapper-base { background-color: hsla(227,100%,59%,0.09); } -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-single-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions, -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions { +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-single-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions, +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions { background-color: hsla(0,0%,100%,1); -webkit-transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); } -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-single-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2, -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2 { +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-single-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2, +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2 { background-color: hsla(0,0%,100%,0); -webkit-transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); } -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-single-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3, -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3 { +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-single-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3, +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3 { background-color: hsla(227,100%,59%,0.09); -webkit-transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); } -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-single-selected:active:not(.disabled-row) .cell-wrapper-base, -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-selected:active:not(.disabled-row) .cell-wrapper-base { +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-single-selected:active:not(.disabled-row) .cell-wrapper-base, +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-selected:active:not(.disabled-row) .cell-wrapper-base { background-color: hsla(227,100%,59%,0.18); } -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-single-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions, -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions { +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-single-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions, +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions { background-color: hsla(0,0%,100%,1); -webkit-transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); } -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-single-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2, -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2 { +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-single-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2, +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2 { background-color: hsla(211,20%,52%,0.12); -webkit-transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); } -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-single-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3, -.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5.c5 .row-select-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3 { +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-single-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3, +.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 .row-select-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3 { background-color: hsla(227,100%,59%,0.18); -webkit-transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); } -.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7 { +.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8 { height: 100%; background-color: hsla(0,0%,100%,1); } -.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7 > div:first-child { +.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8 > div:first-child { -webkit-align-self: stretch; -ms-flex-item-align: stretch; align-self: stretch; } -.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7:focus-visible { +.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8:focus-visible { outline: 4px solid hsla(227,100%,59%,0.18); outline-offset: -4px; -webkit-transition-property: outline-width; @@ -192,7 +203,7 @@ exports[`
should accept data-analytics-* props 1`] = ` transition-timing-function: cubic-bezier(0.3,0,0.2,1); } -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 { +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 { -webkit-transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); background-color: transparent; @@ -206,15 +217,15 @@ exports[`
should accept data-analytics-* props 1`] = ` border-bottom-style: solid; } -.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 { +.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7 { background-color: transparent; } -.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 td:last-child .cell-wrapper { +.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7 td:last-child .cell-wrapper { border-right: none; } -.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6:focus { +.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7.c7:focus { outline: 4px solid hsla(227,100%,59%,0.18); outline-offset: -4px; -webkit-transition-property: outline-width; @@ -230,6 +241,11 @@ exports[`
should accept data-analytics-* props 1`] = ` } .c3.c3.c3.c3.c3.c3.c3.c3.c3.c3.c3.c3.c3.c3.c3 { + display: block; + -webkit-box-pack: initial; + -webkit-justify-content: initial; + -ms-flex-pack: initial; + justify-content: initial; height: 100%; background-color: hsla(0,0%,100%,1); border-bottom-width: 1px; @@ -280,31 +296,31 @@ exports[`
should accept data-analytics-* props 1`] = ` } @media screen and (min-width:320px) { - .c9.c9.c9.c9.c9 { + .c10.c10.c10.c10.c10 { pointer-events: auto; } } @media screen and (min-width:480px) { - .c9.c9.c9.c9.c9 { + .c10.c10.c10.c10.c10 { pointer-events: auto; } } @media screen and (min-width:768px) { - .c9.c9.c9.c9.c9 { + .c10.c10.c10.c10.c10 { pointer-events: auto; } } @media screen and (min-width:1024px) { - .c9.c9.c9.c9.c9 { + .c10.c10.c10.c10.c10 { pointer-events: auto; } } @media screen and (min-width:1200px) { - .c9.c9.c9.c9.c9 { + .c10.c10.c10.c10.c10 { pointer-events: auto; } } @@ -345,12 +361,17 @@ exports[`
should accept data-analytics-* props 1`] = ` tabindex="0" >
-

- Payment ID -

+

+ Payment ID +

+
should accept data-analytics-* props 1`] = ` tabindex="0" >
-

- Amount -

+

+ Amount +

+
should accept data-analytics-* props 1`] = ` tabindex="0" >
-

- Status -

+

+ Status +

+
should accept data-analytics-* props 1`] = ` tabindex="0" >
-

- Type -

+

+ Type +

+
should accept data-analytics-* props 1`] = ` tabindex="0" >
-

- Method -

+

+ Method +

+
should accept data-analytics-* props 1`] = ` tabindex="0" >
-

- Name -

+

+ Name +

+
should accept data-analytics-* props 1`] = ` >

rzp01 @@ -488,7 +534,7 @@ exports[` should accept data-analytics-* props 1`] = `
should accept data-analytics-* props 1`] = ` >
@@ -510,7 +556,7 @@ exports[` should accept data-analytics-* props 1`] = `
should accept data-analytics-* props 1`] = ` >

pending @@ -537,7 +583,7 @@ exports[` should accept data-analytics-* props 1`] = `
should accept data-analytics-* props 1`] = ` >

credit @@ -566,14 +612,14 @@ exports[` should accept data-analytics-* props 1`] = `
should accept data-analytics-* props 1`] = ` >

rzp02 @@ -601,7 +647,7 @@ exports[` should accept data-analytics-* props 1`] = `
should accept data-analytics-* props 1`] = ` >
@@ -623,7 +669,7 @@ exports[` should accept data-analytics-* props 1`] = `
should accept data-analytics-* props 1`] = ` >

pending @@ -650,7 +696,7 @@ exports[` should accept data-analytics-* props 1`] = `
should accept data-analytics-* props 1`] = ` >

credit @@ -679,14 +725,14 @@ exports[` should accept data-analytics-* props 1`] = `
should accept data-analytics-* props 1`] = ` >

rzp03 @@ -714,7 +760,7 @@ exports[` should accept data-analytics-* props 1`] = `
should accept data-analytics-* props 1`] = ` >
@@ -736,7 +782,7 @@ exports[` should accept data-analytics-* props 1`] = `
should accept data-analytics-* props 1`] = ` >

failed @@ -763,7 +809,7 @@ exports[` should accept data-analytics-* props 1`] = `
should accept data-analytics-* props 1`] = ` >

debit @@ -792,14 +838,14 @@ exports[` should accept data-analytics-* props 1`] = `
should accept data-analytics-* props 1`] = ` >

rzp04 @@ -827,7 +873,7 @@ exports[` should accept data-analytics-* props 1`] = `
should accept data-analytics-* props 1`] = ` >
@@ -849,7 +895,7 @@ exports[` should accept data-analytics-* props 1`] = `
should accept data-analytics-* props 1`] = ` >

completed @@ -876,7 +922,7 @@ exports[` should accept data-analytics-* props 1`] = `
should accept data-analytics-* props 1`] = ` >

credit @@ -905,14 +951,14 @@ exports[` should accept data-analytics-* props 1`] = `
should accept data-analytics-* props 1`] = ` >

rzp05 @@ -940,7 +986,7 @@ exports[` should accept data-analytics-* props 1`] = `
should accept data-analytics-* props 1`] = ` >
@@ -962,7 +1008,7 @@ exports[` should accept data-analytics-* props 1`] = `
should accept data-analytics-* props 1`] = ` >

completed @@ -989,7 +1035,7 @@ exports[` should accept data-analytics-* props 1`] = `
should accept data-analytics-* props 1`] = ` >

credit @@ -1064,7 +1110,18 @@ exports[` should render table 1`] = ` align-items: center; } -.c13.c13.c13.c13.c13 { +.c9.c9.c9.c9.c9 { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-flex: 1; + -webkit-flex-grow: 1; + -ms-flex-positive: 1; + flex-grow: 1; +} + +.c14.c14.c14.c14.c14 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; @@ -1076,7 +1133,7 @@ exports[`
should render table 1`] = ` height: 100%; } -.c14.c14.c14.c14.c14 { +.c15.c15.c15.c15.c15 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; @@ -1110,7 +1167,7 @@ exports[`
should render table 1`] = ` padding: 0; } -.c9.c9.c9.c9.c9 { +.c10.c10.c10.c10.c10 { color: hsla(212,39%,16%,1); font-family: "Inter","Inter Fallback Arial",Arial; font-size: 0.875rem; @@ -1127,7 +1184,7 @@ exports[`
should render table 1`] = ` padding: 0; } -.c16.c16.c16.c16.c16 { +.c17.c17.c17.c17.c17 { color: hsla(212,39%,16%,1); font-family: "Inter","Inter Fallback Arial",Arial; font-size: 0.875rem; @@ -1150,111 +1207,111 @@ exports[`
should render table 1`] = ` overflow-wrap: break-word; } -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 { +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 { border: none; -webkit-transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); } -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 tr:last-child .cell-wrapper { +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 tr:last-child .cell-wrapper { border-bottom: none; } -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-single-selected .cell-wrapper-base, -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-selected .cell-wrapper-base { +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-single-selected .cell-wrapper-base, +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-selected .cell-wrapper-base { background-color: hsla(227,100%,59%,0.09); } -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-single-selected:hover:not(.disabled-row) .cell-wrapper-base, -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-selected:hover:not(.disabled-row) .cell-wrapper-base { +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-single-selected:hover:not(.disabled-row) .cell-wrapper-base, +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-selected:hover:not(.disabled-row) .cell-wrapper-base { background-color: hsla(227,100%,59%,0.18); } -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-single-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions, -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions { +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-single-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions, +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions { background-color: hsla(0,0%,100%,1); -webkit-transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); } -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-single-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2, -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2 { +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-single-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2, +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2 { background-color: hsla(0,0%,100%,0); -webkit-transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); } -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-single-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3, -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3 { +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-single-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3, +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-selected:hover:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3 { background-color: hsla(227,100%,59%,0.18); -webkit-transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); } -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-single-selected:focus:not(.disabled-row) .cell-wrapper-base, -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-selected:focus:not(.disabled-row) .cell-wrapper-base { +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-single-selected:focus:not(.disabled-row) .cell-wrapper-base, +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-selected:focus:not(.disabled-row) .cell-wrapper-base { background-color: hsla(227,100%,59%,0.09); } -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-single-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions, -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions { +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-single-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions, +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions { background-color: hsla(0,0%,100%,1); -webkit-transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); } -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-single-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2, -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2 { +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-single-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2, +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2 { background-color: hsla(0,0%,100%,0); -webkit-transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); } -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-single-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3, -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3 { +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-single-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3, +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-selected:focus:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3 { background-color: hsla(227,100%,59%,0.09); -webkit-transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); } -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-single-selected:active:not(.disabled-row) .cell-wrapper-base, -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-selected:active:not(.disabled-row) .cell-wrapper-base { +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-single-selected:active:not(.disabled-row) .cell-wrapper-base, +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-selected:active:not(.disabled-row) .cell-wrapper-base { background-color: hsla(227,100%,59%,0.18); } -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-single-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions, -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions { +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-single-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions, +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions { background-color: hsla(0,0%,100%,1); -webkit-transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); } -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-single-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2, -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2 { +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-single-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2, +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-2 { background-color: hsla(211,20%,52%,0.12); -webkit-transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); } -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-single-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3, -.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10.c10 .row-select-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3 { +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-single-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3, +.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 .row-select-selected:active:not(.disabled-row) .cell-wrapper-base .hover-actions-layer-3 { background-color: hsla(227,100%,59%,0.18); -webkit-transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); } -.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12 { +.c13.c13.c13.c13.c13.c13.c13.c13.c13.c13.c13.c13.c13.c13.c13 { height: 100%; background-color: hsla(0,0%,100%,1); } -.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12 > div:first-child { +.c13.c13.c13.c13.c13.c13.c13.c13.c13.c13.c13.c13.c13.c13.c13 > div:first-child { -webkit-align-self: stretch; -ms-flex-item-align: stretch; align-self: stretch; } -.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12:focus-visible { +.c13.c13.c13.c13.c13.c13.c13.c13.c13.c13.c13.c13.c13.c13.c13:focus-visible { outline: 4px solid hsla(227,100%,59%,0.18); outline-offset: -4px; -webkit-transition-property: outline-width; @@ -1265,7 +1322,7 @@ exports[`
should render table 1`] = ` transition-timing-function: cubic-bezier(0.3,0,0.2,1); } -.c15.c15.c15.c15.c15.c15.c15.c15.c15.c15.c15.c15.c15.c15.c15 { +.c16.c16.c16.c16.c16.c16.c16.c16.c16.c16.c16.c16.c16.c16.c16 { -webkit-transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); transition: background-color 160ms cubic-bezier(0.3,0,0.2,1); background-color: transparent; @@ -1279,15 +1336,15 @@ exports[`
should render table 1`] = ` border-bottom-style: solid; } -.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 { +.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12 { background-color: transparent; } -.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11 td:last-child .cell-wrapper { +.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12 td:last-child .cell-wrapper { border-right: none; } -.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11.c11:focus { +.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12.c12:focus { outline: 4px solid hsla(227,100%,59%,0.18); outline-offset: -4px; -webkit-transition-property: outline-width; @@ -1298,19 +1355,19 @@ exports[`
should render table 1`] = ` transition-timing-function: cubic-bezier(0.3,0,0.2,1); } -.c17.c17.c17.c17.c17.c17.c17.c17.c17.c17.c17.c17.c17.c17.c17 { +.c18.c18.c18.c18.c18.c18.c18.c18.c18.c18.c18.c18.c18.c18.c18 { background-color: hsla(211,20%,52%,0.12); } -.c17.c17.c17.c17.c17.c17.c17.c17.c17.c17.c17.c17.c17.c17.c17 tr:last-child th { +.c18.c18.c18.c18.c18.c18.c18.c18.c18.c18.c18.c18.c18.c18.c18 tr:last-child th { border-bottom: none; } -.c18.c18.c18.c18.c18 th:last-child { +.c19.c19.c19.c19.c19 th:last-child { border-right: none; } -.c19.c19.c19.c19.c19.c19.c19.c19.c19.c19.c19.c19.c19.c19.c19 { +.c20.c20.c20.c20.c20.c20.c20.c20.c20.c20.c20.c20.c20.c20.c20 { height: 100%; background-color: hsla(0,0%,100%,1); border-bottom-width: 1px; @@ -1321,7 +1378,7 @@ exports[`
should render table 1`] = ` border-top-style: solid; } -.c19.c19.c19.c19.c19.c19.c19.c19.c19.c19.c19.c19.c19.c19.c19 > div { +.c20.c20.c20.c20.c20.c20.c20.c20.c20.c20.c20.c20.c20.c20.c20 > div { background-color: hsla(211,20%,52%,0.12); display: -webkit-box; display: -webkit-flex; @@ -1338,6 +1395,10 @@ exports[`
should render table 1`] = ` -webkit-box-align: center; -ms-flex-align: center; align-items: center; + -webkit-box-pack: left; + -webkit-justify-content: left; + -ms-flex-pack: left; + justify-content: left; } .c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6.c6 tr:first-child th { @@ -1345,6 +1406,11 @@ exports[`
should render table 1`] = ` } .c8.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8.c8 { + display: block; + -webkit-box-pack: initial; + -webkit-justify-content: initial; + -ms-flex-pack: initial; + justify-content: initial; height: 100%; background-color: hsla(0,0%,100%,1); border-bottom-width: 1px; @@ -1400,31 +1466,31 @@ exports[`
should render table 1`] = ` } @media screen and (min-width:320px) { - .c14.c14.c14.c14.c14 { + .c15.c15.c15.c15.c15 { pointer-events: auto; } } @media screen and (min-width:480px) { - .c14.c14.c14.c14.c14 { + .c15.c15.c15.c15.c15 { pointer-events: auto; } } @media screen and (min-width:768px) { - .c14.c14.c14.c14.c14 { + .c15.c15.c15.c15.c15 { pointer-events: auto; } } @media screen and (min-width:1024px) { - .c14.c14.c14.c14.c14 { + .c15.c15.c15.c15.c15 { pointer-events: auto; } } @media screen and (min-width:1200px) { - .c14.c14.c14.c14.c14 { + .c15.c15.c15.c15.c15 { pointer-events: auto; } } @@ -1489,12 +1555,17 @@ exports[`
should render table 1`] = ` tabindex="0" >
-

- Payment ID -

+

+ Payment ID +

+
should render table 1`] = ` tabindex="0" >
-

- Amount -

+

+ Amount +

+
should render table 1`] = ` tabindex="0" >
-

- Status -

+

+ Status +

+
should render table 1`] = ` tabindex="0" >
-

- Type -

+

+ Type +

+
should render table 1`] = ` tabindex="0" >
-

- Method -

+

+ Method +

+
should render table 1`] = ` tabindex="0" >
-

- Name -

+

+ Name +

+
should render table 1`] = ` >

rzp01 @@ -1629,7 +1725,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >
@@ -1651,7 +1747,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

pending @@ -1678,7 +1774,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

credit @@ -1705,7 +1801,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

Netbanking @@ -1732,7 +1828,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

John Doe @@ -1761,13 +1857,13 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

rzp02 @@ -1794,7 +1890,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >
@@ -1816,7 +1912,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

pending @@ -1843,7 +1939,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

credit @@ -1870,7 +1966,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

UPI @@ -1897,7 +1993,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

Jane Doe @@ -1926,13 +2022,13 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

rzp03 @@ -1959,7 +2055,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >
@@ -1981,7 +2077,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

failed @@ -2008,7 +2104,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

debit @@ -2035,7 +2131,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

Debit Card @@ -2062,7 +2158,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

Alice Smith @@ -2091,13 +2187,13 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

rzp04 @@ -2124,7 +2220,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >
@@ -2146,7 +2242,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

completed @@ -2173,7 +2269,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

credit @@ -2200,7 +2296,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

Credit Card @@ -2227,7 +2323,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

Bob Smith @@ -2256,13 +2352,13 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

rzp05 @@ -2289,7 +2385,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >
@@ -2311,7 +2407,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

completed @@ -2338,7 +2434,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

credit @@ -2365,7 +2461,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

Netbanking @@ -2392,7 +2488,7 @@ exports[` should render table 1`] = `
should render table 1`] = ` >

John Doe @@ -2421,18 +2517,18 @@ exports[` should render table 1`] = `