diff --git a/test/components/Table.spec.ts b/test/components/Table.spec.ts
index 9ca48847..eb98b947 100644
--- a/test/components/Table.spec.ts
+++ b/test/components/Table.spec.ts
@@ -20,35 +20,35 @@ describe('Table', () => {
id: 'm5gr84i9',
amount: 316,
date: '2024-03-11T15:30:00',
- status: 'success',
+ status: 'paid',
email: 'ken99@yahoo.com'
},
{
id: '3u1reuv4',
amount: 242,
date: '2024-03-11T10:10:00',
- status: 'success',
+ status: 'failed',
email: 'Abe45@gmail.com'
},
{
id: 'derv1ws0',
amount: 837,
date: '2024-03-11T08:50:00',
- status: 'processing',
+ status: 'refunded',
email: 'Monserrat44@gmail.com'
},
{
id: '5kma53ae',
amount: 874,
date: '2024-03-10T19:45:00',
- status: 'success',
+ status: 'paid',
email: 'Silas22@gmail.com'
},
{
id: 'bhqecj4p',
amount: 721,
date: '2024-03-10T15:55:00',
- status: 'failed',
+ status: 'paid',
email: 'carmella@hotmail.com'
}
]
@@ -120,6 +120,22 @@ describe('Table', () => {
}
},
{
+ // The fixture's statuses are the map's keys, which they were not: it
+ // carried `success`/`processing` while the map handles
+ // `paid`/`failed`/`refunded`, so four of five rows resolved to
+ // `undefined` and rendered the badge's default and two of the three
+ // colour branches were unreachable (#450). The statuses and their
+ // vocabulary come from the docs example for this table, as the dates do —
+ // `id`, `email` and `amount` do not, they are the upstream fixture.
+ //
+ // One branch is still only half-covered, and it is worth knowing which.
+ // `refunded` maps to `air-primary`, which is `src/theme/badge.ts`'s own
+ // default, so its rendered bytes are indistinguishable from an unmapped
+ // status: changing that colour fails four tests, but *deleting* the
+ // `refunded` entry fails none. Closing it needs the fixture's `status`
+ // typed as the union so a dropped key is a compile error — `getValue`
+ // returns `unknown` and the `as string` erases the key set. Tracked with
+ // the rest of that family in #454.
accessorKey: 'status',
header: 'Status',
cell: ({ row }) => {
diff --git a/test/components/__snapshots__/Table-vue.spec.ts.snap b/test/components/__snapshots__/Table-vue.spec.ts.snap
index c93d474c..0fa004f9 100644
--- a/test/components/__snapshots__/Table-vue.spec.ts.snap
+++ b/test/components/__snapshots__/Table-vue.spec.ts.snap
@@ -19,7 +19,7 @@ exports[`Table > renders with as correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -27,7 +27,7 @@ exports[`Table > renders with as correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -35,7 +35,7 @@ exports[`Table > renders with as correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -43,7 +43,7 @@ exports[`Table > renders with as correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -51,7 +51,7 @@ exports[`Table > renders with as correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -80,7 +80,7 @@ exports[`Table > renders with b24ui correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -88,7 +88,7 @@ exports[`Table > renders with b24ui correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -96,7 +96,7 @@ exports[`Table > renders with b24ui correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -104,7 +104,7 @@ exports[`Table > renders with b24ui correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -112,7 +112,7 @@ exports[`Table > renders with b24ui correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -141,7 +141,7 @@ exports[`Table > renders with body-bottom slot correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -149,7 +149,7 @@ exports[`Table > renders with body-bottom slot correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -157,7 +157,7 @@ exports[`Table > renders with body-bottom slot correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -165,7 +165,7 @@ exports[`Table > renders with body-bottom slot correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -173,7 +173,7 @@ exports[`Table > renders with body-bottom slot correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
Body bottom slot
@@ -201,7 +201,7 @@ exports[`Table > renders with body-top slot correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -209,7 +209,7 @@ exports[`Table > renders with body-top slot correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -217,7 +217,7 @@ exports[`Table > renders with body-top slot correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -225,7 +225,7 @@ exports[`Table > renders with body-top slot correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -233,7 +233,7 @@ exports[`Table > renders with body-top slot correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -262,7 +262,7 @@ exports[`Table > renders with caption correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -270,7 +270,7 @@ exports[`Table > renders with caption correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -278,7 +278,7 @@ exports[`Table > renders with caption correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -286,7 +286,7 @@ exports[`Table > renders with caption correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -294,7 +294,7 @@ exports[`Table > renders with caption correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -323,7 +323,7 @@ exports[`Table > renders with caption slot correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -331,7 +331,7 @@ exports[`Table > renders with caption slot correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -339,7 +339,7 @@ exports[`Table > renders with caption slot correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -347,7 +347,7 @@ exports[`Table > renders with caption slot correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -355,7 +355,7 @@ exports[`Table > renders with caption slot correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -384,7 +384,7 @@ exports[`Table > renders with cell slot correctly 1`] = `
ID Cell slot |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -392,7 +392,7 @@ exports[`Table > renders with cell slot correctly 1`] = `
ID Cell slot |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -400,7 +400,7 @@ exports[`Table > renders with cell slot correctly 1`] = `
ID Cell slot |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -408,7 +408,7 @@ exports[`Table > renders with cell slot correctly 1`] = `
ID Cell slot |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -416,7 +416,7 @@ exports[`Table > renders with cell slot correctly 1`] = `
ID Cell slot |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -445,7 +445,7 @@ exports[`Table > renders with class correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -453,7 +453,7 @@ exports[`Table > renders with class correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -461,7 +461,7 @@ exports[`Table > renders with class correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -469,7 +469,7 @@ exports[`Table > renders with class correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -477,7 +477,7 @@ exports[`Table > renders with class correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -537,7 +537,7 @@ exports[`Table > renders with columns correctly 1`] = `
#m5gr84i9 |
Mar 11, 15:30 |
- success
+ | paid
|
ken99@yahoo.com |
@@ -570,7 +570,7 @@ exports[`Table > renders with columns correctly 1`] = `
#3u1reuv4 |
Mar 11, 10:10 |
- success
+ | failed
|
Abe45@gmail.com |
@@ -603,7 +603,7 @@ exports[`Table > renders with columns correctly 1`] = `
#derv1ws0 |
Mar 11, 08:50 |
- processing
+ | refunded
|
Monserrat44@gmail.com |
@@ -636,7 +636,7 @@ exports[`Table > renders with columns correctly 1`] = `
#5kma53ae |
Mar 10, 19:45 |
- success
+ | paid
|
Silas22@gmail.com |
@@ -669,7 +669,7 @@ exports[`Table > renders with columns correctly 1`] = `
#bhqecj4p |
Mar 10, 15:55 |
- failed
+ | paid
|
carmella@hotmail.com |
@@ -737,7 +737,7 @@ exports[`Table > renders with data correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -745,7 +745,7 @@ exports[`Table > renders with data correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -753,7 +753,7 @@ exports[`Table > renders with data correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -761,7 +761,7 @@ exports[`Table > renders with data correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -769,7 +769,7 @@ exports[`Table > renders with data correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -885,7 +885,7 @@ exports[`Table > renders with expanded slot correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -893,7 +893,7 @@ exports[`Table > renders with expanded slot correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -901,7 +901,7 @@ exports[`Table > renders with expanded slot correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -909,7 +909,7 @@ exports[`Table > renders with expanded slot correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -917,7 +917,7 @@ exports[`Table > renders with expanded slot correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -946,7 +946,7 @@ exports[`Table > renders with header slot correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -954,7 +954,7 @@ exports[`Table > renders with header slot correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -962,7 +962,7 @@ exports[`Table > renders with header slot correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -970,7 +970,7 @@ exports[`Table > renders with header slot correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -978,7 +978,7 @@ exports[`Table > renders with header slot correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1007,7 +1007,7 @@ exports[`Table > renders with loading animation carousel correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1015,7 +1015,7 @@ exports[`Table > renders with loading animation carousel correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1023,7 +1023,7 @@ exports[`Table > renders with loading animation carousel correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -1031,7 +1031,7 @@ exports[`Table > renders with loading animation carousel correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -1039,7 +1039,7 @@ exports[`Table > renders with loading animation carousel correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1068,7 +1068,7 @@ exports[`Table > renders with loading animation carousel-inverse correctly 1`] =
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1076,7 +1076,7 @@ exports[`Table > renders with loading animation carousel-inverse correctly 1`] =
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1084,7 +1084,7 @@ exports[`Table > renders with loading animation carousel-inverse correctly 1`] =
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -1092,7 +1092,7 @@ exports[`Table > renders with loading animation carousel-inverse correctly 1`] =
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -1100,7 +1100,7 @@ exports[`Table > renders with loading animation carousel-inverse correctly 1`] =
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1129,7 +1129,7 @@ exports[`Table > renders with loading animation elastic correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1137,7 +1137,7 @@ exports[`Table > renders with loading animation elastic correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1145,7 +1145,7 @@ exports[`Table > renders with loading animation elastic correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -1153,7 +1153,7 @@ exports[`Table > renders with loading animation elastic correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -1161,7 +1161,7 @@ exports[`Table > renders with loading animation elastic correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1190,7 +1190,7 @@ exports[`Table > renders with loading animation loading correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1198,7 +1198,7 @@ exports[`Table > renders with loading animation loading correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1206,7 +1206,7 @@ exports[`Table > renders with loading animation loading correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -1214,7 +1214,7 @@ exports[`Table > renders with loading animation loading correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -1222,7 +1222,7 @@ exports[`Table > renders with loading animation loading correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1251,7 +1251,7 @@ exports[`Table > renders with loading animation swing correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1259,7 +1259,7 @@ exports[`Table > renders with loading animation swing correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1267,7 +1267,7 @@ exports[`Table > renders with loading animation swing correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -1275,7 +1275,7 @@ exports[`Table > renders with loading animation swing correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -1283,7 +1283,7 @@ exports[`Table > renders with loading animation swing correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1312,7 +1312,7 @@ exports[`Table > renders with loading color air-primary correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1320,7 +1320,7 @@ exports[`Table > renders with loading color air-primary correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1328,7 +1328,7 @@ exports[`Table > renders with loading color air-primary correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -1336,7 +1336,7 @@ exports[`Table > renders with loading color air-primary correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -1344,7 +1344,7 @@ exports[`Table > renders with loading color air-primary correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1373,7 +1373,7 @@ exports[`Table > renders with loading color air-primary-alert correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1381,7 +1381,7 @@ exports[`Table > renders with loading color air-primary-alert correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1389,7 +1389,7 @@ exports[`Table > renders with loading color air-primary-alert correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -1397,7 +1397,7 @@ exports[`Table > renders with loading color air-primary-alert correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -1405,7 +1405,7 @@ exports[`Table > renders with loading color air-primary-alert correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1434,7 +1434,7 @@ exports[`Table > renders with loading color air-primary-copilot correctly 1`] =
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1442,7 +1442,7 @@ exports[`Table > renders with loading color air-primary-copilot correctly 1`] =
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1450,7 +1450,7 @@ exports[`Table > renders with loading color air-primary-copilot correctly 1`] =
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -1458,7 +1458,7 @@ exports[`Table > renders with loading color air-primary-copilot correctly 1`] =
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -1466,7 +1466,7 @@ exports[`Table > renders with loading color air-primary-copilot correctly 1`] =
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1495,7 +1495,7 @@ exports[`Table > renders with loading color air-primary-success correctly 1`] =
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1503,7 +1503,7 @@ exports[`Table > renders with loading color air-primary-success correctly 1`] =
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1511,7 +1511,7 @@ exports[`Table > renders with loading color air-primary-success correctly 1`] =
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -1519,7 +1519,7 @@ exports[`Table > renders with loading color air-primary-success correctly 1`] =
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -1527,7 +1527,7 @@ exports[`Table > renders with loading color air-primary-success correctly 1`] =
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1556,7 +1556,7 @@ exports[`Table > renders with loading color air-primary-warning correctly 1`] =
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1564,7 +1564,7 @@ exports[`Table > renders with loading color air-primary-warning correctly 1`] =
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1572,7 +1572,7 @@ exports[`Table > renders with loading color air-primary-warning correctly 1`] =
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -1580,7 +1580,7 @@ exports[`Table > renders with loading color air-primary-warning correctly 1`] =
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -1588,7 +1588,7 @@ exports[`Table > renders with loading color air-primary-warning correctly 1`] =
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1617,7 +1617,7 @@ exports[`Table > renders with loading correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1625,7 +1625,7 @@ exports[`Table > renders with loading correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1633,7 +1633,7 @@ exports[`Table > renders with loading correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -1641,7 +1641,7 @@ exports[`Table > renders with loading correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -1649,7 +1649,7 @@ exports[`Table > renders with loading correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1778,7 +1778,7 @@ exports[`Table > renders with meta field on columns correctly 1`] = `
#m5gr84i9 |
Mar 11, 15:30 |
- success
+ | paid
|
ken99@yahoo.com |
@@ -1811,7 +1811,7 @@ exports[`Table > renders with meta field on columns correctly 1`] = `
#3u1reuv4 |
Mar 11, 10:10 |
- success
+ | failed
|
Abe45@gmail.com |
@@ -1844,7 +1844,7 @@ exports[`Table > renders with meta field on columns correctly 1`] = `
#derv1ws0 |
Mar 11, 08:50 |
- processing
+ | refunded
|
Monserrat44@gmail.com |
@@ -1877,7 +1877,7 @@ exports[`Table > renders with meta field on columns correctly 1`] = `
#5kma53ae |
Mar 10, 19:45 |
- success
+ | paid
|
Silas22@gmail.com |
@@ -1910,7 +1910,7 @@ exports[`Table > renders with meta field on columns correctly 1`] = `
#bhqecj4p |
Mar 10, 15:55 |
- failed
+ | paid
|
carmella@hotmail.com |
@@ -1978,7 +1978,7 @@ exports[`Table > renders with meta prop correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1986,7 +1986,7 @@ exports[`Table > renders with meta prop correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1994,7 +1994,7 @@ exports[`Table > renders with meta prop correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -2002,7 +2002,7 @@ exports[`Table > renders with meta prop correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -2010,7 +2010,7 @@ exports[`Table > renders with meta prop correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -2062,7 +2062,7 @@ exports[`Table > renders with row pinning correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -2070,7 +2070,7 @@ exports[`Table > renders with row pinning correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -2078,7 +2078,7 @@ exports[`Table > renders with row pinning correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -2086,7 +2086,7 @@ exports[`Table > renders with row pinning correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -2094,7 +2094,7 @@ exports[`Table > renders with row pinning correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -2123,7 +2123,7 @@ exports[`Table > renders with sticky correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -2131,7 +2131,7 @@ exports[`Table > renders with sticky correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -2139,7 +2139,7 @@ exports[`Table > renders with sticky correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -2147,7 +2147,7 @@ exports[`Table > renders with sticky correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -2155,7 +2155,7 @@ exports[`Table > renders with sticky correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
diff --git a/test/components/__snapshots__/Table.spec.ts.snap b/test/components/__snapshots__/Table.spec.ts.snap
index 04535cfb..d9d32cb1 100644
--- a/test/components/__snapshots__/Table.spec.ts.snap
+++ b/test/components/__snapshots__/Table.spec.ts.snap
@@ -19,7 +19,7 @@ exports[`Table > renders with as correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -27,7 +27,7 @@ exports[`Table > renders with as correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -35,7 +35,7 @@ exports[`Table > renders with as correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -43,7 +43,7 @@ exports[`Table > renders with as correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -51,7 +51,7 @@ exports[`Table > renders with as correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -80,7 +80,7 @@ exports[`Table > renders with b24ui correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -88,7 +88,7 @@ exports[`Table > renders with b24ui correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -96,7 +96,7 @@ exports[`Table > renders with b24ui correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -104,7 +104,7 @@ exports[`Table > renders with b24ui correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -112,7 +112,7 @@ exports[`Table > renders with b24ui correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -141,7 +141,7 @@ exports[`Table > renders with body-bottom slot correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -149,7 +149,7 @@ exports[`Table > renders with body-bottom slot correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -157,7 +157,7 @@ exports[`Table > renders with body-bottom slot correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -165,7 +165,7 @@ exports[`Table > renders with body-bottom slot correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -173,7 +173,7 @@ exports[`Table > renders with body-bottom slot correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
Body bottom slot
@@ -201,7 +201,7 @@ exports[`Table > renders with body-top slot correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -209,7 +209,7 @@ exports[`Table > renders with body-top slot correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -217,7 +217,7 @@ exports[`Table > renders with body-top slot correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -225,7 +225,7 @@ exports[`Table > renders with body-top slot correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -233,7 +233,7 @@ exports[`Table > renders with body-top slot correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -262,7 +262,7 @@ exports[`Table > renders with caption correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -270,7 +270,7 @@ exports[`Table > renders with caption correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -278,7 +278,7 @@ exports[`Table > renders with caption correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -286,7 +286,7 @@ exports[`Table > renders with caption correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -294,7 +294,7 @@ exports[`Table > renders with caption correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -323,7 +323,7 @@ exports[`Table > renders with caption slot correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -331,7 +331,7 @@ exports[`Table > renders with caption slot correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -339,7 +339,7 @@ exports[`Table > renders with caption slot correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -347,7 +347,7 @@ exports[`Table > renders with caption slot correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -355,7 +355,7 @@ exports[`Table > renders with caption slot correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -384,7 +384,7 @@ exports[`Table > renders with cell slot correctly 1`] = `
ID Cell slot |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -392,7 +392,7 @@ exports[`Table > renders with cell slot correctly 1`] = `
ID Cell slot |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -400,7 +400,7 @@ exports[`Table > renders with cell slot correctly 1`] = `
ID Cell slot |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -408,7 +408,7 @@ exports[`Table > renders with cell slot correctly 1`] = `
ID Cell slot |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -416,7 +416,7 @@ exports[`Table > renders with cell slot correctly 1`] = `
ID Cell slot |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -445,7 +445,7 @@ exports[`Table > renders with class correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -453,7 +453,7 @@ exports[`Table > renders with class correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -461,7 +461,7 @@ exports[`Table > renders with class correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -469,7 +469,7 @@ exports[`Table > renders with class correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -477,7 +477,7 @@ exports[`Table > renders with class correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -537,7 +537,7 @@ exports[`Table > renders with columns correctly 1`] = `
#m5gr84i9 |
Mar 11, 15:30 |
- success
+ | paid
|
ken99@yahoo.com |
@@ -570,7 +570,7 @@ exports[`Table > renders with columns correctly 1`] = `
#3u1reuv4 |
Mar 11, 10:10 |
- success
+ | failed
|
Abe45@gmail.com |
@@ -603,7 +603,7 @@ exports[`Table > renders with columns correctly 1`] = `
#derv1ws0 |
Mar 11, 08:50 |
- processing
+ | refunded
|
Monserrat44@gmail.com |
@@ -636,7 +636,7 @@ exports[`Table > renders with columns correctly 1`] = `
#5kma53ae |
Mar 10, 19:45 |
- success
+ | paid
|
Silas22@gmail.com |
@@ -669,7 +669,7 @@ exports[`Table > renders with columns correctly 1`] = `
#bhqecj4p |
Mar 10, 15:55 |
- failed
+ | paid
|
carmella@hotmail.com |
@@ -737,7 +737,7 @@ exports[`Table > renders with data correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -745,7 +745,7 @@ exports[`Table > renders with data correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -753,7 +753,7 @@ exports[`Table > renders with data correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -761,7 +761,7 @@ exports[`Table > renders with data correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -769,7 +769,7 @@ exports[`Table > renders with data correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -885,7 +885,7 @@ exports[`Table > renders with expanded slot correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -893,7 +893,7 @@ exports[`Table > renders with expanded slot correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -901,7 +901,7 @@ exports[`Table > renders with expanded slot correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -909,7 +909,7 @@ exports[`Table > renders with expanded slot correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -917,7 +917,7 @@ exports[`Table > renders with expanded slot correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -946,7 +946,7 @@ exports[`Table > renders with header slot correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -954,7 +954,7 @@ exports[`Table > renders with header slot correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -962,7 +962,7 @@ exports[`Table > renders with header slot correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -970,7 +970,7 @@ exports[`Table > renders with header slot correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -978,7 +978,7 @@ exports[`Table > renders with header slot correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1007,7 +1007,7 @@ exports[`Table > renders with loading animation carousel correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1015,7 +1015,7 @@ exports[`Table > renders with loading animation carousel correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1023,7 +1023,7 @@ exports[`Table > renders with loading animation carousel correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -1031,7 +1031,7 @@ exports[`Table > renders with loading animation carousel correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -1039,7 +1039,7 @@ exports[`Table > renders with loading animation carousel correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1068,7 +1068,7 @@ exports[`Table > renders with loading animation carousel-inverse correctly 1`] =
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1076,7 +1076,7 @@ exports[`Table > renders with loading animation carousel-inverse correctly 1`] =
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1084,7 +1084,7 @@ exports[`Table > renders with loading animation carousel-inverse correctly 1`] =
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -1092,7 +1092,7 @@ exports[`Table > renders with loading animation carousel-inverse correctly 1`] =
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -1100,7 +1100,7 @@ exports[`Table > renders with loading animation carousel-inverse correctly 1`] =
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1129,7 +1129,7 @@ exports[`Table > renders with loading animation elastic correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1137,7 +1137,7 @@ exports[`Table > renders with loading animation elastic correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1145,7 +1145,7 @@ exports[`Table > renders with loading animation elastic correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -1153,7 +1153,7 @@ exports[`Table > renders with loading animation elastic correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -1161,7 +1161,7 @@ exports[`Table > renders with loading animation elastic correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1190,7 +1190,7 @@ exports[`Table > renders with loading animation loading correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1198,7 +1198,7 @@ exports[`Table > renders with loading animation loading correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1206,7 +1206,7 @@ exports[`Table > renders with loading animation loading correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -1214,7 +1214,7 @@ exports[`Table > renders with loading animation loading correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -1222,7 +1222,7 @@ exports[`Table > renders with loading animation loading correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1251,7 +1251,7 @@ exports[`Table > renders with loading animation swing correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1259,7 +1259,7 @@ exports[`Table > renders with loading animation swing correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1267,7 +1267,7 @@ exports[`Table > renders with loading animation swing correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -1275,7 +1275,7 @@ exports[`Table > renders with loading animation swing correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -1283,7 +1283,7 @@ exports[`Table > renders with loading animation swing correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1312,7 +1312,7 @@ exports[`Table > renders with loading color air-primary correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1320,7 +1320,7 @@ exports[`Table > renders with loading color air-primary correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1328,7 +1328,7 @@ exports[`Table > renders with loading color air-primary correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -1336,7 +1336,7 @@ exports[`Table > renders with loading color air-primary correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -1344,7 +1344,7 @@ exports[`Table > renders with loading color air-primary correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1373,7 +1373,7 @@ exports[`Table > renders with loading color air-primary-alert correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1381,7 +1381,7 @@ exports[`Table > renders with loading color air-primary-alert correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1389,7 +1389,7 @@ exports[`Table > renders with loading color air-primary-alert correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -1397,7 +1397,7 @@ exports[`Table > renders with loading color air-primary-alert correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -1405,7 +1405,7 @@ exports[`Table > renders with loading color air-primary-alert correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1434,7 +1434,7 @@ exports[`Table > renders with loading color air-primary-copilot correctly 1`] =
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1442,7 +1442,7 @@ exports[`Table > renders with loading color air-primary-copilot correctly 1`] =
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1450,7 +1450,7 @@ exports[`Table > renders with loading color air-primary-copilot correctly 1`] =
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -1458,7 +1458,7 @@ exports[`Table > renders with loading color air-primary-copilot correctly 1`] =
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -1466,7 +1466,7 @@ exports[`Table > renders with loading color air-primary-copilot correctly 1`] =
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1495,7 +1495,7 @@ exports[`Table > renders with loading color air-primary-success correctly 1`] =
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1503,7 +1503,7 @@ exports[`Table > renders with loading color air-primary-success correctly 1`] =
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1511,7 +1511,7 @@ exports[`Table > renders with loading color air-primary-success correctly 1`] =
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -1519,7 +1519,7 @@ exports[`Table > renders with loading color air-primary-success correctly 1`] =
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -1527,7 +1527,7 @@ exports[`Table > renders with loading color air-primary-success correctly 1`] =
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1556,7 +1556,7 @@ exports[`Table > renders with loading color air-primary-warning correctly 1`] =
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1564,7 +1564,7 @@ exports[`Table > renders with loading color air-primary-warning correctly 1`] =
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1572,7 +1572,7 @@ exports[`Table > renders with loading color air-primary-warning correctly 1`] =
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -1580,7 +1580,7 @@ exports[`Table > renders with loading color air-primary-warning correctly 1`] =
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -1588,7 +1588,7 @@ exports[`Table > renders with loading color air-primary-warning correctly 1`] =
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1617,7 +1617,7 @@ exports[`Table > renders with loading correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1625,7 +1625,7 @@ exports[`Table > renders with loading correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1633,7 +1633,7 @@ exports[`Table > renders with loading correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -1641,7 +1641,7 @@ exports[`Table > renders with loading correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -1649,7 +1649,7 @@ exports[`Table > renders with loading correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -1778,7 +1778,7 @@ exports[`Table > renders with meta field on columns correctly 1`] = `
#m5gr84i9 |
Mar 11, 15:30 |
- success
+ | paid
|
ken99@yahoo.com |
@@ -1811,7 +1811,7 @@ exports[`Table > renders with meta field on columns correctly 1`] = `
#3u1reuv4 |
Mar 11, 10:10 |
- success
+ | failed
|
Abe45@gmail.com |
@@ -1844,7 +1844,7 @@ exports[`Table > renders with meta field on columns correctly 1`] = `
#derv1ws0 |
Mar 11, 08:50 |
- processing
+ | refunded
|
Monserrat44@gmail.com |
@@ -1877,7 +1877,7 @@ exports[`Table > renders with meta field on columns correctly 1`] = `
#5kma53ae |
Mar 10, 19:45 |
- success
+ | paid
|
Silas22@gmail.com |
@@ -1910,7 +1910,7 @@ exports[`Table > renders with meta field on columns correctly 1`] = `
#bhqecj4p |
Mar 10, 15:55 |
- failed
+ | paid
|
carmella@hotmail.com |
@@ -1978,7 +1978,7 @@ exports[`Table > renders with meta prop correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -1986,7 +1986,7 @@ exports[`Table > renders with meta prop correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -1994,7 +1994,7 @@ exports[`Table > renders with meta prop correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -2002,7 +2002,7 @@ exports[`Table > renders with meta prop correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -2010,7 +2010,7 @@ exports[`Table > renders with meta prop correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -2062,7 +2062,7 @@ exports[`Table > renders with row pinning correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -2070,7 +2070,7 @@ exports[`Table > renders with row pinning correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -2078,7 +2078,7 @@ exports[`Table > renders with row pinning correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -2086,7 +2086,7 @@ exports[`Table > renders with row pinning correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |
@@ -2094,7 +2094,7 @@ exports[`Table > renders with row pinning correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -2123,7 +2123,7 @@ exports[`Table > renders with sticky correctly 1`] = `
m5gr84i9 |
316 |
2024-03-11T15:30:00 |
- success |
+ paid |
ken99@yahoo.com |
@@ -2131,7 +2131,7 @@ exports[`Table > renders with sticky correctly 1`] = `
3u1reuv4 |
242 |
2024-03-11T10:10:00 |
- success |
+ failed |
Abe45@gmail.com |
@@ -2139,7 +2139,7 @@ exports[`Table > renders with sticky correctly 1`] = `
derv1ws0 |
837 |
2024-03-11T08:50:00 |
- processing |
+ refunded |
Monserrat44@gmail.com |
@@ -2147,7 +2147,7 @@ exports[`Table > renders with sticky correctly 1`] = `
5kma53ae |
874 |
2024-03-10T19:45:00 |
- success |
+ paid |
Silas22@gmail.com |
@@ -2155,7 +2155,7 @@ exports[`Table > renders with sticky correctly 1`] = `
bhqecj4p |
721 |
2024-03-10T15:55:00 |
- failed |
+ paid |
carmella@hotmail.com |