From 6d0e2ef31e0d70f1ea5e3a70c0762058210ec5aa Mon Sep 17 00:00:00 2001 From: moon-ds Date: Fri, 10 Nov 2023 10:45:35 +0500 Subject: [PATCH] fix: a few mistakes have been corrected --- next-docs/pages/components/table.tsx | 2 +- .../examples/table/ExpandedWithKeepState.tsx | 107 +- .../__snapshots__/index.test.tsx.snap | 120580 +++++++++------ workspaces/tables/src/components/Table.tsx | 6 +- .../tables/src/private/types/TableProps.ts | 2 +- 5 files changed, 70107 insertions(+), 50590 deletions(-) diff --git a/next-docs/pages/components/table.tsx b/next-docs/pages/components/table.tsx index 7ce9374cbf..5c0f8fd726 100644 --- a/next-docs/pages/components/table.tsx +++ b/next-docs/pages/components/table.tsx @@ -191,7 +191,7 @@ const PageTable = () => { description: 'Divider between cells', }, { - name: 'keptStates', + name: 'keptState', type: '{ expandedRows: {[key: string]: boolean; }[] }', required: false, default: '-', diff --git a/next-docs/public/examples/table/ExpandedWithKeepState.tsx b/next-docs/public/examples/table/ExpandedWithKeepState.tsx index 561dbe29a2..4d3bf5109a 100644 --- a/next-docs/public/examples/table/ExpandedWithKeepState.tsx +++ b/next-docs/public/examples/table/ExpandedWithKeepState.tsx @@ -1,8 +1,7 @@ -import React, { ReactNode, useEffect, useMemo, useState } from 'react'; -import { useRouter } from 'next/router'; +import React, { ReactNode, useEffect, useState } from 'react'; import { Table } from '@heathmont/moon-table-tw'; import { Button, Chip, Modal, Tooltip } from '@heathmont/moon-core-tw'; -import { ArrowsRefreshRound, ControlsChevronDown, ControlsChevronRight } from '@heathmont/moon-icons-tw'; +import { ControlsChevronDown, ControlsChevronRight, OtherFrame } from '@heathmont/moon-icons-tw'; import KeptStateProps from '@heathmont/moon-table-tw/lib/private/types/KeptStateProps'; interface HeaderProps { @@ -34,14 +33,13 @@ const Example = () => { setAllExpandableRowSet( Object.values(rowsById) .filter(({ canExpand }) => canExpand) - .map(({ id }) => ({[id]: true})) - )}, []); - setAllRowsExpandedState(isAllRowsExpanded); + .map(({ id }) => ({[id]: isAllRowsExpanded})) + )}, [rowsById, isAllRowsExpanded]); return (
{ - (e.target as HTMLElement).closest('span') !== null && toggleAllRowsExpandedState(isAllRowsExpanded) + (e.target as HTMLElement).closest('span') !== null && toggleAllRowsExpandedState(allRowsExpandedState) }} > @@ -51,24 +49,24 @@ const Example = () => { ) }, Cell: ({ row }: any) => -
{ - (e.target as HTMLElement).closest('span') !== null && toggleRowExpandedState(row) - }} - > - {row.canExpand ? ( - - {row.isExpanded ? : } - - ) : null} -
+
{ + (e.target as HTMLElement).closest('span') !== null && toggleRowExpandedState(row) + }} + > + {row.canExpand ? ( + + {row.isExpanded ? : } + + ) : null} +
}, ], }, @@ -123,37 +121,34 @@ const Example = () => { }, ]; - const router = useRouter(); - const [isOpen, setIsOpen] = useState(false); const [title, setTitle] = useState(''); const [panel, setPanel] = useState(); - const [expandedRows, setExpandedRows] = useState<{[key: string]: boolean}[]>([]); - const [allExpandableRowSet, setAllExpandableRowSet] = useState<{[key: string]: boolean}[]>([]); + const [expandedRows, setExpandedRows] = useState<{[key: string]: boolean}[] | undefined>(); + const [allExpandableRowSet, setAllExpandableRowSet] = useState<{[key: string]: boolean}[] | undefined>(); const [allRowsExpandedState, setAllRowsExpandedState] = useState(false); - const [keptStates, setKeptStates] = useState({}); + const [keptState, setKeptState] = useState({}); const closeModal = () => { setIsOpen(false); - storeTableState(PREFIX, { expandedRows: allRowsExpandedState ? allExpandableRowSet : expandedRows }); - router.reload(); + storeTableState(PREFIX, { expandedRows: expandedRows }); + document.location.reload(); }; const openModal = () => setIsOpen(true); const toggleRowExpandedState = ( - { - id, - canExpand, - isExpanded, - }: { id: string, canExpand: boolean, isExpanded: boolean } + { + id, + canExpand, + isExpanded, + }: { id: string, canExpand: boolean, isExpanded: boolean } ) => { if (canExpand) { setExpandedRows((er) => { - const expanded = isExpanded ? er.filter(item => !item[id]) : [...er, {[id]: true}]; - setAllExpandableRowSet((ers) => { - setAllRowsExpandedState(ers.length === expanded.length); - return ers; - }); - return expanded; + return isExpanded + ? er?.filter(item => !item[id]) + : er + ? [...er, {[id]: true}] + : [{[id]: true}]; }); } }; @@ -165,14 +160,13 @@ const Example = () => { if (allExpanded) { setExpandedRows([]); } else { - setExpandedRows(ers.map(item => item)); + setExpandedRows(ers?.map(item => item)); } return ers; }); } - /** This saves the table state into the LocalStorage */ const storeTableState = ( prefix: string, @@ -191,7 +185,7 @@ const Example = () => { const states = JSON.parse(storedData); if (states.expandedRows) { setExpandedRows(states.expandedRows); - setKeptStates({expandedRows: states.expandedRows}); + setKeptState({expandedRows: states.expandedRows}); } } catch (e) { } finally { @@ -200,7 +194,16 @@ const Example = () => { } useEffect(() => { restoreTableState(PREFIX) }, []); - useEffect(() => { console.log(allRowsExpandedState); }, [allRowsExpandedState]); + useEffect(() => { + allRowsExpandedState && setExpandedRows(allExpandableRowSet?.map(item => item)) + }, [allRowsExpandedState]); + + useEffect(() => { + if (allExpandableRowSet) { + expandedRows && setAllRowsExpandedState(allExpandableRowSet.length === expandedRows.length); + !expandedRows && setAllRowsExpandedState(allExpandableRowSet.every(row => Object.values(row)[0])); + } + }, [expandedRows, allExpandableRowSet]); const tooltip = (tip: string, modal: { title: string; panel: () => ReactNode }) => ( @@ -208,11 +211,11 @@ const Example = () => { } + iconOnly={} onClick={() => { setTitle(modal.title); setPanel(modal.panel); - router.push('/components/table', '/components/table#expandableKeepState'); + document.location.assign('/components/table#expandableKeepState'); openModal(); }} /> @@ -290,8 +293,8 @@ const Example = () => { defaultColumn={defaultColumn} width={800} height={400} - keptStates={keptStates} - expandedByDefault={true} + keptState={keptState} + /* expandedByDefault={true} */ /> @@ -305,7 +308,7 @@ const Example = () => { {panel}
- +
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 d625be5321..c63a4b86ca 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 @@ -55663,7 +55663,7 @@ Object { } `; -exports[`Table in RTL renders LongData 1`] = ` +exports[`Table in RTL renders ExpandedWithKeepState 1`] = ` Object { "asFragment": [Function], "baseElement": @@ -55674,7 +55674,7 @@ Object {
+ Expand + +
- Transactions + Name
Info
- Status + Actions
- Transaction UUID +
+ + + + + +
- User & Supplier user + First Name
- Process time + Age
- Client + Visits
- Game name & provider + Activity
- Amount + Status
- Currency + Profile Progress
- Status + Actions
@@ -55920,3001 +55957,4561 @@ Object {
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 0 +
- Bender (old) Coingaming + + 0 +
- Pragmatic Play + 0
- 22.97 + 0
-
- USD -
+ + 0 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 30 +
- Bender (old) Coingaming + + 100 +
- Pragmatic Play + 100
- 22.97 + 100
-
- USD -
+ + 100 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 60 +
- Bender (old) Coingaming + + 200 +
- Pragmatic Play + 200
- 22.97 + 200
-
- USD -
+ + 200 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 90 +
- Bender (old) Coingaming + + 300 +
- Pragmatic Play + 300
- 22.97 + 300
-
- USD -
+ + 300 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
+
+ + + + + +
+
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 120 +
- Bender (old) Coingaming + + 400 +
- Pragmatic Play + 400
- 22.97 + 400
-
- USD -
+ + 400 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 150 +
- Bender (old) Coingaming + + 500 +
- Pragmatic Play + 500
- 22.97 + 500
-
- USD -
+ + 500 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 180 +
- Bender (old) Coingaming + + 600 +
- Pragmatic Play + 600
- 22.97 + 600
-
- USD -
+ + 600 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 210 +
- Bender (old) Coingaming + + 700 +
- Pragmatic Play + 700
- 22.97 + 700
-
- USD -
+ + 700 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 240 +
- Bender (old) Coingaming + + 800 +
- Pragmatic Play + 800
- 22.97 + 800
-
- USD -
+ + 800 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
+ + + + + +
+
+
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 270 +
- Pragmatic Play + + 900 +
- 22.97 + 900
-
- USD -
+ 900
+ + 900 + +
+
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 300 +
- Bender (old) Coingaming + + 1000 +
- Pragmatic Play + 1000
- 22.97 + 1000
-
- USD -
+ + 1000 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 330 +
- Bender (old) Coingaming + + 1100 +
- Pragmatic Play + 1100
- 22.97 + 1100
-
- USD -
+ + 1100 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 360 +
- Bender (old) Coingaming + + 1200 +
- Pragmatic Play + 1200
- 22.97 + 1200
-
- USD -
+ + 1200 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 390 +
- Bender (old) Coingaming + + 1300 +
- Pragmatic Play + 1300
- 22.97 + 1300
-
- USD -
+ + 1300 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
+ + + + + +
+
+
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 420 +
- Bender (old) Coingaming + + 1400 +
- Pragmatic Play + 1400
- 22.97 + 1400
-
- USD -
+ + 1400 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 450 +
- Bender (old) Coingaming + + 1500 +
- Pragmatic Play + 1500
- 22.97 + 1500
-
- USD -
+ + 1500 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 480 +
- Bender (old) Coingaming + + 1600 +
- Pragmatic Play + 1600
- 22.97 + 1600
-
- USD -
+ + 1600 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 510 +
- Bender (old) Coingaming + + 1700 +
- Pragmatic Play + 1700
- 22.97 + 1700
-
- USD -
+ + 1700 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 540 +
- Bender (old) Coingaming + + 1800 +
- Pragmatic Play + 1800
- 22.97 + 1800
-
- USD -
+ + 1800 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com +
+ + + + + +
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 570 +
- Pragmatic Play + + 1900 +
- 22.97 + 1900
-
- USD -
+ 1900
+ + 1900 + +
+
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 600 +
- Bender (old) Coingaming + + 2000 +
- Pragmatic Play + 2000
- 22.97 + 2000
-
- USD -
+ + 2000 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 630 +
- Bender (old) Coingaming + + 2100 +
- Pragmatic Play + 2100
- 22.97 + 2100
-
- USD -
+ + 2100 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 660 +
- Bender (old) Coingaming + + 2200 +
- Pragmatic Play + 2200
- 22.97 + 2200
-
- USD -
+ + 2200 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 690 +
- Bender (old) Coingaming + + 2300 +
- Pragmatic Play + 2300
- 22.97 + 2300
-
- USD -
+ + 2300 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com +
+ + + + + +
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 720 +
- Pragmatic Play + + 2400 +
- 22.97 + 2400
-
- USD -
+ 2400
+ + 2400 + +
+
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 750 +
- Bender (old) Coingaming + + 2500 +
- Pragmatic Play + 2500
- 22.97 + 2500
-
- USD -
+ + 2500 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 780 +
- Bender (old) Coingaming + + 2600 +
- Pragmatic Play + 2600
- 22.97 + 2600
-
- USD -
+ + 2600 +
-
- SUCCESS -
+ + + +
- 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 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 840 +
- Bender (old) Coingaming + + 2800 +
- Pragmatic Play + 2800
- 22.97 + 2800
-
- USD -
+ + 2800 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com +
+ + + + + +
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 870 +
- Pragmatic Play + + 2900 +
- 22.97 + 2900
-
- USD -
+ 2900
+ + 2900 + +
+
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 900 +
- Bender (old) Coingaming + + 3000 +
- Pragmatic Play + 3000
- 22.97 + 3000
-
- USD -
+ + 3000 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 930 +
- Bender (old) Coingaming + + 3100 +
- Pragmatic Play + 3100
- 22.97 + 3100
-
- USD -
+ + 3100 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 960 +
- Bender (old) Coingaming + + 3200 +
- Pragmatic Play + 3200
- 22.97 + 3200
-
- USD -
+ + 3200 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 990 +
- Bender (old) Coingaming + + 3300 +
- Pragmatic Play + 3300
- 22.97 + 3300
-
- USD -
+ + 3300 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com +
+ + + + + +
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 1020 +
- Pragmatic Play + + 3400 +
- 22.97 + 3400
-
- USD -
+ 3400
+ + 3400 + +
+
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 1050 +
- Bender (old) Coingaming + + 3500 +
- Pragmatic Play + 3500
- 22.97 + 3500
-
- USD -
+ + 3500 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 1080 +
- Bender (old) Coingaming + + 3600 +
- Pragmatic Play + 3600
- 22.97 + 3600
-
- USD -
+ + 3600 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 1110 +
- Bender (old) Coingaming + + 3700 +
- Pragmatic Play + 3700
- 22.97 + 3700
-
- USD -
+ + 3700 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 1140 +
- Bender (old) Coingaming + + 3800 +
- Pragmatic Play + 3800
- 22.97 + 3800
-
- USD -
+ + 3800 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com +
+ + + + + +
- 2023-09-19T14:31:46.105Z + Test
- Bender (old) Coingaming + + 1170 +
- Pragmatic Play + + 3900 +
- 22.97 + 3900
-
- USD -
+ 3900
+ + 3900 + +
+
-
- SUCCESS -
+ + + +
@@ -58929,7 +60526,7 @@ Object {
+ Expand + +
- Transactions + Name
Info
- Status + Actions
- Transaction UUID +
+ + + + + +
- User & Supplier user + First Name
- Process time + Age
- Client + Visits
- Game name & provider + Activity
- Amount + Status
- Currency + Profile Progress
- Status + Actions
@@ -59175,3001 +60809,4561 @@ Object {
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 0 +
- Bender (old) Coingaming + + 0 +
- Pragmatic Play + 0
- 22.97 + 0
-
- USD -
+ + 0 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 30 +
- Bender (old) Coingaming + + 100 +
- Pragmatic Play + 100
- 22.97 + 100
-
- USD -
+ + 100 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 60 +
- Bender (old) Coingaming + + 200 +
- Pragmatic Play + 200
- 22.97 + 200
-
- USD -
+ + 200 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 90 +
- Bender (old) Coingaming + + 300 +
- Pragmatic Play + 300
- 22.97 + 300
-
- USD -
+ + 300 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 120 +
- Bender (old) Coingaming + + 400 +
- Pragmatic Play + 400
- 22.97 + 400
-
- USD -
+ + 400 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 150 +
- Bender (old) Coingaming + + 500 +
- Pragmatic Play + 500
- 22.97 + 500
-
- USD -
+ + 500 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 180 +
- Bender (old) Coingaming + + 600 +
- Pragmatic Play + 600
- 22.97 + 600
-
- USD -
+ + 600 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 210 +
- Bender (old) Coingaming + + 700 +
- Pragmatic Play + 700
- 22.97 + 700
-
- USD -
+ + 700 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
+
+ + + + + +
+
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 240 +
- Bender (old) Coingaming + + 800 +
- Pragmatic Play + 800
- 22.97 + 800
-
- USD -
+ + 800 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 270 +
- Bender (old) Coingaming + + 900 +
- Pragmatic Play + 900
- 22.97 + 900
-
- USD -
+ + 900 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 300 +
- Bender (old) Coingaming + + 1000 +
- Pragmatic Play + 1000
- 22.97 + 1000
-
- USD -
+ + 1000 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 330 +
- Bender (old) Coingaming + + 1100 +
- Pragmatic Play + 1100
- 22.97 + 1100
-
- USD -
+ + 1100 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 360 +
- Bender (old) Coingaming + + 1200 +
- Pragmatic Play + 1200
- 22.97 + 1200
-
- USD -
+ + 1200 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
+
+ + + + + +
+
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 390 +
- Bender (old) Coingaming + + 1300 +
- Pragmatic Play + 1300
- 22.97 + 1300
-
- USD -
+ + 1300 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 420 +
- Bender (old) Coingaming + + 1400 +
- Pragmatic Play + 1400
- 22.97 + 1400
-
- USD -
+ + 1400 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 450 +
- Bender (old) Coingaming + + 1500 +
- Pragmatic Play + 1500
- 22.97 + 1500
-
- USD -
+ + 1500 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 480 +
- Bender (old) Coingaming + + 1600 +
- Pragmatic Play + 1600
- 22.97 + 1600
-
- USD -
+ + 1600 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 510 +
- Bender (old) Coingaming + + 1700 +
- Pragmatic Play + 1700
- 22.97 + 1700
-
- USD -
+ + 1700 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
+
+ + + + + +
+
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 540 +
- Bender (old) Coingaming + + 1800 +
- Pragmatic Play + 1800
- 22.97 + 1800
-
- USD -
+ + 1800 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 570 +
- Bender (old) Coingaming + + 1900 +
- Pragmatic Play + 1900
- 22.97 + 1900
-
- USD -
+ + 1900 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 600 +
- Bender (old) Coingaming + + 2000 +
- Pragmatic Play + 2000
- 22.97 + 2000
-
- USD -
+ + 2000 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 630 +
- Bender (old) Coingaming + + 2100 +
- Pragmatic Play + 2100
- 22.97 + 2100
-
- USD -
+ + 2100 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 660 +
- Bender (old) Coingaming + + 2200 +
- Pragmatic Play + 2200
- 22.97 + 2200
-
- USD -
+ + 2200 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
+
+ + + + + +
+
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 690 +
- Bender (old) Coingaming + + 2300 +
- Pragmatic Play + 2300
- 22.97 + 2300
-
- USD -
+ + 2300 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 720 +
- Bender (old) Coingaming + + 2400 +
- Pragmatic Play + 2400
- 22.97 + 2400
-
- USD -
+ + 2400 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 750 +
- Bender (old) Coingaming + + 2500 +
- Pragmatic Play + 2500
- 22.97 + 2500
-
- USD -
+ + 2500 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 780 +
- Bender (old) Coingaming + + 2600 +
- Pragmatic Play + 2600
- 22.97 + 2600
-
- USD -
+ + 2600 +
-
- SUCCESS -
+ + + +
- 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 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
+
+ + + + + +
+
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 840 +
- Bender (old) Coingaming + + 2800 +
- Pragmatic Play + 2800
- 22.97 + 2800
-
- USD -
+ + 2800 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 870 +
- Bender (old) Coingaming + + 2900 +
- Pragmatic Play + 2900
- 22.97 + 2900
-
- USD -
+ + 2900 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 900 +
- Bender (old) Coingaming + + 3000 +
- Pragmatic Play + 3000
- 22.97 + 3000
-
- USD -
+ + 3000 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 930 +
- Bender (old) Coingaming + + 3100 +
- Pragmatic Play + 3100
- 22.97 + 3100
-
- USD -
+ + 3100 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 960 +
- Bender (old) Coingaming + + 3200 +
- Pragmatic Play + 3200
- 22.97 + 3200
-
- USD -
+ + 3200 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
+
+ + + + + +
+
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 990 +
- Bender (old) Coingaming + + 3300 +
- Pragmatic Play + 3300
- 22.97 + 3300
-
- USD -
+ + 3300 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 1020 +
- Bender (old) Coingaming + + 3400 +
- Pragmatic Play + 3400
- 22.97 + 3400
-
- USD -
+ + 3400 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 1050 +
- Bender (old) Coingaming + + 3500 +
- Pragmatic Play + 3500
- 22.97 + 3500
-
- USD -
+ + 3500 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 1080 +
- Bender (old) Coingaming + + 3600 +
- Pragmatic Play + 3600
- 22.97 + 3600
-
- USD -
+ + 3600 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 1110 +
- Bender (old) Coingaming + + 3700 +
- Pragmatic Play + 3700
- 22.97 + 3700
-
- USD -
+ + 3700 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
+
+ + + + + +
+
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 1140 +
- Bender (old) Coingaming + + 3800 +
- Pragmatic Play + 3800
- 22.97 + 3800
-
- USD -
+ + 3800 +
-
- SUCCESS -
+ + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ + + + + +
- aleksandr@heathmonitoring.com + Test
- 2023-09-19T14:31:46.105Z + + 1170 +
- Bender (old) Coingaming + + 3900 +
- Pragmatic Play + 3900
- 22.97 + 3900
-
- USD -
+ + 3900 +
-
- SUCCESS -
+ + + +
@@ -62230,7 +65424,7 @@ Object { } `; -exports[`Table in RTL renders MiniMap 1`] = ` +exports[`Table in RTL renders LongData 1`] = ` Object { "asFragment": [Function], "baseElement": @@ -62239,4080 +65433,8235 @@ 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 - -
- Visits - -
- 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;" + /> +
+
+ Status
- 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;" + />
+
+
+ Transaction UUID
+
+
+ User & Supplier user
+
+
+ Process time
+
+
+ Client
+
+
+ Game name & provider
+
+
+ Amount
-
-
+ Currency
- Test -
-
- Test -
+ 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
- - 0 - -
+ 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;" + /> +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 0 - + USD
+
+
- 0 + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 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 - -
-
- - 200 - + 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 +
+
- Test + USD
+
+
- Test + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 90 - + USD
+
+
- - 300 - + 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 +
+
- Test + USD
+
+
- Test + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 120 - + USD
+
+
- - 400 - -
-
- 400 -
-
- - 400 - + SUCCESS
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test -
-
- 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 + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 600 - + USD
- Test -
-
- Test -
-
- - 210 - -
-
- - 700 - -
-
- 700 + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 700 - + USD
- Test + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test + USD
+
+
- - 240 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 800 - + USD
+
+
- 800 + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 800 - + USD
- Test + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test + USD
+
+
- - 270 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 900 - + USD
+
+
- 900 -
-
- - 900 - + SUCCESS
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test -
-
- Test -
-
- - 300 - + USD
+
+
- - 1000 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- 1000 + USD
+
+
- - 1000 - + SUCCESS
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test + USD
+
+
- Test + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 330 - + USD
+
+
- - 1100 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- 1100 + USD
+
+
- - 1100 - + SUCCESS
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test + USD
+
+
- Test -
-
- - 360 - -
-
- - 1200 - -
-
- 1200 + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 1200 - + USD
- Test + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test + USD
+
+
- - 390 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 1300 - + USD
+
+
- 1300 + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 1300 - + USD
- Test + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test + USD
+
+
- - 420 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 1400 - + USD
+
+
- 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
+ Pragmatic Play +
+
+ 22.97 +
+
- Test -
-
- Test -
-
- - 570 - -
-
- - 1900 - -
-
- 1900 + USD
+
+
- - 1900 - + SUCCESS
-
-
-
-
- , - "container":
-
-
-
-
-
+ 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: 150 0 auto; min-width: 10px; width: 150px;" + > + Pragmatic Play +
- Name -
- Info
- Progress
- First Name -
- Last Name -
- Age - -
- Visits - -
- Activity - -
- Profile Progress - -
-
-
-
-
-
-
-
-
-
-
-
-
- Test + 2023-09-19T14:31:46.105Z
- Test + Bender (old) Coingaming
- - 0 - + Pragmatic Play
- - 0 - + 22.97
- 0 +
+ USD +
- - 0 - +
+ SUCCESS +
- Test + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test -
-
- - 30 - -
-
- - 100 - -
-
- 100 -
-
- - 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 + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
- Test -
-
- - 90 - -
-
- - 300 - -
-
- 300 -
-
- - 300 - + aleksandr@heathmonitoring.com
-
-
- Test + 2023-09-19T14:31:46.105Z
- Test + Bender (old) Coingaming
- - 120 - + Pragmatic Play
- - 400 - + 22.97
- 400 +
+ USD +
- - 400 - +
+ SUCCESS +
+
+
+
+
+ , + "container":
+
+
+
+
+ Transactions
- Test -
-
- Test -
-
- - 150 - -
-
- - 500 - -
+ 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
- 500 -
+ 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
- - 500 - -
+ 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
- Test -
-
- Test -
-
- - 180 - -
-
- - 600 - -
-
- 600 -
-
- - 600 - -
+ 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
- Test -
+ 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
- Test -
+ 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;" + /> +
+
+ Client
- - 210 - -
+ 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;" + /> +
+
+ Game name & provider
- - 700 - -
+ 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;" + /> +
+
+ Amount
- 700 -
+ 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;" + /> +
+
+ Currency
- - 700 - -
+ 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
- Test -
+ 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;" + /> +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test + USD
+
+
- - 240 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 800 - + USD
+
+
- 800 + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 800 - + USD
- Test -
-
- Test -
-
- - 270 - -
-
- - 900 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- 900 + USD
+
+
- - 900 - + SUCCESS
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test + USD
+
+
- Test + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 300 - + USD
+
+
- - 1000 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- 1000 + USD
+
+
- - 1000 - + SUCCESS
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test + USD
+
+
- Test + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 330 - + USD
+
+
- - 1100 - -
-
- 1100 -
-
- - 1100 - + SUCCESS
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test -
-
- Test + USD
+
+
- - 360 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 1200 - + USD
+
+
- 1200 + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 1200 - + USD
- Test + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test + USD
+
+
- - 390 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 1300 - + USD
+
+
- 1300 + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 1300 - + USD
- Test -
-
- Test -
-
- - 420 - -
-
- - 1400 - -
-
- 1400 + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 1400 - + USD
- Test + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test + USD
+
+
- - 450 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 1500 - + USD
+
+
- 1500 + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 1500 - + USD
- Test + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test + USD
+
+
- - 480 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 1600 - + USD
+
+
- 1600 -
-
- - 1600 - + SUCCESS
+
+
-
- Test -
-
- Test -
-
- - 510 - -
-
- - 1700 - -
-
- 1700 -
-
- - 1700 - -
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test -
-
- Test -
-
- - 540 - + USD
+
+
- - 1800 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- 1800 + USD
+
+
- - 1800 - + SUCCESS
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test + USD
+
+
- Test + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 570 - + USD
+
+
- - 1900 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- 1900 + USD
+
+
- - 1900 - + 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" + data-sticky-last-left-td="true" + data-sticky-td="true" + role="cell" + style="box-sizing: border-box; flex: 150 0 auto; min-width: 10px; width: 150px; position: sticky; z-index: 3; left: 150px;" + > + aleksandr@heathmonitoring.com +
-
+ 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: 150 0 auto; min-width: 10px; width: 150px;" + > + 2023-09-19T14:31:46.105Z +
+ 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: 150 0 auto; min-width: 10px; width: 150px;" + > + Bender (old) Coingaming +
+ 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: 150 0 auto; min-width: 10px; width: 150px;" + > + 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 RowGaps 1`] = ` -Object { - "asFragment": [Function], - "baseElement": -
-
-
-
+ 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: 150 0 auto; min-width: 10px; width: 150px;" + > + 22.97 +
- First Name - +
+
- Last Name - +
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Age - +
+
- Visits - +
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Activity - +
+
- Status -
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
-
-
-
-
+ class="flex items-center rounded-moon-i-xs gap-1 select-none py-1 px-2 h-6 text-moon-10-caption uppercase font-medium bg-gray-100 text-lg text-gray-600 max-w-fit" + > + USD +
+
+
+ class="flex items-center rounded-moon-i-xs gap-1 select-none py-1 px-2 h-6 text-moon-10-caption uppercase font-medium bg-roshi-10 text-lg text-roshi max-w-fit" + > + SUCCESS +
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test + USD
+
+
- Test -
-
- - 0 - -
-
- - 0 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- 0 + USD
+
+
- 0 + SUCCESS
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test + USD
+
+
- Test + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 30 - + USD
+
+
- - 100 - + 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 +
+
- First Name - +
+
- Last Name - +
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Age - +
+
- Visits - -
- Activity - +
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Status -
-
-
-
-
-
+ class="flex items-center rounded-moon-i-xs gap-1 select-none py-1 px-2 h-6 text-moon-10-caption uppercase font-medium bg-roshi-10 text-lg text-roshi max-w-fit" + > + SUCCESS +
-
- Test -
-
- Test -
-
- - 0 - -
-
- - 0 - -
-
- 0 -
-
- 0 -
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test -
-
- Test -
-
- - 30 - + USD
+
+
- - 100 - + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- 100 + USD
+
+
- 100 + SUCCESS
+
+
+
, + "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 MiniMap 1`] = ` +Object { + "asFragment": [Function], + "baseElement": +
+
- First Name -
- Last Name + class="relative text-start justify-between font-medium text-moon-14 px-3 py-2 bg-gohan" + colspan="2" + data-sticky-last-left-td="true" + data-sticky-td="true" + role="columnheader" + style="box-sizing: border-box; flex: 300 0 auto; min-width: 200px; width: 300px; position: sticky; z-index: 3; left: 0px;" + > + Name +