From 2d9a2fe743eeeeaf2c5b7aa28da0d6cc2f2b5d83 Mon Sep 17 00:00:00 2001 From: Kevin Perrine Date: Tue, 7 Sep 2021 12:08:45 -0400 Subject: [PATCH 01/23] chore(table): clean up story prop errors --- packages/react/src/components/Table/Table.story.jsx | 2 +- .../components/Table/TableCellRenderer/TableCellRenderer.jsx | 1 - .../Table/TableManageViewsModal/TableManageViewsList.jsx | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/react/src/components/Table/Table.story.jsx b/packages/react/src/components/Table/Table.story.jsx index 91874f48d5..c02ccc3abd 100644 --- a/packages/react/src/components/Table/Table.story.jsx +++ b/packages/react/src/components/Table/Table.story.jsx @@ -1616,7 +1616,7 @@ export const WithSorting = () => { options={{ hasFilter: boolean('options.hasFilter', false), hasPagination: boolean('options.hasPagination', true), - hasRowSelection: boolean('options.hasRowSelection', 'multi'), + hasRowSelection: select('options.hasRowSelection', ['single', 'multi', false], 'multi'), hasAggregations: boolean('options.hasAggregations', true), hasMultiSort, }} diff --git a/packages/react/src/components/Table/TableCellRenderer/TableCellRenderer.jsx b/packages/react/src/components/Table/TableCellRenderer/TableCellRenderer.jsx index ac65957e99..666f3df072 100644 --- a/packages/react/src/components/Table/TableCellRenderer/TableCellRenderer.jsx +++ b/packages/react/src/components/Table/TableCellRenderer/TableCellRenderer.jsx @@ -78,7 +78,6 @@ const TableCellRenderer = ({ const withTooltip = (element, tooltipForExtraInformation) => { return tooltip ? ( rowActionsRenderer(view, { ...props, i18n, testID }), secondaryValue: rowDescriptionInterpolation(view), tags: rowTagsRenderer(view, { ...props, defaultViewId, i18n }), value: rowTitleInterpolation(view, publicLabelText, privateLabelText), From 3b2f1b41b5b1c491c547d8539cabbfc93b74e29b Mon Sep 17 00:00:00 2001 From: Kevin Perrine Date: Tue, 7 Sep 2021 13:47:39 -0400 Subject: [PATCH 02/23] chore(table): rename stories, add knobs and descriptions --- .../components/Table/StatefulTable.story.jsx | 456 ++++++++++-------- .../src/components/Table/Table.story.jsx | 164 +++++-- 2 files changed, 373 insertions(+), 247 deletions(-) diff --git a/packages/react/src/components/Table/StatefulTable.story.jsx b/packages/react/src/components/Table/StatefulTable.story.jsx index 034e5cceb3..0a8a9ffc85 100644 --- a/packages/react/src/components/Table/StatefulTable.story.jsx +++ b/packages/react/src/components/Table/StatefulTable.story.jsx @@ -32,6 +32,8 @@ import TableViewDropdown from './TableViewDropdown/TableViewDropdown'; import TableSaveViewModal from './TableSaveViewModal/TableSaveViewModal'; export const StatefulTableWithNestedRowItems = (props) => { + const selectedTableType = select('Type of Table', ['Table', 'StatefulTable'], 'StatefulTable'); + const MyTable = selectedTableType === 'StatefulTable' ? StatefulTable : Table; const tableData = initialState.data.map((i, idx) => ({ ...i, children: @@ -65,7 +67,7 @@ export const StatefulTableWithNestedRowItems = (props) => { })); return (
- ( - { - if (column.filter) { - return { - ...column, - filter: { - ...column.filter, - isMultiselect: !!column.filter?.options, - }, - }; - } - return column; - })} - style={{ maxWidth: select('table width', ['auto', '300px'], 'auto') }} - lightweight={boolean('lightweight', false)} - options={{ - hasRowSelection: select('options.hasRowSelection', ['multi', 'single'], 'multi'), - hasRowExpansion: boolean('options.hasRowExpansion', false), - hasRowNesting: boolean('options.hasRowNesting', false), - wrapCellText: select('options.wrapCellText', selectTextWrapping, 'always'), - hasSearch: boolean('options.hasSearch', false), - hasFilter: boolean('options.hasFilter', false), - hasAggregations: boolean('options.hasAggregations', false), - hasPagination: boolean('options.hasPagination', false), - hasSort: boolean('options.hasSort', false), - hasMultiSort: boolean('options.hasMultiSort', false), - hasResize: boolean('options.hasResize', false), - useAutoTableLayoutForResize: boolean('options.useAutoTableLayoutForResize', false), - hasColumnSelection: boolean('options.hasColumnSelection', false), - }} - view={{ - aggregations: { - label: text('view.aggregations.label', 'Total:'), - columns: [ - object('view.aggregations.columns[0]', { - id: 'number', - align: 'start', - isSortable: false, - }), - ], - }, - table: { - selectedIds: array('selectedIds', []), - }, - toolbar: { - batchActions: [ - { - iconDescription: 'Delete Item', - id: 'delete', - labelText: 'Delete', - renderIcon: TrashCan16, - }, - ], - }, - }} - /> -); +export const SimpleStatefulExample = () => { + const selectedTableType = select('Type of Table', ['Table', 'StatefulTable'], 'StatefulTable'); + const MyTable = selectedTableType === 'StatefulTable' ? StatefulTable : Table; + return ( + { + if (column.filter) { + return { + ...column, + filter: { + ...column.filter, + isMultiselect: !!column.filter?.options, + }, + }; + } + return column; + })} + style={{ maxWidth: select('table width', ['auto', '300px'], 'auto') }} + useZebraStyles={boolean('Alternate colors in table rows (useZebraStyles)', false)} + lightweight={boolean('Show an alternate header style (lightweight)', false)} + options={{ + hasAggregations: boolean( + 'Aggregates column values and displays in a footer row (options.hasAggregations)', + false + ), + hasColumnSelection: boolean( + 'Enables choosing which columns are available (options.hasColumnSelection)', + false + ), + hasFilter: boolean('Enables filtering columns by value (options.hasFilter)', false), + hasMultiSort: boolean( + 'Enables sorting the table by multiple dimentions (options.hasMultiSort)', + false + ), + hasPagination: boolean('Enables pagination for the table (options.hasPagination)', false), + hasResize: boolean('Enables resizing of column widths (options.hasResize)', false), + hasRowExpansion: boolean( + 'Enables expanding rows to show additional content (options.hasRowExpansion)', + false + ), + hasRowNesting: boolean( + 'Enables rows to have nested rows within (options.hasRowNesting)', + false + ), + hasRowSelection: select( + 'Enable or Disable selecting single, multiple, or no rows (options.hasRowSelection)', + ['multi', 'single', false], + 'multi' + ), + hasSearch: boolean('Enable searching on the table values (options.hasSearch)', false), + hasSort: boolean('Enable sorting columns by a single dimension (options.hasSort)', false), + preserveColumnWidths: boolean( + 'Preserve column widths when resizing (options.preserveColumnWidths)', + false + ), + useAutoTableLayoutForResize: boolean( + 'Removes table-layout:fixed to allow resizable tables (options.useAutoTableLayoutForResize)', + false + ), + wrapCellText: select( + 'Choose how text should wrap witin columns (options.wrapCellText)', + selectTextWrapping, + 'always' + ), + }} + view={{ + aggregations: { + label: text('The label used in the aggregation row (view.aggregations.label)', 'Total:'), + columns: [ + object( + 'An example column object to demonstrate which columns should aggregate (view.aggregations.columns[0])', + { + id: 'number', + align: 'start', + isSortable: false, + } + ), + ], + }, + table: { + selectedIds: array('An array of selected table ids (view.table.selectedIds)', []), + }, + toolbar: { + batchActions: [ + { + iconDescription: 'Delete Item', + id: 'delete', + labelText: 'Delete', + renderIcon: TrashCan16, + }, + ], + }, + }} + /> + ); +}; SimpleStatefulExample.storyName = 'simple stateful table'; @@ -191,7 +231,7 @@ export const StatefulExampleWithRowNestingAndFixedColumns = () => ( ); StatefulExampleWithRowNestingAndFixedColumns.storyName = - 'Stateful Example with row nesting and resizable columns with initial width'; + 'with row nesting and resizable columns with initial width'; StatefulExampleWithRowNestingAndFixedColumns.parameters = { info: { @@ -241,13 +281,16 @@ StatefulExampleWithRowNestingAndFixedColumns.parameters = { }; export const StatefulExampleWithSingleNestedHierarchy = () => { + const selectedTableType = select('Type of Table', ['Table', 'StatefulTable'], 'StatefulTable'); + const MyTable = selectedTableType === 'StatefulTable' ? StatefulTable : Table; + const tableData = initialState.data.map((i, idx) => ({ ...i, children: [getNewRow(idx, 'A', true), getNewRow(idx, 'B', true)], })); return (
- { ); }; -StatefulExampleWithSingleNestedHierarchy.storyName = - 'Stateful Example with single nested hierarchy'; +StatefulExampleWithSingleNestedHierarchy.storyName = 'with single nested hierarchy'; StatefulExampleWithSingleNestedHierarchy.parameters = { info: { @@ -324,37 +366,41 @@ StatefulExampleWithSingleNestedHierarchy.parameters = { }, }; -export const SimpleStatefulExampleWithColumnOverflowMenu = () => ( - - - -); +export const SimpleStatefulExampleWithColumnOverflowMenu = () => { + const selectedTableType = select('Type of Table', ['Table', 'StatefulTable'], 'StatefulTable'); + const MyTable = selectedTableType === 'StatefulTable' ? StatefulTable : Table; + return ( + + + + ); +}; SimpleStatefulExampleWithColumnOverflowMenu.storyName = 'with column overflow menu and aggregate column values'; @@ -362,23 +408,61 @@ SimpleStatefulExampleWithColumnOverflowMenu.storyName = SimpleStatefulExampleWithColumnOverflowMenu.parameters = { info: { text: - 'This is an example of the component that implements the overflow menu in the column header. Refer to the source files under /src/components/Table/TableHead for details. ', + 'This is an example of the component that implements the overflow menu in the column header. Refer to the source files under /src/components/Table/TableHead for details. ', propTables: [Table], propTablesExclude: [StatefulTable], }, }; -export const SimpleStatefulExampleWithAlignment = () => ( - - { + const selectedTableType = select('Type of Table', ['Table', 'StatefulTable'], 'StatefulTable'); + const MyTable = selectedTableType === 'StatefulTable' ? StatefulTable : Table; + return ( + + ({ + ...c, + width: idx % 2 === 0 ? '100px' : '200px', + tooltip: c.id === 'select' ? 'Select an option' : undefined, + }))} + data={initialState.data.map((eachRow, index) => ({ + ...eachRow, + isSelectable: index % 3 !== 0, + }))} + actions={tableActions} + lightweight={boolean('lightweight', false)} + options={{ + hasRowSelection: select('options.hasRowSelection', ['multi', 'single'], 'multi'), + hasRowExpansion: boolean('options.hasRowExpansion', false), + }} + view={{ table: { selectedIds: array('selectedIds', []) } }} + /> + + ); +}; + +SimpleStatefulExampleWithAlignment.storyName = 'with alignment and column tooltip'; + +SimpleStatefulExampleWithAlignment.parameters = { + info: { + text: + 'This is an example of the component that uses local state to handle all the table actions. This is produced by wrapping the in a container component and managing the state associated with features such the toolbar, filters, row select, etc. For more robust documentation on the prop model and source, see the other "with function" stories.', + propTables: [Table], + propTablesExclude: [StatefulTable], + }, +}; + +export const StatefulExampleWithEveryThirdRowUnselectable = () => { + const selectedTableType = select('Type of Table', ['Table', 'StatefulTable'], 'StatefulTable'); + const MyTable = selectedTableType === 'StatefulTable' ? StatefulTable : Table; + return ( + ({ - ...c, - width: idx % 2 === 0 ? '100px' : '200px', - tooltip: c.id === 'select' ? 'Select an option' : undefined, - }))} data={initialState.data.map((eachRow, index) => ({ ...eachRow, isSelectable: index % 3 !== 0, @@ -386,106 +470,79 @@ export const SimpleStatefulExampleWithAlignment = () => ( actions={tableActions} lightweight={boolean('lightweight', false)} options={{ - hasRowSelection: select('options.hasRowSelection', ['multi', 'single'], 'multi'), - hasRowExpansion: boolean('options.hasRowExpansion', false), + hasRowSelection: select('hasRowSelection', ['multi', 'single'], 'multi'), + hasRowExpansion: false, }} view={{ table: { selectedIds: array('selectedIds', []) } }} /> - -); - -SimpleStatefulExampleWithAlignment.storyName = 'Simple Stateful Example with alignment'; - -SimpleStatefulExampleWithAlignment.parameters = { - info: { - text: - 'This is an example of the component that uses local state to handle all the table actions. This is produced by wrapping the
in a container component and managing the state associated with features such the toolbar, filters, row select, etc. For more robust documentation on the prop model and source, see the other "with function" stories.', - propTables: [Table], - propTablesExclude: [StatefulTable], - }, + ); }; -export const StatefulExampleWithEveryThirdRowUnselectable = () => ( - ({ - ...eachRow, - isSelectable: index % 3 !== 0, - }))} - actions={tableActions} - lightweight={boolean('lightweight', false)} - options={{ - hasRowSelection: select('hasRowSelection', ['multi', 'single'], 'multi'), - hasRowExpansion: false, - }} - view={{ table: { selectedIds: array('selectedIds', []) } }} - /> -); - -StatefulExampleWithEveryThirdRowUnselectable.storyName = - 'Stateful Example with every third row unselectable'; +StatefulExampleWithEveryThirdRowUnselectable.storyName = 'with every third row unselectable'; StatefulExampleWithEveryThirdRowUnselectable.parameters = { info: { text: - 'This is an example of the component that uses local state to handle all the table actions. This is produced by wrapping the
in a container component and managing the state associated with features such the toolbar, filters, row select, etc. For more robust documentation on the prop model and source, see the other "with function" stories.', + 'This is an example of the component that uses local state to handle all the table actions. This is produced by wrapping the
in a container component and managing the state associated with features such the toolbar, filters, row select, etc. For more robust documentation on the prop model and source, see the other "with function" stories.', propTables: [Table], propTablesExclude: [StatefulTable], }, }; -export const StatefulExampleWithExpansionMaxPagesAndColumnResize = () => ( - - - Example Flyout Content - - ), - }, - }} - secondaryTitle={text('Secondary Title', `Row count: ${initialState.data.length}`)} - actions={{ - ...tableActions, - toolbar: { - ...tableActions.toolbar, - onDownloadCSV: (filteredData) => csvDownloadHandler(filteredData, 'my table data'), - }, - }} - lightweight={boolean('lightweight', false)} - options={{ - ...initialState.options, - hasResize: true, - hasFilter: select('hasFilter', ['onKeyPress', 'onEnterAndBlur'], 'onKeyPress'), - wrapCellText: select('wrapCellText', selectTextWrapping, 'always'), - hasSingleRowEdit: true, - }} - /> - -); +export const StatefulExampleWithExpansionMaxPagesAndColumnResize = () => { + const selectedTableType = select('Type of Table', ['Table', 'StatefulTable'], 'StatefulTable'); + const MyTable = selectedTableType === 'StatefulTable' ? StatefulTable : Table; + return ( + + + Example Flyout Content + + ), + }, + }} + secondaryTitle={text('Secondary Title', `Row count: ${initialState.data.length}`)} + actions={{ + ...tableActions, + toolbar: { + ...tableActions.toolbar, + onDownloadCSV: (filteredData) => csvDownloadHandler(filteredData, 'my table data'), + }, + }} + lightweight={boolean('lightweight', false)} + options={{ + ...initialState.options, + hasResize: true, + hasFilter: select('hasFilter', ['onKeyPress', 'onEnterAndBlur'], 'onKeyPress'), + wrapCellText: select('wrapCellText', selectTextWrapping, 'always'), + hasSingleRowEdit: true, + }} + /> + + ); +}; StatefulExampleWithExpansionMaxPagesAndColumnResize.storyName = - 'Stateful Example with expansion, maxPages, and column resize'; + 'with expansion, maxPages, and column resize'; StatefulExampleWithExpansionMaxPagesAndColumnResize.parameters = { info: { @@ -524,6 +581,8 @@ StatefulExampleWithExpansionMaxPagesAndColumnResize.parameters = { }; export const StatefulExampleWithCreateSaveViews = () => { + const selectedTableType = select('Type of Table', ['Table', 'StatefulTable'], 'StatefulTable'); + const MyTable = selectedTableType === 'StatefulTable' ? StatefulTable : Table; // The initial default state for this story is one with no active filters // and no default search value etc, i.e. a view all scenario. const defaultState = { @@ -922,7 +981,7 @@ export const StatefulExampleWithCreateSaveViews = () => { {renderManageViewsModal()} {renderSaveViewModal()} - { ); }; -StatefulExampleWithCreateSaveViews.storyName = 'Stateful Example with Create & Save Views'; +StatefulExampleWithCreateSaveViews.storyName = 'with create & save view management'; StatefulExampleWithCreateSaveViews.decorators = [createElement]; StatefulExampleWithCreateSaveViews.parameters = { @@ -971,6 +1030,8 @@ StatefulExampleWithCreateSaveViews.parameters = { }; export const WithPreFilledSearch = () => { + const selectedTableType = select('Type of Table', ['Table', 'StatefulTable'], 'StatefulTable'); + const MyTable = selectedTableType === 'StatefulTable' ? StatefulTable : Table; const [defaultValue, setDefaultValue] = useState('toyota'); const sampleDefaultValues = ['whiteboard', 'scott', 'helping']; return ( @@ -998,7 +1059,7 @@ export const WithPreFilledSearch = () => { > Reset defaultValue prop to empty string - { + const selectedTableType = select('Type of Table', ['Table', 'StatefulTable'], 'StatefulTable'); + const MyTable = selectedTableType === 'StatefulTable' ? StatefulTable : Table; + const [showBuilder, setShowBuilder] = useState(false); const [advancedFilters, setAdvancedFilters] = useState([ @@ -1219,7 +1283,7 @@ export const StatefulTableWithAdvancedFilters = () => {
- { + const selectedTableType = select('Type of Table', ['Table', 'StatefulTable'], 'StatefulTable'); + const MyTable = selectedTableType === 'StatefulTable' ? StatefulTable : Table; return ( - ({ ...i, isSortable: idx !== 1, diff --git a/packages/react/src/components/Table/Table.story.jsx b/packages/react/src/components/Table/Table.story.jsx index c02ccc3abd..e0f3a590fb 100644 --- a/packages/react/src/components/Table/Table.story.jsx +++ b/packages/react/src/components/Table/Table.story.jsx @@ -588,37 +588,82 @@ export default { ], }; -export const BasicDumbTable = () => ( -
Now with custom tooltip content!} - columns={tableColumns} - data={tableData} - actions={tableActions} - options={{ - hasAggregations: boolean('hasAggregations', true), - hasSearch: boolean('hasSearch', false), - hasFilter: boolean('hasFilter', false), - hasPagination: boolean('hasPagination', false), - hasRowEdit: boolean('hasRowEdit', false), - }} - view={{ - aggregations: { - label: 'Total:', - columns: [ - { - id: 'number', - align: 'start', - isSortable: false, - }, - ], - }, - }} - /> -); +export const BasicDumbTable = () => { + const selectedTableType = select('Type of Table', ['Table', 'StatefulTable'], 'Table'); + const MyTable = selectedTableType === 'StatefulTable' ? StatefulTable : Table; + return ( + Now with custom tooltip content!} + columns={tableColumns} + data={tableData} + actions={tableActions} + options={{ + hasAggregations: boolean( + 'Aggregates column values and displays in a footer row (options.hasAggregations)', + true + ), + hasColumnSelection: boolean( + 'Enables choosing which columns are available (options.hasColumnSelection)', + false + ), + hasFilter: boolean('Enables filtering columns by value (options.hasFilter)', false), + hasMultiSort: boolean( + 'Enables sorting the table by multiple dimentions (options.hasMultiSort)', + false + ), + hasPagination: boolean('Enables pagination for the table (options.hasPagination)', false), + hasResize: boolean('Enables resizing of column widths (options.hasResize)', false), + hasRowExpansion: boolean( + 'Enables expanding rows to show additional content (options.hasRowExpansion)', + false + ), + hasRowNesting: boolean( + 'Enables rows to have nested rows within (options.hasRowNesting)', + false + ), + hasRowSelection: select( + 'Enable or Disable selecting single, multiple, or no rows (options.hasRowSelection)', + ['multi', 'single', false], + 'multi' + ), + hasSearch: boolean('Enable searching on the table values (options.hasSearch)', false), + hasSort: boolean('Enable sorting columns by a single dimension (options.hasSort)', false), + preserveColumnWidths: boolean( + 'Preserve column widths when resizing (options.preserveColumnWidths)', + false + ), + useAutoTableLayoutForResize: boolean( + 'Removes table-layout:fixed to allow resizable tables (options.useAutoTableLayoutForResize)', + false + ), + wrapCellText: select( + 'Choose how text should wrap witin columns (options.wrapCellText)', + selectTextWrapping, + 'always' + ), + }} + view={{ + aggregations: { + label: 'Total:', + columns: [ + { + id: 'number', + align: 'start', + isSortable: false, + }, + ], + }, + }} + /> + ); +}; BasicDumbTable.storyName = 'basic `dumb` table'; @@ -662,6 +707,9 @@ BasicDumbTable.parameters = { }; export const TableExampleWithCreateSaveViews = () => { + const selectedTableType = select('Type of Table', ['Table', 'StatefulTable'], 'Table'); + const MyTable = selectedTableType === 'StatefulTable' ? StatefulTable : Table; + // The initial default state for this story is one with no active filters // and no default search value etc, i.e. a view all scenario. const baseState = { @@ -1018,7 +1066,7 @@ export const TableExampleWithCreateSaveViews = () => { {renderManageViewsModal()} {renderSaveViewModal()} -
{ ); }; -TableExampleWithCreateSaveViews.storyName = 'Table Example with Create & Save Views'; +TableExampleWithCreateSaveViews.storyName = 'with create & save view management'; TableExampleWithCreateSaveViews.decorators = [createElement]; TableExampleWithCreateSaveViews.parameters = { @@ -1292,7 +1340,7 @@ export const BasicTableWithFullRowEditExample = () => { ); }; -BasicTableWithFullRowEditExample.storyName = 'Basic table with full rowEdit example'; +BasicTableWithFullRowEditExample.storyName = 'with full rowEdit example'; BasicTableWithFullRowEditExample.decorators = [createElement]; BasicTableWithFullRowEditExample.parameters = { @@ -1425,15 +1473,17 @@ export const RowSelectionAndBatchActions = () => { ); }; -RowSelectionAndBatchActions.storyName = - 'with row selection: single or multi-select and batch actions'; +RowSelectionAndBatchActions.storyName = 'with row selection and batch actions'; export const WithRowExpansionAndActions = () => { + const selectedTableType = select('Type of Table', ['Table', 'StatefulTable'], 'Table'); + const MyTable = selectedTableType === 'StatefulTable' ? StatefulTable : Table; + const renderDataFunction = ({ value }) => (
{value}
); return ( -
({ ...c, @@ -1507,7 +1557,7 @@ export const WithRowExpansionAndActions = () => { ); }; -WithRowExpansionAndActions.storyName = 'row expansion: with actions'; +WithRowExpansionAndActions.storyName = 'with row expansion, custom cell renderer, and actions'; WithRowExpansionAndActions.parameters = { info: { @@ -1683,8 +1733,11 @@ export const WithFilters = () => { true ) ); + + const selectedTableType = select('Type of Table', ['Table', 'StatefulTable'], 'Table'); + const MyTable = selectedTableType === 'StatefulTable' ? StatefulTable : Table; return ( -
{ WithFilters.storyName = 'with filtering and custom toolbar content'; export const WithAdvancedFilters = () => { + const selectedTableType = select('Type of Table', ['Table', 'StatefulTable'], 'Table'); + const MyTable = selectedTableType === 'StatefulTable' ? StatefulTable : Table; + const operands = { IN: (a, b) => a.includes(b), NEQ: (a, b) => a !== b, @@ -1923,7 +1979,7 @@ export const WithAdvancedFilters = () => { return ( <> -
{ WithAdvancedFilters.storyName = '☢️ with advanced filtering'; export const WithTableStates = () => { + const selectedTableType = select('Type of Table', ['Table', 'StatefulTable'], 'Table'); + const MyTable = selectedTableType === 'StatefulTable' ? StatefulTable : Table; + const emptyState = (

Custom empty state

@@ -1984,14 +2043,9 @@ export const WithTableStates = () => { /> ); - const loadingState = object('loadingState', { - isLoading: false, - rowCount: 7, - }); - const showErrorState = boolean('Show Custom Error State', false); return ( -
{ ordering: defaultOrdering, emptyState: boolean('Show Custom Empty State', false) ? emptyState : undefined, errorState: showErrorState ? errorState : undefined, - loadingState, + loadingState: { + isLoading: boolean('isLoading', false), + rowCount: number('rowCount', 7), + }, }, }} options={{ hasPagination: true }} @@ -2297,18 +2354,20 @@ export const FilteredSortedPaginatedTableWithAsynchronousDataSource = () => { return ; }; -FilteredSortedPaginatedTableWithAsynchronousDataSource.storyName = - 'Filtered/Sorted/Paginated table with asynchronous data source'; +FilteredSortedPaginatedTableWithAsynchronousDataSource.storyName = 'with asynchronous data source'; FilteredSortedPaginatedTableWithAsynchronousDataSource.parameters = { info: { text: - 'This is an example of how to use the
component to present data fetched asynchronously from an HTTP API supporting pagination, filtering and sorting. Refer to the source files under /src/components/Table/AsyncTable for details. ', + 'This is an example of how to use the component to present data fetched asynchronously from an HTTP API supporting pagination, filtering and sorting. Refer to the source files under /src/components/Table/AsyncTable for details. ', source: false, }, }; export const WithStickyHeaderExperimentalAndCellTooltipCalculation = () => { + const selectedTableType = select('Type of Table', ['Table', 'StatefulTable'], 'Table'); + const MyTable = selectedTableType === 'StatefulTable' ? StatefulTable : Table; + const renderDataFunction = ({ value }) => (
{value} @@ -2326,7 +2385,8 @@ export const WithStickyHeaderExperimentalAndCellTooltipCalculation = () => { ); return (
-
+ ({ ...i, @@ -2356,7 +2416,7 @@ export const WithStickyHeaderExperimentalAndCellTooltipCalculation = () => { }; WithStickyHeaderExperimentalAndCellTooltipCalculation.storyName = - 'with sticky header (experimental) and cell tooltip calculation'; + '☢️ with sticky header and cell tooltip calculation'; WithStickyHeaderExperimentalAndCellTooltipCalculation.parameters = { centered: { disable: true }, From 48a7984f3cc596437858531cd80ff920a461a490 Mon Sep 17 00:00:00 2001 From: Kevin Perrine Date: Tue, 7 Sep 2021 13:53:22 -0400 Subject: [PATCH 03/23] chore(table): update snapshots --- .../StatefulTable.story.storyshot | 118193 +++++++------ .../Table/__snapshots__/Table.story.storyshot | 131292 ++++++++------- 2 files changed, 126439 insertions(+), 123046 deletions(-) diff --git a/packages/react/src/components/Table/__snapshots__/StatefulTable.story.storyshot b/packages/react/src/components/Table/__snapshots__/StatefulTable.story.storyshot index 4e63a3a8cd..190772d9b8 100644 --- a/packages/react/src/components/Table/__snapshots__/StatefulTable.story.storyshot +++ b/packages/react/src/components/Table/__snapshots__/StatefulTable.story.storyshot @@ -1,311 +1,239 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/Table/StatefulTable Simple Stateful Example with alignment 1`] = ` +exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/Table/StatefulTable simple stateful table 1`] = `
-
-
-
-

- - 0 items selected - -

-
-
- -
-
- -
-
-
-
- - - - + - + - + - + - + - - - - - - - + + + + - - - + + + + + - + - + - + - + - + + - + + - - + + + + - + - + - + - + - + - - - + + - - + - + - + - + + + - - - + + + + + - + - + - + - + - + - + - - + + - + - + + + - + - + - + - + - - + + - + + - + + - + + + - + - + - - - + + - + - + - + - + - + - + - - + + + + - + - + - + - + - + - + - - + + - + - + - + + + - + - + - - - + + - + - + - + + - - + - + - - + + + + - + - + - + - + - + - + - - + + - + - + - + + + - + - + - - - + + - + - + - + - + - + - + - - + + + + - + - + - - + - + - + - - + + + - + + - + + + - + - + - + - + - - + Q0u8gYkG6G + + + + - + - + - + - + - + + + - + - - + + - + - + - + - + - + - + + - - + + + + + - + - + - + - + - + + - + + - - + sySKa + + + + + + - + - + - + - + - + - + - - + + - + + - + + + - + - + - + - + - - + + - + - + - + + - + + + - + - - - + + - + - + - + - + + - + - + - - + + + + - + - + - + - + - + - + - - + + - + + - + + + - + - + - + - + - - + 0OKoqQYESE + + + + - + - + - + - + - + + + - + - - + + - + - + - + - + + - + - + - - + + + + - + - + - + - + - + - - - + + - + - + - + - + + + - + - + - - + + - + - + - + - + - + - + - - + + + + - + - + - + - + - + - - - + + + - + + - + + + - + - + - + - + - - + + - + - + - + - + - + + + - + - - + + - + - + - + - + - + - + + - - + MIyOY + + + + + + + - + - + - + - + - + + - + + - - + + + + - + - + - + - + - + - + - - + + - + - + - + + + - + - + - + - - + option-C + + + + - + - + - + - + + - + + + - + - - + + - + - + - + - + + - + - + - - + + + + - + - + - + - + - + - + - - + 784 + + + + - + + - + + + - + - + - + - + - - + + - + - + - + - + - + + + - + - - + + - + - + - + - + + - + - + - - + wgO4i + + + + + + - + - + - + - - + - + - - + + - + - + - + - + + + - + - + - - + + - + - + - + - + - + - + - - + OewGc + + + + + + - + - + - + - + - + - + + - - + + - + - + + + - + - + - + - + - - + + - + - + - + - + - + + + - + - - + bottle toyota bottle 35 + + + + - + - + - + - + - + - + + - - + + + + - + - + - + - + - + - + + - - + + - - + - + + + - + - + - - - + + - + - + - + - + - + - + - - + + + + - + - + - + - + - + - + - - + + - + + - + + + - + - + - + - - - + + - + - + + - + - + - + + + - + - - + + - + - + - + - + - + - + + - - + + + + - + - + - + - + - + - - - + + - + - + - + - + + + - - + - - + + - + - + - + - + + - + - + - - + + + + - + - + - + - + - + - + - - + 1849 + + + + - + + - + + + - + - + - + - + - - + + - + - + - + - + - + + + - + - - + + - + - + - + - + + - + - + - - + Kw0WU + + + + + + - + - + - + - + - + - + - - + + - + - + - + + + - + - + - + - - + + - + - + - + - + - + - - - + + + + - + - + - + - + - + - + + - - + + - + - + + + - + - + - + - + - - + + - + - + - + - + - + + + - + - - + toyota toyota toyota 50 + + + + - + - + - + - + - + - + + - - + + + + - + - + - + - + - - + - - + + + - + - + - + + + - + - + - - - + + - + - + - + - + - + - + - - + + + + - + - + - + - + - + - + - - + + - + - + - + + + - - + - - - + + - + - + - + - + + - + - + - - + + + + - + - + - + - + - + - + - - + + - + - + - + + + - + - + - + - - + option-C + + + + - + - + - + - + + - + + + - + - - + + - + - + - + - + + - + - + - - + + + + - + - + - + - + - + - - - + + - + - + + - + + + - + - + - + - - + + - + - + - + - + + - + + + - + - - + + - + - + - + - + + - + - + - - + iCcyG + + + + + + - + - + - + - + - + - + - - + + - + - + - + + + - + - + - + - - + + - + - + - + - + - + - - - + + + + - + - + - + - + - + - + + - - + + - + - + + + - + - + - + - + - - + + - + - + - + - - + - - - + + + + - + - + - + - + - + - + - - + + - + - + - + + + - + - + - + - - + + - + - + + - + - + - + + + - - - + + + + + - + - + - + - + - + - + - - + + - + - + + + - + - + - + - + - - + + - + - + - + - + - + + + - - - + + + + + - + - + - + - + - + + - + + - - + + + + + - + - + - + - + - + - + - - + + + + + + - + - + - + - + - + - - - -
+ + - -
+
-
-
+ + + + + - + + + + + + + + + - - + + + - Select an option + Select - + + + + + + + + + + + + + + + + - -
- + + -
- - -
-
-
+ + + + + + + + + + + + + + + +
+ - - + - - - -
- -
- - -
+ toyota toyota toyota 0
-
+ + - - helping whiteboard as 1 - + 1973-03-03T09:46:40.000Z - + + - - 1973-03-14T23:33:20.000Z - + option-A - + + - - option-B - + AAAAAAAAAA - + + - - OewGc0QsMs - + + - + + + + - - - - - + true - + + + + + + + + - - 1 - + AAAAA -
- - -
+
-
-
+ + + + + - - whiteboard can eat 2 - + helping whiteboard as 1 - + + - - 1973-04-18T16:53:20.000Z - + 1973-03-14T23:33:20.000Z - + + - - option-C - + option-B - + + - - c8iM4qgaYa - + OewGc0QsMs - + + - - - - - + + - - - - 4 - - -
- - -
- - -
-
-
- - as eat scott 3 - + 1 - + + - - 1973-06-15T13:46:40.000Z - + false - + + - - - option-A - - - + + + + - - qcUSWgwIkI - + OewGc - +
+ - - + - - - -
- -
- - -
+ whiteboard can eat 2
-
+ + - - can pinocchio whiteboard 4 - + 1973-04-18T16:53:20.000Z - + + - - 1973-09-04T14:13:20.000Z - + option-C - + + - - option-B - + c8iM4qgaYa - + + - - 46GYyWC0w0 - + + - + + - - - - - + 4 - + + - - 16 - + true -
- - -
- - -
-
-
+ + + + - - bottle toyota bottle 5 - + c8iM4 - +
+ - - + - - + Select row + + + + + + - - option-C - + as eat scott 3 - + + - - Ia2eQMSi8i - + 1973-06-15T13:46:40.000Z - + + - - - - - + option-A - + + - - 25 - + qcUSWgwIkI -
- -
- - -
+
-
+ + + + - - eat whiteboard pinocchio 6 - + false - + + + + + + + + - - 1974-04-24T01:46:40.000Z - + qcUSW - +
+ - - + - - + Select row + + + + + + - - W4oksCiQKQ - + can pinocchio whiteboard 4 - + + - - - - - + 1973-09-04T14:13:20.000Z - - -
- -
- - -
+ option-B
-
+ + - - chocolate can helping 7 - + 46GYyWC0w0 - + + - - 1974-09-21T12:53:20.000Z - + + - + + - - option-B - + 16 - + + - - kYaqK2y8W8 - + true - + + - - - - - - - - + + + + - - 49 - + 46GYy -
- - -
+
-
-
+ + + + + - - pinocchio eat can 8 - + bottle toyota bottle 5 - + + - - 1975-03-14T03:33:20.000Z - + 1973-12-17T18:13:20.000Z - + + - - option-C - + option-C - + + - - y2MwmsEqiq - + Ia2eQMSi8i - + + - - - - - + + - + + - - 64 - + 25 -
- -
- - -
+ false
-
+ + - - - scott pinocchio chocolate 9 - - - + + + + - - 1975-09-26T21:46:40.000Z - + Ia2eQ - +
+ - - + - - + Select row + + + + + + - - CW82EiUYuY - + eat whiteboard pinocchio 6 - + + - - - - - + 1974-04-24T01:46:40.000Z - - -
- -
- - -
+ option-A
-
+ + - - toyota toyota toyota 10 - + W4oksCiQKQ - + + - - 1976-05-03T19:33:20.000Z - + + - + + + + - - option-B - + true - - - - Q0u8gYkG6G - - - + + - - - - - - - - + + + + - - 100 - + W4oks -
- - -
+
-
-
+ + + + + - - helping whiteboard as 11 - + chocolate can helping 7 - + + - - 1977-01-01T20:53:20.000Z - + 1974-09-21T12:53:20.000Z - + + - - option-C - + option-B - + + - - eUgE8O0yIy - + kYaqK2y8W8 - + + - - - - - + + - + + - - 121 - + 49 -
- -
- - -
+ false
-
+ + - - - whiteboard can eat 12 - - - + + + + - - 1977-09-25T01:46:40.000Z - + kYaqK - +
+ - - - option-A - - - + + + + + - - sySKaEGgUg - + pinocchio eat can 8 - + + - - - - - + 1975-03-14T03:33:20.000Z - - -
- -
- - -
+ option-C
-
+ + - - as eat scott 13 - + y2MwmsEqiq - + + - - 1978-07-11T10:13:20.000Z - + + - + + - - option-B - + 64 - + + - - 6SEQ24WOgO - + true - + + - - - - - - - - + + + + - - 169 - + y2Mwm -
- - -
+
-
-
+ + + + + - - can pinocchio whiteboard 14 - + scott pinocchio chocolate 9 - + + - - 1979-05-19T22:13:20.000Z - + 1975-09-26T21:46:40.000Z - - - - option-C - - - + + - - Kw0WUum6s6 - + option-A - + + - - - - - + CW82EiUYuY - + + - - 196 - + + -
- + + -
- - -
+ false
-
+ + + + + + + + - - bottle toyota bottle 15 - + CW82E - +
+ - - + - - + Select row + + + + + + - - option-A - + toyota toyota toyota 10 - + + - - YQmcwk2o4o - + 1976-05-03T19:33:20.000Z - + + - - - - - + option-B - + + -
- -
- - -
+
-
+ + - - eat whiteboard pinocchio 16 - + 100 - + + - - 1981-04-13T08:53:20.000Z - + true - + + - - - option-B - - - + + + + - - muYiOaIWGW - + Q0u8g - +
+ - - + - - + + + + + - - 256 - + helping whiteboard as 11 -
- -
- - -
+ 1977-01-01T20:53:20.000Z
-
+ + - - chocolate can helping 17 - + option-C - + + - - 1982-04-30T07:33:20.000Z - + eUgE8O0yIy - + + - - option-C - + + - + + - - 0OKoqQYESE - + 121 - + + - - - - - + false - + + + + + + + + - - 289 - + eUgE8 -
- - -
+
+ Select row +
+ + + +
+ + + whiteboard can eat 12 - + + - - pinocchio eat can 18 - + 1977-09-25T01:46:40.000Z - + + - - 1983-06-09T09:46:40.000Z - + option-A - + + - - option-A - + sySKaEGgUg - + + - - Es6uIGowew - + + - + + + + - - - - - + true - + + + + + + + + -
- - -
+
-
-
+ + + + + - - scott pinocchio chocolate 19 - + as eat scott 13 - + + - - 1984-08-10T15:33:20.000Z - + 1978-07-11T10:13:20.000Z - + + - - option-B - + option-B - + + - - SMs0k64eqe - + 6SEQ24WOgO - + + - - - - - + + - + + - - 361 - + 169 -
- -
- - -
+ false
-
+ + + + + + + + - - toyota toyota toyota 20 - + 6SEQ2 - +
+ - - + - - + Select row + + + + + + - - option-C - + can pinocchio whiteboard 14 - + + - - gqe6CwKM2M - + 1979-05-19T22:13:20.000Z - + + - - - - - + option-C - + + - - 400 - + Kw0WUum6s6 -
- -
- - -
+
-
+ + - - helping whiteboard as 21 - + 196 - + + - - 1987-02-22T13:46:40.000Z - + true - + + + + + + + + - - option-A - + Kw0WU - +
+ - - + - - + Select row + + + + + + - - - - - + bottle toyota bottle 15 - - -
- -
- - -
+ 1980-04-19T13:46:40.000Z
-
+ + - - whiteboard can eat 22 - + option-A - + + - - 1988-07-04T06:13:20.000Z - + YQmcwk2o4o - + + - - option-B - + + - + + + + - - 8oCI6cqmQm - + false - + + - - - - - - - - + + + + - - 484 - + YQmcw -
- - -
+
-
-
+ + + + + - - as eat scott 23 - + eat whiteboard pinocchio 16 - + + - - 1989-12-07T02:13:20.000Z - + 1981-04-13T08:53:20.000Z - + + - - option-C - + option-B - + + - - MIyOYS6UcU - + muYiOaIWGW - + + - - - - - + + - + + - - 529 - + 256 -
- -
- - -
+ true
-
+ + + + + + + + - - can pinocchio whiteboard 24 - + muYiO - +
+ - - + - - + Select row + + + + + + - - option-A - + chocolate can helping 17 - + + - - amkU0IMCoC - + 1982-04-30T07:33:20.000Z - + + - - - - - + option-C - + + -
- -
- - -
+
-
+ + - - bottle toyota bottle 25 - + 289 - + + - - 1992-12-22T04:53:20.000Z - + false - + + - - - option-B - - - + + + + - - oGWaS8cu0u - + 0OKoq - +
+ - - + - - + + + + + - - 625 - + pinocchio eat can 18 -
- -
- - -
+ 1983-06-09T09:46:40.000Z
-
+ + - - eat whiteboard pinocchio 26 - + option-A - + + - - 1994-08-04T11:33:20.000Z - + Es6uIGowew - + + - - option-C - + + - + + + + - - 2kIguyscCc - + true - + + - - - - - - - - + + + + - - 676 - + Es6uI -
- - -
+
-
-
+ + + + + - - chocolate can helping 27 - + scott pinocchio chocolate 19 - + + - - 1996-04-08T21:46:40.000Z - + 1984-08-10T15:33:20.000Z - + + - - option-A - + option-B - + + - - GE4mMo8KOK - + SMs0k64eqe - + + - - - - - + + - - -
- -
- - -
+ 361
-
+ + - - pinocchio eat can 28 - + false - + + - - - 1998-01-05T11:33:20.000Z - - - + + + + - - option-B - + SMs0k - +
+ - - + - - + Select row + + + + + + - - - - - + toyota toyota toyota 20 - + + - - 784 - + 1985-11-05T00:53:20.000Z -
- -
- - -
+ className="" + title="option-C" + > + option-C
-
+ + - - scott pinocchio chocolate 29 - + gqe6CwKM2M - + + - - 1999-10-27T04:53:20.000Z - + + - + + - - option-C - + 400 - + + - - iCcyGUekmk - + true - + + - - - - - - - - + + + + - - 841 - + gqe6C -
- - -
+
-
-
+ + + + + - - toyota toyota toyota 30 - + helping whiteboard as 21 - + + - - 2001-09-09T01:46:40.000Z - + 1987-02-22T13:46:40.000Z - + + - - option-A - + option-A - + + - - wgO4iKuSyS - + uKQCema4E4 - + + - - - - - + + - - -
- + + -
- - -
+ false
-
+ + + + + + + + - - helping whiteboard as 31 - + uKQCe - +
+ - - + - - + Select row + + + + + + - - option-B - + whiteboard can eat 22 - + + - - AAAAAAAAAA - + 1988-07-04T06:13:20.000Z - + + - - - - - + option-B - + + - - 961 - + 8oCI6cqmQm -
- -
- - -
+
-
+ + - - whiteboard can eat 32 - + 484 - + + - - 2005-08-14T06:13:20.000Z - + true - + + - - - option-C - - - + + + + - - OewGc0QsMs - + 8oCI6 - +
+ - - - + - + + + + + - - 1024 - + as eat scott 23 -
- -
- - -
+ 1989-12-07T02:13:20.000Z
-
+ + - - as eat scott 33 - + option-C - + + - - 2007-09-05T13:46:40.000Z - + MIyOYS6UcU - + + - - option-A - + + - + + - - c8iM4qgaYa - + 529 - + + - - - - - + false - + + + + + + + + -
- - -
+
+ Select row +
+ + + +
+ + + can pinocchio whiteboard 24 - + + - - can pinocchio whiteboard 34 - + 1991-06-04T01:46:40.000Z - + + - - 2009-10-20T00:53:20.000Z - + option-A - + + - - option-B - + amkU0IMCoC - + + - - qcUSWgwIkI - + + - + + + + - - - - - + true - + + + + + + + + - - 1156 - + amkU0 -
- - -
+
-
-
+ + + + + - - bottle toyota bottle 35 - + bottle toyota bottle 25 - + + - - 2011-12-27T15:33:20.000Z - + 1992-12-22T04:53:20.000Z - + + - - option-C - + option-B - + + - - 46GYyWC0w0 - + oGWaS8cu0u - + + - - - - - + + - + + - - 1225 - + 625 -
- -
- - -
+ false
-
+ + - - - eat whiteboard pinocchio 36 - - - + + + + - - 2014-03-28T09:46:40.000Z - + oGWaS - +
+ - - + - - + Select row + + + + + + - - Ia2eQMSi8i - + eat whiteboard pinocchio 26 - + + - - - - - + 1994-08-04T11:33:20.000Z - + + -
- -
- - -
+ 2kIguyscCc
-
+ + - - chocolate can helping 37 - + + - + + - - 2016-07-20T07:33:20.000Z - + 676 - + + - - option-B - + true - + + + + + + + + - - W4oksCiQKQ - + 2kIgu - +
+ - - + - - + + + + + - - 1369 - + chocolate can helping 27 -
- -
- - -
+ 1996-04-08T21:46:40.000Z
-
+ + - - pinocchio eat can 38 - + option-A - + + - - 2018-12-05T08:53:20.000Z - + GE4mMo8KOK - + + - - option-C - + + - + + + + - - kYaqK2y8W8 - + false - + + - - - - - - - - + + + + - - 1444 - + GE4mM -
- - -
+
-
-
+ + + + + - - scott pinocchio chocolate 39 - + pinocchio eat can 28 - + + - - 2021-05-14T13:46:40.000Z - + 1998-01-05T11:33:20.000Z - + + - - option-A - + option-B - + + - - y2MwmsEqiq - + UiqsoeO2a2 - + + - - - - - + + - + + -
- -
- - -
+ true
-
+ + + + + + + + - - toyota toyota toyota 40 - + Uiqso - +
+ - - + - - + Select row + + + + + + - - option-B - + scott pinocchio chocolate 29 - + + - - CW82EiUYuY - + 1999-10-27T04:53:20.000Z - + + - - - - - + option-C - + + - - 1600 - + iCcyGUekmk -
- -
- - -
+
-
+ + - - helping whiteboard as 41 - + 841 - + + - - 2026-06-09T10:13:20.000Z - + false - + + - - - option-C - - - + + + + - - Q0u8gYkG6G - + iCcyG - +
+ - - + - - + + + + + - - 1681 - + toyota toyota toyota 30 -
- -
- - -
+ 2001-09-09T01:46:40.000Z
-
+ + - - whiteboard can eat 42 - + option-A - + + - - 2029-01-25T01:46:40.000Z - + wgO4iKuSyS - + + - - option-A - + + - + + + + - - eUgE8O0yIy - + true - + + - - - - - - - - + + + + -
- - -
+
-
-
+ + + + + - - as eat scott 43 - + helping whiteboard as 31 - + + - - 2031-10-05T20:53:20.000Z - + 2003-08-16T02:13:20.000Z - + + - - option-B - + option-B - - - - sySKaEGgUg - - - + + - - - - - + AAAAAAAAAA - + + - - 1849 - + + -
- -
- - -
+ 961
-
+ + - - can pinocchio whiteboard 44 - + false - + + - - - 2034-07-08T19:33:20.000Z - - - + + + + - - option-C - + AAAAA - +
+ - - + - - + Select row + + + + + + - - - - - + whiteboard can eat 32 - + + - - 1936 - + 2005-08-14T06:13:20.000Z -
- -
- - -
+ option-C
-
+ + - - bottle toyota bottle 45 - + OewGc0QsMs - + + - - 2037-05-03T21:46:40.000Z - + + - + + - - option-A - + 1024 - + + - - Kw0WUum6s6 - + true - + + - - - - - - - - + + + + -
- - -
+
-
-
+ + + + + - - eat whiteboard pinocchio 46 - + as eat scott 33 - + + - - 2040-03-22T03:33:20.000Z - + 2007-09-05T13:46:40.000Z - + + - - option-B - + option-A - + + - - YQmcwk2o4o - + c8iM4qgaYa - + + - - - - - + + - + + + + - - 2116 - + false -
- - -
- - -
-
-
+ + + + - - chocolate can helping 47 - + c8iM4 - +
+ - - + - - + Select row + + + + + + - - option-C - + can pinocchio whiteboard 34 - + + - - muYiOaIWGW - + 2009-10-20T00:53:20.000Z - + + - - - - - + option-B - + + - - 2209 - + qcUSWgwIkI -
- -
- - -
+
-
+ + - - pinocchio eat can 48 - + 1156 - + + - - 2046-03-07T01:46:40.000Z - + true - + + - - - option-A - - - + + + + - - 0OKoqQYESE - + qcUSW - +
+ - - + - - + + + + + -
- -
- - -
+ 2011-12-27T15:33:20.000Z
-
+ + - - scott pinocchio chocolate 49 - + option-C - + + - - 2049-04-02T18:13:20.000Z - + 46GYyWC0w0 - + + - - option-B - + + - + + - - Es6uIGowew - + 1225 - + + - - - - - + false - + + + + + + + + - - 2401 - + 46GYy -
- - -
+
-
-
+ + + + + - - toyota toyota toyota 50 - + eat whiteboard pinocchio 36 - + + - - 2052-05-22T14:13:20.000Z - + 2014-03-28T09:46:40.000Z - + + - - option-C - + option-A - + + - - SMs0k64eqe - + Ia2eQMSi8i - + + - - - - - + + - + + + + - - 2500 - + true -
- - -
- - -
-
-
- - - helping whiteboard as 51 - - - + + + + - - 2055-08-04T13:46:40.000Z - + Ia2eQ - +
+ - - + - - + Select row + + + + + + - - gqe6CwKM2M - + chocolate can helping 37 - + + - - - - - + 2016-07-20T07:33:20.000Z - - -
- -
- - -
+ option-B
-
+ + - - whiteboard can eat 52 - + W4oksCiQKQ - + + - - 2058-11-08T16:53:20.000Z - + + - + + - - option-B - + 1369 - + + - - uKQCema4E4 - + false - + + - - - - - - - - + + + + - - 2704 - + W4oks -
- - -
+
-
-
+ + + + + - - as eat scott 53 - + pinocchio eat can 38 - + + - - 2062-03-07T23:33:20.000Z - + 2018-12-05T08:53:20.000Z - + + - - option-C - + option-C - + + - - 8oCI6cqmQm - + kYaqK2y8W8 - + + - - - - - + + - + + - - 2809 - + 1444 -
- -
- - -
+ true
-
+ + + + + + + + - - can pinocchio whiteboard 54 - + kYaqK - +
+ - - + - - + Select row + + + + + + - - option-A - + scott pinocchio chocolate 39 - + + - - MIyOYS6UcU - + 2021-05-14T13:46:40.000Z - + + - - - - - + option-A - - -
- -
- - -
+ y2MwmsEqiq
-
+ + - - bottle toyota bottle 55 - + + - + + + + - - 2069-01-09T23:33:20.000Z - + false - + + - - - option-B - - - + + + + - - amkU0IMCoC - + y2Mwm - +
+ - - + - - + + + + + - - 3025 - + toyota toyota toyota 40 -
- -
- - -
+ 2023-11-14T22:13:20.000Z
-
+ + - - eat whiteboard pinocchio 56 - + option-B - + + - - 2072-07-17T16:53:20.000Z - + CW82EiUYuY - + + - - option-C - + + - + + - - oGWaS8cu0u - + 1600 - + + - - - - - + true - + + + + + + + + - - 3136 - + CW82E -
- - -
+
-
-
+ + + + + - - chocolate can helping 57 - + helping whiteboard as 41 - + + - - 2076-02-15T13:46:40.000Z - + 2026-06-09T10:13:20.000Z - + + - - option-A - + option-C - + + - - 2kIguyscCc - + Q0u8gYkG6G - + + - - - - - + + - - -
- -
- - -
+ 1681
-
+ + - - pinocchio eat can 58 - + false - + + - - - 2079-10-08T14:13:20.000Z - - - + + + + - - option-B - + Q0u8g - +
+ - - - GE4mMo8KOK - - - - - + - - + + + + + - - 3364 - + whiteboard can eat 42 -
- -
- - -
+ 2029-01-25T01:46:40.000Z
-
+ + - - scott pinocchio chocolate 59 - + option-A - + + - - 2083-06-23T18:13:20.000Z - + eUgE8O0yIy - + + - - option-C - + + - + + + + - - UiqsoeO2a2 - + true - + + - - - - - - - - + + + + - - 3481 - + eUgE8 -
- - -
+
-
-
+ + + + + - - toyota toyota toyota 60 - + as eat scott 43 - + + - - 2087-04-01T01:46:40.000Z - + 2031-10-05T20:53:20.000Z - + + - - option-A - + option-B - + + - - iCcyGUekmk - + sySKaEGgUg - + + - - - - - + + - + + -
- -
- - -
+ false
-
+ + + + + + + + - - helping whiteboard as 61 - + sySKa - +
+ - - + - - + Select row + + + + + + - - option-B - + can pinocchio whiteboard 44 - + + - - wgO4iKuSyS - + 2034-07-08T19:33:20.000Z - + + - - - - - + option-C - + + - - 3721 - + 6SEQ24WOgO -
- -
- - -
+
-
+ + - - whiteboard can eat 62 - + 1936 - + + - - 2094-12-24T03:33:20.000Z - + true - + + - - - option-C - - - + + + + - - AAAAAAAAAA - + 6SEQ2 - +
+ - - + - - + + + + + - - 3844 - + bottle toyota bottle 45 -
- -
- - -
+ 2037-05-03T21:46:40.000Z
-
+ + - - as eat scott 63 - + option-A - + + - - 2098-12-09T21:46:40.000Z - + Kw0WUum6s6 - + + - - option-A - + + - + + + + - - OewGc0QsMs - + false - + + - - - - - - - - + + + + -
- - -
+
-
-
+ + + + + - - can pinocchio whiteboard 64 - + eat whiteboard pinocchio 46 - + + - - 2102-12-19T19:33:20.000Z - + 2040-03-22T03:33:20.000Z - + + - - option-B - + option-B - + + - - c8iM4qgaYa - + YQmcwk2o4o - + + - - - - - + + - + + - - 4096 - + 2116 -
- -
- - -
+ true
-
+ + - - - bottle toyota bottle 65 - - - + + + + - - 2107-01-20T20:53:20.000Z - + YQmcw - +
+ - - + - - + Select row + + + + + + - - qcUSWgwIkI - + chocolate can helping 47 - + + - - - - - + 2043-03-03T12:53:20.000Z - + + - - 4225 - + option-C -
- -
- - -
+ muYiOaIWGW
-
+ + - - eat whiteboard pinocchio 66 - + + - + + - - 2111-03-17T01:46:40.000Z - + 2209 - + + - - option-A - + false - + + - - - 46GYyWC0w0 - - - + + + + - - - - - + muYiO - - -
- - -
+
-
-
+ + + + + - - chocolate can helping 67 - + pinocchio eat can 48 - + + - - 2115-06-03T10:13:20.000Z - + 2046-03-07T01:46:40.000Z - + + - - option-B - + option-A - + + - - Ia2eQMSi8i - + 0OKoqQYESE - + + - - - - - + + - + + + + - - 4489 - + true -
- - -
- - -
-
-
+ + + + - - pinocchio eat can 68 - + 0OKoq - +
+ - - + - - + Select row + + + + + + - - option-C - + scott pinocchio chocolate 49 - + + - - W4oksCiQKQ - + 2049-04-02T18:13:20.000Z - + + - - - - - + option-B - + + - - 4624 - + Es6uIGowew -
- -
- - -
+
-
+ + - - scott pinocchio chocolate 69 - + 2401 - + + - - 2124-01-15T13:46:40.000Z - + false - + + - - - option-A - - - + + + + - - kYaqK2y8W8 - + Es6uI - +
+ - - + - - + + + + + -
- -
- - -
+ 2052-05-22T14:13:20.000Z
-
+ + - - toyota toyota toyota 70 - + option-C - + + - - 2128-06-11T08:53:20.000Z - + SMs0k64eqe - + + - - option-B - + + - + + - - y2MwmsEqiq - + 2500 - + + - - - - - + true - + + + + + + + + - - 4900 - + SMs0k -
- - -
+
-
-
+ + + + + - - helping whiteboard as 71 - + helping whiteboard as 51 - + + - - 2132-11-29T07:33:20.000Z - + 2055-08-04T13:46:40.000Z - + + - - option-C - + option-A - + + - - CW82EiUYuY - + gqe6CwKM2M - - - - - - - - - + + - - 5041 - + + -
- + + -
- - -
+ false
-
+ + - - - whiteboard can eat 72 - - - + + + + - - 2137-06-11T09:46:40.000Z - + gqe6C - +
+ - - + - - + Select row + + + + + + - - Q0u8gYkG6G - + whiteboard can eat 52 - + + - - - - - + 2058-11-08T16:53:20.000Z - - -
- -
- - -
+ option-B
-
+ + - - as eat scott 73 - + uKQCema4E4 - + + - - 2142-01-14T15:33:20.000Z - + + - + + - - option-B - + 2704 - + + - - eUgE8O0yIy - + true - + + - - - - - - - - + + + + - - 5329 - + uKQCe -
- - -
+
-
-
+ + + + + - - can pinocchio whiteboard 74 - + as eat scott 53 - + + - - 2146-09-12T00:53:20.000Z - + 2062-03-07T23:33:20.000Z - + + - - option-C - + option-C - + + - - sySKaEGgUg - + 8oCI6cqmQm - + + - - - - - + + - + + - - 5476 - + 2809 -
- -
- - -
+ false
-
+ + - - - bottle toyota bottle 75 - - - + + + + - - 2151-06-02T13:46:40.000Z - + 8oCI6 - +
+ - - - option-A - - - - - + - - + Select row + + + + + + - - - - - + can pinocchio whiteboard 54 - - -
- -
- - -
+ 2065-07-28T09:46:40.000Z
-
+ + - - eat whiteboard pinocchio 76 - + option-A - + + - - 2156-03-15T06:13:20.000Z - + MIyOYS6UcU - + + - - option-B - + + - + + + + - - Kw0WUum6s6 - + true - + + - - - - - - - - + + + + - - 5776 - + MIyOY -
- - -
+
-
-
+ + + + + - - chocolate can helping 77 - + bottle toyota bottle 55 - + + - - 2161-01-19T02:13:20.000Z - + 2069-01-09T23:33:20.000Z - + + - - option-C - + option-B - + + - - YQmcwk2o4o - + amkU0IMCoC - + + - - - - - + + - + + - - 5929 - + 3025 -
- -
- - -
+ false
-
+ + - - - pinocchio eat can 78 - - - + + + + - - 2165-12-18T01:46:40.000Z - + amkU0 - +
+ - - + - - + Select row + + + + + + - - muYiOaIWGW - + eat whiteboard pinocchio 56 - + + - - - - - + 2072-07-17T16:53:20.000Z - + + -
- -
- - -
+ oGWaS8cu0u
-
+ + - - scott pinocchio chocolate 79 - + + - + + - - 2170-12-09T04:53:20.000Z - + 3136 - + + - - option-B - + true - + + + + + + + + - - 0OKoqQYESE - + oGWaS - +
+ - - + - - + + + + + - - 6241 - + chocolate can helping 57 -
- -
- - -
+ 2076-02-15T13:46:40.000Z
-
+ + - - toyota toyota toyota 80 - + option-A - + + - - 2175-12-23T11:33:20.000Z - + 2kIguyscCc - + + - - option-C - + + - + + + + - - Es6uIGowew - + false - + + - - - - - - - - + + + + - - 6400 - + 2kIgu -
- - -
+
-
-
+ + + + + - - helping whiteboard as 81 - + pinocchio eat can 58 - + + - - 2181-01-28T21:46:40.000Z - + 2079-10-08T14:13:20.000Z - + + - - option-A - + option-B - + + - - SMs0k64eqe - + GE4mMo8KOK - + + - - - - - + + - - -
- -
- - -
+ 3364
-
+ + - - whiteboard can eat 82 - + true - + + + + + + + + - - 2186-03-30T11:33:20.000Z - + GE4mM - +
+ - - + - - + Select row + + + + + + - - gqe6CwKM2M - + scott pinocchio chocolate 59 - + + - - - - - + 2083-06-23T18:13:20.000Z - + + - - 6724 - + option-C -
- -
- - -
+ UiqsoeO2a2
-
+ + - - as eat scott 83 - + + - + + - - 2191-06-22T04:53:20.000Z - + 3481 - + + - - option-C - + false - + + + + + + + + - - uKQCema4E4 - + Uiqso - +
+ - - + - - + + + + + - - 6889 - + toyota toyota toyota 60 -
- -
- - -
+ 2087-04-01T01:46:40.000Z
-
+ + - - can pinocchio whiteboard 84 - + option-A - + + - - 2196-10-06T01:46:40.000Z - + iCcyGUekmk - + + - - option-A - + + - + + + + - - 8oCI6cqmQm - + true - + + - - - - - - - - + + + + -
- - -
+
-
-
+ + + + + - - bottle toyota bottle 85 - + helping whiteboard as 61 - + + - - 2202-02-14T02:13:20.000Z - + 2091-01-30T12:53:20.000Z - + + - - option-B - + option-B - + + - - MIyOYS6UcU - + wgO4iKuSyS - + + - - - - - + + - + + - - 7225 - + 3721 -
- -
- - -
+ false
-
+ + - - - eat whiteboard pinocchio 86 - - - + + + + - - 2207-07-17T06:13:20.000Z - + wgO4i - +
+ - - + - - + Select row + + + + + + - - amkU0IMCoC - + whiteboard can eat 62 - + + - - - - - + 2094-12-24T03:33:20.000Z - + + - - 7396 - + option-C -
- -
- - -
+ AAAAAAAAAA
-
+ + - - chocolate can helping 87 - + + - + + - - 2213-01-08T13:46:40.000Z - + 3844 - + + - - option-A - + true - + + - - - oGWaS8cu0u - - - + + + + - - - - - + AAAAA - - -
- - -
+
-
-
+ + + + + - - pinocchio eat can 88 - + as eat scott 63 - + + - - 2218-07-27T00:53:20.000Z - + 2098-12-09T21:46:40.000Z - + + - - option-B - + option-A - + + - - 2kIguyscCc - + OewGc0QsMs - + + - - - - - + + - + + + + - - 7744 - + false -
- - -
- - -
-
-
+ + + + - - scott pinocchio chocolate 89 - + OewGc - +
+ - - + - - + Select row + + + + + + - - option-C - + can pinocchio whiteboard 64 - + + - - GE4mMo8KOK - + 2102-12-19T19:33:20.000Z - + + - - - - - + option-B - + + - - 7921 - + c8iM4qgaYa -
- -
- - -
+
-
+ + - - toyota toyota toyota 90 - + 4096 - + + - - 2229-11-06T09:46:40.000Z - + true - + + - - - option-A - - - - - - UiqsoeO2a2 - - - + + + + - - - - - + c8iM4 - - -
- - -
+
-
-
+ + + + + - - helping whiteboard as 91 - + bottle toyota bottle 65 - + + - - 2235-08-02T07:33:20.000Z - + 2107-01-20T20:53:20.000Z - + + - - option-B - + option-C - + + - - iCcyGUekmk - + qcUSWgwIkI - + + - - - - - + + - + + - - 8281 - + 4225 -
- -
- - -
+ false
-
+ + - - - whiteboard can eat 92 - - - + + + + - - 2241-05-20T08:53:20.000Z - + qcUSW - +
+ - - + - - + Select row + + + + + + - - wgO4iKuSyS - + eat whiteboard pinocchio 66 - + + - - - - - + 2111-03-17T01:46:40.000Z - + + - - 8464 - + option-A -
- -
- - -
+ 46GYyWC0w0
-
+ + - - as eat scott 93 - + + - + + + + - - 2247-03-31T13:46:40.000Z - + true - + + - - - option-A - - - + + + + - - AAAAAAAAAA - + 46GYy - +
+ - - + - - - -
- -
- - -
+ chocolate can helping 67
-
+ + - - can pinocchio whiteboard 94 - + 2115-06-03T10:13:20.000Z - + + - - 2253-03-03T22:13:20.000Z - + option-B - + + - - option-B - + Ia2eQMSi8i - + + - - OewGc0QsMs - + + - + + - - - - - + 4489 - + + - - 8836 - + false -
- - -
- - -
-
-
+ + + + - - bottle toyota bottle 95 - + Ia2eQ - +
+ - - + - - + Select row + + + + + + - - option-C - + pinocchio eat can 68 - + + - - c8iM4qgaYa - + 2119-09-12T22:13:20.000Z - + + - - - - - + option-C - + + - - 9025 - + W4oksCiQKQ -
- -
- - -
+
-
+ + - - eat whiteboard pinocchio 96 - + 4624 - + + - - 2265-03-19T01:46:40.000Z - + true - + + - - - option-A - - - + + + + - - qcUSWgwIkI - + W4oks - +
+ - - + - - - -
- -
- - -
+ scott pinocchio chocolate 69
-
+ + - - chocolate can helping 97 - + 2124-01-15T13:46:40.000Z - + + - - 2271-04-30T20:53:20.000Z - + option-A - + + - - option-B - + kYaqK2y8W8 - + + - - 46GYyWC0w0 - + + - + + + + - - - - - + false - + + + + + + + + - - 9409 - + kYaqK -
- - -
+
+ Select row +
+ + + +
+ + + toyota toyota toyota 70 - + + - - pinocchio eat can 98 - + 2128-06-11T08:53:20.000Z - + + - - 2277-07-04T19:33:20.000Z - + option-B - + + - - option-C - + y2MwmsEqiq - + + - - Ia2eQMSi8i - + + - + + - - - - - + 4900 - + + - - 9604 - + true -
- + + + + + + -
+ +
+ +
+ +
-
-
+ + + + + - - scott pinocchio chocolate 99 - + helping whiteboard as 71 - + + - - 2283-10-01T21:46:40.000Z - + 2132-11-29T07:33:20.000Z - + + - - option-A - + option-C - + + - - W4oksCiQKQ - + CW82EiUYuY - + + - - - - - + + - - -
-
-
- - - -`; - -exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/Table/StatefulTable Stateful Example with Create & Save Views 1`] = ` -
-
-
- - Focus sentinel - -
-
-

- Manage views -

- -
-
-
-
-
+ + - - - -
- - - -
-
- - -
-
-
-
-
+ -
- Available Views -
-
-
-
-
+ CW82E + + + + + -
-
-
+
+ Select row + +
-
-
-
+ + -
-
-
-
-
- My view 2 (Private) -
-
-
- - - default - -
-
-
- - -
-
-
- Columns: 7, Filters: 1, Search: -
-
-
-
-
-
-
-
+ + + -
- Page 1 + 2137-06-11T09:46:40.000Z -
-
-
-
-
-
- - Focus sentinel - -
-
-
-
-
-

- - 0 items selected - -

-
-
- -
-
- -
-
-
- - - -
- - - -
- - - - -
-
- -
+ + option-A + + + + - -
+ + + + -
-
-
-
-
-
-
- - - - + + + + + + + + + + + + + + - + + - + + - - - - + + + - + + - + + - + + + - + - + - + - + - + - + - + - - + + + - + - + + + - + - + - + - + - + - + - + - + - - + + + + - - - + + + - + - + - + - + - + - + + - + - - + + + + - + + + - + - + - + - + - + - + - + - + + - + + + - - + + - - + - + - + - + - + - + - + - + - + + + - - + + - + - + - + - + - + + - + + - + + + - + - + - + - - + + + + - + - + - + + - + + + + - + - + - + - + - + - - - + + - - + + - + + + - + - + - + - + - + - - - - + + - + - + + - + + + - + - + - + - + - + - + - - - + + - - + + - + + + - + - + - + - + - + - + - + - - -
- + + -
- - -
+ true
- -
+ + + - + + + Q0u8g + + +
+ +
+ +
+ + + as eat scott 73 + + + + + + 2142-01-14T15:33:20.000Z + + + + + + option-B + + + + + + eUgE8O0yIy + + + + + - - - - + + + + - - Date - -
+ +
+ + + false + + + + + + + + + + + + eUgE8 - - + +
+ - - - + + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - + 5476 - - + + + - + true - -
- - - -
-
-
- -
-
- -
-
-
-
- - - -
-
-
-
+ + + + + -
-
-
- -
-
- -
-
-
-
-
- -
+ + +
+
-
+
- -
-
-
+ Select row + +
-
+ + + -
-
-
- -
-
- -
-
-
-
-
- -
+ + + + -
-
-
- -
-
- -
-
-
-
-
- -
+ + + + -
-
-
- -
+ + + + -
-
-
- -
-
- -
-
-
-
-
- -
- -
- - - + + + + + -
- - -
+ false
-
+ + + + + + + + - - helping whiteboard as 11 - + 6SEQ2 - +
+ - - + - - + Select row + + + + + + - - option-C - + eat whiteboard pinocchio 76 - + + - - - - - + 2156-03-15T06:13:20.000Z - + + - - 121 - + option-B - + + - - false - + Kw0WUum6s6 - + + - - + + - - eUgE8 - + 5776 - - + + -
-
- - -
-
-
- - - + + + + -
- - -
+ Kw0WU
-
+
+ - - + - - + Select row + + + + + + - - 1982-04-30T07:33:20.000Z - + chocolate can helping 77 - + + - - option-C - + 2161-01-19T02:13:20.000Z - + + - - - - - + option-C - + + - - 289 - + YQmcwk2o4o - + + - - false - + + - + + - - - + 5929 - + + - - 0OKoq - + false - - + + -
-
- - -
-
-
- - - - -
- - -
-
-
- - helping whiteboard as 41 - + YQmcw - +
+ - - + - - + Select row + + + + + + - - option-C - + pinocchio eat can 78 - + + - - - - - + 2165-12-18T01:46:40.000Z - + + - - 1681 - + option-A - + + - - false - + muYiOaIWGW - + + - - + + + + - - Q0u8g - + true - - + + -
-
- - -
-
-
- - - + +
+ - -
+
-
-
+ + + + + - - chocolate can helping 47 - + scott pinocchio chocolate 79 - + + - - 2043-03-03T12:53:20.000Z - + 2170-12-09T04:53:20.000Z - + + - - option-C - + option-B - + + - - - - - + 0OKoqQYESE - + + - - 2209 - + + - + + - - false - + 6241 - + + - - - + false - + + + + + + + + - - muYiO - + 0OKoq - - +
+
-
+
+ Select row + +
-
- - - -
- - -
+ toyota toyota toyota 80
-
+ + - - helping whiteboard as 71 - + 2175-12-23T11:33:20.000Z - + + - - 2132-11-29T07:33:20.000Z - + option-C - + + - - option-C - + Es6uIGowew - + + - - - - - + + - + + - - 5041 - + 6400 - + + - - false - + true - + + - - - - - - + + + + - - CW82E - + Es6uI - - +
+
-
+
+ Select row + +
-
- - - + + + -
- - -
+ 2181-01-28T21:46:40.000Z
-
+ + - - chocolate can helping 77 - + option-A - + + - - 2161-01-19T02:13:20.000Z - + SMs0k64eqe - + + - - option-C - + + - + + + + - - - - - + false - + + + + + + + + - - 5929 - + SMs0k - +
+ - - + - - + Select row + + + + + + - - - + whiteboard can eat 82 - + + - - YQmcw - + 2186-03-30T11:33:20.000Z - - + + -
-
- - -
-
-
- - + + - - - + + + -
- - -
+ 6724
-
+ + - - helping whiteboard as 1 - + true - + + + + + + + + - - 1973-03-14T23:33:20.000Z - + gqe6C - +
+ - - + + + Select row + + + + + + + + as eat scott 83 - + + - - - - - + 2191-06-22T04:53:20.000Z - + + - - 1 - + option-C - + + - - false - + uKQCema4E4 - + + - - + + - - OewGc - + 6889 - - -
-
- - -
-
-
- - - -
- - -
+ false
-
+ + + + + + + + - - chocolate can helping 7 - + uKQCe - +
+ - - + - - + Select row + + + + + + - - option-B - + can pinocchio whiteboard 84 - + + - - - - - + 2196-10-06T01:46:40.000Z - + + - - 49 - + option-A - + + - - false - + 8oCI6cqmQm - + + - - - - - kYaqK - - - - -
-
- - -
-
-
- - - + + -
- - -
+ true
-
+ + + + + + + + - - helping whiteboard as 31 - + 8oCI6 - +
+ - - + - - + Select row + + + + + + - - option-B - + bottle toyota bottle 85 - + + - - - - - + 2202-02-14T02:13:20.000Z - + + - - 961 - + option-B - + + - - false - + MIyOYS6UcU - + + - - + + - - AAAAA - + 7225 - - -
-
- - -
-
-
- - - -
- - -
+ false
-
+ + + + + + + + - - chocolate can helping 37 - + MIyOY - +
+ - - + - - + Select row + + + + + + - - option-B - + eat whiteboard pinocchio 86 - + + - - - - - + 2207-07-17T06:13:20.000Z - + + - - 1369 - + option-C - + + - - false - + amkU0IMCoC - + + - - + + - - W4oks - + 7396 - - + + -
-
- - -
-
-
-
-
-
-
- -
-
-
+ + + -
- -
-
-
-
- - 1–10 of 20 items - -
-
-
-
- -
+ + -
- - - - -
-
-
-
- - 1 of 2 pages - -
- - -
-
-
-
-
-
-`; - -exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/Table/StatefulTable Stateful Example with every third row unselectable 1`] = ` -
-
-
-
-
-

- - 0 items selected - -

-
-
- -
-
- -
-
-
-
- - - - - + + + + + + + + + + + + + + - - - - @@ -23385,7 +20743,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-0-date" + id="cell-table-row-89-date" offset={0} > - 1973-03-03T09:46:40.000Z + 2224-03-05T15:33:20.000Z @@ -23404,7 +20762,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-0-select" + id="cell-table-row-89-select" offset={0} > - option-A + option-C @@ -23423,7 +20781,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-0-secretField" + id="cell-table-row-89-secretField" offset={0} > - AAAAAAAAAA + GE4mMo8KOK @@ -23442,7 +20800,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-0-status" + id="cell-table-row-89-status" offset={0} > + > + + 7921 + + @@ -23503,7 +20868,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="node" data-offset={0} - id="cell-table-row-0-node" + id="cell-table-row-89-node" offset={0} > - AAAAA + GE4mM @@ -23564,13 +20929,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-1" + id="select-row-table-row-90" onChange={[Function]} type="checkbox" /> @@ -23731,7 +21089,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="node" data-offset={0} - id="cell-table-row-1-node" + id="cell-table-row-90-node" offset={0} > - OewGc + Uiqso @@ -23792,13 +21150,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-2" + id="select-row-table-row-91" onChange={[Function]} type="checkbox" /> @@ -24062,7 +21420,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-3-date" + id="cell-table-row-92-date" offset={0} > - 1973-06-15T13:46:40.000Z + 2241-05-20T08:53:20.000Z @@ -24081,7 +21439,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-3-select" + id="cell-table-row-92-select" offset={0} > - option-A + option-C @@ -24100,7 +21458,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-3-secretField" + id="cell-table-row-92-secretField" offset={0} > - qcUSWgwIkI + wgO4iKuSyS @@ -24119,7 +21477,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-3-status" + id="cell-table-row-92-status" offset={0} > + > + + 8464 + + @@ -24180,7 +21545,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="node" data-offset={0} - id="cell-table-row-3-node" + id="cell-table-row-92-node" offset={0} > - qcUSW + wgO4i @@ -24241,13 +21606,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-4" + id="select-row-table-row-93" onChange={[Function]} type="checkbox" /> @@ -24408,7 +21766,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="node" data-offset={0} - id="cell-table-row-4-node" + id="cell-table-row-93-node" offset={0} > - 46GYy + AAAAA @@ -24469,13 +21827,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-5" + id="select-row-table-row-94" onChange={[Function]} type="checkbox" /> @@ -24739,7 +22097,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-6-date" + id="cell-table-row-95-date" offset={0} > - 1974-04-24T01:46:40.000Z + 2259-02-28T10:13:20.000Z @@ -24758,7 +22116,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-6-select" + id="cell-table-row-95-select" offset={0} > - option-A + option-C @@ -24777,7 +22135,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-6-secretField" + id="cell-table-row-95-secretField" offset={0} > - W4oksCiQKQ + c8iM4qgaYa @@ -24796,7 +22154,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-6-status" + id="cell-table-row-95-status" offset={0} > + > + + 9025 + + @@ -24857,7 +22222,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="node" data-offset={0} - id="cell-table-row-6-node" + id="cell-table-row-95-node" offset={0} > - W4oks + c8iM4 @@ -24918,13 +22283,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-7" + id="select-row-table-row-96" onChange={[Function]} type="checkbox" /> @@ -25085,7 +22443,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="node" data-offset={0} - id="cell-table-row-7-node" + id="cell-table-row-96-node" offset={0} > - kYaqK + qcUSW @@ -25146,13 +22504,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-8" + id="select-row-table-row-97" onChange={[Function]} type="checkbox" /> - - - - - - - - - - - @@ -25595,13 +22732,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-10" + id="select-row-table-row-98" onChange={[Function]} type="checkbox" /> - +
-
+ - - - + + - Date + 2213-01-08T13:46:40.000Z - - + - + + + oGWaS8cu0u + + + + + + - Select - + + - + + + + + - - + false + + + + - - - + + -
+ +
- - - + + Select row + + +
+
+
+ + - - - - - + + + - + + - - - + + + + - - - - - + + + - + + + 7744 + + + + + + true + + + - - - - - - - - - - + + - - + +
- true + false - false + true
- false + true - true + false
- true + false - false + true
- -
- - -
-
-
- - - scott pinocchio chocolate 9 - - - - - - 1975-09-26T21:46:40.000Z - - - - - - option-A - - - - - - CW82EiUYuY - - - - - - - - - - - - - - - - false - - - - - - - - - - CW82E + 46GYy - eUgE8 + W4oks
+
+
+
+
+`; + +exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/Table/StatefulTable with alignment and column tooltip 1`] = ` +
+
+
+
+
+
+

+ + 0 items selected + +

+
+
+
+
+ +
+
+
+
+ + + + + - + + + - - true +
+ + +
-
- - - + - - - - + - - + + - - option-B +
+ + +
-
- - - - - - - + - - - + - -
- - -
-
- - + - - - - - - + - - true +
+ + +
-
- - - - - - - + - - - + + - - YQmcwk2o4o +
+ + +
-
- - - - - - + - - - - + - + - - 1981-04-13T08:53:20.000Z +
+ + +
-
- - - - - - - - - - - + - -
- - -
-
- - + - - - - - - + + - - false +
+ + +
-
- - - - - - - + - - - - + - - - - + + - - - - - - - - - - + - - - + - - SMs0k64eqe +
+ + +
-
- - - - - - + - - - - + - + + - - 1985-11-05T00:53:20.000Z +
+ + +
-
- - - - - - - - - - - + - -
- - -
-
- - + - - - + - - - - - + - - uKQCe +
+ + +
-
- - - - - + - - - - + + - - - - + + - - - - - - + - - - - + - + - - 1989-12-07T02:13:20.000Z +
+ + +
-
- - - - - - - - - - - + - -
- - -
-
- - - - - - - - - - - - - + + - -
- - -
-
- - - - - - - - + - + - - - - - - - + - - - - + - - - - + - - - - + + - - - - - - + - - - - + - + + - - 1996-04-08T21:46:40.000Z +
+ + +
-
- - - - - - - - + - - - + - -
- - -
-
- - + - - - - - - + - - true +
+ + +
-
- - - - - - - + - - - + + - - iCcyGUekmk +
+ + +
-
- - - - - - - - - - + - + - - 2001-09-09T01:46:40.000Z +
+ + +
-
- - - - - - - - + - - - + - -
- - -
-
- - + - - - - - - + + - - false +
+ + +
-
- - - + - - - - + - - - + - - OewGc0QsMs +
+ + +
-
- - - - - - - - - - + - + - - 2007-09-05T13:46:40.000Z +
+ + +
-
- - - - - - - - + - - - + + - -
- - -
-
- - + - - - - - - + - - true +
+ + +
-
- - - + - - - - + - - - + - - 46GYyWC0w0 +
+ + +
-
- - - - - - + - - - + + - -
- - -
-
- - + - - - - - - - + - - - - - - - + - - - - + - - - - + - - - - + + - - - - - - + - - - - + - + + - - 2018-12-05T08:53:20.000Z +
+ + +
-
- - - - - - - - - - - + - -
- - -
-
- - + - - - - - - - - - - - + - -
- - -
-
- - + - - - - - + + - - 1600 - - - - - - - - - - + - - - - + - - - - + + - - - - - - + - - - - + - + - - 2029-01-25T01:46:40.000Z +
+ + +
-
- - - - - - - - - - - + + - -
- - -
-
- - + - - - - + - - + - - false +
+ + +
-
- - - + - - - - + - - - + - - 6SEQ24WOgO +
+ + +
-
- - - - - - - - - - + - + + - - 2037-05-03T21:46:40.000Z +
+ + +
-
- - - - - - - - + - - - + - -
- - -
-
- - + - - - - - - + - - true +
+ + +
-
- - - - - - - + - - - - + + - - - - + + - - - - - - + - - - - + - + - - 2046-03-07T01:46:40.000Z +
+ + +
-
- - - - - - - - + - - - + + - -
- - -
-
- - - - - - - - - - + + - - Es6uI +
+ + +
-
- - - - - + - - - - - + - - 2500 +
+ + +
-
- - - - + - - - - + - - + - - option-A +
+ + +
-
- - - - - - - + - - - + + - -
- - -
-
- - + - - - - - - + - - true +
+ + +
-
- - - - - - - + - - - - + - - - - + + - - - - - - + - - - - + - + + - - 2065-07-28T09:46:40.000Z +
+ + +
-
- - - - - - - - + - - - + - -
- - -
-
- - + - - - - - - + - - false - - - - + - + - - - - + - - + + - - option-C +
+ + +
-
- - - - - - - + - - - + - -
- - -
-
- - - - - - - - - - - - - + - -
- - -
-
- - + - - - - - - + + - - true +
+ + +
-
- - - - - - - + - - - - + - - - - + + - - - - - - - - - - + - - + - - option-A +
+ + +
-
- - - - - - - + - - - + + - -
- - -
-
- - + - - - - - - - - - - - + - -
- - -
-
- - + - - - - - - + - - true - - - - - + - - - - + - - - - + + - - - - + + - - - - - - + - - - - + - + - + - - option-B +
+ + +
-
- - - - - - - + - - - + - -
- - -
-
- - - - - - - - - + + - - - - - - - + - - - - + - - - - + - - - - + + - - - - - - - - - - + - - - + - - Ia2eQMSi8i +
+ + +
-
- - - - - - + - - - + + - -
- - -
-
- - + - - - - - - + - - true +
+ + +
-
- - - - - - - + - - - - + - - - - - - - - - + - - + - - - - + - + + - - 2128-06-11T08:53:20.000Z +
+ + +
-
- - - - - - - - + + - - y2Mwm - - - - - - - + - - - - - - + - - false +
+ + +
-
- - - - - - - + - - - - + + - - - - + + - - - - - - - - - - + - - - + - - eUgE8O0yIy +
+ + +
-
- - - - - - - - - - + - + - - 2146-09-12T00:53:20.000Z +
+ + +
-
- - - - - - - - - - - + + - -
- - -
-
- - + - - - - - - - - - - - + - -
- - -
-
- - + - - - - - - + - - true +
+ + +
-
- - - - - - - + - - - - + + - - - - + + - - - - - - + - - - - + - + - - 2165-12-18T01:46:40.000Z +
+ + +
-
- - - - - - - - + - - - + - -
- - -
-
- - + - - - - - - + + - - false +
+ + +
-
- - - + - - - - + - - - + - - Es6uIGowew +
+ + +
-
- - - - - - - - - - + - + - - 2181-01-28T21:46:40.000Z +
+ + +
-
- - - - - - - - - - - + + - -
- - -
-
- - + - - - - - - + - - true +
+ + +
-
- - - - - - - + - - - - + - - - - - - - - + - - - + - - - + + + - -
- - -
-
- - + - - - - - - - + - - - - - - - - - - - + - - - - - - + - - false +
+ + +
-
- - - - - - - + - - - - + + - - - - + + - - - - - - + - - - - + - + - - 2213-01-08T13:46:40.000Z +
+ + +
-
- - - - - - - - - - - - - - + - - option-B +
+ + +
-
- - - - - - - - - - - - - - + + +
-
- - -
- - -
- + Select all items + + + + + + - - whiteboard can eat 12 - - - - - + + String + + + + + + + + + + + + + - 1977-09-25T01:46:40.000Z + + + Select an option + - - - - + - option-A + + Secret Information + - - - - + - sySKaEGgUg + + Status + - - - - + - + + + Number + + - - - - - - -
- + - - - - - - + toyota toyota toyota 0 + + + - sySKa + + 1973-03-03T09:46:40.000Z + - -
- + -
- - -
- -
- + + - as eat scott 13 + + AAAAAAAAAA + - - - + - 1978-07-11T10:13:20.000Z + + + + + - - + + +
- + - 6SEQ24WOgO + + helping whiteboard as 1 + - - - + - - - + 1973-03-14T23:33:20.000Z + - - - + - 169 + + option-B + - - - + - false + + OewGc0QsMs + - - - + - - - - - - + + + + + + - 6SEQ2 + + 1 + - -
+
- + Select row + + + + + - can pinocchio whiteboard 14 + + whiteboard can eat 2 + - - - + - 1979-05-19T22:13:20.000Z + + 1973-04-18T16:53:20.000Z + - - - + - option-C + + option-C + - - - + - Kw0WUum6s6 + + c8iM4qgaYa + - - - + - - - + + + + - - - + - 196 + + 4 + - - +
- - - - - - - + - Kw0WU + + as eat scott 3 + - -
- + -
- - -
- -
- + + - bottle toyota bottle 15 + + option-A + - - - + - 1980-04-19T13:46:40.000Z + + qcUSWgwIkI + - - - + - option-A + + + + + - - + + +
- + - - - + can pinocchio whiteboard 4 + - - - - - + - false + + 1973-09-04T14:13:20.000Z + - - - + - - - - - - + option-B + + + - YQmcw + + 46GYyWC0w0 + - -
- + -
- - -
- -
- + + + + - eat whiteboard pinocchio 16 + + 16 + - - +
- + - option-B + + bottle toyota bottle 5 + - - - + - muYiOaIWGW + + 1973-12-17T18:13:20.000Z + - - - + - - - + option-C + - - - + - 256 + + Ia2eQMSi8i + - - - + - true + + + + + - - - - - - - - - + - muYiO + + 25 + - -
+
- + Select row + + + + + - chocolate can helping 17 + + eat whiteboard pinocchio 6 + - - - + - 1982-04-30T07:33:20.000Z + + 1974-04-24T01:46:40.000Z + - - - + - option-C + + option-A + - - - + - 0OKoqQYESE + + W4oksCiQKQ + - - - + - - - + + + + - - - + - 289 - - - +
- - - - - - - + - 0OKoq + + chocolate can helping 7 + - -
- + -
- - -
- -
- + + - pinocchio eat can 18 + + option-B + - - - + - 1983-06-09T09:46:40.000Z + + kYaqK2y8W8 + - - - + - option-A + + + + + - - - + - Es6uIGowew + + 49 + - - +
- - - + - true + + pinocchio eat can 8 + - - - - - - - - - + - Es6uI + + 1975-03-14T03:33:20.000Z + - -
- + -
- - -
- -
- + + - scott pinocchio chocolate 19 + + y2MwmsEqiq + - - - + - 1984-08-10T15:33:20.000Z + + + + + - - - + - option-B + + 64 + - - +
- + - - - + scott pinocchio chocolate 9 + - - - + - 361 + + 1975-09-26T21:46:40.000Z + - - - + - false + + option-A + - - - + - - - - - - + CW82EiUYuY + + + - SMs0k - - -
- -
- - -
-
-
- + + + + - toyota toyota toyota 20 - - - +
- + - option-C + + toyota toyota toyota 10 + - - - + - gqe6CwKM2M + + 1976-05-03T19:33:20.000Z + - - - + - - - + option-B + - - - + - 400 + + Q0u8gYkG6G + - - - + - true + + + + + - - - - - - - - - + - gqe6C + + 100 + - -
+
- + Select row + + + + + - helping whiteboard as 21 + + helping whiteboard as 11 + - - - + - 1987-02-22T13:46:40.000Z + + 1977-01-01T20:53:20.000Z + - - - + - option-A - - - - + option-C + + + - uKQCema4E4 + + eUgE8O0yIy + - - - + - - - + + + + - - - - - + - false + + 121 + - - - - - - - - +
- + -
- - -
- -
- + + - whiteboard can eat 22 + + 1977-09-25T01:46:40.000Z + - - - + - 1988-07-04T06:13:20.000Z + + option-A + - - - + - option-B + + sySKaEGgUg + - - - + - 8oCI6cqmQm + + + + + - - + + +
- + - 484 + + as eat scott 13 + - - - + - true + + 1978-07-11T10:13:20.000Z + - - - + - - - - - - + option-B + + + - 8oCI6 + + 6SEQ24WOgO + - -
- + -
- - -
- -
- + + + + - as eat scott 23 + + 169 + - - +
- + - option-C + + can pinocchio whiteboard 14 + - - - + - MIyOYS6UcU + + 1979-05-19T22:13:20.000Z + - - - + - - - + option-C + - - - + - 529 + + Kw0WUum6s6 + - - - + - false + + + + + - - - - - - - - - + - MIyOY + + 196 + - -
+
- - - can pinocchio whiteboard 24 + + Select row + + + - - - + - 1991-06-04T01:46:40.000Z + + bottle toyota bottle 15 + - - - + - option-A + + 1980-04-19T13:46:40.000Z + - - - + - amkU0IMCoC + + option-A + - - - + - - - + YQmcwk2o4o + - - - - - + - true + + + + + - - - - - - - - - + - amkU0 - - -
+
- - - bottle toyota bottle 25 + + Select row + + + - - - + - 1992-12-22T04:53:20.000Z + + eat whiteboard pinocchio 16 + - - - + - option-B + + 1981-04-13T08:53:20.000Z + - - - + - oGWaS8cu0u + + option-B + - - - + - - - + muYiOaIWGW + - - - + - 625 - - - - + + + + + + - false + + 256 + - - +
- + + + + + - oGWaS + + chocolate can helping 17 + - -
- + -
- - -
- -
- + + - eat whiteboard pinocchio 26 + + option-C + - - - + - 1994-08-04T11:33:20.000Z + + 0OKoqQYESE + - - - + - option-C + + + + + - - - + - 2kIguyscCc + + 289 + - - +
- + - 676 + + pinocchio eat can 18 + - - - + - true + + 1983-06-09T09:46:40.000Z + - - - + - - - - - - + option-A + + + - 2kIgu + + Es6uIGowew + - -
- + -
- - -
- -
- + + + + - chocolate can helping 27 - - - +
- + - option-A + + scott pinocchio chocolate 19 + - - - + - GE4mMo8KOK + + 1984-08-10T15:33:20.000Z + - - - + - - - + option-B + - - - - - + - false + + SMs0k64eqe + - - - + - - - - - - + + + + + + - GE4mM + + 361 + - -
+
- + Select row + + + + + - pinocchio eat can 28 + + toyota toyota toyota 20 + - - - + - 1998-01-05T11:33:20.000Z + + 1985-11-05T00:53:20.000Z + - - - + - option-B + + option-C + - - - + - UiqsoeO2a2 + + gqe6CwKM2M + - - - + - - - + + + + - - - + - 784 + + 400 + - - +
- - - - - - - + - Uiqso + + helping whiteboard as 21 + - -
- + -
- - -
- -
- + + - scott pinocchio chocolate 29 + + option-A + - - - + - 1999-10-27T04:53:20.000Z + + uKQCema4E4 + - - - + - option-C + + + + + - - + + +
- + - - - + whiteboard can eat 22 + - - - + - 841 + + 1988-07-04T06:13:20.000Z + - - - + - false + + option-B + - - - - - - - - - + - iCcyG + + 8oCI6cqmQm + - -
- + -
- - -
- -
- + + + + - toyota toyota toyota 30 + + 484 + - - +
- + - option-A + + as eat scott 23 + - - - + - wgO4iKuSyS + + 1989-12-07T02:13:20.000Z + - - - + - - - + option-C + - - - - - + - true + + MIyOYS6UcU + - - - + - - - - - - + + + + + + - wgO4i + + 529 + - -
+
- + Select row + + + + + - helping whiteboard as 31 + + can pinocchio whiteboard 24 + - - - + - 2003-08-16T02:13:20.000Z + + 1991-06-04T01:46:40.000Z + - - - + - option-B + + option-A + - - - + - AAAAAAAAAA + + amkU0IMCoC + - - - + - - - + + + + - - - + - 961 - - - +
- + - - - - - - + bottle toyota bottle 25 + + + - AAAAA + + 1992-12-22T04:53:20.000Z + - -
- + -
- - -
- -
- + + - whiteboard can eat 32 + + oGWaS8cu0u + - - - + - 2005-08-14T06:13:20.000Z + + + + + - - - + - option-C + + 625 + - - +
- + - - - + eat whiteboard pinocchio 26 + - - - + - 1024 + + 1994-08-04T11:33:20.000Z + - - - + - true + + option-C + - - - - - - - - - + - OewGc + + 2kIguyscCc + - -
- + -
- - -
- -
- + + + + - as eat scott 33 + + 676 + - - +
- + - option-A + + chocolate can helping 27 + - - - + - c8iM4qgaYa + + 1996-04-08T21:46:40.000Z + - - - + - - - + option-A + - - - - - + - false + + GE4mMo8KOK + - - - + - - - - - - + + + + + + - c8iM4 - - -
+
- + Select row + + + + + - can pinocchio whiteboard 34 + + pinocchio eat can 28 + - - - + - 2009-10-20T00:53:20.000Z + + 1998-01-05T11:33:20.000Z + - - - + - option-B + + option-B + - - - + - qcUSWgwIkI + + UiqsoeO2a2 + - - - + - - - + + + + - - - + - 1156 + + 784 + - - +
- + - - - - - - + scott pinocchio chocolate 29 + + + - qcUSW + + 1999-10-27T04:53:20.000Z + - -
- + -
- - -
- -
- + + - bottle toyota bottle 35 + + iCcyGUekmk + - - - + - 2011-12-27T15:33:20.000Z + + + + + - - - + - option-C + + 841 + - - +
- + - - - + toyota toyota toyota 30 + - - - + - 1225 + + 2001-09-09T01:46:40.000Z + - - - + - false + + option-A + - - - + - - - - - - + wgO4iKuSyS + + + - 46GYy + + + + + - -
+ + +
- + Select row + + + + + - eat whiteboard pinocchio 36 + + helping whiteboard as 31 + - - - + - 2014-03-28T09:46:40.000Z + + 2003-08-16T02:13:20.000Z + - - - + - option-A + + option-B + - - - + - Ia2eQMSi8i + + AAAAAAAAAA + - - - + - - - + + + + - - - - - + - true + + 961 + - - +
- + + + + + - Ia2eQ + + whiteboard can eat 32 + - -
- + -
- - -
- -
- + + - chocolate can helping 37 + + option-C + - - - + - 2016-07-20T07:33:20.000Z + + OewGc0QsMs + - - - + - option-B + + + + + - - - + - W4oksCiQKQ + + 1024 + - - +
- + - 1369 + + as eat scott 33 + - - - + - false + + 2007-09-05T13:46:40.000Z + - - - + - - - - - - + option-A + + + - W4oks + + c8iM4qgaYa + - -
- + -
- - -
- -
- + + + + - pinocchio eat can 38 - - - +
- + - option-C + + can pinocchio whiteboard 34 + - - - + - kYaqK2y8W8 + + 2009-10-20T00:53:20.000Z + - - - + - - - + option-B + - - - + - 1444 + + qcUSWgwIkI + - - - + - true + + + + + - - - - - - - - - + - kYaqK + + 1156 + - -
+
- + Select row + + + + + - scott pinocchio chocolate 39 + + bottle toyota bottle 35 + - - - - - 2021-05-14T13:46:40.000Z - - - - + - option-A + + 2011-12-27T15:33:20.000Z + - - - + - y2MwmsEqiq + + option-C + - - - + - - - + 46GYyWC0w0 + - - - - - + - false + + + + + - - - - - - - - - + - y2Mwm + + 1225 + - -
+
- + Select row + + + + + - toyota toyota toyota 40 + + eat whiteboard pinocchio 36 + - - - + - 2023-11-14T22:13:20.000Z + + 2014-03-28T09:46:40.000Z + - - - + - option-B + + option-A + - - - + - CW82EiUYuY + + Ia2eQMSi8i + - - - + - - - + + + + - - + + +
- - - true +
+ + +
-
-
- - - - - - - + - CW82E + + chocolate can helping 37 + - -
- + -
- - -
- -
- + + - helping whiteboard as 41 + + option-B + - - - + - 2026-06-09T10:13:20.000Z + + W4oksCiQKQ + - - - + - option-C + + + + + - - - + - Q0u8gYkG6G + + 1369 + - - +
- + - 1681 + + pinocchio eat can 38 + - - - + - false + + 2018-12-05T08:53:20.000Z + - - - + - - - - - - + option-C + + + - Q0u8g + + kYaqK2y8W8 + - -
- + -
- - -
- -
- + + + + - whiteboard can eat 42 + + 1444 + - - +
- + - option-A + + scott pinocchio chocolate 39 + - - - + - eUgE8O0yIy + + 2021-05-14T13:46:40.000Z + - - - + - - - + option-A + - - - - - + - true + + y2MwmsEqiq + - - - - - - - - - + - eUgE8 + + + + + - -
+ + +
- + Select row + + + + + - as eat scott 43 + + toyota toyota toyota 40 + - - - + - 2031-10-05T20:53:20.000Z + + 2023-11-14T22:13:20.000Z + - - - + - option-B + + option-B + - - - + - sySKaEGgUg - - - - + CW82EiUYuY + + + - - - + + + + - - - + - 1849 + + 1600 + - - +
- + - - - - - - + helping whiteboard as 41 + + + - sySKa + + 2026-06-09T10:13:20.000Z + - -
- + -
- - -
- -
- + + - can pinocchio whiteboard 44 + + Q0u8gYkG6G + - - - + - 2034-07-08T19:33:20.000Z + + + + + - - - + - option-C + + 1681 + - - +
- + - - - + whiteboard can eat 42 + - - - + - 1936 + + 2029-01-25T01:46:40.000Z + - - - + - true + + option-A + - - - - - - - - - + - 6SEQ2 + + eUgE8O0yIy + - -
- + -
- - -
- -
- + + + + - bottle toyota bottle 45 - - - +
- + - option-A + + as eat scott 43 + - - - + - Kw0WUum6s6 + + 2031-10-05T20:53:20.000Z + - - - + - - - + option-B + - - - - - + - false + + sySKaEGgUg + - - - + - - - - - - + + + + + + - Kw0WU + + 1849 + - -
+
- + Select row + + + + + - eat whiteboard pinocchio 46 + + can pinocchio whiteboard 44 + - - - + - 2040-03-22T03:33:20.000Z + + 2034-07-08T19:33:20.000Z + - - - + - option-B + + option-C + - - - + - YQmcwk2o4o + + 6SEQ24WOgO + - - - + - - - + + + + - - - + - 2116 + + 1936 + - - +
- - - - - - - + - YQmcw + + bottle toyota bottle 45 + - -
- + -
- - -
- -
- + + - chocolate can helping 47 + + option-A + - - - + - 2043-03-03T12:53:20.000Z + + Kw0WUum6s6 + - - - + - option-C + + + + + - - - + - muYiOaIWGW - - - +
- + - 2209 + + eat whiteboard pinocchio 46 + - - - + - false + + 2040-03-22T03:33:20.000Z + - - - + - - - - - - + option-B + + + - muYiO + + YQmcwk2o4o + - -
- + -
- - -
- -
- + + + + - pinocchio eat can 48 + + 2116 + - - +
- + - option-A + + chocolate can helping 47 + - - - + - 0OKoqQYESE + + 2043-03-03T12:53:20.000Z + - - - + - - - + option-C + - - - - - + - true + + muYiOaIWGW + - - - + - - - - - - + + + + + + - 0OKoq - - -
+ 2209 + + +
- - - scott pinocchio chocolate 49 + + Select row + + + - - - + - 2049-04-02T18:13:20.000Z + + pinocchio eat can 48 + - - - + - option-B + + 2046-03-07T01:46:40.000Z + - - - + - Es6uIGowew + + option-A + - - - + - - - + 0OKoqQYESE + - - - + - 2401 + + + + + - - - + - false - - - - - - - - - +
- + -
- - -
- -
- + + - toyota toyota toyota 50 + + 2049-04-02T18:13:20.000Z + - - - + - 2052-05-22T14:13:20.000Z + + option-B + - - - + - option-C + + Es6uIGowew + - - - + - SMs0k64eqe + + + + + - - - + - - - + 2401 + - - +
- + - true + + toyota toyota toyota 50 + - - - + - - - - - - + 2052-05-22T14:13:20.000Z + + + - SMs0k + + option-C + - -
- + -
- - -
- -
- + + - helping whiteboard as 51 + + + + + - - - + - 2055-08-04T13:46:40.000Z + + 2500 + - - +
- + - gqe6CwKM2M + + helping whiteboard as 51 + - - - + - - - + 2055-08-04T13:46:40.000Z + - - - - - + - false + + option-A + - - - + - - - - - - + gqe6CwKM2M + + + - gqe6C + + + + + - -
+ + +
- + Select row + + + + + - whiteboard can eat 52 + + whiteboard can eat 52 + - - - + - 2058-11-08T16:53:20.000Z + + 2058-11-08T16:53:20.000Z + - - - + - option-B + + option-B + - - - + - uKQCema4E4 + + uKQCema4E4 + - - - + - - - + + + + - - - + - 2704 + + 2704 + - - +
- - - - - - - + - uKQCe + + as eat scott 53 + - -
- + -
- - -
- -
- + + - as eat scott 53 + + option-C + - - - + - 2062-03-07T23:33:20.000Z + + 8oCI6cqmQm + - - - + - option-C + + + + + - - - + - 8oCI6cqmQm + + 2809 + - - +
- + - 2809 + + can pinocchio whiteboard 54 + - - - + - false + + 2065-07-28T09:46:40.000Z + - - - + - - - - - - + option-A + + + - 8oCI6 + + MIyOYS6UcU + - -
- + -
- - -
- -
- + + + + - can pinocchio whiteboard 54 - - - +
- + - option-A + + bottle toyota bottle 55 + - - - + - MIyOYS6UcU + + 2069-01-09T23:33:20.000Z + - - - + - - - + option-B + - - - - - + - true + + amkU0IMCoC + - - - + - - - - - - + + + + + + - MIyOY + + 3025 + - -
+
- + Select row + + + + + - bottle toyota bottle 55 + + eat whiteboard pinocchio 56 + - - - + - 2069-01-09T23:33:20.000Z + + 2072-07-17T16:53:20.000Z + - - - + - option-B + + option-C + - - - + - amkU0IMCoC + + oGWaS8cu0u + - - - + - - - + + + + - - - + - 3025 + + 3136 + - - +
- - + + + Select row + + + + + + - - - - - + chocolate can helping 57 + + + - amkU0 + + 2076-02-15T13:46:40.000Z + - -
- + -
- - -
- -
- + + - eat whiteboard pinocchio 56 + + 2kIguyscCc + - - - + - 2072-07-17T16:53:20.000Z + + + + + - - + + +
- + - oGWaS8cu0u + + pinocchio eat can 58 + - - - + - - - + 2079-10-08T14:13:20.000Z + - - - + - 3136 + + option-B + - - - + - true + + GE4mMo8KOK + - - - + - - - - - - + + + + + + - oGWaS + + 3364 + - -
+
- - - chocolate can helping 57 + + Select row + + + - - - + - 2076-02-15T13:46:40.000Z + + scott pinocchio chocolate 59 + - - - + - option-A + + 2083-06-23T18:13:20.000Z + - - - + - 2kIguyscCc + + option-C + - - - + - - - + UiqsoeO2a2 + - - - - - + - false + + + + + - - - - - - - - - + - 2kIgu + + 3481 + - -
+
- + Select row + + + + + - pinocchio eat can 58 + + toyota toyota toyota 60 + - - - + - 2079-10-08T14:13:20.000Z + + 2087-04-01T01:46:40.000Z + - - - + - option-B + + option-A + - - - + - GE4mMo8KOK + + iCcyGUekmk + - - - + - - - + + + + - - - + - 3364 - - - +
- - - - - - - + - GE4mM + + helping whiteboard as 61 + - -
- + -
- - -
- -
- + + - scott pinocchio chocolate 59 + + option-B + - - - + - 2083-06-23T18:13:20.000Z + + wgO4iKuSyS + - - - + - option-C + + + + + - - - + - UiqsoeO2a2 + + 3721 + - - +
- + - 3481 + + whiteboard can eat 62 + - - - + - false + + 2094-12-24T03:33:20.000Z + - - - - - - - - - + - Uiqso + + option-C + - -
- + -
- - -
- -
- + + - toyota toyota toyota 60 + + + + + - - - + - 2087-04-01T01:46:40.000Z + + 3844 + - - +
- + - iCcyGUekmk + + as eat scott 63 + - - - + - - - + 2098-12-09T21:46:40.000Z + - - - - - + - true + + option-A + - - - + - - - - - - + OewGc0QsMs + + + - iCcyG + + + + + - -
+ + +
- + Select row + + + + + - helping whiteboard as 61 + + can pinocchio whiteboard 64 + - - - + - 2091-01-30T12:53:20.000Z - - - - - - option-B - - - - - - wgO4iKuSyS + + 2102-12-19T19:33:20.000Z + - - - + - - - + option-B + - - - + - 3721 + + c8iM4qgaYa + - - - + - false + + + + + - - - - - - - - - + - wgO4i + + 4096 + - -
+
- + Select row + + + + + - whiteboard can eat 62 + + bottle toyota bottle 65 + - - - + - 2094-12-24T03:33:20.000Z + + 2107-01-20T20:53:20.000Z + - - - + - option-C + + option-C + - - - + - AAAAAAAAAA + + qcUSWgwIkI + - - - + - - - + + + + - - - + - 3844 + + 4225 + - - +
- - - - - - - + + + + + - AAAAA + + eat whiteboard pinocchio 66 + - -
- + -
- - -
- -
- + + - as eat scott 63 + + option-A + - - - + - 2098-12-09T21:46:40.000Z + + 46GYyWC0w0 + - - - + - option-A + + + + + - - - + - OewGc0QsMs - - - +
- - - + - false + + chocolate can helping 67 + - - - + - - - - - - + 2115-06-03T10:13:20.000Z + + + - OewGc + + option-B + - -
- + -
- - -
- -
- + + - can pinocchio whiteboard 64 - - - - + + + + + + - 2102-12-19T19:33:20.000Z + + 4489 + - - +
- + - c8iM4qgaYa + + pinocchio eat can 68 + - - - + - - - + 2119-09-12T22:13:20.000Z + - - - + - 4096 + + option-C + - - - + - true + + W4oksCiQKQ + - - - + - - - - - - + + + + + + - c8iM4 + + 4624 + - -
+
- - - bottle toyota bottle 65 + + Select row + + + - - - + - 2107-01-20T20:53:20.000Z + + scott pinocchio chocolate 69 + - - - + - option-C + + 2124-01-15T13:46:40.000Z + - - - + - qcUSWgwIkI + + option-A + - - - + - - - + kYaqK2y8W8 + - - - + - 4225 + + + + + - - - + - false - - - +
- + + + + + - qcUSW + + toyota toyota toyota 70 + - -
- + -
- - -
- -
- + + - eat whiteboard pinocchio 66 + + option-B + - - - + - 2111-03-17T01:46:40.000Z + + y2MwmsEqiq + - - - + - option-A + + + + + - - - + - 46GYyWC0w0 + + 4900 + - - +
- - - + - true + + helping whiteboard as 71 + - - - - - - - - - + - 46GYy + + 2132-11-29T07:33:20.000Z + - -
- + -
- - -
- -
- + + - chocolate can helping 67 + + CW82EiUYuY + - - - + - 2115-06-03T10:13:20.000Z + + + + + - - - + - option-B + + 5041 + - - +
- + - - - + whiteboard can eat 72 + - - - + - 4489 + + 2137-06-11T09:46:40.000Z + - - - + - false + + option-A + - - - + - - - - - - + Q0u8gYkG6G + + + - Ia2eQ + + + + + - -
+ + +
- + Select row + + + + + - pinocchio eat can 68 + + as eat scott 73 + - - - + - 2119-09-12T22:13:20.000Z + + 2142-01-14T15:33:20.000Z + - - - + - option-C + + option-B + - - - + - W4oksCiQKQ + + eUgE8O0yIy + - - - + - - - + + + + - - - + - 4624 + + 5329 + - - +
- - - - - - - + - W4oks + + can pinocchio whiteboard 74 + - -
- + -
- - -
- -
- + + - scott pinocchio chocolate 69 + + option-C + - - - + - 2124-01-15T13:46:40.000Z + + sySKaEGgUg + - - - + - option-A + + + + + - - - + - kYaqK2y8W8 + + 5476 + - - +
- - - + + Select row + + + + + - false + + bottle toyota bottle 75 + - - - + - - - - - - + 2151-06-02T13:46:40.000Z + + + - kYaqK + + option-A + - -
- + -
- - -
- -
- + + - toyota toyota toyota 70 + + + + + - - + + +
- + - option-B + + eat whiteboard pinocchio 76 + - - - + - y2MwmsEqiq + + 2156-03-15T06:13:20.000Z + - - - + - - - + option-B + - - - + - 4900 + + Kw0WUum6s6 + - - - + - true + + + + + - - - + - - - - - + 5776 + + +
- -
- - -
-
-
- + Select row + + + + + - helping whiteboard as 71 + + chocolate can helping 77 + - - - + - 2132-11-29T07:33:20.000Z + + 2161-01-19T02:13:20.000Z + - - - + - option-C + + option-C + - - - + - CW82EiUYuY + + YQmcwk2o4o + - - - + - - - + + + + - - - + - 5041 + + 5929 + - - +
- - - - - - - + - CW82E + + pinocchio eat can 78 + - -
- + -
- - -
- -
- + + - whiteboard can eat 72 + + option-A + - - - + - 2137-06-11T09:46:40.000Z + + muYiOaIWGW + - - - + - option-A + + + + + - - - + - Q0u8gYkG6G - - - +
- - - + - true + + scott pinocchio chocolate 79 + - - - - - - - - - + - Q0u8g + + 2170-12-09T04:53:20.000Z + - -
- + -
- - -
- -
- + + - as eat scott 73 + + 0OKoqQYESE + - - - + - 2142-01-14T15:33:20.000Z + + + + + - - - + - option-B + + 6241 + - - +
- + - - - + toyota toyota toyota 80 + - - - + - 5329 + + 2175-12-23T11:33:20.000Z + - - - + - false + + option-C + - - - - - - - - - + - eUgE8 + + Es6uIGowew + - -
- + -
- - -
- -
- + + + + - can pinocchio whiteboard 74 + + 6400 + - - +
- + - option-C + + helping whiteboard as 81 + - - - + - sySKaEGgUg + + 2181-01-28T21:46:40.000Z + - - - + - - - + option-A + - - - + - 5476 + + SMs0k64eqe + - - - + - true + + + + + - - - - - - - - - + - sySKa - - -
+
- + Select row + + + + + - bottle toyota bottle 75 - - - - - - 2151-06-02T13:46:40.000Z + + whiteboard can eat 82 + - - - + - option-A + + 2186-03-30T11:33:20.000Z + - - - + - 6SEQ24WOgO + + option-B + - - - + - - - + gqe6CwKM2M + - - - - - + - false + + + + + - - - - - - - - - + - 6SEQ2 + + 6724 + - -
+
- + Select row + + + + + - eat whiteboard pinocchio 76 + + as eat scott 83 + - - - + - 2156-03-15T06:13:20.000Z + + 2191-06-22T04:53:20.000Z + - - - + - option-B + + option-C + - - - + - Kw0WUum6s6 + + uKQCema4E4 + - - - + - - - + + + + - - - + - 5776 + + 6889 + - - +
- - - - - - - + - Kw0WU + + can pinocchio whiteboard 84 + - -
- + -
- - -
- -
- + + - chocolate can helping 77 + + option-A + - - - + - 2161-01-19T02:13:20.000Z + + 8oCI6cqmQm + - - - + - option-C + + + + + - - - + - YQmcwk2o4o - - - +
- + - 5929 + + bottle toyota bottle 85 + - - - + - false + + 2202-02-14T02:13:20.000Z + - - - + - - - - - - + option-B + + + - YQmcw + + MIyOYS6UcU + - -
- + -
- - -
- -
- + + + + - pinocchio eat can 78 + + 7225 + - - +
- + - option-A + + eat whiteboard pinocchio 86 + - - - + - muYiOaIWGW + + 2207-07-17T06:13:20.000Z + - - - + - - - + option-C + - - - - - + - true + + amkU0IMCoC + - - - + - - - - - - + + + + + + - muYiO + + 7396 + - -
+
- + Select row + + + + + - scott pinocchio chocolate 79 + + chocolate can helping 87 + - - - + - 2170-12-09T04:53:20.000Z + + 2213-01-08T13:46:40.000Z + - - - + - option-B + + option-A + - - - + - 0OKoqQYESE + + oGWaS8cu0u + - - - + - - - + + + + - - - + - 6241 - - - +
- + - - - - - - + pinocchio eat can 88 + + + - 0OKoq + + 2218-07-27T00:53:20.000Z + - -
- + -
- - -
- -
- + + - toyota toyota toyota 80 + + 2kIguyscCc + - - - + - 2175-12-23T11:33:20.000Z + + + + + - - - + - option-C + + 7744 + - - +
- + - - - + scott pinocchio chocolate 89 + - - - + - 6400 + + 2224-03-05T15:33:20.000Z + - - - + - true + + option-C + - - - - - - - - - + - Es6uI + + GE4mMo8KOK + - -
- + -
- - -
- -
- + + + + - helping whiteboard as 81 + + 7921 + - - +
- + - option-A + + toyota toyota toyota 90 + - - - + - SMs0k64eqe + + 2229-11-06T09:46:40.000Z + - - - + - - - + option-A + - - - - - + - false + + UiqsoeO2a2 + - - - - - - - - - + - SMs0k + + + + + - -
+ + +
- + Select row + + + + + - whiteboard can eat 82 + + helping whiteboard as 91 + - - - + - 2186-03-30T11:33:20.000Z + + 2235-08-02T07:33:20.000Z + - - - + - option-B + + option-B + - - - + - gqe6CwKM2M + + iCcyGUekmk + - - - + - - - + + + + - - - + - 6724 + + 8281 + - - +
- - - - - - - + - gqe6C + + whiteboard can eat 92 + - -
- + -
- - -
- -
- + + - as eat scott 83 + + option-C + - - - + - 2191-06-22T04:53:20.000Z + + wgO4iKuSyS + - - - + - option-C + + + + + - - - + - uKQCema4E4 + + 8464 + - - +
- + + + + - 6889 + + as eat scott 93 + - - - + - false + + 2247-03-31T13:46:40.000Z + - - - + - - - - - - + option-A + + + - uKQCe + + AAAAAAAAAA + - -
+ + + + + + + + + + +
- + Select row + + + + + - can pinocchio whiteboard 84 + + can pinocchio whiteboard 94 + - - - + - 2196-10-06T01:46:40.000Z + + 2253-03-03T22:13:20.000Z + - - - + - option-A + + option-B + - - - + - 8oCI6cqmQm + + OewGc0QsMs + - - - + - - - + + + + - - - - - + - true + + 8836 + - - +
- - 8oCI6 - - -
- -
- - -
-
-
- + Select row + + + + + - bottle toyota bottle 85 + + bottle toyota bottle 95 + - - - + - 2202-02-14T02:13:20.000Z + + 2259-02-28T10:13:20.000Z + - - - + - option-B + + option-C + - - - + - MIyOYS6UcU + + c8iM4qgaYa + - - - + - - - + + + + - - - + - 7225 + + 9025 + - - +
- - - - - - - + - MIyOY + + eat whiteboard pinocchio 96 + - -
- + -
- - -
- -
- + + - eat whiteboard pinocchio 86 + + option-A + - - - + - 2207-07-17T06:13:20.000Z + + qcUSWgwIkI + - - - + - option-C + + + + + - - - + - amkU0IMCoC - - - +
- + - 7396 + + chocolate can helping 97 + - - - + - true + + 2271-04-30T20:53:20.000Z + - - - + - - - - - - + option-B + + + - amkU0 + + 46GYyWC0w0 + - -
- + -
- - -
- -
- + + + + - chocolate can helping 87 + + 9409 + - - +
- + - option-A + + pinocchio eat can 98 + - - - + - oGWaS8cu0u + + 2277-07-04T19:33:20.000Z + - - - + - - - + option-C + - - - - - + - false + + Ia2eQMSi8i + - - - - - - - - - + - oGWaS - - -
- -
- - -
-
-
- - - pinocchio eat can 88 + + + - - - + - 2218-07-27T00:53:20.000Z + + 9604 + - - +
- + - 2kIguyscCc + + scott pinocchio chocolate 99 + - - - + - - - + 2283-10-01T21:46:40.000Z + - - - + - 7744 + + option-A + - - - + - true + + W4oksCiQKQ + - - - - - - - - - + - 2kIgu - - -
- -
- - -
-
-
- - - scott pinocchio chocolate 89 + + + - - - + - 2224-03-05T15:33:20.000Z - - - - - - option-C - - - - +
+
+
+
+
+
+`; + +exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/Table/StatefulTable with column overflow menu and aggregate column values 1`] = ` +
+
+
+
+
+
+

+ + 0 items selected + +

+
+
+ +
+
+
+ +
+
+
+
+ + + + - - + + + - - UiqsoeO2a2 +
+ + +
-
- - - - - - + - - - - + + - - + - - option-B +
+ + +
-
- - - - - - - - - - - - - - - - + - - 8464 +
+ + +
-
- - - - + - - - - + - - - - - - + - - false +
+ + +
-
- - - - - - - + - - - + - - + - - 8836 +
+ + +
-
- - - - + - - - - + - - - - - + - - 9025 +
+ + +
-
- - - - - - - - + - + - - - - - + - - true +
+ + +
-
- - - - - - - + - - - + - - - + - - false +
+ + +
-
- - - + - - - - + - - - - - + - - 9604 +
+ + +
-
- - - - - - - - + - - - - - - + - - false +
+ + +
-
- - - + - - -
- GE4mMo8KOK +
+ + +
- - -
- + - + + + String + + +
+ - - - - -
- + + + + + - 7921 + + Date + + +
- - -
- + - false + + Select + +
- - -
- + - - + Secret Information + + +
- - - -
- + + - GE4mM + + Status + + +
- - -
- + -
- -
- - -
- + + + + open and close list of options + + + +
+ + +
- toyota toyota toyota 90 + + Boolean + + +
- - -
- + - 2229-11-06T09:46:40.000Z + + React Node + + +
- - -
- + - option-A + - - - +
- + - - - + toyota toyota toyota 0 + - - - - - + - true + + 1973-03-03T09:46:40.000Z + - - - + - - - - - - + option-A + + + - Uiqso + + AAAAAAAAAA + - -
- + -
- - -
- -
- + + + + + + - helping whiteboard as 91 + + true + - - - + - 2235-08-02T07:33:20.000Z + + + - - + +
- + - iCcyGUekmk + + helping whiteboard as 1 + - - - + - - - + 1973-03-14T23:33:20.000Z + - - - + - 8281 + + option-B + - - - + - false - - - - - - - - - - - - iCcyG - - -
- -
- - -
-
-
- - - whiteboard can eat 92 + OewGc0QsMs + - - - + - 2241-05-20T08:53:20.000Z + + + + + - - - + - option-C + + 1 + - - - + - wgO4iKuSyS + + false + - - - + - - - + +
- + - true + + whiteboard can eat 2 + - - - + - - - - - - + 1973-04-18T16:53:20.000Z + + + - wgO4i + + option-C + - -
- + -
- - -
- -
- + + - as eat scott 93 + + + + + - - - + - 2247-03-31T13:46:40.000Z - - - - - - option-A + + 4 + - - - + - AAAAAAAAAA + + true + - - - + - - - - - + +
- - - - - - - + - AAAAA + + as eat scott 3 + - -
- + -
- - -
- -
- + + - can pinocchio whiteboard 94 + + option-A + - - - + - 2253-03-03T22:13:20.000Z + + qcUSWgwIkI + - - - + - option-B + + + + + - - - + + + - OewGc0QsMs + + false + - - - + - - - + +
- - - true - - - - + - - - - - - + can pinocchio whiteboard 4 + + + - OewGc + + 1973-09-04T14:13:20.000Z + - -
- + -
- - -
- -
- + + - bottle toyota bottle 95 + + 46GYyWC0w0 + - - - + - 2259-02-28T10:13:20.000Z + + + + + - - - + - option-C + + 16 + - - - + - c8iM4qgaYa + + true + - - - + - - - + +
- + - false + + bottle toyota bottle 5 + - - - - - - - - - + - c8iM4 + + 1973-12-17T18:13:20.000Z + - -
- + -
- - -
- -
- + + - eat whiteboard pinocchio 96 - - - - + Ia2eQMSi8i + + + - 2265-03-19T01:46:40.000Z + + + + + - - - + - option-A + + 25 + - - - + - qcUSWgwIkI + + false + - - - + - - - - - + +
- - - - - - - + - qcUSW + + eat whiteboard pinocchio 6 + - -
- + -
- - -
- -
- + + - chocolate can helping 97 + + option-A + - - - + - 2271-04-30T20:53:20.000Z + + W4oksCiQKQ + - - - + - option-B + + + + + - - - + + + - 46GYyWC0w0 + + true + - - - + - - - - - - 9409 - - - + +
- + - - - - - - + chocolate can helping 7 + + + - 46GYy + + 1974-09-21T12:53:20.000Z + - -
- + -
- - -
- -
- + + - pinocchio eat can 98 + + kYaqK2y8W8 + - - - + - 2277-07-04T19:33:20.000Z + + + + + - - - + - option-C + + 49 + - - - + - Ia2eQMSi8i + + false + - - - + - - - + +
- + - true + + pinocchio eat can 8 + - - - - - - - - - + - Ia2eQ + + 1975-03-14T03:33:20.000Z + - -
- + -
- - -
- -
- + + - scott pinocchio chocolate 99 + + y2MwmsEqiq + - - - + - 2283-10-01T21:46:40.000Z + + + + + - - - + - option-A + + 64 + - - - + - W4oksCiQKQ + + true + - - - + - - - - - + +
- + - - - - - - + scott pinocchio chocolate 9 + + + - W4oks + + 1975-09-26T21:46:40.000Z + - -
-
-
-
-
-`; - -exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/Table/StatefulTable Stateful Example with expansion, maxPages, and column resize 1`] = ` -
-
-
-
-
-
-

+ + + + option-A + + + + + + + CW82EiUYuY + + + + + + + + + + + + + + + + + + + false + + + + + + + + + + + + + + - - 0 items selected - -

-
-
-
+
+
+
+ +
+
- Cancel - +
+
+ + + + +
+
+
+ + 1–10 of 100 items +
-
+ +
+
+ + + + +
+
+
+
+ + 1 of 10 pages + +
+
- - +
-
+
+
+
+`; + +exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/Table/StatefulTable with create & save view management 1`] = ` +
+
+
+ + Focus sentinel + +
+
+

- Clear all filters - + Manage views +

- -
+ + + +
+
- - - -
+
+
- - +
+
+ Available Views +
+
+
+
+
+
+
+
+
+
+
+ My view 1 (Public) +
+
+ + +
+
+
+ Columns: 7, Filters: 0, Search: pinoc +
+
+
+
+
+
+
+
+
+
+
+ My view 2 (Private) +
+
+
+ + + default + +
+
+
+ + +
+
+
+ Columns: 7, Filters: 1, Search: +
+
+
+
+
+
+
+
+
+ + Page 1 + +
+
+
+
+
+
+ + Focus sentinel + +
+
+
+
+

+ + 0 items selected + +

+
+
+
+
+ +
+
+
- -
+
@@ -46993,15 +45096,16 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T
- +
@@ -47159,15 +45241,16 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T
`; -exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/Table/StatefulTable Stateful Example with row nesting and resizable columns with initial width 1`] = ` +exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/Table/StatefulTable with every third row unselectable 1`] = `
-
-
-
-

- - 0 items selected - -

-
-
- -
+ + 0 items selected + +

-
-
-
- - - -
- - - -
- -
-
+
+
+
+
+
-
- - - - - + + - + - + - + - + - + - + - + - - - - - + + + + + + + + + + - - - + - + - + - + - + - - + + - + - + - + + + - - + + - - + - + - + - + - + - + - + - + - + + + - - + + - - + - + - + - + - + - + - + - + - + + + - - + + - - - - + - + - - + - + - + + - - - + + - - + - + + + - + - + - + - + - + - + - + - - + + + - + + + + - + - + - + - + - + - + - + - + + - + + + - - + + - - + - + - + - + - - + + - + - + - + + + - - + + - - + - + - + - + - + - + - + - + - + + + - - + + - - + - + - + - + - + - + - + - + - + + + - - + + - + - + - + - + - + + + + + + + + - + - + - + + - + - + - - -
- + + - -
+
-
-
+ + + + + + + + + Date - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - -
- - + Select row + + + + + + -
- - -
+ toyota toyota toyota 0
-
+ + - - toyota toyota toyota 0 - + 1973-03-03T09:46:40.000Z - + + - - 1973-03-03T09:46:40.000Z - + option-A - + + - - option-A - + AAAAAAAAAA - + + - - - - - + + - - - + + + + - - true - + true - + + - - - - - - + + + + - - AAAAA - + AAAAA - - +
+
-
+
+ Select row + +
-
- - - -
- - -
+ helping whiteboard as 1
-
+ + - - helping whiteboard as 1 - + 1973-03-14T23:33:20.000Z - + + - - 1973-03-14T23:33:20.000Z - + option-B - + + - - option-B - + OewGc0QsMs - + + - - - - - + + - + + - - 1 - + 1 - + + - - false - + false - + + - - - - - - + + + + - - OewGc - + OewGc - - +
+
-
+
+ Select row + +
-
- - - -
- - -
+ whiteboard can eat 2
-
+ + - - whiteboard can eat 2 - + 1973-04-18T16:53:20.000Z - + + - - 1973-04-18T16:53:20.000Z - + option-C - + + - - option-C - + c8iM4qgaYa - + + - - - - - + + - + + - - 4 - + 4 - + + - - true - + true - + + - - - - - - + + + + - - c8iM4 - + c8iM4 - - +
+
-
+
+ Select row + +
-
- - - - -
- - -
-
-
- - - as eat scott 3 - - - - - 1973-06-15T13:46:40.000Z - + as eat scott 3 - + + - - option-A - + 1973-06-15T13:46:40.000Z - + + - - - - - + option-A - - - + + - - false - + qcUSWgwIkI - + + - - + + + + - - qcUSW - + false - - -
-
- - -
-
-
- - - - -
- - -
-
-
+ + + + - - can pinocchio whiteboard 4 - + qcUSW - +
+ - - + - - + Select row + + + + + + - - option-B - + can pinocchio whiteboard 4 - + + - - - - - + 1973-09-04T14:13:20.000Z - + + - - 16 - + option-B - + + - - true - + 46GYyWC0w0 - + + - - + + - - 46GYy - + 16 - - + + -
-
- -
-
-
- - - + + + + -
+ +
+ +
+ +
-
-
+ + + + + - - bottle toyota bottle 5 - + bottle toyota bottle 5 - + + - - 1973-12-17T18:13:20.000Z - + 1973-12-17T18:13:20.000Z - + + - - option-C - + option-C - + + - - - - - + Ia2eQMSi8i - + + - - 25 - + + - + + - - false - + 25 - + + - - - + false - + + + + + + + + - - Ia2eQ - + Ia2eQ - - +
+
-
- - -
+ Select row + +
-
- - - -
- - -
+ eat whiteboard pinocchio 6
-
+ + - - eat whiteboard pinocchio 6 - + 1974-04-24T01:46:40.000Z - + + - - 1974-04-24T01:46:40.000Z - + option-A - + + - - option-A - + W4oksCiQKQ - + + - - - - - + + - - - + + + + - - true - + true - + + - - - - - - + + + + - - W4oks - + W4oks - - +
+
-
+
+ Select row + +
-
- - - -
- - -
+ chocolate can helping 7
-
+ + - - chocolate can helping 7 - + 1974-09-21T12:53:20.000Z - + + - - 1974-09-21T12:53:20.000Z - + option-B - + + - - option-B - + kYaqK2y8W8 - + + - - - - - + + - + + - - 49 - + 49 - + + - - false - + false - + + - - - - - - + + + + - - kYaqK - + kYaqK - - +
+
-
+
+ Select row + +
-
- - - -
- - -
+ pinocchio eat can 8
-
+ + - - pinocchio eat can 8 - + 1975-03-14T03:33:20.000Z - + + - - 1975-03-14T03:33:20.000Z - + option-C - + + - - option-C - + y2MwmsEqiq - + + - - - - - + + - + + - - 64 - + 64 - + + - - true - + true - + + - - - - - - + + + + - - y2Mwm - + y2Mwm - - +
+
-
+
+ Select row + +
-
- - - + + + -
- - -
+ 1975-09-26T21:46:40.000Z
-
+ + - - scott pinocchio chocolate 9 - + option-A - + + - - 1975-09-26T21:46:40.000Z - + CW82EiUYuY - + + - - option-A - + + - + + + + - + + + + + + + + + + + CW82E + + +
+ +
+ + +
+
+
+ + + toyota toyota toyota 10 - + + - + 1976-05-03T19:33:20.000Z + + + + - - false - + option-B - + + + Q0u8gYkG6G + + + + + - - + + - - CW82E - + 100 - - + + -
-
- - -
-
-
-
-
-
-
- -
-
-
+ + + -
- -
-
-
-
- - 1–10 of 100 items - -
-
-
-
- -
+ + Q0u8g + + + + + + -
- + + + + + + + + + 121 + + + + + + + false + + + + + -
-
-
-
- - 1 of 10 pages - -
- - -
-
-
-
-
-
-`; - -exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/Table/StatefulTable Stateful Example with single nested hierarchy 1`] = ` -
-
-
-
-
-
-

- - 0 items selected - -

-
-
- - -
-
- -
-
-
- + + - - -
- - - -
- - - - -
-
-
-
- - - - - + + + + + + + + + - + + - + + + - - - - - + - + - + + - + + + + - + - + - + - + - + + - + - - + + + + - + + + - + - + - + - + - + - + - + - + + - + + + - - + + - - + - + - + - + - + - + - + - + - + + + - - + + - + - + - + - + - + + + + + + + + - + - + - + + - + - + - - + + + - + - + + + - + - + - + - + - + - + - + - + - - + + + + - + + + - + - + - + - + - + - + + - + - + - + + + - - + + - - + - + - + - + - + - + - + - + - + + + - - + + - - + - + - + - + - + - + - + - + - + + + - - + + - + - + - + - + - + + + + + + + + - + - + - + + - + - - - + + - - + + - + + + - + - + - + - + - + - + - + - - -
- - -
+
-
-
+ + + + + + - - String - + whiteboard can eat 12 - - + + + - - Date - + 1977-09-25T01:46:40.000Z - - + + + - - Select - + option-A - - + + + - - Status - + sySKaEGgUg - - + + + - - Number - + + - - + + + + + - - Boolean - + true - - + + + + + + + + + - - React Node - + sySKa - - + +
+ - + + + as eat scott 13 + + + + + + 1978-07-11T10:13:20.000Z + + + + + + option-B + + + + + + 6SEQ24WOgO + + + + + - - - - + + + + - + 169 - -
- - - -
-
-
- -
-
- -
-
-
-
- - - -
-
-
-
+ + + + -
-
-
- -
-
- -
-
-
-
-
- -
+ + + + + + + 6SEQ2 + + +
+
-
+
- -
+ + + -
-
-
- -
+ + + + -
-
-
- -
-
- -
-
-
-
-
- -
+ + + + -
-
-
- -
-
- -
-
-
-
-
- -
+ + + + -
-
-
- -
+ + + + -
-
-
- -
-
- -
-
-
-
-
- -
-
- - + + + -
- - -
+ 196
-
+ + - - helping whiteboard as 1 - + true - + + + + + + + + - - 1973-03-14T23:33:20.000Z - + Kw0WU - +
+ - - + + + Select row + + + + + + + + bottle toyota bottle 15 - + + - - - - - + 1980-04-19T13:46:40.000Z - + + - - 1 - + option-A - + + - - false - + YQmcwk2o4o - + + - - + + + + - - OewGc - + false - + + -
-
- - -
-
-
- - - + +
+ - -
+
-
-
+ + + + + - - can pinocchio whiteboard 4 - + eat whiteboard pinocchio 16 - + + - - 1973-09-04T14:13:20.000Z - + 1981-04-13T08:53:20.000Z - + + - - option-B - + option-B - + + - - - - - + muYiOaIWGW - + + - - 16 - + + - + + - - true - + 256 - + + - - - + true - + + + + + + + + - - 46GYy - + muYiO - +
+
-
+
+ Select row + +
-
- - - -
- - -
+ chocolate can helping 17
-
+ + - - eat whiteboard pinocchio 16 - + 1982-04-30T07:33:20.000Z - + + - - 1981-04-13T08:53:20.000Z - + option-C - + + - - option-B - + 0OKoqQYESE - + + - - - - - + + - + + - - 256 - + 289 - + + - - true - + false - + + - - - - - - + + + + - - muYiO - + 0OKoq - +
+
-
+
+ Select row + +
-
- - - + + + -
- - -
+ 1983-06-09T09:46:40.000Z
-
+ + - - whiteboard can eat 22 - + option-A - + + - - 1988-07-04T06:13:20.000Z - + Es6uIGowew - + + - - option-B - + + - + + + + - + + + + + + + + + + + Es6uI + + +
+ +
+ + +
+
+
+ + + scott pinocchio chocolate 19 - + + - - 484 - + 1984-08-10T15:33:20.000Z - + + - - true - + option-B - + + + SMs0k64eqe + + + + + - - + + - - 8oCI6 - + 361 - + + -
-
- - -
-
-
- - - + + + + -
- - -
+ SMs0k
-
+
+ - - + - - + Select row + + + + + + - - 2003-08-16T02:13:20.000Z - + toyota toyota toyota 20 - + + - - option-B - + 1985-11-05T00:53:20.000Z - + + - - - - - + option-C - + + - - 961 - + gqe6CwKM2M - + + - - false - + + - + + - - - + 400 - + + - - AAAAA - + true - + + -
-
- - -
-
-
- - - + +
+ - -
+
-
-
+ + + + + - - can pinocchio whiteboard 34 - + helping whiteboard as 21 - + + - - 2009-10-20T00:53:20.000Z - + 1987-02-22T13:46:40.000Z - + + - - option-B - + option-A - + + - - - - - + uKQCema4E4 - + + - - 1156 - + + - + + + + - - true - + false - + + - - - - - - + + + + - - qcUSW - + uKQCe - +
+
-
+
+ Select row + +
-
- - - -
- - -
+ whiteboard can eat 22
-
+ + - - eat whiteboard pinocchio 46 - + 1988-07-04T06:13:20.000Z - + + - - 2040-03-22T03:33:20.000Z - + option-B - + + - - option-B - + 8oCI6cqmQm - + + - - - - - + + - + + - - 2116 - + 484 - + + - - true - + true - + + - - - - - - + + + + - - YQmcw - + 8oCI6 - +
+
-
+
+ Select row + +
-
- - - -
- - -
+ as eat scott 23
-
+ + - - whiteboard can eat 52 - + 1989-12-07T02:13:20.000Z - + + - - 2058-11-08T16:53:20.000Z - + option-C - + + - - option-B - + MIyOYS6UcU - + + - - - - - + + - + + - - 2704 - + 529 - + + - - true - + false - + + - - - - - - + + + + - - uKQCe - + MIyOY - +
+
-
+
+ Select row + +
-
- - - + + + -
- - -
+ 1991-06-04T01:46:40.000Z
-
+ + - - helping whiteboard as 61 - + option-A - + + - - 2091-01-30T12:53:20.000Z - + amkU0IMCoC - + + - - option-B - + + - + + + + - + + + + + + + + + + + amkU0 + + +
+ +
+ + +
+
+
+ + + bottle toyota bottle 25 - + + - - 3721 - + 1992-12-22T04:53:20.000Z - + + - - false - + option-B - + + + oGWaS8cu0u + + + + + - - + + - - wgO4i - + 625 - -
-
- - -
-
-
- - - -
- - -
+ false
-
+ + + + + + + + - - can pinocchio whiteboard 64 - + oGWaS - +
+ - - + - - + Select row + + + + + + - - option-B - + eat whiteboard pinocchio 26 - + + - - - - - + 1994-08-04T11:33:20.000Z - + + - - 4096 - + option-C - + + - - true - + 2kIguyscCc - + + - - + + - - c8iM4 - + 676 - + + -
-
- -
-
-
-
-
-
-
- -
-
-
+ + + -
- -
-
-
-
- - 1–10 of 14 items - -
-
-
-
- -
+ + -
- - - - -
-
-
-
- - 1 of 2 pages - -
- - -
-
-
-
-
-
-`; - -exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/Table/StatefulTable simple stateful table 1`] = ` -
-
-
-
- - - - - - - @@ -60489,13 +56341,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-1" + id="select-row-table-row-29" onChange={[Function]} type="checkbox" /> @@ -60759,7 +56611,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-2-date" + id="cell-table-row-30-date" offset={0} > - 1973-04-18T16:53:20.000Z + 2001-09-09T01:46:40.000Z @@ -60778,7 +56630,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-2-select" + id="cell-table-row-30-select" offset={0} > - option-C + option-A @@ -60797,7 +56649,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-2-secretField" + id="cell-table-row-30-secretField" offset={0} > - c8iM4qgaYa + wgO4iKuSyS @@ -60816,7 +56668,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-2-status" + id="cell-table-row-30-status" offset={0} > - - 4 - - + /> @@ -60945,13 +56790,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-3" + id="select-row-table-row-31" onChange={[Function]} type="checkbox" /> @@ -61166,13 +57018,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-4" + id="select-row-table-row-32" onChange={[Function]} type="checkbox" /> @@ -61436,7 +57288,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-5-date" + id="cell-table-row-33-date" offset={0} > - 1973-12-17T18:13:20.000Z + 2007-09-05T13:46:40.000Z @@ -61455,7 +57307,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-5-select" + id="cell-table-row-33-select" offset={0} > - option-C + option-A @@ -61474,7 +57326,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-5-secretField" + id="cell-table-row-33-secretField" offset={0} > - Ia2eQMSi8i + c8iM4qgaYa @@ -61493,7 +57345,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-5-status" + id="cell-table-row-33-status" offset={0} > - - 25 - - + /> @@ -61622,13 +57467,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-6" + id="select-row-table-row-34" onChange={[Function]} type="checkbox" /> @@ -61843,13 +57695,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-7" + id="select-row-table-row-35" onChange={[Function]} type="checkbox" /> @@ -62113,7 +57965,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-8-date" + id="cell-table-row-36-date" offset={0} > - 1975-03-14T03:33:20.000Z + 2014-03-28T09:46:40.000Z @@ -62132,7 +57984,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-8-select" + id="cell-table-row-36-select" offset={0} > - option-C + option-A @@ -62151,7 +58003,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-8-secretField" + id="cell-table-row-36-secretField" offset={0} > - y2MwmsEqiq + Ia2eQMSi8i @@ -62170,7 +58022,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-8-status" + id="cell-table-row-36-status" offset={0} > - - 64 - - + /> @@ -62299,13 +58144,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-9" + id="select-row-table-row-37" onChange={[Function]} type="checkbox" /> @@ -62520,13 +58372,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-10" + id="select-row-table-row-38" onChange={[Function]} type="checkbox" /> @@ -62790,7 +58642,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-11-date" + id="cell-table-row-39-date" offset={0} > - 1977-01-01T20:53:20.000Z + 2021-05-14T13:46:40.000Z @@ -62809,7 +58661,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-11-select" + id="cell-table-row-39-select" offset={0} > - option-C + option-A @@ -62828,7 +58680,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-11-secretField" + id="cell-table-row-39-secretField" offset={0} > - eUgE8O0yIy + y2MwmsEqiq @@ -62847,7 +58699,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-11-status" + id="cell-table-row-39-status" offset={0} > - - 121 - - + /> @@ -62976,13 +58821,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-12" + id="select-row-table-row-40" onChange={[Function]} type="checkbox" /> @@ -63197,13 +59049,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-13" + id="select-row-table-row-41" onChange={[Function]} type="checkbox" /> @@ -63467,7 +59319,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-14-date" + id="cell-table-row-42-date" offset={0} > - 1979-05-19T22:13:20.000Z + 2029-01-25T01:46:40.000Z @@ -63486,7 +59338,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-14-select" + id="cell-table-row-42-select" offset={0} > - option-C + option-A @@ -63505,7 +59357,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-14-secretField" + id="cell-table-row-42-secretField" offset={0} > - Kw0WUum6s6 + eUgE8O0yIy @@ -63524,7 +59376,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-14-status" + id="cell-table-row-42-status" offset={0} > - - 196 - - + /> @@ -63653,13 +59498,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-15" + id="select-row-table-row-43" onChange={[Function]} type="checkbox" /> @@ -63874,13 +59726,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-16" + id="select-row-table-row-44" onChange={[Function]} type="checkbox" /> @@ -64144,7 +59996,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-17-date" + id="cell-table-row-45-date" offset={0} > - 1982-04-30T07:33:20.000Z + 2037-05-03T21:46:40.000Z @@ -64163,7 +60015,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-17-select" + id="cell-table-row-45-select" offset={0} > - option-C + option-A @@ -64182,7 +60034,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-17-secretField" + id="cell-table-row-45-secretField" offset={0} > - 0OKoqQYESE + Kw0WUum6s6 @@ -64201,7 +60053,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-17-status" + id="cell-table-row-45-status" offset={0} > - - 289 - - + /> @@ -64330,13 +60175,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-18" + id="select-row-table-row-46" onChange={[Function]} type="checkbox" /> @@ -64551,13 +60403,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-19" + id="select-row-table-row-47" onChange={[Function]} type="checkbox" /> @@ -64821,7 +60673,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-20-date" + id="cell-table-row-48-date" offset={0} > - 1985-11-05T00:53:20.000Z + 2046-03-07T01:46:40.000Z @@ -64840,7 +60692,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-20-select" + id="cell-table-row-48-select" offset={0} > - option-C + option-A @@ -64859,7 +60711,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-20-secretField" + id="cell-table-row-48-secretField" offset={0} > - gqe6CwKM2M + 0OKoqQYESE @@ -64878,7 +60730,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-20-status" + id="cell-table-row-48-status" offset={0} > - - 400 - - + /> @@ -65007,13 +60852,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-21" + id="select-row-table-row-49" onChange={[Function]} type="checkbox" /> @@ -65228,13 +61080,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-22" + id="select-row-table-row-50" onChange={[Function]} type="checkbox" /> @@ -65498,7 +61350,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-23-date" + id="cell-table-row-51-date" offset={0} > - 1989-12-07T02:13:20.000Z + 2055-08-04T13:46:40.000Z @@ -65517,7 +61369,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-23-select" + id="cell-table-row-51-select" offset={0} > - option-C + option-A @@ -65536,7 +61388,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-23-secretField" + id="cell-table-row-51-secretField" offset={0} > - MIyOYS6UcU + gqe6CwKM2M @@ -65555,7 +61407,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-23-status" + id="cell-table-row-51-status" offset={0} > - - 529 - - + /> @@ -65684,13 +61529,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-24" + id="select-row-table-row-52" onChange={[Function]} type="checkbox" /> @@ -65905,13 +61757,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-25" + id="select-row-table-row-53" onChange={[Function]} type="checkbox" /> @@ -66175,7 +62027,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-26-date" + id="cell-table-row-54-date" offset={0} > - 1994-08-04T11:33:20.000Z + 2065-07-28T09:46:40.000Z @@ -66194,7 +62046,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-26-select" + id="cell-table-row-54-select" offset={0} > - option-C + option-A @@ -66213,7 +62065,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-26-secretField" + id="cell-table-row-54-secretField" offset={0} > - 2kIguyscCc + MIyOYS6UcU @@ -66232,7 +62084,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-26-status" + id="cell-table-row-54-status" offset={0} > - - 676 - - + /> @@ -66361,13 +62206,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-27" + id="select-row-table-row-55" onChange={[Function]} type="checkbox" /> @@ -66582,13 +62434,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-28" + id="select-row-table-row-56" onChange={[Function]} type="checkbox" /> @@ -66852,7 +62704,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-29-date" + id="cell-table-row-57-date" offset={0} > - 1999-10-27T04:53:20.000Z + 2076-02-15T13:46:40.000Z @@ -66871,7 +62723,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-29-select" + id="cell-table-row-57-select" offset={0} > - option-C + option-A @@ -66890,7 +62742,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-29-secretField" + id="cell-table-row-57-secretField" offset={0} > - iCcyGUekmk + 2kIguyscCc @@ -66909,7 +62761,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-29-status" + id="cell-table-row-57-status" offset={0} > - - 841 - - + /> @@ -67038,13 +62883,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-30" + id="select-row-table-row-58" onChange={[Function]} type="checkbox" /> @@ -67259,13 +63111,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-31" + id="select-row-table-row-59" onChange={[Function]} type="checkbox" /> @@ -67529,7 +63381,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-32-date" + id="cell-table-row-60-date" offset={0} > - 2005-08-14T06:13:20.000Z + 2087-04-01T01:46:40.000Z @@ -67548,7 +63400,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-32-select" + id="cell-table-row-60-select" offset={0} > - option-C + option-A @@ -67567,7 +63419,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-32-secretField" + id="cell-table-row-60-secretField" offset={0} > - OewGc0QsMs + iCcyGUekmk @@ -67586,7 +63438,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-32-status" + id="cell-table-row-60-status" offset={0} > - - 1024 - - + /> @@ -67715,13 +63560,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-33" + id="select-row-table-row-61" onChange={[Function]} type="checkbox" /> @@ -67936,13 +63788,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-34" + id="select-row-table-row-62" onChange={[Function]} type="checkbox" /> @@ -68206,7 +64058,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-35-date" + id="cell-table-row-63-date" offset={0} > - 2011-12-27T15:33:20.000Z + 2098-12-09T21:46:40.000Z @@ -68225,7 +64077,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-35-select" + id="cell-table-row-63-select" offset={0} > - option-C + option-A @@ -68244,7 +64096,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-35-secretField" + id="cell-table-row-63-secretField" offset={0} > - 46GYyWC0w0 + OewGc0QsMs @@ -68263,7 +64115,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-35-status" + id="cell-table-row-63-status" offset={0} > - - 1225 - - + /> @@ -68392,13 +64237,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-36" + id="select-row-table-row-64" onChange={[Function]} type="checkbox" /> @@ -68613,13 +64465,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-37" + id="select-row-table-row-65" onChange={[Function]} type="checkbox" /> @@ -68883,7 +64735,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-38-date" + id="cell-table-row-66-date" offset={0} > - 2018-12-05T08:53:20.000Z + 2111-03-17T01:46:40.000Z @@ -68902,7 +64754,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-38-select" + id="cell-table-row-66-select" offset={0} > - option-C + option-A @@ -68921,7 +64773,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-38-secretField" + id="cell-table-row-66-secretField" offset={0} > - kYaqK2y8W8 + 46GYyWC0w0 @@ -68940,7 +64792,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-38-status" + id="cell-table-row-66-status" offset={0} > - - 1444 - - + /> @@ -69069,13 +64914,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-39" + id="select-row-table-row-67" onChange={[Function]} type="checkbox" /> @@ -69290,13 +65142,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-40" + id="select-row-table-row-68" onChange={[Function]} type="checkbox" /> @@ -69560,7 +65412,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-41-date" + id="cell-table-row-69-date" offset={0} > - 2026-06-09T10:13:20.000Z + 2124-01-15T13:46:40.000Z @@ -69579,7 +65431,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-41-select" + id="cell-table-row-69-select" offset={0} > - option-C + option-A @@ -69598,7 +65450,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-41-secretField" + id="cell-table-row-69-secretField" offset={0} > - Q0u8gYkG6G + kYaqK2y8W8 @@ -69617,7 +65469,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-41-status" + id="cell-table-row-69-status" offset={0} > - - 1681 - - + /> @@ -69746,13 +65591,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-42" + id="select-row-table-row-70" onChange={[Function]} type="checkbox" /> @@ -69967,13 +65819,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-43" + id="select-row-table-row-71" onChange={[Function]} type="checkbox" /> @@ -70237,7 +66089,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-44-date" + id="cell-table-row-72-date" offset={0} > - 2034-07-08T19:33:20.000Z + 2137-06-11T09:46:40.000Z @@ -70256,7 +66108,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-44-select" + id="cell-table-row-72-select" offset={0} > - option-C + option-A @@ -70275,7 +66127,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-44-secretField" + id="cell-table-row-72-secretField" offset={0} > - 6SEQ24WOgO + Q0u8gYkG6G @@ -70294,7 +66146,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-44-status" + id="cell-table-row-72-status" offset={0} > - - 1936 - - + /> @@ -70423,13 +66268,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-45" + id="select-row-table-row-73" onChange={[Function]} type="checkbox" /> @@ -70644,13 +66496,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-46" + id="select-row-table-row-74" onChange={[Function]} type="checkbox" /> @@ -70914,7 +66766,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-47-date" + id="cell-table-row-75-date" offset={0} > - 2043-03-03T12:53:20.000Z + 2151-06-02T13:46:40.000Z @@ -70933,7 +66785,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-47-select" + id="cell-table-row-75-select" offset={0} > - option-C + option-A @@ -70952,7 +66804,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-47-secretField" + id="cell-table-row-75-secretField" offset={0} > - muYiOaIWGW + 6SEQ24WOgO @@ -70971,7 +66823,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-47-status" + id="cell-table-row-75-status" offset={0} > - - 2209 - - + /> @@ -71100,13 +66945,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-48" + id="select-row-table-row-76" onChange={[Function]} type="checkbox" /> @@ -71321,13 +67173,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-49" + id="select-row-table-row-77" onChange={[Function]} type="checkbox" /> @@ -71591,7 +67443,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-50-date" + id="cell-table-row-78-date" offset={0} > - 2052-05-22T14:13:20.000Z + 2165-12-18T01:46:40.000Z @@ -71610,7 +67462,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-50-select" + id="cell-table-row-78-select" offset={0} > - option-C + option-A @@ -71629,7 +67481,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-50-secretField" + id="cell-table-row-78-secretField" offset={0} > - SMs0k64eqe + muYiOaIWGW @@ -71648,7 +67500,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-50-status" + id="cell-table-row-78-status" offset={0} > - - 2500 - - + /> @@ -71777,13 +67622,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-51" + id="select-row-table-row-79" onChange={[Function]} type="checkbox" /> @@ -71998,13 +67850,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-52" + id="select-row-table-row-80" onChange={[Function]} type="checkbox" /> @@ -72268,7 +68120,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-53-date" + id="cell-table-row-81-date" offset={0} > - 2062-03-07T23:33:20.000Z + 2181-01-28T21:46:40.000Z @@ -72287,7 +68139,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-53-select" + id="cell-table-row-81-select" offset={0} > - option-C + option-A @@ -72306,7 +68158,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-53-secretField" + id="cell-table-row-81-secretField" offset={0} > - 8oCI6cqmQm + SMs0k64eqe @@ -72325,7 +68177,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-53-status" + id="cell-table-row-81-status" offset={0} > - - 2809 - - + /> @@ -72454,13 +68299,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-54" + id="select-row-table-row-82" onChange={[Function]} type="checkbox" /> @@ -72675,13 +68527,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-55" + id="select-row-table-row-83" onChange={[Function]} type="checkbox" /> @@ -72945,7 +68797,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-56-date" + id="cell-table-row-84-date" offset={0} > - 2072-07-17T16:53:20.000Z + 2196-10-06T01:46:40.000Z @@ -72964,7 +68816,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-56-select" + id="cell-table-row-84-select" offset={0} > - option-C + option-A @@ -72983,7 +68835,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-56-secretField" + id="cell-table-row-84-secretField" offset={0} > - oGWaS8cu0u + 8oCI6cqmQm @@ -73002,7 +68854,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-56-status" + id="cell-table-row-84-status" offset={0} > - - 3136 - - + /> @@ -73131,13 +68976,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-57" + id="select-row-table-row-85" onChange={[Function]} type="checkbox" /> @@ -73352,13 +69204,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-58" + id="select-row-table-row-86" onChange={[Function]} type="checkbox" /> @@ -73622,7 +69474,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-59-date" + id="cell-table-row-87-date" offset={0} > - 2083-06-23T18:13:20.000Z + 2213-01-08T13:46:40.000Z @@ -73641,7 +69493,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-59-select" + id="cell-table-row-87-select" offset={0} > - option-C + option-A @@ -73660,7 +69512,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-59-secretField" + id="cell-table-row-87-secretField" offset={0} > - UiqsoeO2a2 + oGWaS8cu0u @@ -73679,7 +69531,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-59-status" + id="cell-table-row-87-status" offset={0} > - - 3481 - - + /> @@ -73808,13 +69653,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-60" + id="select-row-table-row-88" onChange={[Function]} type="checkbox" /> @@ -74029,13 +69881,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-61" + id="select-row-table-row-89" onChange={[Function]} type="checkbox" /> @@ -74299,7 +70151,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-62-date" + id="cell-table-row-90-date" offset={0} > - 2094-12-24T03:33:20.000Z + 2229-11-06T09:46:40.000Z @@ -74318,7 +70170,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-62-select" + id="cell-table-row-90-select" offset={0} > - option-C + option-A @@ -74337,7 +70189,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-62-secretField" + id="cell-table-row-90-secretField" offset={0} > - AAAAAAAAAA + UiqsoeO2a2 @@ -74356,7 +70208,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-62-status" + id="cell-table-row-90-status" offset={0} > - - 3844 - - + /> @@ -74485,13 +70330,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-63" + id="select-row-table-row-91" onChange={[Function]} type="checkbox" /> @@ -74706,13 +70558,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-64" + id="select-row-table-row-92" onChange={[Function]} type="checkbox" /> @@ -74976,7 +70828,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-65-date" + id="cell-table-row-93-date" offset={0} > - 2107-01-20T20:53:20.000Z + 2247-03-31T13:46:40.000Z @@ -74995,7 +70847,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-65-select" + id="cell-table-row-93-select" offset={0} > - option-C + option-A @@ -75014,7 +70866,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-65-secretField" + id="cell-table-row-93-secretField" offset={0} > - qcUSWgwIkI + AAAAAAAAAA @@ -75033,7 +70885,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-65-status" + id="cell-table-row-93-status" offset={0} > - - 4225 - - + /> @@ -75162,13 +71007,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-66" + id="select-row-table-row-94" onChange={[Function]} type="checkbox" /> @@ -75383,13 +71235,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-67" + id="select-row-table-row-95" onChange={[Function]} type="checkbox" /> @@ -75653,7 +71505,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-68-date" + id="cell-table-row-96-date" offset={0} > - 2119-09-12T22:13:20.000Z + 2265-03-19T01:46:40.000Z @@ -75672,7 +71524,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-68-select" + id="cell-table-row-96-select" offset={0} > - option-C + option-A @@ -75691,7 +71543,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-68-secretField" + id="cell-table-row-96-secretField" offset={0} > - W4oksCiQKQ + qcUSWgwIkI @@ -75710,7 +71562,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-68-status" + id="cell-table-row-96-status" offset={0} > - - 4624 - - + /> @@ -75839,13 +71684,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-69" + id="select-row-table-row-97" onChange={[Function]} type="checkbox" /> @@ -76060,13 +71912,13 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T checked={false} className="bx--checkbox" disabled={false} - id="select-row-table-row-70" + id="select-row-table-row-98" onChange={[Function]} type="checkbox" /> @@ -76330,7 +72182,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-71-date" + id="cell-table-row-99-date" offset={0} > - 2132-11-29T07:33:20.000Z + 2283-10-01T21:46:40.000Z @@ -76349,7 +72201,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-71-select" + id="cell-table-row-99-select" offset={0} > - option-C + option-A @@ -76368,7 +72220,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="secretField" data-offset={0} - id="cell-table-row-71-secretField" + id="cell-table-row-99-secretField" offset={0} > - CW82EiUYuY + W4oksCiQKQ @@ -76387,7 +72239,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-71-status" + id="cell-table-row-99-status" offset={0} > - - 5041 - - + /> - +
-
+ - - - + + - Date + 1996-04-08T21:46:40.000Z - - + - - - + + - - - + + - - - + + - - - + + - - - + + - - - + + - - + +
- AAAAA + Uiqso
- c8iM4 + wgO4i - qcUSW + AAAAA
- Ia2eQ + c8iM4 - W4oks + qcUSW
- y2Mwm + Ia2eQ - CW82E + W4oks
- eUgE8 + y2Mwm - sySKa + CW82E
- Kw0WU + eUgE8 - YQmcw + sySKa
- 0OKoq + Kw0WU - Es6uI + YQmcw
- gqe6C + 0OKoq - uKQCe + Es6uI
- MIyOY + gqe6C - amkU0 + uKQCe
- 2kIgu + MIyOY - GE4mM + amkU0
- iCcyG + 2kIgu - wgO4i + GE4mM
- OewGc + iCcyG - c8iM4 + wgO4i
- 46GYy + OewGc - Ia2eQ + c8iM4
- kYaqK + 46GYy - y2Mwm + Ia2eQ
- Q0u8g + kYaqK - eUgE8 + y2Mwm
- 6SEQ2 + Q0u8g - Kw0WU + eUgE8
- muYiO + 6SEQ2 - 0OKoq + Kw0WU
- SMs0k + muYiO - gqe6C + 0OKoq
- 8oCI6 + SMs0k - MIyOY + gqe6C
- oGWaS + 8oCI6 - 2kIgu + MIyOY
- Uiqso + oGWaS - iCcyG + 2kIgu
- AAAAA + Uiqso - OewGc + iCcyG
- qcUSW + AAAAA - 46GYy + OewGc
- W4oks + qcUSW - kYaqK + 46GYy
- CW82E + W4oks
+
+
+
+
+`; + +exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/Table/StatefulTable with expansion, maxPages, and column resize 1`] = ` +
+
+
+
+
+
+

+ + 0 items selected + +

+
+
+
+
+ +
+
+
+ - -
- - -
-
- - + +
+ + + +
+ + + + + +
+ +
+
+
+
+
+
+
+
+ + + + - - - - - - - - - - - - - - - + - - - sySKaEGgUg - - - - - - - - - + + + + - - - - - - - - + - - - - - - + - - - - - - - - - - - - + - + + + - - - - - - - - + - - - - + - - - pinocchio eat can 78 - - - - + - - - - - - - + - - - + + - + - + + + - - - - - - - - + - - - - + + - - - toyota toyota toyota 80 - - - - + - - - - - - - - - - - + - - + + - - - option-A - - - - + - - - - - - - - - + - - - - + + - - - - - - - + - - - - - - - + - - - - - - + - + + - - - - - - - + - - - - + - - - - + - - - - - - - - + - + + + - - - - - - - - + - - - - + - + + + - - - - - - - - + - - - - - - - - + + +
+ - 2137-06-11T09:46:40.000Z - - - - - - - option-A - - - - - - Q0u8gYkG6G +
+ + +
-
-
- + - + + + String + +
+ - - - - -
- - - + + + + + - true - - - - - - - + Date + +
- - -
- - - Q0u8g - -
- + -
- - -
- - -
- - - as eat scott 73 - - - - - - 2142-01-14T15:33:20.000Z - - - - - - option-B - - - - - - eUgE8O0yIy - - - - - +
+ - - - -
- + + + + + - - 5329 - - - - - - - false - - - - + + Status + +
+ + + + + + + + + +
- - - - - - - + + Number + +
+ + + + + + + + + +
- - eUgE8 - - - -
- + + Boolean + +
+ + + + + + + + + +
-
- - -
- - -
- + + + + + + + + + + - - can pinocchio whiteboard 74 - - - - - + + Object Id + +
+ + + + + + + + + +
- 2146-09-12T00:53:20.000Z + - - - - + - option-C + - - - +
- + + - - - - - - - - - - - 5476 - - - - - - true - - - - - - - - - - + +
+
+ +
+
+ +
+ + + +
+ + + +
- - sySKa - - - -
- +
+ +
+
+ +
+
+
+ + + +
- - +
+ + + +
+
+
+
- - -
- + - - bottle toyota bottle 75 - - - - - + + + - - 2151-06-02T13:46:40.000Z - - - - - +
+ +
+
+ +
+
+
+ + + +
- - option-A - - - - - +
+ +
+
+ +
+
+
+ + + +
- - 6SEQ24WOgO - - - - + + + +
+
+
+ +
+
+ +
+
+
+
+
+
+ +
- - - + - false +
+ + +
- -
- - - - - - - + - 6SEQ2 + + helping whiteboard as 1 + - -
- + -
- - -
- -
- + + - eat whiteboard pinocchio 76 + + option-B + - - - + - 2156-03-15T06:13:20.000Z + + + + + - - - + - option-B + + 1 + - - - + - Kw0WUum6s6 + + false + - - - + - + - - - - - 5776 - - - - - - true - - - - - - - - - - + - Kw0WU + + OewGc + - -
- + +
- - + Drill in to find out more after observing + + + +
- -
+
- chocolate can helping 77 +
+ + +
- -
- + - 2161-01-19T02:13:20.000Z + + can pinocchio whiteboard 4 + - - - + - option-C + + 1973-09-04T14:13:20.000Z + - - - + - YQmcwk2o4o + + option-B + - - - + - - - + + + + - - - + - 5929 + + 16 + - - - + - false + + true + - - - + - - - - - - + + + + - YQmcw + + 46GYy + - -
- + +
- - + + + + + + More actions + + + +
- -
+
- + + + + - 2165-12-18T01:46:40.000Z +
+ + +
- -
- + - option-A + + eat whiteboard pinocchio 16 + - - - + - muYiOaIWGW + + 1981-04-13T08:53:20.000Z + - - - + - - - + option-B + - - - - - + - true + + + + + - - - + - - - - - - + 256 + + + - muYiO + + true + - -
- + -
- -
+ + + muYiO + + + + +
+
+ +
- -
+
- scott pinocchio chocolate 79 +
+ + +
- -
- + - 2170-12-09T04:53:20.000Z + + whiteboard can eat 22 + - - - + - option-B + + 1988-07-04T06:13:20.000Z + - - - + - 0OKoqQYESE + + option-B + - - - + - - - + + + + - - - + - 6241 + + 484 + - - - + - false + + true + - - - + - - - - - - + + + + - 0OKoq + + 8oCI6 + - -
- + +
- - -
- -
+ Drill in to find out more after observing + + + + + +
- + + + + - 2175-12-23T11:33:20.000Z +
+ + +
- -
- + - option-C + + helping whiteboard as 31 + - - - + - Es6uIGowew + + 2003-08-16T02:13:20.000Z + - - - + - - - + option-B + - - - + - 6400 + + + + + - - - + - true + + 961 + - - - - - - - - - + - Es6uI + + false + - -
- + -
- - -
- -
- + + + - helping whiteboard as 81 + + AAAAA + - - - + + - - 2181-01-28T21:46:40.000Z - - - + + + + +
- + + + + - SMs0k64eqe +
+ + +
- -
- + - - - + can pinocchio whiteboard 34 + - - - - - + - false + + 2009-10-20T00:53:20.000Z + - - - - - - - - - + - SMs0k + + option-B + - -
- + -
- - -
- -
- + + + + - whiteboard can eat 82 + + 1156 + - - - + - 2186-03-30T11:33:20.000Z + + true + - - - + - option-B + + + - - - + - gqe6CwKM2M + + qcUSW + - - + + +
+
+ + +
+
+
- + - 6724 +
+ + +
- -
- + - true + + eat whiteboard pinocchio 46 + - - - - - - - - - + - gqe6C - - -
- -
- - -
-
-
- + + - as eat scott 83 + + option-B + - - - + - 2191-06-22T04:53:20.000Z + + + + + - - - + - option-C + + 2116 + - - - + - uKQCema4E4 + + true + - - - + - - - - + - 6889 - - - - + YQmcw + + + + - - false - - - + + + + +
- + + + + - uKQCe +
+ + +
- -
- + -
- - -
- -
- + + - can pinocchio whiteboard 84 + + 2058-11-08T16:53:20.000Z + - - - + - 2196-10-06T01:46:40.000Z + + option-B + - - - + - option-A + + + + + - - - + - 8oCI6cqmQm + + 2704 + - - - + + + true + + + + - - - - - - + - true + + uKQCe + - - - - - - - - - - - 8oCI6 - - -
- + +
- - + + + + + + More actions + + + +
- -
+
- bottle toyota bottle 85 +
+ + +
- -
- + - 2202-02-14T02:13:20.000Z + + helping whiteboard as 61 + - - - + - option-B + + 2091-01-30T12:53:20.000Z + - - - + - MIyOYS6UcU + + option-B + - - - + - - - + + + + - - - + - 7225 + + 3721 + - - - + - false + + false + - - - + - - - - - - + + + + - MIyOY + + wgO4i + - -
- + +
- - + Drill in to find out more after observing + + + +
- -
+
- eat whiteboard pinocchio 86 +
+ + +
- -
- + - 2207-07-17T06:13:20.000Z + + can pinocchio whiteboard 64 + - - - + - option-C + + 2102-12-19T19:33:20.000Z + - - - + - amkU0IMCoC + + option-B + - - - + - - - + + + + - - - + - 7396 + + 4096 + - - - + - true + + true + - - - + - - - - - - + + + + - amkU0 + + c8iM4 + - -
- + +
- - -
- -
- - - chocolate can helping 87 - - - - - - 2213-01-08T13:46:40.000Z - - - - - - option-A - - - - - - oGWaS8cu0u - - -
+
+
+
+
+ +
+
+
- - - - - - - - - - - - - false - - - - - + 10 + + + + - - - - - - oGWaS - - - - - +
+
+
+ + 1–10 of 14 items + +
+
+
+
- - +
+
-
- - -
- - - - - - pinocchio eat can 88 - - - - - - - 2218-07-27T00:53:20.000Z - - - - - - - option-B - - - - - - - 2kIguyscCc - - - - - - - + - - - - - - - 7744 - - - - - - - true - - - - - + 2 + + - - - +
+
+
+ + 1 of 2 pages + +
+ +
+ + +
+
+
+
+
+
+`; + +exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/Table/StatefulTable with multi-sorting 1`] = ` +
+
+
+
+
+

+ + 0 items selected + +

+
+
+ +
+
+
+ + +
+
+
+
+ + + + - - - - - - - - - - - - - - - - + + + + + + @@ -80841,7 +78487,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-91-date" + id="cell-table-27-row-3-date" offset={0} > - 2235-08-02T07:33:20.000Z + 1973-06-15T13:46:40.000Z @@ -80860,26 +78506,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-91-select" - offset={0} - > - - - option-B - - - - @@ -80898,7 +78525,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-91-status" + id="cell-table-27-row-3-status" offset={0} > + @@ -81069,7 +78690,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-92-date" + id="cell-table-27-row-33-date" offset={0} > - 2241-05-20T08:53:20.000Z + 2007-09-05T13:46:40.000Z @@ -81088,26 +78709,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-92-select" - offset={0} - > - - - option-C - - - - @@ -81126,7 +78728,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-92-status" + id="cell-table-27-row-33-status" offset={0} > @@ -81194,7 +78789,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="node" data-offset={0} - id="cell-table-row-92-node" + id="cell-table-27-row-33-node" offset={0} > - wgO4i + c8iM4 + @@ -81297,7 +78893,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-93-date" + id="cell-table-27-row-63-date" offset={0} > - 2247-03-31T13:46:40.000Z + 2098-12-09T21:46:40.000Z @@ -81316,7 +78912,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-93-select" + id="cell-table-27-row-63-select" offset={0} > - + @@ -81518,7 +79096,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-94-date" + id="cell-table-27-row-93-date" offset={0} > - 2253-03-03T22:13:20.000Z + 2247-03-31T13:46:40.000Z @@ -81537,26 +79115,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-94-select" - offset={0} - > - - - option-B - - - - @@ -81575,7 +79134,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-94-status" + id="cell-table-27-row-93-status" offset={0} > @@ -81643,7 +79195,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="node" data-offset={0} - id="cell-table-row-94-node" + id="cell-table-27-row-93-node" offset={0} > - OewGc + AAAAA + @@ -81746,7 +79299,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-95-date" + id="cell-table-27-row-15-date" offset={0} > - 2259-02-28T10:13:20.000Z + 1980-04-19T13:46:40.000Z @@ -81765,26 +79318,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-95-select" - offset={0} - > - - - option-C - - - - @@ -81803,7 +79337,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-95-status" + id="cell-table-27-row-15-status" offset={0} > + @@ -81974,7 +79502,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-96-date" + id="cell-table-27-row-45-date" offset={0} > - 2265-03-19T01:46:40.000Z + 2037-05-03T21:46:40.000Z @@ -81993,7 +79521,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-96-select" + id="cell-table-27-row-45-select" offset={0} > - @@ -82092,7 +79601,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="node" data-offset={0} - id="cell-table-row-96-node" + id="cell-table-27-row-45-node" offset={0} > - qcUSW + Kw0WU + @@ -82195,7 +79705,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-97-date" + id="cell-table-27-row-75-date" offset={0} > - 2271-04-30T20:53:20.000Z + 2151-06-02T13:46:40.000Z @@ -82214,26 +79724,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-97-select" - offset={0} - > - - - option-B - - - - @@ -82252,7 +79743,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-97-status" + id="cell-table-27-row-75-status" offset={0} > + @@ -82423,7 +79908,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-98-date" + id="cell-table-27-row-24-date" offset={0} > - 2277-07-04T19:33:20.000Z + 1991-06-04T01:46:40.000Z @@ -82442,26 +79927,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-98-select" - offset={0} - > - - - option-C - - - - @@ -82480,7 +79946,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-98-status" + id="cell-table-27-row-24-status" offset={0} > + @@ -82651,7 +80111,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start" data-column="date" data-offset={0} - id="cell-table-row-99-date" + id="cell-table-27-row-54-date" offset={0} > - 2283-10-01T21:46:40.000Z + 2065-07-28T09:46:40.000Z @@ -82670,7 +80130,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="select" data-offset={0} - id="cell-table-row-99-select" + id="cell-table-27-row-54-select" offset={0} > - W4oksCiQKQ + + + + + + + + + + + + + + + + @@ -82708,7 +80352,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="status" data-offset={0} - id="cell-table-row-99-status" + id="cell-table-27-row-84-status" offset={0} > @@ -82769,7 +80413,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T className="data-table-start iot--table__cell--sortable" data-column="node" data-offset={0} - id="cell-table-row-99-node" + id="cell-table-27-row-84-node" offset={0} > - W4oks + 8oCI6 + + + + + + + + + + + + +
- -
+ - - scott pinocchio chocolate 89 + + String + + + + 2 + +
- - -
- - - 2224-03-05T15:33:20.000Z - - - + + + + + + + - option-C + Date +
- -
+ - - GE4mMo8KOK - - - - - - - - - - - - - - - 7921 - - - - - - false + Select + + + + 1 + +
- -
- - - - - - GE4mM - - -
- -
- - -
-
-
- - - toyota toyota toyota 90 - - - - - - 2229-11-06T09:46:40.000Z - - - - - - option-A - - - - - - UiqsoeO2a2 - - - + + + - - - - + Status + + +
- - -
- - - - - true - - - - + + - - + + - - Uiqso + + Number + + +
+ + + + + + + + +
+ + + + Boolean + + + + + + + React Node + + + + + + + Object Id + + + + + - +
- helping whiteboard as 91 + as eat scott 3 - iCcyGUekmk + option-A - - 8281 - - + /> - iCcyG + qcUSW
- whiteboard can eat 92 + as eat scott 33 - wgO4iKuSyS + option-A - - 8464 - - + /> - true + false
- as eat scott 93 + as eat scott 63 - - - AAAAAAAAAA - - - - AAAAA + OewGc
- can pinocchio whiteboard 94 + as eat scott 93 - OewGc0QsMs + option-A - - 8836 - - + /> - true + false
- bottle toyota bottle 95 + bottle toyota bottle 15 - c8iM4qgaYa + option-A - - 9025 - - + /> - c8iM4 + YQmcw
- eat whiteboard pinocchio 96 + bottle toyota bottle 45 - - - qcUSWgwIkI - - - - true + false
- chocolate can helping 97 + bottle toyota bottle 75 - 46GYyWC0w0 + option-A - - 9409 - - + /> - 46GYy + 6SEQ2
- pinocchio eat can 98 + can pinocchio whiteboard 24 - Ia2eQMSi8i + option-A - - 9604 - - + /> - Ia2eQ + amkU0
- scott pinocchio chocolate 99 + can pinocchio whiteboard 54 + + + + + true + + + + + + + + + + + + MIyOY + + + +
+ +
+ + +
+
+
+ + + can pinocchio whiteboard 84 + + + + + + 2196-10-06T01:46:40.000Z + + + + + + option-A - false + true
+ + Total + +   + +   + +   + + 215589 + +   + +   + +   + +
-
-
-`; - -exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/Table/StatefulTable with column overflow menu and aggregate column values 1`] = ` -
-
-
+
-

- - 0 items selected - -

-
-
- +
+ + + + +
+
-
- -
- + 1–10 of 100 items + +
- - - - - - - - - - - - - - - - + + + + + + + + + + + 1 of 10 pages + +
+
+ + + + + + +
+ + Focus sentinel + +
+
+

+ Select columns to sort +

+ +
+
+
+
+
- - - - - - - - - - + + + + + +
-
- - - - - - - - - - + + +
-
- - - - - - - - - - + + +
+
+
- - - - - - - - - - - - - - + + + + + + 1–10 of 20 items + + +
+
+
+ +
+
-
- - - - - - - - - - + + + + + + + 1 of 2 pages + +
+ + +
+ + + + +`; + +exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/Table/StatefulTable with row nesting and resizable columns with initial width 1`] = ` +
+
+
+
+
+
+

+ + 0 items selected + +

+
+
+ +
+
+ +
+
+
+ - + +
+ + + +
+ + + +
+
+
+
+
- -
- - -
-
-
+
+
+
- + - + - + - + - + - + - + - + -
+
+ - -
- -
- + - - + - - + - - + - - + - + + + - - + +
+ Select a column +
+ + +
+
+ +
+
- + - -
+ + + + +
+
+ +
+ - -
- -
- + - - + - - + - - + - - + - - - - 1 - - - - + - + + - - - - - - -
- -
- - -
-
-
- - - whiteboard can eat 2 - - - - - - 1973-04-18T16:53:20.000Z - - - - - - option-C - - - - - - c8iM4qgaYa - - - - - - - - - - - - - - 4 - - - - - - true - - - - - - - - - -
+
+ - -
- -
- - - as eat scott 3 - - - - - - 1973-06-15T13:46:40.000Z - - - - - - option-A - - - - - - + - + + - - + +
+ Select a direction +
+ + + + + +
+
+ +
+ + +
+
+
+ + Focus sentinel + + + + +`; + +exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/Table/StatefulTable with pre-filled search 1`] = ` +
+

+ Click the button below to demonstrate updating the pre-filled search (defaultValue) via state/props +

+ + +
+
+
+
+

+ + 0 items selected + +

+
+
+ +
+
+ +
+
+
+ + + +
+ + + +
+
+
+
+
+ + + + - + + + + + + - + - + + + - + - + + + - + - + + + - + - + + + - - + + - + + + - + - + + + - + - + + + - + - - + + + - - + + - + + + - + - + + +
+ - - false - + String - - + + + - - - + Date - - -
- -
- - -
+ toyota toyota toyota 0
-
+ + - - can pinocchio whiteboard 4 - + 1973-03-03T09:46:40.000Z - +
+ - - 1973-09-04T14:13:20.000Z - + bottle toyota bottle 5 - + + - - option-B - + 1973-12-17T18:13:20.000Z - +
+ - - 46GYyWC0w0 - + toyota toyota toyota 10 - + + - - - - - + 1976-05-03T19:33:20.000Z - +
+ - - 16 - + bottle toyota bottle 15 - + + - - true - + 1980-04-19T13:46:40.000Z - +
+ - - - + toyota toyota toyota 20 - -
- -
- - -
+ 1985-11-05T00:53:20.000Z
-
+
+ - - bottle toyota bottle 5 - + bottle toyota bottle 25 - + + - - 1973-12-17T18:13:20.000Z - + 1992-12-22T04:53:20.000Z - +
+ - - option-C - + toyota toyota toyota 30 - + + - - Ia2eQMSi8i - + 2001-09-09T01:46:40.000Z - +
+ - - - - - + bottle toyota bottle 35 - + + - - 25 - - - - - - false - + 2011-12-27T15:33:20.000Z - +
+ - - - + toyota toyota toyota 40 - -
- -
- - -
+ 2023-11-14T22:13:20.000Z
-
+
+ - - eat whiteboard pinocchio 6 - + bottle toyota bottle 45 - + + - - 1974-04-24T01:46:40.000Z - + 2037-05-03T21:46:40.000Z - +
+
+
+
+
+ +
+
+
+
+
- + - - + - + + - - - - - true - - - - - - - - - -
- - - + - + + - - - 1974-09-21T12:53:20.000Z - - - - - - option-B - - - - - - kYaqK2y8W8 - - - - - - - - - - - - - - 49 - - - - - - false - - - - - - - - - -
+ + + + + + + - - - - - - + + + - -
+
- -
+ - + - pinocchio eat can 8 + String long text should get truncated +
- -
+ - 1975-03-14T03:33:20.000Z + Date long text should get truncated +
- -
+ - option-C + Select long text should get truncated +
- -
+ - y2MwmsEqiq + Status long text should get truncated +
- -
+ - - - + Number long text should get truncated +
- -
+ - 64 + Boolean long text should get truncated +
- -
+ - true + React Node long text should get truncated +
- -
+ - + + + Object Id long text should get truncated + +
+ + + + + +
+ + - - + + + + + +
+ + - scott pinocchio chocolate 9 + toyota toyota toyota 0 - 1975-09-26T21:46:40.000Z + 1973-03-03T09:46:40.000Z option-A @@ -85637,36 +83152,18 @@ exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/T - - - CW82EiUYuY - - - - false + true -
- Total + + + AAAAA + + -   +
+
+ +
+
-   + -   + +
+ + +
+
-   + + + helping whiteboard as 1 + + - 215589 + + + 1973-03-14T23:33:20.000Z + + -   + + + option-B + + -   + + + + + + + -
-
-
-
-
- -
-
-
-
- - - - -
-
-
-
- - 1–10 of 100 items - -
-
-
-
- -
-
+ + + - - - - -
-
-
-
- - 1 of 10 pages - -
- - -
-
-
-
- - -`; - -exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/Table/StatefulTable with multi-sorting 1`] = ` -
-
-
-
-
-

- - 0 items selected - -

-
-
- -
-
-
- - -
-
-
-
- - - - + - -
- -
+ + + + + + + + + + + - - - - - + + - -
- - -
-
- - + - - - - - - - - - - - - - - - - - - - - - - + - - - as eat scott 63 - - - - + - - - - - - - - - - - - - - - - - - - - - + + - - - bottle toyota bottle 15 - - - - + - - - - - - - - - - - - + - - - - - + + - - - Kw0WU - - - - - - + - + - - - - - - - + - - - + + - + - + + + - - - - - - - + - - - - - - - + + - - - - - - - - + - - - - - - + - - + - - - - - - - - - - - - - - - - - - - -
+ Drill in to find out more after observing + + + + + + +
+ +
+ + -
-
- -
- + Select row + + + + + + - String + whiteboard can eat 2 - - - 2 - -
- - - - - - - - -
- + - Date + + 1973-04-18T16:53:20.000Z + -
- - -
- + - Select + option-C - + + - - - - open and close list of options - - + + + + - 1 + 4 -
- - - - - - - - -
- + - Status + true - -
- - - - + + - - - - -
- + + + + + - Number + c8iM4 - + +
+
- + Drill in to find out more after observing + + + - + + + + + + More actions + + + +
+
+
+ + +
+ className="bx--form-item bx--checkbox-wrapper" + > + + +
- + + - - - + as eat scott 3 + + +
+ - - - - - - + 1973-06-15T13:46:40.000Z + + + + - Boolean + option-A - + + - - - - open and close list of options - - -
+ - - - - + + +
+ - - - - - - + false + + + + + + + + + + - React Node + qcUSW - -
- - - - - - - - -
- + + - - - Object Id - - + -
- - - - - - - - - -
- - - -
+ + + + + More actions + + + + + +
- + + + - as eat scott 3 +
+ + +
- -
- + - 1973-06-15T13:46:40.000Z + + can pinocchio whiteboard 4 + - - - + - option-A + + 1973-09-04T14:13:20.000Z + - - - + - - - - - - - - - - - false + option-B + - - - - - - - - - + - qcUSW - - - -
- -
- - -
-
-
- - - as eat scott 33 + + + - - - + - 2007-09-05T13:46:40.000Z + + 16 + - - - + - option-A + + true + - - - + - - - - - - - - false - - - - - - - - - - + - c8iM4 + + 46GYy + - - -
- + +
- - + + + + + + More actions + + + +
- -
+
- + + + + - 2098-12-09T21:46:40.000Z - - - - - - option-A +
+ + +
-
-
- + - - - + bottle toyota bottle 5 + - - - - - + - false + + 1973-12-17T18:13:20.000Z + - - - - - - - - - + - OewGc + + option-C + - - -
- + -
- - -
- -
- - - as eat scott 93 + + + - - - + - 2247-03-31T13:46:40.000Z + + 25 + - - - + - option-A + + false + - - - + - - - - - - - - false - - - - - - - - - - + - AAAAA + + Ia2eQ + - - -
- + +
- - -
- -
- + + + + - 1980-04-19T13:46:40.000Z +
+ + +
- -
- + - option-A + + eat whiteboard pinocchio 6 + - - - + - - - + 1974-04-24T01:46:40.000Z + - - - - - + - false + + option-A + - - - - - - - - - + - YQmcw - - - -
- -
- - -
-
-
- - - bottle toyota bottle 45 + + + - - - + - 2037-05-03T21:46:40.000Z - - - - + - option-A + + true + - - - + - - - - - - + - false + + W4oks + - - - + + - - - - - + + + + +
-
- + + + + -
- - -
- -
- + Select row + + + + + - bottle toyota bottle 75 + + chocolate can helping 7 + - - - + - 2151-06-02T13:46:40.000Z + + 1974-09-21T12:53:20.000Z + - - - + - option-A + + option-B + - - - + - - - + + + + - - - - - + - false + + 49 + - - - + - - - - - - + false + + + - 6SEQ2 - - - -
- + + + + + + + kYaqK + + + +
- - + Drill in to find out more after observing + + + +
- -
+
- can pinocchio whiteboard 24 +
+ + +
- -
- + - 1991-06-04T01:46:40.000Z + + pinocchio eat can 8 + - - - + - option-A + + 1975-03-14T03:33:20.000Z + - - - + - - - + option-C + - - - - - + - true + + + + + - - - + - - - - - - + 64 + + + - amkU0 + + true + - - -
- + -
- - -
- -
- - - can pinocchio whiteboard 54 + + - - - + - 2065-07-28T09:46:40.000Z + + y2Mwm + - - - + + - - option-A - - - + + + +
- - - + - true +
+ + +
- -
- - - - - - - + - MIyOY + + scott pinocchio chocolate 9 + - - -
- + -
- - -
- -
- + + - can pinocchio whiteboard 84 + + option-A + - - - + - 2196-10-06T01:46:40.000Z + + + + + - - - + + + - option-A + + false + - - - + - - - - - - + - true + + CW82E + - - - - - - - - - + + - - 8oCI6 - - - -
- - Total - -   - -   - -   - - 215589 - -   - -   - -   - -
+
+ + +
+
+ + + + +
-
-
-
+
- + - 30 - - - - - + + +
+ + 1–10 of 100 items +
- - 1–10 of 100 items - -
-
-
+
- - - - + + + + + + + + + + + + + + +
+ + 1 of 10 pages + +
+ + +
- + + + +`; + +exports[`Storybook Snapshot tests and console checks Storyshots 1 - Watson IoT/Table/StatefulTable with single nested hierarchy 1`] = ` +
+
+
+
+
- 1 of 10 pages - +
+

+ + 0 items selected + +

+
+
+ + +
+
+
+
+
+ + + +
+ + + +
+ -
-
-
-
- - Focus sentinel - -
-
-

- Select columns to sort -

+ +
-
-
- -
- + +
+ + + + - Status - - + + + + - Number - - + + + + - Boolean - - + + + + - React Node - - + + + + - Object Id - - - + Number + + + + - - -
-
- Select a column -
-
-
-
-
- -
- - + + Object Id + + + + + + + + + + + - - -
-
- Select a direction -
-
-
- - -
-
- -
+ + + + + - +
+
+
+
+ + + +
+
+
+ + +
- Boolean - -
+
+ + +
- React Node - -
+ + +
- Object Id - - - +
+ + - - -
-
- Select a column -
- - -
-
- -
- +
+
+
+ + + + - -