From 9c453001c19e6c5349c19516f04b288201c7a3ae Mon Sep 17 00:00:00 2001 From: Karl Kallavus <232199+karl-kallavus@users.noreply.github.com> Date: Mon, 13 Nov 2023 15:04:14 +0100 Subject: [PATCH 1/8] fix: the lost part of the code has been restored (#2486) --- workspaces/tables/src/components/Table.tsx | 23 +++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/workspaces/tables/src/components/Table.tsx b/workspaces/tables/src/components/Table.tsx index 84b341d4b2..c2918e5c68 100644 --- a/workspaces/tables/src/components/Table.tsx +++ b/workspaces/tables/src/components/Table.tsx @@ -80,6 +80,7 @@ const Table = ({ rowsById, prepareRow, visibleColumns, + isAllRowsExpanded, toggleAllRowsExpanded, toggleRowExpanded, rowSpanHeaders, @@ -92,6 +93,7 @@ const Table = ({ } as TableOptions, ...plugins ) as TableInstance & { + isAllRowsExpanded: boolean; toggleAllRowsExpanded: (isExpanded?: boolean) => void; toggleRowExpanded: (rowId: string, isExpanded?: boolean) => void; rowSpanHeaders: RowSpanHeaderProps[]; @@ -115,15 +117,26 @@ const Table = ({ * instead of directly setting the data. */ expandedByDefault === undefined; - const selectableRows = (rows as unknown[] as UseExpandedRowProps<{}>[]) + const selectableRows = (rows as unknown[] as (UseExpandedRowProps<{}> & {id: string})[]) .filter(({ canExpand }) => canExpand); if (selectableRows.length === preExpandedState.length) { toggleAllRowsExpanded(true); } else { - toggleAllRowsExpanded(false); - preExpandedState.forEach((record) => { - toggleRowExpanded(Object.keys(record)[0] as string, true) - }); + if (isAllRowsExpanded) { + /** All rows expanded by default. This collapses unselected rows then. */ + const preExpandedSet = preExpandedState.reduce((acc, item) => { + acc[Object.keys(item)[0] as string] = true; + return acc; + }, {}); + selectableRows.forEach(({ id }) => { + toggleRowExpanded(id, preExpandedSet[id] === true) + }); + } else { + /** No rows expanded by default. This expands selected rows then. */ + preExpandedState.forEach((record) => { + toggleRowExpanded(Object.keys(record)[0] as string, true) + }); + } } } else { if (expandedByDefault === undefined || !data || !data.length) return; From 587e0b4cc49c2671ff144d3cd71c31de9c52f70f Mon Sep 17 00:00:00 2001 From: YulianaYarema <59561179+yarema184@users.noreply.github.com> Date: Wed, 15 Nov 2023 14:39:19 +0200 Subject: [PATCH 2/8] fix: bottomSheet defoult focus issue (#2490) --- .../core/src/bottomSheet/BottomSheet.tsx | 22 ++++++++++++++++++- .../private/types/BottomSheetRootProps.ts | 1 + 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/workspaces/core/src/bottomSheet/BottomSheet.tsx b/workspaces/core/src/bottomSheet/BottomSheet.tsx index ce24f99243..c28e6a9843 100644 --- a/workspaces/core/src/bottomSheet/BottomSheet.tsx +++ b/workspaces/core/src/bottomSheet/BottomSheet.tsx @@ -1,4 +1,12 @@ -import React, { ReactNode, useCallback, useEffect, useReducer } from 'react'; +import React, { + ReactNode, + useCallback, + useEffect, + useReducer, + useRef, + MutableRefObject, + useState, +} from 'react'; import { Dialog, Transition } from '@headlessui/react'; import type BottomSheetRootProps from './private/types/BottomSheetRootProps'; import type DraghandleProps from './private/types/DraghandleProps'; @@ -20,7 +28,17 @@ const BottomSheetRoot = ({ children, className, rootId, + initialFocus, + ...rest }: BottomSheetRootProps) => { + const defFocus = useRef(null); + const [focusElRef, setFocusElRef] = + useState>(); + + useEffect(() => { + initialFocus ? setFocusElRef(initialFocus) : setFocusElRef(defFocus); + }, [initialFocus]); + const [state, dispatch] = useReducer(stateReducer, { bottomSheetChildren: [], }); @@ -53,6 +71,8 @@ const BottomSheetRoot = ({ as="div" className={mergeClassnames('fixed inset-0 z-50', className)} onClose={onCloseHandler} + initialFocus={focusElRef} + {...rest} > {React.Children.map(children, (child) => { if (React.isValidElement(child)) { diff --git a/workspaces/core/src/bottomSheet/private/types/BottomSheetRootProps.ts b/workspaces/core/src/bottomSheet/private/types/BottomSheetRootProps.ts index 405689f507..0f676bf9a2 100644 --- a/workspaces/core/src/bottomSheet/private/types/BottomSheetRootProps.ts +++ b/workspaces/core/src/bottomSheet/private/types/BottomSheetRootProps.ts @@ -8,6 +8,7 @@ type BottomSheetRootProps = { children?: React.ReactNode; className?: string; rootId?: string; + initialFocus?: React.MutableRefObject; }; export default BottomSheetRootProps; From c1676114e8f3d2fed7806777af03767cdbb4ea7d Mon Sep 17 00:00:00 2001 From: Karl Kallavus <232199+karl-kallavus@users.noreply.github.com> Date: Wed, 15 Nov 2023 14:44:37 +0100 Subject: [PATCH 3/8] fix: optimization of the previous solution (#2491) --- .../examples/table/ExpandedWithKeepState.tsx | 36 ++++++++++--------- 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/next-docs/public/examples/table/ExpandedWithKeepState.tsx b/next-docs/public/examples/table/ExpandedWithKeepState.tsx index d800a3fa56..5488a23ea3 100644 --- a/next-docs/public/examples/table/ExpandedWithKeepState.tsx +++ b/next-docs/public/examples/table/ExpandedWithKeepState.tsx @@ -7,6 +7,7 @@ import KeepStateProps from '@heathmont/moon-table-tw/lib/private/types/KeepState interface HeaderProps { rowsById: { [key: string]: { id: string, canExpand: boolean } }, isAllRowsExpanded: boolean; + toggleAllRowsExpanded: (isExpanded?: boolean) => void; getToggleAllRowsExpandedProps: () => React.HTMLAttributes; } @@ -27,6 +28,7 @@ const Example = () => { Header: ({ rowsById, getToggleAllRowsExpandedProps, + toggleAllRowsExpanded, isAllRowsExpanded, }: HeaderProps) => { useEffect (() => { @@ -36,25 +38,22 @@ const Example = () => { .map(({ id }) => ({[id]: isAllRowsExpanded})) )}, [rowsById, isAllRowsExpanded]); return ( -
{ - (e.target as HTMLElement).closest('span') !== null && toggleAllRowsExpandedState(allRowsExpandedState) - }} - > - +
+ { + e.preventDefault(); + toggleAllRowsExpanded(!allRowsExpandedState); + toggleAllRowsExpandedState(allRowsExpandedState); + }} + > {allRowsExpandedState ? : }
) }, - Cell: ({ row }: any) => -
{ - (e.target as HTMLElement).closest('span') !== null && toggleRowExpandedState(row) - }} - > + Cell: ({ row, toggleRowExpanded }: any) => +
{row.canExpand ? ( { paddingLeft: `${row.depth * 2}rem`, }, })} + onClick={(e) => { + e.preventDefault(); + toggleRowExpanded(row.id, row.isExpanded !== true); + toggleRowExpandedState(row); + }} > {row.isExpanded ? : } @@ -160,7 +164,7 @@ const Example = () => { if (allExpanded) { setExpandedRows([]); } else { - setExpandedRows(ers?.map(item => item)); + setExpandedRows(ers?.map(item => { const key = Object.keys(item)[0]; return {[key]: true} })); } return ers; @@ -195,7 +199,7 @@ const Example = () => { useEffect(() => { restoreTableState(PREFIX) }, []); useEffect(() => { - allRowsExpandedState && setExpandedRows(allExpandableRowSet?.map(item => item)) + allRowsExpandedState && setExpandedRows(allExpandableRowSet?.map(item => { const key = Object.keys(item)[0]; return {[key]: true} })) }, [allRowsExpandedState]); useEffect(() => { From b236a7c46b081fc601ac5ad893058dda05bc90e0 Mon Sep 17 00:00:00 2001 From: Karl Kallavus <232199+karl-kallavus@users.noreply.github.com> Date: Thu, 16 Nov 2023 14:54:13 +0100 Subject: [PATCH 4/8] MDS-763 Table Viewing Extra-Long Data (#2482) * feat: an example for testing a table with extra long data * feat: a view for table with extra long data * feat: an example of Table Extra Long Data Viewing is completed (with failed tests) * fix: temporarily commented tests for the Table example * fix: temporarily commented tests for the Table example (renew) * fix(test): patch ResizeObserver * fmt --- next-docs/pages/components/table.tsx | 6 + .../examples/table/ExpandedWithKeepState.tsx | 63 +- .../examples/table/ExtraLongDataView.tsx | 311 + .../__snapshots__/index.test.tsx.snap | 35630 +++++++++------- .../examples/table/__tests__/index.test.tsx | 19 + package.json | 1 + 6 files changed, 20610 insertions(+), 15420 deletions(-) create mode 100644 next-docs/public/examples/table/ExtraLongDataView.tsx diff --git a/next-docs/pages/components/table.tsx b/next-docs/pages/components/table.tsx index 618600d259..627c1402cb 100644 --- a/next-docs/pages/components/table.tsx +++ b/next-docs/pages/components/table.tsx @@ -16,6 +16,7 @@ import Editable from '../../public/examples/table/Editable'; import ExpandableCheckboxes from '../../public/examples/table/ExpandableCheckboxes'; import ExpandedRows from '../../public/examples/table/ExpandedRows'; import ExpandedWithKeepState from '../../public/examples/table/ExpandedWithKeepState'; +import ExtraLongDataView from '../../public/examples/table/ExtraLongDataView'; import LongData from '../../public/examples/table/LongData'; import MiniMap from '../../public/examples/table/MiniMap'; import RowGaps from '../../public/examples/table/RowGaps'; @@ -159,6 +160,11 @@ const PageTable = () => { preview={} code={examples ? examples.CustomColumnWidths : 'Loading'} /> + } + code={examples ? examples.ExtraLongDataView : 'Loading'} + /> { toggleAllRowsExpanded, isAllRowsExpanded, }: HeaderProps) => { - useEffect (() => { + useEffect(() => { setAllExpandableRowSet( Object.values(rowsById) - .filter(({ canExpand }) => canExpand) - .map(({ id }) => ({[id]: isAllRowsExpanded})) - )}, [rowsById, isAllRowsExpanded]); + .filter(({ canExpand }) => canExpand) + .map(({ id }) => ({ [id]: isAllRowsExpanded })) + ) + }, [rowsById, isAllRowsExpanded]); return (
{ toggleAllRowsExpandedState(allRowsExpandedState); }} > - {allRowsExpandedState ? : } + {allRowsExpandedState ? : }
) }, Cell: ({ row, toggleRowExpanded }: any) => -
- {row.canExpand ? ( - { - e.preventDefault(); - toggleRowExpanded(row.id, row.isExpanded !== true); - toggleRowExpandedState(row); - }} - > - {row.isExpanded ? : } - - ) : null} -
+
+ {row.canExpand ? ( + { + e.preventDefault(); + toggleRowExpanded(row.id, row.isExpanded !== true); + toggleRowExpandedState(row); + }} + > + {row.isExpanded ? : } + + ) : null} +
}, ], }, @@ -128,8 +129,8 @@ const Example = () => { const [isOpen, setIsOpen] = useState(false); const [title, setTitle] = useState(''); const [panel, setPanel] = useState(); - const [expandedRows, setExpandedRows] = useState<{[key: string]: boolean}[] | undefined>(); - const [allExpandableRowSet, setAllExpandableRowSet] = useState<{[key: string]: boolean}[] | undefined>(); + const [expandedRows, setExpandedRows] = useState<{ [key: string]: boolean }[] | undefined>(); + const [allExpandableRowSet, setAllExpandableRowSet] = useState<{ [key: string]: boolean }[] | undefined>(); const [allRowsExpandedState, setAllRowsExpandedState] = useState(false); const [keepState, setKeepState] = useState({}); const closeModal = () => { @@ -151,8 +152,8 @@ const Example = () => { return isExpanded ? er?.filter(item => !item[id]) : er - ? [...er, {[id]: true}] - : [{[id]: true}]; + ? [...er, { [id]: true }] + : [{ [id]: true }]; }); } }; @@ -164,7 +165,7 @@ const Example = () => { if (allExpanded) { setExpandedRows([]); } else { - setExpandedRows(ers?.map(item => { const key = Object.keys(item)[0]; return {[key]: true} })); + setExpandedRows(ers?.map(item => { const key = Object.keys(item)[0]; return { [key]: true } })); } return ers; @@ -189,7 +190,7 @@ const Example = () => { const states = JSON.parse(storedData); if (states.expandedRows) { setExpandedRows(states.expandedRows); - setKeepState({expandedRows: states.expandedRows}); + setKeepState({ expandedRows: states.expandedRows }); } } catch (e) { } finally { @@ -199,7 +200,7 @@ const Example = () => { useEffect(() => { restoreTableState(PREFIX) }, []); useEffect(() => { - allRowsExpandedState && setExpandedRows(allExpandableRowSet?.map(item => { const key = Object.keys(item)[0]; return {[key]: true} })) + allRowsExpandedState && setExpandedRows(allExpandableRowSet?.map(item => { const key = Object.keys(item)[0]; return { [key]: true } })) }, [allRowsExpandedState]); useEffect(() => { @@ -298,7 +299,7 @@ const Example = () => { width={800} height={400} keepState={keepState} - /* expandedByDefault={true} */ + /* expandedByDefault={true} */ /> diff --git a/next-docs/public/examples/table/ExtraLongDataView.tsx b/next-docs/public/examples/table/ExtraLongDataView.tsx new file mode 100644 index 0000000000..c4a1cb3ba5 --- /dev/null +++ b/next-docs/public/examples/table/ExtraLongDataView.tsx @@ -0,0 +1,311 @@ +import React, { useState } from "react"; +import { Table } from "@heathmont/moon-table-tw"; +import { Button, Chip, Modal, Tag, Tooltip } from "@heathmont/moon-core-tw"; +import { ControlsClose, FilesExternalLink, Other3DotsHorizontal, TimeCalendarDate } from "@heathmont/moon-icons-tw"; + +const Example = () => { + const columnsInitial = [ + { + id: 'leftSticky', + Header: '', + sticky: 'left', + columns: [ + { + id: 'extraLongData_0', + Header: 'Location', + accessor: 'location', + Footer: '', + minWidth: 90, + width: 100, + }, + ], + }, + { + id: 'extraLongData', + Header: '', + columns: [ + { + id: 'extraLongData_1', + Header: () => { + return ( +
+ Deals + + + { expandDeals() }} + />} + /> + + + Click to open view + + + +
+ )}, + accessor: 'deals', + Footer: '', + }, + { + Header: 'Amount', + accessor: 'amount', + Footer: '', + maxWidth: 90, + width: 90, + }, + { + Header: 'Currency', + accessor: 'currency', + Footer: '', + maxWidth: 90, + width: 90, + }, + ], + }, + { + id: 'rightSticky', + Header: '', + sticky: 'right', + columns: [ + { + id: 'extraLongData_2', + Header: 'Date range', + accessor: 'daterange', + Footer: '', + minWidth: 150, + width: 150, + }, + { + id: 'extraLongData_3', + Header: 'Actions', + accessor: 'actions', + Footer: '', + minWidth: 70, + width: 70, + }, + ], + }, + ]; + + const columnsExpandedDeals = [ + { + id: 'deLeftSticky', + Header: '', + sticky: 'left', + columns: [ + { + id: 'de_0', + Header: 'Location', + accessor: 'location', + Footer: '', + minWidth: 100, + maxWidth: 100, + }, + ], + }, + { + id: 'deExtraLongData', + Header: '', + columns: [ + { + id: 'de_1', + Header: 'Deals', + accessor: 'deals', + Footer: '', + width: 900, + } + ], + }, + { + id: 'deRightSticky', + Header: '', + sticky: 'right', + columns: [ + { + id: 'de_2', + Header: 'Date range', + accessor: 'daterange', + Footer: '', + minWidth: 200, + maxWidth: 200, + } + ], + }, + ]; + + const [title, setTitle] = useState(''); + const [view, setView] = useState(); + const [isExpanded, setIsExpanded] = useState(false); + + /** This service variable is being used to show/hide the tip + * that pays attention to the call view icon at the page start. + */ + const [showTip, setShowTip] = useState(true); + + const expandDeals = () => { + setShowTip(false); + setTitle('Deals view'); + setView(); + setIsExpanded(true); + } + + const collapseExpanded = () => setIsExpanded(false); + + const makeData = () => { + return [ + { + location: 'Lithuania', + deals: '', + daterange: }>23.10.01 - 23.10.31, + amount: 22.97, + currency: USD, + actions: tooltip(), + }, + { + location: 'AMD', + deals: '', + daterange: }>23.10.01 - 23.10.31, + amount: 22.97, + currency: USD, + actions: tooltip(), + }, + { + location: 'Europe', + deals: rearrangeData([{'10.0': { start: '10000', end: '20000' }}, {'9.0': { start: '20000', end: '30000' }}, {'8.0': { start: '30000', end: '40000' }}, {'7.0': { start: '40000', end: '50000' }}, {'6.0': { start: '50000', end: '60000' }}]), + daterange: }>23.10.01 - 23.10.31, + amount: 22.97, + currency: USD, + actions: tooltip(), + }, + { + location: 'Europe', + deals: rearrangeData([{'5.0': { start: '2', end: '3' }}]), + daterange: }>23.12.01 -, + amount: 22.97, + currency: USD, + actions: tooltip(), + }, + { + location: 'Europe', + deals: rearrangeData([{'0.0': { start: '0' }}]), + daterange: }>23.11.01 - 23.11.30, + amount: 22.97, + currency: USD, + actions: tooltip(), + }, + { + location: 'Asia', + deals: rearrangeData([{'6.0': { start: '3', end: '4' }}]), + daterange: }>23.11.01 -, + amount: 22.97, + currency: USD, + actions: tooltip(), + }, + { + location: 'Asia', + deals: rearrangeData([{'5.0': { start: '0', end: '150000' }}, {'4.0': { start: '150000', end: '500000' }}]), + daterange: }>23.05.01 - 23.10.31, + amount: 22.97, + currency: USD, + actions: tooltip(), + }, + ]; + } + + const rearrangeData = (data: {[key: string]: { start?: string; end?: string }}[]) => { + const deals = data.map((value, index, src) => { + const [key, range] = Object.entries(value)[0]; + return ( + <> + {key} + ({range.start ? range.start : ''} + - + {range.end ? range.end : ''}) + {(index < src.length - 1) && |} + + ); + }); + + return ( +
+ {deals} +
+ ); + } + + const tooltip = () => ( + + + } + /> + + + Any activity + + + + ); + + const defaultColumn = React.useMemo( + () => ({ + minWidth: 50, + width: 150, + maxWidth: Number.MAX_SAFE_INTEGER, + }), + [] + ); + + const columns = React.useMemo(() => columnsInitial, [showTip]); + const dealExpandedColumns = React.useMemo(() => columnsExpandedDeals, []) + const data = React.useMemo(() => makeData(), []); + + return ( + <> +
+ + + +
+
+

+ {title} +

+ +
+
+ {view} +
+
+
+
+ + ); +}; + +export default Example; 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 c63a4b86ca..fa23f0e68f 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 @@ -65424,7 +65424,7 @@ Object { } `; -exports[`Table in RTL renders LongData 1`] = ` +exports[`Table in RTL renders ExtraLongDataView 1`] = ` Object { "asFragment": [Function], "baseElement": @@ -65443,17 +65443,16 @@ Object {
- Transactions
- Info
- Status
-
- Transaction UUID -
- User & Supplier user + Location
- Process time -
- Client + class="flex h-full items-center gap-x-1" + > + + Deals + + +
- Game name & provider + Amount
- Amount + Currency
- Currency + Date range
- Status + Actions
-
-
@@ -65681,57 +65666,33 @@ Object {
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming + Lithuania
- Pragmatic Play -
+ style="box-sizing: border-box; flex: 150 0 auto; min-width: 50px; width: 150px;" + />
22.97
-
- SUCCESS -
+ + + + 23.10.01 - 23.10.31 +
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming + AMD
- Pragmatic Play -
+ style="box-sizing: border-box; flex: 150 0 auto; min-width: 50px; width: 150px;" + />
22.97
-
- SUCCESS -
+ + + + 23.10.01 - 23.10.31 +
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming + Europe
- Pragmatic Play +
+ + 10.0 + + + ( + 10000 + + + - + + + 20000 + ) + + + | + + + 9.0 + + + ( + 20000 + + + - + + + 30000 + ) + + + | + + + 8.0 + + + ( + 30000 + + + - + + + 40000 + ) + + + | + + + 7.0 + + + ( + 40000 + + + - + + + 50000 + ) + + + | + + + 6.0 + + + ( + 50000 + + + - + + + 60000 + ) + +
22.97
-
- SUCCESS -
+ + + + 23.10.01 - 23.10.31 +
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming + Europe
- Pragmatic Play +
+ + 5.0 + + + ( + 2 + + + - + + + 3 + ) + +
22.97
-
- SUCCESS -
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
-
- USD -
+ + + + 23.12.01 - +
-
- SUCCESS -
+ + + + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming + Europe
- Pragmatic Play +
+ + 0.0 + + + ( + 0 + + + - + + + ) + +
22.97
-
- SUCCESS -
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
-
- USD -
+ + + + 23.11.01 - 23.11.30 +
-
- SUCCESS -
+ + + + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming + Asia
- Pragmatic Play +
+ + 6.0 + + + ( + 3 + + + - + + + 4 + ) + +
22.97
-
- SUCCESS -
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
-
- USD -
+ + + + 23.11.01 - +
-
- SUCCESS -
+ + + + + +
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming + Asia
- Pragmatic Play +
+ + 5.0 + + + ( + 0 + + + - + + + 150000 + ) + + + | + + + 4.0 + + + ( + 150000 + + + - + + + 500000 + ) + +
22.97
-
- SUCCESS -
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + + + 23.05.01 - 23.10.31 +
- aleksandr@heathmonitoring.com +
+
+
+
+
+
+
+
+ Click to open view + +
+ + + Click to open view + +
+
+ , + "container":
+
+
+
+
+
- 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;" + /> +
+
- 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;" + /> +
+
- Pragmatic Play -
+ 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;" + /> +
+
+
+
+ Location
- 22.97 -
+ 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;" + /> +
+
-
+ Deals + +
+ + + +
-
- 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;" + />
+ Amount
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- 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;" + /> +
+
+ Currency
- 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;" + /> +
+
+ Date range
- 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;" + /> +
+
+ Actions
- Pragmatic Play -
+ 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;" + /> +
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Lithuania +
+
+
+ 22.97 +
+
- 22.97 + USD
-
+
+
-
+ + 23.10.01 - 23.10.31 + +
+
+
+ + + + +
+
+
+ AMD +
+
+
+ 22.97 +
+
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play + USD
-
+
+
-
-
- USD -
-
-
+ + 23.10.01 - 23.10.31 + +
+
+
+ + + + +
+
+
+ Europe +
+
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 10.0 + + + ( + 10000 + + + - + + + 20000 + ) + + + | + + + 9.0 + + + ( + 20000 + + + - + + + 30000 + ) + + + | + + + 8.0 + + + ( + 30000 + + + - + + + 40000 + ) + + + | + + + 7.0 + + + ( + 40000 + + + - + + + 50000 + ) + + + | + + + 6.0 + + + ( + 50000 + + + - + + + 60000 + ) +
+
+
+ 22.97 +
+
- aleksandr@heathmonitoring.com + USD
-
+
+
-
+ + + 23.10.01 - 23.10.31 + +
+
+
+ + + + + + +
+
+
+
+ Europe +
+
- Pragmatic Play + + 5.0 + + + ( + 2 + + + - + + + 3 + ) +
+
+
+ 22.97 +
+
- 22.97 + USD
-
+
+
-
+ + 23.12.01 - + +
+
+
+ + + + + +
+
+
+
+ Europe
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + + 0.0 + + + ( + 0 + + + - + + + ) +
+
+
+ 22.97 +
+
- aleksandr@heathmonitoring.com + USD
-
+
+
-
+ + + 23.11.01 - 23.11.30 + +
+
+
+ + + + + + +
+
+
+
+ Asia +
+
- Pragmatic Play + + 6.0 + + + ( + 3 + + + - + + + 4 + ) +
+
+
+ 22.97 +
+
- 22.97 + USD
+
+
+ +
+
+ +
+
+
+
+ Asia +
+
-
- USD -
+ 5.0 + + + ( + 0 + + + - + + + 150000 + ) + + + | + + + 4.0 + + + ( + 150000 + + + - + + + 500000 + ) +
+
+
+ 22.97 +
+
+ USD +
+
+
+ +
+
+ +
+
+
+
+
+
, + "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 LongData 1`] = ` +Object { + "asFragment": [Function], + "baseElement": +
+
+
+
+
+
+ Transactions + +
+ Info + +
+ Status
- 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;" + />
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + Transaction UUID +
- aleksandr@heathmonitoring.com + User & Supplier user +
- 2023-09-19T14:31:46.105Z + Process time +
- Bender (old) Coingaming + Client +
- Pragmatic Play + Game name & provider +
- 22.97 + Amount +
+ Currency
- 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;" + />
+ Status
- 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;" + />
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
- , - "container":
-
-
-
-
- Transactions -
- Info + class="relative box-border justify-between items-center text-start break-all truncate 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: 10px; width: 150px; position: sticky; z-index: 3; left: 0px;" + > + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
-
- 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" + 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 +
-
-
-
- Transaction UUID + 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 +
-
- User & Supplier user + 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 +
-
- Process time + 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 +
-
- Client + 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 +
-
- Game name & provider + 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;" + > +
+ USD +
+
- Amount -
- Currency + class="relative box-border justify-between items-center text-start break-all truncate 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: 10px; width: 150px; position: sticky; z-index: 3; left: 0px;" + > + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
-
- 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" + 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 +
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
+ 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 +
- USD + Bender (old) Coingaming
-
-
- SUCCESS + Pragmatic Play
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD + 22.97
-
-
- SUCCESS +
+ USD +
+
+
+
+ SUCCESS +
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
-
-
- SUCCESS + aleksandr@heathmonitoring.com
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD + 2023-09-19T14:31:46.105Z
-
-
- SUCCESS + Bender (old) Coingaming
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD + Pragmatic Play
-
-
- SUCCESS + 22.97
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD +
+ USD +
-
-
- SUCCESS +
+ SUCCESS +
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
- USD + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
-
-
- SUCCESS + aleksandr@heathmonitoring.com
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD + 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
- SUCCESS + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD + aleksandr@heathmonitoring.com
-
-
- SUCCESS + 2023-09-19T14:31:46.105Z
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD + Bender (old) Coingaming
-
-
- SUCCESS + Pragmatic Play
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD + 22.97
-
-
- SUCCESS +
+ USD +
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD +
+ SUCCESS +
- SUCCESS + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD + aleksandr@heathmonitoring.com
-
-
- SUCCESS + 2023-09-19T14:31:46.105Z
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD + Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
- SUCCESS + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD + aleksandr@heathmonitoring.com
-
-
- SUCCESS + 2023-09-19T14:31:46.105Z
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD + Bender (old) Coingaming
-
-
- SUCCESS + Pragmatic Play
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD + 22.97
-
-
- SUCCESS +
+ USD +
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD +
+ SUCCESS +
- SUCCESS + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD + aleksandr@heathmonitoring.com
-
-
- SUCCESS + 2023-09-19T14:31:46.105Z
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD + Bender (old) Coingaming
-
-
- SUCCESS + 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 + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
-
-
- SUCCESS + aleksandr@heathmonitoring.com
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD + 2023-09-19T14:31:46.105Z
-
-
- SUCCESS + Bender (old) Coingaming
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD + Pragmatic Play
-
-
- SUCCESS + 22.97
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD +
+ USD +
-
-
- SUCCESS +
+ SUCCESS +
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
- USD + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
-
-
- SUCCESS + aleksandr@heathmonitoring.com
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD + 2023-09-19T14:31:46.105Z
-
-
- SUCCESS + 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 + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
-
-
- SUCCESS + aleksandr@heathmonitoring.com
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD + 2023-09-19T14:31:46.105Z
-
-
- SUCCESS + Bender (old) Coingaming
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD + Pragmatic Play
-
-
- SUCCESS + 22.97
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD +
+ USD +
-
-
- SUCCESS +
+ SUCCESS +
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
- USD + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
-
-
- SUCCESS + aleksandr@heathmonitoring.com
-
-
-
-
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 -
-
- USD + 2023-09-19T14:31:46.105Z
-
-
- SUCCESS + 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 +
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
- 22.97 +
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
- USD + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
- SUCCESS + 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
+
+ USD +
+
+
+
+ SUCCESS +
+
+
+
+ , + "container":
+
+
+
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 -
-
- aleksandr@heathmonitoring.com -
-
- 2023-09-19T14:31:46.105Z -
-
- Bender (old) Coingaming -
-
- Pragmatic Play -
-
- 22.97 + Transactions +
+ Info
- 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;" + />
+ Status
- 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;" + />
- 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 + Transaction UUID +
- aleksandr@heathmonitoring.com + User & Supplier user +
- 2023-09-19T14:31:46.105Z + Process time +
- Bender (old) Coingaming + Client +
- Pragmatic Play -
- +
+ Amount + +
+ Currency + +
+ Status + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ 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 MiniMap 1`] = ` -Object { - "asFragment": [Function], - "baseElement": -
-
-
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
-
- Name - -
- Info - -
- Progress - -
-
-
- First Name - -
- Last Name - -
- Age - -
- Visits - -
- Activity - -
- Profile Progress - + USD
+
+
-
-
-
-
-
-
+ SUCCESS
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
-
- Test -
-
- Test -
-
- - 0 - -
-
- - 0 - -
-
- 0 -
-
- - 0 - -
-
-
-
- Test -
-
- Test -
-
- - 30 - -
-
- - 100 - -
-
- 100 -
-
- - 100 - -
+ USD
+
+
-
- Test -
-
- Test -
-
- - 60 - -
-
- - 200 - -
-
- 200 -
-
- - 200 - -
+ SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
-
- Test -
-
- Test -
-
- - 90 - -
-
- - 300 - -
-
- 300 -
-
- - 300 - -
+ USD
+
+
-
- Test -
-
- Test -
-
- - 120 - -
-
- - 400 - -
-
- 400 -
-
- - 400 - -
+ SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
-
- Test -
-
- Test -
-
- - 150 - -
-
- - 500 - -
-
- 500 -
-
- - 500 - -
-
-
-
- Test -
-
- Test -
-
- - 180 - -
-
- - 600 - -
-
- 600 -
-
- - 600 - -
+ USD
+
+
-
- Test -
-
- Test -
-
- - 210 - -
-
- - 700 - -
-
- 700 -
-
- - 700 - -
+ SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
-
- Test -
-
- Test -
-
- - 240 - -
-
- - 800 - -
-
- 800 -
-
- - 800 - -
+ USD
+
+
-
- Test -
-
- Test -
-
- - 270 - -
-
- - 900 - -
-
- 900 -
-
- - 900 - -
+ SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
-
- Test -
-
- Test -
-
- - 300 - -
-
- - 1000 - -
-
- 1000 -
-
- - 1000 - -
+ USD
+
+
-
- Test -
-
- Test -
-
- - 330 - -
-
- - 1100 - -
-
- 1100 -
-
- - 1100 - -
-
-
-
- Test -
-
- Test -
-
- - 360 - -
-
- - 1200 - -
-
- 1200 -
-
- - 1200 - -
+ SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
-
- Test -
-
- Test -
-
- - 390 - -
-
- - 1300 - -
-
- 1300 -
-
- - 1300 - -
+ USD
+
+
-
- Test -
-
- Test -
-
- - 420 - -
-
- - 1400 - -
-
- 1400 -
-
- - 1400 - -
+ SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
-
- Test -
-
- Test -
-
- - 450 - -
-
- - 1500 - -
-
- 1500 -
-
- - 1500 - -
+ USD
+
+
-
- Test -
-
- Test -
-
- - 480 - -
-
- - 1600 - -
-
- 1600 -
-
- - 1600 - -
+ SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
-
- Test -
-
- Test -
-
- - 510 - -
-
- - 1700 - -
-
- 1700 -
-
- - 1700 - -
-
-
-
- Test -
-
- Test -
-
- - 540 - -
-
- - 1800 - -
-
- 1800 -
-
- - 1800 - -
+ USD
+
+
-
- Test -
-
- Test -
-
- - 570 - -
-
- - 1900 - -
-
- 1900 -
-
- - 1900 - -
+ SUCCESS
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- , - "container":
-
-
-
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Name - +
+
- Info - +
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Progress -
- First Name - +
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Last Name - +
+
- Age - -
- Visits - -
- Activity - +
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Profile Progress -
-
-
-
-
-
+ 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 -
-
- 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 - -
-
- - 200 - -
-
- 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 -
-
- - 400 - + SUCCESS
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test -
-
- Test -
-
- - 150 - + USD
+
+
- - 500 - + 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 +
+
- Test + USD
+
+
- Test + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- - 180 - + USD
+
+
- - 600 - + 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 +
+
- Test + USD
+
+
- Test -
-
- - 210 - -
-
- - 700 - -
-
- 700 -
-
- - 700 - + SUCCESS
+
+
-
- Test -
-
- Test -
-
- - 240 - -
-
- - 800 - -
-
- 800 -
-
- - 800 - -
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546
-
- Test -
-
- Test -
-
- - 270 - -
-
- - 900 - -
-
- 900 -
-
- - 900 - -
+ aleksandr@heathmonitoring.com
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test -
-
- Test -
-
- - 300 - -
-
- - 1000 - -
-
- 1000 -
-
- - 1000 - + USD
- Test + SUCCESS
+
+
+
+
+ 84837d8ac654aa4689efa4649-84837d8ac654aa4689efa4649756454a5646545546d54f6546f546 +
+
+ aleksandr@heathmonitoring.com +
+
+ 2023-09-19T14:31:46.105Z +
+
+ Bender (old) Coingaming +
+
+ Pragmatic Play +
+
+ 22.97 +
+
- Test + USD
+
+
- - 330 - + 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 +
+
- - 1100 - + USD
- Test -
-
- Test -
-
- - 360 - -
-
- - 1200 - -
-
- 1200 -
-
- - 1200 - -
-
-
-
- Test -
-
- Test -
-
- - 390 - -
-
- - 1300 - -
-
- 1300 -
-
- - 1300 - -
-
-
-
- Test -
-
- Test -
-
- - 420 - -
-
- - 1400 - -
-
- 1400 -
-
- - 1400 - -
-
-
-
- Test -
-
- Test -
-
- - 450 - -
-
- - 1500 - -
-
- 1500 -
-
- - 1500 - -
-
-
-
- Test -
-
- Test -
-
- - 480 - -
-
- - 1600 - -
-
- 1600 -
-
- - 1600 - -
-
-
-
- Test -
-
- Test -
-
- - 510 - -
-
- - 1700 - -
-
- 1700 -
-
- - 1700 - -
-
-
-
- Test -
-
- Test -
-
- - 540 - -
-
- - 1800 - -
-
- 1800 -
-
- - 1800 - -
-
-
-
- Test -
-
- Test -
-
- - 570 - -
-
- - 1900 - -
-
- 1900 -
-
- - 1900 - + SUCCESS
-
-
-