From 0ce6de86ee376c60b824cc3a45f8781457110aa2 Mon Sep 17 00:00:00 2001 From: moon-ds Date: Wed, 11 Oct 2023 16:34:53 +0500 Subject: [PATCH] feat: a new example of the long data table with custom column widths --- next-docs/pages/components/table.tsx | 8 +- .../examples/table/CustomColumnWidths.tsx | 150 + next-docs/public/examples/table/LongData.tsx | 12 +- next-docs/public/examples/table/Tooltips.tsx | 15 +- .../__snapshots__/index.test.tsx.snap | 104392 +++++++++------ .../examples/table/__tests__/index.test.tsx | 9 + 6 files changed, 63257 insertions(+), 41329 deletions(-) create mode 100644 next-docs/public/examples/table/CustomColumnWidths.tsx diff --git a/next-docs/pages/components/table.tsx b/next-docs/pages/components/table.tsx index 2beb037fd5..8f5b473577 100644 --- a/next-docs/pages/components/table.tsx +++ b/next-docs/pages/components/table.tsx @@ -8,6 +8,7 @@ import Calendar from '../../public/examples/table/Calendar'; import CellBorder from '../../public/examples/table/CellBorder'; import ClickableRows from '../../public/examples/table/ClickableRows'; import CustomColors from '../../public/examples/table/CustomColors'; +import CustomColumnWidths from '../../public/examples/table/CustomColumnWidths'; import CustomContent from '../../public/examples/table/CustomContent'; import DeepTable from '../../public/examples/table/DeepTable'; import Default from '../../public/examples/table/Default'; @@ -136,10 +137,15 @@ const PageTable = () => { code={examples ? examples.LongData : 'Loading'} /> } code={examples ? examples.Tooltips : 'Loading'} /> + } + code={examples ? examples.CustomColumnWidths : 'Loading'} + /> { + const columnsInitial = [ + { + 'Header': 'Transactions', + 'sticky': 'left', + columns: [ + { + 'Header': 'Transaction UUID', + 'accessor': 'uuid', + 'Footer': '', + 'width': 250, + }, + { + 'Header': 'User & Supplier user', + 'accessor': 'user', + 'Footer': '', + 'minWidth': 80, + 'width': 240, + }, + ], + }, + { + 'Header': 'Info', + 'columns': [ + { + 'Header': 'Process time', + 'accessor': 'processTime', + 'Footer': '', + }, + { + 'Header': 'Client', + 'accessor': 'client', + 'Footer': '', + }, + { + 'Header': 'Game name & provider', + 'accessor': 'gameNameAndProvider', + 'Footer': '', + 'width': 120, + }, + { + 'Header': 'Amount', + 'accessor': 'amount', + 'Footer': '', + 'minWidth': 60, + 'width': 70, + }, + { + 'Header': 'Currency', + 'accessor': 'currency', + 'Footer': '', + 'minWidth': 75, + 'width': 80, + }, + { + 'Header': 'Status', + 'accessor': 'status', + 'Footer': '', + 'minWidth': 80, + 'width': 90 + }, + { + 'Header': 'Kind', + 'accessor': 'kind', + 'Footer': '', + 'minWidth': 50, + 'width': 60 + }, + ], + }, + { + 'Header': 'Actions', + 'sticky': 'right', + 'columns': [ + { + 'Header': 'Actions', + 'accessor': 'actions', + 'Footer': '', + 'minWidth': 60, + 'width': 80, + }, + ], + }, + ]; + + const tooltip = () => ( + + + } + /> + + + Round details + + + + ); + + const makeData = (length: number) => { + return Array.from('_'.repeat(length)).map((_, index) => { + return { + uuid: '84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546', + user: 'aleksandr@heathmonitoring.com', + processTime: '2023-09-19T14:31:46.105Z', + client: 'Bender (old) Coingaming', + gameNameAndProvider: 'Pragmatic Play', + amount: 22.97, + currency: USD, + status: SUCCESS, + kind: BET, + actions: tooltip(), + }; + }); + }; + + const defaultColumn = React.useMemo( + () => ({ + minWidth: 30, + width: 150, + maxWidth: Number.MAX_SAFE_INTEGER, + }), + [] + ); + + const columns = React.useMemo(() => columnsInitial, []); + const data = React.useMemo(() => makeData(40), []); + const textClip = 'clip' as ClipProps; + + return ( + + ); +}; + +export default Example; diff --git a/next-docs/public/examples/table/LongData.tsx b/next-docs/public/examples/table/LongData.tsx index 3a73634dbe..60a5ea9d6a 100644 --- a/next-docs/public/examples/table/LongData.tsx +++ b/next-docs/public/examples/table/LongData.tsx @@ -1,6 +1,7 @@ import React from 'react'; import { Table } from '@heathmont/moon-table-tw'; import ClipProps from '@heathmont/moon-table-tw/lib/private/types/ClipProps'; +import { Tag } from '@heathmont/moon-core-tw'; const Example = () => { const columnsInitial = [ @@ -47,6 +48,8 @@ const Example = () => { 'Header': 'Currency', 'accessor': 'currency', 'Footer': '', + /*'maxWidth': Number.MAX_SAFE_INTEGER, + 'width': 80 */ }, ], }, @@ -72,8 +75,8 @@ const Example = () => { client: 'Bender (old) Coingaming', gameNameAndProvider: 'Pragmatic Play', amount: 22.97, - currency: 'USD', - status: 'SUCCESS' + currency: USD, + status: SUCCESS, }; }); }; @@ -82,10 +85,7 @@ const Example = () => { () => ({ minWidth: 10, width: 150, - - /* The next prop is commented to provide an opportunity - to expand any table column as much as possible */ - /* maxWidth: 400, */ + maxWidth: Number.MAX_SAFE_INTEGER, }), [] ); diff --git a/next-docs/public/examples/table/Tooltips.tsx b/next-docs/public/examples/table/Tooltips.tsx index 92b066c226..5af719ec8b 100644 --- a/next-docs/public/examples/table/Tooltips.tsx +++ b/next-docs/public/examples/table/Tooltips.tsx @@ -1,7 +1,7 @@ import React from 'react'; import { Table } from '@heathmont/moon-table-tw'; import ClipProps from '@heathmont/moon-table-tw/lib/private/types/ClipProps'; -import { Chip, Tooltip } from '@heathmont/moon-core-tw'; +import { Chip, Tag, Tooltip } from '@heathmont/moon-core-tw'; import { OtherFrame } from '@heathmont/moon-icons-tw'; const Example = () => { @@ -75,10 +75,10 @@ const Example = () => { const tooltip = () => ( - + } + iconOnly={} /> @@ -97,12 +97,8 @@ const Example = () => { client: 'Bender (old) Coingaming', gameNameAndProvider: 'Pragmatic Play', amount: 22.97, - currency: 'USD', - status: 'SUCCESS', - - /** - * The expression below sets a tooltip with transparent background in the second row only. - */ + currency: USD, + status: SUCCESS, actions: tooltip(), }; }); @@ -112,6 +108,7 @@ const Example = () => { () => ({ minWidth: 10, width: 150, + maxWidth: Number.MAX_SAFE_INTEGER, }), [] ); diff --git a/next-docs/public/examples/table/__tests__/__snapshots__/index.test.tsx.snap b/next-docs/public/examples/table/__tests__/__snapshots__/index.test.tsx.snap index 2f06101771..f74d1f0d51 100644 --- a/next-docs/public/examples/table/__tests__/__snapshots__/index.test.tsx.snap +++ b/next-docs/public/examples/table/__tests__/__snapshots__/index.test.tsx.snap @@ -17144,7 +17144,7 @@ Object { } `; -exports[`Table in RTL renders CustomContent 1`] = ` +exports[`Table in RTL renders CustomColumnWidths 1`] = ` Object { "asFragment": [Function], "baseElement": @@ -17155,7 +17155,7 @@ Object {
+ Transactions + +
+ Info + +
- - Expand - 👉 - + Actions
+
+
- First Name + Transaction UUID
- Age + User & Supplier user + +
+ Process time + +
+ Client + +
+ Game name & provider + +
+ Amount + +
+ Currency + +
+ Status + +
+ Kind + +
+ Actions
+
+
+
+
+
+
+
@@ -17245,5754 +17441,9256 @@ Object {
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 0 - + 2023-09-19T14:31:46.105Z
-
-
- - 👉 - + Bender (old) Coingaming
- Test + Pragmatic Play
- - 30 - + 22.97
-
-
- - 👉 - +
+ USD +
- Test +
+ SUCCESS +
- - 60 - +
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 90 - + 2023-09-19T14:31:46.105Z
-
-
- - 👉 - + Bender (old) Coingaming
- Test + Pragmatic Play
- - 120 - + 22.97
-
-
- - 👉 - +
+ USD +
- Test +
+ SUCCESS +
- - 150 - +
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 180 - + 2023-09-19T14:31:46.105Z
-
-
- - 👉 - + Bender (old) Coingaming
- Test + Pragmatic Play
- - 210 - + 22.97
-
-
- - 👉 - +
+ USD +
- Test +
+ SUCCESS +
- - 240 - +
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 270 - + 2023-09-19T14:31:46.105Z
-
-
- - 👉 - + Bender (old) Coingaming
- Test + Pragmatic Play
- - 300 - + 22.97
-
-
- - 👉 - +
+ USD +
- Test +
+ SUCCESS +
- - 330 - +
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 360 - + 2023-09-19T14:31:46.105Z
-
-
- - 👉 - + Bender (old) Coingaming
- Test + Pragmatic Play
- - 390 - + 22.97
-
-
- - 👉 - +
+ USD +
- Test +
+ SUCCESS +
- - 420 - +
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 450 - + 2023-09-19T14:31:46.105Z
-
-
- - 👉 - + Bender (old) Coingaming
- Test + Pragmatic Play
- - 480 - + 22.97
-
-
- - 👉 - +
+ USD +
- Test +
+ SUCCESS +
- - 510 - +
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 540 - + 2023-09-19T14:31:46.105Z
-
-
- - 👉 - + Bender (old) Coingaming
- Test + Pragmatic Play
- - 570 - + 22.97
-
-
- - 👉 - +
+ USD +
- Test +
+ SUCCESS +
- - 600 - +
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 630 - + 2023-09-19T14:31:46.105Z
-
-
- - 👉 - + Bender (old) Coingaming
- Test + Pragmatic Play
- - 660 - + 22.97
-
-
- - 👉 - +
+ USD +
- Test +
+ SUCCESS +
- - 690 - +
+ BET +
-
-
+ +
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 720 - + 2023-09-19T14:31:46.105Z
-
-
- - 👉 - + Bender (old) Coingaming
- Test + Pragmatic Play
- - 750 - + 22.97
-
-
- - 👉 - +
+ USD +
- Test +
+ SUCCESS +
- - 780 - +
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 810 - + 2023-09-19T14:31:46.105Z
-
-
- - 👉 - + Bender (old) Coingaming
- Test + Pragmatic Play
- - 840 - + 22.97
-
-
- - 👉 - +
+ USD +
- Test +
+ SUCCESS +
- - 870 - +
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 900 - + 2023-09-19T14:31:46.105Z
-
-
- - 👉 - + Bender (old) Coingaming
- Test + Pragmatic Play
- - 930 - + 22.97
-
-
- - 👉 - +
+ USD +
- Test +
+ SUCCESS +
- - 960 - +
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 990 - + 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 1020 - + 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 1050 - + 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 1080 - + 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 1110 - + 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 1140 - + 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 1170 - + 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+
-
-
-
-
- , - "container":
-
-
-
-
- - Expand - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
-
- First Name + class="relative box-border justify-between items-center text-start break-all truncate text-moon-14 px-3 py-2 text-bulma bg-goku border-goku" + data-sticky-last-left-td="true" + data-sticky-td="true" + role="cell" + style="box-sizing: border-box; flex: 240 0 auto; min-width: 80px; width: 240px; position: sticky; z-index: 3; left: 250px;" + > + aleksandr@heathmonitoring.com +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+ +
- Age +
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+ +
-
-
-
-
-
-
-
-
-
- - 👉 - +
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+ +
- Test +
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+ +
- - 0 - +
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+ +
-
-
- - 👉 - +
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+ +
- Test +
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+ +
- - 30 - +
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+ +
-
-
- - 👉 - +
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+ +
- Test +
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+ +
- - 60 - -
-
-
-
- - 👉 - -
-
- Test -
-
- - 90 - -
-
-
-
- - 👉 - +
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+ +
- Test +
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+ +
- - 120 - +
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+ +
-
-
- - 👉 - +
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+ +
- Test +
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+ +
- - 150 - +
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+ +
-
-
- - 👉 - +
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+ +
- Test +
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+ +
- - 180 - +
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+ +
-
-
- - 👉 - +
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+ +
- Test -
-
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+ +
+
+
- - 210 - +
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+ +
+
+
+
+ , + "container":
+
+
+
- - 👉 - + Transactions +
- Test + Info +
- - 240 - + Actions +
- - 👉 - + Transaction UUID +
- Test + User & Supplier user +
- - 270 - + Process time + -
-
- - 👉 - + Client +
- Test + Game name & provider +
- - 300 - + Amount + -
-
- - 👉 - + Currency +
- Test + Status +
- - 330 - + Kind + +
+ Actions +
- - 👉 - -
+ class="relative" + colspan="1" + data-sticky-td="true" + role="columnheader" + style="box-sizing: border-box; flex: 250 0 auto; min-width: 30px; width: 250px; position: sticky; z-index: 3; left: 0px;" + />
- Test -
+ class="relative" + colspan="1" + data-sticky-last-left-td="true" + data-sticky-td="true" + role="columnheader" + style="box-sizing: border-box; flex: 240 0 auto; min-width: 80px; width: 240px; position: sticky; z-index: 3; left: 250px;" + />
- - 360 - -
+ class="relative" + colspan="1" + role="columnheader" + style="box-sizing: border-box; flex: 150 0 auto; min-width: 30px; width: 150px; position: relative;" + /> +
+
+
+
+
+
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 390 - + 2023-09-19T14:31:46.105Z
-
-
- - 👉 - + Bender (old) Coingaming
- Test + Pragmatic Play
- - 420 - + 22.97
-
-
- - 👉 - +
+ USD +
- Test +
+ SUCCESS +
- - 450 - +
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 480 - + 2023-09-19T14:31:46.105Z
-
-
- - 👉 - + Bender (old) Coingaming
- Test + Pragmatic Play
- - 510 - + 22.97
-
-
- - 👉 - +
+ USD +
- Test +
+ SUCCESS +
- - 540 - +
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 570 - + 2023-09-19T14:31:46.105Z
-
-
- - 👉 - + Bender (old) Coingaming
- Test + Pragmatic Play
- - 600 - + 22.97
-
-
- - 👉 - +
+ USD +
- Test +
+ SUCCESS +
- - 630 - +
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 660 - + 2023-09-19T14:31:46.105Z
-
-
- - 👉 - + Bender (old) Coingaming
- Test + Pragmatic Play
- - 690 - + 22.97
-
-
- - 👉 - +
+ USD +
- Test +
+ SUCCESS +
- - 720 - +
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 750 - + 2023-09-19T14:31:46.105Z
-
-
- - 👉 - + Bender (old) Coingaming
- Test + Pragmatic Play
- - 780 - + 22.97
-
-
- - 👉 - +
+ USD +
- Test +
+ SUCCESS +
- - 810 - +
+ BET +
-
-
- - 👉 - -
-
- Test -
-
- - 840 - +
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 870 - + 2023-09-19T14:31:46.105Z
-
-
- - 👉 - + Bender (old) Coingaming
- Test + Pragmatic Play
- - 900 - + 22.97
-
-
- - 👉 - +
+ USD +
- Test +
+ SUCCESS +
- - 930 - +
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 960 - + 2023-09-19T14:31:46.105Z
-
-
- - 👉 - + Bender (old) Coingaming
- Test + Pragmatic Play
- - 990 - + 22.97
-
-
- - 👉 - +
+ USD +
- Test +
+ SUCCESS +
- - 1020 - +
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 1050 - + 2023-09-19T14:31:46.105Z
-
-
- - 👉 - + Bender (old) Coingaming
- Test + Pragmatic Play
- - 1080 - + 22.97
-
-
- - 👉 - +
+ USD +
- Test +
+ SUCCESS +
- - 1110 - +
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 1140 - + 2023-09-19T14:31:46.105Z
-
-
- - 👉 - + Bender (old) Coingaming
- Test + Pragmatic Play
- - 1170 - + 22.97
-
-
-
-
-
, - "debug": [Function], - "findAllByAltText": [Function], - "findAllByDisplayValue": [Function], - "findAllByLabelText": [Function], - "findAllByPlaceholderText": [Function], - "findAllByRole": [Function], - "findAllByTestId": [Function], - "findAllByText": [Function], - "findAllByTitle": [Function], - "findByAltText": [Function], - "findByDisplayValue": [Function], - "findByLabelText": [Function], - "findByPlaceholderText": [Function], - "findByRole": [Function], - "findByTestId": [Function], - "findByText": [Function], - "findByTitle": [Function], - "getAllByAltText": [Function], - "getAllByDisplayValue": [Function], - "getAllByLabelText": [Function], - "getAllByPlaceholderText": [Function], - "getAllByRole": [Function], - "getAllByTestId": [Function], - "getAllByText": [Function], - "getAllByTitle": [Function], - "getByAltText": [Function], - "getByDisplayValue": [Function], - "getByLabelText": [Function], - "getByPlaceholderText": [Function], - "getByRole": [Function], - "getByTestId": [Function], - "getByText": [Function], - "getByTitle": [Function], - "queryAllByAltText": [Function], - "queryAllByDisplayValue": [Function], - "queryAllByLabelText": [Function], - "queryAllByPlaceholderText": [Function], - "queryAllByRole": [Function], - "queryAllByTestId": [Function], - "queryAllByText": [Function], - "queryAllByTitle": [Function], - "queryByAltText": [Function], - "queryByDisplayValue": [Function], - "queryByLabelText": [Function], - "queryByPlaceholderText": [Function], - "queryByRole": [Function], - "queryByTestId": [Function], - "queryByText": [Function], - "queryByTitle": [Function], - "rerender": [Function], - "unmount": [Function], -} -`; - -exports[`Table in RTL renders DeepTable 1`] = ` -Object { - "asFragment": [Function], - "baseElement": -
-
-
-
- - 👉 - - -
- Name - -
- Age - +
+
- Visits - +
+
- Activity -
-
-
-
-
-
+
-
- - 👉 - -
-
- Test -
-
- - 0 - -
-
- - 0 - -
-
- 0 -
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 👉 - -
-
- Test -
-
- - 30 - + USD
+
+
- - 100 - + SUCCESS
+
+
- 100 + BET
-
- - 👉 - -
-
- Test -
+ + + +
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 60 - + USD
+
+
- - 200 - + SUCCESS
+
+
- 200 + BET
-
- - 👉 - -
-
- Test -
+ + + +
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 90 - + USD
+
+
- - 300 - + SUCCESS
+
+
- 300 + BET
-
- - 👉 - -
-
- Test -
+ + + +
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 120 - + USD
+
+
- - 400 - + SUCCESS
+
+
- 400 + BET
-
- - 👉 - -
-
- Test -
+ + + +
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 150 - + USD
+
+
- - 500 - + SUCCESS
+
+
- 500 + BET
-
- - 👉 - -
-
- Test -
+ + + +
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 180 - + USD
+
+
- - 600 - + SUCCESS
+
+
- 600 + BET
-
- - 👉 - -
-
- Test -
+ + + +
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 210 - + USD
+
+
- - 700 - + SUCCESS
+
+
- 700 + BET
-
- - 👉 - -
-
- Test -
+ + + +
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 240 - + USD
+
+
- - 800 - + SUCCESS
+
+
- 800 + BET
-
- - 👉 - -
-
- Test -
+ + + +
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 270 - + USD
+
+
- - 900 - + SUCCESS
+
+
- 900 + BET
-
- - 👉 - -
-
- Test -
+ + + +
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 300 - + USD
+
+
- - 1000 - + SUCCESS
+
+
- 1000 + BET
-
- - 👉 - -
-
- Test -
+ + + +
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 330 - + USD
+
+
- - 1100 - + SUCCESS
+
+
- 1100 + BET
-
- - 👉 - -
-
- Test -
+ + + +
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 360 - + USD
+
+
- - 1200 - + SUCCESS
+
+
- 1200 + BET
-
- - 👉 - -
-
- Test -
-
- - 390 - -
-
- - 1300 - -
-
- 1300 -
-
-
-
- - 👉 - -
-
- Test -
-
- - 420 - -
-
- - 1400 - -
-
- 1400 -
+ + +
+
+
-
- - 👉 - -
-
- Test -
-
- - 450 - -
-
- - 1500 - -
-
- 1500 -
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
-
- - 👉 - -
-
- Test -
-
- - 480 - -
-
- - 1600 - -
-
- 1600 -
+ aleksandr@heathmonitoring.com
-
- - 👉 - -
-
- Test -
-
- - 510 - -
-
- - 1700 - -
-
- 1700 -
+ 2023-09-19T14:31:46.105Z
-
- - 👉 - -
-
- Test -
-
- - 540 - -
-
- - 1800 - -
-
- 1800 -
+ Bender (old) Coingaming
-
- - 👉 - -
-
- Test -
-
- - 570 - -
-
- - 1900 - -
-
- 1900 -
+ Pragmatic Play
-
-
-
-
- , - "container":
-
-
-
-
- - 👉 - -
- Name
- Age
- Visits
- Activity -
-
-
-
-
-
-
-
-
-
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 0 - + 2023-09-19T14:31:46.105Z
- - 0 - + Bender (old) Coingaming
- 0 + Pragmatic Play
-
-
- - 👉 - + 22.97
- Test +
+ USD +
- - 30 - +
+ SUCCESS +
- - 100 - +
+ BET +
- 100 +
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 60 - + 2023-09-19T14:31:46.105Z
- - 200 - + Bender (old) Coingaming
- 200 + Pragmatic Play
-
-
- - 👉 - + 22.97
- Test +
+ USD +
- - 90 - +
+ SUCCESS +
- - 300 - +
+ BET +
- 300 +
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 120 - + 2023-09-19T14:31:46.105Z
- - 400 - + Bender (old) Coingaming
- 400 + Pragmatic Play
-
-
- - 👉 - + 22.97
- Test +
+ USD +
- - 150 - +
+ SUCCESS +
- - 500 - +
+ BET +
- 500 +
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 180 - + 2023-09-19T14:31:46.105Z
- - 600 - + Bender (old) Coingaming
- 600 + Pragmatic Play
-
-
- - 👉 - + 22.97
- Test +
+ USD +
- - 210 - +
+ SUCCESS +
- - 700 - +
+ BET +
- 700 +
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 240 - + 2023-09-19T14:31:46.105Z
- - 800 - + Bender (old) Coingaming
- 800 + Pragmatic Play
-
-
- - 👉 - + 22.97
- Test +
+ USD +
- - 270 - +
+ SUCCESS +
- - 900 - +
+ BET +
- 900 +
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 300 - + 2023-09-19T14:31:46.105Z
- - 1000 - + Bender (old) Coingaming
- 1000 + Pragmatic Play
-
-
- - 👉 - + 22.97
- Test +
+ USD +
- - 330 - +
+ SUCCESS +
- - 1100 - +
+ BET +
- 1100 +
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 360 - + 2023-09-19T14:31:46.105Z
- - 1200 - + Bender (old) Coingaming
- 1200 + Pragmatic Play
-
-
- - 👉 - + 22.97
- Test +
+ USD +
- - 390 - +
+ SUCCESS +
- - 1300 - +
+ BET +
- 1300 +
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 420 - + 2023-09-19T14:31:46.105Z
- - 1400 - + Bender (old) Coingaming
- 1400 + Pragmatic Play
-
-
- - 👉 - + 22.97
- Test +
+ USD +
- - 450 - +
+ SUCCESS +
- - 1500 - +
+ BET +
- 1500 +
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 480 - + 2023-09-19T14:31:46.105Z
- - 1600 - + Bender (old) Coingaming
- 1600 + Pragmatic Play
-
-
- - 👉 - + 22.97
- Test +
+ USD +
- - 510 - +
+ SUCCESS +
- - 1700 - +
+ BET +
- 1700 +
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 540 - + 2023-09-19T14:31:46.105Z
- - 1800 - + Bender (old) Coingaming
- 1800 + Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ BET +
+
+
+
- - 👉 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 570 - + 2023-09-19T14:31:46.105Z
- - 1900 - + Bender (old) Coingaming
- 1900 + Pragmatic Play
-
-
-
-
-
, - "debug": [Function], - "findAllByAltText": [Function], - "findAllByDisplayValue": [Function], - "findAllByLabelText": [Function], - "findAllByPlaceholderText": [Function], - "findAllByRole": [Function], - "findAllByTestId": [Function], - "findAllByText": [Function], - "findAllByTitle": [Function], - "findByAltText": [Function], - "findByDisplayValue": [Function], - "findByLabelText": [Function], - "findByPlaceholderText": [Function], - "findByRole": [Function], - "findByTestId": [Function], - "findByText": [Function], - "findByTitle": [Function], - "getAllByAltText": [Function], - "getAllByDisplayValue": [Function], - "getAllByLabelText": [Function], - "getAllByPlaceholderText": [Function], - "getAllByRole": [Function], - "getAllByTestId": [Function], - "getAllByText": [Function], - "getAllByTitle": [Function], - "getByAltText": [Function], - "getByDisplayValue": [Function], - "getByLabelText": [Function], - "getByPlaceholderText": [Function], - "getByRole": [Function], - "getByTestId": [Function], - "getByText": [Function], - "getByTitle": [Function], - "queryAllByAltText": [Function], - "queryAllByDisplayValue": [Function], - "queryAllByLabelText": [Function], - "queryAllByPlaceholderText": [Function], - "queryAllByRole": [Function], - "queryAllByTestId": [Function], - "queryAllByText": [Function], - "queryAllByTitle": [Function], - "queryByAltText": [Function], - "queryByDisplayValue": [Function], - "queryByLabelText": [Function], - "queryByPlaceholderText": [Function], - "queryByRole": [Function], - "queryByTestId": [Function], - "queryByText": [Function], - "queryByTitle": [Function], - "rerender": [Function], - "unmount": [Function], -} -`; - -exports[`Table in RTL renders Default 1`] = ` -Object { - "asFragment": [Function], - "baseElement": -
-
-
-
+ 22.97 +
+
- First Name - -
- Last Name - -
- Age - -
- Visits - +
+
- Activity - +
+
- Status -
-
-
-
-
-
-
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test -
-
- Test -
-
- - 0 - -
-
- - 0 - -
-
- 0 -
-
- 0 + USD
- Test + SUCCESS
+
+
- Test + BET
-
+
+
+ + + + +
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 100 - + USD
+
+
- 100 + SUCCESS
+
+
- 100 + BET
-
- Test -
-
- Test -
-
- - 60 - -
-
- - 200 - -
-
- 200 -
-
+
+ + + +
+
+
-
- Test -
-
- Test -
-
- - 90 - -
-
- - 300 - -
-
- 300 -
-
- 300 -
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test -
-
- Test -
-
- - 120 - + USD
+
+
- - 400 - + SUCCESS
+
+
- 400 + BET
-
+
+
+ + + +
-
-
-
- , - "container":
-
-
-
- First Name -
- Last Name -
- Age -
- Visits -
- Activity -
- Status - -
-
-
-
+ class="relative box-border justify-between items-center text-start break-all truncate text-moon-14 px-3 py-2 text-bulma bg-goku border-goku" + role="cell" + style="box-sizing: border-box; flex: 80 0 auto; min-width: 75px; width: 80px;" + > +
+ USD +
+
+ class="relative box-border justify-between items-center text-start break-all truncate text-moon-14 px-3 py-2 text-bulma bg-goku border-goku" + role="cell" + style="box-sizing: border-box; flex: 90 0 auto; min-width: 80px; width: 90px;" + > +
+ SUCCESS +
+
+ class="relative box-border justify-between items-center text-start break-all truncate text-moon-14 px-3 py-2 text-bulma bg-goku border-goku" + role="cell" + style="box-sizing: border-box; flex: 60 0 auto; min-width: 50px; width: 60px;" + > +
+ BET +
+
+ class="relative box-border justify-between items-center text-start break-all truncate text-moon-14 px-3 py-2 rounded-e-lg text-bulma before:absolute before:w-px before:bg-beerus before:h-[70%] before:bottom-[15%] before:start-0 bg-goku border-goku" + data-sticky-first-right-td="true" + data-sticky-td="true" + role="cell" + style="box-sizing: border-box; flex: 80 0 auto; min-width: 60px; width: 80px; position: sticky; z-index: 3; right: 0px;" + > + +
-
-
- Test + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test + aleksandr@heathmonitoring.com
- - 0 - + 2023-09-19T14:31:46.105Z
- - 0 - + Bender (old) Coingaming
- 0 + Pragmatic Play
- 0 + 22.97
-
-
- Test +
+ USD +
- Test +
+ SUCCESS +
- - 30 - +
+ BET +
- - 100 - +
+
+
- 100 + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- 100 + aleksandr@heathmonitoring.com
-
-
- Test + 2023-09-19T14:31:46.105Z
- Test + Bender (old) Coingaming
- - 60 - + Pragmatic Play
- - 200 - + 22.97
- 200 +
+ USD +
- 200 +
+ SUCCESS +
-
-
- Test +
+ BET +
- Test +
+
+
- - 90 - + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- - 300 - + aleksandr@heathmonitoring.com
- 300 + 2023-09-19T14:31:46.105Z
- 300 + Bender (old) Coingaming
-
-
- Test + Pragmatic Play
- Test + 22.97
- - 120 - +
+ USD +
- - 400 - +
+ SUCCESS +
- 400 +
+ BET +
- 400 +
@@ -23053,7 +26751,7 @@ Object { } `; -exports[`Table in RTL renders Editable 1`] = ` +exports[`Table in RTL renders CustomContent 1`] = ` Object { "asFragment": [Function], "baseElement": @@ -23064,6 +26762,7 @@ Object {
- First Name + + Expand + 👉 +
- Last Name + First Name
Age
-
- Visits - -
- Activity - -
- Status -
-
-
-
@@ -23207,1230 +26852,418 @@ Object {
- + + 👉 +
- + Test
- + + 0 +
+
+
- + + 👉 +
- + Test
- + + 30 +
- + + 👉 +
- + Test
- + + 60 +
+
+
- + + 👉 +
- + Test
- + + 90 +
- + + 👉 +
- + Test
- + + 120 +
+
+
- + + 👉 +
- + Test
- + + 150 +
- + + 👉 +
- + Test
- + + 180 +
+
+
- + + 👉 +
- + Test
- + + 210 +
- + + 👉 +
- + Test
- + + 240 +
+
+
- + + 👉 +
- + Test
- + + 270 +
-
-
-
-
- , - "container":
-
-
-
-
-
- First Name - -
- Last Name - -
- Age - -
- Visits - -
- Activity - -
- Status - -
-
-
-
-
-
-
-
-
-
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
-
-
-
-
, - "debug": [Function], - "findAllByAltText": [Function], - "findAllByDisplayValue": [Function], - "findAllByLabelText": [Function], - "findAllByPlaceholderText": [Function], - "findAllByRole": [Function], - "findAllByTestId": [Function], - "findAllByText": [Function], - "findAllByTitle": [Function], - "findByAltText": [Function], - "findByDisplayValue": [Function], - "findByLabelText": [Function], - "findByPlaceholderText": [Function], - "findByRole": [Function], - "findByTestId": [Function], - "findByText": [Function], - "findByTitle": [Function], - "getAllByAltText": [Function], - "getAllByDisplayValue": [Function], - "getAllByLabelText": [Function], - "getAllByPlaceholderText": [Function], - "getAllByRole": [Function], - "getAllByTestId": [Function], - "getAllByText": [Function], - "getAllByTitle": [Function], - "getByAltText": [Function], - "getByDisplayValue": [Function], - "getByLabelText": [Function], - "getByPlaceholderText": [Function], - "getByRole": [Function], - "getByTestId": [Function], - "getByText": [Function], - "getByTitle": [Function], - "queryAllByAltText": [Function], - "queryAllByDisplayValue": [Function], - "queryAllByLabelText": [Function], - "queryAllByPlaceholderText": [Function], - "queryAllByRole": [Function], - "queryAllByTestId": [Function], - "queryAllByText": [Function], - "queryAllByTitle": [Function], - "queryByAltText": [Function], - "queryByDisplayValue": [Function], - "queryByLabelText": [Function], - "queryByPlaceholderText": [Function], - "queryByRole": [Function], - "queryByTestId": [Function], - "queryByText": [Function], - "queryByTitle": [Function], - "rerender": [Function], - "unmount": [Function], -} -`; - -exports[`Table in RTL renders ExpandedRows 1`] = ` -Object { - "asFragment": [Function], - "baseElement": -
-
-
-
- Expand - -
- Name -
- Info -
- Progress -
- + 👉 - -
- First Name - -
- Age - -
- Visits - -
- Activity -
- Status -
- Profile Progress -
-
-
-
-
-
-
-
-
-
-
-
- + 👉
Test
- 0 + 360
+
+
- 0 + 👉
- 0 + Test
- 0 -
-
- 0 + 390
- + 👉
Test
- 30 + 420
+
+
- 100 + 👉
- 100 + Test
- 100 -
-
- 100 + 450
- - 👉 - -
-
- Test -
-
- 60 - -
-
- - 200 + 👉
- 200 + Test
- 200 -
-
- 200 + 480
- - 👉 - -
-
- Test -
-
- 90 - -
-
- - 300 + 👉
- 300 + Test
- 300 -
-
- 300 + 510
- - 👉 - -
-
- Test -
-
- 120 - -
-
- - 400 + 👉
- 400 + Test
- 400 -
-
- 400 + 540
- - 👉 - -
-
- Test -
-
- 150 - -
-
- - 500 + 👉
- 500 + Test
- 500 -
-
- 500 + 570
- - 👉 - -
-
- Test -
-
- 180 - -
-
- - 600 + 👉
- 600 + Test
- 600 -
-
600 @@ -24888,46 +27503,15 @@ Object {
- - 👉 - -
-
- Test -
-
- 210 - -
-
- - 700 + 👉
- 700 + Test
- 700 -
-
- 700 + 630
- - 👉 - -
-
- Test -
-
- 240 - -
-
- - 800 + 👉
- 800 + Test
- 800 -
-
- 800 + 660
- - 👉 - -
-
- Test -
-
- 270 - -
-
- - 900 + 👉
- 900 + Test
- 900 -
-
- 900 + 690
- - 👉 - -
-
- Test -
-
- 300 - -
-
- - 1000 + 👉
- 1000 + Test
- 1000 -
-
- 1000 + 720
- - 👉 - -
-
- Test -
-
- 330 - -
-
- - 1100 + 👉
- 1100 + Test
- 1100 -
-
- 1100 + 750
- - 👉 - -
-
- Test -
-
- 360 - -
-
- - 1200 + 👉
- 1200 + Test
- 1200 -
-
- 1200 + 780
- - 👉 - -
-
- Test -
-
- 390 - -
-
- - 1300 + 👉
- 1300 + Test
- 1300 -
-
- 1300 + 810
- - 👉 - -
-
- Test -
-
- 420 - -
-
- - 1400 + 👉
- 1400 + Test
- 1400 -
-
- 1400 + 840
- - 👉 - -
-
- Test -
-
- 450 - -
-
- - 1500 + 👉
- 1500 + Test
- 1500 -
-
- 1500 + 870
- - 👉 - -
-
- Test -
-
- 480 - -
-
- - 1600 + 👉
- 1600 + Test
- 1600 -
-
- 1600 + 900
- - 👉 - -
-
- Test -
-
- 510 - -
-
- - 1700 + 👉
- 1700 + Test
- 1700 -
-
- 1700 + 930
- + 👉
Test
- 540 + 960
+
+
- 1800 + 👉
- 1800 + Test
- 1800 -
-
- 1800 + 990
- + 👉
Test
- 570 + 1020
+
+
- 1900 + 👉
- 1900 + Test
- 1900 -
-
- 1900 + 1050
- + 👉
Test
- 600 + 1080
+
+
- 2000 + 👉
- 2000 + Test
- 2000 -
-
- 2000 + 1110
- + 👉
Test
- 630 + 1140
+
+
- 2100 + 👉
- 2100 + Test
- 2100 -
-
- 2100 - -
-
-
-
- - 👉 - -
-
- Test -
-
- - 660 - -
-
- - 2200 - -
-
- 2200 -
-
- 2200 -
-
- - 2200 + 1170
+
+
+
+
+ , + "container":
+
+
+
+
-
- - 👉 - -
-
- Test -
-
- - 690 - -
-
- - 2300 - -
-
- 2300 -
-
- 2300 -
+ Expand + 👉 +
- - 2300 - -
+ class="inline-block w-px h-full absolute top-0 end-0 z-1 after:content-none after:absolute after:w-px after:h-[70%] after:bottom-[15%] after:end-0" + draggable="false" + role="separator" + style="cursor: col-resize;" + />
+ First Name
- - 👉 - -
-
- Test -
-
- - 720 - -
-
- - 2400 - -
-
- 2400 -
-
- 2400 -
-
- - 2400 - -
+ class="inline-block w-px h-full absolute top-0 end-0 z-1 after:content-none after:absolute after:w-px after:h-[70%] after:bottom-[15%] after:end-0" + draggable="false" + role="separator" + style="cursor: col-resize;" + />
+ Age
- - 👉 - -
-
- Test -
-
- - 750 - -
-
- - 2500 - -
-
- 2500 -
-
- 2500 -
-
- - 2500 - -
+ class="inline-block w-px h-full absolute top-0 end-0 z-1 after:content-none after:absolute after:w-px after:h-[70%] after:bottom-[15%] after:end-0" + draggable="false" + role="separator" + style="cursor: col-resize;" + />
+
+
+
+
+
+
+
+
+
-
- - 👉 - -
-
- Test -
-
- - 780 - -
-
- - 2600 - -
-
- 2600 -
-
- 2600 -
-
- - 2600 - -
+ + 👉 +
-
- - 👉 - -
-
- Test -
-
- - 810 - -
-
- - 2700 - -
-
- 2700 -
-
- 2700 -
-
- - 2700 - -
+ Test
-
- - 👉 - -
-
- Test -
-
- - 840 - -
-
- - 2800 - -
-
- 2800 -
-
- 2800 -
-
- - 2800 - -
+ + 0 +
+
+
-
- - 👉 - -
-
- Test -
-
- - 870 - -
-
- - 2900 - -
-
- 2900 -
-
- 2900 -
-
- - 2900 - -
+ + 👉 +
-
- - 👉 - -
-
- Test -
-
- - 900 - -
-
- - 3000 - -
-
- 3000 -
-
- 3000 -
-
- - 3000 - -
+ Test
-
- - 👉 - -
-
- Test -
-
- - 930 - -
-
- - 3100 - -
-
- 3100 -
-
- 3100 -
-
- - 3100 - -
+ + 30 +
+
+
-
- - 👉 - -
-
- Test -
-
- - 960 - -
-
- - 3200 - -
-
- 3200 -
-
- 3200 -
-
- - 3200 - -
+ + 👉 +
-
- - 👉 - -
-
- Test -
-
- - 990 - -
-
- - 3300 - -
-
- 3300 -
-
- 3300 -
-
- - 3300 - -
+ Test
-
- - 👉 - -
-
- Test -
-
- - 1020 - -
-
- - 3400 - -
-
- 3400 -
-
- 3400 -
-
- - 3400 - -
+ + 60 +
+
+
-
- - 👉 - -
-
- Test -
-
- - 1050 - -
-
- - 3500 - -
-
- 3500 -
-
- 3500 -
-
- - 3500 - -
-
-
-
- - 👉 - -
-
- Test -
-
- - 1080 - -
-
- - 3600 - -
-
- 3600 -
-
- 3600 -
-
- - 3600 - -
-
-
-
- - 👉 - -
-
- Test -
-
- - 1110 - -
-
- - 3700 - -
-
- 3700 -
-
- 3700 -
-
- - 3700 - -
+ + 👉 +
-
- - 👉 - -
-
- Test -
-
- - 1140 - -
-
- - 3800 - -
-
- 3800 -
-
- 3800 -
-
- - 3800 - -
+ Test
-
- - 👉 - -
-
- Test -
-
- - 1170 - -
-
- - 3900 - -
-
- 3900 -
-
- 3900 -
-
- - 3900 - -
+ + 90 +
-
-
-
- , - "container":
-
-
-
- Expand - -
- Name -
- Info -
- Progress -
- + 👉 - -
- First Name -
- Age -
- Visits - +
+
- Activity -
- Status -
- Profile Progress -
-
-
-
-
-
-
-
-
-
-
-
- + 👉
Test
- 0 + 210
+
+
- 0 + 👉
- 0 + Test
- 0 -
-
- 0 + 240
- + 👉
Test
- 30 + 270
+
+
- 100 + 👉
- 100 + Test
- 100 -
-
- 100 + 300
- + 👉
Test
- 60 + 330
+
+
- 200 + 👉
- 200 + Test
- 200 -
-
- 200 + 360
- + 👉
Test
- 90 + 390
+
+
- 300 + 👉
- 300 + Test
- 300 -
-
- 300 + 420
- + 👉
Test
- 120 + 450
+
+
- 400 + 👉
- 400 + Test
- 400 -
-
- 400 + 480
- + 👉
Test
- 150 + 510
+
+
- 500 + 👉
- 500 + Test
- 500 -
-
- 500 + 540
- + 👉
Test
- 180 + 570
+
+
- 600 + 👉
- 600 + Test
- 600 -
-
600 @@ -27983,46 +28842,46 @@ Object {
- + 👉
Test
- 210 + 630
+
+
- 700 + 👉
- 700 + Test
- 700 -
-
- 700 + 660
- + 👉
Test
- 240 + 690
+
+
- 800 + 👉
- 800 + Test
- 800 -
-
- 800 + 720
- - 👉 - -
-
- Test -
-
- 270 - -
-
- - 900 + 👉
- 900 + Test
- 900 -
-
- 900 + 750
- - 👉 - -
-
- Test -
-
- 300 - -
-
- - 1000 + 👉
- 1000 + Test
- 1000 -
-
- 1000 + 780
- - 👉 - -
-
- Test -
-
- 330 - -
-
- - 1100 + 👉
- 1100 + Test
- 1100 -
-
- 1100 + 810
- - 👉 - -
-
- Test -
-
- 360 - -
-
- - 1200 + 👉
- 1200 + Test
- 1200 -
-
- 1200 + 840
- - 👉 - -
-
- Test -
-
- 390 - -
-
- - 1300 + 👉
- 1300 + Test
- 1300 -
-
- 1300 + 870
- - 👉 - -
-
- Test -
-
- 420 - -
-
- - 1400 + 👉
- 1400 + Test
- 1400 -
-
- 1400 + 900
- - 👉 - -
-
- Test -
-
- 450 - -
-
- - 1500 + 👉
- 1500 + Test
- 1500 -
-
- 1500 + 930
- - 👉 - -
-
- Test -
-
- 480 - -
-
- - 1600 + 👉
- 1600 + Test
- 1600 -
-
- 1600 + 960
- - 👉 - -
-
- Test -
-
- 510 - -
-
- - 1700 + 👉
- 1700 + Test
- 1700 -
-
- 1700 + 990
- - 👉 - -
-
- Test -
-
- 540 - -
-
- - 1800 + 👉
- 1800 + Test
- 1800 -
-
- 1800 + 1020
- - 👉 - -
-
- Test -
-
- 570 - -
-
- - 1900 + 👉
- 1900 + Test
- 1900 -
-
- 1900 + 1050
- - 👉 - -
-
- Test -
-
- 600 - -
-
- - 2000 + 👉
- 2000 + Test
- 2000 -
-
- 2000 + 1080
- - 👉 - -
-
- Test -
-
- 630 - -
-
- - 2100 + 👉
- 2100 + Test
- 2100 -
-
- 2100 + 1110
- - 👉 - -
-
- Test -
-
- 660 - -
-
- - 2200 + 👉
- 2200 + Test
- 2200 -
-
- 2200 + 1140
- - 👉 - -
-
- Test -
-
- 690 - -
-
- - 2300 + 👉
- 2300 + Test
- 2300 -
-
- 2300 + 1170
+
+
+
+
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Table in RTL renders DeepTable 1`] = ` +Object { + "asFragment": [Function], + "baseElement": +
+
+
- - 👉 - -
-
- Test -
-
- - 720 - -
-
- - 2400 - -
-
- 2400 -
-
- 2400 + + 👉 + + +
+ Name + +
+ Age + +
+ Visits + +
+ Activity +
- - 2400 - +
+
+
+
+
- - 👉 - -
-
- Test -
-
- - 750 - -
-
- - 2500 - +
+ + 👉 + +
+
+ Test +
+
+ + 0 + +
+
+ + 0 + +
+
+ 0 +
- 2500 +
+ + 👉 + +
+
+ Test +
+
+ + 30 + +
+
+ + 100 + +
+
+ 100 +
- 2500 +
+ + 👉 + +
+
+ Test +
+
+ + 60 + +
+
+ + 200 + +
+
+ 200 +
- - 2500 - +
+ + 👉 + +
+
+ Test +
+
+ + 90 + +
+
+ + 300 + +
+
+ 300 +
-
-
- - 👉 - + + 👉 + +
+
+ Test +
+
+ + 120 + +
+
+ + 400 + +
+
+ 400 +
- Test +
+ + 👉 + +
+
+ Test +
+
+ + 150 + +
+
+ + 500 + +
+
+ 500 +
- - 780 - +
+ + 👉 + +
+
+ Test +
+
+ + 180 + +
+
+ + 600 + +
+
+ 600 +
- - 2600 - +
+ + 👉 + +
+
+ Test +
+
+ + 210 + +
+
+ + 700 + +
+
+ 700 +
- 2600 +
+ + 👉 + +
+
+ Test +
+
+ + 240 + +
+
+ + 800 + +
+
+ 800 +
- 2600 +
+ + 👉 + +
+
+ Test +
+
+ + 270 + +
+
+ + 900 + +
+
+ 900 +
- - 2600 - +
+ + 👉 + +
+
+ Test +
+
+ + 300 + +
+
+ + 1000 + +
+
+ 1000 +
-
-
- - 👉 - + + 👉 + +
+
+ Test +
+
+ + 330 + +
+
+ + 1100 + +
+
+ 1100 +
- Test +
+ + 👉 + +
+
+ Test +
+
+ + 360 + +
+
+ + 1200 + +
+
+ 1200 +
- - 810 - +
+ + 👉 + +
+
+ Test +
+
+ + 390 + +
+
+ + 1300 + +
+
+ 1300 +
- - 2700 - +
+ + 👉 + +
+
+ Test +
+
+ + 420 + +
+
+ + 1400 + +
+
+ 1400 +
- 2700 +
+ + 👉 + +
+
+ Test +
+
+ + 450 + +
+
+ + 1500 + +
+
+ 1500 +
- 2700 +
+ + 👉 + +
+
+ Test +
+
+ + 480 + +
+
+ + 1600 + +
+
+ 1600 +
- - 2700 - +
+ + 👉 + +
+
+ Test +
+
+ + 510 + +
+
+ + 1700 + +
+
+ 1700 +
-
-
- - 👉 - + + 👉 + +
+
+ Test +
+
+ + 540 + +
+
+ + 1800 + +
+
+ 1800 +
- Test +
+ + 👉 + +
+
+ Test +
+
+ + 570 + +
+
+ + 1900 + +
+
+ 1900 +
+
+
+
+
+ , + "container":
+
+
+
+
- - 840 + + 👉 +
- - 2800 - + Name +
- 2800 + Age +
- 2800 + Visits +
- - 2800 - + Activity +
+
+
+
+
+
+
+
+
+
👉
Test
@@ -29575,7 +30770,7 @@ Object { style="box-sizing: border-box; flex: 100 0 auto; min-width: 100px; width: 100px;" > - 870 + 0
- 2900 + 0
- 2900 -
-
- 2900 -
-
- - 2900 - + 0
👉
Test
@@ -29646,7 +30819,7 @@ Object { style="box-sizing: border-box; flex: 100 0 auto; min-width: 100px; width: 100px;" > - 900 + 30
- 3000 + 100
- 3000 -
-
- 3000 -
-
- - 3000 - + 100
👉
Test
@@ -29717,7 +30868,7 @@ Object { style="box-sizing: border-box; flex: 100 0 auto; min-width: 100px; width: 100px;" > - 930 + 60
- 3100 + 200 + +
+
+ 200 +
+
+
+
+ + 👉
- 3100 + Test
- 3100 + + 90 +
- 3100 + 300
+
+ 300 +
👉
Test
@@ -29788,7 +30966,7 @@ Object { style="box-sizing: border-box; flex: 100 0 auto; min-width: 100px; width: 100px;" > - 960 + 120
- 3200 + 400 + +
+
+ 400 +
+
+
+
+ + 👉
- 3200 + Test
- 3200 + + 150 +
- 3200 + 500
+
+ 500 +
👉
Test
@@ -29859,7 +31064,7 @@ Object { style="box-sizing: border-box; flex: 100 0 auto; min-width: 100px; width: 100px;" > - 990 + 180
- 3300 + 600 + +
+
+ 600 +
+
+
+
+ + 👉
- 3300 + Test
- 3300 + + 210 +
- 3300 + 700
+
+ 700 +
👉
Test
@@ -29930,7 +31162,7 @@ Object { style="box-sizing: border-box; flex: 100 0 auto; min-width: 100px; width: 100px;" > - 1020 + 240
- 3400 + 800 + +
+
+ 800 +
+
+
+
+ + 👉
- 3400 + Test
- 3400 + + 270 +
- 3400 + 900
+
+ 900 +
👉
Test
@@ -30001,7 +31260,7 @@ Object { style="box-sizing: border-box; flex: 100 0 auto; min-width: 100px; width: 100px;" > - 1050 + 300
- 3500 + 1000 + +
+
+ 1000 +
+
+
+
+ + 👉
- 3500 + Test
- 3500 + + 330 +
- 3500 + 1100
+
+ 1100 +
👉
Test
@@ -30072,7 +31358,7 @@ Object { style="box-sizing: border-box; flex: 100 0 auto; min-width: 100px; width: 100px;" > - 1080 + 360
- 3600 + 1200 + +
+
+ 1200 +
+
+
+
+ + 👉
- 3600 + Test
- 3600 + + 390 +
- 3600 + 1300
+
+ 1300 +
👉
Test
@@ -30143,7 +31456,7 @@ Object { style="box-sizing: border-box; flex: 100 0 auto; min-width: 100px; width: 100px;" > - 1110 + 420
- 3700 + 1400 + +
+
+ 1400 +
+
+
+
+ + 👉
- 3700 + Test
- 3700 + + 450 +
- 3700 + 1500
+
+ 1500 +
👉
Test
@@ -30214,7 +31554,7 @@ Object { style="box-sizing: border-box; flex: 100 0 auto; min-width: 100px; width: 100px;" > - 1140 + 480
- 3800 + 1600 + +
+
+ 1600 +
+
+
+
+ + 👉
- 3800 + Test
- 3800 + + 510 +
- 3800 + 1700
+
+ 1700 +
👉
Test
@@ -30285,7 +31652,7 @@ Object { style="box-sizing: border-box; flex: 100 0 auto; min-width: 100px; width: 100px;" > - 1170 + 540
- 3900 + 1800 + +
+
+ 1800 +
+
+
+
+ + 👉
- 3900 + Test
- 3900 + + 570 +
- 3900 + 1900
+
+ 1900 +
@@ -30381,7 +31779,7 @@ Object { } `; -exports[`Table in RTL renders LongData 1`] = ` +exports[`Table in RTL renders Default 1`] = ` Object { "asFragment": [Function], "baseElement": @@ -30392,7 +31790,6 @@ Object {
-
- Transactions - -
- Info - -
- Status - -
-
- Transaction UUID - -
- User & Supplier user + First Name
- Process time + Last Name
- Client + Age
- Game name & provider + Visits
- Amount + Activity
- Currency - -
Status
-
-
@@ -30638,2823 +31933,4938 @@ Object {
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + Test
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 0 +
- Bender (old) Coingaming + + 0 +
- Pragmatic Play + 0
- 22.97 + 0
+
+
- USD + Test
- SUCCESS + Test
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 30 +
- aleksandr@heathmonitoring.com + + 100 +
- 2023-09-19T14:31:46.105Z + 100
- Bender (old) Coingaming + 100
+
+
- Pragmatic Play + Test
- 22.97 + Test
- USD + + 60 +
- SUCCESS + + 200 +
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + 200
- aleksandr@heathmonitoring.com + 200
+
+
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + Test
- Pragmatic Play + + 90 +
- 22.97 + + 300 +
- USD + 300
- SUCCESS + 300
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + Test
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 120 +
- Bender (old) Coingaming + + 400 +
- Pragmatic Play + 400
- 22.97 + 400
+
+
+
+
+
+ , + "container":
+
+
+
+
+
+ First Name
- USD -
+ class="inline-block w-px h-full absolute top-0 end-0 z-1 after:content-none after:absolute after:w-px after:h-[70%] after:bottom-[15%] after:end-0" + draggable="false" + role="separator" + style="cursor: col-resize;" + /> +
+
+ Last Name
- SUCCESS -
+ class="inline-block w-px h-full absolute top-0 end-0 z-1 after:content-none after:absolute after:w-px after:h-[70%] after:bottom-[15%] after:end-0" + draggable="false" + role="separator" + style="cursor: col-resize;" + />
+ Age
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
+ class="inline-block w-px h-full absolute top-0 end-0 z-1 after:content-none after:absolute after:w-px after:h-[70%] after:bottom-[15%] after:end-0" + draggable="false" + role="separator" + style="cursor: col-resize;" + /> +
+
+ Visits
- aleksandr@heathmonitoring.com -
+ class="inline-block w-px h-full absolute top-0 end-0 z-1 after:content-none after:absolute after:w-px after:h-[70%] after:bottom-[15%] after:end-0" + draggable="false" + role="separator" + style="cursor: col-resize;" + /> +
+
+ Activity
+
+
+ Status + +
+
+
+
+
+
+
+
+
+
+
+
+
+ Test +
+
+ Test +
+
+ + 0 + +
+
+ + 0 + +
+
+ 0 +
+
+ 0 +
+
+
+
+ Test +
+
+ Test +
+
+ + 30 + +
+
+ + 100 + +
+
+ 100 +
+
+ 100 +
+
+
+
+ Test +
+
+ Test +
+
+ + 60 + +
+
+ + 200 + +
+
+ 200 +
+
+ 200 +
+
+
+
+ Test +
+
+ Test +
+
+ + 90 + +
+
+ + 300 + +
+
+ 300 +
+
+ 300 +
+
+
+
+ Test +
+
+ Test +
+
+ + 120 + +
+
+ + 400 + +
+
+ 400 +
+
+ 400 +
+
+
+
+
+
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Table in RTL renders Editable 1`] = ` +Object { + "asFragment": [Function], + "baseElement": +
+
+
+
+
+
- 2023-09-19T14:31:46.105Z + First Name +
- Bender (old) Coingaming + Last Name +
- Pragmatic Play + Age +
- 22.97 + Visits +
- USD + Activity +
- SUCCESS + Status +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
+ class="relative" + colspan="1" + role="columnheader" + style="box-sizing: border-box; flex: 150 0 auto; min-width: 0px; width: 150px; position: relative;" + />
- aleksandr@heathmonitoring.com -
+ class="relative" + colspan="1" + role="columnheader" + style="box-sizing: border-box; flex: 150 0 auto; min-width: 0px; width: 150px; position: relative;" + />
+
+
+
+
+
+
+
+
- 2023-09-19T14:31:46.105Z +
- Bender (old) Coingaming +
- Pragmatic Play +
- 22.97 +
- USD +
- SUCCESS +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z +
- Bender (old) Coingaming +
- Pragmatic Play +
- 22.97 +
- USD +
- SUCCESS +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming +
- Pragmatic Play +
- 22.97 +
- USD +
- SUCCESS +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z +
- Bender (old) Coingaming +
- Pragmatic Play +
- 22.97 +
- USD +
- SUCCESS +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
- aleksandr@heathmonitoring.com +
- 2023-09-19T14:31:46.105Z +
- Bender (old) Coingaming +
- Pragmatic Play +
- 22.97 +
+
+
+
+
+
+ , + "container":
+
+
+
+
+
+ First Name
- USD -
+ class="inline-block w-px h-full absolute top-0 end-0 z-1 after:content-none after:absolute after:w-px after:h-[70%] after:bottom-[15%] after:end-0" + draggable="false" + role="separator" + style="cursor: col-resize;" + /> +
+
+ Last Name
- SUCCESS -
+ class="inline-block w-px h-full absolute top-0 end-0 z-1 after:content-none after:absolute after:w-px after:h-[70%] after:bottom-[15%] after:end-0" + draggable="false" + role="separator" + style="cursor: col-resize;" + />
+ Age
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
+ class="inline-block w-px h-full absolute top-0 end-0 z-1 after:content-none after:absolute after:w-px after:h-[70%] after:bottom-[15%] after:end-0" + draggable="false" + role="separator" + style="cursor: col-resize;" + /> +
+
+ Visits
- aleksandr@heathmonitoring.com -
+ class="inline-block w-px h-full absolute top-0 end-0 z-1 after:content-none after:absolute after:w-px after:h-[70%] after:bottom-[15%] after:end-0" + draggable="false" + role="separator" + style="cursor: col-resize;" + /> +
+
+ Activity
- 2023-09-19T14:31:46.105Z -
+ class="inline-block w-px h-full absolute top-0 end-0 z-1 after:content-none after:absolute after:w-px after:h-[70%] after:bottom-[15%] after:end-0" + draggable="false" + role="separator" + style="cursor: col-resize;" + /> +
+
+ Status
- Bender (old) Coingaming -
+ class="inline-block w-px h-full absolute top-0 end-0 z-1 after:content-none after:absolute after:w-px after:h-[70%] after:bottom-[15%] after:end-0" + draggable="false" + role="separator" + style="cursor: col-resize;" + /> +
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+
+
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Table in RTL renders ExpandedRows 1`] = ` +Object { + "asFragment": [Function], + "baseElement": +
+
+
+
+
- Pragmatic Play + Expand +
- 22.97 + Name +
- USD + Info +
- SUCCESS + Progress +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 + +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + First Name +
- Bender (old) Coingaming + Age +
- Pragmatic Play + Visits +
- 22.97 + Activity +
- USD + Status +
- SUCCESS + Profile Progress +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
+ role="columnheader" + style="box-sizing: border-box; flex: 150 0 auto; min-width: 100px; width: 150px; position: sticky; z-index: 3; left: 0px;" + />
+
+
+
+
+
+
+
+
+
+
- aleksandr@heathmonitoring.com + + 👉 +
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 0 +
- Pragmatic Play + + 0 +
- 22.97 + 0
- USD + 0
- SUCCESS + + 0 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 30 +
- Pragmatic Play + + 100 +
- 22.97 + 100
- USD + 100
- SUCCESS + + 100 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 60 +
- Pragmatic Play + + 200 +
- 22.97 + 200
- USD + 200
- SUCCESS + + 200 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 90 +
- Pragmatic Play + + 300 +
- 22.97 + 300
- USD + 300
- SUCCESS + + 300 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 120 +
- Pragmatic Play + + 400 +
- 22.97 + 400
- USD + 400
- SUCCESS + + 400 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 150 +
- Pragmatic Play + + 500 +
- 22.97 + 500
- USD + 500
- SUCCESS + + 500 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 180 +
- Pragmatic Play + + 600 +
- 22.97 + 600
- USD + 600
- SUCCESS + + 600 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 210 +
- Pragmatic Play + + 700 +
- 22.97 + 700
- USD + 700
- SUCCESS + + 700 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 240 +
- Pragmatic Play + + 800 +
- 22.97 + 800
- USD + 800
- SUCCESS + + 800 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 270 +
- Pragmatic Play + + 900 +
- 22.97 + 900
- USD + 900
- SUCCESS + + 900 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 300 +
- Pragmatic Play + + 1000 +
- 22.97 + 1000
- USD + 1000
- SUCCESS + + 1000 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 330 +
- Pragmatic Play + + 1100 +
- 22.97 + 1100
- USD + 1100
- SUCCESS + + 1100 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 360 +
- Pragmatic Play + + 1200 +
- 22.97 + 1200
- USD + 1200
- SUCCESS + + 1200 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 390 +
- Pragmatic Play + + 1300 +
- 22.97 + 1300
- USD + 1300
- SUCCESS + + 1300 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 420 +
- Pragmatic Play + + 1400 +
- 22.97 + 1400
- USD + 1400
- SUCCESS + + 1400 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 450 +
- Bender (old) Coingaming + + 1500 +
- Pragmatic Play -
-
- 22.97 + 1500
- USD + 1500
- SUCCESS + + 1500 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 480 +
- Pragmatic Play + + 1600 +
- 22.97 + 1600
- USD + 1600
- SUCCESS + + 1600 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 510 +
- Pragmatic Play + + 1700 +
- 22.97 + 1700
- USD + 1700
- SUCCESS + + 1700 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 540 +
- Pragmatic Play + + 1800 +
- 22.97 + 1800
- USD + 1800
- SUCCESS + + 1800 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 570 +
- Pragmatic Play + + 1900 +
- 22.97 + 1900
- USD + 1900
- SUCCESS + + 1900 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 600 +
- Pragmatic Play + + 2000 +
- 22.97 + 2000
- USD + 2000
- SUCCESS + + 2000 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 630 +
- Pragmatic Play + + 2100 +
- 22.97 + 2100
- USD + 2100
- SUCCESS + + 2100 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 660 +
- Pragmatic Play + + 2200 +
- 22.97 + 2200
- USD + 2200
- SUCCESS + + 2200 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 690 +
- Pragmatic Play + + 2300 +
- 22.97 + 2300
- USD + 2300
- SUCCESS + + 2300 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 720 +
- Pragmatic Play + + 2400 +
- 22.97 + 2400
- USD + 2400
- SUCCESS + + 2400 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 750 +
- Pragmatic Play + + 2500 +
- 22.97 + 2500
- USD + 2500
- SUCCESS + + 2500 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 780 +
- Pragmatic Play + + 2600 +
- 22.97 + 2600
- USD + 2600
- SUCCESS + + 2600 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 810 +
- Bender (old) Coingaming + + 2700 +
- Pragmatic Play + 2700
- 22.97 + 2700
- USD + + 2700 + +
+
+
+
+ + 👉 +
+ Test +
+
+ + 840 + +
+
+ + 2800 + +
+
+ 2800 +
+
+ 2800 +
+
- SUCCESS + + 2800 +
-
-
-
-
- , - "container":
-
-
-
-
- Transactions -
- Info + class="relative box-border justify-between items-center text-start text-moon-14 px-3 py-2 rounded-s-lg text-bulma bg-goku border-goku" + data-sticky-td="true" + role="cell" + style="box-sizing: border-box; flex: 150 0 auto; min-width: 100px; width: 150px; position: sticky; z-index: 3; left: 0px;" + > + + 👉 + +
-
- Status + class="relative box-border justify-between items-center text-start text-moon-14 px-3 py-2 text-bulma bg-goku border-goku" + data-sticky-last-left-td="true" + data-sticky-td="true" + role="cell" + style="box-sizing: border-box; flex: 150 0 auto; min-width: 100px; width: 150px; position: sticky; z-index: 3; left: 150px;" + > + Test +
-
-
-
- Transaction UUID + class="relative box-border justify-between items-center text-start text-moon-14 px-3 py-2 text-bulma bg-goku border-goku" + role="cell" + style="box-sizing: border-box; flex: 100 0 auto; min-width: 100px; width: 100px;" + > + + 870 + +
-
- User & Supplier user + class="relative box-border justify-between items-center text-start text-moon-14 px-3 py-2 text-bulma bg-goku border-goku" + role="cell" + style="box-sizing: border-box; flex: 150 0 auto; min-width: 100px; width: 150px;" + > + + 2900 + +
-
- Process time + class="relative box-border justify-between items-center text-start text-moon-14 px-3 py-2 text-bulma bg-goku border-goku" + role="cell" + style="box-sizing: border-box; flex: 150 0 auto; min-width: 100px; width: 150px;" + > + 2900 +
-
- Client + class="relative box-border justify-between items-center text-start text-moon-14 px-3 py-2 text-bulma bg-goku border-goku" + role="cell" + style="box-sizing: border-box; flex: 100 0 auto; min-width: 100px; width: 100px;" + > + 2900 +
- Game name & provider +
+ + 👉 + +
+
+ Test +
+
+ + 900 + +
+
+ + 3000 + +
+
+ 3000 +
+
+ 3000 +
+
+ + 3000 + +
+
+
+
+ + 👉 + +
+
+ Test +
+
+ + 930 + +
+
+ + 3100 + +
+
+ 3100 +
+
+ 3100 +
+
+ + 3100 + +
+
+
+
+ + 👉 + +
+
+ Test +
+
+ + 960 + +
+
+ + 3200 + +
+
+ 3200 +
+
+ 3200 +
+
+ + 3200 + +
+
+
+
+ + 👉 + +
+
+ Test +
+
+ + 990 + +
+
+ + 3300 + +
+
+ 3300 +
+
+ 3300 +
+
+ + 3300 + +
+
+
+
+ + 👉 + +
+
+ Test +
+
+ + 1020 + +
+
+ + 3400 + +
+
+ 3400 +
+
+ 3400 +
+
+ + 3400 + +
+
+
+
+ + 👉 + +
+
+ Test +
+
+ + 1050 + +
+
+ + 3500 + +
+
+ 3500 +
+
+ 3500 +
+
+ + 3500 + +
+
+
+
+ + 👉 + +
+
+ Test +
+
+ + 1080 + +
+
+ + 3600 + +
+
+ 3600 +
+
+ 3600 +
+
+ + 3600 + +
+
+
+
+ + 👉 + +
+
+ Test +
+
+ + 1110 + +
+
+ + 3700 + +
+
+ 3700 +
+
+ 3700 +
+
+ + 3700 + +
+
+
+
+ + 👉 + +
+
+ Test +
+
+ + 1140 + +
+
+ + 3800 + +
+
+ 3800 +
+
+ 3800 +
+
+ + 3800 + +
+
+
+
+ + 👉 + +
+
+ Test +
+
+ + 1170 + +
+
+ + 3900 + +
+
+ 3900 +
+
+ 3900 +
+
+ + 3900 + +
+
+
+
+
+
+ , + "container":
+
+
+
+
+
+ Expand
- Amount + Name
- Currency + Info
- Status + Progress
+ style="box-sizing: border-box; flex: 150 0 auto; min-width: 100px; width: 150px; position: sticky; z-index: 3; left: 0px;" + > + + 👉 + +
+ First Name + +
+ Age + +
+ Visits + +
+ Activity + +
+ Status + +
+ Profile Progress + +
+
+
@@ -33573,2681 +37093,2841 @@ Object {
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 0 +
- Pragmatic Play + + 0 +
- 22.97 + 0
- USD + 0
- SUCCESS + + 0 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 30 +
- Pragmatic Play + + 100 +
- 22.97 + 100
- USD + 100
- SUCCESS + + 100 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 60 +
- Pragmatic Play + + 200 +
- 22.97 + 200
- USD + 200
- SUCCESS + + 200 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 90 +
- Pragmatic Play + + 300 +
- 22.97 + 300
- USD + 300
- SUCCESS + + 300 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 120 +
- Pragmatic Play + + 400 +
- 22.97 + 400
- USD + 400
- SUCCESS + + 400 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 150 +
- Pragmatic Play + + 500 +
- 22.97 + 500
- USD + 500
- SUCCESS + + 500 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 180 +
- Pragmatic Play + + 600 +
- 22.97 + 600
- USD + 600
- SUCCESS + + 600 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 210 +
- Pragmatic Play + + 700 +
- 22.97 + 700
- USD + 700
- SUCCESS + + 700 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 240 +
- Pragmatic Play + + 800 +
- 22.97 + 800
- USD + 800
- SUCCESS + + 800 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 270 +
- Pragmatic Play + + 900 +
- 22.97 + 900
- USD + 900
- SUCCESS + + 900 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 300 +
- Pragmatic Play + + 1000 +
- 22.97 + 1000
- USD + 1000
- SUCCESS + + 1000 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 330 +
- Pragmatic Play + + 1100 +
- 22.97 + 1100
- USD + 1100
- SUCCESS + + 1100 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 360 +
- Pragmatic Play + + 1200 +
- 22.97 + 1200
- USD + 1200
- SUCCESS + + 1200 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 390 +
- Pragmatic Play + + 1300 +
- 22.97 + 1300
- USD + 1300
- SUCCESS + + 1300 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 420 +
- Pragmatic Play + + 1400 +
- 22.97 + 1400
- USD + 1400
- SUCCESS + + 1400 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 450 +
- Pragmatic Play + + 1500 +
- 22.97 + 1500
- USD + 1500
- SUCCESS + + 1500 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 480 +
- Pragmatic Play + + 1600 +
- 22.97 + 1600
- USD + 1600
- SUCCESS + + 1600 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 510 +
- Pragmatic Play + + 1700 +
- 22.97 + 1700
- USD + 1700
- SUCCESS + + 1700 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 540 +
- Bender (old) Coingaming + + 1800 +
- Pragmatic Play + 1800
- 22.97 + 1800
- USD -
-
- SUCCESS + + 1800 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 570 +
- Pragmatic Play + + 1900 +
- 22.97 + 1900
- USD + 1900
- SUCCESS + + 1900 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 600 +
- Pragmatic Play + + 2000 +
- 22.97 + 2000
- USD + 2000
- SUCCESS + + 2000 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 630 +
- Pragmatic Play + + 2100 +
- 22.97 + 2100
- USD + 2100
- SUCCESS + + 2100 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 660 +
- Pragmatic Play + + 2200 +
- 22.97 + 2200
- USD + 2200
- SUCCESS + + 2200 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 690 +
- Pragmatic Play + + 2300 +
- 22.97 + 2300
- USD + 2300
- SUCCESS + + 2300 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 720 +
- Pragmatic Play + + 2400 +
- 22.97 + 2400
- USD + 2400
- SUCCESS + + 2400 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 750 +
- Pragmatic Play + + 2500 +
- 22.97 + 2500
- USD + 2500
- SUCCESS + + 2500 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 780 +
- Pragmatic Play + + 2600 +
- 22.97 + 2600
- USD + 2600
- SUCCESS + + 2600 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 810 +
- Pragmatic Play + + 2700 +
- 22.97 + 2700
- USD + 2700
- SUCCESS + + 2700 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 840 +
- Pragmatic Play + + 2800 +
- 22.97 + 2800
- USD + 2800
- SUCCESS + + 2800 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 870 +
- Pragmatic Play + + 2900 +
- 22.97 + 2900
- USD + 2900
- SUCCESS + + 2900 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 900 +
- Pragmatic Play + + 3000 +
- 22.97 + 3000
- USD + 3000
- SUCCESS + + 3000 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 930 +
- Pragmatic Play + + 3100 +
- 22.97 + 3100
- USD + 3100
- SUCCESS + + 3100 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 960 +
- Pragmatic Play + + 3200 +
- 22.97 + 3200
- USD + 3200
- SUCCESS + + 3200 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 990 +
- Pragmatic Play + + 3300 +
- 22.97 + 3300
- USD + 3300
- SUCCESS + + 3300 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 1020 +
- Pragmatic Play + + 3400 +
- 22.97 + 3400
- USD + 3400
- SUCCESS + + 3400 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming + + 1050 +
- Pragmatic Play + + 3500 +
- 22.97 + 3500
- USD + 3500
- SUCCESS + + 3500 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 1080 +
- Pragmatic Play + + 3600 +
- 22.97 + 3600
- USD + 3600
- SUCCESS + + 3600 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 1110 +
- Pragmatic Play + + 3700 +
- 22.97 + 3700
- USD + 3700
- SUCCESS + + 3700 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 1140 +
- Pragmatic Play + + 3800 +
- 22.97 + 3800
- USD + 3800
- SUCCESS + + 3800 +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 👉 +
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 1170 +
- Pragmatic Play + + 3900 +
- 22.97 + 3900
- USD + 3900
- SUCCESS + + 3900 +
@@ -36308,7 +39988,7 @@ Object { } `; -exports[`Table in RTL renders MiniMap 1`] = ` +exports[`Table in RTL renders LongData 1`] = ` Object { "asFragment": [Function], "baseElement": @@ -36317,5411 +39997,6504 @@ Object { dir="rtl" >
+ Transactions
- Name - -
- Info - -
- Progress - + class="inline-block w-px h-full absolute top-0 end-0 z-1 after:content-none after:absolute after:w-px after:h-[70%] after:bottom-[15%] after:end-0" + draggable="false" + role="separator" + style="cursor: col-resize;" + />
+ Info
- First Name - -
- Last Name - -
- Age - + class="inline-block w-px h-full absolute top-0 end-0 z-1 after:content-none after:absolute after:w-px after:h-[70%] after:bottom-[15%] after:end-0" + draggable="false" + role="separator" + style="cursor: col-resize;" + /> +
+
+ Status
- Visits - + class="inline-block w-px h-full absolute top-0 end-0 z-1 after:content-none after:absolute after:w-px after:h-[70%] after:bottom-[15%] after:end-0" + draggable="false" + role="separator" + style="cursor: col-resize;" + /> +
+
+
+
+ Transaction UUID
- Activity - + class="inline-block w-px h-full absolute top-0 end-0 z-1 after:content-none after:absolute after:w-px after:h-[70%] after:bottom-[15%] after:end-0" + draggable="false" + role="separator" + style="cursor: col-resize;" + /> +
+
+ User & Supplier user
- Profile Progress - + class="inline-block w-px h-full absolute top-0 end-0 z-1 after:content-none after:absolute after:w-px after:h-[70%] after:bottom-[15%] after:end-0" + draggable="false" + role="separator" + style="cursor: col-resize;" + />
+ Process time
+
+
+ Client
+
+
+ Game name & provider
+
+
+ Amount
+
+
+ Currency
+
+
+ Status
+
+
+
+
+
+
+
+
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test -
-
- Test -
-
- - 0 - -
-
- - 0 - -
-
- 0 -
-
- - 0 - + USD
- Test + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test + USD
+
+
- - 30 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 100 - + USD
+
+
- 100 + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 100 - + USD
- Test -
-
- Test -
-
- - 60 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 200 - + USD
+
+
- 200 + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 200 - + USD
- Test + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test + USD
+
+
- - 90 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 300 - + USD
+
+
- 300 + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 300 - + USD
- Test + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test + USD
+
+
- - 120 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 400 - + USD
+
+
- 400 + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 400 - + USD
- Test + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test + USD
+
+
- - 150 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 500 - + USD
+
+
- 500 + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 500 - + USD
- Test + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test + USD
+
+
- - 180 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 600 - + USD
+
+
- 600 -
-
- - 600 - + SUCCESS
+
+
-
- Test -
-
- Test -
-
- - 210 - -
-
- - 700 - -
-
- 700 -
-
- - 700 - -
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
-
- Test -
-
- Test -
-
- - 240 - -
-
- - 800 - -
-
- 800 -
-
- - 800 - -
+ aleksandr@heathmonitoring.com
-
- Test -
-
- Test -
-
- - 270 - -
-
- - 900 - -
-
- 900 -
-
- - 900 - -
+ 2023-09-19T14:31:46.105Z
-
- Test -
-
- Test -
-
- - 300 - -
-
- - 1000 - -
-
- 1000 -
-
- - 1000 - -
+ Bender (old) Coingaming
-
- Test -
-
- Test -
-
- - 330 - -
-
- - 1100 - -
-
- 1100 -
-
- - 1100 - -
+ Pragmatic Play
-
- Test -
-
- Test -
-
- - 360 - -
-
- - 1200 - -
-
- 1200 -
-
- - 1200 - -
+ 22.97
- Test -
-
- Test -
-
- - 390 - -
-
- - 1300 - -
-
- 1300 -
-
- - 1300 - + USD
- Test -
-
- Test -
-
- - 420 - -
-
- - 1400 - -
-
- 1400 -
-
- - 1400 - + SUCCESS
+
+
-
- Test -
-
- Test -
-
- - 450 - -
-
- - 1500 - -
-
- 1500 -
-
- - 1500 - -
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
-
- Test -
-
- Test -
-
- - 480 - -
-
- - 1600 - -
-
- 1600 -
-
- - 1600 - -
+ aleksandr@heathmonitoring.com
-
- Test -
-
- Test -
-
- - 510 - -
-
- - 1700 - -
-
- 1700 -
-
- - 1700 - -
+ 2023-09-19T14:31:46.105Z
-
- Test -
-
- Test -
-
- - 540 - -
-
- - 1800 - -
-
- 1800 -
-
- - 1800 - -
+ Bender (old) Coingaming
-
- Test -
-
- Test -
-
- - 570 - -
-
- - 1900 - -
-
- 1900 -
-
- - 1900 - -
+ Pragmatic Play
-
-
-
-
-