diff --git a/.changeset/short-balloons-fetch.md b/.changeset/short-balloons-fetch.md
new file mode 100644
index 0000000000..b991664c0b
--- /dev/null
+++ b/.changeset/short-balloons-fetch.md
@@ -0,0 +1,5 @@
+---
+"@ultraviolet/ui": patch
+---
+
+Add a container around `
` and `
` to manage the overflow
diff --git a/examples/next-advanced/next-env.d.ts b/examples/next-advanced/next-env.d.ts
index a4a7b3f5cf..52e831b434 100644
--- a/examples/next-advanced/next-env.d.ts
+++ b/examples/next-advanced/next-env.d.ts
@@ -2,4 +2,4 @@
///
// NOTE: This file should not be edited
-// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
+// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
diff --git a/examples/next-login/next-env.d.ts b/examples/next-login/next-env.d.ts
index a4a7b3f5cf..52e831b434 100644
--- a/examples/next-login/next-env.d.ts
+++ b/examples/next-login/next-env.d.ts
@@ -2,4 +2,4 @@
///
// NOTE: This file should not be edited
-// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
+// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
diff --git a/examples/next-simple/next-env.d.ts b/examples/next-simple/next-env.d.ts
index a4a7b3f5cf..52e831b434 100644
--- a/examples/next-simple/next-env.d.ts
+++ b/examples/next-simple/next-env.d.ts
@@ -2,4 +2,4 @@
///
// NOTE: This file should not be edited
-// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
+// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
diff --git a/packages/ui/package.json b/packages/ui/package.json
index b58fd10ff6..6fcbda1740 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -60,7 +60,7 @@
"!*.d.ts",
"!*.cjs"
],
- "limit": "600 kB",
+ "limit": "800 kB",
"webpack": false,
"brotli": true,
"running": false
diff --git a/packages/ui/src/components/List/ListContext.tsx b/packages/ui/src/components/List/ListContext.tsx
index ee0e9583a0..45628167c2 100644
--- a/packages/ui/src/components/List/ListContext.tsx
+++ b/packages/ui/src/components/List/ListContext.tsx
@@ -15,6 +15,7 @@ import {
useState,
} from 'react'
import type { Checkbox } from '../Checkbox'
+import type { ColumnProps } from './types'
type RowState = Record
@@ -42,6 +43,7 @@ type ListContextValue = {
unselectAll: () => void
refList: RefObject
inRange: string[]
+ columns: ColumnProps[]
}
const ListContext = createContext(undefined)
@@ -52,6 +54,7 @@ type ListProviderProps = {
selectable: boolean
expandButton: boolean
onSelectedChange?: Dispatch>
+ columns: ColumnProps[]
}
export const ListProvider = ({
@@ -60,6 +63,7 @@ export const ListProvider = ({
selectable,
expandButton,
onSelectedChange,
+ columns,
}: ListProviderProps) => {
const [expandedRowIds, setExpandedRowIds] = useState({})
const [selectedRowIds, setSelectedRowIds] = useState({})
@@ -301,6 +305,7 @@ export const ListProvider = ({
expandButton,
refList,
inRange,
+ columns,
}),
[
registerExpandableRow,
@@ -318,6 +323,7 @@ export const ListProvider = ({
expandButton,
refList,
inRange,
+ columns,
],
)
diff --git a/packages/ui/src/components/List/Row.tsx b/packages/ui/src/components/List/Row.tsx
index 4fb0f6ea1f..6cffa07b09 100644
--- a/packages/ui/src/components/List/Row.tsx
+++ b/packages/ui/src/components/List/Row.tsx
@@ -14,6 +14,7 @@ import { Checkbox } from '../Checkbox'
import { Tooltip } from '../Tooltip'
import { Cell } from './Cell'
import { useListContext } from './ListContext'
+import type { ColumnProps } from './types'
const ExpandableWrapper = styled.tr`
width: 100%;
@@ -52,9 +53,12 @@ const StyledCheckbox = styled(Checkbox, {
`
export const StyledRow = styled('tr', {
- shouldForwardProp: prop => !['sentiment'].includes(prop),
+ shouldForwardProp: prop =>
+ !['sentiment', 'columns', 'columnsStartAt'].includes(prop),
})<{
sentiment: (typeof SENTIMENTS)[number]
+ columns: ColumnProps[]
+ columnsStartAt?: number
}>`
/* List itself also apply style about common templating between HeaderRow and other Rows */
@@ -130,6 +134,17 @@ export const StyledRow = styled('tr', {
color: ${({ theme }) => theme.colors.neutral.textDisabled};
cursor: not-allowed;
}
+
+ ${({ columns, columnsStartAt }) =>
+ columns.map(
+ (column, index) => `
+ td:nth-of-type(${index + 1 + (columnsStartAt ?? 0)}) {
+ ${column.width ? `width: ${column.width};` : ''}
+ ${column.minWidth ? `min-width: ${column.minWidth};` : ''}
+ ${column.maxWidth ? `max-width: ${column.maxWidth};` : ''}
+ }
+ `,
+ )}
`
const StyledCheckboxContainer = styled.div`
@@ -198,6 +213,7 @@ export const Row = forwardRef(
expandButton,
refList,
inRange,
+ columns,
} = useListContext()
const expandedRowId = useId()
@@ -276,6 +292,8 @@ export const Row = forwardRef(
}
data-highlight={selectable && !!selectedRowIds[id]}
data-testid={dataTestid}
+ columns={columns}
+ columnsStartAt={(selectable ? 1 : 0) + (expandButton ? 1 : 0)}
>
{selectable ? (
diff --git a/packages/ui/src/components/List/SkeletonRows.tsx b/packages/ui/src/components/List/SkeletonRows.tsx
index 763378e8bc..af82a2d0a1 100644
--- a/packages/ui/src/components/List/SkeletonRows.tsx
+++ b/packages/ui/src/components/List/SkeletonRows.tsx
@@ -1,6 +1,7 @@
import styled from '@emotion/styled'
import { Skeleton } from '../Skeleton'
import { Cell } from './Cell'
+import { useListContext } from './ListContext'
import { StyledRow } from './Row'
const StyledLoadingRow = styled(StyledRow)`
@@ -27,6 +28,7 @@ export const SkeletonRows = ({
}: ListLoadingSkeletonProps) => {
const rowArray = Array.from({ length: rows }, (_, index) => index)
const colArray = Array.from({ length: cols }, (_, index) => index)
+ const { columns } = useListContext()
return (
<>
@@ -35,6 +37,7 @@ export const SkeletonRows = ({
sentiment="neutral"
role="row"
id={`skeleton-${index}`}
+ columns={columns}
key={index}
>
{selectable ? : null}
diff --git a/packages/ui/src/components/List/__tests__/__snapshots__/index.test.tsx.snap b/packages/ui/src/components/List/__tests__/__snapshots__/index.test.tsx.snap
index 6a544d660f..932f9fb39c 100644
--- a/packages/ui/src/components/List/__tests__/__snapshots__/index.test.tsx.snap
+++ b/packages/ui/src/components/List/__tests__/__snapshots__/index.test.tsx.snap
@@ -3,6 +3,16 @@
exports[`List > Should expand a row by pressing Space 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -11,7 +21,7 @@ exports[`List > Should expand a row by pressing Space 1`] = `
position: relative;
}
-.emotion-0 {
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -20,13 +30,13 @@ exports[`List > Should expand a row by pressing Space 1`] = `
position: relative;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -40,13 +50,13 @@ exports[`List > Should expand a row by pressing Space 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -60,7 +70,7 @@ exports[`List > Should expand a row by pressing Space 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -72,7 +82,7 @@ exports[`List > Should expand a row by pressing Space 1`] = `
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -80,11 +90,11 @@ exports[`List > Should expand a row by pressing Space 1`] = `
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -96,7 +106,7 @@ exports[`List > Should expand a row by pressing Space 1`] = `
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -104,11 +114,11 @@ exports[`List > Should expand a row by pressing Space 1`] = `
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -131,7 +141,7 @@ exports[`List > Should expand a row by pressing Space 1`] = `
flex-wrap: nowrap;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -154,7 +164,7 @@ exports[`List > Should expand a row by pressing Space 1`] = `
flex-wrap: nowrap;
}
-.emotion-24 {
+.emotion-26 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -169,11 +179,11 @@ exports[`List > Should expand a row by pressing Space 1`] = `
background-color: #ffffff;
}
-.emotion-24[role='button row'] {
+.emotion-26[role='button row'] {
cursor: pointer;
}
-.emotion-24:before {
+.emotion-26:before {
content: "";
position: absolute;
top: 0;
@@ -187,40 +197,40 @@ exports[`List > Should expand a row by pressing Space 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-24:hover::before {
+.emotion-26:hover::before {
border-color: #8c40ef;
}
-.emotion-24:hover+.ei4uyz15:before {
+.emotion-26:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-24[aria-expanded='true']:before {
+.emotion-26[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-24 [data-expandable-content] {
+.emotion-26 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-24:hover {
+.emotion-26:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[data-highlight='true'] {
+.emotion-26[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[aria-disabled='true'] {
+.emotion-26[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-24 {
+.emotion-26 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -235,11 +245,11 @@ exports[`List > Should expand a row by pressing Space 1`] = `
background-color: #ffffff;
}
-.emotion-24[role='button row'] {
+.emotion-26[role='button row'] {
cursor: pointer;
}
-.emotion-24:before {
+.emotion-26:before {
content: "";
position: absolute;
top: 0;
@@ -253,47 +263,47 @@ exports[`List > Should expand a row by pressing Space 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-24:hover::before {
+.emotion-26:hover::before {
border-color: #8c40ef;
}
-.emotion-24:hover+.ei4uyz15:before {
+.emotion-26:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-24[aria-expanded='true']:before {
+.emotion-26[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-24 [data-expandable-content] {
+.emotion-26 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-24:hover {
+.emotion-26:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[data-highlight='true'] {
+.emotion-26[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[aria-disabled='true'] {
+.emotion-26[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-26 {
+.emotion-28 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
padding: 0 1rem;
}
-.emotion-26 {
+.emotion-28 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
@@ -303,389 +313,393 @@ exports[`List > Should expand a row by pressing Space 1`] = `
-
-
-
-
+
+
-
- Column 1
-
-
-
-
+ Column 1
+
+ |
+
- Column 2
-
- |
-
-
+ Column 2
+
+ |
+
- Column 3
-
- |
-
-
+ Column 3
+
+ |
+
- Column 4
-
- |
-
-
+ Column 4
+
+ |
+
- Column 5
-
- |
-
-
- |
-
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
+ Column 5
+
+
+ |
+
+
+
- Row 1 Column 5
-
-
-
-
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
- Row 2 Column 1
-
-
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
- Row 2 Column 2
-
-
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
- Row 2 Column 3
-
-
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
- Row 2 Column 4
-
-
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
- Row 2 Column 5
-
-
-
-
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 3 Column 1
-
-
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 3 Column 2
-
-
- Row 3 Column 3
- |
-
- Row 3 Column 4
- |
-
- Row 3 Column 5
- |
-
-
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
- Row 8 Column 5
- |
-
-
-
- Row 9 Column 1
- |
-
- Row 9 Column 2
- |
-
- Row 9 Column 3
- |
-
- Row 9 Column 4
- |
-
- Row 9 Column 5
- |
-
-
-
- Row 10 Column 1
- |
-
- Row 10 Column 2
- |
-
- Row 10 Column 3
- |
-
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 10 Column 4
-
-
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 10 Column 5
-
-
-
-
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
`;
@@ -693,6 +707,16 @@ exports[`List > Should expand a row by pressing Space 1`] = `
exports[`List > Should not collapse a row by clicking on expandable content 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -701,7 +725,7 @@ exports[`List > Should not collapse a row by clicking on expandable content 1`]
position: relative;
}
-.emotion-0 {
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -710,13 +734,13 @@ exports[`List > Should not collapse a row by clicking on expandable content 1`]
position: relative;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -730,13 +754,13 @@ exports[`List > Should not collapse a row by clicking on expandable content 1`]
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -750,7 +774,7 @@ exports[`List > Should not collapse a row by clicking on expandable content 1`]
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -762,7 +786,7 @@ exports[`List > Should not collapse a row by clicking on expandable content 1`]
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -770,11 +794,11 @@ exports[`List > Should not collapse a row by clicking on expandable content 1`]
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -786,7 +810,7 @@ exports[`List > Should not collapse a row by clicking on expandable content 1`]
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -794,11 +818,11 @@ exports[`List > Should not collapse a row by clicking on expandable content 1`]
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -821,7 +845,7 @@ exports[`List > Should not collapse a row by clicking on expandable content 1`]
flex-wrap: nowrap;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -844,7 +868,7 @@ exports[`List > Should not collapse a row by clicking on expandable content 1`]
flex-wrap: nowrap;
}
-.emotion-24 {
+.emotion-26 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -859,11 +883,11 @@ exports[`List > Should not collapse a row by clicking on expandable content 1`]
background-color: #ffffff;
}
-.emotion-24[role='button row'] {
+.emotion-26[role='button row'] {
cursor: pointer;
}
-.emotion-24:before {
+.emotion-26:before {
content: "";
position: absolute;
top: 0;
@@ -877,40 +901,40 @@ exports[`List > Should not collapse a row by clicking on expandable content 1`]
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-24:hover::before {
+.emotion-26:hover::before {
border-color: #8c40ef;
}
-.emotion-24:hover+.emotion-37:before {
+.emotion-26:hover+.emotion-39:before {
border-color: #8c40ef;
}
-.emotion-24[aria-expanded='true']:before {
+.emotion-26[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-24 [data-expandable-content] {
+.emotion-26 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-24:hover {
+.emotion-26:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[data-highlight='true'] {
+.emotion-26[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[aria-disabled='true'] {
+.emotion-26[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-24 {
+.emotion-26 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -925,11 +949,11 @@ exports[`List > Should not collapse a row by clicking on expandable content 1`]
background-color: #ffffff;
}
-.emotion-24[role='button row'] {
+.emotion-26[role='button row'] {
cursor: pointer;
}
-.emotion-24:before {
+.emotion-26:before {
content: "";
position: absolute;
top: 0;
@@ -943,54 +967,54 @@ exports[`List > Should not collapse a row by clicking on expandable content 1`]
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-24:hover::before {
+.emotion-26:hover::before {
border-color: #8c40ef;
}
-.emotion-24:hover+.emotion-37:before {
+.emotion-26:hover+.emotion-39:before {
border-color: #8c40ef;
}
-.emotion-24[aria-expanded='true']:before {
+.emotion-26[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-24 [data-expandable-content] {
+.emotion-26 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-24:hover {
+.emotion-26:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[data-highlight='true'] {
+.emotion-26[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[aria-disabled='true'] {
+.emotion-26[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-26 {
+.emotion-28 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
padding: 0 1rem;
}
-.emotion-26 {
+.emotion-28 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
padding: 0 1rem;
}
-.emotion-36 {
+.emotion-38 {
width: 100%;
display: table-row;
vertical-align: middle;
@@ -1004,7 +1028,7 @@ exports[`List > Should not collapse a row by clicking on expandable content 1`]
position: relative;
}
-.emotion-36:before {
+.emotion-38:before {
content: "";
position: absolute;
top: 0;
@@ -1019,7 +1043,7 @@ exports[`List > Should not collapse a row by clicking on expandable content 1`]
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-39 {
+.emotion-41 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
@@ -1030,402 +1054,406 @@ exports[`List > Should not collapse a row by clicking on expandable content 1`]
-
-
-
-
+
+
-
- Column 1
-
-
-
-
+ Column 1
+
+ |
+
- Column 2
-
- |
-
-
+ Column 2
+
+ |
+
- Column 3
-
- |
-
-
+ Column 3
+
+ |
+
- Column 4
-
- |
-
-
+ Column 4
+
+ |
+
- Column 5
-
- |
-
-
- |
-
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
- Row 1 Column 5
- |
-
-
-
- Row 1 expandable content
- |
-
-
-
- Row 2 Column 1
- |
-
- Row 2 Column 2
- |
-
- Row 2 Column 3
- |
-
- Row 2 Column 4
- |
-
+ Column 5
+
+
+ |
+
+
+
- Row 2 Column 5
-
-
-
-
- Row 3 Column 1
- |
-
- Row 3 Column 2
- |
-
- Row 3 Column 3
- |
-
- Row 3 Column 4
- |
-
- Row 3 Column 5
- |
-
-
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
- Row 6 Column 5
-
-
-
-
+ Row 1 expandable content
+ |
+
+
- Row 7 Column 1
-
-
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
- Row 7 Column 2
-
-
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
- Row 7 Column 3
-
-
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
- Row 7 Column 4
-
-
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
- Row 7 Column 5
-
-
-
-
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 8 Column 1
-
-
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 8 Column 2
-
-
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 8 Column 3
-
-
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 8 Column 4
-
-
- Row 8 Column 5
- |
-
-
-
- Row 9 Column 1
- |
-
- Row 9 Column 2
- |
-
- Row 9 Column 3
- |
-
- Row 9 Column 4
- |
-
- Row 9 Column 5
- |
-
-
-
- Row 10 Column 1
- |
-
- Row 10 Column 2
- |
-
- Row 10 Column 3
- |
-
- Row 10 Column 4
- |
-
- Row 10 Column 5
- |
-
-
-
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
`;
@@ -1433,6 +1461,11 @@ exports[`List > Should not collapse a row by clicking on expandable content 1`]
exports[`List > Should render correctly 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -1441,13 +1474,13 @@ exports[`List > Should render correctly 1`] = `
position: relative;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -1461,7 +1494,7 @@ exports[`List > Should render correctly 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -1473,7 +1506,7 @@ exports[`List > Should render correctly 1`] = `
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -1481,11 +1514,11 @@ exports[`List > Should render correctly 1`] = `
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -1508,7 +1541,7 @@ exports[`List > Should render correctly 1`] = `
flex-wrap: nowrap;
}
-.emotion-24 {
+.emotion-26 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -1523,11 +1556,11 @@ exports[`List > Should render correctly 1`] = `
background-color: #ffffff;
}
-.emotion-24[role='button row'] {
+.emotion-26[role='button row'] {
cursor: pointer;
}
-.emotion-24:before {
+.emotion-26:before {
content: "";
position: absolute;
top: 0;
@@ -1541,40 +1574,40 @@ exports[`List > Should render correctly 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-24:hover::before {
+.emotion-26:hover::before {
border-color: #8c40ef;
}
-.emotion-24:hover+.ei4uyz15:before {
+.emotion-26:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-24[aria-expanded='true']:before {
+.emotion-26[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-24 [data-expandable-content] {
+.emotion-26 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-24:hover {
+.emotion-26:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[data-highlight='true'] {
+.emotion-26[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[aria-disabled='true'] {
+.emotion-26[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-26 {
+.emotion-28 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
@@ -1584,378 +1617,382 @@ exports[`List > Should render correctly 1`] = `
-
-
-
-
+
+
-
- Column 1
-
-
-
-
+ Column 1
+
+ |
+
- Column 2
-
- |
-
-
+ Column 2
+
+ |
+
- Column 3
-
- |
-
-
+ Column 3
+
+ |
+
- Column 4
-
- |
-
-
+ Column 4
+
+ |
+
- Column 5
-
- |
-
-
- |
-
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
- Row 1 Column 5
- |
-
-
-
- Row 2 Column 1
- |
-
- Row 2 Column 2
- |
-
+ Column 5
+
+
+ |
+
+
+
- Row 2 Column 3
-
-
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
- Row 2 Column 4
-
-
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
- Row 2 Column 5
-
-
-
-
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
- Row 3 Column 1
-
-
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
- Row 3 Column 2
-
-
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
- Row 3 Column 3
-
-
- Row 3 Column 4
- |
-
- Row 3 Column 5
- |
-
-
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
- Row 8 Column 5
- |
-
-
-
- Row 9 Column 1
- |
-
- Row 9 Column 2
- |
-
- Row 9 Column 3
- |
-
- Row 9 Column 4
- |
-
- Row 9 Column 5
- |
-
-
-
- Row 10 Column 1
- |
-
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 10 Column 2
-
-
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 10 Column 3
-
-
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 10 Column 4
-
-
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 10 Column 5
-
-
-
-
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
`;
@@ -1963,6 +2000,16 @@ exports[`List > Should render correctly 1`] = `
exports[`List > Should render correctly with bad sort value 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -1971,7 +2018,7 @@ exports[`List > Should render correctly with bad sort value 1`] = `
position: relative;
}
-.emotion-0 {
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -1980,13 +2027,13 @@ exports[`List > Should render correctly with bad sort value 1`] = `
position: relative;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -2000,13 +2047,13 @@ exports[`List > Should render correctly with bad sort value 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -2020,7 +2067,7 @@ exports[`List > Should render correctly with bad sort value 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -2032,7 +2079,7 @@ exports[`List > Should render correctly with bad sort value 1`] = `
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -2040,11 +2087,11 @@ exports[`List > Should render correctly with bad sort value 1`] = `
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -2056,7 +2103,7 @@ exports[`List > Should render correctly with bad sort value 1`] = `
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -2064,11 +2111,11 @@ exports[`List > Should render correctly with bad sort value 1`] = `
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -2091,7 +2138,7 @@ exports[`List > Should render correctly with bad sort value 1`] = `
flex-wrap: nowrap;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -2114,7 +2161,7 @@ exports[`List > Should render correctly with bad sort value 1`] = `
flex-wrap: nowrap;
}
-.emotion-24 {
+.emotion-26 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -2129,11 +2176,11 @@ exports[`List > Should render correctly with bad sort value 1`] = `
background-color: #ffffff;
}
-.emotion-24[role='button row'] {
+.emotion-26[role='button row'] {
cursor: pointer;
}
-.emotion-24:before {
+.emotion-26:before {
content: "";
position: absolute;
top: 0;
@@ -2147,40 +2194,40 @@ exports[`List > Should render correctly with bad sort value 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-24:hover::before {
+.emotion-26:hover::before {
border-color: #8c40ef;
}
-.emotion-24:hover+.ei4uyz15:before {
+.emotion-26:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-24[aria-expanded='true']:before {
+.emotion-26[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-24 [data-expandable-content] {
+.emotion-26 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-24:hover {
+.emotion-26:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[data-highlight='true'] {
+.emotion-26[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[aria-disabled='true'] {
+.emotion-26[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-24 {
+.emotion-26 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -2195,11 +2242,11 @@ exports[`List > Should render correctly with bad sort value 1`] = `
background-color: #ffffff;
}
-.emotion-24[role='button row'] {
+.emotion-26[role='button row'] {
cursor: pointer;
}
-.emotion-24:before {
+.emotion-26:before {
content: "";
position: absolute;
top: 0;
@@ -2213,47 +2260,47 @@ exports[`List > Should render correctly with bad sort value 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-24:hover::before {
+.emotion-26:hover::before {
border-color: #8c40ef;
}
-.emotion-24:hover+.ei4uyz15:before {
+.emotion-26:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-24[aria-expanded='true']:before {
+.emotion-26[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-24 [data-expandable-content] {
+.emotion-26 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-24:hover {
+.emotion-26:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[data-highlight='true'] {
+.emotion-26[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[aria-disabled='true'] {
+.emotion-26[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-26 {
+.emotion-28 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
padding: 0 1rem;
}
-.emotion-26 {
+.emotion-28 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
@@ -2263,378 +2310,382 @@ exports[`List > Should render correctly with bad sort value 1`] = `
-
-
-
-
+
+
-
- Column 1
-
-
-
-
+ Column 1
+
+ |
+
- Column 2
-
- |
-
-
+ Column 2
+
+ |
+
- Column 3
-
- |
-
-
+ Column 3
+
+ |
+
- Column 4
-
- |
-
-
+ Column 4
+
+ |
+
- Column 5
-
- |
-
-
- |
-
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
- Row 1 Column 5
- |
-
-
-
- Row 2 Column 1
- |
-
- Row 2 Column 2
- |
-
+ Column 5
+
+
+ |
+
+
+
- Row 2 Column 3
-
-
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
- Row 2 Column 4
-
-
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
- Row 2 Column 5
-
-
-
-
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
- Row 3 Column 1
-
-
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
- Row 3 Column 2
-
-
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
- Row 3 Column 3
-
-
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 3 Column 4
-
-
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 3 Column 5
-
-
-
-
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 4 Column 1
-
-
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 4 Column 2
-
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
- Row 8 Column 5
- |
-
-
-
- Row 9 Column 1
- |
-
- Row 9 Column 2
- |
-
- Row 9 Column 3
- |
-
- Row 9 Column 4
- |
-
- Row 9 Column 5
- |
-
-
-
- Row 10 Column 1
- |
-
- Row 10 Column 2
- |
-
- Row 10 Column 3
- |
-
- Row 10 Column 4
- |
-
- Row 10 Column 5
- |
-
-
-
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
`;
@@ -2642,6 +2693,11 @@ exports[`List > Should render correctly with bad sort value 1`] = `
exports[`List > Should render correctly with disabled rows 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -2650,13 +2706,13 @@ exports[`List > Should render correctly with disabled rows 1`] = `
position: relative;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -2670,7 +2726,7 @@ exports[`List > Should render correctly with disabled rows 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -2682,7 +2738,7 @@ exports[`List > Should render correctly with disabled rows 1`] = `
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -2690,11 +2746,11 @@ exports[`List > Should render correctly with disabled rows 1`] = `
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -2717,7 +2773,7 @@ exports[`List > Should render correctly with disabled rows 1`] = `
flex-wrap: nowrap;
}
-.emotion-24 {
+.emotion-26 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -2732,11 +2788,11 @@ exports[`List > Should render correctly with disabled rows 1`] = `
background-color: #ffffff;
}
-.emotion-24[role='button row'] {
+.emotion-26[role='button row'] {
cursor: pointer;
}
-.emotion-24:before {
+.emotion-26:before {
content: "";
position: absolute;
top: 0;
@@ -2750,40 +2806,40 @@ exports[`List > Should render correctly with disabled rows 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-24:hover::before {
+.emotion-26:hover::before {
border-color: #8c40ef;
}
-.emotion-24:hover+.ei4uyz15:before {
+.emotion-26:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-24[aria-expanded='true']:before {
+.emotion-26[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-24 [data-expandable-content] {
+.emotion-26 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-24:hover {
+.emotion-26:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[data-highlight='true'] {
+.emotion-26[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[aria-disabled='true'] {
+.emotion-26[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-26 {
+.emotion-28 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
@@ -2793,388 +2849,392 @@ exports[`List > Should render correctly with disabled rows 1`] = `
-
-
-
-
+
+
-
- Column 1
-
-
-
-
+ Column 1
+
+ |
+
- Column 2
-
- |
-
-
+ Column 2
+
+ |
+
- Column 3
-
- |
-
-
+ Column 3
+
+ |
+
- Column 4
-
- |
-
-
+ Column 4
+
+ |
+
- Column 5
-
- |
-
-
- |
-
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
- Row 1 Column 5
- |
-
-
-
- Row 2 Column 1
- |
-
- Row 2 Column 2
- |
-
+ Column 5
+
+
+ |
+
+
+
- Row 2 Column 3
-
-
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
- Row 2 Column 4
-
-
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
- Row 2 Column 5
-
-
-
-
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
- Row 3 Column 1
-
-
- Row 3 Column 2
- |
-
- Row 3 Column 3
- |
-
- Row 3 Column 4
- |
-
- Row 3 Column 5
- |
-
-
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
- Row 8 Column 5
- |
-
-
-
- Row 9 Column 1
- |
-
- Row 9 Column 2
- |
-
- Row 9 Column 3
- |
-
- Row 9 Column 4
- |
-
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
- Row 9 Column 5
-
-
-
-
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
- Row 10 Column 1
-
-
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 10 Column 2
-
-
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 10 Column 3
-
-
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 10 Column 4
-
-
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 10 Column 5
-
-
-
-
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
`;
@@ -3182,6 +3242,11 @@ exports[`List > Should render correctly with disabled rows 1`] = `
exports[`List > Should render correctly with expandable rows 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -3190,13 +3255,13 @@ exports[`List > Should render correctly with expandable rows 1`] = `
position: relative;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -3210,7 +3275,7 @@ exports[`List > Should render correctly with expandable rows 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -3222,7 +3287,7 @@ exports[`List > Should render correctly with expandable rows 1`] = `
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -3230,11 +3295,11 @@ exports[`List > Should render correctly with expandable rows 1`] = `
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -3257,7 +3322,7 @@ exports[`List > Should render correctly with expandable rows 1`] = `
flex-wrap: nowrap;
}
-.emotion-24 {
+.emotion-26 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -3272,11 +3337,11 @@ exports[`List > Should render correctly with expandable rows 1`] = `
background-color: #ffffff;
}
-.emotion-24[role='button row'] {
+.emotion-26[role='button row'] {
cursor: pointer;
}
-.emotion-24:before {
+.emotion-26:before {
content: "";
position: absolute;
top: 0;
@@ -3290,40 +3355,40 @@ exports[`List > Should render correctly with expandable rows 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-24:hover::before {
+.emotion-26:hover::before {
border-color: #8c40ef;
}
-.emotion-24:hover+.ei4uyz15:before {
+.emotion-26:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-24[aria-expanded='true']:before {
+.emotion-26[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-24 [data-expandable-content] {
+.emotion-26 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-24:hover {
+.emotion-26:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[data-highlight='true'] {
+.emotion-26[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[aria-disabled='true'] {
+.emotion-26[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-26 {
+.emotion-28 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
@@ -3333,398 +3398,402 @@ exports[`List > Should render correctly with expandable rows 1`] = `
-
-
-
-
-
- Column 1
-
- |
-
+
+
-
- Column 2
-
-
-
-
+ Column 1
+
+ |
+
- Column 3
-
- |
-
-
+ Column 2
+
+ |
+
- Column 4
-
- |
-
-
+ Column 3
+
+ |
+
- Column 5
-
- |
-
-
- |
-
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
- Row 1 Column 5
- |
-
-
-
+ Column 4
+
+
+ |
+
+ Column 5
+
+ |
+
+
+
+
- Row 2 Column 1
-
-
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
- Row 2 Column 2
-
-
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
- Row 2 Column 3
-
-
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
- Row 2 Column 4
-
-
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
- Row 2 Column 5
-
-
-
-
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
- Row 3 Column 1
-
-
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 3 Column 2
-
-
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 3 Column 3
-
-
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 3 Column 4
-
-
- Row 3 Column 5
- |
-
-
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
- Row 8 Column 5
- |
-
-
-
- Row 9 Column 1
- |
-
- Row 9 Column 2
- |
-
- Row 9 Column 3
- |
-
- Row 9 Column 4
- |
-
- Row 9 Column 5
- |
-
-
-
- Row 10 Column 1
- |
-
- Row 10 Column 2
- |
-
- Row 10 Column 3
- |
-
- Row 10 Column 4
- |
-
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 10 Column 5
-
-
-
-
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
`;
@@ -3732,6 +3801,16 @@ exports[`List > Should render correctly with expandable rows 1`] = `
exports[`List > Should render correctly with info 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -3740,7 +3819,7 @@ exports[`List > Should render correctly with info 1`] = `
position: relative;
}
-.emotion-0 {
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -3749,13 +3828,13 @@ exports[`List > Should render correctly with info 1`] = `
position: relative;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -3769,13 +3848,13 @@ exports[`List > Should render correctly with info 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -3789,7 +3868,7 @@ exports[`List > Should render correctly with info 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -3801,7 +3880,7 @@ exports[`List > Should render correctly with info 1`] = `
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -3809,11 +3888,11 @@ exports[`List > Should render correctly with info 1`] = `
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -3825,7 +3904,7 @@ exports[`List > Should render correctly with info 1`] = `
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -3833,11 +3912,11 @@ exports[`List > Should render correctly with info 1`] = `
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -3860,7 +3939,7 @@ exports[`List > Should render correctly with info 1`] = `
flex-wrap: nowrap;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -3883,15 +3962,15 @@ exports[`List > Should render correctly with info 1`] = `
flex-wrap: nowrap;
}
-.emotion-8 {
+.emotion-10 {
display: inherit;
}
-.emotion-8[data-container-full-width="true"] {
+.emotion-10[data-container-full-width="true"] {
width: 100%;
}
-.emotion-10 {
+.emotion-12 {
vertical-align: middle;
fill: #727683;
height: 20px;
@@ -3900,12 +3979,12 @@ exports[`List > Should render correctly with info 1`] = `
min-height: 20px;
}
-.emotion-10 .fillStroke {
+.emotion-12 .fillStroke {
stroke: #727683;
fill: none;
}
-.emotion-44 {
+.emotion-46 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -3920,11 +3999,11 @@ exports[`List > Should render correctly with info 1`] = `
background-color: #ffffff;
}
-.emotion-44[role='button row'] {
+.emotion-46[role='button row'] {
cursor: pointer;
}
-.emotion-44:before {
+.emotion-46:before {
content: "";
position: absolute;
top: 0;
@@ -3938,40 +4017,40 @@ exports[`List > Should render correctly with info 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-44:hover::before {
+.emotion-46:hover::before {
border-color: #8c40ef;
}
-.emotion-44:hover+.ei4uyz15:before {
+.emotion-46:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-44[aria-expanded='true']:before {
+.emotion-46[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-44 [data-expandable-content] {
+.emotion-46 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-44:hover {
+.emotion-46:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-44[data-highlight='true'] {
+.emotion-46[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-44[aria-disabled='true'] {
+.emotion-46[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-44 {
+.emotion-46 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -3986,11 +4065,11 @@ exports[`List > Should render correctly with info 1`] = `
background-color: #ffffff;
}
-.emotion-44[role='button row'] {
+.emotion-46[role='button row'] {
cursor: pointer;
}
-.emotion-44:before {
+.emotion-46:before {
content: "";
position: absolute;
top: 0;
@@ -4004,47 +4083,47 @@ exports[`List > Should render correctly with info 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-44:hover::before {
+.emotion-46:hover::before {
border-color: #8c40ef;
}
-.emotion-44:hover+.ei4uyz15:before {
+.emotion-46:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-44[aria-expanded='true']:before {
+.emotion-46[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-44 [data-expandable-content] {
+.emotion-46 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-44:hover {
+.emotion-46:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-44[data-highlight='true'] {
+.emotion-46[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-44[aria-disabled='true'] {
+.emotion-46[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-46 {
+.emotion-48 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
padding: 0 1rem;
}
-.emotion-46 {
+.emotion-48 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
@@ -4054,463 +4133,467 @@ exports[`List > Should render correctly with info 1`] = `
-
-
-
-
+
+
-
-
-
-
- |
-
- |
-
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
- Row 1 Column 5
- |
-
-
-
- Row 2 Column 1
- |
-
- Row 2 Column 2
- |
-
- Row 2 Column 3
- |
-
- Row 2 Column 4
- |
-
- Row 2 Column 5
- |
-
-
-
+ |
+
+
+
- Row 3 Column 1
-
-
- Row 3 Column 2
- |
-
- Row 3 Column 3
- |
-
- Row 3 Column 4
- |
-
- Row 3 Column 5
- |
-
-
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
- Row 5 Column 1
- |
-
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
- Row 5 Column 2
-
-
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
- Row 5 Column 3
-
-
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
- Row 5 Column 4
-
-
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
- Row 5 Column 5
-
-
-
-
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
- Row 6 Column 1
-
-
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 6 Column 2
-
-
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 6 Column 3
-
-
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 6 Column 4
-
-
- Row 6 Column 5
- |
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
- Row 8 Column 5
- |
-
-
-
- Row 9 Column 1
- |
-
- Row 9 Column 2
- |
-
- Row 9 Column 3
- |
-
- Row 9 Column 4
- |
-
- Row 9 Column 5
- |
-
-
-
- Row 10 Column 1
- |
-
- Row 10 Column 2
- |
-
- Row 10 Column 3
- |
-
- Row 10 Column 4
- |
-
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 10 Column 5
-
-
-
-
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
`;
@@ -4518,6 +4601,16 @@ exports[`List > Should render correctly with info 1`] = `
exports[`List > Should render correctly with isExpandable and autoClose rows then click 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -4526,7 +4619,7 @@ exports[`List > Should render correctly with isExpandable and autoClose rows the
position: relative;
}
-.emotion-0 {
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -4535,13 +4628,13 @@ exports[`List > Should render correctly with isExpandable and autoClose rows the
position: relative;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -4555,13 +4648,13 @@ exports[`List > Should render correctly with isExpandable and autoClose rows the
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -4575,7 +4668,7 @@ exports[`List > Should render correctly with isExpandable and autoClose rows the
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -4587,7 +4680,7 @@ exports[`List > Should render correctly with isExpandable and autoClose rows the
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -4595,11 +4688,11 @@ exports[`List > Should render correctly with isExpandable and autoClose rows the
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -4611,7 +4704,7 @@ exports[`List > Should render correctly with isExpandable and autoClose rows the
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -4619,11 +4712,11 @@ exports[`List > Should render correctly with isExpandable and autoClose rows the
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -4646,7 +4739,7 @@ exports[`List > Should render correctly with isExpandable and autoClose rows the
flex-wrap: nowrap;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -4669,7 +4762,7 @@ exports[`List > Should render correctly with isExpandable and autoClose rows the
flex-wrap: nowrap;
}
-.emotion-24 {
+.emotion-26 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -4684,11 +4777,11 @@ exports[`List > Should render correctly with isExpandable and autoClose rows the
background-color: #ffffff;
}
-.emotion-24[role='button row'] {
+.emotion-26[role='button row'] {
cursor: pointer;
}
-.emotion-24:before {
+.emotion-26:before {
content: "";
position: absolute;
top: 0;
@@ -4702,40 +4795,40 @@ exports[`List > Should render correctly with isExpandable and autoClose rows the
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-24:hover::before {
+.emotion-26:hover::before {
border-color: #8c40ef;
}
-.emotion-24:hover+.emotion-49:before {
+.emotion-26:hover+.emotion-51:before {
border-color: #8c40ef;
}
-.emotion-24[aria-expanded='true']:before {
+.emotion-26[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-24 [data-expandable-content] {
+.emotion-26 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-24:hover {
+.emotion-26:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[data-highlight='true'] {
+.emotion-26[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[aria-disabled='true'] {
+.emotion-26[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-24 {
+.emotion-26 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -4750,11 +4843,11 @@ exports[`List > Should render correctly with isExpandable and autoClose rows the
background-color: #ffffff;
}
-.emotion-24[role='button row'] {
+.emotion-26[role='button row'] {
cursor: pointer;
}
-.emotion-24:before {
+.emotion-26:before {
content: "";
position: absolute;
top: 0;
@@ -4768,54 +4861,54 @@ exports[`List > Should render correctly with isExpandable and autoClose rows the
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-24:hover::before {
+.emotion-26:hover::before {
border-color: #8c40ef;
}
-.emotion-24:hover+.emotion-49:before {
+.emotion-26:hover+.emotion-51:before {
border-color: #8c40ef;
}
-.emotion-24[aria-expanded='true']:before {
+.emotion-26[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-24 [data-expandable-content] {
+.emotion-26 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-24:hover {
+.emotion-26:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[data-highlight='true'] {
+.emotion-26[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[aria-disabled='true'] {
+.emotion-26[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-26 {
+.emotion-28 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
padding: 0 1rem;
}
-.emotion-26 {
+.emotion-28 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
padding: 0 1rem;
}
-.emotion-48 {
+.emotion-50 {
width: 100%;
display: table-row;
vertical-align: middle;
@@ -4829,7 +4922,7 @@ exports[`List > Should render correctly with isExpandable and autoClose rows the
position: relative;
}
-.emotion-48:before {
+.emotion-50:before {
content: "";
position: absolute;
top: 0;
@@ -4844,7 +4937,7 @@ exports[`List > Should render correctly with isExpandable and autoClose rows the
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-51 {
+.emotion-53 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
@@ -4855,433 +4948,447 @@ exports[`List > Should render correctly with isExpandable and autoClose rows the
-
-
-
-
+
+
-
- Column 1
-
-
-
-
+ Column 1
+
+ |
+
- Column 2
-
- |
-
-
+ Column 2
+
+ |
+
- Column 3
-
- |
-
-
+ Column 3
+
+ |
+
- Column 4
-
- |
-
-
+ Column 4
+
+ |
+
- Column 5
-
- |
-
-
- |
-
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
- Row 1 Column 5
- |
-
-
-
- Row 2 Column 1
- |
-
+ Column 5
+
+
+ |
+
+
+
- Row 2 Column 2
-
-
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
- Row 2 Column 3
-
-
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
- Row 2 Column 4
-
-
+ Row 2 expandable content
+ |
+
+
- Row 2 Column 5
-
-
-
-
- Row 2 expandable content
- |
-
-
-
- Row 3 Column 1
- |
-
- Row 3 Column 2
- |
-
- Row 3 Column 3
- |
-
- Row 3 Column 4
- |
-
- Row 3 Column 5
- |
-
-
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
- Row 8 Column 5
- |
-
-
-
- Row 9 Column 1
- |
-
- Row 9 Column 2
- |
-
- Row 9 Column 3
- |
-
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
- Row 9 Column 4
-
-
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
- Row 9 Column 5
-
-
-
-
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
- Row 10 Column 1
-
-
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 10 Column 2
-
-
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 10 Column 3
-
-
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 10 Column 4
-
-
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 10 Column 5
-
-
-
-
-
-
-`;
-
-exports[`List > Should render correctly with isExpandable rows then click 1`] = `
-
- .emotion-0 {
- width: 100%;
- box-sizing: content-box;
- gap: 0.5rem;
- border-collapse: collapsed;
- border-spacing: 0 1rem;
- position: relative;
-}
-
-.emotion-0 {
- width: 100%;
- box-sizing: content-box;
- gap: 0.5rem;
- border-collapse: collapsed;
- border-spacing: 0 1rem;
- position: relative;
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
+
+
+`;
+
+exports[`List > Should render correctly with isExpandable rows then click 1`] = `
+
+ .emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
+ width: 100%;
+ box-sizing: content-box;
+ gap: 0.5rem;
+ border-collapse: collapsed;
+ border-spacing: 0 1rem;
+ position: relative;
}
.emotion-2 {
+ width: 100%;
+ box-sizing: content-box;
+ gap: 0.5rem;
+ border-collapse: collapsed;
+ border-spacing: 0 1rem;
+ position: relative;
+}
+
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -5295,13 +5402,13 @@ exports[`List > Should render correctly with isExpandable rows then click 1`] =
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -5315,7 +5422,7 @@ exports[`List > Should render correctly with isExpandable rows then click 1`] =
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -5327,7 +5434,7 @@ exports[`List > Should render correctly with isExpandable rows then click 1`] =
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -5335,11 +5442,11 @@ exports[`List > Should render correctly with isExpandable rows then click 1`] =
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -5351,7 +5458,7 @@ exports[`List > Should render correctly with isExpandable rows then click 1`] =
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -5359,11 +5466,11 @@ exports[`List > Should render correctly with isExpandable rows then click 1`] =
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -5386,7 +5493,7 @@ exports[`List > Should render correctly with isExpandable rows then click 1`] =
flex-wrap: nowrap;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -5409,7 +5516,7 @@ exports[`List > Should render correctly with isExpandable rows then click 1`] =
flex-wrap: nowrap;
}
-.emotion-24 {
+.emotion-26 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -5424,11 +5531,11 @@ exports[`List > Should render correctly with isExpandable rows then click 1`] =
background-color: #ffffff;
}
-.emotion-24[role='button row'] {
+.emotion-26[role='button row'] {
cursor: pointer;
}
-.emotion-24:before {
+.emotion-26:before {
content: "";
position: absolute;
top: 0;
@@ -5442,40 +5549,40 @@ exports[`List > Should render correctly with isExpandable rows then click 1`] =
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-24:hover::before {
+.emotion-26:hover::before {
border-color: #8c40ef;
}
-.emotion-24:hover+.ei4uyz15:before {
+.emotion-26:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-24[aria-expanded='true']:before {
+.emotion-26[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-24 [data-expandable-content] {
+.emotion-26 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-24:hover {
+.emotion-26:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[data-highlight='true'] {
+.emotion-26[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[aria-disabled='true'] {
+.emotion-26[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-24 {
+.emotion-26 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -5490,11 +5597,11 @@ exports[`List > Should render correctly with isExpandable rows then click 1`] =
background-color: #ffffff;
}
-.emotion-24[role='button row'] {
+.emotion-26[role='button row'] {
cursor: pointer;
}
-.emotion-24:before {
+.emotion-26:before {
content: "";
position: absolute;
top: 0;
@@ -5508,47 +5615,47 @@ exports[`List > Should render correctly with isExpandable rows then click 1`] =
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-24:hover::before {
+.emotion-26:hover::before {
border-color: #8c40ef;
}
-.emotion-24:hover+.ei4uyz15:before {
+.emotion-26:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-24[aria-expanded='true']:before {
+.emotion-26[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-24 [data-expandable-content] {
+.emotion-26 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-24:hover {
+.emotion-26:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[data-highlight='true'] {
+.emotion-26[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[aria-disabled='true'] {
+.emotion-26[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-26 {
+.emotion-28 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
padding: 0 1rem;
}
-.emotion-26 {
+.emotion-28 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
@@ -5558,398 +5665,402 @@ exports[`List > Should render correctly with isExpandable rows then click 1`] =
-
-
-
-
+
+
-
- Column 1
-
-
-
-
+ Column 1
+
+ |
+
- Column 2
-
- |
-
-
+ Column 2
+
+ |
+
- Column 3
-
- |
-
-
+ Column 3
+
+ |
+
- Column 4
-
- |
-
-
+ Column 4
+
+ |
+
- Column 5
-
- |
-
-
- |
-
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
- Row 1 Column 5
- |
-
-
-
- Row 2 Column 1
- |
-
+ Column 5
+
+
+ |
+
+
+
- Row 2 Column 2
-
-
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
- Row 2 Column 3
-
-
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
- Row 2 Column 4
-
-
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
- Row 2 Column 5
-
-
-
-
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
- Row 3 Column 1
-
-
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
- Row 3 Column 2
-
-
- Row 3 Column 3
- |
-
- Row 3 Column 4
- |
-
- Row 3 Column 5
- |
-
-
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
- Row 8 Column 5
- |
-
-
-
- Row 9 Column 1
- |
-
- Row 9 Column 2
- |
-
- Row 9 Column 3
- |
-
- Row 9 Column 4
- |
-
- Row 9 Column 5
- |
-
-
-
- Row 10 Column 1
- |
-
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 10 Column 2
-
-
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 10 Column 3
-
-
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 10 Column 4
-
-
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 10 Column 5
-
-
-
-
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
`;
@@ -5967,6 +6078,11 @@ exports[`List > Should render correctly with loading 1`] = `
}
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -5975,13 +6091,13 @@ exports[`List > Should render correctly with loading 1`] = `
position: relative;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -5995,7 +6111,7 @@ exports[`List > Should render correctly with loading 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -6007,7 +6123,7 @@ exports[`List > Should render correctly with loading 1`] = `
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -6015,11 +6131,11 @@ exports[`List > Should render correctly with loading 1`] = `
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -6042,7 +6158,7 @@ exports[`List > Should render correctly with loading 1`] = `
flex-wrap: nowrap;
}
-.emotion-24 {
+.emotion-26 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -6058,11 +6174,11 @@ exports[`List > Should render correctly with loading 1`] = `
cursor: progress;
}
-.emotion-24[role='button row'] {
+.emotion-26[role='button row'] {
cursor: pointer;
}
-.emotion-24:before {
+.emotion-26:before {
content: "";
position: absolute;
top: 0;
@@ -6076,47 +6192,47 @@ exports[`List > Should render correctly with loading 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-24:hover::before {
+.emotion-26:hover::before {
border-color: #8c40ef;
}
-.emotion-24:hover+.ei4uyz15:before {
+.emotion-26:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-24[aria-expanded='true']:before {
+.emotion-26[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-24 [data-expandable-content] {
+.emotion-26 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-24:hover {
+.emotion-26:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[data-highlight='true'] {
+.emotion-26[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[aria-disabled='true'] {
+.emotion-26[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-26 {
+.emotion-28 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
padding: 0 1rem;
}
-.emotion-29 {
+.emotion-31 {
position: relative;
width: 100%;
overflow: hidden;
@@ -6142,7 +6258,7 @@ exports[`List > Should render correctly with loading 1`] = `
justify-content: center;
}
-.emotion-31 {
+.emotion-33 {
height: 0.75rem;
width: 7.5rem;
max-width: 100%;
@@ -6150,7 +6266,7 @@ exports[`List > Should render correctly with loading 1`] = `
background-color: #e9eaeb;
}
-.emotion-33 {
+.emotion-35 {
position: absolute;
top: 0;
height: 100%;
@@ -6171,7 +6287,7 @@ exports[`List > Should render correctly with loading 1`] = `
}
@media (prefers-reduced-motion: reduce) {
- .emotion-33 {
+ .emotion-35 {
-webkit-animation: unset;
animation: unset;
}
@@ -6180,498 +6296,502 @@ exports[`List > Should render correctly with loading 1`] = `
-
-
-
-
+
+
-
- Column 1
-
-
-
-
+ Column 1
+
+ |
+
- Column 2
-
- |
-
-
+ Column 2
+
+ |
+
- Column 3
-
- |
-
-
+ Column 3
+
+ |
+
- Column 4
-
- |
-
-
+ Column 4
+
+ |
+
- Column 5
-
- |
-
-
- |
-
-
-
- |
-
+ Column 5
+
+
+ |
+
+
+
-
-
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
-
-
-
+ |
+
-
-
- |
-
+
+
+
+ |
+
+
-
-
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
-
-
-
+ |
+
-
-
- |
-
+
+
+
+ |
+
+
-
-
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
-
-
-
+ |
+
-
-
- |
-
+
+
+
+ |
+
+
-
-
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
-
-
-
+ |
+
-
-
- |
-
+
+
+
+ |
+
+
-
+ aria-busy="true"
+ aria-live="polite"
+ class="emotion-30 emotion-31 emotion-32"
+ >
+
+
+
+
+
-
- |
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
-
-
+ aria-busy="true"
+ aria-live="polite"
+ class="emotion-30 emotion-31 emotion-32"
+ >
+
+
+
+
+
+
+
+
`;
@@ -6689,6 +6809,11 @@ exports[`List > Should render correctly with loading with selectable 1`] = `
}
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -6697,13 +6822,13 @@ exports[`List > Should render correctly with loading with selectable 1`] = `
position: relative;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -6717,7 +6842,7 @@ exports[`List > Should render correctly with loading with selectable 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-5 {
+.emotion-7 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -6731,7 +6856,7 @@ exports[`List > Should render correctly with loading with selectable 1`] = `
padding: 0;
}
-.emotion-5[role*='button'] {
+.emotion-7[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -6739,15 +6864,15 @@ exports[`List > Should render correctly with loading with selectable 1`] = `
user-select: none;
}
-.emotion-5[aria-sort] {
+.emotion-7[aria-sort] {
color: #641cb3;
}
-.emotion-5:first-of-type {
+.emotion-7:first-of-type {
padding-left: 1rem;
}
-.emotion-7 {
+.emotion-9 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -6770,7 +6895,7 @@ exports[`List > Should render correctly with loading with selectable 1`] = `
flex-wrap: nowrap;
}
-.emotion-9 {
+.emotion-11 {
position: relative;
display: -webkit-inline-box;
display: -webkit-inline-flex;
@@ -6783,65 +6908,65 @@ exports[`List > Should render correctly with loading with selectable 1`] = `
gap: 0.5rem;
}
-.emotion-9 .eqr7bqq4 {
+.emotion-11 .eqr7bqq4 {
cursor: pointer;
}
-.emotion-9[aria-disabled='true'] {
+.emotion-11[aria-disabled='true'] {
cursor: not-allowed;
color: #b5b7bd;
}
-.emotion-9[aria-disabled='true'] .eqr7bqq4 {
+.emotion-11[aria-disabled='true'] .eqr7bqq4 {
cursor: not-allowed;
}
-.emotion-9[aria-disabled='true'] .emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-16 {
fill: #e9eaeb;
}
-.emotion-9[aria-disabled='true'] .emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-16 .emotion-18 {
stroke: #d9dadd;
fill: #f3f3f4;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 {
fill: #ffd3e3;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
stroke: #ffd3e3;
fill: #ffd3e3;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #ffebf2;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #ffbbd3;
fill: #ffebf2;
}
-.emotion-9[aria-disabled='true'] .emotion-12:checked+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14:checked+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-9[aria-disabled='true'] .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14:checked+.emotion-16 .emotion-18 {
stroke: #d8c5fc;
fill: #d8c5fc;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
stroke: #e5dbfd;
fill: #e5dbfd;
}
-.emotion-9 .emotion-12:checked+.emotion-14 path {
+.emotion-11 .emotion-14:checked+.emotion-16 path {
transform-origin: center;
-webkit-transition: 200ms -webkit-transform ease-in-out;
transition: 200ms transform ease-in-out;
@@ -6855,60 +6980,60 @@ exports[`List > Should render correctly with loading with selectable 1`] = `
transform: translate(2px, 2px);
}
-.emotion-9 .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14:checked+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-9 .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
fill: #e51963;
stroke: #e51963;
}
-.emotion-9 .emotion-12[aria-checked="mixed"]+.emotion-14 .eqr7bqq6 {
+.emotion-11 .emotion-14[aria-checked="mixed"]+.emotion-16 .eqr7bqq6 {
fill: #ffffff;
}
-.emotion-9 .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #d6175c;
fill: #d6175c;
}
-.emotion-9 .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-11 .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #e51963;
}
-.emotion-9 .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #e51963;
fill: #ffebf2;
}
-.emotion-11 {
+.emotion-13 {
position: absolute;
white-space: nowrap;
height: 1.5rem;
@@ -6917,57 +7042,57 @@ exports[`List > Should render correctly with loading with selectable 1`] = `
border-width: 0;
}
-.emotion-11:not(:disabled) {
+.emotion-13:not(:disabled) {
cursor: pointer;
}
-.emotion-11:disabled {
+.emotion-13:disabled {
cursor: not-allowed;
}
-.emotion-11:not(:disabled):checked+.emotion-14,
-.emotion-11:not(:disabled)[aria-checked='mixed']+.emotion-14 {
+.emotion-13:not(:disabled):checked+.emotion-16,
+.emotion-13:not(:disabled)[aria-checked='mixed']+.emotion-16 {
fill: #8c40ef;
}
-.emotion-11:not(:disabled):checked+.emotion-14 .emotion-16,
-.emotion-11:not(:disabled)[aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-13:not(:disabled):checked+.emotion-16 .emotion-18,
+.emotion-13:not(:disabled)[aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #8c40ef;
}
-.emotion-11:not(:disabled)[aria-invalid='true']+.emotion-14,
-.emotion-11:not(:disabled)[aria-invalid='mixed']+.emotion-14 {
+.emotion-13:not(:disabled)[aria-invalid='true']+.emotion-16,
+.emotion-13:not(:disabled)[aria-invalid='mixed']+.emotion-16 {
fill: #ffebf2;
}
-.emotion-11:not(:disabled)[aria-invalid='true']+.emotion-14 .emotion-16,
-.emotion-11:not(:disabled)[aria-invalid='mixed']+.emotion-14 .emotion-16 {
+.emotion-13:not(:disabled)[aria-invalid='true']+.emotion-16 .emotion-18,
+.emotion-13:not(:disabled)[aria-invalid='mixed']+.emotion-16 .emotion-18 {
stroke: #b3144d;
}
-.emotion-11:focus+.emotion-14 {
+.emotion-13:focus+.emotion-16 {
background-color: #f1eefc;
fill: #ffebf2;
outline: 1px solid 0px 0px 0px 3px #8c40ef40;
}
-.emotion-11:focus+.emotion-14 .emotion-16 {
+.emotion-13:focus+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-11[aria-invalid='true']:focus+.emotion-14 {
+.emotion-13[aria-invalid='true']:focus+.emotion-16 {
background-color: #ffebf2;
fill: #ffebf2;
outline: 1px solid 0px 0px 0px 3px #f91b6c40;
}
-.emotion-11[aria-invalid='true']:focus+.emotion-14 .emotion-16 {
+.emotion-13[aria-invalid='true']:focus+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-13 {
+.emotion-15 {
border-radius: 0.25rem;
height: 1.5rem;
width: 1.5rem;
@@ -6975,7 +7100,7 @@ exports[`List > Should render correctly with loading with selectable 1`] = `
min-height: 1.5rem;
}
-.emotion-13 path {
+.emotion-15 path {
fill: #ffffff;
-webkit-transform: translate(2px, 2px);
-moz-transform: translate(2px, 2px);
@@ -6987,12 +7112,12 @@ exports[`List > Should render correctly with loading with selectable 1`] = `
transform: scale(0);
}
-.emotion-15 {
+.emotion-17 {
fill: #ffffff;
stroke: #d9dadd;
}
-.emotion-17 {
+.emotion-19 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -7018,7 +7143,7 @@ exports[`List > Should render correctly with loading with selectable 1`] = `
flex: 1;
}
-.emotion-19 {
+.emotion-21 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -7044,7 +7169,7 @@ exports[`List > Should render correctly with loading with selectable 1`] = `
flex: 1;
}
-.emotion-21 {
+.emotion-23 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -7056,7 +7181,7 @@ exports[`List > Should render correctly with loading with selectable 1`] = `
padding: 0 1rem;
}
-.emotion-21[role*='button'] {
+.emotion-23[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -7064,11 +7189,11 @@ exports[`List > Should render correctly with loading with selectable 1`] = `
user-select: none;
}
-.emotion-21[aria-sort] {
+.emotion-23[aria-sort] {
color: #641cb3;
}
-.emotion-41 {
+.emotion-43 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -7084,11 +7209,11 @@ exports[`List > Should render correctly with loading with selectable 1`] = `
cursor: progress;
}
-.emotion-41[role='button row'] {
+.emotion-43[role='button row'] {
cursor: pointer;
}
-.emotion-41:before {
+.emotion-43:before {
content: "";
position: absolute;
top: 0;
@@ -7102,47 +7227,47 @@ exports[`List > Should render correctly with loading with selectable 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-41:hover::before {
+.emotion-43:hover::before {
border-color: #8c40ef;
}
-.emotion-41:hover+.ei4uyz15:before {
+.emotion-43:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-41[aria-expanded='true']:before {
+.emotion-43[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-41 [data-expandable-content] {
+.emotion-43 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-41:hover {
+.emotion-43:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-41[data-highlight='true'] {
+.emotion-43[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-41[aria-disabled='true'] {
+.emotion-43[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-43 {
+.emotion-45 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
padding: 0 1rem;
}
-.emotion-46 {
+.emotion-48 {
position: relative;
width: 100%;
overflow: hidden;
@@ -7168,7 +7293,7 @@ exports[`List > Should render correctly with loading with selectable 1`] = `
justify-content: center;
}
-.emotion-48 {
+.emotion-50 {
height: 0.75rem;
width: 7.5rem;
max-width: 100%;
@@ -7176,7 +7301,7 @@ exports[`List > Should render correctly with loading with selectable 1`] = `
background-color: #e9eaeb;
}
-.emotion-50 {
+.emotion-52 {
position: absolute;
top: 0;
height: 100%;
@@ -7197,7 +7322,7 @@ exports[`List > Should render correctly with loading with selectable 1`] = `
}
@media (prefers-reduced-motion: reduce) {
- .emotion-50 {
+ .emotion-52 {
-webkit-animation: unset;
animation: unset;
}
@@ -7206,564 +7331,568 @@ exports[`List > Should render correctly with loading with selectable 1`] = `
-
-
-
-
-
-
-
-
- |
+
+
+
+
+
+
+
-
-
-
-
- Column 1
-
- |
-
-
- Column 2
-
- |
-
-
- Column 3
-
- |
-
-
- Column 4
-
- |
-
-
- Column 5
-
- |
-
-
-
-
-
- |
-
-
+ Column 1
+
+
+ |
-
-
-
- |
-
+ Column 2
+
+
+ |
-
-
-
- |
-
+ Column 3
+
+
+ |
-
-
-
- |
-
+ Column 4
+
+
+ |
-
-
-
- |
-
-
+ Column 5
+
+
+ |
+
+
+
-
-
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
-
-
+
+
+
+ |
+
+
-
+ aria-busy="true"
+ aria-live="polite"
+ class="emotion-47 emotion-48 emotion-49"
+ >
+
+
+
+
+
-
- |
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
+
+
+
+ |
+
+
-
-
-
-
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
+
+
+
+ |
+
+
-
-
-
-
-
-
+ |
+
+ aria-busy="true"
+ aria-live="polite"
+ class="emotion-47 emotion-48 emotion-49"
+ >
+
+
+
+ |
+
-
- |
-
-
+ |
+
+ aria-busy="true"
+ aria-live="polite"
+ class="emotion-47 emotion-48 emotion-49"
+ >
+
+
+
+ |
+
-
- |
-
+
+
+
+ |
+
+
-
-
-
-
+ |
+
+ aria-busy="true"
+ aria-live="polite"
+ class="emotion-47 emotion-48 emotion-49"
+ >
+
+
+
+ |
+
-
- |
-
-
+ |
+
+ aria-busy="true"
+ aria-live="polite"
+ class="emotion-47 emotion-48 emotion-49"
+ >
+
+
+
+ |
+
-
- |
-
-
-
+ aria-busy="true"
+ aria-live="polite"
+ class="emotion-47 emotion-48 emotion-49"
+ >
+
+
+
+
+
+
+
+
`;
@@ -7771,6 +7900,16 @@ exports[`List > Should render correctly with loading with selectable 1`] = `
exports[`List > Should render correctly with preventClick cell then click but event is prevented 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -7779,7 +7918,7 @@ exports[`List > Should render correctly with preventClick cell then click but ev
position: relative;
}
-.emotion-0 {
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -7788,13 +7927,13 @@ exports[`List > Should render correctly with preventClick cell then click but ev
position: relative;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -7808,13 +7947,13 @@ exports[`List > Should render correctly with preventClick cell then click but ev
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -7828,7 +7967,7 @@ exports[`List > Should render correctly with preventClick cell then click but ev
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -7840,7 +7979,7 @@ exports[`List > Should render correctly with preventClick cell then click but ev
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -7848,11 +7987,11 @@ exports[`List > Should render correctly with preventClick cell then click but ev
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -7864,7 +8003,7 @@ exports[`List > Should render correctly with preventClick cell then click but ev
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -7872,11 +8011,11 @@ exports[`List > Should render correctly with preventClick cell then click but ev
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -7899,7 +8038,7 @@ exports[`List > Should render correctly with preventClick cell then click but ev
flex-wrap: nowrap;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -7922,7 +8061,7 @@ exports[`List > Should render correctly with preventClick cell then click but ev
flex-wrap: nowrap;
}
-.emotion-24 {
+.emotion-26 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -7937,11 +8076,11 @@ exports[`List > Should render correctly with preventClick cell then click but ev
background-color: #ffffff;
}
-.emotion-24[role='button row'] {
+.emotion-26[role='button row'] {
cursor: pointer;
}
-.emotion-24:before {
+.emotion-26:before {
content: "";
position: absolute;
top: 0;
@@ -7955,40 +8094,40 @@ exports[`List > Should render correctly with preventClick cell then click but ev
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-24:hover::before {
+.emotion-26:hover::before {
border-color: #8c40ef;
}
-.emotion-24:hover+.ei4uyz15:before {
+.emotion-26:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-24[aria-expanded='true']:before {
+.emotion-26[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-24 [data-expandable-content] {
+.emotion-26 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-24:hover {
+.emotion-26:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[data-highlight='true'] {
+.emotion-26[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[aria-disabled='true'] {
+.emotion-26[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-24 {
+.emotion-26 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -8003,11 +8142,11 @@ exports[`List > Should render correctly with preventClick cell then click but ev
background-color: #ffffff;
}
-.emotion-24[role='button row'] {
+.emotion-26[role='button row'] {
cursor: pointer;
}
-.emotion-24:before {
+.emotion-26:before {
content: "";
position: absolute;
top: 0;
@@ -8021,47 +8160,47 @@ exports[`List > Should render correctly with preventClick cell then click but ev
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-24:hover::before {
+.emotion-26:hover::before {
border-color: #8c40ef;
}
-.emotion-24:hover+.ei4uyz15:before {
+.emotion-26:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-24[aria-expanded='true']:before {
+.emotion-26[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-24 [data-expandable-content] {
+.emotion-26 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-24:hover {
+.emotion-26:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[data-highlight='true'] {
+.emotion-26[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[aria-disabled='true'] {
+.emotion-26[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-26 {
+.emotion-28 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
padding: 0 1rem;
}
-.emotion-26 {
+.emotion-28 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
@@ -8071,378 +8210,382 @@ exports[`List > Should render correctly with preventClick cell then click but ev
-
-
-
-
+
+
-
- Column 1
-
-
-
-
+ Column 1
+
+ |
+
- Column 2
-
- |
-
-
+ Column 2
+
+ |
+
- Column 3
-
- |
-
-
+ Column 3
+
+ |
+
- Column 4
-
- |
-
-
+ Column 4
+
+ |
+
- Column 5
-
- |
-
-
- |
-
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
- Row 1 Column 5
- |
-
-
-
- Row 2 Column 1
- |
-
- Row 2 Column 2
- |
-
+ Column 5
+
+
+ |
+
+
+
- Row 2 Column 3
-
-
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
- Row 2 Column 4
-
-
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
- Row 2 Column 5
-
-
-
-
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
- Row 3 Column 1
-
-
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
- Row 3 Column 2
-
-
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
- Row 3 Column 3
-
-
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 3 Column 4
-
-
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 3 Column 5
-
-
-
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
- Row 8 Column 5
- |
-
-
-
- Row 9 Column 1
- |
-
- Row 9 Column 2
- |
-
- Row 9 Column 3
- |
-
- Row 9 Column 4
- |
-
- Row 9 Column 5
- |
-
-
-
- Row 10 Column 1
- |
-
- Row 10 Column 2
- |
-
- Row 10 Column 3
- |
-
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 10 Column 4
-
-
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 10 Column 5
-
-
-
-
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
`;
@@ -8450,6 +8593,11 @@ exports[`List > Should render correctly with preventClick cell then click but ev
exports[`List > Should render correctly with row expanded 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -8458,13 +8606,13 @@ exports[`List > Should render correctly with row expanded 1`] = `
position: relative;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -8478,7 +8626,7 @@ exports[`List > Should render correctly with row expanded 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -8490,7 +8638,7 @@ exports[`List > Should render correctly with row expanded 1`] = `
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -8498,11 +8646,11 @@ exports[`List > Should render correctly with row expanded 1`] = `
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -8525,7 +8673,7 @@ exports[`List > Should render correctly with row expanded 1`] = `
flex-wrap: nowrap;
}
-.emotion-24 {
+.emotion-26 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -8540,11 +8688,11 @@ exports[`List > Should render correctly with row expanded 1`] = `
background-color: #ffffff;
}
-.emotion-24[role='button row'] {
+.emotion-26[role='button row'] {
cursor: pointer;
}
-.emotion-24:before {
+.emotion-26:before {
content: "";
position: absolute;
top: 0;
@@ -8558,40 +8706,40 @@ exports[`List > Should render correctly with row expanded 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-24:hover::before {
+.emotion-26:hover::before {
border-color: #8c40ef;
}
-.emotion-24:hover+.ei4uyz15:before {
+.emotion-26:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-24[aria-expanded='true']:before {
+.emotion-26[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-24 [data-expandable-content] {
+.emotion-26 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-24:hover {
+.emotion-26:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[data-highlight='true'] {
+.emotion-26[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[aria-disabled='true'] {
+.emotion-26[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-26 {
+.emotion-28 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
@@ -8601,378 +8749,382 @@ exports[`List > Should render correctly with row expanded 1`] = `
-
-
-
-
+
+
-
- Column 1
-
-
-
-
+ Column 1
+
+ |
+
- Column 2
-
- |
-
-
+ Column 2
+
+ |
+
- Column 3
-
- |
-
-
+ Column 3
+
+ |
+
- Column 4
-
- |
-
-
+ Column 4
+
+ |
+
- Column 5
-
- |
-
-
- |
-
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
- Row 1 Column 5
- |
-
-
-
- Row 2 Column 1
- |
-
- Row 2 Column 2
- |
-
+ Column 5
+
+
+ |
+
+
+
- Row 2 Column 3
-
-
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
- Row 2 Column 4
-
-
- Row 2 Column 5
- |
-
-
-
- Row 3 Column 1
- |
-
- Row 3 Column 2
- |
-
- Row 3 Column 3
- |
-
- Row 3 Column 4
- |
-
- Row 3 Column 5
- |
-
-
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
- Row 8 Column 3
-
-
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
- Row 8 Column 4
-
-
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
- Row 8 Column 5
-
-
-
-
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
- Row 9 Column 1
-
-
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 9 Column 2
-
-
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 9 Column 3
-
-
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 9 Column 4
-
-
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 9 Column 5
-
-
-
-
- Row 10 Column 1
- |
-
- Row 10 Column 2
- |
-
- Row 10 Column 3
- |
-
- Row 10 Column 4
- |
-
- Row 10 Column 5
- |
-
-
-
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
`;
@@ -8980,6 +9132,11 @@ exports[`List > Should render correctly with row expanded 1`] = `
exports[`List > Should render correctly with selectable 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -8988,13 +9145,13 @@ exports[`List > Should render correctly with selectable 1`] = `
position: relative;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -9008,7 +9165,7 @@ exports[`List > Should render correctly with selectable 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-5 {
+.emotion-7 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -9022,7 +9179,7 @@ exports[`List > Should render correctly with selectable 1`] = `
padding: 0;
}
-.emotion-5[role*='button'] {
+.emotion-7[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -9030,15 +9187,15 @@ exports[`List > Should render correctly with selectable 1`] = `
user-select: none;
}
-.emotion-5[aria-sort] {
+.emotion-7[aria-sort] {
color: #641cb3;
}
-.emotion-5:first-of-type {
+.emotion-7:first-of-type {
padding-left: 1rem;
}
-.emotion-7 {
+.emotion-9 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -9061,7 +9218,7 @@ exports[`List > Should render correctly with selectable 1`] = `
flex-wrap: nowrap;
}
-.emotion-9 {
+.emotion-11 {
position: relative;
display: -webkit-inline-box;
display: -webkit-inline-flex;
@@ -9074,65 +9231,65 @@ exports[`List > Should render correctly with selectable 1`] = `
gap: 0.5rem;
}
-.emotion-9 .eqr7bqq4 {
+.emotion-11 .eqr7bqq4 {
cursor: pointer;
}
-.emotion-9[aria-disabled='true'] {
+.emotion-11[aria-disabled='true'] {
cursor: not-allowed;
color: #b5b7bd;
}
-.emotion-9[aria-disabled='true'] .eqr7bqq4 {
+.emotion-11[aria-disabled='true'] .eqr7bqq4 {
cursor: not-allowed;
}
-.emotion-9[aria-disabled='true'] .emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-16 {
fill: #e9eaeb;
}
-.emotion-9[aria-disabled='true'] .emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-16 .emotion-18 {
stroke: #d9dadd;
fill: #f3f3f4;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 {
fill: #ffd3e3;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
stroke: #ffd3e3;
fill: #ffd3e3;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #ffebf2;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #ffbbd3;
fill: #ffebf2;
}
-.emotion-9[aria-disabled='true'] .emotion-12:checked+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14:checked+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-9[aria-disabled='true'] .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14:checked+.emotion-16 .emotion-18 {
stroke: #d8c5fc;
fill: #d8c5fc;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
stroke: #e5dbfd;
fill: #e5dbfd;
}
-.emotion-9 .emotion-12:checked+.emotion-14 path {
+.emotion-11 .emotion-14:checked+.emotion-16 path {
transform-origin: center;
-webkit-transition: 200ms -webkit-transform ease-in-out;
transition: 200ms transform ease-in-out;
@@ -9146,60 +9303,60 @@ exports[`List > Should render correctly with selectable 1`] = `
transform: translate(2px, 2px);
}
-.emotion-9 .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14:checked+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-9 .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
fill: #e51963;
stroke: #e51963;
}
-.emotion-9 .emotion-12[aria-checked="mixed"]+.emotion-14 .eqr7bqq6 {
+.emotion-11 .emotion-14[aria-checked="mixed"]+.emotion-16 .eqr7bqq6 {
fill: #ffffff;
}
-.emotion-9 .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #d6175c;
fill: #d6175c;
}
-.emotion-9 .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-11 .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #e51963;
}
-.emotion-9 .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #e51963;
fill: #ffebf2;
}
-.emotion-11 {
+.emotion-13 {
position: absolute;
white-space: nowrap;
height: 1.5rem;
@@ -9208,57 +9365,57 @@ exports[`List > Should render correctly with selectable 1`] = `
border-width: 0;
}
-.emotion-11:not(:disabled) {
+.emotion-13:not(:disabled) {
cursor: pointer;
}
-.emotion-11:disabled {
+.emotion-13:disabled {
cursor: not-allowed;
}
-.emotion-11:not(:disabled):checked+.emotion-14,
-.emotion-11:not(:disabled)[aria-checked='mixed']+.emotion-14 {
+.emotion-13:not(:disabled):checked+.emotion-16,
+.emotion-13:not(:disabled)[aria-checked='mixed']+.emotion-16 {
fill: #8c40ef;
}
-.emotion-11:not(:disabled):checked+.emotion-14 .emotion-16,
-.emotion-11:not(:disabled)[aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-13:not(:disabled):checked+.emotion-16 .emotion-18,
+.emotion-13:not(:disabled)[aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #8c40ef;
}
-.emotion-11:not(:disabled)[aria-invalid='true']+.emotion-14,
-.emotion-11:not(:disabled)[aria-invalid='mixed']+.emotion-14 {
+.emotion-13:not(:disabled)[aria-invalid='true']+.emotion-16,
+.emotion-13:not(:disabled)[aria-invalid='mixed']+.emotion-16 {
fill: #ffebf2;
}
-.emotion-11:not(:disabled)[aria-invalid='true']+.emotion-14 .emotion-16,
-.emotion-11:not(:disabled)[aria-invalid='mixed']+.emotion-14 .emotion-16 {
+.emotion-13:not(:disabled)[aria-invalid='true']+.emotion-16 .emotion-18,
+.emotion-13:not(:disabled)[aria-invalid='mixed']+.emotion-16 .emotion-18 {
stroke: #b3144d;
}
-.emotion-11:focus+.emotion-14 {
+.emotion-13:focus+.emotion-16 {
background-color: #f1eefc;
fill: #ffebf2;
outline: 1px solid 0px 0px 0px 3px #8c40ef40;
}
-.emotion-11:focus+.emotion-14 .emotion-16 {
+.emotion-13:focus+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-11[aria-invalid='true']:focus+.emotion-14 {
+.emotion-13[aria-invalid='true']:focus+.emotion-16 {
background-color: #ffebf2;
fill: #ffebf2;
outline: 1px solid 0px 0px 0px 3px #f91b6c40;
}
-.emotion-11[aria-invalid='true']:focus+.emotion-14 .emotion-16 {
+.emotion-13[aria-invalid='true']:focus+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-13 {
+.emotion-15 {
border-radius: 0.25rem;
height: 1.5rem;
width: 1.5rem;
@@ -9266,7 +9423,7 @@ exports[`List > Should render correctly with selectable 1`] = `
min-height: 1.5rem;
}
-.emotion-13 path {
+.emotion-15 path {
fill: #ffffff;
-webkit-transform: translate(2px, 2px);
-moz-transform: translate(2px, 2px);
@@ -9278,12 +9435,12 @@ exports[`List > Should render correctly with selectable 1`] = `
transform: scale(0);
}
-.emotion-15 {
+.emotion-17 {
fill: #ffffff;
stroke: #d9dadd;
}
-.emotion-17 {
+.emotion-19 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -9309,7 +9466,7 @@ exports[`List > Should render correctly with selectable 1`] = `
flex: 1;
}
-.emotion-19 {
+.emotion-21 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -9335,7 +9492,7 @@ exports[`List > Should render correctly with selectable 1`] = `
flex: 1;
}
-.emotion-21 {
+.emotion-23 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -9347,7 +9504,7 @@ exports[`List > Should render correctly with selectable 1`] = `
padding: 0 1rem;
}
-.emotion-21[role*='button'] {
+.emotion-23[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -9355,11 +9512,11 @@ exports[`List > Should render correctly with selectable 1`] = `
user-select: none;
}
-.emotion-21[aria-sort] {
+.emotion-23[aria-sort] {
color: #641cb3;
}
-.emotion-41 {
+.emotion-43 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -9374,11 +9531,11 @@ exports[`List > Should render correctly with selectable 1`] = `
background-color: #ffffff;
}
-.emotion-41[role='button row'] {
+.emotion-43[role='button row'] {
cursor: pointer;
}
-.emotion-41:before {
+.emotion-43:before {
content: "";
position: absolute;
top: 0;
@@ -9392,40 +9549,40 @@ exports[`List > Should render correctly with selectable 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-41:hover::before {
+.emotion-43:hover::before {
border-color: #8c40ef;
}
-.emotion-41:hover+.ei4uyz15:before {
+.emotion-43:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-41[aria-expanded='true']:before {
+.emotion-43[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-41 [data-expandable-content] {
+.emotion-43 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-41:hover {
+.emotion-43:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-41[data-highlight='true'] {
+.emotion-43[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-41[aria-disabled='true'] {
+.emotion-43[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-44 {
+.emotion-46 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
@@ -9433,18 +9590,18 @@ exports[`List > Should render correctly with selectable 1`] = `
padding: 0;
}
-.emotion-44:first-of-type {
+.emotion-46:first-of-type {
padding-left: 1rem;
}
-.emotion-46 {
+.emotion-48 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
-.emotion-49 {
+.emotion-51 {
position: relative;
display: -webkit-inline-box;
display: -webkit-inline-flex;
@@ -9457,65 +9614,65 @@ exports[`List > Should render correctly with selectable 1`] = `
gap: 0.5rem;
}
-.emotion-49 .eqr7bqq4 {
+.emotion-51 .eqr7bqq4 {
cursor: pointer;
}
-.emotion-49[aria-disabled='true'] {
+.emotion-51[aria-disabled='true'] {
cursor: not-allowed;
color: #b5b7bd;
}
-.emotion-49[aria-disabled='true'] .eqr7bqq4 {
+.emotion-51[aria-disabled='true'] .eqr7bqq4 {
cursor: not-allowed;
}
-.emotion-49[aria-disabled='true'] .emotion-14 {
+.emotion-51[aria-disabled='true'] .emotion-16 {
fill: #e9eaeb;
}
-.emotion-49[aria-disabled='true'] .emotion-14 .emotion-16 {
+.emotion-51[aria-disabled='true'] .emotion-16 .emotion-18 {
stroke: #d9dadd;
fill: #f3f3f4;
}
-.emotion-49[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 {
+.emotion-51[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 {
fill: #ffd3e3;
}
-.emotion-49[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-51[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
stroke: #ffd3e3;
fill: #ffd3e3;
}
-.emotion-49[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-51[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #ffebf2;
}
-.emotion-49[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-51[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #ffbbd3;
fill: #ffebf2;
}
-.emotion-49[aria-disabled='true'] .emotion-12:checked+.emotion-14 {
+.emotion-51[aria-disabled='true'] .emotion-14:checked+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-49[aria-disabled='true'] .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-51[aria-disabled='true'] .emotion-14:checked+.emotion-16 .emotion-18 {
stroke: #d8c5fc;
fill: #d8c5fc;
}
-.emotion-49[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 {
+.emotion-51[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-49[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-51[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
stroke: #e5dbfd;
fill: #e5dbfd;
}
-.emotion-49 .emotion-12:checked+.emotion-14 path {
+.emotion-51 .emotion-14:checked+.emotion-16 path {
transform-origin: center;
-webkit-transition: 200ms -webkit-transform ease-in-out;
transition: 200ms transform ease-in-out;
@@ -9529,60 +9686,60 @@ exports[`List > Should render correctly with selectable 1`] = `
transform: translate(2px, 2px);
}
-.emotion-49 .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-51 .emotion-14:checked+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-49 .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-51 .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
fill: #e51963;
stroke: #e51963;
}
-.emotion-49 .emotion-12[aria-checked="mixed"]+.emotion-14 .eqr7bqq6 {
+.emotion-51 .emotion-14[aria-checked="mixed"]+.emotion-16 .eqr7bqq6 {
fill: #ffffff;
}
-.emotion-49 .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-51 .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-49:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-51:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-49:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-51:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-49:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-51:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-49:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-51:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-49:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-51:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #d6175c;
fill: #d6175c;
}
-.emotion-49 .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-51 .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #e51963;
}
-.emotion-49 .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-51 .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #e51963;
fill: #ffebf2;
}
-.emotion-61 {
+.emotion-63 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
@@ -9592,1028 +9749,1032 @@ exports[`List > Should render correctly with selectable 1`] = `
-
-
-
-
+
+
-
-
-
-
- Column 1
-
- |
-
-
- Column 2
-
- |
-
-
- Column 3
-
- |
-
-
- Column 4
-
- |
-
-
- Column 5
-
- |
-
-
- |
-
-
-
+
-
-
-
+ Column 1
-
- | |
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
- Row 1 Column 5
- |
-
-
-
-
+
-
-
-
+ Column 2
-
- | |
-
- Row 2 Column 1
- |
-
- Row 2 Column 2
- |
-
- Row 2 Column 3
- |
-
- Row 2 Column 4
- |
-
- Row 2 Column 5
- |
-
-
-
-
+
-
-
-
+ Column 3
-
- | |
-
- Row 3 Column 1
- |
-
- Row 3 Column 2
- |
-
- Row 3 Column 3
- |
-
- Row 3 Column 4
- |
-
- Row 3 Column 5
- |
-
-
-
-
+
-
-
-
+ Column 4
-
- | |
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
-
+
-
-
-
+ Column 5
-
- | |
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
+ |
+
+
+
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
+ |
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
+ |
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
- Row 8 Column 5
- |
-
-
-
+ |
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
-
+
+
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
+
+
-
- |
-
- Row 9 Column 1
- |
-
- Row 9 Column 2
- |
-
- Row 9 Column 3
- |
-
- Row 9 Column 4
- |
-
- Row 9 Column 5
- |
-
-
-
+ |
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
-
+
+
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
+
+
-
- |
-
- Row 10 Column 1
- |
-
- Row 10 Column 2
- |
-
- Row 10 Column 3
- |
-
- Row 10 Column 4
- |
-
- Row 10 Column 5
- |
-
-
-
+
+
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
+
+
+ |
+
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
+
+
+ |
+
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
+
+
+ |
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
`;
@@ -10621,6 +10782,16 @@ exports[`List > Should render correctly with selectable 1`] = `
exports[`List > Should render correctly with selectable then click on first row then uncheck all, then check all 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -10629,7 +10800,7 @@ exports[`List > Should render correctly with selectable then click on first row
position: relative;
}
-.emotion-0 {
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -10638,13 +10809,13 @@ exports[`List > Should render correctly with selectable then click on first row
position: relative;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -10658,13 +10829,13 @@ exports[`List > Should render correctly with selectable then click on first row
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -10678,7 +10849,7 @@ exports[`List > Should render correctly with selectable then click on first row
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-5 {
+.emotion-7 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -10692,7 +10863,7 @@ exports[`List > Should render correctly with selectable then click on first row
padding: 0;
}
-.emotion-5[role*='button'] {
+.emotion-7[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -10700,15 +10871,15 @@ exports[`List > Should render correctly with selectable then click on first row
user-select: none;
}
-.emotion-5[aria-sort] {
+.emotion-7[aria-sort] {
color: #641cb3;
}
-.emotion-5:first-of-type {
+.emotion-7:first-of-type {
padding-left: 1rem;
}
-.emotion-5 {
+.emotion-7 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -10722,7 +10893,7 @@ exports[`List > Should render correctly with selectable then click on first row
padding: 0;
}
-.emotion-5[role*='button'] {
+.emotion-7[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -10730,15 +10901,15 @@ exports[`List > Should render correctly with selectable then click on first row
user-select: none;
}
-.emotion-5[aria-sort] {
+.emotion-7[aria-sort] {
color: #641cb3;
}
-.emotion-5:first-of-type {
+.emotion-7:first-of-type {
padding-left: 1rem;
}
-.emotion-7 {
+.emotion-9 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -10761,7 +10932,7 @@ exports[`List > Should render correctly with selectable then click on first row
flex-wrap: nowrap;
}
-.emotion-7 {
+.emotion-9 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -10784,7 +10955,7 @@ exports[`List > Should render correctly with selectable then click on first row
flex-wrap: nowrap;
}
-.emotion-9 {
+.emotion-11 {
position: relative;
display: -webkit-inline-box;
display: -webkit-inline-flex;
@@ -10797,65 +10968,65 @@ exports[`List > Should render correctly with selectable then click on first row
gap: 0.5rem;
}
-.emotion-9 .eqr7bqq4 {
+.emotion-11 .eqr7bqq4 {
cursor: pointer;
}
-.emotion-9[aria-disabled='true'] {
+.emotion-11[aria-disabled='true'] {
cursor: not-allowed;
color: #b5b7bd;
}
-.emotion-9[aria-disabled='true'] .eqr7bqq4 {
+.emotion-11[aria-disabled='true'] .eqr7bqq4 {
cursor: not-allowed;
}
-.emotion-9[aria-disabled='true'] .emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-16 {
fill: #e9eaeb;
}
-.emotion-9[aria-disabled='true'] .emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-16 .emotion-18 {
stroke: #d9dadd;
fill: #f3f3f4;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 {
fill: #ffd3e3;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
stroke: #ffd3e3;
fill: #ffd3e3;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #ffebf2;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #ffbbd3;
fill: #ffebf2;
}
-.emotion-9[aria-disabled='true'] .emotion-12:checked+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14:checked+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-9[aria-disabled='true'] .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14:checked+.emotion-16 .emotion-18 {
stroke: #d8c5fc;
fill: #d8c5fc;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
stroke: #e5dbfd;
fill: #e5dbfd;
}
-.emotion-9 .emotion-12:checked+.emotion-14 path {
+.emotion-11 .emotion-14:checked+.emotion-16 path {
transform-origin: center;
-webkit-transition: 200ms -webkit-transform ease-in-out;
transition: 200ms transform ease-in-out;
@@ -10869,60 +11040,60 @@ exports[`List > Should render correctly with selectable then click on first row
transform: translate(2px, 2px);
}
-.emotion-9 .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14:checked+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-9 .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
fill: #e51963;
stroke: #e51963;
}
-.emotion-9 .emotion-12[aria-checked="mixed"]+.emotion-14 .eqr7bqq6 {
+.emotion-11 .emotion-14[aria-checked="mixed"]+.emotion-16 .eqr7bqq6 {
fill: #ffffff;
}
-.emotion-9 .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #d6175c;
fill: #d6175c;
}
-.emotion-9 .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-11 .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #e51963;
}
-.emotion-9 .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #e51963;
fill: #ffebf2;
}
-.emotion-9 {
+.emotion-11 {
position: relative;
display: -webkit-inline-box;
display: -webkit-inline-flex;
@@ -10935,65 +11106,65 @@ exports[`List > Should render correctly with selectable then click on first row
gap: 0.5rem;
}
-.emotion-9 .eqr7bqq4 {
+.emotion-11 .eqr7bqq4 {
cursor: pointer;
}
-.emotion-9[aria-disabled='true'] {
+.emotion-11[aria-disabled='true'] {
cursor: not-allowed;
color: #b5b7bd;
}
-.emotion-9[aria-disabled='true'] .eqr7bqq4 {
+.emotion-11[aria-disabled='true'] .eqr7bqq4 {
cursor: not-allowed;
}
-.emotion-9[aria-disabled='true'] .emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-16 {
fill: #e9eaeb;
}
-.emotion-9[aria-disabled='true'] .emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-16 .emotion-18 {
stroke: #d9dadd;
fill: #f3f3f4;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 {
fill: #ffd3e3;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
stroke: #ffd3e3;
fill: #ffd3e3;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #ffebf2;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #ffbbd3;
fill: #ffebf2;
}
-.emotion-9[aria-disabled='true'] .emotion-12:checked+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14:checked+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-9[aria-disabled='true'] .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14:checked+.emotion-16 .emotion-18 {
stroke: #d8c5fc;
fill: #d8c5fc;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
stroke: #e5dbfd;
fill: #e5dbfd;
}
-.emotion-9 .emotion-12:checked+.emotion-14 path {
+.emotion-11 .emotion-14:checked+.emotion-16 path {
transform-origin: center;
-webkit-transition: 200ms -webkit-transform ease-in-out;
transition: 200ms transform ease-in-out;
@@ -11007,60 +11178,60 @@ exports[`List > Should render correctly with selectable then click on first row
transform: translate(2px, 2px);
}
-.emotion-9 .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14:checked+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-9 .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
fill: #e51963;
stroke: #e51963;
}
-.emotion-9 .emotion-12[aria-checked="mixed"]+.emotion-14 .eqr7bqq6 {
+.emotion-11 .emotion-14[aria-checked="mixed"]+.emotion-16 .eqr7bqq6 {
fill: #ffffff;
}
-.emotion-9 .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #d6175c;
fill: #d6175c;
}
-.emotion-9 .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-11 .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #e51963;
}
-.emotion-9 .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #e51963;
fill: #ffebf2;
}
-.emotion-11 {
+.emotion-13 {
position: absolute;
white-space: nowrap;
height: 1.5rem;
@@ -11069,57 +11240,57 @@ exports[`List > Should render correctly with selectable then click on first row
border-width: 0;
}
-.emotion-11:not(:disabled) {
+.emotion-13:not(:disabled) {
cursor: pointer;
}
-.emotion-11:disabled {
+.emotion-13:disabled {
cursor: not-allowed;
}
-.emotion-11:not(:disabled):checked+.emotion-14,
-.emotion-11:not(:disabled)[aria-checked='mixed']+.emotion-14 {
+.emotion-13:not(:disabled):checked+.emotion-16,
+.emotion-13:not(:disabled)[aria-checked='mixed']+.emotion-16 {
fill: #8c40ef;
}
-.emotion-11:not(:disabled):checked+.emotion-14 .emotion-16,
-.emotion-11:not(:disabled)[aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-13:not(:disabled):checked+.emotion-16 .emotion-18,
+.emotion-13:not(:disabled)[aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #8c40ef;
}
-.emotion-11:not(:disabled)[aria-invalid='true']+.emotion-14,
-.emotion-11:not(:disabled)[aria-invalid='mixed']+.emotion-14 {
+.emotion-13:not(:disabled)[aria-invalid='true']+.emotion-16,
+.emotion-13:not(:disabled)[aria-invalid='mixed']+.emotion-16 {
fill: #ffebf2;
}
-.emotion-11:not(:disabled)[aria-invalid='true']+.emotion-14 .emotion-16,
-.emotion-11:not(:disabled)[aria-invalid='mixed']+.emotion-14 .emotion-16 {
+.emotion-13:not(:disabled)[aria-invalid='true']+.emotion-16 .emotion-18,
+.emotion-13:not(:disabled)[aria-invalid='mixed']+.emotion-16 .emotion-18 {
stroke: #b3144d;
}
-.emotion-11:focus+.emotion-14 {
+.emotion-13:focus+.emotion-16 {
background-color: #f1eefc;
fill: #ffebf2;
outline: 1px solid 0px 0px 0px 3px #8c40ef40;
}
-.emotion-11:focus+.emotion-14 .emotion-16 {
+.emotion-13:focus+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-11[aria-invalid='true']:focus+.emotion-14 {
+.emotion-13[aria-invalid='true']:focus+.emotion-16 {
background-color: #ffebf2;
fill: #ffebf2;
outline: 1px solid 0px 0px 0px 3px #f91b6c40;
}
-.emotion-11[aria-invalid='true']:focus+.emotion-14 .emotion-16 {
+.emotion-13[aria-invalid='true']:focus+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-11 {
+.emotion-13 {
position: absolute;
white-space: nowrap;
height: 1.5rem;
@@ -11128,57 +11299,57 @@ exports[`List > Should render correctly with selectable then click on first row
border-width: 0;
}
-.emotion-11:not(:disabled) {
+.emotion-13:not(:disabled) {
cursor: pointer;
}
-.emotion-11:disabled {
+.emotion-13:disabled {
cursor: not-allowed;
}
-.emotion-11:not(:disabled):checked+.emotion-14,
-.emotion-11:not(:disabled)[aria-checked='mixed']+.emotion-14 {
+.emotion-13:not(:disabled):checked+.emotion-16,
+.emotion-13:not(:disabled)[aria-checked='mixed']+.emotion-16 {
fill: #8c40ef;
}
-.emotion-11:not(:disabled):checked+.emotion-14 .emotion-16,
-.emotion-11:not(:disabled)[aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-13:not(:disabled):checked+.emotion-16 .emotion-18,
+.emotion-13:not(:disabled)[aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #8c40ef;
}
-.emotion-11:not(:disabled)[aria-invalid='true']+.emotion-14,
-.emotion-11:not(:disabled)[aria-invalid='mixed']+.emotion-14 {
+.emotion-13:not(:disabled)[aria-invalid='true']+.emotion-16,
+.emotion-13:not(:disabled)[aria-invalid='mixed']+.emotion-16 {
fill: #ffebf2;
}
-.emotion-11:not(:disabled)[aria-invalid='true']+.emotion-14 .emotion-16,
-.emotion-11:not(:disabled)[aria-invalid='mixed']+.emotion-14 .emotion-16 {
+.emotion-13:not(:disabled)[aria-invalid='true']+.emotion-16 .emotion-18,
+.emotion-13:not(:disabled)[aria-invalid='mixed']+.emotion-16 .emotion-18 {
stroke: #b3144d;
}
-.emotion-11:focus+.emotion-14 {
+.emotion-13:focus+.emotion-16 {
background-color: #f1eefc;
fill: #ffebf2;
outline: 1px solid 0px 0px 0px 3px #8c40ef40;
}
-.emotion-11:focus+.emotion-14 .emotion-16 {
+.emotion-13:focus+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-11[aria-invalid='true']:focus+.emotion-14 {
+.emotion-13[aria-invalid='true']:focus+.emotion-16 {
background-color: #ffebf2;
fill: #ffebf2;
outline: 1px solid 0px 0px 0px 3px #f91b6c40;
}
-.emotion-11[aria-invalid='true']:focus+.emotion-14 .emotion-16 {
+.emotion-13[aria-invalid='true']:focus+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-13 {
+.emotion-15 {
border-radius: 0.25rem;
height: 1.5rem;
width: 1.5rem;
@@ -11186,7 +11357,7 @@ exports[`List > Should render correctly with selectable then click on first row
min-height: 1.5rem;
}
-.emotion-13 path {
+.emotion-15 path {
fill: #ffffff;
-webkit-transform: translate(2px, 2px);
-moz-transform: translate(2px, 2px);
@@ -11198,7 +11369,7 @@ exports[`List > Should render correctly with selectable then click on first row
transform: scale(0);
}
-.emotion-13 {
+.emotion-15 {
border-radius: 0.25rem;
height: 1.5rem;
width: 1.5rem;
@@ -11206,7 +11377,7 @@ exports[`List > Should render correctly with selectable then click on first row
min-height: 1.5rem;
}
-.emotion-13 path {
+.emotion-15 path {
fill: #ffffff;
-webkit-transform: translate(2px, 2px);
-moz-transform: translate(2px, 2px);
@@ -11218,17 +11389,17 @@ exports[`List > Should render correctly with selectable then click on first row
transform: scale(0);
}
-.emotion-15 {
+.emotion-17 {
fill: #ffffff;
stroke: #d9dadd;
}
-.emotion-15 {
+.emotion-17 {
fill: #ffffff;
stroke: #d9dadd;
}
-.emotion-17 {
+.emotion-19 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -11254,7 +11425,7 @@ exports[`List > Should render correctly with selectable then click on first row
flex: 1;
}
-.emotion-17 {
+.emotion-19 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -11280,7 +11451,7 @@ exports[`List > Should render correctly with selectable then click on first row
flex: 1;
}
-.emotion-19 {
+.emotion-21 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -11306,7 +11477,7 @@ exports[`List > Should render correctly with selectable then click on first row
flex: 1;
}
-.emotion-19 {
+.emotion-21 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -11332,7 +11503,7 @@ exports[`List > Should render correctly with selectable then click on first row
flex: 1;
}
-.emotion-21 {
+.emotion-23 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -11344,7 +11515,7 @@ exports[`List > Should render correctly with selectable then click on first row
padding: 0 1rem;
}
-.emotion-21[role*='button'] {
+.emotion-23[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -11352,11 +11523,11 @@ exports[`List > Should render correctly with selectable then click on first row
user-select: none;
}
-.emotion-21[aria-sort] {
+.emotion-23[aria-sort] {
color: #641cb3;
}
-.emotion-21 {
+.emotion-23 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -11368,7 +11539,7 @@ exports[`List > Should render correctly with selectable then click on first row
padding: 0 1rem;
}
-.emotion-21[role*='button'] {
+.emotion-23[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -11376,11 +11547,11 @@ exports[`List > Should render correctly with selectable then click on first row
user-select: none;
}
-.emotion-21[aria-sort] {
+.emotion-23[aria-sort] {
color: #641cb3;
}
-.emotion-41 {
+.emotion-43 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -11395,11 +11566,11 @@ exports[`List > Should render correctly with selectable then click on first row
background-color: #ffffff;
}
-.emotion-41[role='button row'] {
+.emotion-43[role='button row'] {
cursor: pointer;
}
-.emotion-41:before {
+.emotion-43:before {
content: "";
position: absolute;
top: 0;
@@ -11413,40 +11584,40 @@ exports[`List > Should render correctly with selectable then click on first row
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-41:hover::before {
+.emotion-43:hover::before {
border-color: #8c40ef;
}
-.emotion-41:hover+.ei4uyz15:before {
+.emotion-43:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-41[aria-expanded='true']:before {
+.emotion-43[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-41 [data-expandable-content] {
+.emotion-43 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-41:hover {
+.emotion-43:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-41[data-highlight='true'] {
+.emotion-43[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-41[aria-disabled='true'] {
+.emotion-43[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-41 {
+.emotion-43 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -11461,11 +11632,11 @@ exports[`List > Should render correctly with selectable then click on first row
background-color: #ffffff;
}
-.emotion-41[role='button row'] {
+.emotion-43[role='button row'] {
cursor: pointer;
}
-.emotion-41:before {
+.emotion-43:before {
content: "";
position: absolute;
top: 0;
@@ -11479,40 +11650,40 @@ exports[`List > Should render correctly with selectable then click on first row
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-41:hover::before {
+.emotion-43:hover::before {
border-color: #8c40ef;
}
-.emotion-41:hover+.ei4uyz15:before {
+.emotion-43:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-41[aria-expanded='true']:before {
+.emotion-43[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-41 [data-expandable-content] {
+.emotion-43 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-41:hover {
+.emotion-43:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-41[data-highlight='true'] {
+.emotion-43[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-41[aria-disabled='true'] {
+.emotion-43[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-44 {
+.emotion-46 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
@@ -11520,11 +11691,11 @@ exports[`List > Should render correctly with selectable then click on first row
padding: 0;
}
-.emotion-44:first-of-type {
+.emotion-46:first-of-type {
padding-left: 1rem;
}
-.emotion-44 {
+.emotion-46 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
@@ -11532,25 +11703,25 @@ exports[`List > Should render correctly with selectable then click on first row
padding: 0;
}
-.emotion-44:first-of-type {
+.emotion-46:first-of-type {
padding-left: 1rem;
}
-.emotion-46 {
+.emotion-48 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
-.emotion-46 {
+.emotion-48 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
-.emotion-49 {
+.emotion-51 {
position: relative;
display: -webkit-inline-box;
display: -webkit-inline-flex;
@@ -11563,65 +11734,65 @@ exports[`List > Should render correctly with selectable then click on first row
gap: 0.5rem;
}
-.emotion-49 .eqr7bqq4 {
+.emotion-51 .eqr7bqq4 {
cursor: pointer;
}
-.emotion-49[aria-disabled='true'] {
+.emotion-51[aria-disabled='true'] {
cursor: not-allowed;
color: #b5b7bd;
}
-.emotion-49[aria-disabled='true'] .eqr7bqq4 {
+.emotion-51[aria-disabled='true'] .eqr7bqq4 {
cursor: not-allowed;
}
-.emotion-49[aria-disabled='true'] .emotion-14 {
+.emotion-51[aria-disabled='true'] .emotion-16 {
fill: #e9eaeb;
}
-.emotion-49[aria-disabled='true'] .emotion-14 .emotion-16 {
+.emotion-51[aria-disabled='true'] .emotion-16 .emotion-18 {
stroke: #d9dadd;
fill: #f3f3f4;
}
-.emotion-49[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 {
+.emotion-51[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 {
fill: #ffd3e3;
}
-.emotion-49[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-51[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
stroke: #ffd3e3;
fill: #ffd3e3;
}
-.emotion-49[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-51[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #ffebf2;
}
-.emotion-49[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-51[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #ffbbd3;
fill: #ffebf2;
}
-.emotion-49[aria-disabled='true'] .emotion-12:checked+.emotion-14 {
+.emotion-51[aria-disabled='true'] .emotion-14:checked+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-49[aria-disabled='true'] .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-51[aria-disabled='true'] .emotion-14:checked+.emotion-16 .emotion-18 {
stroke: #d8c5fc;
fill: #d8c5fc;
}
-.emotion-49[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 {
+.emotion-51[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-49[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-51[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
stroke: #e5dbfd;
fill: #e5dbfd;
}
-.emotion-49 .emotion-12:checked+.emotion-14 path {
+.emotion-51 .emotion-14:checked+.emotion-16 path {
transform-origin: center;
-webkit-transition: 200ms -webkit-transform ease-in-out;
transition: 200ms transform ease-in-out;
@@ -11635,60 +11806,60 @@ exports[`List > Should render correctly with selectable then click on first row
transform: translate(2px, 2px);
}
-.emotion-49 .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-51 .emotion-14:checked+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-49 .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-51 .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
fill: #e51963;
stroke: #e51963;
}
-.emotion-49 .emotion-12[aria-checked="mixed"]+.emotion-14 .eqr7bqq6 {
+.emotion-51 .emotion-14[aria-checked="mixed"]+.emotion-16 .eqr7bqq6 {
fill: #ffffff;
}
-.emotion-49 .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-51 .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-49:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-51:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-49:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-51:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-49:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-51:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-49:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-51:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-49:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-51:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #d6175c;
fill: #d6175c;
}
-.emotion-49 .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-51 .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #e51963;
}
-.emotion-49 .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-51 .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #e51963;
fill: #ffebf2;
}
-.emotion-49 {
+.emotion-51 {
position: relative;
display: -webkit-inline-box;
display: -webkit-inline-flex;
@@ -11701,65 +11872,65 @@ exports[`List > Should render correctly with selectable then click on first row
gap: 0.5rem;
}
-.emotion-49 .eqr7bqq4 {
+.emotion-51 .eqr7bqq4 {
cursor: pointer;
}
-.emotion-49[aria-disabled='true'] {
+.emotion-51[aria-disabled='true'] {
cursor: not-allowed;
color: #b5b7bd;
}
-.emotion-49[aria-disabled='true'] .eqr7bqq4 {
+.emotion-51[aria-disabled='true'] .eqr7bqq4 {
cursor: not-allowed;
}
-.emotion-49[aria-disabled='true'] .emotion-14 {
+.emotion-51[aria-disabled='true'] .emotion-16 {
fill: #e9eaeb;
}
-.emotion-49[aria-disabled='true'] .emotion-14 .emotion-16 {
+.emotion-51[aria-disabled='true'] .emotion-16 .emotion-18 {
stroke: #d9dadd;
fill: #f3f3f4;
}
-.emotion-49[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 {
+.emotion-51[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 {
fill: #ffd3e3;
}
-.emotion-49[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-51[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
stroke: #ffd3e3;
fill: #ffd3e3;
}
-.emotion-49[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-51[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #ffebf2;
}
-.emotion-49[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-51[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #ffbbd3;
fill: #ffebf2;
}
-.emotion-49[aria-disabled='true'] .emotion-12:checked+.emotion-14 {
+.emotion-51[aria-disabled='true'] .emotion-14:checked+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-49[aria-disabled='true'] .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-51[aria-disabled='true'] .emotion-14:checked+.emotion-16 .emotion-18 {
stroke: #d8c5fc;
fill: #d8c5fc;
}
-.emotion-49[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 {
+.emotion-51[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-49[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-51[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
stroke: #e5dbfd;
fill: #e5dbfd;
}
-.emotion-49 .emotion-12:checked+.emotion-14 path {
+.emotion-51 .emotion-14:checked+.emotion-16 path {
transform-origin: center;
-webkit-transition: 200ms -webkit-transform ease-in-out;
transition: 200ms transform ease-in-out;
@@ -11773,67 +11944,67 @@ exports[`List > Should render correctly with selectable then click on first row
transform: translate(2px, 2px);
}
-.emotion-49 .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-51 .emotion-14:checked+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-49 .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-51 .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
fill: #e51963;
stroke: #e51963;
}
-.emotion-49 .emotion-12[aria-checked="mixed"]+.emotion-14 .eqr7bqq6 {
+.emotion-51 .emotion-14[aria-checked="mixed"]+.emotion-16 .eqr7bqq6 {
fill: #ffffff;
}
-.emotion-49 .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-51 .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-49:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-51:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-49:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-51:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-49:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-51:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-49:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-51:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-49:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-51:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #d6175c;
fill: #d6175c;
}
-.emotion-49 .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-51 .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #e51963;
}
-.emotion-49 .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-51 .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #e51963;
fill: #ffebf2;
}
-.emotion-61 {
+.emotion-63 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
padding: 0 1rem;
}
-.emotion-61 {
+.emotion-63 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
@@ -11843,1028 +12014,1032 @@ exports[`List > Should render correctly with selectable then click on first row
-
-
-
-
+
+
-
-
-
-
- Column 1
-
- |
-
-
- Column 2
-
- |
-
-
- Column 3
-
- |
-
-
- Column 4
-
- |
-
-
- Column 5
-
- |
-
-
- |
-
-
-
+
-
-
-
+ Column 1
-
- | |
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
- Row 1 Column 5
- |
-
-
-
-
+
-
-
-
+ Column 2
-
- | |
-
- Row 2 Column 1
- |
-
- Row 2 Column 2
- |
-
- Row 2 Column 3
- |
-
- Row 2 Column 4
- |
-
- Row 2 Column 5
- |
-
-
-
-
+
-
-
-
+ Column 3
-
- | |
-
- Row 3 Column 1
- |
-
- Row 3 Column 2
- |
-
- Row 3 Column 3
- |
-
- Row 3 Column 4
- |
-
- Row 3 Column 5
- |
-
-
-
-
+
-
-
-
+ Column 4
-
- | |
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
-
+
-
-
-
+ Column 5
-
- | |
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
+ |
+
+
+
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
+ |
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
+ |
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
- Row 8 Column 5
- |
-
-
-
-
+
-
-
-
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+ |
+
+
+
-
- |
-
- Row 9 Column 1
- |
-
- Row 9 Column 2
- |
-
- Row 9 Column 3
- |
-
- Row 9 Column 4
- |
-
- Row 9 Column 5
- |
-
-
-
+ |
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
-
+
+
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
+
+
-
- |
-
+ |
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 10 Column 1
-
-
+
+ |
+
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 10 Column 2
-
-
+
+ |
+
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 10 Column 3
-
-
+
+ |
+
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 10 Column 4
-
-
- Row 10 Column 5
- |
-
-
-
+
+
+ |
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
`;
@@ -12872,6 +13047,16 @@ exports[`List > Should render correctly with selectable then click on first row
exports[`List > Should render correctly with selectable with shift click for multiselect 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -12880,7 +13065,7 @@ exports[`List > Should render correctly with selectable with shift click for mul
position: relative;
}
-.emotion-0 {
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -12889,13 +13074,13 @@ exports[`List > Should render correctly with selectable with shift click for mul
position: relative;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -12909,13 +13094,13 @@ exports[`List > Should render correctly with selectable with shift click for mul
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -12929,7 +13114,7 @@ exports[`List > Should render correctly with selectable with shift click for mul
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-5 {
+.emotion-7 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -12943,7 +13128,7 @@ exports[`List > Should render correctly with selectable with shift click for mul
padding: 0;
}
-.emotion-5[role*='button'] {
+.emotion-7[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -12951,15 +13136,15 @@ exports[`List > Should render correctly with selectable with shift click for mul
user-select: none;
}
-.emotion-5[aria-sort] {
+.emotion-7[aria-sort] {
color: #641cb3;
}
-.emotion-5:first-of-type {
+.emotion-7:first-of-type {
padding-left: 1rem;
}
-.emotion-5 {
+.emotion-7 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -12973,7 +13158,7 @@ exports[`List > Should render correctly with selectable with shift click for mul
padding: 0;
}
-.emotion-5[role*='button'] {
+.emotion-7[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -12981,15 +13166,15 @@ exports[`List > Should render correctly with selectable with shift click for mul
user-select: none;
}
-.emotion-5[aria-sort] {
+.emotion-7[aria-sort] {
color: #641cb3;
}
-.emotion-5:first-of-type {
+.emotion-7:first-of-type {
padding-left: 1rem;
}
-.emotion-7 {
+.emotion-9 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -13012,7 +13197,7 @@ exports[`List > Should render correctly with selectable with shift click for mul
flex-wrap: nowrap;
}
-.emotion-7 {
+.emotion-9 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -13035,7 +13220,7 @@ exports[`List > Should render correctly with selectable with shift click for mul
flex-wrap: nowrap;
}
-.emotion-9 {
+.emotion-11 {
position: relative;
display: -webkit-inline-box;
display: -webkit-inline-flex;
@@ -13048,65 +13233,65 @@ exports[`List > Should render correctly with selectable with shift click for mul
gap: 0.5rem;
}
-.emotion-9 .eqr7bqq4 {
+.emotion-11 .eqr7bqq4 {
cursor: pointer;
}
-.emotion-9[aria-disabled='true'] {
+.emotion-11[aria-disabled='true'] {
cursor: not-allowed;
color: #b5b7bd;
}
-.emotion-9[aria-disabled='true'] .eqr7bqq4 {
+.emotion-11[aria-disabled='true'] .eqr7bqq4 {
cursor: not-allowed;
}
-.emotion-9[aria-disabled='true'] .emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-16 {
fill: #e9eaeb;
}
-.emotion-9[aria-disabled='true'] .emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-16 .emotion-18 {
stroke: #d9dadd;
fill: #f3f3f4;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 {
fill: #ffd3e3;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
stroke: #ffd3e3;
fill: #ffd3e3;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #ffebf2;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #ffbbd3;
fill: #ffebf2;
}
-.emotion-9[aria-disabled='true'] .emotion-12:checked+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14:checked+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-9[aria-disabled='true'] .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14:checked+.emotion-16 .emotion-18 {
stroke: #d8c5fc;
fill: #d8c5fc;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
stroke: #e5dbfd;
fill: #e5dbfd;
}
-.emotion-9 .emotion-12:checked+.emotion-14 path {
+.emotion-11 .emotion-14:checked+.emotion-16 path {
transform-origin: center;
-webkit-transition: 200ms -webkit-transform ease-in-out;
transition: 200ms transform ease-in-out;
@@ -13120,60 +13305,60 @@ exports[`List > Should render correctly with selectable with shift click for mul
transform: translate(2px, 2px);
}
-.emotion-9 .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14:checked+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-9 .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
fill: #e51963;
stroke: #e51963;
}
-.emotion-9 .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-18 {
+.emotion-11 .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-20 {
fill: #ffffff;
}
-.emotion-9 .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #d6175c;
fill: #d6175c;
}
-.emotion-9 .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-11 .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #e51963;
}
-.emotion-9 .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #e51963;
fill: #ffebf2;
}
-.emotion-9 {
+.emotion-11 {
position: relative;
display: -webkit-inline-box;
display: -webkit-inline-flex;
@@ -13186,65 +13371,65 @@ exports[`List > Should render correctly with selectable with shift click for mul
gap: 0.5rem;
}
-.emotion-9 .eqr7bqq4 {
+.emotion-11 .eqr7bqq4 {
cursor: pointer;
}
-.emotion-9[aria-disabled='true'] {
+.emotion-11[aria-disabled='true'] {
cursor: not-allowed;
color: #b5b7bd;
}
-.emotion-9[aria-disabled='true'] .eqr7bqq4 {
+.emotion-11[aria-disabled='true'] .eqr7bqq4 {
cursor: not-allowed;
}
-.emotion-9[aria-disabled='true'] .emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-16 {
fill: #e9eaeb;
}
-.emotion-9[aria-disabled='true'] .emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-16 .emotion-18 {
stroke: #d9dadd;
fill: #f3f3f4;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 {
fill: #ffd3e3;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
stroke: #ffd3e3;
fill: #ffd3e3;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #ffebf2;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #ffbbd3;
fill: #ffebf2;
}
-.emotion-9[aria-disabled='true'] .emotion-12:checked+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14:checked+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-9[aria-disabled='true'] .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14:checked+.emotion-16 .emotion-18 {
stroke: #d8c5fc;
fill: #d8c5fc;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
stroke: #e5dbfd;
fill: #e5dbfd;
}
-.emotion-9 .emotion-12:checked+.emotion-14 path {
+.emotion-11 .emotion-14:checked+.emotion-16 path {
transform-origin: center;
-webkit-transition: 200ms -webkit-transform ease-in-out;
transition: 200ms transform ease-in-out;
@@ -13258,60 +13443,60 @@ exports[`List > Should render correctly with selectable with shift click for mul
transform: translate(2px, 2px);
}
-.emotion-9 .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14:checked+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-9 .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
fill: #e51963;
stroke: #e51963;
}
-.emotion-9 .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-18 {
+.emotion-11 .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-20 {
fill: #ffffff;
}
-.emotion-9 .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #d6175c;
fill: #d6175c;
}
-.emotion-9 .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-11 .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #e51963;
}
-.emotion-9 .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #e51963;
fill: #ffebf2;
}
-.emotion-11 {
+.emotion-13 {
position: absolute;
white-space: nowrap;
height: 1.5rem;
@@ -13320,57 +13505,57 @@ exports[`List > Should render correctly with selectable with shift click for mul
border-width: 0;
}
-.emotion-11:not(:disabled) {
+.emotion-13:not(:disabled) {
cursor: pointer;
}
-.emotion-11:disabled {
+.emotion-13:disabled {
cursor: not-allowed;
}
-.emotion-11:not(:disabled):checked+.emotion-14,
-.emotion-11:not(:disabled)[aria-checked='mixed']+.emotion-14 {
+.emotion-13:not(:disabled):checked+.emotion-16,
+.emotion-13:not(:disabled)[aria-checked='mixed']+.emotion-16 {
fill: #8c40ef;
}
-.emotion-11:not(:disabled):checked+.emotion-14 .emotion-16,
-.emotion-11:not(:disabled)[aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-13:not(:disabled):checked+.emotion-16 .emotion-18,
+.emotion-13:not(:disabled)[aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #8c40ef;
}
-.emotion-11:not(:disabled)[aria-invalid='true']+.emotion-14,
-.emotion-11:not(:disabled)[aria-invalid='mixed']+.emotion-14 {
+.emotion-13:not(:disabled)[aria-invalid='true']+.emotion-16,
+.emotion-13:not(:disabled)[aria-invalid='mixed']+.emotion-16 {
fill: #ffebf2;
}
-.emotion-11:not(:disabled)[aria-invalid='true']+.emotion-14 .emotion-16,
-.emotion-11:not(:disabled)[aria-invalid='mixed']+.emotion-14 .emotion-16 {
+.emotion-13:not(:disabled)[aria-invalid='true']+.emotion-16 .emotion-18,
+.emotion-13:not(:disabled)[aria-invalid='mixed']+.emotion-16 .emotion-18 {
stroke: #b3144d;
}
-.emotion-11:focus+.emotion-14 {
+.emotion-13:focus+.emotion-16 {
background-color: #f1eefc;
fill: #ffebf2;
outline: 1px solid 0px 0px 0px 3px #8c40ef40;
}
-.emotion-11:focus+.emotion-14 .emotion-16 {
+.emotion-13:focus+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-11[aria-invalid='true']:focus+.emotion-14 {
+.emotion-13[aria-invalid='true']:focus+.emotion-16 {
background-color: #ffebf2;
fill: #ffebf2;
outline: 1px solid 0px 0px 0px 3px #f91b6c40;
}
-.emotion-11[aria-invalid='true']:focus+.emotion-14 .emotion-16 {
+.emotion-13[aria-invalid='true']:focus+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-11 {
+.emotion-13 {
position: absolute;
white-space: nowrap;
height: 1.5rem;
@@ -13379,57 +13564,57 @@ exports[`List > Should render correctly with selectable with shift click for mul
border-width: 0;
}
-.emotion-11:not(:disabled) {
+.emotion-13:not(:disabled) {
cursor: pointer;
}
-.emotion-11:disabled {
+.emotion-13:disabled {
cursor: not-allowed;
}
-.emotion-11:not(:disabled):checked+.emotion-14,
-.emotion-11:not(:disabled)[aria-checked='mixed']+.emotion-14 {
+.emotion-13:not(:disabled):checked+.emotion-16,
+.emotion-13:not(:disabled)[aria-checked='mixed']+.emotion-16 {
fill: #8c40ef;
}
-.emotion-11:not(:disabled):checked+.emotion-14 .emotion-16,
-.emotion-11:not(:disabled)[aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-13:not(:disabled):checked+.emotion-16 .emotion-18,
+.emotion-13:not(:disabled)[aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #8c40ef;
}
-.emotion-11:not(:disabled)[aria-invalid='true']+.emotion-14,
-.emotion-11:not(:disabled)[aria-invalid='mixed']+.emotion-14 {
+.emotion-13:not(:disabled)[aria-invalid='true']+.emotion-16,
+.emotion-13:not(:disabled)[aria-invalid='mixed']+.emotion-16 {
fill: #ffebf2;
}
-.emotion-11:not(:disabled)[aria-invalid='true']+.emotion-14 .emotion-16,
-.emotion-11:not(:disabled)[aria-invalid='mixed']+.emotion-14 .emotion-16 {
+.emotion-13:not(:disabled)[aria-invalid='true']+.emotion-16 .emotion-18,
+.emotion-13:not(:disabled)[aria-invalid='mixed']+.emotion-16 .emotion-18 {
stroke: #b3144d;
}
-.emotion-11:focus+.emotion-14 {
+.emotion-13:focus+.emotion-16 {
background-color: #f1eefc;
fill: #ffebf2;
outline: 1px solid 0px 0px 0px 3px #8c40ef40;
}
-.emotion-11:focus+.emotion-14 .emotion-16 {
+.emotion-13:focus+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-11[aria-invalid='true']:focus+.emotion-14 {
+.emotion-13[aria-invalid='true']:focus+.emotion-16 {
background-color: #ffebf2;
fill: #ffebf2;
outline: 1px solid 0px 0px 0px 3px #f91b6c40;
}
-.emotion-11[aria-invalid='true']:focus+.emotion-14 .emotion-16 {
+.emotion-13[aria-invalid='true']:focus+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-13 {
+.emotion-15 {
border-radius: 0.25rem;
height: 1.5rem;
width: 1.5rem;
@@ -13437,7 +13622,7 @@ exports[`List > Should render correctly with selectable with shift click for mul
min-height: 1.5rem;
}
-.emotion-13 path {
+.emotion-15 path {
fill: #ffffff;
-webkit-transform: translate(2px, 2px);
-moz-transform: translate(2px, 2px);
@@ -13449,7 +13634,7 @@ exports[`List > Should render correctly with selectable with shift click for mul
transform: scale(0);
}
-.emotion-13 {
+.emotion-15 {
border-radius: 0.25rem;
height: 1.5rem;
width: 1.5rem;
@@ -13457,7 +13642,7 @@ exports[`List > Should render correctly with selectable with shift click for mul
min-height: 1.5rem;
}
-.emotion-13 path {
+.emotion-15 path {
fill: #ffffff;
-webkit-transform: translate(2px, 2px);
-moz-transform: translate(2px, 2px);
@@ -13469,17 +13654,17 @@ exports[`List > Should render correctly with selectable with shift click for mul
transform: scale(0);
}
-.emotion-15 {
+.emotion-17 {
fill: #ffffff;
stroke: #d9dadd;
}
-.emotion-15 {
+.emotion-17 {
fill: #ffffff;
stroke: #d9dadd;
}
-.emotion-19 {
+.emotion-21 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -13505,7 +13690,7 @@ exports[`List > Should render correctly with selectable with shift click for mul
flex: 1;
}
-.emotion-19 {
+.emotion-21 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -13531,7 +13716,7 @@ exports[`List > Should render correctly with selectable with shift click for mul
flex: 1;
}
-.emotion-21 {
+.emotion-23 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -13557,7 +13742,7 @@ exports[`List > Should render correctly with selectable with shift click for mul
flex: 1;
}
-.emotion-21 {
+.emotion-23 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -13583,7 +13768,7 @@ exports[`List > Should render correctly with selectable with shift click for mul
flex: 1;
}
-.emotion-23 {
+.emotion-25 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -13595,7 +13780,7 @@ exports[`List > Should render correctly with selectable with shift click for mul
padding: 0 1rem;
}
-.emotion-23[role*='button'] {
+.emotion-25[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -13603,11 +13788,11 @@ exports[`List > Should render correctly with selectable with shift click for mul
user-select: none;
}
-.emotion-23[aria-sort] {
+.emotion-25[aria-sort] {
color: #641cb3;
}
-.emotion-23 {
+.emotion-25 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -13619,7 +13804,7 @@ exports[`List > Should render correctly with selectable with shift click for mul
padding: 0 1rem;
}
-.emotion-23[role*='button'] {
+.emotion-25[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -13627,11 +13812,11 @@ exports[`List > Should render correctly with selectable with shift click for mul
user-select: none;
}
-.emotion-23[aria-sort] {
+.emotion-25[aria-sort] {
color: #641cb3;
}
-.emotion-43 {
+.emotion-45 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -13646,11 +13831,11 @@ exports[`List > Should render correctly with selectable with shift click for mul
background-color: #ffffff;
}
-.emotion-43[role='button row'] {
+.emotion-45[role='button row'] {
cursor: pointer;
}
-.emotion-43:before {
+.emotion-45:before {
content: "";
position: absolute;
top: 0;
@@ -13664,40 +13849,40 @@ exports[`List > Should render correctly with selectable with shift click for mul
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-43:hover::before {
+.emotion-45:hover::before {
border-color: #8c40ef;
}
-.emotion-43:hover+.ei4uyz15:before {
+.emotion-45:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-43[aria-expanded='true']:before {
+.emotion-45[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-43 [data-expandable-content] {
+.emotion-45 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-43:hover {
+.emotion-45:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-43[data-highlight='true'] {
+.emotion-45[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-43[aria-disabled='true'] {
+.emotion-45[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-43 {
+.emotion-45 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -13712,11 +13897,11 @@ exports[`List > Should render correctly with selectable with shift click for mul
background-color: #ffffff;
}
-.emotion-43[role='button row'] {
+.emotion-45[role='button row'] {
cursor: pointer;
}
-.emotion-43:before {
+.emotion-45:before {
content: "";
position: absolute;
top: 0;
@@ -13730,40 +13915,40 @@ exports[`List > Should render correctly with selectable with shift click for mul
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-43:hover::before {
+.emotion-45:hover::before {
border-color: #8c40ef;
}
-.emotion-43:hover+.ei4uyz15:before {
+.emotion-45:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-43[aria-expanded='true']:before {
+.emotion-45[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-43 [data-expandable-content] {
+.emotion-45 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-43:hover {
+.emotion-45:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-43[data-highlight='true'] {
+.emotion-45[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-43[aria-disabled='true'] {
+.emotion-45[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-46 {
+.emotion-48 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
@@ -13771,11 +13956,11 @@ exports[`List > Should render correctly with selectable with shift click for mul
padding: 0;
}
-.emotion-46:first-of-type {
+.emotion-48:first-of-type {
padding-left: 1rem;
}
-.emotion-46 {
+.emotion-48 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
@@ -13783,25 +13968,25 @@ exports[`List > Should render correctly with selectable with shift click for mul
padding: 0;
}
-.emotion-46:first-of-type {
+.emotion-48:first-of-type {
padding-left: 1rem;
}
-.emotion-48 {
+.emotion-50 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
-.emotion-48 {
+.emotion-50 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
-.emotion-51 {
+.emotion-53 {
position: relative;
display: -webkit-inline-box;
display: -webkit-inline-flex;
@@ -13814,65 +13999,65 @@ exports[`List > Should render correctly with selectable with shift click for mul
gap: 0.5rem;
}
-.emotion-51 .eqr7bqq4 {
+.emotion-53 .eqr7bqq4 {
cursor: pointer;
}
-.emotion-51[aria-disabled='true'] {
+.emotion-53[aria-disabled='true'] {
cursor: not-allowed;
color: #b5b7bd;
}
-.emotion-51[aria-disabled='true'] .eqr7bqq4 {
+.emotion-53[aria-disabled='true'] .eqr7bqq4 {
cursor: not-allowed;
}
-.emotion-51[aria-disabled='true'] .emotion-14 {
+.emotion-53[aria-disabled='true'] .emotion-16 {
fill: #e9eaeb;
}
-.emotion-51[aria-disabled='true'] .emotion-14 .emotion-16 {
+.emotion-53[aria-disabled='true'] .emotion-16 .emotion-18 {
stroke: #d9dadd;
fill: #f3f3f4;
}
-.emotion-51[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 {
+.emotion-53[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 {
fill: #ffd3e3;
}
-.emotion-51[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-53[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
stroke: #ffd3e3;
fill: #ffd3e3;
}
-.emotion-51[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-53[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #ffebf2;
}
-.emotion-51[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-53[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #ffbbd3;
fill: #ffebf2;
}
-.emotion-51[aria-disabled='true'] .emotion-12:checked+.emotion-14 {
+.emotion-53[aria-disabled='true'] .emotion-14:checked+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-51[aria-disabled='true'] .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-53[aria-disabled='true'] .emotion-14:checked+.emotion-16 .emotion-18 {
stroke: #d8c5fc;
fill: #d8c5fc;
}
-.emotion-51[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 {
+.emotion-53[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-51[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-53[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
stroke: #e5dbfd;
fill: #e5dbfd;
}
-.emotion-51 .emotion-12:checked+.emotion-14 path {
+.emotion-53 .emotion-14:checked+.emotion-16 path {
transform-origin: center;
-webkit-transition: 200ms -webkit-transform ease-in-out;
transition: 200ms transform ease-in-out;
@@ -13886,60 +14071,60 @@ exports[`List > Should render correctly with selectable with shift click for mul
transform: translate(2px, 2px);
}
-.emotion-51 .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-53 .emotion-14:checked+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-51 .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-53 .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
fill: #e51963;
stroke: #e51963;
}
-.emotion-51 .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-18 {
+.emotion-53 .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-20 {
fill: #ffffff;
}
-.emotion-51 .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-53 .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-51:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-53:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-51:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-53:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-51:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-53:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-51:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-53:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-51:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-53:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #d6175c;
fill: #d6175c;
}
-.emotion-51 .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-53 .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #e51963;
}
-.emotion-51 .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-53 .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #e51963;
fill: #ffebf2;
}
-.emotion-51 {
+.emotion-53 {
position: relative;
display: -webkit-inline-box;
display: -webkit-inline-flex;
@@ -13952,65 +14137,65 @@ exports[`List > Should render correctly with selectable with shift click for mul
gap: 0.5rem;
}
-.emotion-51 .eqr7bqq4 {
+.emotion-53 .eqr7bqq4 {
cursor: pointer;
}
-.emotion-51[aria-disabled='true'] {
+.emotion-53[aria-disabled='true'] {
cursor: not-allowed;
color: #b5b7bd;
}
-.emotion-51[aria-disabled='true'] .eqr7bqq4 {
+.emotion-53[aria-disabled='true'] .eqr7bqq4 {
cursor: not-allowed;
}
-.emotion-51[aria-disabled='true'] .emotion-14 {
+.emotion-53[aria-disabled='true'] .emotion-16 {
fill: #e9eaeb;
}
-.emotion-51[aria-disabled='true'] .emotion-14 .emotion-16 {
+.emotion-53[aria-disabled='true'] .emotion-16 .emotion-18 {
stroke: #d9dadd;
fill: #f3f3f4;
}
-.emotion-51[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 {
+.emotion-53[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 {
fill: #ffd3e3;
}
-.emotion-51[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-53[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
stroke: #ffd3e3;
fill: #ffd3e3;
}
-.emotion-51[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-53[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #ffebf2;
}
-.emotion-51[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-53[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #ffbbd3;
fill: #ffebf2;
}
-.emotion-51[aria-disabled='true'] .emotion-12:checked+.emotion-14 {
+.emotion-53[aria-disabled='true'] .emotion-14:checked+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-51[aria-disabled='true'] .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-53[aria-disabled='true'] .emotion-14:checked+.emotion-16 .emotion-18 {
stroke: #d8c5fc;
fill: #d8c5fc;
}
-.emotion-51[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 {
+.emotion-53[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-51[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-53[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
stroke: #e5dbfd;
fill: #e5dbfd;
}
-.emotion-51 .emotion-12:checked+.emotion-14 path {
+.emotion-53 .emotion-14:checked+.emotion-16 path {
transform-origin: center;
-webkit-transition: 200ms -webkit-transform ease-in-out;
transition: 200ms transform ease-in-out;
@@ -14024,67 +14209,67 @@ exports[`List > Should render correctly with selectable with shift click for mul
transform: translate(2px, 2px);
}
-.emotion-51 .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-53 .emotion-14:checked+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-51 .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-53 .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
fill: #e51963;
stroke: #e51963;
}
-.emotion-51 .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-18 {
+.emotion-53 .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-20 {
fill: #ffffff;
}
-.emotion-51 .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-53 .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-51:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-53:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-51:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-53:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-51:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-53:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-51:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-53:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-51:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-53:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #d6175c;
fill: #d6175c;
}
-.emotion-51 .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-53 .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #e51963;
}
-.emotion-51 .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-53 .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #e51963;
fill: #ffebf2;
}
-.emotion-63 {
+.emotion-65 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
padding: 0 1rem;
}
-.emotion-63 {
+.emotion-65 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
@@ -14094,1026 +14279,1030 @@ exports[`List > Should render correctly with selectable with shift click for mul
-
-
-
-
+
+
-
-
-
-
- Column 1
-
- |
-
-
- Column 2
-
- |
-
-
- Column 3
-
- |
-
-
- Column 4
-
- |
-
-
- Column 5
-
- |
-
-
- |
-
-
-
+
-
-
-
+ Column 1
-
- | |
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
- Row 1 Column 5
- |
-
-
-
-
+
-
-
-
+ Column 2
-
- | |
-
- Row 2 Column 1
- |
-
- Row 2 Column 2
- |
-
- Row 2 Column 3
- |
-
- Row 2 Column 4
- |
-
- Row 2 Column 5
- |
-
-
-
+ |
+
+ Column 3
+
+ |
+
+
+ Column 4
+
+ |
+
+
+ Column 5
+
+ |
+
+
+
+
-
-
-
- Row 3 Column 1
- |
-
- Row 3 Column 2
- |
-
- Row 3 Column 3
- |
-
- Row 3 Column 4
- |
-
- Row 3 Column 5
- |
-
-
-
+ |
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
-
-
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
+ |
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
-
-
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
+ |
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
+ |
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
+ |
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
- Row 8 Column 5
- |
-
-
-
+ |
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
-
+
+
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
+
+
-
- |
-
- Row 9 Column 1
- |
-
- Row 9 Column 2
- |
-
- Row 9 Column 3
- |
-
- Row 9 Column 4
- |
-
- Row 9 Column 5
- |
-
-
-
+ |
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
-
+
+
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
+
+
-
- |
-
- Row 10 Column 1
- |
-
- Row 10 Column 2
- |
-
- Row 10 Column 3
- |
-
- Row 10 Column 4
- |
-
- Row 10 Column 5
- |
-
-
-
+
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
`;
@@ -15121,6 +15310,11 @@ exports[`List > Should render correctly with selectable with shift click for mul
exports[`List > Should render correctly with sentiment rows 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -15129,13 +15323,13 @@ exports[`List > Should render correctly with sentiment rows 1`] = `
position: relative;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -15149,7 +15343,7 @@ exports[`List > Should render correctly with sentiment rows 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -15161,7 +15355,7 @@ exports[`List > Should render correctly with sentiment rows 1`] = `
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -15169,11 +15363,11 @@ exports[`List > Should render correctly with sentiment rows 1`] = `
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -15196,7 +15390,7 @@ exports[`List > Should render correctly with sentiment rows 1`] = `
flex-wrap: nowrap;
}
-.emotion-24 {
+.emotion-26 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -15211,11 +15405,11 @@ exports[`List > Should render correctly with sentiment rows 1`] = `
background-color: #e0f2ff;
}
-.emotion-24[role='button row'] {
+.emotion-26[role='button row'] {
cursor: pointer;
}
-.emotion-24:before {
+.emotion-26:before {
content: "";
position: absolute;
top: 0;
@@ -15229,35 +15423,35 @@ exports[`List > Should render correctly with sentiment rows 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-24:hover::before {
+.emotion-26:hover::before {
border-color: #8c40ef;
}
-.emotion-24:hover+.ei4uyz15:before {
+.emotion-26:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-24[aria-expanded='true']:before {
+.emotion-26[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-24 [data-expandable-content] {
+.emotion-26 [data-expandable-content] {
border-color: #005da3;
}
-.emotion-24[data-highlight='true'] {
+.emotion-26[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[aria-disabled='true'] {
+.emotion-26[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-26 {
+.emotion-28 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
@@ -15267,398 +15461,402 @@ exports[`List > Should render correctly with sentiment rows 1`] = `
-
-
-
-
+
+
-
- Column 1
-
-
-
-
+ Column 1
+
+ |
+
- Column 2
-
- |
-
-
+ Column 2
+
+ |
+
- Column 3
-
- |
-
-
+ Column 3
+
+ |
+
- Column 4
-
- |
-
-
+ Column 4
+
+ |
+
- Column 5
-
- |
-
-
- |
-
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
- Row 1 Column 5
- |
-
-
-
+ Column 5
+
+
+ |
+
+
+
- Row 2 Column 1
-
-
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
- Row 2 Column 2
-
-
- Row 2 Column 3
- |
-
- Row 2 Column 4
- |
-
- Row 2 Column 5
- |
-
-
-
- Row 3 Column 1
- |
-
- Row 3 Column 2
- |
-
- Row 3 Column 3
- |
-
- Row 3 Column 4
- |
-
- Row 3 Column 5
- |
-
-
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
- Row 8 Column 5
-
-
-
-
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
- Row 9 Column 1
-
-
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
- Row 9 Column 2
-
-
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
- Row 9 Column 3
-
-
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 9 Column 4
-
-
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 9 Column 5
-
-
-
-
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 10 Column 1
-
-
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 10 Column 2
-
-
- Row 10 Column 3
- |
-
- Row 10 Column 4
- |
-
- Row 10 Column 5
- |
-
-
-
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
`;
@@ -15666,6 +15864,11 @@ exports[`List > Should render correctly with sentiment rows 1`] = `
exports[`List > Should render correctly with sort 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -15674,13 +15877,13 @@ exports[`List > Should render correctly with sort 1`] = `
position: relative;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -15694,7 +15897,7 @@ exports[`List > Should render correctly with sort 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -15706,7 +15909,7 @@ exports[`List > Should render correctly with sort 1`] = `
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -15714,11 +15917,11 @@ exports[`List > Should render correctly with sort 1`] = `
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -15741,7 +15944,7 @@ exports[`List > Should render correctly with sort 1`] = `
flex-wrap: nowrap;
}
-.emotion-24 {
+.emotion-26 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -15756,11 +15959,11 @@ exports[`List > Should render correctly with sort 1`] = `
background-color: #ffffff;
}
-.emotion-24[role='button row'] {
+.emotion-26[role='button row'] {
cursor: pointer;
}
-.emotion-24:before {
+.emotion-26:before {
content: "";
position: absolute;
top: 0;
@@ -15774,40 +15977,40 @@ exports[`List > Should render correctly with sort 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-24:hover::before {
+.emotion-26:hover::before {
border-color: #8c40ef;
}
-.emotion-24:hover+.ei4uyz15:before {
+.emotion-26:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-24[aria-expanded='true']:before {
+.emotion-26[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-24 [data-expandable-content] {
+.emotion-26 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-24:hover {
+.emotion-26:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[data-highlight='true'] {
+.emotion-26[data-highlight='true'] {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
}
-.emotion-24[aria-disabled='true'] {
+.emotion-26[aria-disabled='true'] {
background-color: #f3f3f4;
color: #b5b7bd;
cursor: not-allowed;
}
-.emotion-26 {
+.emotion-28 {
display: table-cell;
vertical-align: middle;
height: 3.75rem;
@@ -15817,378 +16020,382 @@ exports[`List > Should render correctly with sort 1`] = `
-
-
-
-
+
+
-
- Column 1
-
-
-
-
+ Column 1
+
+ |
+
- Column 2
-
- |
-
-
+ Column 2
+
+ |
+
- Column 3
-
- |
-
-
+ Column 3
+
+ |
+
- Column 4
-
- |
-
-
+ Column 4
+
+ |
+
- Column 5
-
- |
-
-
- |
-
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
+ Column 5
+
+
+ |
+
+
+
- Row 1 Column 5
-
-
-
-
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
- Row 2 Column 1
-
-
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
- Row 2 Column 2
-
-
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
- Row 2 Column 3
-
-
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
- Row 2 Column 4
-
-
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
- Row 2 Column 5
-
-
-
-
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 3 Column 1
-
-
- Row 3 Column 2
- |
-
- Row 3 Column 3
- |
-
- Row 3 Column 4
- |
-
- Row 3 Column 5
- |
-
-
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
- Row 8 Column 5
- |
-
-
-
- Row 9 Column 1
- |
-
- Row 9 Column 2
- |
-
- Row 9 Column 3
- |
-
- Row 9 Column 4
- |
-
- Row 9 Column 5
- |
-
-
-
- Row 10 Column 1
- |
-
- Row 10 Column 2
- |
-
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 10 Column 3
-
-
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 10 Column 4
-
-
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 10 Column 5
-
-
-
-
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
`;
@@ -16196,6 +16403,16 @@ exports[`List > Should render correctly with sort 1`] = `
exports[`List > Should render correctly with sort then click 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -16204,7 +16421,7 @@ exports[`List > Should render correctly with sort then click 1`] = `
position: relative;
}
-.emotion-0 {
+.emotion-2 {
width: 100%;
box-sizing: content-box;
gap: 0.5rem;
@@ -16213,13 +16430,13 @@ exports[`List > Should render correctly with sort then click 1`] = `
position: relative;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -16233,13 +16450,13 @@ exports[`List > Should render correctly with sort then click 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-2 {
+.emotion-4 {
display: table-row;
vertical-align: middle;
padding: 0 1rem;
}
-.emotion-2:before {
+.emotion-4:before {
content: "";
position: absolute;
top: 0;
@@ -16253,7 +16470,7 @@ exports[`List > Should render correctly with sort then click 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -16265,7 +16482,7 @@ exports[`List > Should render correctly with sort then click 1`] = `
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -16273,11 +16490,11 @@ exports[`List > Should render correctly with sort then click 1`] = `
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
text-align: left;
vertical-align: middle;
@@ -16289,7 +16506,7 @@ exports[`List > Should render correctly with sort then click 1`] = `
padding: 0 1rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -16297,11 +16514,11 @@ exports[`List > Should render correctly with sort then click 1`] = `
user-select: none;
}
-.emotion-4[aria-sort] {
+.emotion-6[aria-sort] {
color: #641cb3;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -16324,7 +16541,7 @@ exports[`List > Should render correctly with sort then click 1`] = `
flex-wrap: nowrap;
}
-.emotion-6 {
+.emotion-8 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -16347,7 +16564,7 @@ exports[`List > Should render correctly with sort then click 1`] = `
flex-wrap: nowrap;
}
-.emotion-8 {
+.emotion-10 {
vertical-align: middle;
fill: #3f4250;
height: 1em;
@@ -16356,12 +16573,12 @@ exports[`List > Should render correctly with sort then click 1`] = `
min-height: 1em;
}
-.emotion-8 .fillStroke {
+.emotion-10 .fillStroke {
stroke: #3f4250;
fill: none;
}
-.emotion-15 {
+.emotion-17 {
vertical-align: middle;
fill: #641cb3;
height: 1em;
@@ -16376,12 +16593,12 @@ exports[`List > Should render correctly with sort then click 1`] = `
transition: transform 0.2s ease-in-out;
}
-.emotion-15 .fillStroke {
+.emotion-17 .fillStroke {
stroke: #641cb3;
fill: none;
}
-.emotion-35 {
+.emotion-37 {
display: table-row;
vertical-align: middle;
position: relative;
@@ -16396,11 +16613,11 @@ exports[`List > Should render correctly with sort then click 1`] = `
background-color: #ffffff;
}
-.emotion-35[role='button row'] {
+.emotion-37[role='button row'] {
cursor: pointer;
}
-.emotion-35:before {
+.emotion-37:before {
content: "";
position: absolute;
top: 0;
@@ -16414,570 +16631,574 @@ exports[`List > Should render correctly with sort then click 1`] = `
transition: box-shadow 200ms ease,border-color 200ms ease;
}
-.emotion-35:hover::before {
+.emotion-37:hover::before {
border-color: #8c40ef;
}
-.emotion-35:hover+.ei4uyz15:before {
+.emotion-37:hover+.ei4uyz15:before {
border-color: #8c40ef;
}
-.emotion-35[aria-expanded='true']:before {
+.emotion-37[aria-expanded='true']:before {
border-radius: 0.25rem 0.25rem 0 0;
border-bottom-color: #d9dadd;
}
-.emotion-35 [data-expandable-content] {
+.emotion-37 [data-expandable-content] {
border-color: #d9dadd;
}
-.emotion-35:hover {
- border-color: #8c40ef;
- box-shadow: 0px 4px 16px 4px #f6f3ffcc;
-}
-
-.emotion-35[data-highlight='true'] {
+.emotion-37:hover {
border-color: #8c40ef;
box-shadow: 0px 4px 16px 4px #f6f3ffcc;
-}
-
-.emotion-35[aria-disabled='true'] {
- background-color: #f3f3f4;
- color: #b5b7bd;
- cursor: not-allowed;
-}
-
-.emotion-35 {
- display: table-row;
- vertical-align: middle;
- position: relative;
- box-shadow: none;
- background-color: #ffffff;
- font-size: 0.875rem;
- -webkit-column-gap: 1rem;
- column-gap: 1rem;
- position: relative;
- color: #3f4250;
- border-color: #d9dadd;
- background-color: #ffffff;
-}
-
-.emotion-35[role='button row'] {
- cursor: pointer;
-}
-
-.emotion-35:before {
- content: "";
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- border: 1px solid #d9dadd;
- border-radius: 0.25rem;
- pointer-events: none;
- -webkit-transition: box-shadow 200ms ease,border-color 200ms ease;
- transition: box-shadow 200ms ease,border-color 200ms ease;
-}
-
-.emotion-35:hover::before {
- border-color: #8c40ef;
-}
-
-.emotion-35:hover+.ei4uyz15:before {
- border-color: #8c40ef;
-}
-
-.emotion-35[aria-expanded='true']:before {
- border-radius: 0.25rem 0.25rem 0 0;
- border-bottom-color: #d9dadd;
-}
-
-.emotion-35 [data-expandable-content] {
- border-color: #d9dadd;
-}
-
-.emotion-35:hover {
- border-color: #8c40ef;
- box-shadow: 0px 4px 16px 4px #f6f3ffcc;
-}
-
-.emotion-35[data-highlight='true'] {
- border-color: #8c40ef;
- box-shadow: 0px 4px 16px 4px #f6f3ffcc;
-}
-
-.emotion-35[aria-disabled='true'] {
- background-color: #f3f3f4;
- color: #b5b7bd;
- cursor: not-allowed;
-}
-
-.emotion-37 {
- display: table-cell;
- vertical-align: middle;
- height: 3.75rem;
- padding: 0 1rem;
-}
-
-.emotion-37 {
- display: table-cell;
- vertical-align: middle;
- height: 3.75rem;
- padding: 0 1rem;
-}
-
-
-
-
-
-
-
-
- |
-
-
- |
-
-
- |
-
-
- |
-
-
- |
-
-
-
-
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
- Row 1 Column 5
- |
-
-
-
- Row 2 Column 1
- |
-
- Row 2 Column 2
- |
-
- Row 2 Column 3
- |
-
- Row 2 Column 4
- |
-
- Row 2 Column 5
- |
-
-
-
- Row 3 Column 1
- |
-
- Row 3 Column 2
- |
-
- Row 3 Column 3
- |
-
- Row 3 Column 4
- |
-
- Row 3 Column 5
- |
-
-
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
+
+
+
+
+
- Row 8 Column 5
-
-
-
-
+
+
+ |
+
+ |
+
+
+ |
+
+
+ |
+
+
+ |
+
+
+
+
- Row 9 Column 1
-
-
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
- Row 9 Column 2
-
-
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
- Row 9 Column 3
-
-
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
- Row 9 Column 4
-
-
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
- Row 9 Column 5
-
-
-
-
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
- Row 10 Column 1
-
-
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 10 Column 2
-
-
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 10 Column 3
-
-
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 10 Column 4
-
-
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 10 Column 5
-
-
-
-
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+ |
+
+
+
diff --git a/packages/ui/src/components/List/index.tsx b/packages/ui/src/components/List/index.tsx
index 381d90c6c2..31039b8b8f 100644
--- a/packages/ui/src/components/List/index.tsx
+++ b/packages/ui/src/components/List/index.tsx
@@ -1,11 +1,5 @@
import styled from '@emotion/styled'
-import type {
- ComponentProps,
- Dispatch,
- ForwardedRef,
- ReactNode,
- SetStateAction,
-} from 'react'
+import type { Dispatch, ForwardedRef, ReactNode, SetStateAction } from 'react'
import { forwardRef } from 'react'
import { Cell } from './Cell'
import { HeaderCell } from './HeaderCell'
@@ -14,6 +8,12 @@ import { ListProvider, useListContext } from './ListContext'
import { Row } from './Row'
import { SelectBar } from './SelectBar'
import { SkeletonRows } from './SkeletonRows'
+import type { ColumnProps } from './types'
+
+const TableContainer = styled.div`
+ min-width: 100%;
+ overflow-x: scroll;
+`
const StyledTable = styled.table`
width: 100%;
@@ -24,17 +24,6 @@ const StyledTable = styled.table`
position: relative;
`
-type ColumnProps = Pick<
- ComponentProps,
- 'isOrdered' | 'onOrder' | 'orderDirection'
-> & {
- label?: string
- width?: string
- minWidth?: string
- maxWidth?: string
- info?: string
-}
-
type ListProps = {
expandable?: boolean
selectable?: boolean
@@ -72,36 +61,39 @@ const BaseList = forwardRef(
expandButton={expandable}
autoCollapse={autoCollapse}
onSelectedChange={onSelectedChange}
+ columns={columns}
>
-
-
- {columns.map((column, index) => (
-
- {column.label}
-
- ))}
-
-
- {loading ? (
-
- ) : (
- children
- )}
-
-
+
+
+
+ {columns.map((column, index) => (
+
+ {column.label}
+
+ ))}
+
+
+ {loading ? (
+
+ ) : (
+ children
+ )}
+
+
+
),
)
diff --git a/packages/ui/src/components/List/types.ts b/packages/ui/src/components/List/types.ts
new file mode 100644
index 0000000000..aafa5aefe4
--- /dev/null
+++ b/packages/ui/src/components/List/types.ts
@@ -0,0 +1,13 @@
+import type { ComponentProps } from 'react'
+import type { HeaderCell } from './HeaderCell'
+
+export type ColumnProps = Pick<
+ ComponentProps,
+ 'isOrdered' | 'onOrder' | 'orderDirection'
+> & {
+ label?: string
+ width?: string
+ minWidth?: string
+ maxWidth?: string
+ info?: string
+}
diff --git a/packages/ui/src/components/Table/Row.tsx b/packages/ui/src/components/Table/Row.tsx
index 434238b402..b8bbee4356 100644
--- a/packages/ui/src/components/Table/Row.tsx
+++ b/packages/ui/src/components/Table/Row.tsx
@@ -9,6 +9,7 @@ import { Tooltip } from '../Tooltip'
import { Cell } from './Cell'
import { useTableContext } from './TableContext'
import { SELECTABLE_CHECKBOX_SIZE } from './constants'
+import type { ColumnProps } from './types'
const ExpandableWrapper = styled.tr`
width: 100%;
@@ -47,11 +48,27 @@ const colorChange = (theme: Theme) => keyframes`
`
const StyledTr = styled('tr', {
- shouldForwardProp: prop => !['highlightAnimation'].includes(prop),
-})<{ highlightAnimation?: boolean }>`
+ shouldForwardProp: prop =>
+ !['highlightAnimation', 'columns', 'columnsStartAt'].includes(prop),
+})<{
+ highlightAnimation?: boolean
+ columns: ColumnProps[]
+ columnsStartAt?: number
+}>`
animation: ${({ highlightAnimation, theme }) =>
highlightAnimation ? colorChange(theme) : undefined}
3s linear;
+
+ ${({ columns, columnsStartAt }) =>
+ columns.map(
+ (column, index) => `
+ td:nth-of-type(${index + 1 + (columnsStartAt ?? 0)}) {
+ ${column.width ? `width: ${column.width};` : ''}
+ ${column.minWidth ? `min-width: ${column.minWidth};` : ''}
+ ${column.maxWidth ? `max-width: ${column.maxWidth};` : ''}
+ }
+ `,
+ )}
`
const NoPaddingCell = styled(Cell, {
@@ -103,6 +120,7 @@ export const Row = ({
expandButton,
ref,
inRange,
+ columns,
} = useTableContext()
const rowRef = useRef(null)
@@ -158,6 +176,8 @@ export const Row = ({
data-testid={dataTestid}
highlightAnimation={highlightAnimation}
role={canClickRowToExpand ? 'button row' : 'row'}
+ columns={columns}
+ columnsStartAt={(selectable ? 1 : 0) + (expandButton ? 1 : 0)}
>
{selectable ? (
diff --git a/packages/ui/src/components/Table/TableContext.tsx b/packages/ui/src/components/Table/TableContext.tsx
index 39f2710fed..359a9e03ff 100644
--- a/packages/ui/src/components/Table/TableContext.tsx
+++ b/packages/ui/src/components/Table/TableContext.tsx
@@ -9,6 +9,7 @@ import {
useState,
} from 'react'
import type { Checkbox } from '../Checkbox'
+import type { ColumnProps } from './types'
type RowState = Record
@@ -35,6 +36,7 @@ type TableContextValue = {
collapseRow: (rowId: string) => void
expandButton: boolean
registerExpandableRow: (rowId: string, expanded?: boolean) => () => void
+ columns: ColumnProps[]
}
const TableContext = createContext(undefined)
@@ -46,6 +48,7 @@ type TableProviderProps = {
stripped: boolean
expandButton: boolean
autoCollapse: boolean
+ columns: ColumnProps[]
}
export const TableProvider = ({
@@ -55,6 +58,7 @@ export const TableProvider = ({
stripped,
expandButton,
autoCollapse,
+ columns,
}: TableProviderProps) => {
const [selectedRowIds, setSelectedRowIds] = useState({})
const [expandedRowIds, setExpandedRowIds] = useState({})
@@ -259,6 +263,7 @@ export const TableProvider = ({
registerExpandableRow,
ref,
inRange,
+ columns,
}),
[
registerSelectableRow,
@@ -278,6 +283,7 @@ export const TableProvider = ({
registerExpandableRow,
ref,
inRange,
+ columns,
],
)
diff --git a/packages/ui/src/components/Table/__tests__/__snapshots__/index.test.tsx.snap b/packages/ui/src/components/Table/__tests__/__snapshots__/index.test.tsx.snap
index 92d7c20e49..1fcd10177d 100644
--- a/packages/ui/src/components/Table/__tests__/__snapshots__/index.test.tsx.snap
+++ b/packages/ui/src/components/Table/__tests__/__snapshots__/index.test.tsx.snap
@@ -3,23 +3,28 @@
exports[`Table > Should render correctly 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
border-collapse: collapse;
}
-.emotion-0 [role="row"],
-.emotion-0 [role="button row"] {
+.emotion-2 [role="row"],
+.emotion-2 [role="button row"] {
width: 100%;
display: table-row;
vertical-align: middle;
}
-.emotion-2 {
+.emotion-4 {
border-bottom: 1px solid #d9dadd;
}
-.emotion-4 {
+.emotion-6 {
width: 100px;
max-width: 200px;
min-width: 100px;
@@ -28,7 +33,7 @@ exports[`Table > Should render correctly 1`] = `
padding: 0.5rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -36,11 +41,11 @@ exports[`Table > Should render correctly 1`] = `
user-select: none;
}
-.emotion-4:first-of-type {
+.emotion-6:first-of-type {
padding-left: 1rem;
}
-.emotion-7 {
+.emotion-9 {
color: #3f4250;
font-size: 0.875rem;
font-family: Inter,Asap,sans-serif;
@@ -64,12 +69,42 @@ exports[`Table > Should render correctly 1`] = `
gap: 0.5rem;
}
-.emotion-29 {
+.emotion-31 {
-webkit-animation: 3s linear;
animation: 3s linear;
}
-.emotion-31 {
+.emotion-31 td:nth-of-type(1) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(2) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(3) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(4) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(5) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-33 {
display: table-cell;
vertical-align: middle;
padding: 0.5rem;
@@ -80,370 +115,374 @@ exports[`Table > Should render correctly 1`] = `
-
-
-
-
-
- Column 1
-
- |
-
-
+ Column 1
+
+ |
+
- Column 2
-
- |
-
-
+ Column 2
+
+ |
+
- Column 3
-
- |
-
-
+ Column 3
+
+ |
+
- Column 4
-
- |
-
-
- Column 5
-
- |
-
-
-
-
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
+ Column 4
+
+
+ |
+
+ Column 5
+
+ |
+
+
+
+
- Row 1 Column 5
-
-
-
-
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
- Row 2 Column 1
-
-
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
- Row 2 Column 2
-
-
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
- Row 2 Column 3
-
-
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
- Row 2 Column 4
-
-
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
- Row 2 Column 5
-
-
-
-
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 3 Column 1
-
-
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 3 Column 2
-
-
- Row 3 Column 3
- |
-
- Row 3 Column 4
- |
-
- Row 3 Column 5
- |
-
-
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
- Row 8 Column 5
- |
-
-
-
- Row 9 Column 1
- |
-
- Row 9 Column 2
- |
-
- Row 9 Column 3
- |
-
- Row 9 Column 4
- |
-
- Row 9 Column 5
- |
-
-
-
- Row 10 Column 1
- |
-
- Row 10 Column 2
- |
-
- Row 10 Column 3
- |
-
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 10 Column 4
-
-
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 10 Column 5
-
-
-
-
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
`;
@@ -451,40 +490,50 @@ exports[`Table > Should render correctly 1`] = `
exports[`Table > Should render correctly with bad sort value 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
border-collapse: collapse;
}
-.emotion-0 [role="row"],
-.emotion-0 [role="button row"] {
+.emotion-2 [role="row"],
+.emotion-2 [role="button row"] {
width: 100%;
display: table-row;
vertical-align: middle;
}
-.emotion-0 {
+.emotion-2 {
width: 100%;
box-sizing: content-box;
border-collapse: collapse;
}
-.emotion-0 [role="row"],
-.emotion-0 [role="button row"] {
+.emotion-2 [role="row"],
+.emotion-2 [role="button row"] {
width: 100%;
display: table-row;
vertical-align: middle;
}
-.emotion-2 {
+.emotion-4 {
border-bottom: 1px solid #d9dadd;
}
-.emotion-2 {
+.emotion-4 {
border-bottom: 1px solid #d9dadd;
}
-.emotion-4 {
+.emotion-6 {
width: 100px;
max-width: 200px;
min-width: 100px;
@@ -493,7 +542,7 @@ exports[`Table > Should render correctly with bad sort value 1`] = `
padding: 0.5rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -501,11 +550,11 @@ exports[`Table > Should render correctly with bad sort value 1`] = `
user-select: none;
}
-.emotion-4:first-of-type {
+.emotion-6:first-of-type {
padding-left: 1rem;
}
-.emotion-4 {
+.emotion-6 {
width: 100px;
max-width: 200px;
min-width: 100px;
@@ -514,7 +563,7 @@ exports[`Table > Should render correctly with bad sort value 1`] = `
padding: 0.5rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -522,11 +571,11 @@ exports[`Table > Should render correctly with bad sort value 1`] = `
user-select: none;
}
-.emotion-4:first-of-type {
+.emotion-6:first-of-type {
padding-left: 1rem;
}
-.emotion-7 {
+.emotion-9 {
color: #3f4250;
font-size: 0.875rem;
font-family: Inter,Asap,sans-serif;
@@ -550,7 +599,7 @@ exports[`Table > Should render correctly with bad sort value 1`] = `
gap: 0.5rem;
}
-.emotion-7 {
+.emotion-9 {
color: #3f4250;
font-size: 0.875rem;
font-family: Inter,Asap,sans-serif;
@@ -574,17 +623,77 @@ exports[`Table > Should render correctly with bad sort value 1`] = `
gap: 0.5rem;
}
-.emotion-29 {
+.emotion-31 {
-webkit-animation: 3s linear;
animation: 3s linear;
}
-.emotion-29 {
+.emotion-31 td:nth-of-type(1) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(2) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(3) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(4) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(5) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 {
-webkit-animation: 3s linear;
animation: 3s linear;
}
-.emotion-31 {
+.emotion-31 td:nth-of-type(1) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(2) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(3) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(4) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(5) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-33 {
display: table-cell;
vertical-align: middle;
padding: 0.5rem;
@@ -592,7 +701,7 @@ exports[`Table > Should render correctly with bad sort value 1`] = `
text-align: left;
}
-.emotion-31 {
+.emotion-33 {
display: table-cell;
vertical-align: middle;
padding: 0.5rem;
@@ -603,370 +712,374 @@ exports[`Table > Should render correctly with bad sort value 1`] = `
-
-
-
-
-
- Column 1
-
- |
-
-
+ Column 1
+
+ |
+
- Column 2
-
- |
-
-
+ Column 2
+
+ |
+
- Column 3
-
- |
-
-
+ Column 3
+
+ |
+
- Column 4
-
- |
-
-
- Column 5
-
- |
-
-
-
-
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
- Row 1 Column 5
- |
-
-
-
- Row 2 Column 1
- |
-
- Row 2 Column 2
- |
-
- Row 2 Column 3
- |
-
- Row 2 Column 4
- |
-
- Row 2 Column 5
- |
-
-
-
- Row 3 Column 1
- |
-
- Row 3 Column 2
- |
-
- Row 3 Column 3
- |
-
- Row 3 Column 4
- |
-
- Row 3 Column 5
- |
-
-
-
- Row 4 Column 1
- |
-
+ Column 4
+
+
+ |
+
+ Column 5
+
+ |
+
+
+
+
- Row 4 Column 2
-
-
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
- Row 4 Column 3
-
-
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
- Row 4 Column 4
-
-
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
- Row 4 Column 5
-
-
-
-
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
- Row 5 Column 1
-
-
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
- Row 5 Column 2
-
-
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 5 Column 3
-
-
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 5 Column 4
-
-
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 5 Column 5
-
-
-
-
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 6 Column 1
-
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
- Row 8 Column 5
- |
-
-
-
- Row 9 Column 1
- |
-
- Row 9 Column 2
- |
-
- Row 9 Column 3
- |
-
- Row 9 Column 4
- |
-
- Row 9 Column 5
- |
-
-
-
- Row 10 Column 1
- |
-
- Row 10 Column 2
- |
-
- Row 10 Column 3
- |
-
- Row 10 Column 4
- |
-
- Row 10 Column 5
- |
-
-
-
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
`;
@@ -984,46 +1097,56 @@ exports[`Table > Should render correctly with highlight animation on Table.Row 1
}
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
border-collapse: collapse;
}
-.emotion-0 [role="row"],
-.emotion-0 [role="button row"] {
+.emotion-2 [role="row"],
+.emotion-2 [role="button row"] {
width: 100%;
display: table-row;
vertical-align: middle;
}
-.emotion-0 {
+.emotion-2 {
width: 100%;
box-sizing: content-box;
border-collapse: collapse;
}
-.emotion-0 [role="row"],
-.emotion-0 [role="button row"] {
+.emotion-2 [role="row"],
+.emotion-2 [role="button row"] {
width: 100%;
display: table-row;
vertical-align: middle;
}
-.emotion-2 {
+.emotion-4 {
border-bottom: 1px solid #d9dadd;
}
-.emotion-2 {
+.emotion-4 {
border-bottom: 1px solid #d9dadd;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
vertical-align: middle;
padding: 0.5rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -1031,11 +1154,11 @@ exports[`Table > Should render correctly with highlight animation on Table.Row 1
user-select: none;
}
-.emotion-4:first-of-type {
+.emotion-6:first-of-type {
padding-left: 1rem;
}
-.emotion-7 {
+.emotion-9 {
color: #3f4250;
font-size: 0.875rem;
font-family: Inter,Asap,sans-serif;
@@ -1059,7 +1182,7 @@ exports[`Table > Should render correctly with highlight animation on Table.Row 1
gap: 0.5rem;
}
-.emotion-7 {
+.emotion-9 {
color: #3f4250;
font-size: 0.875rem;
font-family: Inter,Asap,sans-serif;
@@ -1083,15 +1206,15 @@ exports[`Table > Should render correctly with highlight animation on Table.Row 1
gap: 0.5rem;
}
-.emotion-9 {
+.emotion-11 {
display: inherit;
}
-.emotion-9[data-container-full-width="true"] {
+.emotion-11[data-container-full-width="true"] {
width: 100%;
}
-.emotion-11 {
+.emotion-13 {
vertical-align: middle;
fill: #727683;
height: 20px;
@@ -1100,12 +1223,12 @@ exports[`Table > Should render correctly with highlight animation on Table.Row 1
min-height: 20px;
}
-.emotion-11 .fillStroke {
+.emotion-13 .fillStroke {
stroke: #727683;
fill: none;
}
-.emotion-13 {
+.emotion-15 {
width: 100px;
max-width: 200px;
min-width: 100px;
@@ -1114,7 +1237,7 @@ exports[`Table > Should render correctly with highlight animation on Table.Row 1
padding: 0.5rem;
}
-.emotion-13[role*='button'] {
+.emotion-15[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -1122,11 +1245,11 @@ exports[`Table > Should render correctly with highlight animation on Table.Row 1
user-select: none;
}
-.emotion-13:first-of-type {
+.emotion-15:first-of-type {
padding-left: 1rem;
}
-.emotion-13 {
+.emotion-15 {
width: 100px;
max-width: 200px;
min-width: 100px;
@@ -1135,7 +1258,7 @@ exports[`Table > Should render correctly with highlight animation on Table.Row 1
padding: 0.5rem;
}
-.emotion-13[role*='button'] {
+.emotion-15[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -1143,16 +1266,28 @@ exports[`Table > Should render correctly with highlight animation on Table.Row 1
user-select: none;
}
-.emotion-13:first-of-type {
+.emotion-15:first-of-type {
padding-left: 1rem;
}
-.emotion-23 {
+.emotion-25 {
-webkit-animation: animation-0 3s linear;
animation: animation-0 3s linear;
}
-.emotion-25 {
+.emotion-25 td:nth-of-type(2) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-25 td:nth-of-type(3) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-27 {
display: table-cell;
vertical-align: middle;
padding: 0.5rem;
@@ -1160,7 +1295,7 @@ exports[`Table > Should render correctly with highlight animation on Table.Row 1
text-align: left;
}
-.emotion-25 {
+.emotion-27 {
display: table-cell;
vertical-align: middle;
padding: 0.5rem;
@@ -1171,367 +1306,371 @@ exports[`Table > Should render correctly with highlight animation on Table.Row 1
-
-
-
-
-
-
- |
-
-
- Column 2
-
- |
-
-
- Column 3
-
- |
-
-
-
-
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
- Row 1 Column 5
- |
-
-
-
+ |
+
+ Column 2
+
+ |
+
+
+ Column 3
+
+ |
+
+
+
+
- Row 2 Column 1
-
-
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
- Row 2 Column 2
-
-
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
- Row 2 Column 3
-
-
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
- Row 2 Column 4
-
-
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
- Row 2 Column 5
-
-
-
-
- Row 3 Column 1
- |
-
- Row 3 Column 2
- |
-
- Row 3 Column 3
- |
-
- Row 3 Column 4
- |
-
- Row 3 Column 5
- |
-
-
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
- Row 8 Column 5
- |
-
-
-
- Row 9 Column 1
- |
-
- Row 9 Column 2
- |
-
- Row 9 Column 3
- |
-
- Row 9 Column 4
- |
-
- Row 9 Column 5
- |
-
-
-
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
- Row 10 Column 1
-
-
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 10 Column 2
-
-
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 10 Column 3
-
-
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 10 Column 4
-
-
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 10 Column 5
-
-
-
-
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
`;
@@ -1539,41 +1678,51 @@ exports[`Table > Should render correctly with highlight animation on Table.Row 1
exports[`Table > Should render correctly with info 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
border-collapse: collapse;
}
-.emotion-0 [role="row"],
-.emotion-0 [role="button row"] {
+.emotion-2 [role="row"],
+.emotion-2 [role="button row"] {
width: 100%;
display: table-row;
vertical-align: middle;
}
-.emotion-0 tbody tr:nth-of-type(even) {
+.emotion-2 tbody tr:nth-of-type(even) {
background: #f9f9fa;
}
-.emotion-0 tbody tr {
+.emotion-2 tbody tr {
border-bottom: 1px solid #e9eaeb;
}
-.emotion-2 {
+.emotion-4 {
border-bottom: 1px solid #d9dadd;
}
-.emotion-2 {
+.emotion-4 {
border-bottom: 1px solid #d9dadd;
}
-.emotion-4 {
+.emotion-6 {
display: table-cell;
vertical-align: middle;
padding: 0.5rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -1581,11 +1730,11 @@ exports[`Table > Should render correctly with info 1`] = `
user-select: none;
}
-.emotion-4:first-of-type {
+.emotion-6:first-of-type {
padding-left: 1rem;
}
-.emotion-7 {
+.emotion-9 {
color: #3f4250;
font-size: 0.875rem;
font-family: Inter,Asap,sans-serif;
@@ -1609,7 +1758,7 @@ exports[`Table > Should render correctly with info 1`] = `
gap: 0.5rem;
}
-.emotion-7 {
+.emotion-9 {
color: #3f4250;
font-size: 0.875rem;
font-family: Inter,Asap,sans-serif;
@@ -1633,15 +1782,15 @@ exports[`Table > Should render correctly with info 1`] = `
gap: 0.5rem;
}
-.emotion-9 {
+.emotion-11 {
display: inherit;
}
-.emotion-9[data-container-full-width="true"] {
+.emotion-11[data-container-full-width="true"] {
width: 100%;
}
-.emotion-11 {
+.emotion-13 {
vertical-align: middle;
fill: #727683;
height: 20px;
@@ -1650,12 +1799,12 @@ exports[`Table > Should render correctly with info 1`] = `
min-height: 20px;
}
-.emotion-11 .fillStroke {
+.emotion-13 .fillStroke {
stroke: #727683;
fill: none;
}
-.emotion-13 {
+.emotion-15 {
width: 100px;
max-width: 200px;
min-width: 100px;
@@ -1664,7 +1813,7 @@ exports[`Table > Should render correctly with info 1`] = `
padding: 0.5rem;
}
-.emotion-13[role*='button'] {
+.emotion-15[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -1672,11 +1821,11 @@ exports[`Table > Should render correctly with info 1`] = `
user-select: none;
}
-.emotion-13:first-of-type {
+.emotion-15:first-of-type {
padding-left: 1rem;
}
-.emotion-13 {
+.emotion-15 {
width: 100px;
max-width: 200px;
min-width: 100px;
@@ -1685,7 +1834,7 @@ exports[`Table > Should render correctly with info 1`] = `
padding: 0.5rem;
}
-.emotion-13[role*='button'] {
+.emotion-15[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -1693,21 +1842,28 @@ exports[`Table > Should render correctly with info 1`] = `
user-select: none;
}
-.emotion-13:first-of-type {
+.emotion-15:first-of-type {
padding-left: 1rem;
}
-.emotion-23 {
+.emotion-25 {
-webkit-animation: 3s linear;
animation: 3s linear;
}
-.emotion-23 {
- -webkit-animation: 3s linear;
- animation: 3s linear;
+.emotion-25 td:nth-of-type(2) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
}
-.emotion-25 {
+.emotion-25 td:nth-of-type(3) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-27 {
display: table-cell;
vertical-align: middle;
padding: 0.5rem;
@@ -1715,7 +1871,7 @@ exports[`Table > Should render correctly with info 1`] = `
text-align: left;
}
-.emotion-25 {
+.emotion-27 {
display: table-cell;
vertical-align: middle;
padding: 0.5rem;
@@ -1726,367 +1882,371 @@ exports[`Table > Should render correctly with info 1`] = `
-
-
-
-
-
+
- Name
-
- |
-
-
- Column 2
-
- |
-
-
- Column 3
-
- |
- |
-
-
-
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
- Row 1 Column 5
- |
-
-
-
+ |
+
+ Column 2
+
+ |
+
+
+ Column 3
+
+ |
+
+
+
+
- Row 2 Column 1
-
-
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
- Row 2 Column 2
-
-
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
- Row 2 Column 3
-
-
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
- Row 2 Column 4
-
-
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
- Row 2 Column 5
-
-
-
-
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
- Row 3 Column 1
-
-
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 3 Column 2
-
-
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 3 Column 3
-
-
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 3 Column 4
-
-
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 3 Column 5
-
-
-
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
- Row 8 Column 5
- |
-
-
-
- Row 9 Column 1
- |
-
- Row 9 Column 2
- |
-
- Row 9 Column 3
- |
-
- Row 9 Column 4
- |
-
- Row 9 Column 5
- |
-
-
-
- Row 10 Column 1
- |
-
- Row 10 Column 2
- |
-
- Row 10 Column 3
- |
-
- Row 10 Column 4
- |
-
- Row 10 Column 5
- |
-
-
-
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
`;
@@ -2104,23 +2264,28 @@ exports[`Table > Should render correctly with loading 1`] = `
}
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
border-collapse: collapse;
}
-.emotion-0 [role="row"],
-.emotion-0 [role="button row"] {
+.emotion-2 [role="row"],
+.emotion-2 [role="button row"] {
width: 100%;
display: table-row;
vertical-align: middle;
}
-.emotion-2 {
+.emotion-4 {
border-bottom: 1px solid #d9dadd;
}
-.emotion-4 {
+.emotion-6 {
width: 100px;
max-width: 200px;
min-width: 100px;
@@ -2129,7 +2294,7 @@ exports[`Table > Should render correctly with loading 1`] = `
padding: 0.5rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -2137,11 +2302,11 @@ exports[`Table > Should render correctly with loading 1`] = `
user-select: none;
}
-.emotion-4:first-of-type {
+.emotion-6:first-of-type {
padding-left: 1rem;
}
-.emotion-7 {
+.emotion-9 {
color: #3f4250;
font-size: 0.875rem;
font-family: Inter,Asap,sans-serif;
@@ -2165,11 +2330,11 @@ exports[`Table > Should render correctly with loading 1`] = `
gap: 0.5rem;
}
-.emotion-29 {
+.emotion-31 {
cursor: progress;
}
-.emotion-31 {
+.emotion-33 {
display: table-cell;
vertical-align: middle;
padding: 0.5rem;
@@ -2177,7 +2342,7 @@ exports[`Table > Should render correctly with loading 1`] = `
text-align: left;
}
-.emotion-34 {
+.emotion-36 {
position: relative;
width: 100%;
overflow: hidden;
@@ -2195,7 +2360,7 @@ exports[`Table > Should render correctly with loading 1`] = `
max-width: 100%;
}
-.emotion-36 {
+.emotion-38 {
height: 0.75rem;
width: 7.5rem;
max-width: 100%;
@@ -2203,7 +2368,7 @@ exports[`Table > Should render correctly with loading 1`] = `
background-color: #e9eaeb;
}
-.emotion-38 {
+.emotion-40 {
position: absolute;
top: 0;
height: 100%;
@@ -2224,7 +2389,7 @@ exports[`Table > Should render correctly with loading 1`] = `
}
@media (prefers-reduced-motion: reduce) {
- .emotion-38 {
+ .emotion-40 {
-webkit-animation: unset;
animation: unset;
}
@@ -2233,500 +2398,504 @@ exports[`Table > Should render correctly with loading 1`] = `
-
-
-
-
-
- Column 1
-
- |
-
-
- Column 2
-
- |
-
-
- Column 3
-
- |
-
-
- Column 4
-
- |
-
-
- Column 5
-
- |
-
-
-
-
-
-
- |
-
-
+ Column 1
+
+
+ |
-
-
-
- |
-
+ Column 2
+
+
+ |
-
-
-
- |
-
+ Column 3
+
+
+ |
-
-
-
- |
-
+ Column 4
+
+
+ |
-
-
-
- |
-
-
+ Column 5
+
+
+ |
+
+
+
-
-
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
-
-
+
+
+
+ |
+
+
-
-
-
-
+ |
+
+ aria-busy="true"
+ aria-live="polite"
+ class="emotion-35 emotion-36 emotion-37"
+ >
+
+
+
+ |
+
-
- |
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
+
+
+
+ |
+
+
-
-
-
-
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
-
+ |
+
-
-
- |
-
+
+
+
+ |
+
+
-
-
-
-
-
-
+ |
+
+ aria-busy="true"
+ aria-live="polite"
+ class="emotion-35 emotion-36 emotion-37"
+ >
+
+
+
+ |
+
-
- |
-
-
+ |
+
+ aria-busy="true"
+ aria-live="polite"
+ class="emotion-35 emotion-36 emotion-37"
+ >
+
+
+
+ |
+
-
- |
-
+
+
+
+ |
+
+
-
-
-
-
+ |
+
+ aria-busy="true"
+ aria-live="polite"
+ class="emotion-35 emotion-36 emotion-37"
+ >
+
+
+
+ |
+
-
- |
-
-
+ |
+
+ aria-busy="true"
+ aria-live="polite"
+ class="emotion-35 emotion-36 emotion-37"
+ >
+
+
+
+ |
+
-
- |
-
-
-
+ aria-busy="true"
+ aria-live="polite"
+ class="emotion-35 emotion-36 emotion-37"
+ >
+
+
+
+
+
+
+
+
`;
@@ -2734,40 +2903,50 @@ exports[`Table > Should render correctly with loading 1`] = `
exports[`Table > Should render correctly with selectDisabled as a string 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
border-collapse: collapse;
}
-.emotion-0 [role="row"],
-.emotion-0 [role="button row"] {
+.emotion-2 [role="row"],
+.emotion-2 [role="button row"] {
width: 100%;
display: table-row;
vertical-align: middle;
}
-.emotion-0 {
+.emotion-2 {
width: 100%;
box-sizing: content-box;
border-collapse: collapse;
}
-.emotion-0 [role="row"],
-.emotion-0 [role="button row"] {
+.emotion-2 [role="row"],
+.emotion-2 [role="button row"] {
width: 100%;
display: table-row;
vertical-align: middle;
}
-.emotion-2 {
+.emotion-4 {
border-bottom: 1px solid #d9dadd;
}
-.emotion-2 {
+.emotion-4 {
border-bottom: 1px solid #d9dadd;
}
-.emotion-4 {
+.emotion-6 {
width: 100px;
max-width: 200px;
min-width: 100px;
@@ -2776,7 +2955,7 @@ exports[`Table > Should render correctly with selectDisabled as a string 1`] = `
padding: 0.5rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -2784,11 +2963,11 @@ exports[`Table > Should render correctly with selectDisabled as a string 1`] = `
user-select: none;
}
-.emotion-4:first-of-type {
+.emotion-6:first-of-type {
padding-left: 1rem;
}
-.emotion-4 {
+.emotion-6 {
width: 100px;
max-width: 200px;
min-width: 100px;
@@ -2797,7 +2976,7 @@ exports[`Table > Should render correctly with selectDisabled as a string 1`] = `
padding: 0.5rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -2805,11 +2984,11 @@ exports[`Table > Should render correctly with selectDisabled as a string 1`] = `
user-select: none;
}
-.emotion-4:first-of-type {
+.emotion-6:first-of-type {
padding-left: 1rem;
}
-.emotion-7 {
+.emotion-9 {
color: #3f4250;
font-size: 0.875rem;
font-family: Inter,Asap,sans-serif;
@@ -2833,7 +3012,7 @@ exports[`Table > Should render correctly with selectDisabled as a string 1`] = `
gap: 0.5rem;
}
-.emotion-7 {
+.emotion-9 {
color: #3f4250;
font-size: 0.875rem;
font-family: Inter,Asap,sans-serif;
@@ -2857,399 +3036,463 @@ exports[`Table > Should render correctly with selectDisabled as a string 1`] = `
gap: 0.5rem;
}
-.emotion-29 {
+.emotion-31 {
-webkit-animation: 3s linear;
animation: 3s linear;
}
-.emotion-29 {
+.emotion-31 td:nth-of-type(1) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(2) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(3) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(4) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(5) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 {
-webkit-animation: 3s linear;
animation: 3s linear;
}
-.emotion-31 {
- display: table-cell;
- vertical-align: middle;
- padding: 0.5rem;
- font-size: 0.875rem;
- text-align: left;
+.emotion-31 td:nth-of-type(1) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
}
-.emotion-31 {
- display: table-cell;
- vertical-align: middle;
- padding: 0.5rem;
- font-size: 0.875rem;
- text-align: left;
+.emotion-31 td:nth-of-type(2) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
}
-
-
-
+
+
-
-
-
- Column 1
-
- |
-
-
+ Column 1
+
+ |
+
- Column 2
-
- |
-
-
+ Column 2
+
+ |
+
- Column 3
-
- |
-
-
+ Column 3
+
+ |
+
- Column 4
-
- |
-
-
- Column 5
-
- |
-
-
-
-
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
+ Column 4
+
+
+ |
+
+ Column 5
+
+ |
+
+
+
+
- Row 1 Column 5
-
-
-
-
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
- Row 2 Column 1
-
-
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
- Row 2 Column 2
-
-
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
- Row 2 Column 3
-
-
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
- Row 2 Column 4
-
-
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
- Row 2 Column 5
-
-
-
-
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 3 Column 1
-
-
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 3 Column 2
-
-
- Row 3 Column 3
- |
-
- Row 3 Column 4
- |
-
- Row 3 Column 5
- |
-
-
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
- Row 8 Column 5
- |
-
-
-
- Row 9 Column 1
- |
-
- Row 9 Column 2
- |
-
- Row 9 Column 3
- |
-
- Row 9 Column 4
- |
-
- Row 9 Column 5
- |
-
-
-
- Row 10 Column 1
- |
-
- Row 10 Column 2
- |
-
- Row 10 Column 3
- |
-
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 10 Column 4
-
-
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 10 Column 5
-
-
-
-
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
`;
@@ -3257,47 +3500,57 @@ exports[`Table > Should render correctly with selectDisabled as a string 1`] = `
exports[`Table > Should render correctly with selectable and shift click 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
border-collapse: collapse;
}
-.emotion-0 [role="row"],
-.emotion-0 [role="button row"] {
+.emotion-2 [role="row"],
+.emotion-2 [role="button row"] {
width: 100%;
display: table-row;
vertical-align: middle;
}
-.emotion-0 {
+.emotion-2 {
width: 100%;
box-sizing: content-box;
border-collapse: collapse;
}
-.emotion-0 [role="row"],
-.emotion-0 [role="button row"] {
+.emotion-2 [role="row"],
+.emotion-2 [role="button row"] {
width: 100%;
display: table-row;
vertical-align: middle;
}
-.emotion-2 {
+.emotion-4 {
border-bottom: 1px solid #d9dadd;
}
-.emotion-2 {
+.emotion-4 {
border-bottom: 1px solid #d9dadd;
}
-.emotion-4 {
+.emotion-6 {
max-width: 2.5rem;
display: table-cell;
vertical-align: middle;
padding: 0.5rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -3305,11 +3558,11 @@ exports[`Table > Should render correctly with selectable and shift click 1`] = `
user-select: none;
}
-.emotion-4:first-of-type {
+.emotion-6:first-of-type {
padding-left: 1rem;
}
-.emotion-7 {
+.emotion-9 {
color: #3f4250;
font-size: 0.875rem;
font-family: Inter,Asap,sans-serif;
@@ -3333,7 +3586,7 @@ exports[`Table > Should render correctly with selectable and shift click 1`] = `
gap: 0.5rem;
}
-.emotion-7 {
+.emotion-9 {
color: #3f4250;
font-size: 0.875rem;
font-family: Inter,Asap,sans-serif;
@@ -3357,7 +3610,7 @@ exports[`Table > Should render correctly with selectable and shift click 1`] = `
gap: 0.5rem;
}
-.emotion-9 {
+.emotion-11 {
position: relative;
display: -webkit-inline-box;
display: -webkit-inline-flex;
@@ -3370,65 +3623,65 @@ exports[`Table > Should render correctly with selectable and shift click 1`] = `
gap: 0.5rem;
}
-.emotion-9 .eqr7bqq4 {
+.emotion-11 .eqr7bqq4 {
cursor: pointer;
}
-.emotion-9[aria-disabled='true'] {
+.emotion-11[aria-disabled='true'] {
cursor: not-allowed;
color: #b5b7bd;
}
-.emotion-9[aria-disabled='true'] .eqr7bqq4 {
+.emotion-11[aria-disabled='true'] .eqr7bqq4 {
cursor: not-allowed;
}
-.emotion-9[aria-disabled='true'] .emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-16 {
fill: #e9eaeb;
}
-.emotion-9[aria-disabled='true'] .emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-16 .emotion-18 {
stroke: #d9dadd;
fill: #f3f3f4;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 {
fill: #ffd3e3;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
stroke: #ffd3e3;
fill: #ffd3e3;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #ffebf2;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #ffbbd3;
fill: #ffebf2;
}
-.emotion-9[aria-disabled='true'] .emotion-12:checked+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14:checked+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-9[aria-disabled='true'] .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14:checked+.emotion-16 .emotion-18 {
stroke: #d8c5fc;
fill: #d8c5fc;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
stroke: #e5dbfd;
fill: #e5dbfd;
}
-.emotion-9 .emotion-12:checked+.emotion-14 path {
+.emotion-11 .emotion-14:checked+.emotion-16 path {
transform-origin: center;
-webkit-transition: 200ms -webkit-transform ease-in-out;
transition: 200ms transform ease-in-out;
@@ -3442,60 +3695,60 @@ exports[`Table > Should render correctly with selectable and shift click 1`] = `
transform: translate(2px, 2px);
}
-.emotion-9 .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14:checked+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-9 .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
fill: #e51963;
stroke: #e51963;
}
-.emotion-9 .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-18 {
+.emotion-11 .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-20 {
fill: #ffffff;
}
-.emotion-9 .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #d6175c;
fill: #d6175c;
}
-.emotion-9 .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-11 .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #e51963;
}
-.emotion-9 .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #e51963;
fill: #ffebf2;
}
-.emotion-11 {
+.emotion-13 {
position: absolute;
white-space: nowrap;
height: 1.5rem;
@@ -3504,57 +3757,57 @@ exports[`Table > Should render correctly with selectable and shift click 1`] = `
border-width: 0;
}
-.emotion-11:not(:disabled) {
+.emotion-13:not(:disabled) {
cursor: pointer;
}
-.emotion-11:disabled {
+.emotion-13:disabled {
cursor: not-allowed;
}
-.emotion-11:not(:disabled):checked+.emotion-14,
-.emotion-11:not(:disabled)[aria-checked='mixed']+.emotion-14 {
+.emotion-13:not(:disabled):checked+.emotion-16,
+.emotion-13:not(:disabled)[aria-checked='mixed']+.emotion-16 {
fill: #8c40ef;
}
-.emotion-11:not(:disabled):checked+.emotion-14 .emotion-16,
-.emotion-11:not(:disabled)[aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-13:not(:disabled):checked+.emotion-16 .emotion-18,
+.emotion-13:not(:disabled)[aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #8c40ef;
}
-.emotion-11:not(:disabled)[aria-invalid='true']+.emotion-14,
-.emotion-11:not(:disabled)[aria-invalid='mixed']+.emotion-14 {
+.emotion-13:not(:disabled)[aria-invalid='true']+.emotion-16,
+.emotion-13:not(:disabled)[aria-invalid='mixed']+.emotion-16 {
fill: #ffebf2;
}
-.emotion-11:not(:disabled)[aria-invalid='true']+.emotion-14 .emotion-16,
-.emotion-11:not(:disabled)[aria-invalid='mixed']+.emotion-14 .emotion-16 {
+.emotion-13:not(:disabled)[aria-invalid='true']+.emotion-16 .emotion-18,
+.emotion-13:not(:disabled)[aria-invalid='mixed']+.emotion-16 .emotion-18 {
stroke: #b3144d;
}
-.emotion-11:focus+.emotion-14 {
+.emotion-13:focus+.emotion-16 {
background-color: #f1eefc;
fill: #ffebf2;
outline: 1px solid 0px 0px 0px 3px #8c40ef40;
}
-.emotion-11:focus+.emotion-14 .emotion-16 {
+.emotion-13:focus+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-11[aria-invalid='true']:focus+.emotion-14 {
+.emotion-13[aria-invalid='true']:focus+.emotion-16 {
background-color: #ffebf2;
fill: #ffebf2;
outline: 1px solid 0px 0px 0px 3px #f91b6c40;
}
-.emotion-11[aria-invalid='true']:focus+.emotion-14 .emotion-16 {
+.emotion-13[aria-invalid='true']:focus+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-13 {
+.emotion-15 {
border-radius: 0.25rem;
height: 1.5rem;
width: 1.5rem;
@@ -3562,7 +3815,7 @@ exports[`Table > Should render correctly with selectable and shift click 1`] = `
min-height: 1.5rem;
}
-.emotion-13 path {
+.emotion-15 path {
fill: #ffffff;
-webkit-transform: translate(2px, 2px);
-moz-transform: translate(2px, 2px);
@@ -3574,12 +3827,12 @@ exports[`Table > Should render correctly with selectable and shift click 1`] = `
transform: scale(0);
}
-.emotion-15 {
+.emotion-17 {
fill: #ffffff;
stroke: #d9dadd;
}
-.emotion-19 {
+.emotion-21 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -3605,7 +3858,7 @@ exports[`Table > Should render correctly with selectable and shift click 1`] = `
flex: 1;
}
-.emotion-21 {
+.emotion-23 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -3631,7 +3884,7 @@ exports[`Table > Should render correctly with selectable and shift click 1`] = `
flex: 1;
}
-.emotion-23 {
+.emotion-25 {
width: 100px;
max-width: 200px;
min-width: 100px;
@@ -3640,7 +3893,7 @@ exports[`Table > Should render correctly with selectable and shift click 1`] = `
padding: 0.5rem;
}
-.emotion-23[role*='button'] {
+.emotion-25[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -3648,11 +3901,11 @@ exports[`Table > Should render correctly with selectable and shift click 1`] = `
user-select: none;
}
-.emotion-23:first-of-type {
+.emotion-25:first-of-type {
padding-left: 1rem;
}
-.emotion-23 {
+.emotion-25 {
width: 100px;
max-width: 200px;
min-width: 100px;
@@ -3661,7 +3914,7 @@ exports[`Table > Should render correctly with selectable and shift click 1`] = `
padding: 0.5rem;
}
-.emotion-23[role*='button'] {
+.emotion-25[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -3669,21 +3922,46 @@ exports[`Table > Should render correctly with selectable and shift click 1`] = `
user-select: none;
}
-.emotion-23:first-of-type {
+.emotion-25:first-of-type {
padding-left: 1rem;
}
-.emotion-48 {
+.emotion-50 {
-webkit-animation: 3s linear;
animation: 3s linear;
}
-.emotion-48 {
- -webkit-animation: 3s linear;
- animation: 3s linear;
+.emotion-50 td:nth-of-type(2) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
}
-.emotion-51 {
+.emotion-50 td:nth-of-type(3) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-50 td:nth-of-type(4) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-50 td:nth-of-type(5) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-50 td:nth-of-type(6) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-53 {
display: table-cell;
vertical-align: middle;
padding: 0.5rem;
@@ -3693,11 +3971,11 @@ exports[`Table > Should render correctly with selectable and shift click 1`] = `
max-width: 2.5rem;
}
-.emotion-51:first-of-type {
+.emotion-53:first-of-type {
padding-left: 1rem;
}
-.emotion-53 {
+.emotion-55 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -3705,7 +3983,7 @@ exports[`Table > Should render correctly with selectable and shift click 1`] = `
width: 2.5rem;
}
-.emotion-56 {
+.emotion-58 {
position: relative;
display: -webkit-inline-box;
display: -webkit-inline-flex;
@@ -3718,65 +3996,65 @@ exports[`Table > Should render correctly with selectable and shift click 1`] = `
gap: 0.5rem;
}
-.emotion-56 .eqr7bqq4 {
+.emotion-58 .eqr7bqq4 {
cursor: pointer;
}
-.emotion-56[aria-disabled='true'] {
+.emotion-58[aria-disabled='true'] {
cursor: not-allowed;
color: #b5b7bd;
}
-.emotion-56[aria-disabled='true'] .eqr7bqq4 {
+.emotion-58[aria-disabled='true'] .eqr7bqq4 {
cursor: not-allowed;
}
-.emotion-56[aria-disabled='true'] .emotion-14 {
+.emotion-58[aria-disabled='true'] .emotion-16 {
fill: #e9eaeb;
}
-.emotion-56[aria-disabled='true'] .emotion-14 .emotion-16 {
+.emotion-58[aria-disabled='true'] .emotion-16 .emotion-18 {
stroke: #d9dadd;
fill: #f3f3f4;
}
-.emotion-56[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 {
+.emotion-58[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 {
fill: #ffd3e3;
}
-.emotion-56[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-58[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
stroke: #ffd3e3;
fill: #ffd3e3;
}
-.emotion-56[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-58[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #ffebf2;
}
-.emotion-56[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-58[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #ffbbd3;
fill: #ffebf2;
}
-.emotion-56[aria-disabled='true'] .emotion-12:checked+.emotion-14 {
+.emotion-58[aria-disabled='true'] .emotion-14:checked+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-56[aria-disabled='true'] .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-58[aria-disabled='true'] .emotion-14:checked+.emotion-16 .emotion-18 {
stroke: #d8c5fc;
fill: #d8c5fc;
}
-.emotion-56[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 {
+.emotion-58[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-56[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-58[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
stroke: #e5dbfd;
fill: #e5dbfd;
}
-.emotion-56 .emotion-12:checked+.emotion-14 path {
+.emotion-58 .emotion-14:checked+.emotion-16 path {
transform-origin: center;
-webkit-transition: 200ms -webkit-transform ease-in-out;
transition: 200ms transform ease-in-out;
@@ -3790,60 +4068,60 @@ exports[`Table > Should render correctly with selectable and shift click 1`] = `
transform: translate(2px, 2px);
}
-.emotion-56 .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-58 .emotion-14:checked+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-56 .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-58 .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
fill: #e51963;
stroke: #e51963;
}
-.emotion-56 .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-18 {
+.emotion-58 .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-20 {
fill: #ffffff;
}
-.emotion-56 .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-58 .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-56:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-58:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-56:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-58:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-56:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-58:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-56:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-58:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-56:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-58:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #d6175c;
fill: #d6175c;
}
-.emotion-56 .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-58 .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #e51963;
}
-.emotion-56 .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-58 .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #e51963;
fill: #ffebf2;
}
-.emotion-68 {
+.emotion-70 {
display: table-cell;
vertical-align: middle;
padding: 0.5rem;
@@ -3851,7 +4129,7 @@ exports[`Table > Should render correctly with selectable and shift click 1`] = `
text-align: left;
}
-.emotion-68 {
+.emotion-70 {
display: table-cell;
vertical-align: middle;
padding: 0.5rem;
@@ -3862,1018 +4140,1022 @@ exports[`Table > Should render correctly with selectable and shift click 1`] = `
-
-
-
-
-
-
-
+ class="emotion-8 emotion-9 emotion-10"
+ >
-
- |
-
-
- Column 1
-
- |
-
-
- Column 2
-
- |
-
-
- Column 3
-
- |
-
-
- Column 4
-
- |
-
-
- Column 5
-
- |
-
-
-
-
-
-
+
-
-
-
+ class="emotion-8 emotion-9 emotion-10"
+ >
+ Column 1
-
- | |
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
- Row 1 Column 5
- |
-
-
-
-
+
-
-
-
+ class="emotion-8 emotion-9 emotion-10"
+ >
+ Column 2
-
- | |
-
- Row 2 Column 1
- |
-
- Row 2 Column 2
- |
-
- Row 2 Column 3
- |
-
- Row 2 Column 4
- |
-
- Row 2 Column 5
- |
-
-
-
-
+
-
-
-
+ class="emotion-8 emotion-9 emotion-10"
+ >
+ Column 3
-
- | |
-
- Row 3 Column 1
- |
-
- Row 3 Column 2
- |
-
- Row 3 Column 3
- |
-
- Row 3 Column 4
- |
-
- Row 3 Column 5
- |
-
-
-
-
+
-
-
-
+ class="emotion-8 emotion-9 emotion-10"
+ >
+ Column 4
-
- | |
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
-
+
-
-
-
+ class="emotion-8 emotion-9 emotion-10"
+ >
+ Column 5
-
- | |
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
+ |
+
+
+
-
-
-
+ class="emotion-55 emotion-56"
+ >
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
+ |
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
-
-
-
+ class="emotion-55 emotion-56"
+ >
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
+ |
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
-
-
-
+ class="emotion-55 emotion-56"
+ >
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
- Row 8 Column 5
- |
-
-
-
+ |
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
-
-
-
+ class="emotion-55 emotion-56"
+ >
-
-
-
- Row 9 Column 1
- |
-
- Row 9 Column 2
- |
-
- Row 9 Column 3
- |
-
- Row 9 Column 4
- |
-
- Row 9 Column 5
- |
-
-
-
+ |
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
-
+
+
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
+
+
-
- |
-
- Row 10 Column 1
- |
-
+ |
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 10 Column 2
-
-
+
+ |
+
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 10 Column 3
-
-
+
+ |
+
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 10 Column 4
-
-
+
+ |
+
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 10 Column 5
-
-
-
-
+
+
+ |
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
`;
@@ -4881,47 +5163,57 @@ exports[`Table > Should render correctly with selectable and shift click 1`] = `
exports[`Table > Should render correctly with selectable then click on first row then uncheck all, then check all 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
border-collapse: collapse;
}
-.emotion-0 [role="row"],
-.emotion-0 [role="button row"] {
+.emotion-2 [role="row"],
+.emotion-2 [role="button row"] {
width: 100%;
display: table-row;
vertical-align: middle;
}
-.emotion-0 {
+.emotion-2 {
width: 100%;
box-sizing: content-box;
border-collapse: collapse;
}
-.emotion-0 [role="row"],
-.emotion-0 [role="button row"] {
+.emotion-2 [role="row"],
+.emotion-2 [role="button row"] {
width: 100%;
display: table-row;
vertical-align: middle;
}
-.emotion-2 {
+.emotion-4 {
border-bottom: 1px solid #d9dadd;
}
-.emotion-2 {
+.emotion-4 {
border-bottom: 1px solid #d9dadd;
}
-.emotion-4 {
+.emotion-6 {
max-width: 2.5rem;
display: table-cell;
vertical-align: middle;
padding: 0.5rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -4929,11 +5221,11 @@ exports[`Table > Should render correctly with selectable then click on first row
user-select: none;
}
-.emotion-4:first-of-type {
+.emotion-6:first-of-type {
padding-left: 1rem;
}
-.emotion-7 {
+.emotion-9 {
color: #3f4250;
font-size: 0.875rem;
font-family: Inter,Asap,sans-serif;
@@ -4957,7 +5249,7 @@ exports[`Table > Should render correctly with selectable then click on first row
gap: 0.5rem;
}
-.emotion-7 {
+.emotion-9 {
color: #3f4250;
font-size: 0.875rem;
font-family: Inter,Asap,sans-serif;
@@ -4981,7 +5273,7 @@ exports[`Table > Should render correctly with selectable then click on first row
gap: 0.5rem;
}
-.emotion-9 {
+.emotion-11 {
position: relative;
display: -webkit-inline-box;
display: -webkit-inline-flex;
@@ -4994,65 +5286,65 @@ exports[`Table > Should render correctly with selectable then click on first row
gap: 0.5rem;
}
-.emotion-9 .eqr7bqq4 {
+.emotion-11 .eqr7bqq4 {
cursor: pointer;
}
-.emotion-9[aria-disabled='true'] {
+.emotion-11[aria-disabled='true'] {
cursor: not-allowed;
color: #b5b7bd;
}
-.emotion-9[aria-disabled='true'] .eqr7bqq4 {
+.emotion-11[aria-disabled='true'] .eqr7bqq4 {
cursor: not-allowed;
}
-.emotion-9[aria-disabled='true'] .emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-16 {
fill: #e9eaeb;
}
-.emotion-9[aria-disabled='true'] .emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-16 .emotion-18 {
stroke: #d9dadd;
fill: #f3f3f4;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 {
fill: #ffd3e3;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
stroke: #ffd3e3;
fill: #ffd3e3;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #ffebf2;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #ffbbd3;
fill: #ffebf2;
}
-.emotion-9[aria-disabled='true'] .emotion-12:checked+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14:checked+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-9[aria-disabled='true'] .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14:checked+.emotion-16 .emotion-18 {
stroke: #d8c5fc;
fill: #d8c5fc;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-9[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-11[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
stroke: #e5dbfd;
fill: #e5dbfd;
}
-.emotion-9 .emotion-12:checked+.emotion-14 path {
+.emotion-11 .emotion-14:checked+.emotion-16 path {
transform-origin: center;
-webkit-transition: 200ms -webkit-transform ease-in-out;
transition: 200ms transform ease-in-out;
@@ -5066,60 +5358,60 @@ exports[`Table > Should render correctly with selectable then click on first row
transform: translate(2px, 2px);
}
-.emotion-9 .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14:checked+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-9 .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
fill: #e51963;
stroke: #e51963;
}
-.emotion-9 .emotion-12[aria-checked="mixed"]+.emotion-14 .eqr7bqq6 {
+.emotion-11 .emotion-14[aria-checked="mixed"]+.emotion-16 .eqr7bqq6 {
fill: #ffffff;
}
-.emotion-9 .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-9:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-11:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #d6175c;
fill: #d6175c;
}
-.emotion-9 .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-11 .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #e51963;
}
-.emotion-9 .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-11 .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #e51963;
fill: #ffebf2;
}
-.emotion-11 {
+.emotion-13 {
position: absolute;
white-space: nowrap;
height: 1.5rem;
@@ -5128,57 +5420,57 @@ exports[`Table > Should render correctly with selectable then click on first row
border-width: 0;
}
-.emotion-11:not(:disabled) {
+.emotion-13:not(:disabled) {
cursor: pointer;
}
-.emotion-11:disabled {
+.emotion-13:disabled {
cursor: not-allowed;
}
-.emotion-11:not(:disabled):checked+.emotion-14,
-.emotion-11:not(:disabled)[aria-checked='mixed']+.emotion-14 {
+.emotion-13:not(:disabled):checked+.emotion-16,
+.emotion-13:not(:disabled)[aria-checked='mixed']+.emotion-16 {
fill: #8c40ef;
}
-.emotion-11:not(:disabled):checked+.emotion-14 .emotion-16,
-.emotion-11:not(:disabled)[aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-13:not(:disabled):checked+.emotion-16 .emotion-18,
+.emotion-13:not(:disabled)[aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #8c40ef;
}
-.emotion-11:not(:disabled)[aria-invalid='true']+.emotion-14,
-.emotion-11:not(:disabled)[aria-invalid='mixed']+.emotion-14 {
+.emotion-13:not(:disabled)[aria-invalid='true']+.emotion-16,
+.emotion-13:not(:disabled)[aria-invalid='mixed']+.emotion-16 {
fill: #ffebf2;
}
-.emotion-11:not(:disabled)[aria-invalid='true']+.emotion-14 .emotion-16,
-.emotion-11:not(:disabled)[aria-invalid='mixed']+.emotion-14 .emotion-16 {
+.emotion-13:not(:disabled)[aria-invalid='true']+.emotion-16 .emotion-18,
+.emotion-13:not(:disabled)[aria-invalid='mixed']+.emotion-16 .emotion-18 {
stroke: #b3144d;
}
-.emotion-11:focus+.emotion-14 {
+.emotion-13:focus+.emotion-16 {
background-color: #f1eefc;
fill: #ffebf2;
outline: 1px solid 0px 0px 0px 3px #8c40ef40;
}
-.emotion-11:focus+.emotion-14 .emotion-16 {
+.emotion-13:focus+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-11[aria-invalid='true']:focus+.emotion-14 {
+.emotion-13[aria-invalid='true']:focus+.emotion-16 {
background-color: #ffebf2;
fill: #ffebf2;
outline: 1px solid 0px 0px 0px 3px #f91b6c40;
}
-.emotion-11[aria-invalid='true']:focus+.emotion-14 .emotion-16 {
+.emotion-13[aria-invalid='true']:focus+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-13 {
+.emotion-15 {
border-radius: 0.25rem;
height: 1.5rem;
width: 1.5rem;
@@ -5186,7 +5478,7 @@ exports[`Table > Should render correctly with selectable then click on first row
min-height: 1.5rem;
}
-.emotion-13 path {
+.emotion-15 path {
fill: #ffffff;
-webkit-transform: translate(2px, 2px);
-moz-transform: translate(2px, 2px);
@@ -5198,12 +5490,12 @@ exports[`Table > Should render correctly with selectable then click on first row
transform: scale(0);
}
-.emotion-15 {
+.emotion-17 {
fill: #ffffff;
stroke: #d9dadd;
}
-.emotion-17 {
+.emotion-19 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -5229,7 +5521,7 @@ exports[`Table > Should render correctly with selectable then click on first row
flex: 1;
}
-.emotion-19 {
+.emotion-21 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -5255,7 +5547,7 @@ exports[`Table > Should render correctly with selectable then click on first row
flex: 1;
}
-.emotion-21 {
+.emotion-23 {
width: 100px;
max-width: 200px;
min-width: 100px;
@@ -5264,7 +5556,7 @@ exports[`Table > Should render correctly with selectable then click on first row
padding: 0.5rem;
}
-.emotion-21[role*='button'] {
+.emotion-23[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -5272,11 +5564,11 @@ exports[`Table > Should render correctly with selectable then click on first row
user-select: none;
}
-.emotion-21:first-of-type {
+.emotion-23:first-of-type {
padding-left: 1rem;
}
-.emotion-21 {
+.emotion-23 {
width: 100px;
max-width: 200px;
min-width: 100px;
@@ -5285,7 +5577,7 @@ exports[`Table > Should render correctly with selectable then click on first row
padding: 0.5rem;
}
-.emotion-21[role*='button'] {
+.emotion-23[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -5293,21 +5585,46 @@ exports[`Table > Should render correctly with selectable then click on first row
user-select: none;
}
-.emotion-21:first-of-type {
+.emotion-23:first-of-type {
padding-left: 1rem;
}
-.emotion-46 {
+.emotion-48 {
-webkit-animation: 3s linear;
animation: 3s linear;
}
-.emotion-46 {
- -webkit-animation: 3s linear;
- animation: 3s linear;
+.emotion-48 td:nth-of-type(2) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-48 td:nth-of-type(3) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-48 td:nth-of-type(4) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-48 td:nth-of-type(5) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-48 td:nth-of-type(6) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
}
-.emotion-49 {
+.emotion-51 {
display: table-cell;
vertical-align: middle;
padding: 0.5rem;
@@ -5317,11 +5634,11 @@ exports[`Table > Should render correctly with selectable then click on first row
max-width: 2.5rem;
}
-.emotion-49:first-of-type {
+.emotion-51:first-of-type {
padding-left: 1rem;
}
-.emotion-51 {
+.emotion-53 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -5329,7 +5646,7 @@ exports[`Table > Should render correctly with selectable then click on first row
width: 2.5rem;
}
-.emotion-54 {
+.emotion-56 {
position: relative;
display: -webkit-inline-box;
display: -webkit-inline-flex;
@@ -5342,65 +5659,65 @@ exports[`Table > Should render correctly with selectable then click on first row
gap: 0.5rem;
}
-.emotion-54 .eqr7bqq4 {
+.emotion-56 .eqr7bqq4 {
cursor: pointer;
}
-.emotion-54[aria-disabled='true'] {
+.emotion-56[aria-disabled='true'] {
cursor: not-allowed;
color: #b5b7bd;
}
-.emotion-54[aria-disabled='true'] .eqr7bqq4 {
+.emotion-56[aria-disabled='true'] .eqr7bqq4 {
cursor: not-allowed;
}
-.emotion-54[aria-disabled='true'] .emotion-14 {
+.emotion-56[aria-disabled='true'] .emotion-16 {
fill: #e9eaeb;
}
-.emotion-54[aria-disabled='true'] .emotion-14 .emotion-16 {
+.emotion-56[aria-disabled='true'] .emotion-16 .emotion-18 {
stroke: #d9dadd;
fill: #f3f3f4;
}
-.emotion-54[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 {
+.emotion-56[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 {
fill: #ffd3e3;
}
-.emotion-54[aria-disabled='true'] .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-56[aria-disabled='true'] .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
stroke: #ffd3e3;
fill: #ffd3e3;
}
-.emotion-54[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-56[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #ffebf2;
}
-.emotion-54[aria-disabled='true'] .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-56[aria-disabled='true'] .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #ffbbd3;
fill: #ffebf2;
}
-.emotion-54[aria-disabled='true'] .emotion-12:checked+.emotion-14 {
+.emotion-56[aria-disabled='true'] .emotion-14:checked+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-54[aria-disabled='true'] .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-56[aria-disabled='true'] .emotion-14:checked+.emotion-16 .emotion-18 {
stroke: #d8c5fc;
fill: #d8c5fc;
}
-.emotion-54[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 {
+.emotion-56[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 {
fill: #e5dbfd;
}
-.emotion-54[aria-disabled='true'] .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-56[aria-disabled='true'] .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
stroke: #e5dbfd;
fill: #e5dbfd;
}
-.emotion-54 .emotion-12:checked+.emotion-14 path {
+.emotion-56 .emotion-14:checked+.emotion-16 path {
transform-origin: center;
-webkit-transition: 200ms -webkit-transform ease-in-out;
transition: 200ms transform ease-in-out;
@@ -5414,60 +5731,60 @@ exports[`Table > Should render correctly with selectable then click on first row
transform: translate(2px, 2px);
}
-.emotion-54 .emotion-12:checked+.emotion-14 .emotion-16 {
+.emotion-56 .emotion-14:checked+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-54 .emotion-12[aria-invalid="true"]:checked+.emotion-14 .emotion-16 {
+.emotion-56 .emotion-14[aria-invalid="true"]:checked+.emotion-16 .emotion-18 {
fill: #e51963;
stroke: #e51963;
}
-.emotion-54 .emotion-12[aria-checked="mixed"]+.emotion-14 .eqr7bqq6 {
+.emotion-56 .emotion-14[aria-checked="mixed"]+.emotion-16 .eqr7bqq6 {
fill: #ffffff;
}
-.emotion-54 .emotion-12[aria-checked="mixed"]+.emotion-14 .emotion-16 {
+.emotion-56 .emotion-14[aria-checked="mixed"]+.emotion-16 .emotion-18 {
fill: #8c40ef;
stroke: #8c40ef;
}
-.emotion-54:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-56:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #e5dbfd;
}
-.emotion-54:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-56:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-54:hover[aria-disabled='false'] .emotion-12[aria-invalid='false'][aria-checked='mixed']+.emotion-14 .emotion-16 {
+.emotion-56:hover[aria-disabled='false'] .emotion-14[aria-invalid='false'][aria-checked='mixed']+.emotion-16 .emotion-18 {
stroke: #792dd4;
fill: #792dd4;
}
-.emotion-54:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='false']+.emotion-14 .emotion-16 {
+.emotion-56:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='false']+.emotion-16 .emotion-18 {
stroke: #92103f;
fill: #ffd3e3;
}
-.emotion-54:hover[aria-disabled='false'] .emotion-12[aria-invalid='true'][aria-checked='true']+.emotion-14 .emotion-16 {
+.emotion-56:hover[aria-disabled='false'] .emotion-14[aria-invalid='true'][aria-checked='true']+.emotion-16 .emotion-18 {
stroke: #d6175c;
fill: #d6175c;
}
-.emotion-54 .emotion-12[aria-invalid="true"]+.emotion-14 {
+.emotion-56 .emotion-14[aria-invalid="true"]+.emotion-16 {
fill: #e51963;
}
-.emotion-54 .emotion-12[aria-invalid="true"]+.emotion-14 .emotion-16 {
+.emotion-56 .emotion-14[aria-invalid="true"]+.emotion-16 .emotion-18 {
stroke: #e51963;
fill: #ffebf2;
}
-.emotion-66 {
+.emotion-68 {
display: table-cell;
vertical-align: middle;
padding: 0.5rem;
@@ -5475,7 +5792,7 @@ exports[`Table > Should render correctly with selectable then click on first row
text-align: left;
}
-.emotion-66 {
+.emotion-68 {
display: table-cell;
vertical-align: middle;
padding: 0.5rem;
@@ -5486,1061 +5803,1075 @@ exports[`Table > Should render correctly with selectable then click on first row
-
-
-
-
-
-
-
+ class="emotion-8 emotion-9 emotion-10"
+ >
-
- |
-
-
- Column 1
-
- |
-
-
- Column 2
-
- |
-
-
- Column 3
-
- |
-
-
- Column 4
-
- |
-
-
- Column 5
-
- |
-
-
-
-
-
-
+
-
-
-
+ class="emotion-8 emotion-9 emotion-10"
+ >
+ Column 1
-
- | |
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
- Row 1 Column 5
- |
-
-
-
-
+
-
-
-
+ class="emotion-8 emotion-9 emotion-10"
+ >
+ Column 2
-
- | |
-
- Row 2 Column 1
- |
-
- Row 2 Column 2
- |
-
- Row 2 Column 3
- |
-
- Row 2 Column 4
- |
-
- Row 2 Column 5
- |
-
-
-
+ |
+
+ Column 3
+
+ |
+
+
+ Column 4
+
+ |
+
+
+ Column 5
+
+ |
+
+
+
+
-
-
-
+ class="emotion-53 emotion-54"
+ >
-
-
-
- Row 3 Column 1
- |
-
- Row 3 Column 2
- |
-
- Row 3 Column 3
- |
-
- Row 3 Column 4
- |
-
- Row 3 Column 5
- |
-
-
-
+ |
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
-
-
-
+ class="emotion-53 emotion-54"
+ >
-
-
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
+ |
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
-
-
-
+ class="emotion-53 emotion-54"
+ >
-
-
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
+ |
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
-
-
-
+ class="emotion-53 emotion-54"
+ >
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
+ |
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
-
-
-
+ class="emotion-53 emotion-54"
+ >
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
+ |
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
-
-
-
+ class="emotion-53 emotion-54"
+ >
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
- Row 8 Column 5
- |
-
-
-
+ |
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
-
-
-
+ class="emotion-53 emotion-54"
+ >
-
-
-
- Row 9 Column 1
- |
-
- Row 9 Column 2
- |
-
- Row 9 Column 3
- |
-
- Row 9 Column 4
- |
-
- Row 9 Column 5
- |
-
-
-
+ |
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
-
+
+
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
+
+
-
- |
-
- Row 10 Column 1
- |
-
- Row 10 Column 2
- |
-
- Row 10 Column 3
- |
-
- Row 10 Column 4
- |
-
- Row 10 Column 5
- |
-
-
-
-
-
-`;
-
-exports[`Table > Should render correctly with sort then click 1`] = `
-
- .emotion-0 {
+
+
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
+
+
+ |
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
+
+
+`;
+
+exports[`Table > Should render correctly with sort then click 1`] = `
+
+ .emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
border-collapse: collapse;
}
-.emotion-0 [role="row"],
-.emotion-0 [role="button row"] {
+.emotion-2 [role="row"],
+.emotion-2 [role="button row"] {
width: 100%;
display: table-row;
vertical-align: middle;
}
-.emotion-0 {
+.emotion-2 {
width: 100%;
box-sizing: content-box;
border-collapse: collapse;
}
-.emotion-0 [role="row"],
-.emotion-0 [role="button row"] {
+.emotion-2 [role="row"],
+.emotion-2 [role="button row"] {
width: 100%;
display: table-row;
vertical-align: middle;
}
-.emotion-2 {
+.emotion-4 {
border-bottom: 1px solid #d9dadd;
}
-.emotion-2 {
+.emotion-4 {
border-bottom: 1px solid #d9dadd;
}
-.emotion-4 {
+.emotion-6 {
width: 100px;
max-width: 200px;
min-width: 100px;
@@ -6549,7 +6880,7 @@ exports[`Table > Should render correctly with sort then click 1`] = `
padding: 0.5rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -6557,11 +6888,11 @@ exports[`Table > Should render correctly with sort then click 1`] = `
user-select: none;
}
-.emotion-4:first-of-type {
+.emotion-6:first-of-type {
padding-left: 1rem;
}
-.emotion-4 {
+.emotion-6 {
width: 100px;
max-width: 200px;
min-width: 100px;
@@ -6570,7 +6901,7 @@ exports[`Table > Should render correctly with sort then click 1`] = `
padding: 0.5rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -6578,11 +6909,11 @@ exports[`Table > Should render correctly with sort then click 1`] = `
user-select: none;
}
-.emotion-4:first-of-type {
+.emotion-6:first-of-type {
padding-left: 1rem;
}
-.emotion-7 {
+.emotion-9 {
color: #3f4250;
font-size: 0.875rem;
font-family: Inter,Asap,sans-serif;
@@ -6606,7 +6937,7 @@ exports[`Table > Should render correctly with sort then click 1`] = `
gap: 0.5rem;
}
-.emotion-7 {
+.emotion-9 {
color: #3f4250;
font-size: 0.875rem;
font-family: Inter,Asap,sans-serif;
@@ -6630,7 +6961,7 @@ exports[`Table > Should render correctly with sort then click 1`] = `
gap: 0.5rem;
}
-.emotion-9 {
+.emotion-11 {
vertical-align: middle;
fill: #3f4250;
height: 1em;
@@ -6639,12 +6970,12 @@ exports[`Table > Should render correctly with sort then click 1`] = `
min-height: 1em;
}
-.emotion-9 .fillStroke {
+.emotion-11 .fillStroke {
stroke: #3f4250;
fill: none;
}
-.emotion-14 {
+.emotion-16 {
color: #641cb3;
font-size: 0.875rem;
font-family: Inter,Asap,sans-serif;
@@ -6668,7 +6999,7 @@ exports[`Table > Should render correctly with sort then click 1`] = `
gap: 0.5rem;
}
-.emotion-17 {
+.emotion-19 {
vertical-align: middle;
fill: #641cb3;
height: 1em;
@@ -6683,22 +7014,82 @@ exports[`Table > Should render correctly with sort then click 1`] = `
transition: transform 0.2s;
}
-.emotion-17 .fillStroke {
+.emotion-19 .fillStroke {
stroke: #641cb3;
fill: none;
}
-.emotion-40 {
+.emotion-42 {
-webkit-animation: 3s linear;
animation: 3s linear;
}
-.emotion-40 {
+.emotion-42 td:nth-of-type(1) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-42 td:nth-of-type(2) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-42 td:nth-of-type(3) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-42 td:nth-of-type(4) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-42 td:nth-of-type(5) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-42 {
-webkit-animation: 3s linear;
animation: 3s linear;
}
-.emotion-42 {
+.emotion-42 td:nth-of-type(1) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-42 td:nth-of-type(2) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-42 td:nth-of-type(3) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-42 td:nth-of-type(4) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-42 td:nth-of-type(5) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-44 {
display: table-cell;
vertical-align: middle;
padding: 0.5rem;
@@ -6706,7 +7097,7 @@ exports[`Table > Should render correctly with sort then click 1`] = `
text-align: left;
}
-.emotion-42 {
+.emotion-44 {
display: table-cell;
vertical-align: middle;
padding: 0.5rem;
@@ -6718,445 +7109,449 @@ exports[`Table > Should render correctly with sort then click 1`] = `
data-testid="testing"
>
-
-
-
-
-
- |
-
-
+ |
+
- Column 2
-
-
- |
-
-
+ |
+
- Column 3
-
-
- |
-
-
+ |
+
- Column 4
-
-
- |
-
-
+ |
+
- Column 5
-
-
- |
-
-
-
-
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
- Row 1 Column 5
- |
-
-
-
- Row 2 Column 1
- |
-
- Row 2 Column 2
- |
-
- Row 2 Column 3
- |
-
- Row 2 Column 4
- |
-
- Row 2 Column 5
- |
-
-
-
- Row 3 Column 1
- |
-
- Row 3 Column 2
- |
-
- Row 3 Column 3
- |
-
- Row 3 Column 4
- |
-
- Row 3 Column 5
- |
-
-
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
- Row 8 Column 5
- |
-
-
-
+
+
+
+
+
+ |
+
+
+
- Row 9 Column 1
-
-
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
- Row 9 Column 2
-
-
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
- Row 9 Column 3
-
-
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
- Row 9 Column 4
-
-
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
- Row 9 Column 5
-
-
-
-
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
- Row 10 Column 1
-
-
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 10 Column 2
-
-
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 10 Column 3
-
-
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 10 Column 4
-
-
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 10 Column 5
-
-
-
-
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
@@ -7165,35 +7560,45 @@ exports[`Table > Should render correctly with sort then click 1`] = `
exports[`Table > Should render correctly with stipped 1`] = `
.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-0 {
+ min-width: 100%;
+ overflow-x: scroll;
+}
+
+.emotion-2 {
width: 100%;
box-sizing: content-box;
border-collapse: collapse;
}
-.emotion-0 [role="row"],
-.emotion-0 [role="button row"] {
+.emotion-2 [role="row"],
+.emotion-2 [role="button row"] {
width: 100%;
display: table-row;
vertical-align: middle;
}
-.emotion-0 tbody tr:nth-of-type(even) {
+.emotion-2 tbody tr:nth-of-type(even) {
background: #f9f9fa;
}
-.emotion-0 tbody tr {
+.emotion-2 tbody tr {
border-bottom: 1px solid #e9eaeb;
}
-.emotion-2 {
+.emotion-4 {
border-bottom: 1px solid #d9dadd;
}
-.emotion-2 {
+.emotion-4 {
border-bottom: 1px solid #d9dadd;
}
-.emotion-4 {
+.emotion-6 {
width: 100px;
max-width: 200px;
min-width: 100px;
@@ -7202,7 +7607,7 @@ exports[`Table > Should render correctly with stipped 1`] = `
padding: 0.5rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -7210,11 +7615,11 @@ exports[`Table > Should render correctly with stipped 1`] = `
user-select: none;
}
-.emotion-4:first-of-type {
+.emotion-6:first-of-type {
padding-left: 1rem;
}
-.emotion-4 {
+.emotion-6 {
width: 100px;
max-width: 200px;
min-width: 100px;
@@ -7223,7 +7628,7 @@ exports[`Table > Should render correctly with stipped 1`] = `
padding: 0.5rem;
}
-.emotion-4[role*='button'] {
+.emotion-6[role*='button'] {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -7231,11 +7636,11 @@ exports[`Table > Should render correctly with stipped 1`] = `
user-select: none;
}
-.emotion-4:first-of-type {
+.emotion-6:first-of-type {
padding-left: 1rem;
}
-.emotion-7 {
+.emotion-9 {
color: #3f4250;
font-size: 0.875rem;
font-family: Inter,Asap,sans-serif;
@@ -7259,7 +7664,7 @@ exports[`Table > Should render correctly with stipped 1`] = `
gap: 0.5rem;
}
-.emotion-7 {
+.emotion-9 {
color: #3f4250;
font-size: 0.875rem;
font-family: Inter,Asap,sans-serif;
@@ -7283,17 +7688,77 @@ exports[`Table > Should render correctly with stipped 1`] = `
gap: 0.5rem;
}
-.emotion-29 {
+.emotion-31 {
-webkit-animation: 3s linear;
animation: 3s linear;
}
-.emotion-29 {
+.emotion-31 td:nth-of-type(1) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(2) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(3) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(4) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(5) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 {
-webkit-animation: 3s linear;
animation: 3s linear;
}
-.emotion-31 {
+.emotion-31 td:nth-of-type(1) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(2) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(3) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(4) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-31 td:nth-of-type(5) {
+ width: 100px;
+ min-width: 100px;
+ max-width: 200px;
+}
+
+.emotion-33 {
display: table-cell;
vertical-align: middle;
padding: 0.5rem;
@@ -7301,7 +7766,7 @@ exports[`Table > Should render correctly with stipped 1`] = `
text-align: left;
}
-.emotion-31 {
+.emotion-33 {
display: table-cell;
vertical-align: middle;
padding: 0.5rem;
@@ -7312,370 +7777,374 @@ exports[`Table > Should render correctly with stipped 1`] = `
-
-
-
-
-
- Column 1
-
- |
-
-
- Column 2
-
- |
-
-
+ Column 1
+
+ |
+
- Column 3
-
- |
-
-
+ Column 2
+
+ |
+
- Column 4
-
- |
-
-
- Column 5
-
- |
-
-
-
-
-
- Row 1 Column 1
- |
-
- Row 1 Column 2
- |
-
- Row 1 Column 3
- |
-
- Row 1 Column 4
- |
-
- Row 1 Column 5
- |
-
-
-
- Row 2 Column 1
- |
-
- Row 2 Column 2
- |
-
- Row 2 Column 3
- |
-
- Row 2 Column 4
- |
-
- Row 2 Column 5
- |
-
-
-
- Row 3 Column 1
- |
-
- Row 3 Column 2
- |
-
- Row 3 Column 3
- |
-
- Row 3 Column 4
- |
-
- Row 3 Column 5
- |
-
-
-
- Row 4 Column 1
- |
-
- Row 4 Column 2
- |
-
- Row 4 Column 3
- |
-
- Row 4 Column 4
- |
-
- Row 4 Column 5
- |
-
-
-
- Row 5 Column 1
- |
-
- Row 5 Column 2
- |
-
- Row 5 Column 3
- |
-
- Row 5 Column 4
- |
-
- Row 5 Column 5
- |
-
-
-
- Row 6 Column 1
- |
-
- Row 6 Column 2
- |
-
- Row 6 Column 3
- |
-
- Row 6 Column 4
- |
-
- Row 6 Column 5
- |
-
-
-
- Row 7 Column 1
- |
-
- Row 7 Column 2
- |
-
- Row 7 Column 3
- |
-
- Row 7 Column 4
- |
-
- Row 7 Column 5
- |
-
-
-
- Row 8 Column 1
- |
-
- Row 8 Column 2
- |
-
- Row 8 Column 3
- |
-
- Row 8 Column 4
- |
-
- Row 8 Column 5
- |
-
-
-
+ Column 3
+
+
+ |
+
+ Column 4
+
+ |
+
+
+ Column 5
+
+ |
+
+
+
+
- Row 9 Column 1
-
-
+ Row 1 Column 1
+ |
+
+ Row 1 Column 2
+ |
+
+ Row 1 Column 3
+ |
+
+ Row 1 Column 4
+ |
+
+ Row 1 Column 5
+ |
+
+
- Row 9 Column 2
-
-
+ Row 2 Column 1
+ |
+
+ Row 2 Column 2
+ |
+
+ Row 2 Column 3
+ |
+
+ Row 2 Column 4
+ |
+
+ Row 2 Column 5
+ |
+
+
- Row 9 Column 3
-
-
+ Row 3 Column 1
+ |
+
+ Row 3 Column 2
+ |
+
+ Row 3 Column 3
+ |
+
+ Row 3 Column 4
+ |
+
+ Row 3 Column 5
+ |
+
+
- Row 9 Column 4
-
-
+ Row 4 Column 1
+ |
+
+ Row 4 Column 2
+ |
+
+ Row 4 Column 3
+ |
+
+ Row 4 Column 4
+ |
+
+ Row 4 Column 5
+ |
+
+
- Row 9 Column 5
-
-
-
-
+ Row 5 Column 1
+ |
+
+ Row 5 Column 2
+ |
+
+ Row 5 Column 3
+ |
+
+ Row 5 Column 4
+ |
+
+ Row 5 Column 5
+ |
+
+
- Row 10 Column 1
-
-
+ Row 6 Column 1
+ |
+
+ Row 6 Column 2
+ |
+
+ Row 6 Column 3
+ |
+
+ Row 6 Column 4
+ |
+
+ Row 6 Column 5
+ |
+
+
- Row 10 Column 2
-
-
+ Row 7 Column 1
+ |
+
+ Row 7 Column 2
+ |
+
+ Row 7 Column 3
+ |
+
+ Row 7 Column 4
+ |
+
+ Row 7 Column 5
+ |
+
+
- Row 10 Column 3
-
-
+ Row 8 Column 1
+ |
+
+ Row 8 Column 2
+ |
+
+ Row 8 Column 3
+ |
+
+ Row 8 Column 4
+ |
+
+ Row 8 Column 5
+ |
+
+
- Row 10 Column 4
-
-
+ Row 9 Column 1
+ |
+
+ Row 9 Column 2
+ |
+
+ Row 9 Column 3
+ |
+
+ Row 9 Column 4
+ |
+
+ Row 9 Column 5
+ |
+
+
- Row 10 Column 5
-
-
-
-
+
+ Row 10 Column 1
+ |
+
+ Row 10 Column 2
+ |
+
+ Row 10 Column 3
+ |
+
+ Row 10 Column 4
+ |
+
+ Row 10 Column 5
+ |
+
+
+
+
`;
diff --git a/packages/ui/src/components/Table/index.tsx b/packages/ui/src/components/Table/index.tsx
index db6a80dd82..fea30a0bb4 100644
--- a/packages/ui/src/components/Table/index.tsx
+++ b/packages/ui/src/components/Table/index.tsx
@@ -1,6 +1,6 @@
import { useTheme } from '@emotion/react'
import styled from '@emotion/styled'
-import type { ComponentProps, ReactNode } from 'react'
+import type { ReactNode } from 'react'
import { forwardRef } from 'react'
import { Body } from './Body'
import { Cell } from './Cell'
@@ -12,12 +12,19 @@ import { SelectBar } from './SelectBar'
import { SkeletonRows } from './SkeletonRows'
import { TableProvider, useTableContext } from './TableContext'
import { EXPANDABLE_COLUMN_SIZE, SELECTABLE_CHECKBOX_SIZE } from './constants'
+import type { ColumnProps } from './types'
+
+const TableContainer = styled.div`
+ min-width: 100%;
+ overflow-x: scroll;
+`
type StyledTableProps = {
stripped: boolean
bordered: boolean
template: string
}
+
const StyledTable = styled('table', {
shouldForwardProp: prop =>
!['bordered', 'stripped', 'template'].includes(prop),
@@ -52,18 +59,6 @@ const StyledTable = styled('table', {
`}
`
-type ColumnProps = Pick<
- ComponentProps,
- 'isOrdered' | 'onOrder' | 'orderDirection'
-> & {
- label?: ReactNode
- width?: string
- minWidth?: string
- maxWidth?: string
- info?: string
- align?: 'left' | 'center' | 'right'
-}
-
type TableProps = {
selectable?: boolean
columns: ColumnProps[]
@@ -110,44 +105,47 @@ export const BaseTable = forwardRef(
stripped={stripped}
bordered={bordered}
autoCollapse={autoCollapse}
+ columns={columns}
>
-
-
-
- {columns.map((column, index) => (
-
- {column.label}
-
- ))}
-
-
- {loading ? (
-
-
-
- ) : (
- children
- )}
-
+
+
+
+
+ {columns.map((column, index) => (
+
+ {column.label}
+
+ ))}
+
+
+ {loading ? (
+
+
+
+ ) : (
+ children
+ )}
+
+
)
},
diff --git a/packages/ui/src/components/Table/types.ts b/packages/ui/src/components/Table/types.ts
new file mode 100644
index 0000000000..cad006a815
--- /dev/null
+++ b/packages/ui/src/components/Table/types.ts
@@ -0,0 +1,14 @@
+import type { ComponentProps, ReactNode } from 'react'
+import type { HeaderCell } from './HeaderCell'
+
+export type ColumnProps = Pick<
+ ComponentProps,
+ 'isOrdered' | 'onOrder' | 'orderDirection'
+> & {
+ label?: ReactNode
+ width?: string
+ minWidth?: string
+ maxWidth?: string
+ info?: string
+ align?: 'left' | 'center' | 'right'
+}