From bb3cbd5292cec6c9be5d83a84cef81a0ade27085 Mon Sep 17 00:00:00 2001 From: Patrick Riley Date: Tue, 25 Jun 2019 23:11:47 -0400 Subject: [PATCH 1/5] feat(react-table): convert react-table to typescript --- .../Dropdown/InternalDropdownItem.d.ts | 4 +- .../patternfly-4/react-table/package.json | 22 +- .../src/components/Table/ActionsColumn.js | 95 - .../src/components/Table/ActionsColumn.tsx | 108 + .../src/components/Table/BodyCell.d.ts | 5 + .../src/components/Table/BodyWrapper.d.ts | 5 + .../src/components/Table/Header.d.ts | 9 - .../src/components/Table/Header.js | 38 - .../src/components/Table/Header.tsx | 30 + .../src/components/Table/HeaderCell.d.ts | 5 + .../src/components/Table/SortColumn.d.ts | 18 - .../src/components/Table/SortColumn.js | 48 - .../src/components/Table/SortColumn.tsx | 43 + .../src/components/Table/Table.d.ts | 122 - .../react-table/src/components/Table/Table.js | 276 - .../react-table/src/components/Table/Table.md | 3 +- .../src/components/Table/Table.tsx | 263 + .../Table/__snapshots__/Table.test.js.snap | 4695 ++++++++--------- .../src/components/Table/base/index.d.ts | 9 + .../react-table/src/components/Table/index.js | 2 +- .../components/Table/utils/headerUtils.d.ts | 2 + .../react-table/tsconfig.base.json | 26 + .../react-table/tsconfig.gen-dts.json | 8 + .../react-table/tsconfig.typecheck.json | 7 + 24 files changed, 2810 insertions(+), 3033 deletions(-) delete mode 100644 packages/patternfly-4/react-table/src/components/Table/ActionsColumn.js create mode 100644 packages/patternfly-4/react-table/src/components/Table/ActionsColumn.tsx create mode 100644 packages/patternfly-4/react-table/src/components/Table/BodyCell.d.ts create mode 100644 packages/patternfly-4/react-table/src/components/Table/BodyWrapper.d.ts delete mode 100644 packages/patternfly-4/react-table/src/components/Table/Header.d.ts delete mode 100644 packages/patternfly-4/react-table/src/components/Table/Header.js create mode 100644 packages/patternfly-4/react-table/src/components/Table/Header.tsx create mode 100644 packages/patternfly-4/react-table/src/components/Table/HeaderCell.d.ts delete mode 100644 packages/patternfly-4/react-table/src/components/Table/SortColumn.d.ts delete mode 100644 packages/patternfly-4/react-table/src/components/Table/SortColumn.js create mode 100644 packages/patternfly-4/react-table/src/components/Table/SortColumn.tsx delete mode 100644 packages/patternfly-4/react-table/src/components/Table/Table.d.ts delete mode 100644 packages/patternfly-4/react-table/src/components/Table/Table.js create mode 100644 packages/patternfly-4/react-table/src/components/Table/Table.tsx create mode 100644 packages/patternfly-4/react-table/src/components/Table/base/index.d.ts create mode 100644 packages/patternfly-4/react-table/src/components/Table/utils/headerUtils.d.ts create mode 100644 packages/patternfly-4/react-table/tsconfig.base.json create mode 100644 packages/patternfly-4/react-table/tsconfig.gen-dts.json create mode 100644 packages/patternfly-4/react-table/tsconfig.typecheck.json diff --git a/packages/patternfly-4/react-core/src/components/Dropdown/InternalDropdownItem.d.ts b/packages/patternfly-4/react-core/src/components/Dropdown/InternalDropdownItem.d.ts index fffdd09c84f..99e35d6e476 100644 --- a/packages/patternfly-4/react-core/src/components/Dropdown/InternalDropdownItem.d.ts +++ b/packages/patternfly-4/react-core/src/components/Dropdown/InternalDropdownItem.d.ts @@ -1,6 +1,6 @@ import * as React from 'react'; -export interface InternalDropdownItemProps extends React.HTMLProps { +export interface InternalDropdownItemProps extends React.HTMLProps { /** Anything which can be rendered as dropdown item */ children?: React.ReactNode; /** Classes applied to root element of dropdown item */ @@ -25,5 +25,5 @@ export interface InternalDropdownItemProps extends React.HTMLProps void }; /** Callback for click event */ - onClick?: (event:React.MouseEvent|React.KeyboardEvent) => void; + onClick?: (event: any) => void; } diff --git a/packages/patternfly-4/react-table/package.json b/packages/patternfly-4/react-table/package.json index cf3dabab27d..2fd30fb9726 100644 --- a/packages/patternfly-4/react-table/package.json +++ b/packages/patternfly-4/react-table/package.json @@ -5,6 +5,7 @@ "main": "dist/js/index.js", "module": "dist/esm/index.js", "types": "dist/js/index.d.ts", + "patternfly:src": "src/", "sideEffects": false, "publishConfig": { "access": "public", @@ -17,8 +18,7 @@ "keywords": [ "react", "patternfly", - "table", - "reacttabular" + "table" ], "author": "Red Hat", "license": "MIT", @@ -42,13 +42,16 @@ "react-dom": "^15.6.2 || ^16.4.0" }, "scripts": { - "build": "yarn build:babel && node ./scripts/copyTS.js && node ./build/copyStyles.js", - "build:babel": "concurrently \"yarn build:babel:esm && yarn build:babel:umd\" \"yarn build:babel:cjs\"", - "build:babel:cjs": "babel --source-maps --extensions \".js,.ts,.tsx\" src --out-dir dist/js --presets=@babel/env", - "build:babel:esm": "babel --source-maps --extensions \".js,.ts,.tsx\" src --out-dir dist/esm", - "build:babel:umd": "babel --source-maps --extensions \".js\" dist/esm --out-dir dist/umd --plugins=transform-es2015-modules-umd", + "build": "yarn build:babel && yarn build:types && node ./scripts/copyTS.js && node ./build/copyStyles.js", + "build:babel": "concurrently 'yarn build:babel:esm && yarn build:babel:umd' 'yarn build:babel:cjs'", + "build:babel:cjs": "babel --source-maps --extensions '.js,.ts,.tsx' src --out-dir dist/js --presets=@babel/env", + "build:babel:esm": "babel --source-maps --extensions '.js,.ts,.tsx' src --out-dir dist/esm", + "build:babel:umd": "babel --source-maps --extensions '.js' dist/esm --out-dir dist/umd --plugins=transform-es2015-modules-umd", + "build:types": "tsc -p tsconfig.gen-dts.json", "clean": "rimraf dist", - "develop": "yarn build:babel:esm --skip-initial-build --watch --verbose" + "develop": "yarn build:babel:esm --skip-initial-build --watch --verbose --source-maps", + "lint:ts": "tslint -p tsconfig.typecheck.json", + "typecheck": "tsc -p tsconfig.typecheck.json" }, "devDependencies": { "@babel/cli": "^7.0.0", @@ -65,6 +68,7 @@ "enzyme": "3.9.0", "fs-extra": "^6.0.1", "glob": "^7.1.2", - "rimraf": "^2.6.2" + "rimraf": "^2.6.2", + "typescript": "3.4.5" } } diff --git a/packages/patternfly-4/react-table/src/components/Table/ActionsColumn.js b/packages/patternfly-4/react-table/src/components/Table/ActionsColumn.js deleted file mode 100644 index 8910430062a..00000000000 --- a/packages/patternfly-4/react-table/src/components/Table/ActionsColumn.js +++ /dev/null @@ -1,95 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import { - Dropdown, - KebabToggle, - DropdownItem, - DropdownSeparator, - DropdownPosition, - DropdownDirection -} from '@patternfly/react-core'; - -const propTypes = { - children: PropTypes.node, - items: PropTypes.array, - isDisabled: PropTypes.bool, - dropdownPosition: PropTypes.oneOf(Object.values(DropdownPosition)), - dropdownDirection: PropTypes.oneOf(Object.values(DropdownDirection)), - rowData: PropTypes.object, - extraData: PropTypes.shape({ - rowIndex: PropTypes.number, - columnIndex: PropTypes.number, - column: PropTypes.object, - property: PropTypes.string - }) -}; -const defaultProps = { - children: null, - items: [], - isDisabled: false, - dropdownPosition: DropdownPosition.right, - dropdownDirection: DropdownDirection.down, - rowData: {}, - extraData: {} -}; - -class ActionsColumn extends React.Component { - constructor(props) { - super(props); - this.state = { - isOpen: false - }; - } - - onToggle = isOpen => { - this.setState({ - isOpen - }); - }; - - onSelect = (event, onClick) => { - const { rowData, extraData } = this.props; - event.preventDefault(); - onClick && onClick(event, extraData.rowIndex, rowData, extraData); - this.setState({ - isOpen: !this.state.isOpen - }); - }; - - render() { - const { isOpen } = this.state; - const { items, children, dropdownPosition, dropdownDirection, isDisabled } = this.props; - return ( - - } - position={dropdownPosition} - direction={dropdownDirection} - isOpen={isOpen} - dropdownItems={items.map(({ title, itemKey, onClick, isSeparator, ...props }, key) => - isSeparator ? ( - - ) : ( - this.onSelect(event, onClick)} - {...props} - key={itemKey || key} - data-key={itemKey || key} - > - {title} - - ) - )} - isPlain - /> - {children} - - ); - } -} - -ActionsColumn.propTypes = propTypes; -ActionsColumn.defaultProps = defaultProps; - -export default ActionsColumn; diff --git a/packages/patternfly-4/react-table/src/components/Table/ActionsColumn.tsx b/packages/patternfly-4/react-table/src/components/Table/ActionsColumn.tsx new file mode 100644 index 00000000000..3baa440cd1a --- /dev/null +++ b/packages/patternfly-4/react-table/src/components/Table/ActionsColumn.tsx @@ -0,0 +1,108 @@ +import * as React from 'react'; +import { + Omit, + Dropdown, + KebabToggle, + DropdownItem, + DropdownItemProps, + DropdownSeparator +} from '@patternfly/react-core'; + +//todo: export from react-core as enum +export enum DropdownPosition { + right = 'right', + left= 'left' +} + +//todo: export from react-core as enum +export enum DropdownDirection { + up = 'up', + down = 'down', +} + +export interface ActionsItem extends Omit { + isSeparator?: boolean; + itemKey?: string; + title?: string | React.ReactNode; +} + +export interface ActionsColumnProps { + children?: React.ReactNode; + items: ActionsItem[]; + isDisabled?: boolean; + dropdownPosition?: DropdownPosition; + dropdownDirection?: DropdownDirection; + rowData?: object | undefined; + extraData?: { rowIndex: number, columnIndex: number, column: object, property: string }; +}; + +export interface ActionsColumnState { + isOpen: boolean; +} + +class ActionsColumn extends React.Component { + public static defaultProps = { + children: null as React.ReactNode, + items: [] as ActionsItem[], + dropdownPosition: DropdownPosition.right, + dropdownDirection: DropdownDirection.down, + rowData: {}, + extraData: {} + } + constructor (props: ActionsColumnProps){ + super(props); + this.state = { + isOpen: false + }; + } + + onToggle = (isOpen: boolean): void => { + this.setState({ + isOpen + }); + } + + onSelect = (event: React.MouseEvent, + onClick: ((event: React.MouseEvent, rowIndex: number | undefined, rowData: object | undefined, extraData: object | undefined) => void) | undefined): void => { + const { rowData, extraData } = this.props; + event.preventDefault(); + onClick && onClick(event, extraData && extraData.rowIndex, rowData, extraData); + this.setState({ + isOpen: !this.state.isOpen + }); + } + + render() { + const { isOpen } = this.state; + const { items, children, dropdownPosition, dropdownDirection, isDisabled } = this.props; + return ( + + } + position={dropdownPosition} + direction={dropdownDirection} + isOpen={isOpen} + dropdownItems={items.map( + ({ title, itemKey, onClick, isSeparator, ...props }, key) => + isSeparator ? ( + + ) : ( + this.onSelect(event, onClick)} + {...props} + key={itemKey || key} + data-key={itemKey || key} + > + {title} + + ) + )} + isPlain + /> + {children} + + ); + } +} + +export default ActionsColumn; \ No newline at end of file diff --git a/packages/patternfly-4/react-table/src/components/Table/BodyCell.d.ts b/packages/patternfly-4/react-table/src/components/Table/BodyCell.d.ts new file mode 100644 index 00000000000..fafacb05f8d --- /dev/null +++ b/packages/patternfly-4/react-table/src/components/Table/BodyCell.d.ts @@ -0,0 +1,5 @@ +import { FunctionComponent } from 'react'; + +declare const BodyCell: FunctionComponent; + +export default BodyCell; \ No newline at end of file diff --git a/packages/patternfly-4/react-table/src/components/Table/BodyWrapper.d.ts b/packages/patternfly-4/react-table/src/components/Table/BodyWrapper.d.ts new file mode 100644 index 00000000000..bb35cdef5ee --- /dev/null +++ b/packages/patternfly-4/react-table/src/components/Table/BodyWrapper.d.ts @@ -0,0 +1,5 @@ +import { Component } from 'react'; + +declare const BodyWrapper: Component; + +export default BodyWrapper; \ No newline at end of file diff --git a/packages/patternfly-4/react-table/src/components/Table/Header.d.ts b/packages/patternfly-4/react-table/src/components/Table/Header.d.ts deleted file mode 100644 index d70c1f2ce53..00000000000 --- a/packages/patternfly-4/react-table/src/components/Table/Header.d.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { FunctionComponent, HTMLProps } from 'react'; - -export interface HeaderProps extends HTMLProps { - className?: string; -} - -declare const Header: FunctionComponent; - -export default Header; diff --git a/packages/patternfly-4/react-table/src/components/Table/Header.js b/packages/patternfly-4/react-table/src/components/Table/Header.js deleted file mode 100644 index 5da0f03b89f..00000000000 --- a/packages/patternfly-4/react-table/src/components/Table/Header.js +++ /dev/null @@ -1,38 +0,0 @@ -import React from 'react'; -import { Header } from './base'; -import PropTypes from 'prop-types'; -import { TableContext } from './Table'; - -const propTypes = { - /** Additional classes for header. */ - className: PropTypes.string -}; - -const defaultProps = { - className: '' -}; - -const ContextHeader = ({ className, headerRows, ...props }) => ( -
-); - -ContextHeader.propTypes = { - className: PropTypes.string, - headerRows: PropTypes.array -}; - -ContextHeader.defaultProps = { - className: '', - headerRows: undefined -}; - -const TableHeader = ({ ...props }) => ( - - {({ headerRows }) => } - -); - -TableHeader.propTypes = propTypes; -TableHeader.defaultProps = defaultProps; - -export default TableHeader; diff --git a/packages/patternfly-4/react-table/src/components/Table/Header.tsx b/packages/patternfly-4/react-table/src/components/Table/Header.tsx new file mode 100644 index 00000000000..1239338bfcf --- /dev/null +++ b/packages/patternfly-4/react-table/src/components/Table/Header.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { Header } from './base'; +import { IHeaderRow, TableContext } from './Table'; + +interface ContextHeaderProps { + className?: string; + headerRows?: IHeaderRow[]; +} + +const ContextHeader: React.FunctionComponent = ({ + className = '', + headerRows = undefined as IHeaderRow[], + ...props +} : ContextHeaderProps ) => ( +
+); + +export interface HeaderProps extends React.HTMLProps { + className?: string; +} + +const TableHeader: React.FunctionComponent = ({ + ...props +} : HeaderProps ) => ( + + {({ headerRows }) => } + +); + +export default TableHeader; \ No newline at end of file diff --git a/packages/patternfly-4/react-table/src/components/Table/HeaderCell.d.ts b/packages/patternfly-4/react-table/src/components/Table/HeaderCell.d.ts new file mode 100644 index 00000000000..46ca3e31c06 --- /dev/null +++ b/packages/patternfly-4/react-table/src/components/Table/HeaderCell.d.ts @@ -0,0 +1,5 @@ +import { FunctionComponent } from 'react'; + +declare const HeaderCell: FunctionComponent; + +export default HeaderCell; \ No newline at end of file diff --git a/packages/patternfly-4/react-table/src/components/Table/SortColumn.d.ts b/packages/patternfly-4/react-table/src/components/Table/SortColumn.d.ts deleted file mode 100644 index 3b6300ea2cb..00000000000 --- a/packages/patternfly-4/react-table/src/components/Table/SortColumn.d.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { FunctionComponent, HTMLProps, ReactNode } from 'react'; - -export const SortByDirection: { - asc: 'asc', - desc: 'desc' -}; - -export interface SortColumn extends HTMLProps { - children?: ReactNode; - className?: string; - isSortedBy?: Boolean; - onSort?: Function; - sortDirection?: string; -} - -declare const Table: FunctionComponent; - -export default Table; diff --git a/packages/patternfly-4/react-table/src/components/Table/SortColumn.js b/packages/patternfly-4/react-table/src/components/Table/SortColumn.js deleted file mode 100644 index 5e419b23895..00000000000 --- a/packages/patternfly-4/react-table/src/components/Table/SortColumn.js +++ /dev/null @@ -1,48 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import { LongArrowAltUpIcon, LongArrowAltDownIcon, ArrowsAltVIcon } from '@patternfly/react-icons'; -import { css } from '@patternfly/react-styles'; -import styles from '@patternfly/react-styles/css/components/Table/table'; - -const propTypes = { - children: PropTypes.node, - className: PropTypes.string, - isSortedBy: PropTypes.bool, - onSort: PropTypes.func, - sortDirection: PropTypes.string -}; -const defaultProps = { - children: null, - className: '', - isSortedBy: false, - onSort: null, - sortDirection: '' -}; - -export const SortByDirection = { - asc: 'asc', - desc: 'desc' -}; - -const SortColumn = ({ isSortedBy, children, className, onSort, sortDirection, ...props }) => { - let SortedByIcon; - if (isSortedBy) { - SortedByIcon = sortDirection === 'asc' ? LongArrowAltUpIcon : LongArrowAltDownIcon; - } else { - SortedByIcon = ArrowsAltVIcon; - } - - return ( - - ); -}; - -SortColumn.propTypes = propTypes; -SortColumn.defaultProps = defaultProps; - -export default SortColumn; diff --git a/packages/patternfly-4/react-table/src/components/Table/SortColumn.tsx b/packages/patternfly-4/react-table/src/components/Table/SortColumn.tsx new file mode 100644 index 00000000000..22e78e1f12a --- /dev/null +++ b/packages/patternfly-4/react-table/src/components/Table/SortColumn.tsx @@ -0,0 +1,43 @@ +import * as React from 'react'; +import { LongArrowAltUpIcon, LongArrowAltDownIcon, ArrowsAltVIcon } from '@patternfly/react-icons'; +import { css } from '@patternfly/react-styles'; +import styles from '@patternfly/react-styles/css/components/Table/table'; + +export enum SortByDirection { + asc = 'asc', + desc = 'desc' +}; + +interface SortColumnProps extends React.HTMLAttributes { + children?: React.ReactNode; + className?: string; + isSortedBy?: Boolean; + onSort?: Function; + sortDirection?: string; +} + +const SortColumn: React.FunctionComponent = ({ + children = null, + className = '', + isSortedBy = false, + onSort = null, + sortDirection = '', + ...props +} : SortColumnProps ) => { + let SortedByIcon; + if (isSortedBy) { + SortedByIcon = sortDirection === SortByDirection.asc ? LongArrowAltUpIcon : LongArrowAltDownIcon; + } else { + SortedByIcon = ArrowsAltVIcon; + } + return ( + + ); +}; + +export default SortColumn; \ No newline at end of file diff --git a/packages/patternfly-4/react-table/src/components/Table/Table.d.ts b/packages/patternfly-4/react-table/src/components/Table/Table.d.ts deleted file mode 100644 index 54008174738..00000000000 --- a/packages/patternfly-4/react-table/src/components/Table/Table.d.ts +++ /dev/null @@ -1,122 +0,0 @@ -import { FunctionComponent, HTMLProps, ReactNode, MouseEvent } from 'react'; -import { SortByDirection } from './SortColumn'; -import { DropdownPosition, DropdownDirection, OneOf, Omit } from '@patternfly/react-core'; - -interface OnSort { - (event: MouseEvent, columnIndex: number, extraData: IExtraColumnData): void -} - -export const TableGridBreakpoint: { - none: null, - grid: 'grid', - gridMd: 'grid-md', - gridLg: 'grid-lg', - gridXl: 'grid-xl', - grid2xl: 'grid-2xl' -}; - -export const TableVariant: { - 'compact': 'compact' -} - -export interface IRowData { -} - -export interface IColumn { - extraParams: { - sortBy?: ISortBy; - onSort?: OnSort; - } -} - -export interface IExtraRowData { - rowIndex: number; - rowKey?: string; -} - -export interface IExtraColumnData { - columnIndex: number, - column: IColumn, - property: string, -} - -export interface IExtraData extends IExtraColumnData, IExtraRowData { -} - -export interface IExtra extends IExtraData { - rowData: IRowData, -} - -export interface ISortBy { - index?: number; - direction?: OneOf; -} - -export interface IAction { - title: string; - onClick: (event: MouseEvent, rowIndex: number, rowData: IRowData, extraData: IExtraData) => void; -} - -export interface ISeparator { - isSeparator: Boolean -} - -export interface IDecorator extends HTMLProps { - isVisible: boolean; - children?: React.ReactNode; -} - -export interface ICell { - title: string; - transforms?: ((value: any) => IDecorator)[]; - cellTransforms?: ((value: any) => IDecorator)[]; - columnTransforms?: ((value: any) => IDecorator)[]; - formatters?: ((value: any) => IDecorator)[]; - cellFormatters?: ((value: any) => IDecorator)[]; - props: any; -} - -export interface IRowCell { - title: ReactNode; - props: any; -} - -export interface IRow { - cells: Array; - isOpen?: Boolean; - parent?: number; - props?: any; - fullWidth?: Boolean; - noPadding?: Boolean; -} - -export interface TableProps extends Omit, 'onSelect'>, 'rows'> { - children?: ReactNode; - className?: string; - variant?: OneOf; - borders?: boolean; - gridBreakPoint?: OneOf; - sortBy?: ISortBy; - onCollapse?: (event: MouseEvent, rowIndex: number, isOpen: boolean, rowData: IRowData, extraData: IExtraData) => void; - onExpand?: (event: MouseEvent, rowIndex: number, colIndex: number, isOpen: boolean, rowData: IRowData, extraData: IExtraData) => void; - onSelect?: (event: MouseEvent, isSelected: boolean, rowIndex: number, rowData: IRowData, extraData: IExtraData) => void; - onSort?: OnSort; - actions?: Array; - actionResolver?: (rowData: IRowData, extraData: IExtraData) => Array; - areActionsDisabled?: (rowData: IRowData, extraData: IExtraData) => boolean; - header?: ReactNode; - caption?: ReactNode; - rowLabeledBy?: string; - expandId?: string; - contentId?: string; - dropdownPosition?: OneOf; - dropdownDirection?: OneOf; - rows: Array>; - cells: Array; - bodyWrapper?: Function; - rowWrapper?: Function; -} - -declare const Table: FunctionComponent; - -export default Table; diff --git a/packages/patternfly-4/react-table/src/components/Table/Table.js b/packages/patternfly-4/react-table/src/components/Table/Table.js deleted file mode 100644 index 9e5643b3298..00000000000 --- a/packages/patternfly-4/react-table/src/components/Table/Table.js +++ /dev/null @@ -1,276 +0,0 @@ -import React from 'react'; -import styles from '@patternfly/react-styles/css/components/Table/table'; -import stylesGrid from '@patternfly/react-styles/css/components/Table/table-grid'; -import { Provider } from './base'; -import { DropdownPosition, DropdownDirection } from '@patternfly/react-core'; -import { css, getModifier } from '@patternfly/react-styles'; -import PropTypes from 'prop-types'; -import { SortByDirection } from './SortColumn'; -import BodyCell from './BodyCell'; -import HeaderCell from './HeaderCell'; -import RowWrapper from './RowWrapper'; -import BodyWrapper from './BodyWrapper'; -import { calculateColumns } from './utils/headerUtils'; - -export const TableGridBreakpoint = { - none: null, - grid: 'grid', - gridMd: 'grid-md', - gridLg: 'grid-lg', - gridXl: 'grid-xl', - grid2xl: 'grid-2xl' -}; - -export const TableVariant = { - compact: 'compact' -}; - -const propTypes = { - /** Table elements [Head, Body and Footer]. */ - children: PropTypes.node, - /** Addional classes for Table. */ - className: PropTypes.string, - /** Function called when user wants to collapse row. */ - onCollapse: PropTypes.func, - /** Function called when user wants to compound expand row. */ - onExpand: PropTypes.func, - /** Table variant, defaults to large. */ - variant: PropTypes.oneOf(Object.values(TableVariant)), - /** Size at which table is broken into tiles. */ - gridBreakPoint: PropTypes.oneOf(Object.values(TableGridBreakpoint)), - /** Indicates if border is visible on a compacat table. Note that this can not be applied when using expandable */ - borders: PropTypes.bool, - /** Settings for sorting, which index and direction is sorted by. */ - sortBy: PropTypes.shape({ - index: PropTypes.number, - direction: PropTypes.oneOf(Object.values(SortByDirection)) - }), - /** Function called when user wants to select row. */ - onSelect: PropTypes.func, - /** Function called when user wants to sort table. */ - onSort: PropTypes.func, - /** Additional cell displayed at the end of each row with dropdown of action items. */ - actions: PropTypes.arrayOf( - PropTypes.shape({ - onClick: PropTypes.func, - title: PropTypes.node - }) - ), - /** Function should resolve an array of actions for each row in the same format as actions. */ - actionResolver: PropTypes.func, - /** Function should resolve if action kebap is disabled for each row */ - areActionsDisabled: PropTypes.func, - /** Override to the default BodyWrapper renderer */ - bodyWrapper: PropTypes.func, - /** Override to the default RowWrapper renderer */ - rowWrapper: PropTypes.func, - /** Actual rows to display in table. Either array of strings or row objects.
- * If you want to use components in row cells you can pass them as title prop in cells definition.
- *
Ex: rows:[
-   *   {cells:[
-   *     {title: <div>Some component</div>}
-   *     ...
-   *   ]}
-   * ]
-   * 
*/ - rows: PropTypes.arrayOf( - PropTypes.oneOfType([ - PropTypes.shape({ - cells: PropTypes.arrayOf( - PropTypes.oneOfType([ - PropTypes.node, - PropTypes.shape({ - title: PropTypes.node - }) - ]) - ), - isOpen: PropTypes.bool, - parent: PropTypes.number, - fullWidth: PropTypes.bool, - noPadding: PropTypes.bool, - props: PropTypes.any - }), - PropTypes.arrayOf( - PropTypes.oneOfType([ - PropTypes.shape({ - title: PropTypes.node - }), - PropTypes.node - ]) - ) - ]) - ).isRequired, - /** Header cells to display in table. Either array of strings or array of string or cell object. */ - cells: PropTypes.arrayOf( - PropTypes.oneOfType([ - PropTypes.node, - PropTypes.shape({ - title: PropTypes.node, - transforms: PropTypes.arrayOf(PropTypes.func), // Applies only to header cell - cellTransforms: PropTypes.arrayOf(PropTypes.func), // Applies only to body cells - columnTransforms: PropTypes.arrayOf(PropTypes.func), // Applies to both header and body cells - formatters: PropTypes.arrayOf(PropTypes.func), - cellFormatters: PropTypes.arrayOf(PropTypes.func) - }) - ]) - ).isRequired, - /** Aria labeled by this property collapse and select. */ - rowLabeledBy: PropTypes.string, - /** Id prefix for expand buttons. */ - expandId: PropTypes.string, - /** Id prefix for expanded content. */ - contentId: PropTypes.string, - /** Position of dropdown from actions will be displayed. */ - dropdownPosition: PropTypes.oneOf(Object.values(DropdownPosition)), - /** Direction of from actions will be displayed. */ - dropdownDirection: PropTypes.oneOf(Object.values(DropdownDirection)), - /** Header to display above table for accessibility reasons. */ - header: props => { - if (!props['aria-label'] && !props.caption && !props.header && !props.role === 'presentation') { - throw new Error('Specify at least one of: header, caption, aria-label'); - } - return null; - }, - /** Caption to display in table for accessibility reasons. */ - caption: props => { - if (!props['aria-label'] && !props.caption && !props.header && !props.role === 'presentation') { - throw new Error('Specify at least one of: header, caption, aria-label'); - } - return null; - }, - /** aria-label in table for accessibility reasons. */ - 'aria-label': props => { - if (!props['aria-label'] && !props.caption && !props.header && !props.role === 'presentation') { - throw new Error('Specify at least one of: header, caption, aria-label'); - } - return null; - }, - role: PropTypes.string -}; - -const defaultProps = { - children: null, - onCollapse: null, - onExpand: null, - className: '', - variant: null, - borders: true, - sortBy: undefined, - onSelect: undefined, - onSort: undefined, - actions: undefined, - actionResolver: undefined, - areActionsDisabled: undefined, - bodyWrapper: undefined, - rowWrapper: undefined, - rowLabeledBy: 'simple-node', - expandId: 'expandable-toggle', - contentId: 'expanded-content', - dropdownPosition: DropdownPosition.right, - dropdownDirection: DropdownDirection.down, - header: undefined, - caption: undefined, - 'aria-label': undefined, - gridBreakPoint: TableGridBreakpoint.gridMd, - role: 'grid' -}; - -export const TableContext = React.createContext(); - -class Table extends React.Component { - isSelected = row => row.selected === true; - - areAllRowsSelected = rows => - rows.every(row => this.isSelected(row) || (row.hasOwnProperty('parent') && !row.showSelect)); - - render() { - const { - caption, - header, - className, - gridBreakPoint, - onSort, - onSelect, - sortBy, - children, - actions, - actionResolver, - areActionsDisabled, - onCollapse, - onExpand, - rowLabeledBy, - dropdownPosition, - dropdownDirection, - contentId, - expandId, - variant, - rows, - cells, - bodyWrapper, - rowWrapper, - borders, - role, - ...props - } = this.props; - - const headerData = calculateColumns(cells, { - sortBy, - onSort, - onSelect, - allRowsSelected: onSelect ? this.areAllRowsSelected(rows) : false, - actions, - actionResolver, - areActionsDisabled, - onCollapse, - onExpand, - rowLabeledBy, - expandId, - contentId, - dropdownPosition, - dropdownDirection, - firstUserColumnIndex: [onCollapse, onSelect].filter(callback => callback).length - }); - - return ( - - {header} - - {caption && {caption}} - {children} - - - ); - } -} - -Table.propTypes = propTypes; -Table.defaultProps = defaultProps; - -export default Table; diff --git a/packages/patternfly-4/react-table/src/components/Table/Table.md b/packages/patternfly-4/react-table/src/components/Table/Table.md index c0ac8bf5fd8..5ee12d58657 100644 --- a/packages/patternfly-4/react-table/src/components/Table/Table.md +++ b/packages/patternfly-4/react-table/src/components/Table/Table.md @@ -2,6 +2,7 @@ title: 'Table' cssPrefix: 'pf-c-table' section: 'components' +typescript: true propComponents: ['Table', 'TableHeader', 'TableBody'] --- @@ -523,7 +524,7 @@ class CompactTable extends React.Component { return ( , + formatters?: Array, + props?: Object + }, + cell?: { + property?: number | string, + transforms?: Array, + formatters?: Array, + props?: Object + } +} + +export interface IRowData { +} + +export interface IColumn { + extraParams: { + sortBy?: ISortBy; + onSort?: OnSort; + } +} + +export interface IExtraRowData { + rowIndex: number; + rowKey?: string; +} + +export interface IExtraColumnData { + columnIndex: number, + column: IColumn, + property: string, +} + +export interface IExtraData extends IExtraColumnData, IExtraRowData { +} + +export interface IExtra extends IExtraData { + rowData: IRowData, +} + +export interface ISortBy { + index?: number; + direction?: 'asc' | 'desc' +} + +export interface IAction { + title: string; + onClick: (event: React.MouseEvent, rowIndex: number, rowData: IRowData, extraData: IExtraData) => void; +} + +export interface ISeparator { + isSeparator: Boolean +} + +export interface IDecorator extends React.HTMLProps { + isVisible: boolean; + children?: React.ReactNode; +} + +export interface ICell { + title: string; + transforms?: ((value: any) => IDecorator)[]; + cellTransforms?: ((value: any) => IDecorator)[]; + columnTransforms?: ((value: any) => IDecorator)[]; + formatters?: ((value: any) => IDecorator)[]; + cellFormatters?: ((value: any) => IDecorator)[]; + props: any; +} + +export interface IRowCell { + title: React.ReactNode; + props: any; +} + +export interface IRow { + cells: Array; + isOpen?: Boolean; + parent?: number; + props?: any; + fullWidth?: Boolean; + noPadding?: Boolean; +} + +export interface TableProps extends Omit, 'onSelect'>, 'rows'> { + children?: React.ReactNode; + className?: string; + variant?: 'compact'; + borders?: boolean; + gridBreakPoint?: '' | 'grid' | 'grid-md' | 'grid-lg' | 'grid-xl' | 'grid-2xl'; + sortBy?: ISortBy; + onCollapse?: (event: React.MouseEvent, rowIndex: number, isOpen: boolean, rowData: IRowData, extraData: IExtraData) => undefined; + onExpand?: (event: React.MouseEvent, rowIndex: number, colIndex: number, isOpen: boolean, rowData: IRowData, extraData: IExtraData) => undefined; + onSelect?: (event: React.MouseEvent, isSelected: boolean, rowIndex: number, rowData: IRowData, extraData: IExtraData) => undefined; + onSort?: (event: React.MouseEvent, columnIndex: number, extraData: IExtraColumnData) => undefined; + actions?: Array; + actionResolver?: (rowData: IRowData, extraData: IExtraData) => Array; + areActionsDisabled?: (rowData: IRowData, extraData: IExtraData) => boolean; + header?: React.ReactNode; + caption?: React.ReactNode; + rowLabeledBy?: string; + expandId?: string; + contentId?: string; + dropdownPosition?: 'right' | 'left'; + dropdownDirection?: 'up' | 'down'; + rows: Array>; + cells: Array; + bodyWrapper?: Function; + rowWrapper?: Function; +} + +export const TableContext = React.createContext({ + headerData: null as any, + headerRows: null as IHeaderRow[], + rows: [] +}); + +class Table extends React.Component { + public static defaultProps = { + children: null as React.ReactNode, + className: '', + variant: null as TableVariant, + borders: true, + rowLabeledBy: 'simple-node', + expandId: 'expandable-toggle', + contentId: 'expanded-content', + dropdownPosition: DropdownPosition.right, + dropdownDirection: DropdownDirection.down, + header: undefined as React.ReactNode, + caption: undefined as React.ReactNode, + 'aria-label': undefined as string, + gridBreakPoint: TableGridBreakpoint.gridMd, + role: 'grid' + } + + isSelected = (row: any) => row.selected === true; + + areAllRowsSelected = (rows: any) => + rows.every((row: any) => this.isSelected(row) || (row.hasOwnProperty('parent') && !row.showSelect)); + + render(){ + const { + caption, + header, + className, + gridBreakPoint, + onSort, + onSelect, + sortBy, + children, + actions, + actionResolver, + areActionsDisabled, + onCollapse, + onExpand, + rowLabeledBy, + dropdownPosition, + dropdownDirection, + contentId, + expandId, + variant, + rows, + cells, + bodyWrapper, + rowWrapper, + borders, + role, + ...props + } = this.props; + + if (!this.props['aria-label'] && !caption && !header && role !== 'presentation') { + throw new Error('Specify at least one of: header, caption, aria-label'); + } + + const headerData = calculateColumns(cells, { + sortBy, + onSort, + onSelect, + allRowsSelected: onSelect ? this.areAllRowsSelected(rows) : false, + actions, + actionResolver, + areActionsDisabled, + onCollapse, + onExpand, + rowLabeledBy, + expandId, + contentId, + dropdownPosition, + dropdownDirection, + firstUserColumnIndex: [onCollapse, onSelect].filter(callback => callback).length + }); + + return ( + + {header} + + {caption && } + {children} + + + ); + } +} +export default Table; diff --git a/packages/patternfly-4/react-table/src/components/Table/__snapshots__/Table.test.js.snap b/packages/patternfly-4/react-table/src/components/Table/__snapshots__/Table.test.js.snap index bc24dad2068..0ab5de0025d 100644 --- a/packages/patternfly-4/react-table/src/components/Table/__snapshots__/Table.test.js.snap +++ b/packages/patternfly-4/react-table/src/components/Table/__snapshots__/Table.test.js.snap @@ -30,8 +30,6 @@ exports[`Actions table 1`] = ` dropdownPosition="right" expandId="expandable-toggle" gridBreakPoint="grid-md" - onCollapse={null} - onExpand={null} role="grid" rowLabeledBy="simple-node" rows={ @@ -146,8 +144,8 @@ exports[`Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -188,8 +186,8 @@ exports[`Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -229,8 +227,8 @@ exports[`Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -270,8 +268,8 @@ exports[`Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -311,8 +309,8 @@ exports[`Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -353,8 +351,8 @@ exports[`Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -396,14 +394,13 @@ exports[`Actions table 1`] = ` className="pf-c-table pf-m-grid-md" role="grid" > - +
@@ -847,8 +843,8 @@ exports[`Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -889,8 +885,8 @@ exports[`Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -930,8 +926,8 @@ exports[`Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -971,8 +967,8 @@ exports[`Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -1012,8 +1008,8 @@ exports[`Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -1054,8 +1050,8 @@ exports[`Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -2431,8 +2427,8 @@ exports[`Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -2473,8 +2469,8 @@ exports[`Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -2514,8 +2510,8 @@ exports[`Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -2555,8 +2551,8 @@ exports[`Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -2596,8 +2592,8 @@ exports[`Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -2638,8 +2634,8 @@ exports[`Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -2908,8 +2904,8 @@ exports[`Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -3062,7 +3058,6 @@ exports[`Actions table 1`] = ` isOpen={false} isPlain={true} onSelect={[Function]} - onToggle={[Function]} position="right" toggle={
- +
@@ -10667,8 +10632,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -10709,8 +10674,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -10750,8 +10715,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -10791,8 +10756,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -10832,8 +10797,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -12209,8 +12174,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -12251,8 +12216,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -12292,8 +12257,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -12333,8 +12298,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -12374,8 +12339,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -12630,8 +12595,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -12672,8 +12637,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -12713,8 +12678,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -12754,8 +12719,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -12795,8 +12760,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -13051,8 +13016,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -13093,8 +13058,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -13134,8 +13099,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -13175,8 +13140,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -13216,8 +13181,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -13472,8 +13437,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -13514,8 +13479,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -13555,8 +13520,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -13596,8 +13561,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -13637,8 +13602,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -13893,8 +13858,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -13935,8 +13900,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -13976,8 +13941,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -14017,8 +13982,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -14058,8 +14023,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -14314,8 +14279,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -14356,8 +14321,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -14397,8 +14362,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -14438,8 +14403,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -14479,8 +14444,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -14735,8 +14700,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -14777,8 +14742,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -14818,8 +14783,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -14859,8 +14824,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -14900,8 +14865,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -15156,8 +15121,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -15198,8 +15163,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -15239,8 +15204,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -15280,8 +15245,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -15321,8 +15286,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -15577,8 +15542,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -15619,8 +15584,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -15660,8 +15625,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -15701,8 +15666,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -15742,8 +15707,8 @@ exports[`Cell header table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -16019,7 +15984,6 @@ exports[`Collapsible nested table 1`] = ` expandId="expandable-toggle" gridBreakPoint="grid-md" onCollapse={[Function]} - onExpand={null} role="grid" rowLabeledBy="simple-node" rows={ @@ -16142,7 +16106,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -16188,7 +16152,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -16231,7 +16195,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -16273,7 +16237,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -16315,7 +16279,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -16357,7 +16321,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -16398,14 +16362,13 @@ exports[`Collapsible nested table 1`] = ` className="pf-c-table pf-m-grid-md" role="grid" > - +
@@ -16859,7 +16821,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -16905,7 +16867,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -16948,7 +16910,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -16990,7 +16952,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -17032,7 +16994,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -17074,7 +17036,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -18476,7 +18438,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -18522,7 +18484,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -18565,7 +18527,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -18607,7 +18569,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -18649,7 +18611,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -18691,7 +18653,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -19022,7 +18984,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -19068,7 +19030,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -19111,7 +19073,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -19153,7 +19115,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -19195,7 +19157,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -19237,7 +19199,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -19554,7 +19516,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -19600,7 +19562,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -19643,7 +19605,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -19685,7 +19647,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -19727,7 +19689,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -19769,7 +19731,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -20038,7 +20000,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -20084,7 +20046,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -20127,7 +20089,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -20169,7 +20131,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -20211,7 +20173,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -20253,7 +20215,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -20584,7 +20546,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -20630,7 +20592,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -20673,7 +20635,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -20715,7 +20677,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -20757,7 +20719,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -20799,7 +20761,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -21068,7 +21030,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -21114,7 +21076,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -21157,7 +21119,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -21199,7 +21161,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -21241,7 +21203,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -21283,7 +21245,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -21566,7 +21528,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -21612,7 +21574,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -21655,7 +21617,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -21697,7 +21659,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -21739,7 +21701,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -21781,7 +21743,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -22064,7 +22026,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -22110,7 +22072,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -22153,7 +22115,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -22195,7 +22157,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -22237,7 +22199,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -22279,7 +22241,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -22562,7 +22524,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -22608,7 +22570,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -22651,7 +22613,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -22693,7 +22655,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -22735,7 +22697,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -22777,7 +22739,7 @@ exports[`Collapsible nested table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -23075,7 +23037,6 @@ exports[`Collapsible table 1`] = ` expandId="expandable-toggle" gridBreakPoint="grid-md" onCollapse={[Function]} - onExpand={null} role="grid" rowLabeledBy="simple-node" rows={ @@ -23196,7 +23157,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -23242,7 +23203,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -23285,7 +23246,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -23327,7 +23288,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -23369,7 +23330,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -23411,7 +23372,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -23452,14 +23413,13 @@ exports[`Collapsible table 1`] = ` className="pf-c-table pf-m-grid-md" role="grid" > - +
@@ -23913,7 +23872,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -23959,7 +23918,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -24002,7 +23961,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -24044,7 +24003,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -24086,7 +24045,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -24128,7 +24087,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -25522,7 +25481,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -25568,7 +25527,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -25611,7 +25570,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -25653,7 +25612,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -25695,7 +25654,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -25737,7 +25696,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -26068,7 +26027,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -26114,7 +26073,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -26157,7 +26116,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -26199,7 +26158,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -26241,7 +26200,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -26283,7 +26242,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -26552,7 +26511,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -26598,7 +26557,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -26641,7 +26600,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -26683,7 +26642,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -26725,7 +26684,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -26767,7 +26726,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -27050,7 +27009,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -27096,7 +27055,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -27139,7 +27098,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -27181,7 +27140,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -27223,7 +27182,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -27265,7 +27224,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -27596,7 +27555,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -27642,7 +27601,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -27685,7 +27644,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -27727,7 +27686,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -27769,7 +27728,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -27811,7 +27770,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -28080,7 +28039,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -28126,7 +28085,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -28169,7 +28128,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -28211,7 +28170,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -28253,7 +28212,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -28295,7 +28254,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -28578,7 +28537,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -28624,7 +28583,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -28667,7 +28626,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -28709,7 +28668,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -28751,7 +28710,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -28793,7 +28752,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -29076,7 +29035,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -29122,7 +29081,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -29165,7 +29124,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -29207,7 +29166,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -29249,7 +29208,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -29291,7 +29250,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -29574,7 +29533,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -29620,7 +29579,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -29663,7 +29622,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -29705,7 +29664,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -29747,7 +29706,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -29789,7 +29748,7 @@ exports[`Collapsible table 1`] = ` "expandId": "expandable-toggle", "firstUserColumnIndex": 1, "onCollapse": [Function], - "onExpand": null, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -30082,7 +30041,6 @@ exports[`Compound Expandable table 1`] = ` dropdownPosition="right" expandId="expandable-toggle" gridBreakPoint="grid-md" - onCollapse={null} onExpand={[Function]} role="grid" rowLabeledBy="simple-node" @@ -30176,7 +30134,7 @@ exports[`Compound Expandable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, + "onCollapse": undefined, "onExpand": [Function], "onSelect": undefined, "onSort": undefined, @@ -30218,7 +30176,7 @@ exports[`Compound Expandable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, + "onCollapse": undefined, "onExpand": [Function], "onSelect": undefined, "onSort": undefined, @@ -30260,14 +30218,13 @@ exports[`Compound Expandable table 1`] = ` className="pf-c-table pf-m-grid-md pf-m-expandable" role="grid" > - +
- +
- +
@@ -38965,8 +38915,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -39009,8 +38959,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -39051,8 +39001,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -39092,8 +39042,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -39133,8 +39083,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -39174,8 +39124,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -40576,8 +40526,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -40620,8 +40570,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -40662,8 +40612,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -40703,8 +40653,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -40744,8 +40694,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -40785,8 +40735,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -41076,8 +41026,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -41120,8 +41070,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -41162,8 +41112,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -41203,8 +41153,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -41244,8 +41194,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -41285,8 +41235,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -41567,8 +41517,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -41611,8 +41561,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -41653,8 +41603,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -41694,8 +41644,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -41735,8 +41685,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -41776,8 +41726,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -42061,8 +42011,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -42105,8 +42055,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -42147,8 +42097,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -42188,8 +42138,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -42229,8 +42179,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -42270,8 +42220,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -42561,8 +42511,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -42605,8 +42555,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -42647,8 +42597,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -42688,8 +42638,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -42729,8 +42679,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -42770,8 +42720,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -43055,8 +43005,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -43099,8 +43049,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -43141,8 +43091,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -43182,8 +43132,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -43223,8 +43173,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -43264,8 +43214,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -43558,8 +43508,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -43602,8 +43552,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -43644,8 +43594,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -43685,8 +43635,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -43726,8 +43676,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -43767,8 +43717,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -44061,8 +44011,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -44105,8 +44055,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -44147,8 +44097,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -44188,8 +44138,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -44229,8 +44179,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -44270,8 +44220,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -44564,8 +44514,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -44608,8 +44558,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -44650,8 +44600,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -44691,8 +44641,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -44732,8 +44682,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -44773,8 +44723,8 @@ exports[`Selectable table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 1, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": [Function], "onSort": undefined, "rowLabeledBy": "simple-node", @@ -45097,8 +45047,6 @@ exports[`Simple Actions table 1`] = ` dropdownPosition="right" expandId="expandable-toggle" gridBreakPoint="grid-md" - onCollapse={null} - onExpand={null} role="grid" rowLabeledBy="simple-node" rows={ @@ -45241,8 +45189,8 @@ exports[`Simple Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -45301,8 +45249,8 @@ exports[`Simple Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -45360,8 +45308,8 @@ exports[`Simple Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -45419,8 +45367,8 @@ exports[`Simple Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -45478,8 +45426,8 @@ exports[`Simple Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -45538,8 +45486,8 @@ exports[`Simple Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -45581,14 +45529,13 @@ exports[`Simple Actions table 1`] = ` className="pf-c-table pf-m-grid-md" role="grid" > - +
@@ -46158,8 +46104,8 @@ exports[`Simple Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -46218,8 +46164,8 @@ exports[`Simple Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -46277,8 +46223,8 @@ exports[`Simple Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -46336,8 +46282,8 @@ exports[`Simple Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -46395,8 +46341,8 @@ exports[`Simple Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -46455,8 +46401,8 @@ exports[`Simple Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -47998,8 +47944,8 @@ exports[`Simple Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -48058,8 +48004,8 @@ exports[`Simple Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -48117,8 +48063,8 @@ exports[`Simple Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -48176,8 +48122,8 @@ exports[`Simple Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -48235,8 +48181,8 @@ exports[`Simple Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -48295,8 +48241,8 @@ exports[`Simple Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -48583,8 +48529,8 @@ exports[`Simple Actions table 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -48610,7 +48556,6 @@ exports[`Simple Actions table 1`] = ` "rowIndex": 0, } } - isDisabled={false} items={ Array [ Object { @@ -48737,7 +48682,6 @@ exports[`Simple Actions table 1`] = ` isOpen={false} isPlain={true} onSelect={[Function]} - onToggle={[Function]} position="right" toggle={
- +
Simple Table - +
} - onCollapse={null} - onExpand={null} role="grid" rowLabeledBy="simple-node" rows={ @@ -69696,8 +69595,8 @@ exports[`Simple table header 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -69737,8 +69636,8 @@ exports[`Simple table header 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -69778,8 +69677,8 @@ exports[`Simple table header 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -69819,8 +69718,8 @@ exports[`Simple table header 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -69860,8 +69759,8 @@ exports[`Simple table header 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -69901,14 +69800,13 @@ exports[`Simple table header 1`] = ` className="pf-c-table pf-m-grid-md" role="grid" > - +
- +
`; -exports[`Table variants Breakpoint - grid 1`] = ` +exports[`Table variants Breakpoint - 1`] = `
{caption}
- +
@@ -82350,8 +82241,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -82392,8 +82283,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -82433,8 +82324,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -82474,8 +82365,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -82515,8 +82406,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -83891,8 +83782,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -83933,8 +83824,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -83974,8 +83865,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -84015,8 +83906,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -84056,8 +83947,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -84311,8 +84202,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -84353,8 +84244,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -84394,8 +84285,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -84435,8 +84326,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -84476,8 +84367,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -84731,8 +84622,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -84773,8 +84664,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -84814,8 +84705,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -84855,8 +84746,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -84896,8 +84787,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -85151,8 +85042,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -85193,8 +85084,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -85234,8 +85125,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -85275,8 +85166,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -85316,8 +85207,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -85571,8 +85462,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -85613,8 +85504,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -85654,8 +85545,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -85695,8 +85586,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -85736,8 +85627,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -85991,8 +85882,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -86033,8 +85924,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -86074,8 +85965,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -86115,8 +86006,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -86156,8 +86047,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -86411,8 +86302,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -86453,8 +86344,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -86494,8 +86385,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -86535,8 +86426,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -86576,8 +86467,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -86831,8 +86722,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -86873,8 +86764,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -86914,8 +86805,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -86955,8 +86846,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -86996,8 +86887,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -87251,8 +87142,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -87293,8 +87184,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -87334,8 +87225,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -87375,8 +87266,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -87416,8 +87307,8 @@ exports[`Table variants Breakpoint - grid 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -87658,7 +87549,7 @@ exports[`Table variants Breakpoint - grid 1`] = `
`; -exports[`Table variants Breakpoint - grid-2xl 1`] = ` +exports[`Table variants Breakpoint - grid 1`] = `
- +
@@ -88404,8 +88291,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -88446,8 +88333,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -88487,8 +88374,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -88528,8 +88415,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -88569,8 +88456,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -89945,8 +89832,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -89987,8 +89874,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -90028,8 +89915,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -90069,8 +89956,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -90110,8 +89997,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -90365,8 +90252,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -90407,8 +90294,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -90448,8 +90335,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -90489,8 +90376,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -90530,8 +90417,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -90785,8 +90672,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -90827,8 +90714,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -90868,8 +90755,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -90909,8 +90796,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -90950,8 +90837,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -91205,8 +91092,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -91247,8 +91134,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -91288,8 +91175,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -91329,8 +91216,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -91370,8 +91257,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -91625,8 +91512,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -91667,8 +91554,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -91708,8 +91595,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -91749,8 +91636,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -91790,8 +91677,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -92045,8 +91932,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -92087,8 +91974,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -92128,8 +92015,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -92169,8 +92056,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -92210,8 +92097,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -92465,8 +92352,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -92507,8 +92394,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -92548,8 +92435,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -92589,8 +92476,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -92630,8 +92517,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -92885,8 +92772,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -92927,8 +92814,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -92968,8 +92855,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -93009,8 +92896,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -93050,8 +92937,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -93305,8 +93192,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -93347,8 +93234,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -93388,8 +93275,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -93429,8 +93316,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -93470,8 +93357,8 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -93712,7 +93599,7 @@ exports[`Table variants Breakpoint - grid-2xl 1`] = `
`; -exports[`Table variants Breakpoint - grid-lg 1`] = ` +exports[`Table variants Breakpoint - grid-2xl 1`] = `
- +
@@ -94458,8 +94341,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -94500,8 +94383,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -94541,8 +94424,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -94582,8 +94465,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -94623,8 +94506,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -95999,8 +95882,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -96041,8 +95924,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -96082,8 +95965,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -96123,8 +96006,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -96164,8 +96047,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -96419,8 +96302,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -96461,8 +96344,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -96502,8 +96385,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -96543,8 +96426,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -96584,8 +96467,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -96839,8 +96722,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -96881,8 +96764,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -96922,8 +96805,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -96963,8 +96846,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -97004,8 +96887,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -97259,8 +97142,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -97301,8 +97184,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -97342,8 +97225,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -97383,8 +97266,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -97424,8 +97307,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -97679,8 +97562,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -97721,8 +97604,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -97762,8 +97645,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -97803,8 +97686,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -97844,8 +97727,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -98099,8 +97982,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -98141,8 +98024,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -98182,8 +98065,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -98223,8 +98106,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -98264,8 +98147,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -98519,8 +98402,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -98561,8 +98444,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -98602,8 +98485,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -98643,8 +98526,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -98684,8 +98567,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -98939,8 +98822,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -98981,8 +98864,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -99022,8 +98905,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -99063,8 +98946,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -99104,8 +98987,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -99359,8 +99242,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -99401,8 +99284,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -99442,8 +99325,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -99483,8 +99366,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -99524,8 +99407,8 @@ exports[`Table variants Breakpoint - grid-lg 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -99766,7 +99649,7 @@ exports[`Table variants Breakpoint - grid-lg 1`] = `
`; -exports[`Table variants Breakpoint - grid-md 1`] = ` +exports[`Table variants Breakpoint - grid-lg 1`] = `
- +
@@ -100512,8 +100391,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -100554,8 +100433,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -100595,8 +100474,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -100636,8 +100515,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -100677,8 +100556,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -102053,8 +101932,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -102095,8 +101974,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -102136,8 +102015,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -102177,8 +102056,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -102218,8 +102097,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -102473,8 +102352,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -102515,8 +102394,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -102556,8 +102435,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -102597,8 +102476,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -102638,8 +102517,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -102893,8 +102772,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -102935,8 +102814,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -102976,8 +102855,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -103017,8 +102896,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -103058,8 +102937,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -103313,8 +103192,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -103355,8 +103234,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -103396,8 +103275,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -103437,8 +103316,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -103478,8 +103357,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -103733,8 +103612,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -103775,8 +103654,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -103816,8 +103695,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -103857,8 +103736,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -103898,8 +103777,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -104153,8 +104032,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -104195,8 +104074,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -104236,8 +104115,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -104277,8 +104156,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -104318,8 +104197,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -104573,8 +104452,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -104615,8 +104494,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -104656,8 +104535,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -104697,8 +104576,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -104738,8 +104617,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -104993,8 +104872,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -105035,8 +104914,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -105076,8 +104955,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -105117,8 +104996,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -105158,8 +105037,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -105413,8 +105292,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -105455,8 +105334,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -105496,8 +105375,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -105537,8 +105416,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -105578,8 +105457,8 @@ exports[`Table variants Breakpoint - grid-md 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -105820,7 +105699,7 @@ exports[`Table variants Breakpoint - grid-md 1`] = `
`; -exports[`Table variants Breakpoint - grid-xl 1`] = ` +exports[`Table variants Breakpoint - grid-md 1`] = `
- +
@@ -106566,8 +106441,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -106608,8 +106483,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -106649,8 +106524,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -106690,8 +106565,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -106731,8 +106606,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -108107,8 +107982,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -108149,8 +108024,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -108190,8 +108065,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -108231,8 +108106,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -108272,8 +108147,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -108527,8 +108402,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -108569,8 +108444,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -108610,8 +108485,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -108651,8 +108526,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -108692,8 +108567,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -108947,8 +108822,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -108989,8 +108864,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -109030,8 +108905,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -109071,8 +108946,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -109112,8 +108987,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -109367,8 +109242,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -109409,8 +109284,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -109450,8 +109325,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -109491,8 +109366,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -109532,8 +109407,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -109787,8 +109662,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -109829,8 +109704,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -109870,8 +109745,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -109911,8 +109786,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -109952,8 +109827,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -110207,8 +110082,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -110249,8 +110124,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -110290,8 +110165,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -110331,8 +110206,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -110372,8 +110247,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -110627,8 +110502,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -110669,8 +110544,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -110710,8 +110585,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -110751,8 +110626,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -110792,8 +110667,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -111047,8 +110922,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -111089,8 +110964,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -111130,8 +111005,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -111171,8 +111046,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -111212,8 +111087,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -111467,8 +111342,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -111509,8 +111384,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -111550,8 +111425,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -111591,8 +111466,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -111632,8 +111507,8 @@ exports[`Table variants Breakpoint - grid-xl 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -111874,7 +111749,7 @@ exports[`Table variants Breakpoint - grid-xl 1`] = `
`; -exports[`Table variants Breakpoint - null 1`] = ` +exports[`Table variants Breakpoint - grid-xl 1`] = `
- +
@@ -112620,8 +112491,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -112662,8 +112533,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -112703,8 +112574,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -112744,8 +112615,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -112785,8 +112656,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -114161,8 +114032,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -114203,8 +114074,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -114244,8 +114115,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -114285,8 +114156,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -114326,8 +114197,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -114581,8 +114452,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -114623,8 +114494,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -114664,8 +114535,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -114705,8 +114576,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -114746,8 +114617,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -115001,8 +114872,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -115043,8 +114914,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -115084,8 +114955,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -115125,8 +114996,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -115166,8 +115037,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -115421,8 +115292,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -115463,8 +115334,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -115504,8 +115375,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -115545,8 +115416,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -115586,8 +115457,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -115841,8 +115712,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -115883,8 +115754,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -115924,8 +115795,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -115965,8 +115836,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -116006,8 +115877,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -116261,8 +116132,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -116303,8 +116174,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -116344,8 +116215,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -116385,8 +116256,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -116426,8 +116297,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -116681,8 +116552,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -116723,8 +116594,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -116764,8 +116635,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -116805,8 +116676,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -116846,8 +116717,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -117101,8 +116972,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -117143,8 +117014,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -117184,8 +117055,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -117225,8 +117096,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -117266,8 +117137,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -117521,8 +117392,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -117563,8 +117434,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -117604,8 +117475,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -117645,8 +117516,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -117686,8 +117557,8 @@ exports[`Table variants Breakpoint - null 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -117956,8 +117827,6 @@ exports[`Table variants Size - compact 1`] = ` dropdownPosition="right" expandId="expandable-toggle" gridBreakPoint="grid-md" - onCollapse={null} - onExpand={null} role="grid" rowLabeledBy="simple-node" rows={ @@ -118072,8 +117941,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -118114,8 +117983,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -118155,8 +118024,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -118196,8 +118065,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -118237,8 +118106,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -118279,14 +118148,13 @@ exports[`Table variants Size - compact 1`] = ` className="pf-c-table pf-m-grid-md pf-m-compact" role="grid" > - +
@@ -118674,8 +118541,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -118716,8 +118583,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -118757,8 +118624,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -118798,8 +118665,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -118839,8 +118706,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -120215,8 +120082,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -120257,8 +120124,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -120298,8 +120165,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -120339,8 +120206,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -120380,8 +120247,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -120635,8 +120502,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -120677,8 +120544,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -120718,8 +120585,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -120759,8 +120626,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -120800,8 +120667,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -121055,8 +120922,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -121097,8 +120964,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -121138,8 +121005,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -121179,8 +121046,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -121220,8 +121087,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -121475,8 +121342,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -121517,8 +121384,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -121558,8 +121425,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -121599,8 +121466,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -121640,8 +121507,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -121895,8 +121762,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -121937,8 +121804,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -121978,8 +121845,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -122019,8 +121886,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -122060,8 +121927,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -122315,8 +122182,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -122357,8 +122224,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -122398,8 +122265,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -122439,8 +122306,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -122480,8 +122347,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -122735,8 +122602,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -122777,8 +122644,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -122818,8 +122685,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -122859,8 +122726,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -122900,8 +122767,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -123155,8 +123022,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -123197,8 +123064,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -123238,8 +123105,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -123279,8 +123146,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -123320,8 +123187,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -123575,8 +123442,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -123617,8 +123484,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -123658,8 +123525,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -123699,8 +123566,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", @@ -123740,8 +123607,8 @@ exports[`Table variants Size - compact 1`] = ` "dropdownPosition": "right", "expandId": "expandable-toggle", "firstUserColumnIndex": 0, - "onCollapse": null, - "onExpand": null, + "onCollapse": undefined, + "onExpand": undefined, "onSelect": undefined, "onSort": undefined, "rowLabeledBy": "simple-node", diff --git a/packages/patternfly-4/react-table/src/components/Table/base/index.d.ts b/packages/patternfly-4/react-table/src/components/Table/base/index.d.ts new file mode 100644 index 00000000000..31f9e2760e6 --- /dev/null +++ b/packages/patternfly-4/react-table/src/components/Table/base/index.d.ts @@ -0,0 +1,9 @@ +export { default as Provider } from './provider'; +export { default as Header } from './header'; +export { default as Body } from './body'; +export { default as BodyRow } from './body-row'; +export { default as evaluateFormatters } from './evaluate-formatters'; +export { default as evaluateTransforms } from './evaluate-transforms'; +export { default as mergeProps } from './merge-props'; +export { default as columnsAreEqual } from './columns-are-equal'; +export { default as resolveRowKey } from './resolve-row-key'; diff --git a/packages/patternfly-4/react-table/src/components/Table/index.js b/packages/patternfly-4/react-table/src/components/Table/index.js index c65bab9f987..0f81cda220a 100644 --- a/packages/patternfly-4/react-table/src/components/Table/index.js +++ b/packages/patternfly-4/react-table/src/components/Table/index.js @@ -1,5 +1,5 @@ export { default as ActionsColumn } from './ActionsColumn'; -export { default as Table, TableContext, TableGridBreakpoint, TableVariant } from './Table'; +export { default as Table, TableGridBreakpoint, TableContext, TableVariant } from './Table'; export { default as TableHeader } from './Header'; export { default as TableBody } from './Body'; export { default as BodyWrapper } from './BodyWrapper'; diff --git a/packages/patternfly-4/react-table/src/components/Table/utils/headerUtils.d.ts b/packages/patternfly-4/react-table/src/components/Table/utils/headerUtils.d.ts new file mode 100644 index 00000000000..3076019114b --- /dev/null +++ b/packages/patternfly-4/react-table/src/components/Table/utils/headerUtils.d.ts @@ -0,0 +1,2 @@ +declare function calculateColumns(headerRows: any, extra: object): Array; +export { calculateColumns }; \ No newline at end of file diff --git a/packages/patternfly-4/react-table/tsconfig.base.json b/packages/patternfly-4/react-table/tsconfig.base.json new file mode 100644 index 00000000000..d6f17cc3405 --- /dev/null +++ b/packages/patternfly-4/react-table/tsconfig.base.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "jsx": "react", + "lib": [ + "es2017", + "dom" + ], + "module": "commonjs", + "moduleResolution": "node", + "skipLibCheck": true, + "strict": true, + "strictNullChecks": false, + // "noImplicitAny": false, + "target": "es5" + }, + "include": [ + "./src/*", + "./src/**/*" + ], + "exclude": [ + "./src/**/**.test.tsx", + "./src/**/**.test.ts", + "./src/**/examples/**" + ] +} \ No newline at end of file diff --git a/packages/patternfly-4/react-table/tsconfig.gen-dts.json b/packages/patternfly-4/react-table/tsconfig.gen-dts.json new file mode 100644 index 00000000000..cd0b79d4617 --- /dev/null +++ b/packages/patternfly-4/react-table/tsconfig.gen-dts.json @@ -0,0 +1,8 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "declaration": true, + "emitDeclarationOnly": true, + "outDir": "dist/js" + } +} \ No newline at end of file diff --git a/packages/patternfly-4/react-table/tsconfig.typecheck.json b/packages/patternfly-4/react-table/tsconfig.typecheck.json new file mode 100644 index 00000000000..fd69895cdf0 --- /dev/null +++ b/packages/patternfly-4/react-table/tsconfig.typecheck.json @@ -0,0 +1,7 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "allowJs": true, + "noEmit": true + } +} \ No newline at end of file From c4e2d298059ae7dc04b8ea01ec57eb13fdc67ebc Mon Sep 17 00:00:00 2001 From: Patrick Riley Date: Fri, 19 Jul 2019 08:06:46 -0400 Subject: [PATCH 2/5] convert base reactabular to tsx --- .../patternfly-4/react-table/package.json | 2 + .../src/components/Table/Header.tsx | 4 +- .../src/components/Table/Table.tsx | 11 +- .../Table/base/{body-row.js => body-row.tsx} | 59 +++++----- .../src/components/Table/base/body.js | 67 ----------- .../src/components/Table/base/body.tsx | 76 +++++++++++++ ...umns-are-equal.js => columns-are-equal.ts} | 7 +- ...e-formatters.js => evaluate-formatters.ts} | 10 +- ...e-transforms.js => evaluate-transforms.ts} | 11 +- .../base/{header-row.js => header-row.tsx} | 41 ++++--- .../src/components/Table/base/header.js | 38 ------- .../src/components/Table/base/header.tsx | 48 ++++++++ .../src/components/Table/base/index.d.ts | 9 -- .../src/components/Table/base/index.js | 9 -- .../src/components/Table/base/index.ts | 10 ++ .../base/{merge-props.js => merge-props.ts} | 8 +- .../src/components/Table/base/provider.js | 56 --------- .../src/components/Table/base/provider.tsx | 56 +++++++++ ...{resolve-row-key.js => resolve-row-key.ts} | 16 +-- .../src/components/Table/base/types.js | 107 ------------------ .../src/components/Table/base/types.tsx | 96 ++++++++++++++++ yarn.lock | 37 +++--- 22 files changed, 399 insertions(+), 379 deletions(-) rename packages/patternfly-4/react-table/src/components/Table/base/{body-row.js => body-row.tsx} (53%) delete mode 100644 packages/patternfly-4/react-table/src/components/Table/base/body.js create mode 100644 packages/patternfly-4/react-table/src/components/Table/base/body.tsx rename packages/patternfly-4/react-table/src/components/Table/base/{columns-are-equal.js => columns-are-equal.ts} (71%) rename packages/patternfly-4/react-table/src/components/Table/base/{evaluate-formatters.js => evaluate-formatters.ts} (58%) rename packages/patternfly-4/react-table/src/components/Table/base/{evaluate-transforms.js => evaluate-transforms.ts} (57%) rename packages/patternfly-4/react-table/src/components/Table/base/{header-row.js => header-row.tsx} (53%) delete mode 100644 packages/patternfly-4/react-table/src/components/Table/base/header.js create mode 100644 packages/patternfly-4/react-table/src/components/Table/base/header.tsx delete mode 100644 packages/patternfly-4/react-table/src/components/Table/base/index.d.ts delete mode 100644 packages/patternfly-4/react-table/src/components/Table/base/index.js create mode 100644 packages/patternfly-4/react-table/src/components/Table/base/index.ts rename packages/patternfly-4/react-table/src/components/Table/base/{merge-props.js => merge-props.ts} (84%) delete mode 100644 packages/patternfly-4/react-table/src/components/Table/base/provider.js create mode 100644 packages/patternfly-4/react-table/src/components/Table/base/provider.tsx rename packages/patternfly-4/react-table/src/components/Table/base/{resolve-row-key.js => resolve-row-key.ts} (56%) delete mode 100644 packages/patternfly-4/react-table/src/components/Table/base/types.js create mode 100644 packages/patternfly-4/react-table/src/components/Table/base/types.tsx diff --git a/packages/patternfly-4/react-table/package.json b/packages/patternfly-4/react-table/package.json index 2fd30fb9726..4d103f3fba9 100644 --- a/packages/patternfly-4/react-table/package.json +++ b/packages/patternfly-4/react-table/package.json @@ -62,6 +62,8 @@ "@babel/plugin-transform-typescript": "^7.0.0", "@babel/preset-env": "^7.0.0", "@babel/preset-react": "^7.0.0", + "@types/classnames": "^2.2.9", + "@types/lodash-es": "^4.17.3", "babel-plugin-transform-es2015-modules-umd": "^6.24.1", "babel-plugin-typescript-to-proptypes": "^0.17.1", "css": "^2.2.3", diff --git a/packages/patternfly-4/react-table/src/components/Table/Header.tsx b/packages/patternfly-4/react-table/src/components/Table/Header.tsx index 1239338bfcf..454cc6a425c 100644 --- a/packages/patternfly-4/react-table/src/components/Table/Header.tsx +++ b/packages/patternfly-4/react-table/src/components/Table/Header.tsx @@ -1,6 +1,7 @@ import * as React from 'react'; import { Header } from './base'; import { IHeaderRow, TableContext } from './Table'; +import { RowsType } from './base/types'; interface ContextHeaderProps { className?: string; @@ -12,7 +13,8 @@ const ContextHeader: React.FunctionComponent = ({ headerRows = undefined as IHeaderRow[], ...props } : ContextHeaderProps ) => ( -
+ // note: IHeader[] can be made to extend RowsTypes[] in the future so base types are consistent +
); export interface HeaderProps extends React.HTMLProps { diff --git a/packages/patternfly-4/react-table/src/components/Table/Table.tsx b/packages/patternfly-4/react-table/src/components/Table/Table.tsx index c563f198078..14976951f4e 100644 --- a/packages/patternfly-4/react-table/src/components/Table/Table.tsx +++ b/packages/patternfly-4/react-table/src/components/Table/Table.tsx @@ -113,7 +113,8 @@ export interface IRow { noPadding?: Boolean; } -export interface TableProps extends Omit, 'onSelect'>, 'rows'> { +export interface TableProps { + 'aria-label'?: string; children?: React.ReactNode; className?: string; variant?: 'compact'; @@ -138,6 +139,7 @@ export interface TableProps extends Omit, cells: Array; bodyWrapper?: Function; rowWrapper?: Function; + role?: string; } export const TableContext = React.createContext({ @@ -171,6 +173,7 @@ class Table extends React.Component { render(){ const { + 'aria-label': ariaLabel, caption, header, className, @@ -199,8 +202,9 @@ class Table extends React.Component { ...props } = this.props; - if (!this.props['aria-label'] && !caption && !header && role !== 'presentation') { - throw new Error('Specify at least one of: header, caption, aria-label'); + if (!ariaLabel && !caption && !header && role !== 'presentation') { + // tslint:disable-next-line:no-console + console.error('Table: Specify at least one of: header, caption, aria-label') } const headerData = calculateColumns(cells, { @@ -232,6 +236,7 @@ class Table extends React.Component { {header} { + public static defaultProps = { + onRow: (...args:any) => Object + }; + + shouldComponentUpdate(nextProps: BodyRowProps){ const previousProps = this.props; // Check for row based override. const { renderers } = nextProps; - if (renderers && renderers.row && renderers.row.shouldComponentUpdate) { - if (isFunction(renderers.row.shouldComponentUpdate)) { - return renderers.row.shouldComponentUpdate.call(this, nextProps); + if (renderers && renderers.row && (renderers.row as React.Component).shouldComponentUpdate) { + if (isFunction((renderers.row as React.Component).shouldComponentUpdate)) { + return (renderers.row as React.Component).shouldComponentUpdate.call(this, nextProps, {}, {}); } return true; @@ -37,12 +48,12 @@ class BodyRow extends React.Component { const { columns, renderers, onRow, rowKey, rowIndex, rowData } = this.props; return React.createElement( - renderers.row, + renderers.row as createElementType, onRow(rowData, { rowIndex, rowKey }), - columns.map((column, columnIndex) => { + (columns as []).map((column: ColumnType, columnIndex: number) => { const { property, cell, props } = column; - const evaluatedProperty = property || (cell && cell.property); - const { transforms = [], formatters = [] } = cell || {}; // TODO: test against this case + const evaluatedProperty = (property || (cell && cell.property)) as string; + const { transforms = [], formatters = [] } = cell || {}; const extraParameters = { columnIndex, property: evaluatedProperty, @@ -54,26 +65,22 @@ class BodyRow extends React.Component { const transformed = evaluateTransforms(transforms, rowData[evaluatedProperty], extraParameters); if (!transformed) { - console.warn('Table.Body - Failed to receive a transformed result'); // eslint-disable-line max-len, no-console + console.warn('Table.Body - Failed to receive a transformed result'); } return React.createElement( - renderers.cell, + renderers.cell as createElementType, { key: `${columnIndex}-cell`, ...mergeProps(props, cell && cell.props, transformed) }, transformed.children || evaluateFormatters(formatters)( - rowData[`_${evaluatedProperty}`] || rowData[evaluatedProperty], + rowData[`_${evaluatedProperty}`] || rowData[evaluatedProperty] as formatterValueType, extraParameters ) ); }) ); } -} -BodyRow.defaultProps = tableBodyRowDefaults; -BodyRow.propTypes = tableBodyRowTypes; - -export default BodyRow; +} \ No newline at end of file diff --git a/packages/patternfly-4/react-table/src/components/Table/base/body.js b/packages/patternfly-4/react-table/src/components/Table/base/body.js deleted file mode 100644 index 7c3b2e8e373..00000000000 --- a/packages/patternfly-4/react-table/src/components/Table/base/body.js +++ /dev/null @@ -1,67 +0,0 @@ -/** - * body.js - * - * Forked from reactabular-table version 8.14.0 - * https://github.com/reactabular/reactabular/tree/v8.14.0/packages/reactabular-table/src - * */ -import { isEqual, isFunction } from 'lodash-es'; -import React from 'react'; -import { tableBodyTypes, tableBodyDefaults, tableBodyContextTypes } from './types'; -import BodyRow from './body-row'; -import resolveRowKey from './resolve-row-key'; - -class Body extends React.Component { - shouldComponentUpdate(nextProps, nextState, nextContext) { - // eslint-disable-line no-unused-vars - // Skip checking props against `onRow` since that can be bound at render(). - // That's not particularly good practice but you never know how the users - // prefer to define the handler. - - // Check for wrapper based override. - const { renderers } = nextContext; - - if (renderers && renderers.body && renderers.body.wrapper.shouldComponentUpdate) { - if (isFunction(renderers.body.wrapper.shouldComponentUpdate)) { - return renderers.body.wrapper.shouldComponentUpdate.call(this, nextProps, nextState, nextContext); - } - - return true; - } - - return !(isEqual(omitOnRow(this.props), omitOnRow(nextProps)) && isEqual(this.context, nextContext)); - } - render() { - const { onRow, rows, rowKey, ...props } = this.props; - const { columns, renderers } = this.context; - - return React.createElement( - renderers.body.wrapper, - props, - rows.map((rowData, index) => { - const rowIndex = rowData._index || index; - const key = resolveRowKey({ rowData, rowIndex, rowKey }); - - return React.createElement(BodyRow, { - key, - renderers: renderers.body, - onRow, - rowKey: key, - rowIndex, - rowData, - columns - }); - }) - ); - } -} -Body.propTypes = tableBodyTypes; -Body.defaultProps = tableBodyDefaults; -Body.contextTypes = tableBodyContextTypes; - -function omitOnRow(props) { - const { onRow, ...ret } = props; // eslint-disable-line no-unused-vars - - return ret; -} - -export default Body; diff --git a/packages/patternfly-4/react-table/src/components/Table/base/body.tsx b/packages/patternfly-4/react-table/src/components/Table/base/body.tsx new file mode 100644 index 00000000000..765d10d4cf9 --- /dev/null +++ b/packages/patternfly-4/react-table/src/components/Table/base/body.tsx @@ -0,0 +1,76 @@ +/** + * body.tsx + * + * Forked from reactabular-table version 8.14.0 + * https://github.com/reactabular/reactabular/tree/v8.14.0/packages/reactabular-table/src + * */ +import * as React from 'react'; +import { isEqual, isFunction } from 'lodash-es'; +import { RowsType, RowType, RowKeyType, RenderersTypes, createElementType } from './types'; +import { resolveRowKey } from './resolve-row-key'; +import { BodyRow } from './body-row'; +import { ProviderContext } from './provider'; + +export interface BodyProps { + onRow?: Function; + rows: RowsType; + rowKey?: RowKeyType; + columns?: RenderersTypes["columns"]; + renderers: RenderersTypes["renderers"]; +} + +class BaseBody extends React.Component { + public static defaultProps = { + onRow: (...args:any) => Object + }; + + shouldComponentUpdate(nextProps: BodyProps){ + // Skip checking props against `onRow` since that can be bound at render(). + // That's not particularly good practice but you never know how the users + // prefer to define the handler. + // Check for wrapper based override. + const { renderers } = nextProps; + + if (renderers && renderers.body && renderers.body.wrapper && (renderers.body.wrapper as React.Component).shouldComponentUpdate) { + if (isFunction((renderers.body.wrapper as React.Component).shouldComponentUpdate)) { + return (renderers.body.wrapper as React.Component).shouldComponentUpdate.call(this, nextProps, {}, {}); + } + return true; + } + + return !(isEqual(this.omitOnRow(this.props), this.omitOnRow(nextProps))); + } + + omitOnRow = (props: BodyProps) => { + const { onRow, ...ret } = props; + return ret; + } + + render() { + const { onRow, rows, rowKey, columns, renderers, ...props } = this.props; + const children = (rows as []).map((rowData: RowType, index: number) => { + const key = resolveRowKey({ rowData, rowIndex: index, rowKey }); + return React.createElement(BodyRow, { + key, + renderers: renderers.body, + onRow, + rowKey: key, + rowIndex: index, + rowData, + columns + }); + }); + + return React.createElement( + renderers.body.wrapper as createElementType, + props, + children + ); + } +} + +export const Body = (props: BodyProps) => ( + + {({ columns, renderers }) => } + +); \ No newline at end of file diff --git a/packages/patternfly-4/react-table/src/components/Table/base/columns-are-equal.js b/packages/patternfly-4/react-table/src/components/Table/base/columns-are-equal.ts similarity index 71% rename from packages/patternfly-4/react-table/src/components/Table/base/columns-are-equal.js rename to packages/patternfly-4/react-table/src/components/Table/base/columns-are-equal.ts index 9541dad5bea..b81db6946b9 100644 --- a/packages/patternfly-4/react-table/src/components/Table/base/columns-are-equal.js +++ b/packages/patternfly-4/react-table/src/components/Table/base/columns-are-equal.ts @@ -1,12 +1,13 @@ /** - * columns-are-equal.js + * columns-are-equal.ts * * Forked from reactabular-table version 8.14.0 * https://github.com/reactabular/reactabular/tree/v8.14.0/packages/reactabular-table/src * */ import { isFunction, isEqualWith } from 'lodash-es'; +import { ColumnsType } from './types'; -function columnsAreEqual(oldColumns, newColumns) { +export function columnsAreEqual(oldColumns: ColumnsType, newColumns: ColumnsType) { return isEqualWith(oldColumns, newColumns, (a, b) => { if (isFunction(a) && isFunction(b)) { return true; @@ -15,5 +16,3 @@ function columnsAreEqual(oldColumns, newColumns) { return undefined; }); } - -export default columnsAreEqual; diff --git a/packages/patternfly-4/react-table/src/components/Table/base/evaluate-formatters.js b/packages/patternfly-4/react-table/src/components/Table/base/evaluate-formatters.ts similarity index 58% rename from packages/patternfly-4/react-table/src/components/Table/base/evaluate-formatters.js rename to packages/patternfly-4/react-table/src/components/Table/base/evaluate-formatters.ts index cf0cfe47be1..b153da7cfc0 100644 --- a/packages/patternfly-4/react-table/src/components/Table/base/evaluate-formatters.js +++ b/packages/patternfly-4/react-table/src/components/Table/base/evaluate-formatters.ts @@ -1,11 +1,13 @@ /** - * evaluate-formatters.js + * evaluate-formatters.ts * * Forked from reactabular-table version 8.14.0 * https://github.com/reactabular/reactabular/tree/v8.14.0/packages/reactabular-table/src * */ -function evaluateFormatters(formatters) { - return (value, extra) => +import { formattersType, formatterValueType, extraParamsType } from './types'; + +export function evaluateFormatters(formatters: formattersType) { + return (value: formatterValueType, extra: extraParamsType) => formatters.reduce( (parameters, formatter) => ({ value: formatter(parameters.value, parameters.extra), @@ -14,5 +16,3 @@ function evaluateFormatters(formatters) { { value, extra } ).value; } - -export default evaluateFormatters; diff --git a/packages/patternfly-4/react-table/src/components/Table/base/evaluate-transforms.js b/packages/patternfly-4/react-table/src/components/Table/base/evaluate-transforms.ts similarity index 57% rename from packages/patternfly-4/react-table/src/components/Table/base/evaluate-transforms.js rename to packages/patternfly-4/react-table/src/components/Table/base/evaluate-transforms.ts index b0e7deed564..86c2eef1ad2 100644 --- a/packages/patternfly-4/react-table/src/components/Table/base/evaluate-transforms.js +++ b/packages/patternfly-4/react-table/src/components/Table/base/evaluate-transforms.ts @@ -1,16 +1,17 @@ /** - * evaluate-transforms.js + * evaluate-transforms.ts * * Forked from reactabular-table version 8.14.0 * https://github.com/reactabular/reactabular/tree/v8.14.0/packages/reactabular-table/src * */ import { isFunction } from 'lodash-es'; -import mergeProps from './merge-props'; +import { mergeProps } from './merge-props'; +import { transformsType, extraParamsType } from './types'; -function evaluateTransforms(transforms = [], value, extraParameters = {}) { +export function evaluateTransforms(transforms:transformsType = [], value: string | object, extraParameters:extraParamsType = {}) { if (process.env.NODE_ENV !== 'production') { if (!transforms.every(isFunction)) { - throw new Error("All transforms weren't functions!", transforms); + throw new Error("All transforms weren't functions!"); } } @@ -20,5 +21,3 @@ function evaluateTransforms(transforms = [], value, extraParameters = {}) { return mergeProps(...transforms.map(transform => transform(value, extraParameters))); } - -export default evaluateTransforms; diff --git a/packages/patternfly-4/react-table/src/components/Table/base/header-row.js b/packages/patternfly-4/react-table/src/components/Table/base/header-row.tsx similarity index 53% rename from packages/patternfly-4/react-table/src/components/Table/base/header-row.js rename to packages/patternfly-4/react-table/src/components/Table/base/header-row.tsx index f4925b14477..9f6e8b27bbe 100644 --- a/packages/patternfly-4/react-table/src/components/Table/base/header-row.js +++ b/packages/patternfly-4/react-table/src/components/Table/base/header-row.tsx @@ -1,21 +1,33 @@ /** - * header-row.js + * header-row.tsx * * Forked from reactabular-table version 8.14.0 * https://github.com/reactabular/reactabular/tree/v8.14.0/packages/reactabular-table/src * */ -import React from 'react'; -import evaluateFormatters from './evaluate-formatters'; -import evaluateTransforms from './evaluate-transforms'; -import mergeProps from './merge-props'; -import { tableHeaderRowTypes, tableHeaderRowDefaults } from './types'; +import * as React from 'react'; +import { evaluateFormatters } from './evaluate-formatters'; +import { evaluateTransforms } from './evaluate-transforms'; +import { mergeProps } from './merge-props'; +import { createElementType, ColumnType, HeaderType, RowsType, RenderersTypes } from './types'; -const HeaderRow = ({ rowData, rowIndex, renderers, onRow }) => - React.createElement( - renderers.row, +export interface HeaderRowProps { + rowData: RowsType; + rowIndex: number; + renderers: RenderersTypes["renderers"]["header"]; + onRow?: Function; +} + +export const HeaderRow: React.FunctionComponent = ({ + rowData, + rowIndex, + renderers, + onRow = () => Object +}) => { + return React.createElement( + renderers.row as createElementType, onRow(rowData, { rowIndex }), - rowData.map((column, columnIndex) => { - const { property, header = {}, props = {} } = column; + (rowData as []).map((column: ColumnType, columnIndex: number) => { + const { property, header = {} as HeaderType, props = {} } = column; const evaluatedProperty = property || (header && header.property); const { label, transforms = [], formatters = [] } = header; const extraParameters = { @@ -30,7 +42,7 @@ const HeaderRow = ({ rowData, rowIndex, renderers, onRow }) => } return React.createElement( - renderers.cell, + renderers.cell as createElementType, { key: `${columnIndex}-header`, ...mergeProps(props, header && header.props, transformedProps) @@ -39,7 +51,4 @@ const HeaderRow = ({ rowData, rowIndex, renderers, onRow }) => ); }) ); -HeaderRow.defaultProps = tableHeaderRowDefaults; -HeaderRow.propTypes = tableHeaderRowTypes; - -export default HeaderRow; +}; \ No newline at end of file diff --git a/packages/patternfly-4/react-table/src/components/Table/base/header.js b/packages/patternfly-4/react-table/src/components/Table/base/header.js deleted file mode 100644 index 49f5c06d01b..00000000000 --- a/packages/patternfly-4/react-table/src/components/Table/base/header.js +++ /dev/null @@ -1,38 +0,0 @@ -/** - * header.js - * - * Forked from reactabular-table version 8.14.0 - * https://github.com/reactabular/reactabular/tree/v8.14.0/packages/reactabular-table/src - * */ -import React from 'react'; -import { tableHeaderTypes, tableHeaderContextTypes } from './types'; -import HeaderRow from './header-row'; - -// eslint-disable-next-line react/prefer-stateless-function -class Header extends React.Component { - render() { - const { children, headerRows, onRow, ...props } = this.props; - const { renderers, columns } = this.context; - - // If headerRows aren't passed, default to bodyColumns as header rows - return React.createElement( - renderers.header.wrapper, - props, - [ - (headerRows || [columns]).map((rowData, rowIndex) => - React.createElement(HeaderRow, { - key: `${rowIndex}-header-row`, - renderers: renderers.header, - onRow, - rowData, - rowIndex - }) - ) - ].concat(children) - ); - } -} -Header.propTypes = tableHeaderTypes; -Header.contextTypes = tableHeaderContextTypes; - -export default Header; diff --git a/packages/patternfly-4/react-table/src/components/Table/base/header.tsx b/packages/patternfly-4/react-table/src/components/Table/base/header.tsx new file mode 100644 index 00000000000..5d71e49b9f1 --- /dev/null +++ b/packages/patternfly-4/react-table/src/components/Table/base/header.tsx @@ -0,0 +1,48 @@ +/** + * header.tsx + * + * Forked from reactabular-table version 8.14.0 + * https://github.com/reactabular/reactabular/tree/v8.14.0/packages/reactabular-table/src + * */ +import * as React from 'react'; +import { createElementType, RowsType, ColumnsType, RenderersTypes } from './types'; +import { ProviderContext } from './provider'; +import { HeaderRow } from './header-row'; + +export interface HeaderProps { + headerRows?: RowsType[]; //array of rows arrays + children?: React.ReactNode; + columns?: RenderersTypes["columns"]; + renderers?: RenderersTypes["renderers"]; + onRow?: Function; + className?: string; +} + +class BaseHeader extends React.Component { + render() { + const { children, headerRows, onRow, renderers, columns, ...props } = this.props; + + // If headerRows aren't passed, default to bodyColumns as header rows + return React.createElement( + renderers.header.wrapper as createElementType, + props, + [ + (headerRows || [columns] as ColumnsType).map((rowData: RowsType, rowIndex) => + React.createElement(HeaderRow, { + key: `${rowIndex}-header-row`, + renderers: renderers.header, + onRow, + rowData, + rowIndex + }) + ) + ].concat(children as any) + ) + } +} + +export const Header = (props: HeaderProps) => ( + + {({ columns, renderers }) => } + +); \ No newline at end of file diff --git a/packages/patternfly-4/react-table/src/components/Table/base/index.d.ts b/packages/patternfly-4/react-table/src/components/Table/base/index.d.ts deleted file mode 100644 index 31f9e2760e6..00000000000 --- a/packages/patternfly-4/react-table/src/components/Table/base/index.d.ts +++ /dev/null @@ -1,9 +0,0 @@ -export { default as Provider } from './provider'; -export { default as Header } from './header'; -export { default as Body } from './body'; -export { default as BodyRow } from './body-row'; -export { default as evaluateFormatters } from './evaluate-formatters'; -export { default as evaluateTransforms } from './evaluate-transforms'; -export { default as mergeProps } from './merge-props'; -export { default as columnsAreEqual } from './columns-are-equal'; -export { default as resolveRowKey } from './resolve-row-key'; diff --git a/packages/patternfly-4/react-table/src/components/Table/base/index.js b/packages/patternfly-4/react-table/src/components/Table/base/index.js deleted file mode 100644 index 31f9e2760e6..00000000000 --- a/packages/patternfly-4/react-table/src/components/Table/base/index.js +++ /dev/null @@ -1,9 +0,0 @@ -export { default as Provider } from './provider'; -export { default as Header } from './header'; -export { default as Body } from './body'; -export { default as BodyRow } from './body-row'; -export { default as evaluateFormatters } from './evaluate-formatters'; -export { default as evaluateTransforms } from './evaluate-transforms'; -export { default as mergeProps } from './merge-props'; -export { default as columnsAreEqual } from './columns-are-equal'; -export { default as resolveRowKey } from './resolve-row-key'; diff --git a/packages/patternfly-4/react-table/src/components/Table/base/index.ts b/packages/patternfly-4/react-table/src/components/Table/base/index.ts new file mode 100644 index 00000000000..17b59134316 --- /dev/null +++ b/packages/patternfly-4/react-table/src/components/Table/base/index.ts @@ -0,0 +1,10 @@ +export * from './provider'; +export * from './header'; +export * from './body'; +export * from './body-row'; +export * from './evaluate-formatters'; +export * from './evaluate-transforms'; +export * from './merge-props'; +export * from './columns-are-equal'; +export * from './resolve-row-key'; +export * from './types'; diff --git a/packages/patternfly-4/react-table/src/components/Table/base/merge-props.js b/packages/patternfly-4/react-table/src/components/Table/base/merge-props.ts similarity index 84% rename from packages/patternfly-4/react-table/src/components/Table/base/merge-props.js rename to packages/patternfly-4/react-table/src/components/Table/base/merge-props.ts index e7a58581138..01430f9e907 100644 --- a/packages/patternfly-4/react-table/src/components/Table/base/merge-props.js +++ b/packages/patternfly-4/react-table/src/components/Table/base/merge-props.ts @@ -7,7 +7,7 @@ import { mergeWith } from 'lodash-es'; import classNames from 'classnames'; -function mergePropPair(...props) { +export function mergeProps(...props: any) { const firstProps = props[0]; const restProps = props.slice(1); @@ -16,7 +16,7 @@ function mergePropPair(...props) { } // Avoid mutating the first prop collection - return mergeWith(mergeWith({}, firstProps), ...restProps, (a, b, key) => { + return mergeWith(mergeWith({}, firstProps), ...restProps, (a: any, b: any, key: any) => { if (key === 'children') { // Children have to be merged in reverse order for Reactabular // logic to work. @@ -31,6 +31,4 @@ function mergePropPair(...props) { return undefined; }); -} - -export default mergePropPair; +}; diff --git a/packages/patternfly-4/react-table/src/components/Table/base/provider.js b/packages/patternfly-4/react-table/src/components/Table/base/provider.js deleted file mode 100644 index 499bba82518..00000000000 --- a/packages/patternfly-4/react-table/src/components/Table/base/provider.js +++ /dev/null @@ -1,56 +0,0 @@ -/** - * provider.js - * - * Forked from reactabular-table version 8.14.0 - * https://github.com/reactabular/reactabular/tree/v8.14.0/packages/reactabular-table/src - * */ -import React from 'react'; -import PropTypes from 'prop-types'; -import { tableTypes, tableDefaults, tableContextTypes } from './types'; - -const componentDefaults = tableDefaults.renderers; - -export default class Provider extends React.Component { - getChildContext() { - const { columns, components, renderers } = this.props; - let finalRenderers = renderers; - - // XXXXX: Drop in the next major version - if (components) { - // eslint-disable-next-line no-console - console.warn( - '`components` have been deprecated in favor of `renderers` and will be removed in the next major version, please rename!' - ); - - finalRenderers = components; - } - - return { - columns, - renderers: { - table: finalRenderers.table || componentDefaults.table, - header: { ...componentDefaults.header, ...finalRenderers.header }, - body: { ...componentDefaults.body, ...finalRenderers.body } - } - }; - } - render() { - const { - columns, // eslint-disable-line no-unused-vars - renderers, - components, // XXXXX: Drop in the next major version - children, - ...props - } = this.props; - - return React.createElement(renderers.table || tableDefaults.renderers.table, props, children); - } -} -Provider.propTypes = { - ...tableTypes, - children: PropTypes.any -}; -Provider.defaultProps = { - ...tableDefaults -}; -Provider.childContextTypes = tableContextTypes; diff --git a/packages/patternfly-4/react-table/src/components/Table/base/provider.tsx b/packages/patternfly-4/react-table/src/components/Table/base/provider.tsx new file mode 100644 index 00000000000..8a1f9dfa869 --- /dev/null +++ b/packages/patternfly-4/react-table/src/components/Table/base/provider.tsx @@ -0,0 +1,56 @@ +/** + * provider.tsx + * + * Forked from reactabular-table version 8.14.0 + * https://github.com/reactabular/reactabular/tree/v8.14.0/packages/reactabular-table/src + * */ +import * as React from 'react'; +import { RenderersTypes, TableDefaults } from './types'; + +export interface ProviderProps extends RenderersTypes { + children?: React.ReactNode; + role?: string; + className?: string; +} + +export const ProviderContext = React.createContext({ + columns: null as RenderersTypes["columns"], + renderers: null as RenderersTypes["renderers"] +}); + +export class Provider extends React.Component { + public static defaultProps = { + renderers: TableDefaults.renderers + } + render() { + const { + columns, + renderers, + components, + children, + ...props + } = this.props; + + let finalRenderers = renderers; + + if (components) { + // tslint-disable-next-line no-console + console.warn( + '`components` have been deprecated in favor of `renderers` and will be removed in the next major version, please rename!' + ); + finalRenderers = components; + } + + const provider = React.createElement(renderers.table || TableDefaults.renderers.table, props, children); + return + {provider} + + } +}; \ No newline at end of file diff --git a/packages/patternfly-4/react-table/src/components/Table/base/resolve-row-key.js b/packages/patternfly-4/react-table/src/components/Table/base/resolve-row-key.ts similarity index 56% rename from packages/patternfly-4/react-table/src/components/Table/base/resolve-row-key.js rename to packages/patternfly-4/react-table/src/components/Table/base/resolve-row-key.ts index ee8f180f168..5bd0667af31 100644 --- a/packages/patternfly-4/react-table/src/components/Table/base/resolve-row-key.js +++ b/packages/patternfly-4/react-table/src/components/Table/base/resolve-row-key.ts @@ -1,27 +1,27 @@ /** - * resolve-row-key.js + * resolve-row-key.ts * * Forked from reactabular-table version 8.14.0 * https://github.com/reactabular/reactabular/tree/v8.14.0/packages/reactabular-table/src * */ + import { isArray } from 'lodash-es'; +import { RowType, RowKeyType } from './types'; -function resolveRowKey({ rowData, rowIndex, rowKey }) { +export function resolveRowKey({ rowData, rowIndex, rowKey }: { rowData: RowType, rowIndex: number, rowKey: RowKeyType}) { if (typeof rowKey === 'function') { return `${rowKey({ rowData, rowIndex })}-row`; } else if (process.env.NODE_ENV !== 'production') { // Arrays cannot have rowKeys by definition so we have to go by index there. - if (!isArray(rowData) && rowData[rowKey] === undefined) { + if (!isArray(rowData) && (rowData as any)[rowKey] === undefined) { // eslint-disable-next-line no-console console.warn('Table.Body - Missing valid rowKey!', rowData, rowKey); } } - if (rowData[rowKey] === 0) { - return `${rowData[rowKey]}-row`; + if ((rowData as any)[rowKey] === 0) { + return `${(rowData as any)[rowKey] as string}-row`; } - return `${rowData[rowKey] || rowIndex}-row`; + return `${(rowData as any)[rowKey] as string || rowIndex}-row`; } - -export default resolveRowKey; diff --git a/packages/patternfly-4/react-table/src/components/Table/base/types.js b/packages/patternfly-4/react-table/src/components/Table/base/types.js deleted file mode 100644 index 20293559f6c..00000000000 --- a/packages/patternfly-4/react-table/src/components/Table/base/types.js +++ /dev/null @@ -1,107 +0,0 @@ -/** - * types.js - * - * Forked from reactabular-table version 8.14.0 - * https://github.com/reactabular/reactabular/tree/v8.14.0/packages/reactabular-table/src - * */ -import PropTypes from 'prop-types'; - -const arrayOfObjectColumns = PropTypes.arrayOf( - PropTypes.shape({ - header: PropTypes.shape({ - label: PropTypes.string, - transforms: PropTypes.arrayOf(PropTypes.func), - formatters: PropTypes.arrayOf(PropTypes.func), - props: PropTypes.object - }), - cell: PropTypes.shape({ - property: PropTypes.oneOfType([PropTypes.number, PropTypes.string]), - transforms: PropTypes.arrayOf(PropTypes.func), - formatters: PropTypes.arrayOf(PropTypes.func), - props: PropTypes.object - }) - }) -); -const arrayOfArrayColumns = PropTypes.arrayOf(PropTypes.array); -const rowsType = PropTypes.oneOfType([arrayOfObjectColumns, arrayOfArrayColumns]); -const rowKeyType = PropTypes.oneOfType([PropTypes.func, PropTypes.string]); -const rowDataType = PropTypes.oneOfType([PropTypes.array, PropTypes.object]); -const tableTypes = { - columns: PropTypes.array.isRequired, - renderers: PropTypes.object, - components: PropTypes.object // XXXXX: Deprecated in favor of renderers, remove in the next major! -}; -const tableContextTypes = { - columns: PropTypes.array.isRequired, - renderers: PropTypes.object -}; -const tableBodyDefaults = { - onRow: () => {} -}; -const tableBodyTypes = { - onRow: PropTypes.func, - rows: rowsType.isRequired, - rowKey: rowKeyType -}; -const tableBodyContextTypes = { - columns: PropTypes.array.isRequired, - renderers: PropTypes.object -}; -const tableBodyRowDefaults = { - onRow: () => ({}) -}; -const tableBodyRowTypes = { - columns: PropTypes.array.isRequired, - renderers: PropTypes.object, - onRow: PropTypes.func, - rowIndex: PropTypes.number.isRequired, - rowData: rowDataType.isRequired, - rowKey: PropTypes.string.isRequired -}; -const tableHeaderTypes = { - headerRows: PropTypes.arrayOf(arrayOfObjectColumns), - children: PropTypes.any -}; -const tableHeaderContextTypes = { - columns: PropTypes.array.isRequired, - renderers: PropTypes.object -}; -const tableHeaderRowDefaults = { - onRow: () => ({}) -}; -const tableHeaderRowTypes = { - renderers: PropTypes.object, - onRow: PropTypes.func, - rowIndex: PropTypes.number.isRequired, - rowData: rowDataType.isRequired -}; -const tableDefaults = { - renderers: { - table: 'table', - header: { - wrapper: 'thead', - row: 'tr', - cell: 'th' - }, - body: { - wrapper: 'tbody', - row: 'tr', - cell: 'td' - } - } -}; - -export { - tableTypes, - tableContextTypes, - tableBodyTypes, - tableBodyDefaults, - tableBodyContextTypes, - tableBodyRowTypes, - tableBodyRowDefaults, - tableHeaderTypes, - tableHeaderContextTypes, - tableHeaderRowTypes, - tableHeaderRowDefaults, - tableDefaults -}; diff --git a/packages/patternfly-4/react-table/src/components/Table/base/types.tsx b/packages/patternfly-4/react-table/src/components/Table/base/types.tsx new file mode 100644 index 00000000000..eac66544133 --- /dev/null +++ b/packages/patternfly-4/react-table/src/components/Table/base/types.tsx @@ -0,0 +1,96 @@ +/** + * types.tsx + * + * Forked from reactabular-table version 8.14.0 + * https://github.com/reactabular/reactabular/tree/v8.14.0/packages/reactabular-table/src + * */ + +import * as React from 'react'; + +// Cell Type +export type CellType = { + property?: number | string; + transforms?: transformsType; + formatters?: formattersType; + props?: Object; +}; + +// Columns Types +export type ColumnsType = Array | Array; +export type ColumnType = { property? : string, cell?: CellType, props?: object, header?: HeaderType}; +export type HeaderType = { + label?: string; + transforms?: transformsType; + formatters?: formattersType; + props?: Object; + property?: string; +}; + +// Rows Types +export type RowsType = RowType[] | Array<[]>; +export type RowKeyType = Function | string; +export interface RowType { + header?: HeaderType; + cell?: CellType; + [key:string]: object; +} + +//Table Defaults +export const TableDefaults = { + renderers: { + table: 'table', + header: { + wrapper: 'thead', + row: 'tr', + cell: 'th' + }, + body: { + wrapper: 'tbody', + row: 'tr', + cell: 'td' + } + } +}; + +// Formatters Types +export type formatterValueType = object | string | React.ElementType; +export type extraParamsType = {rowData?: RowType, column?: ColumnType, columnIndex?: number, property?: string, rowIndex?: number, rowKey?: RowKeyType}; +export type formatterType = (value: string | object, extra: extraParamsType) => formatterValueType; +export type formattersType = Array; + +// Transforms Types +export type transformType = (value: string | object, extra: extraParamsType) => object; +export type transformsType = Array; + +// Renderers Types +export type createElementType = string | React.ComponentClass | React.FunctionComponent; +export type rendererType = string | Function | React.ComponentClass | React.FunctionComponent | React.Component; +export interface RenderersTypes { + columns: ColumnsType, + renderers?: { + table?: string, + header?: { + wrapper?: rendererType, + row?: rendererType, + cell?: rendererType, + }, + body?: { + wrapper?: rendererType, + row?: rendererType, + cell?: rendererType + } + }, + components?: { + table?: string, + header?: { + wrapper?: rendererType, + row?: rendererType, + cell?: rendererType, + }, + body?: { + wrapper?: rendererType, + row?: rendererType, + cell?: rendererType + } + } +} \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index 912f298dbe5..d392a367b24 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1,6 +1,7 @@ # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. # yarn lockfile v1 + "@babel/cli@^7.0.0": version "7.4.4" resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.4.4.tgz#5454bb7112f29026a4069d8e6f0e1794e651966c" @@ -2064,6 +2065,11 @@ dependencies: "@types/node" "*" +"@types/classnames@^2.2.9": + version "2.2.9" + resolved "https://registry.yarnpkg.com/@types/classnames/-/classnames-2.2.9.tgz#d868b6febb02666330410fe7f58f3c4b8258be7b" + integrity sha512-MNl+rT5UmZeilaPxAVs6YaPC2m6aA8rofviZbhbxpPpl61uKodfdQVsBtgJGTqGizEf02oW3tsVe7FYB8kK14A== + "@types/configstore@^2.1.1": version "2.1.1" resolved "https://registry.yarnpkg.com/@types/configstore/-/configstore-2.1.1.tgz#cd1e8553633ad3185c3f2f239ecff5d2643e92b6" @@ -2301,6 +2307,18 @@ dependencies: "@types/jest-diff" "*" +"@types/lodash-es@^4.17.3": + version "4.17.3" + resolved "https://registry.yarnpkg.com/@types/lodash-es/-/lodash-es-4.17.3.tgz#87eb0b3673b076b8ee655f1890260a136af09a2d" + integrity sha512-iHI0i7ZAL1qepz1Y7f3EKg/zUMDwDfTzitx+AlHhJJvXwenP682ZyGbgPSc5Ej3eEAKVbNWKFuwOadCj5vBbYQ== + dependencies: + "@types/lodash" "*" + +"@types/lodash@*": + version "4.14.136" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.136.tgz#413e85089046b865d960c9ff1d400e04c31ab60f" + integrity sha512-0GJhzBdvsW2RUccNHOBkabI8HZVdOXmXbXhuKlDEd5Vv12P7oAVGfomGp3Ne21o5D/qu1WmthlNKFaoZJJeErA== + "@types/lodash@^4.14.132": version "4.14.132" resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.132.tgz#8ce45ca8745ff2e004fac0de0ab46f61e390ffa0" @@ -8162,25 +8180,6 @@ eslint-plugin-node@^6.0.1: resolve "^1.3.3" semver "^5.4.1" -"eslint-plugin-patternfly-react@file:packages/eslint-plugin-patternfly-react": - version "0.2.3" - dependencies: - babel-eslint "^9.0.0" - eslint-config-airbnb "^16.1.0" - eslint-config-prettier "^2.9.0" - eslint-config-standard "^11.0.0" - eslint-config-standard-jsx "^5.0.0" - eslint-config-standard-react "^6.0.0" - eslint-plugin-import "^2.13.0" - eslint-plugin-jest "^21.15.0" - eslint-plugin-jsx-a11y "^6.0.3" - eslint-plugin-node "^6.0.1" - eslint-plugin-prettier "^2.6.0" - eslint-plugin-promise "^3.7.0" - eslint-plugin-react "^7.7.0" - eslint-plugin-rulesdir "^0.1.0" - eslint-plugin-standard "^3.0.1" - eslint-plugin-prettier@^2.6.0: version "2.7.0" resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.7.0.tgz#b4312dcf2c1d965379d7f9d5b5f8aaadc6a45904" From 4ab91ae8adbd698cb6a526ff5bcafd420c292d40 Mon Sep 17 00:00:00 2001 From: jenny-s51 Date: Fri, 19 Jul 2019 11:02:19 -0400 Subject: [PATCH 3/5] fix(integration tests): table test converted to typescript --- .../Table/{Table.test.js => Table.test.tsx} | 22 +++++++++---------- .../src/components/Table/utils/index.d.ts | 2 +- .../{data-sets.js => data-sets.tsx} | 8 +++---- 3 files changed, 16 insertions(+), 16 deletions(-) rename packages/patternfly-4/react-table/src/components/Table/{Table.test.js => Table.test.tsx} (93%) rename packages/patternfly-4/react-table/src/test-helpers/{data-sets.js => data-sets.tsx} (90%) diff --git a/packages/patternfly-4/react-table/src/components/Table/Table.test.js b/packages/patternfly-4/react-table/src/components/Table/Table.test.tsx similarity index 93% rename from packages/patternfly-4/react-table/src/components/Table/Table.test.js rename to packages/patternfly-4/react-table/src/components/Table/Table.test.tsx index ee74f971933..e8ba3004c4c 100644 --- a/packages/patternfly-4/react-table/src/components/Table/Table.test.js +++ b/packages/patternfly-4/react-table/src/components/Table/Table.test.tsx @@ -1,4 +1,4 @@ -import React from 'react'; +import * as React from 'react'; import { mount } from 'enzyme'; import { Table, @@ -9,9 +9,9 @@ import { cellWidth, headerCol, sortable, - expandable, - compoundExpand + expandable } from './index'; +const compoundExpand = require('./utils/decorators/compoundExpand'); import { rows, columns, actions } from '../../test-helpers/data-sets'; describe('Simple table', () => { @@ -46,7 +46,7 @@ describe('Simple table', () => { }); test('Sortable table', () => { - const onSortCall = () => undefined; + const onSortCall = () => undefined as any; columns[0] = { ...columns[0], transforms: [sortable] }; const view = mount(
@@ -133,7 +133,7 @@ test('Collapsible table', () => { rows[3] = { ...rows[3], isOpen: false }; rows[4] = { ...rows[4], parent: 3 }; columns[0] = { ...columns[0], cellFormatters: [expandable] }; - const onCollapse = () => undefined; + const onCollapse = () => undefined as any; const view = mount(
@@ -144,17 +144,17 @@ test('Collapsible table', () => { }); test('Compound Expandable table', () => { - const compoundColumns = [ + const compoundColumns: any = [ { title: 'col1', cell: { transforms: [compoundExpand] } }, { title: 'col2', cell: { transforms: [compoundExpand] } } ]; - const compoundRows = [ + const compoundRows: any = [ { isOpen: true, cells: [{ title: '1', props: { isOpen: true } }, { title: '2', props: { isOpen: false } }] }, { parent: 0, compoundParent: 0, cells: [{ title: 'expanded', props: { colSpan: 2 } }] }, { isOpen: false, cells: [{ title: '3', props: { isOpen: false } }, { title: '4', props: { isOpen: false } }] }, { parent: 2, compoundParent: 0, cells: [{ title: 'expanded', props: { colSpan: 2 } }] } ]; - const onExpand = () => undefined; + const onExpand = () => undefined as any; const view = mount(
@@ -168,7 +168,7 @@ test('Collapsible nested table', () => { rows[0] = { ...rows[0], isOpen: false }; rows[1] = { ...rows[1], parent: 0, isOpen: true }; rows[2] = { ...rows[2], parent: 1 }; - const onCollapse = () => undefined; + const onCollapse = () => undefined as any; const view = mount(
@@ -179,7 +179,7 @@ test('Collapsible nested table', () => { }); test('Selectable table', () => { - const onSelect = () => undefined; + const onSelect = () => undefined as any; const view = mount(
@@ -215,7 +215,7 @@ test('Selectable table with selected expandable row', () => { parent: 0 } ], - onSelect: f => f + onSelect: (f: any) => f }; const view = mount( diff --git a/packages/patternfly-4/react-table/src/components/Table/utils/index.d.ts b/packages/patternfly-4/react-table/src/components/Table/utils/index.d.ts index a1ac1c8cb42..1613204199e 100644 --- a/packages/patternfly-4/react-table/src/components/Table/utils/index.d.ts +++ b/packages/patternfly-4/react-table/src/components/Table/utils/index.d.ts @@ -8,6 +8,6 @@ export interface ISortable { export const sortable: (label: string, extra: IExtra) => ISortable; export const headerCol: () => { component: string }; -export const cellWidth: (width: string) => () => { className: string }; +export const cellWidth: (width: string | number) => () => { className: string }; export const expandable: (value: ReactNode, extra: IExtra) => ReactNode; export const isRowExpanded: (row: IRow, rows: Array) => boolean | undefined; diff --git a/packages/patternfly-4/react-table/src/test-helpers/data-sets.js b/packages/patternfly-4/react-table/src/test-helpers/data-sets.tsx similarity index 90% rename from packages/patternfly-4/react-table/src/test-helpers/data-sets.js rename to packages/patternfly-4/react-table/src/test-helpers/data-sets.tsx index a90ac285a3a..521e625f592 100644 --- a/packages/patternfly-4/react-table/src/test-helpers/data-sets.js +++ b/packages/patternfly-4/react-table/src/test-helpers/data-sets.tsx @@ -1,7 +1,7 @@ /* eslint-disable no-console */ -import React from 'react'; +import * as React from 'react'; -export const columns = [ +export const columns: any = [ { title: 'Header cell' }, 'Branches', { title: 'Pull requests' }, @@ -11,7 +11,7 @@ export const columns = [ } ]; -export const rows = [ +export const rows: any = [ { cells: ['one', 'two', 'three', 'four', 'five'] }, @@ -41,7 +41,7 @@ export const rows = [ } ]; -export const actions = [ +export const actions: any = [ { title: 'Some action', onClick: (event, rowId) => console.log('clicked on Some action, on row: ', rowId) From e85c812d82f94bf6981a5c340b81d4de88c658d2 Mon Sep 17 00:00:00 2001 From: jenny-s51 Date: Fri, 19 Jul 2019 15:01:13 -0400 Subject: [PATCH 4/5] fix(jest tests): table.test typescript conversion; tests are now passing --- .../src/components/Table/RowWrapper.js | 4 +- .../src/components/Table/RowWrapper.test.js | 2 +- .../src/components/Table/Table.test.tsx | 4 +- .../__snapshots__/RowWrapper.test.js.snap | 63 - .../Table/__snapshots__/Table.test.js.snap | 123850 ------------ .../Table/__snapshots__/Table.test.tsx.snap | 148148 +++++++++++++++ .../src/components/Table/index.d.ts | 1 + .../src/test-helpers/data-sets.tsx | 9 +- 8 files changed, 148159 insertions(+), 123922 deletions(-) delete mode 100644 packages/patternfly-4/react-table/src/components/Table/__snapshots__/RowWrapper.test.js.snap delete mode 100644 packages/patternfly-4/react-table/src/components/Table/__snapshots__/Table.test.js.snap create mode 100644 packages/patternfly-4/react-table/src/components/Table/__snapshots__/Table.test.tsx.snap diff --git a/packages/patternfly-4/react-table/src/components/Table/RowWrapper.js b/packages/patternfly-4/react-table/src/components/Table/RowWrapper.js index 9ae666b19af..ce6277fe29c 100644 --- a/packages/patternfly-4/react-table/src/components/Table/RowWrapper.js +++ b/packages/patternfly-4/react-table/src/components/Table/RowWrapper.js @@ -4,7 +4,7 @@ import { debounce } from '@patternfly/react-core'; import styles from '@patternfly/react-styles/css/components/Table/table'; import { css } from '@patternfly/react-styles'; -class RowWrapper extends React.Component { +export class RowWrapper extends React.Component { constructor(props) { super(props); @@ -99,5 +99,3 @@ RowWrapper.defaultProps = { }, rowProps: null }; - -export default RowWrapper; diff --git a/packages/patternfly-4/react-table/src/components/Table/RowWrapper.test.js b/packages/patternfly-4/react-table/src/components/Table/RowWrapper.test.js index 08b3f3fa5ee..ee434f9a55f 100644 --- a/packages/patternfly-4/react-table/src/components/Table/RowWrapper.test.js +++ b/packages/patternfly-4/react-table/src/components/Table/RowWrapper.test.js @@ -1,4 +1,4 @@ -import React from 'react'; +import * as React from 'react'; import { mount } from 'enzyme'; import RowWrapper from './RowWrapper'; diff --git a/packages/patternfly-4/react-table/src/components/Table/Table.test.tsx b/packages/patternfly-4/react-table/src/components/Table/Table.test.tsx index e8ba3004c4c..9a564951e39 100644 --- a/packages/patternfly-4/react-table/src/components/Table/Table.test.tsx +++ b/packages/patternfly-4/react-table/src/components/Table/Table.test.tsx @@ -9,9 +9,9 @@ import { cellWidth, headerCol, sortable, - expandable + expandable, + compoundExpand } from './index'; -const compoundExpand = require('./utils/decorators/compoundExpand'); import { rows, columns, actions } from '../../test-helpers/data-sets'; describe('Simple table', () => { diff --git a/packages/patternfly-4/react-table/src/components/Table/__snapshots__/RowWrapper.test.js.snap b/packages/patternfly-4/react-table/src/components/Table/__snapshots__/RowWrapper.test.js.snap deleted file mode 100644 index 725c927e8ff..00000000000 --- a/packages/patternfly-4/react-table/src/components/Table/__snapshots__/RowWrapper.test.js.snap +++ /dev/null @@ -1,63 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`RowWrapper renders correctly 1`] = ` -
- - , - ], - ], - "results": Array [ - Object { - "isThrow": false, - "value": undefined, - }, - ], - } - } - > - - - -
-`; - -exports[`RowWrapper renders expanded correctly 1`] = ` - - - - - - -
-`; diff --git a/packages/patternfly-4/react-table/src/components/Table/__snapshots__/Table.test.js.snap b/packages/patternfly-4/react-table/src/components/Table/__snapshots__/Table.test.js.snap deleted file mode 100644 index 0ab5de0025d..00000000000 --- a/packages/patternfly-4/react-table/src/components/Table/__snapshots__/Table.test.js.snap +++ /dev/null @@ -1,123850 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Actions table 1`] = ` - - -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - Branches - - Pull requests - - Workspaces - - Last Commit - - -
- - -`; - -exports[`Cell header table 1`] = ` - - -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - Branches - - Pull requests - - Workspaces - - Last Commit -
- - -`; - -exports[`Collapsible nested table 1`] = ` - - -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - Branches - - Pull requests - - Workspaces - - Last Commit -
- - -`; - -exports[`Collapsible table 1`] = ` - - -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - Branches - - Pull requests - - Workspaces - - Last Commit -
- - -`; - -exports[`Compound Expandable table 1`] = ` - - -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- col1 - - col2 -
- - -`; - -exports[`Header width table 1`] = ` - - -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Header cell - - Branches - - Pull requests - - Workspaces - - Last Commit -
- - -`; - -exports[`Selectable table 1`] = ` - - -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - Branches - - Pull requests - - Workspaces - - Last Commit -
- - -`; - -exports[`Simple Actions table 1`] = ` - - Another action - , - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ] - } - aria-label="Aria labeled" - borders={true} - cells={ - Array [ - Object { - "title": "Header cell", - "transforms": Array [ - [Function], - ], - }, - "Branches", - Object { - "title": "Pull requests", - }, - "Workspaces", - Object { - "title": "Last Commit", - }, - ] - } - className="" - contentId="expanded-content" - dropdownDirection="down" - dropdownPosition="right" - expandId="expandable-toggle" - gridBreakPoint="grid-md" - role="grid" - rowLabeledBy="simple-node" - rows={ - Array [ - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - "disableActions": true, - }, - ] - } - variant={null} -> - - Another action - , - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Header cell", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "header-cell", - "props": Object { - "data-key": 0, - "data-label": "Header cell", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Branches", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "branches", - "props": Object { - "data-key": 1, - "data-label": "Branches", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Pull requests", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "pull-requests", - "props": Object { - "data-key": 2, - "data-label": "Pull requests", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Workspaces", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "workspaces", - "props": Object { - "data-key": 3, - "data-label": "Workspaces", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Last Commit", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "last-commit", - "props": Object { - "data-key": 4, - "data-label": "Last Commit", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "column-5", - "props": Object { - "data-key": 5, - "data-label": "", - }, - }, - ] - } - renderers={ - Object { - "body": Object { - "cell": [Function], - "row": [Function], - "wrapper": [Function], - }, - "header": Object { - "cell": [Function], - }, - } - } - role="grid" - > -
- - -
-
- - Another action - , - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Header cell", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "header-cell", - "props": Object { - "data-key": 0, - "data-label": "Header cell", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Branches", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "branches", - "props": Object { - "data-key": 1, - "data-label": "Branches", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Pull requests", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "pull-requests", - "props": Object { - "data-key": 2, - "data-label": "Pull requests", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Workspaces", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "workspaces", - "props": Object { - "data-key": 3, - "data-label": "Workspaces", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Last Commit", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "last-commit", - "props": Object { - "data-key": 4, - "data-label": "Last Commit", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "column-5", - "props": Object { - "data-key": 5, - "data-label": "", - }, - }, - ] - } - rowIndex={0} - > -
- - - - - - - - - - - - - - - - - - - - - - - - - Another action - , - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Header cell", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "header-cell", - "props": Object { - "data-key": 0, - "data-label": "Header cell", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Branches", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "branches", - "props": Object { - "data-key": 1, - "data-label": "Branches", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Pull requests", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "pull-requests", - "props": Object { - "data-key": 2, - "data-label": "Pull requests", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Workspaces", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "workspaces", - "props": Object { - "data-key": 3, - "data-label": "Workspaces", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Last Commit", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "last-commit", - "props": Object { - "data-key": 4, - "data-label": "Last Commit", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "column-5", - "props": Object { - "data-key": 5, - "data-label": "", - }, - }, - ] - } - onRow={[Function]} - onRowClick={[Function]} - rowKey="id" - rows={ - Array [ - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - "disableActions": true, - }, - ] - } - > - - -
- - Another action - , - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Header cell", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "header-cell", - "props": Object { - "data-key": 0, - "data-label": "Header cell", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Branches", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "branches", - "props": Object { - "data-key": 1, - "data-label": "Branches", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Pull requests", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "pull-requests", - "props": Object { - "data-key": 2, - "data-label": "Pull requests", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Workspaces", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "workspaces", - "props": Object { - "data-key": 3, - "data-label": "Workspaces", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Last Commit", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "last-commit", - "props": Object { - "data-key": 4, - "data-label": "Last Commit", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "column-5", - "props": Object { - "data-key": 5, - "data-label": "", - }, - }, - ] - } - key="0-row" - onRow={[Function]} - renderers={ - Object { - "cell": [Function], - "row": [Function], - "wrapper": [Function], - } - } - rowData={ - Object { - "branches": Object { - "props": Object { - "isVisible": true, - }, - "title": "two", - }, - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - "header-cell": Object { - "props": Object { - "isVisible": true, - }, - "title": "one", - }, - "id": 0, - "isExpanded": undefined, - "isFirst": true, - "isFirstVisible": true, - "isLast": false, - "isLastVisible": false, - "last-commit": Object { - "props": Object { - "isVisible": true, - }, - "title": "five", - }, - "pull-requests": Object { - "props": Object { - "isVisible": true, - }, - "title": "three", - }, - "workspaces": Object { - "props": Object { - "isVisible": true, - }, - "title": "four", - }, - } - } - rowIndex={0} - rowKey="0-row" - > - -
- - - - - - - - - - - - - - - - - - - - - - - Another action - , - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Header cell", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "header-cell", - "props": Object { - "data-key": 0, - "data-label": "Header cell", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Branches", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "branches", - "props": Object { - "data-key": 1, - "data-label": "Branches", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Pull requests", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "pull-requests", - "props": Object { - "data-key": 2, - "data-label": "Pull requests", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Workspaces", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "workspaces", - "props": Object { - "data-key": 3, - "data-label": "Workspaces", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Last Commit", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "last-commit", - "props": Object { - "data-key": 4, - "data-label": "Last Commit", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "column-5", - "props": Object { - "data-key": 5, - "data-label": "", - }, - }, - ] - } - key="1-row" - onRow={[Function]} - renderers={ - Object { - "cell": [Function], - "row": [Function], - "wrapper": [Function], - } - } - rowData={ - Object { - "branches": Object { - "props": Object { - "isVisible": true, - }, - "title": "two", - }, - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - "header-cell": Object { - "props": Object { - "isVisible": true, - }, - "title": "one", - }, - "id": 1, - "isExpanded": undefined, - "isFirst": false, - "isFirstVisible": false, - "isLast": false, - "isLastVisible": false, - "last-commit": Object { - "props": Object { - "isVisible": true, - }, - "title": "five", - }, - "pull-requests": Object { - "props": Object { - "isVisible": true, - }, - "title": "three", - }, - "workspaces": Object { - "props": Object { - "isVisible": true, - }, - "title": "four", - }, - } - } - rowIndex={1} - rowKey="1-row" - > - -
- - - - - - - - - - - - - - - - - - - - - - - Another action - , - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Header cell", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "header-cell", - "props": Object { - "data-key": 0, - "data-label": "Header cell", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Branches", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "branches", - "props": Object { - "data-key": 1, - "data-label": "Branches", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Pull requests", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "pull-requests", - "props": Object { - "data-key": 2, - "data-label": "Pull requests", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Workspaces", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "workspaces", - "props": Object { - "data-key": 3, - "data-label": "Workspaces", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Last Commit", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "last-commit", - "props": Object { - "data-key": 4, - "data-label": "Last Commit", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "column-5", - "props": Object { - "data-key": 5, - "data-label": "", - }, - }, - ] - } - key="2-row" - onRow={[Function]} - renderers={ - Object { - "cell": [Function], - "row": [Function], - "wrapper": [Function], - } - } - rowData={ - Object { - "branches": Object { - "props": Object { - "isVisible": true, - }, - "title": "two", - }, - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - "header-cell": Object { - "props": Object { - "isVisible": true, - }, - "title": "one", - }, - "id": 2, - "isExpanded": undefined, - "isFirst": false, - "isFirstVisible": false, - "isLast": false, - "isLastVisible": false, - "last-commit": Object { - "props": Object { - "isVisible": true, - }, - "title": "five", - }, - "pull-requests": Object { - "props": Object { - "isVisible": true, - }, - "title": "three", - }, - "workspaces": Object { - "props": Object { - "isVisible": true, - }, - "title": "four", - }, - } - } - rowIndex={2} - rowKey="2-row" - > - -
- - - - - - - - - - - - - - - - - - - - - - - Another action - , - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Header cell", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "header-cell", - "props": Object { - "data-key": 0, - "data-label": "Header cell", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Branches", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "branches", - "props": Object { - "data-key": 1, - "data-label": "Branches", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Pull requests", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "pull-requests", - "props": Object { - "data-key": 2, - "data-label": "Pull requests", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Workspaces", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "workspaces", - "props": Object { - "data-key": 3, - "data-label": "Workspaces", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Last Commit", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "last-commit", - "props": Object { - "data-key": 4, - "data-label": "Last Commit", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "column-5", - "props": Object { - "data-key": 5, - "data-label": "", - }, - }, - ] - } - key="3-row" - onRow={[Function]} - renderers={ - Object { - "cell": [Function], - "row": [Function], - "wrapper": [Function], - } - } - rowData={ - Object { - "branches": Object { - "props": Object { - "isVisible": true, - }, - "title": "two", - }, - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - "header-cell": Object { - "props": Object { - "isVisible": true, - }, - "title": "one", - }, - "id": 3, - "isExpanded": undefined, - "isFirst": false, - "isFirstVisible": false, - "isLast": false, - "isLastVisible": false, - "last-commit": Object { - "props": Object { - "isVisible": true, - }, - "title": "five", - }, - "pull-requests": Object { - "props": Object { - "isVisible": true, - }, - "title": "three", - }, - "workspaces": Object { - "props": Object { - "isVisible": true, - }, - "title": "four", - }, - } - } - rowIndex={3} - rowKey="3-row" - > - -
- - - - - - - - - - - - - - - - - - - - - - - Another action - , - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Header cell", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "header-cell", - "props": Object { - "data-key": 0, - "data-label": "Header cell", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Branches", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "branches", - "props": Object { - "data-key": 1, - "data-label": "Branches", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Pull requests", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "pull-requests", - "props": Object { - "data-key": 2, - "data-label": "Pull requests", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Workspaces", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "workspaces", - "props": Object { - "data-key": 3, - "data-label": "Workspaces", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Last Commit", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "last-commit", - "props": Object { - "data-key": 4, - "data-label": "Last Commit", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "column-5", - "props": Object { - "data-key": 5, - "data-label": "", - }, - }, - ] - } - key="4-row" - onRow={[Function]} - renderers={ - Object { - "cell": [Function], - "row": [Function], - "wrapper": [Function], - } - } - rowData={ - Object { - "branches": Object { - "props": Object { - "isVisible": true, - }, - "title": "two", - }, - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - "header-cell": Object { - "props": Object { - "isVisible": true, - }, - "title": "one", - }, - "id": 4, - "isExpanded": undefined, - "isFirst": false, - "isFirstVisible": false, - "isLast": false, - "isLastVisible": false, - "last-commit": Object { - "props": Object { - "isVisible": true, - }, - "title": "five", - }, - "pull-requests": Object { - "props": Object { - "isVisible": true, - }, - "title": "three", - }, - "workspaces": Object { - "props": Object { - "isVisible": true, - }, - "title": "four", - }, - } - } - rowIndex={4} - rowKey="4-row" - > - -
- - - - - - - - - - - - - - - - - - - - - - - Another action - , - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Header cell", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "header-cell", - "props": Object { - "data-key": 0, - "data-label": "Header cell", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Branches", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "branches", - "props": Object { - "data-key": 1, - "data-label": "Branches", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Pull requests", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "pull-requests", - "props": Object { - "data-key": 2, - "data-label": "Pull requests", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Workspaces", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "workspaces", - "props": Object { - "data-key": 3, - "data-label": "Workspaces", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Last Commit", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "last-commit", - "props": Object { - "data-key": 4, - "data-label": "Last Commit", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "column-5", - "props": Object { - "data-key": 5, - "data-label": "", - }, - }, - ] - } - key="5-row" - onRow={[Function]} - renderers={ - Object { - "cell": [Function], - "row": [Function], - "wrapper": [Function], - } - } - rowData={ - Object { - "branches": Object { - "props": Object { - "isVisible": true, - }, - "title": "two", - }, - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - "header-cell": Object { - "props": Object { - "isVisible": true, - }, - "title": "one", - }, - "id": 5, - "isExpanded": undefined, - "isFirst": false, - "isFirstVisible": false, - "isLast": false, - "isLastVisible": false, - "last-commit": Object { - "props": Object { - "isVisible": true, - }, - "title": "five", - }, - "pull-requests": Object { - "props": Object { - "isVisible": true, - }, - "title": "three", - }, - "workspaces": Object { - "props": Object { - "isVisible": true, - }, - "title": "four", - }, - } - } - rowIndex={5} - rowKey="5-row" - > - -
- - - - - - - - - - - - - - - - - - - - - - - Another action - , - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Header cell", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "header-cell", - "props": Object { - "data-key": 0, - "data-label": "Header cell", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Branches", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "branches", - "props": Object { - "data-key": 1, - "data-label": "Branches", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Pull requests", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "pull-requests", - "props": Object { - "data-key": 2, - "data-label": "Pull requests", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Workspaces", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "workspaces", - "props": Object { - "data-key": 3, - "data-label": "Workspaces", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Last Commit", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "last-commit", - "props": Object { - "data-key": 4, - "data-label": "Last Commit", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "column-5", - "props": Object { - "data-key": 5, - "data-label": "", - }, - }, - ] - } - key="6-row" - onRow={[Function]} - renderers={ - Object { - "cell": [Function], - "row": [Function], - "wrapper": [Function], - } - } - rowData={ - Object { - "branches": Object { - "props": Object { - "isVisible": true, - }, - "title": "two", - }, - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - "header-cell": Object { - "props": Object { - "isVisible": true, - }, - "title": "one", - }, - "id": 6, - "isExpanded": undefined, - "isFirst": false, - "isFirstVisible": false, - "isLast": false, - "isLastVisible": false, - "last-commit": Object { - "props": Object { - "isVisible": true, - }, - "title": "five", - }, - "pull-requests": Object { - "props": Object { - "isVisible": true, - }, - "title": "three", - }, - "workspaces": Object { - "props": Object { - "isVisible": true, - }, - "title": "four", - }, - } - } - rowIndex={6} - rowKey="6-row" - > - -
- - - - - - - - - - - - - - - - - - - - - - - Another action - , - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Header cell", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "header-cell", - "props": Object { - "data-key": 0, - "data-label": "Header cell", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Branches", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "branches", - "props": Object { - "data-key": 1, - "data-label": "Branches", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Pull requests", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "pull-requests", - "props": Object { - "data-key": 2, - "data-label": "Pull requests", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Workspaces", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "workspaces", - "props": Object { - "data-key": 3, - "data-label": "Workspaces", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Last Commit", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "last-commit", - "props": Object { - "data-key": 4, - "data-label": "Last Commit", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "column-5", - "props": Object { - "data-key": 5, - "data-label": "", - }, - }, - ] - } - key="7-row" - onRow={[Function]} - renderers={ - Object { - "cell": [Function], - "row": [Function], - "wrapper": [Function], - } - } - rowData={ - Object { - "branches": Object { - "props": Object { - "isVisible": true, - }, - "title": "two", - }, - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - "header-cell": Object { - "props": Object { - "isVisible": true, - }, - "title": "one", - }, - "id": 7, - "isExpanded": undefined, - "isFirst": false, - "isFirstVisible": false, - "isLast": false, - "isLastVisible": false, - "last-commit": Object { - "props": Object { - "isVisible": true, - }, - "title": "five", - }, - "pull-requests": Object { - "props": Object { - "isVisible": true, - }, - "title": "three", - }, - "workspaces": Object { - "props": Object { - "isVisible": true, - }, - "title": "four", - }, - } - } - rowIndex={7} - rowKey="7-row" - > - -
- - - - - - - - - - - - - - - - - - - - - - - Another action - , - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Header cell", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "header-cell", - "props": Object { - "data-key": 0, - "data-label": "Header cell", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Branches", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "branches", - "props": Object { - "data-key": 1, - "data-label": "Branches", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Pull requests", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "pull-requests", - "props": Object { - "data-key": 2, - "data-label": "Pull requests", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Workspaces", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "workspaces", - "props": Object { - "data-key": 3, - "data-label": "Workspaces", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Last Commit", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "last-commit", - "props": Object { - "data-key": 4, - "data-label": "Last Commit", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "column-5", - "props": Object { - "data-key": 5, - "data-label": "", - }, - }, - ] - } - key="8-row" - onRow={[Function]} - renderers={ - Object { - "cell": [Function], - "row": [Function], - "wrapper": [Function], - } - } - rowData={ - Object { - "branches": Object { - "props": Object { - "isVisible": true, - }, - "title": "two", - }, - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - "header-cell": Object { - "props": Object { - "isVisible": true, - }, - "title": "one", - }, - "id": 8, - "isExpanded": undefined, - "isFirst": false, - "isFirstVisible": false, - "isLast": false, - "isLastVisible": false, - "last-commit": Object { - "props": Object { - "isVisible": true, - }, - "title": "five", - }, - "pull-requests": Object { - "props": Object { - "isVisible": true, - }, - "title": "three", - }, - "workspaces": Object { - "props": Object { - "isVisible": true, - }, - "title": "four", - }, - } - } - rowIndex={8} - rowKey="8-row" - > - -
- - - - - - - - - - - - - - - - - - - - - - - Another action - , - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Header cell", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "header-cell", - "props": Object { - "data-key": 0, - "data-label": "Header cell", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Branches", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "branches", - "props": Object { - "data-key": 1, - "data-label": "Branches", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Pull requests", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "pull-requests", - "props": Object { - "data-key": 2, - "data-label": "Pull requests", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Workspaces", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "workspaces", - "props": Object { - "data-key": 3, - "data-label": "Workspaces", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "Last Commit", - "transforms": Array [ - [Function], - [Function], - ], - }, - "property": "last-commit", - "props": Object { - "data-key": 4, - "data-label": "Last Commit", - }, - }, - Object { - "cell": Object { - "formatters": Array [ - [Function], - ], - "transforms": Array [ - [Function], - [Function], - ], - }, - "data": undefined, - "extraParams": Object { - "actionResolver": undefined, - "actions": Array [ - Object { - "onClick": [Function], - "title": "Some action", - }, - Object { - "onClick": [Function], - "title":
- Another action -
, - }, - Object { - "isSeparator": true, - }, - Object { - "onClick": [Function], - "title": "Third action", - }, - ], - "allRowsSelected": false, - "areActionsDisabled": undefined, - "contentId": "expanded-content", - "dropdownDirection": "down", - "dropdownPosition": "right", - "expandId": "expandable-toggle", - "firstUserColumnIndex": 0, - "onCollapse": undefined, - "onExpand": undefined, - "onSelect": undefined, - "onSort": undefined, - "rowLabeledBy": "simple-node", - "sortBy": undefined, - }, - "header": Object { - "formatters": Array [], - "label": "", - "transforms": Array [ - [Function], - [Function], - [Function], - ], - }, - "property": "column-5", - "props": Object { - "data-key": 5, - "data-label": "", - }, - }, - ] - } - key="9-row" - onRow={[Function]} - renderers={ - Object { - "cell": [Function], - "row": [Function], - "wrapper": [Function], - } - } - rowData={ - Object { - "branches": Object { - "props": Object { - "isVisible": true, - }, - "title": "two", - }, - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - "disableActions": true, - "header-cell": Object { - "props": Object { - "isVisible": true, - }, - "title": "one", - }, - "id": 9, - "isExpanded": undefined, - "isFirst": false, - "isFirstVisible": false, - "isLast": true, - "isLastVisible": true, - "last-commit": Object { - "props": Object { - "isVisible": true, - }, - "title": "five", - }, - "pull-requests": Object { - "props": Object { - "isVisible": true, - }, - "title": "three", - }, - "workspaces": Object { - "props": Object { - "isVisible": true, - }, - "title": "four", - }, - } - } - rowIndex={9} - rowKey="9-row" - > - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - Branches - - Pull requests - - Workspaces - - Last Commit - - -
- - -`; - -exports[`Simple table aria-label 1`] = ` - - -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Header cell - - Branches - - Pull requests - - Workspaces - - Last Commit -
- - -`; - -exports[`Simple table caption 1`] = ` - - -
- - - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Simple Table -
- Header cell - - Branches - - Pull requests - - Workspaces - - Last Commit -
- - -`; - -exports[`Simple table header 1`] = ` - - Header title - - } - role="grid" - rowLabeledBy="simple-node" - rows={ - Array [ - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - Object { - "cells": Array [ - "one", - "two", - "three", - "four", - "five", - ], - }, - ] - } - variant={null} -> -

- Header title -

- -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Header cell - - Branches - - Pull requests - - Workspaces - - Last Commit -
- - -`; - -exports[`Sortable table 1`] = ` - - -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - Branches - - Pull requests - - Workspaces - - Last Commit -
- - -`; - -exports[`Table variants Breakpoint - 1`] = ` - - -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - Branches - - Pull requests - - Workspaces - - Last Commit -
- - -`; - -exports[`Table variants Breakpoint - grid 1`] = ` - - -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - Branches - - Pull requests - - Workspaces - - Last Commit -
- - -`; - -exports[`Table variants Breakpoint - grid-2xl 1`] = ` - - -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - Branches - - Pull requests - - Workspaces - - Last Commit -
- - -`; - -exports[`Table variants Breakpoint - grid-lg 1`] = ` - - -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - Branches - - Pull requests - - Workspaces - - Last Commit -
- - -`; - -exports[`Table variants Breakpoint - grid-md 1`] = ` - - -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - Branches - - Pull requests - - Workspaces - - Last Commit -
- - -`; - -exports[`Table variants Breakpoint - grid-xl 1`] = ` - - -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - Branches - - Pull requests - - Workspaces - - Last Commit -
- - -`; - -exports[`Table variants Size - compact 1`] = ` - - -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - Branches - - Pull requests - - Workspaces - - Last Commit -
- - -`; diff --git a/packages/patternfly-4/react-table/src/components/Table/__snapshots__/Table.test.tsx.snap b/packages/patternfly-4/react-table/src/components/Table/__snapshots__/Table.test.tsx.snap new file mode 100644 index 00000000000..eaa42b3e8d2 --- /dev/null +++ b/packages/patternfly-4/react-table/src/components/Table/__snapshots__/Table.test.tsx.snap @@ -0,0 +1,148148 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Actions table 1`] = ` + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + Branches + + Pull requests + + Workspaces + + Last Commit + + +
+ + +`; + +exports[`Cell header table 1`] = ` + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + Branches + + Pull requests + + Workspaces + + Last Commit +
+ + +`; + +exports[`Collapsible nested table 1`] = ` + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + Branches + + Pull requests + + Workspaces + + Last Commit +
+ + +`; + +exports[`Collapsible table 1`] = ` + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + Branches + + Pull requests + + Workspaces + + Last Commit +
+ + +`; + +exports[`Compound Expandable table 1`] = ` + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ col1 + + col2 +
+ + +`; + +exports[`Header width table 1`] = ` + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Header cell + + Branches + + Pull requests + + Workspaces + + Last Commit +
+ + +`; + +exports[`Selectable table 1`] = ` + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + Branches + + Pull requests + + Workspaces + + Last Commit +
+ + +`; + +exports[`Simple Actions table 1`] = ` + + Another action + , + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ] + } + aria-label="Aria labeled" + borders={true} + cells={ + Array [ + Object { + "title": "Header cell", + "transforms": Array [ + [Function], + ], + }, + "Branches", + Object { + "title": "Pull requests", + }, + "Workspaces", + Object { + "title": "Last Commit", + }, + ] + } + className="" + contentId="expanded-content" + dropdownDirection="down" + dropdownPosition="right" + expandId="expandable-toggle" + gridBreakPoint="grid-md" + role="grid" + rowLabeledBy="simple-node" + rows={ + Array [ + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "disableActions": true, + }, + ] + } + variant={null} +> + + Another action + , + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Header cell", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "header-cell", + "props": Object { + "data-key": 0, + "data-label": "Header cell", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Branches", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "branches", + "props": Object { + "data-key": 1, + "data-label": "Branches", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Pull requests", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "pull-requests", + "props": Object { + "data-key": 2, + "data-label": "Pull requests", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Workspaces", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "workspaces", + "props": Object { + "data-key": 3, + "data-label": "Workspaces", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Last Commit", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "last-commit", + "props": Object { + "data-key": 4, + "data-label": "Last Commit", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "column-5", + "props": Object { + "data-key": 5, + "data-label": "", + }, + }, + ] + } + renderers={ + Object { + "body": Object { + "cell": [Function], + "row": [Function], + "wrapper": [Function], + }, + "header": Object { + "cell": [Function], + }, + } + } + role="grid" + > +
+ + + + + Another action + , + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Header cell", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "header-cell", + "props": Object { + "data-key": 0, + "data-label": "Header cell", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Branches", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "branches", + "props": Object { + "data-key": 1, + "data-label": "Branches", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Pull requests", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "pull-requests", + "props": Object { + "data-key": 2, + "data-label": "Pull requests", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Workspaces", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "workspaces", + "props": Object { + "data-key": 3, + "data-label": "Workspaces", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Last Commit", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "last-commit", + "props": Object { + "data-key": 4, + "data-label": "Last Commit", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "column-5", + "props": Object { + "data-key": 5, + "data-label": "", + }, + }, + ] + } + headerRows={null} + renderers={ + Object { + "body": Object { + "cell": [Function], + "row": [Function], + "wrapper": [Function], + }, + "header": Object { + "cell": [Function], + "row": "tr", + "wrapper": "thead", + }, + "table": "table", + } + } + > +
+ + Another action + , + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Header cell", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "header-cell", + "props": Object { + "data-key": 0, + "data-label": "Header cell", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Branches", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "branches", + "props": Object { + "data-key": 1, + "data-label": "Branches", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Pull requests", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "pull-requests", + "props": Object { + "data-key": 2, + "data-label": "Pull requests", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Workspaces", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "workspaces", + "props": Object { + "data-key": 3, + "data-label": "Workspaces", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Last Commit", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "last-commit", + "props": Object { + "data-key": 4, + "data-label": "Last Commit", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "column-5", + "props": Object { + "data-key": 5, + "data-label": "", + }, + }, + ] + } + rowIndex={0} + > +
+ + + + + + + + + + + + + + + + + + + + + + + + + + Another action + , + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Header cell", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "header-cell", + "props": Object { + "data-key": 0, + "data-label": "Header cell", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Branches", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "branches", + "props": Object { + "data-key": 1, + "data-label": "Branches", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Pull requests", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "pull-requests", + "props": Object { + "data-key": 2, + "data-label": "Pull requests", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Workspaces", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "workspaces", + "props": Object { + "data-key": 3, + "data-label": "Workspaces", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Last Commit", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "last-commit", + "props": Object { + "data-key": 4, + "data-label": "Last Commit", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "column-5", + "props": Object { + "data-key": 5, + "data-label": "", + }, + }, + ] + } + onRow={[Function]} + onRowClick={[Function]} + rowKey="id" + rows={ + Array [ + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "disableActions": true, + }, + ] + } + > + + + Another action + , + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Header cell", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "header-cell", + "props": Object { + "data-key": 0, + "data-label": "Header cell", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Branches", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "branches", + "props": Object { + "data-key": 1, + "data-label": "Branches", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Pull requests", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "pull-requests", + "props": Object { + "data-key": 2, + "data-label": "Pull requests", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Workspaces", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "workspaces", + "props": Object { + "data-key": 3, + "data-label": "Workspaces", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Last Commit", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "last-commit", + "props": Object { + "data-key": 4, + "data-label": "Last Commit", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "column-5", + "props": Object { + "data-key": 5, + "data-label": "", + }, + }, + ] + } + mappedRows={ + Array [ + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 0, + "isExpanded": undefined, + "isFirst": true, + "isFirstVisible": true, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + }, + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 1, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + }, + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 2, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + }, + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 3, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + }, + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 4, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + }, + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 5, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + }, + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 6, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + }, + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 7, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + }, + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 8, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + }, + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "disableActions": true, + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 9, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": true, + "isLastVisible": true, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + }, + ] + } + onRow={[Function]} + renderers={ + Object { + "body": Object { + "cell": [Function], + "row": [Function], + "wrapper": [Function], + }, + "header": Object { + "cell": [Function], + "row": "tr", + "wrapper": "thead", + }, + "table": "table", + } + } + rowKey="id" + rows={ + Array [ + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 0, + "isExpanded": undefined, + "isFirst": true, + "isFirstVisible": true, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + }, + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 1, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + }, + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 2, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + }, + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 3, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + }, + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 4, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + }, + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 5, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + }, + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 6, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + }, + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 7, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + }, + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 8, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + }, + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "disableActions": true, + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 9, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": true, + "isLastVisible": true, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + }, + ] + } + > + +
+ + Another action + , + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Header cell", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "header-cell", + "props": Object { + "data-key": 0, + "data-label": "Header cell", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Branches", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "branches", + "props": Object { + "data-key": 1, + "data-label": "Branches", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Pull requests", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "pull-requests", + "props": Object { + "data-key": 2, + "data-label": "Pull requests", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Workspaces", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "workspaces", + "props": Object { + "data-key": 3, + "data-label": "Workspaces", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Last Commit", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "last-commit", + "props": Object { + "data-key": 4, + "data-label": "Last Commit", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "column-5", + "props": Object { + "data-key": 5, + "data-label": "", + }, + }, + ] + } + key="0-row" + onRow={[Function]} + renderers={ + Object { + "cell": [Function], + "row": [Function], + "wrapper": [Function], + } + } + rowData={ + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 0, + "isExpanded": undefined, + "isFirst": true, + "isFirstVisible": true, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + } + } + rowIndex={0} + rowKey="0-row" + > + +
+ + + + + + + + + + + + + + + + + + + + + + + Another action + , + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Header cell", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "header-cell", + "props": Object { + "data-key": 0, + "data-label": "Header cell", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Branches", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "branches", + "props": Object { + "data-key": 1, + "data-label": "Branches", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Pull requests", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "pull-requests", + "props": Object { + "data-key": 2, + "data-label": "Pull requests", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Workspaces", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "workspaces", + "props": Object { + "data-key": 3, + "data-label": "Workspaces", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Last Commit", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "last-commit", + "props": Object { + "data-key": 4, + "data-label": "Last Commit", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "column-5", + "props": Object { + "data-key": 5, + "data-label": "", + }, + }, + ] + } + key="1-row" + onRow={[Function]} + renderers={ + Object { + "cell": [Function], + "row": [Function], + "wrapper": [Function], + } + } + rowData={ + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 1, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + } + } + rowIndex={1} + rowKey="1-row" + > + +
+ + + + + + + + + + + + + + + + + + + + + + + Another action + , + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Header cell", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "header-cell", + "props": Object { + "data-key": 0, + "data-label": "Header cell", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Branches", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "branches", + "props": Object { + "data-key": 1, + "data-label": "Branches", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Pull requests", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "pull-requests", + "props": Object { + "data-key": 2, + "data-label": "Pull requests", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Workspaces", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "workspaces", + "props": Object { + "data-key": 3, + "data-label": "Workspaces", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Last Commit", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "last-commit", + "props": Object { + "data-key": 4, + "data-label": "Last Commit", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "column-5", + "props": Object { + "data-key": 5, + "data-label": "", + }, + }, + ] + } + key="2-row" + onRow={[Function]} + renderers={ + Object { + "cell": [Function], + "row": [Function], + "wrapper": [Function], + } + } + rowData={ + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 2, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + } + } + rowIndex={2} + rowKey="2-row" + > + +
+ + + + + + + + + + + + + + + + + + + + + + + Another action + , + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Header cell", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "header-cell", + "props": Object { + "data-key": 0, + "data-label": "Header cell", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Branches", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "branches", + "props": Object { + "data-key": 1, + "data-label": "Branches", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Pull requests", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "pull-requests", + "props": Object { + "data-key": 2, + "data-label": "Pull requests", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Workspaces", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "workspaces", + "props": Object { + "data-key": 3, + "data-label": "Workspaces", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Last Commit", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "last-commit", + "props": Object { + "data-key": 4, + "data-label": "Last Commit", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "column-5", + "props": Object { + "data-key": 5, + "data-label": "", + }, + }, + ] + } + key="3-row" + onRow={[Function]} + renderers={ + Object { + "cell": [Function], + "row": [Function], + "wrapper": [Function], + } + } + rowData={ + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 3, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + } + } + rowIndex={3} + rowKey="3-row" + > + +
+ + + + + + + + + + + + + + + + + + + + + + + Another action + , + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Header cell", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "header-cell", + "props": Object { + "data-key": 0, + "data-label": "Header cell", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Branches", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "branches", + "props": Object { + "data-key": 1, + "data-label": "Branches", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Pull requests", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "pull-requests", + "props": Object { + "data-key": 2, + "data-label": "Pull requests", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Workspaces", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "workspaces", + "props": Object { + "data-key": 3, + "data-label": "Workspaces", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Last Commit", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "last-commit", + "props": Object { + "data-key": 4, + "data-label": "Last Commit", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "column-5", + "props": Object { + "data-key": 5, + "data-label": "", + }, + }, + ] + } + key="4-row" + onRow={[Function]} + renderers={ + Object { + "cell": [Function], + "row": [Function], + "wrapper": [Function], + } + } + rowData={ + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 4, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + } + } + rowIndex={4} + rowKey="4-row" + > + +
+ + + + + + + + + + + + + + + + + + + + + + + Another action + , + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Header cell", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "header-cell", + "props": Object { + "data-key": 0, + "data-label": "Header cell", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Branches", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "branches", + "props": Object { + "data-key": 1, + "data-label": "Branches", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Pull requests", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "pull-requests", + "props": Object { + "data-key": 2, + "data-label": "Pull requests", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Workspaces", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "workspaces", + "props": Object { + "data-key": 3, + "data-label": "Workspaces", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Last Commit", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "last-commit", + "props": Object { + "data-key": 4, + "data-label": "Last Commit", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "column-5", + "props": Object { + "data-key": 5, + "data-label": "", + }, + }, + ] + } + key="5-row" + onRow={[Function]} + renderers={ + Object { + "cell": [Function], + "row": [Function], + "wrapper": [Function], + } + } + rowData={ + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 5, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + } + } + rowIndex={5} + rowKey="5-row" + > + +
+ + + + + + + + + + + + + + + + + + + + + + + Another action + , + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Header cell", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "header-cell", + "props": Object { + "data-key": 0, + "data-label": "Header cell", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Branches", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "branches", + "props": Object { + "data-key": 1, + "data-label": "Branches", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Pull requests", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "pull-requests", + "props": Object { + "data-key": 2, + "data-label": "Pull requests", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Workspaces", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "workspaces", + "props": Object { + "data-key": 3, + "data-label": "Workspaces", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Last Commit", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "last-commit", + "props": Object { + "data-key": 4, + "data-label": "Last Commit", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "column-5", + "props": Object { + "data-key": 5, + "data-label": "", + }, + }, + ] + } + key="6-row" + onRow={[Function]} + renderers={ + Object { + "cell": [Function], + "row": [Function], + "wrapper": [Function], + } + } + rowData={ + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 6, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + } + } + rowIndex={6} + rowKey="6-row" + > + +
+ + + + + + + + + + + + + + + + + + + + + + + Another action + , + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Header cell", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "header-cell", + "props": Object { + "data-key": 0, + "data-label": "Header cell", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Branches", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "branches", + "props": Object { + "data-key": 1, + "data-label": "Branches", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Pull requests", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "pull-requests", + "props": Object { + "data-key": 2, + "data-label": "Pull requests", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Workspaces", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "workspaces", + "props": Object { + "data-key": 3, + "data-label": "Workspaces", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Last Commit", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "last-commit", + "props": Object { + "data-key": 4, + "data-label": "Last Commit", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "column-5", + "props": Object { + "data-key": 5, + "data-label": "", + }, + }, + ] + } + key="7-row" + onRow={[Function]} + renderers={ + Object { + "cell": [Function], + "row": [Function], + "wrapper": [Function], + } + } + rowData={ + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 7, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + } + } + rowIndex={7} + rowKey="7-row" + > + +
+ + + + + + + + + + + + + + + + + + + + + + + Another action + , + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Header cell", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "header-cell", + "props": Object { + "data-key": 0, + "data-label": "Header cell", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Branches", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "branches", + "props": Object { + "data-key": 1, + "data-label": "Branches", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Pull requests", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "pull-requests", + "props": Object { + "data-key": 2, + "data-label": "Pull requests", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Workspaces", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "workspaces", + "props": Object { + "data-key": 3, + "data-label": "Workspaces", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Last Commit", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "last-commit", + "props": Object { + "data-key": 4, + "data-label": "Last Commit", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "column-5", + "props": Object { + "data-key": 5, + "data-label": "", + }, + }, + ] + } + key="8-row" + onRow={[Function]} + renderers={ + Object { + "cell": [Function], + "row": [Function], + "wrapper": [Function], + } + } + rowData={ + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 8, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": false, + "isLastVisible": false, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + } + } + rowIndex={8} + rowKey="8-row" + > + +
+ + + + + + + + + + + + + + + + + + + + + + + Another action + , + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Header cell", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "header-cell", + "props": Object { + "data-key": 0, + "data-label": "Header cell", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Branches", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "branches", + "props": Object { + "data-key": 1, + "data-label": "Branches", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Pull requests", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "pull-requests", + "props": Object { + "data-key": 2, + "data-label": "Pull requests", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Workspaces", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "workspaces", + "props": Object { + "data-key": 3, + "data-label": "Workspaces", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "Last Commit", + "transforms": Array [ + [Function], + [Function], + ], + }, + "property": "last-commit", + "props": Object { + "data-key": 4, + "data-label": "Last Commit", + }, + }, + Object { + "cell": Object { + "formatters": Array [ + [Function], + ], + "transforms": Array [ + [Function], + [Function], + ], + }, + "data": undefined, + "extraParams": Object { + "actionResolver": undefined, + "actions": Array [ + Object { + "onClick": [Function], + "title": "Some action", + }, + Object { + "onClick": [Function], + "title":
+ Another action +
, + }, + Object { + "isSeparator": true, + }, + Object { + "onClick": [Function], + "title": "Third action", + }, + ], + "allRowsSelected": false, + "areActionsDisabled": undefined, + "contentId": "expanded-content", + "dropdownDirection": "down", + "dropdownPosition": "right", + "expandId": "expandable-toggle", + "firstUserColumnIndex": 0, + "onCollapse": undefined, + "onExpand": undefined, + "onSelect": undefined, + "onSort": undefined, + "rowLabeledBy": "simple-node", + "sortBy": undefined, + }, + "header": Object { + "formatters": Array [], + "label": "", + "transforms": Array [ + [Function], + [Function], + [Function], + ], + }, + "property": "column-5", + "props": Object { + "data-key": 5, + "data-label": "", + }, + }, + ] + } + key="9-row" + onRow={[Function]} + renderers={ + Object { + "cell": [Function], + "row": [Function], + "wrapper": [Function], + } + } + rowData={ + Object { + "branches": Object { + "props": Object { + "isVisible": true, + }, + "title": "two", + }, + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + "disableActions": true, + "header-cell": Object { + "props": Object { + "isVisible": true, + }, + "title": "one", + }, + "id": 9, + "isExpanded": undefined, + "isFirst": false, + "isFirstVisible": false, + "isLast": true, + "isLastVisible": true, + "last-commit": Object { + "props": Object { + "isVisible": true, + }, + "title": "five", + }, + "pull-requests": Object { + "props": Object { + "isVisible": true, + }, + "title": "three", + }, + "workspaces": Object { + "props": Object { + "isVisible": true, + }, + "title": "four", + }, + } + } + rowIndex={9} + rowKey="9-row" + > + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + Branches + + Pull requests + + Workspaces + + Last Commit + + +
+ + +`; + +exports[`Simple table aria-label 1`] = ` + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Header cell + + Branches + + Pull requests + + Workspaces + + Last Commit +
+ + +`; + +exports[`Simple table caption 1`] = ` + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Simple Table +
+ Header cell + + Branches + + Pull requests + + Workspaces + + Last Commit +
+ + +`; + +exports[`Simple table header 1`] = ` + + Header title + + } + role="grid" + rowLabeledBy="simple-node" + rows={ + Array [ + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + Object { + "cells": Array [ + "one", + "two", + "three", + "four", + "five", + ], + }, + ] + } + variant={null} +> +

+ Header title +

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Header cell + + Branches + + Pull requests + + Workspaces + + Last Commit +
+ + +`; + +exports[`Sortable table 1`] = ` + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + Branches + + Pull requests + + Workspaces + + Last Commit +
+ + +`; + +exports[`Table variants Breakpoint - 1`] = ` + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + Branches + + Pull requests + + Workspaces + + Last Commit +
+ + +`; + +exports[`Table variants Breakpoint - grid 1`] = ` + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + Branches + + Pull requests + + Workspaces + + Last Commit +
+ + +`; + +exports[`Table variants Breakpoint - grid-2xl 1`] = ` + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + Branches + + Pull requests + + Workspaces + + Last Commit +
+ + +`; + +exports[`Table variants Breakpoint - grid-lg 1`] = ` + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + Branches + + Pull requests + + Workspaces + + Last Commit +
+ + +`; + +exports[`Table variants Breakpoint - grid-md 1`] = ` + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + Branches + + Pull requests + + Workspaces + + Last Commit +
+ + +`; + +exports[`Table variants Breakpoint - grid-xl 1`] = ` + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + Branches + + Pull requests + + Workspaces + + Last Commit +
+ + +`; + +exports[`Table variants Size - compact 1`] = ` + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + Branches + + Pull requests + + Workspaces + + Last Commit +
+ + +`; diff --git a/packages/patternfly-4/react-table/src/components/Table/index.d.ts b/packages/patternfly-4/react-table/src/components/Table/index.d.ts index a664953a327..1d95c24e7b7 100644 --- a/packages/patternfly-4/react-table/src/components/Table/index.d.ts +++ b/packages/patternfly-4/react-table/src/components/Table/index.d.ts @@ -20,4 +20,5 @@ export { default as TableBody, TableBodyProps } from './Body'; export { default as RowWrapper, RowWrapperRow, RowWrapperProps } from './RowWrapper'; export { default as ExpandableRowContent } from './ExpandableRowContent'; export { sortable, headerCol, cellWidth, ISortable, expandable, isRowExpanded } from './utils'; +export { compoundExpand } from './utils/decorators/compoundExpand'; export { SortByDirection } from './SortColumn'; diff --git a/packages/patternfly-4/react-table/src/test-helpers/data-sets.tsx b/packages/patternfly-4/react-table/src/test-helpers/data-sets.tsx index 521e625f592..83062fa4e46 100644 --- a/packages/patternfly-4/react-table/src/test-helpers/data-sets.tsx +++ b/packages/patternfly-4/react-table/src/test-helpers/data-sets.tsx @@ -44,17 +44,20 @@ export const rows: any = [ export const actions: any = [ { title: 'Some action', - onClick: (event, rowId) => console.log('clicked on Some action, on row: ', rowId) + onClick: ({ event }: { event: React.MouseEvent }, { rowId }: { rowId: number }) => + console.log('clicked on Some action, on row: ', rowId) }, { title:
Another action
, - onClick: (event, rowId) => console.log('clicked on Another action, on row: ', rowId) + onClick: ({ event }: { event: React.MouseEvent }, { rowId }: { rowId: number }) => + console.log('clicked on Another action, on row: ', rowId) }, { isSeparator: true }, { title: 'Third action', - onClick: (event, rowId) => console.log('clicked on Third action, on row: ', rowId) + onClick: ({ event }: { event: React.MouseEvent }, { rowId }: { rowId: number }) => + console.log('clicked on Third action, on row: ', rowId) } ]; From 05b03f10792f9d9c015311bdfce9c194bdd4c0d8 Mon Sep 17 00:00:00 2001 From: jenny-s51 Date: Fri, 19 Jul 2019 15:19:26 -0400 Subject: [PATCH 5/5] fix(jest tests): fixed export statement --- .../src/components/Table/RowWrapper.js | 4 +- .../__snapshots__/RowWrapper.test.js.snap | 63 +++++++++++++++++++ .../src/components/Table/index.d.ts | 2 +- 3 files changed, 67 insertions(+), 2 deletions(-) create mode 100644 packages/patternfly-4/react-table/src/components/Table/__snapshots__/RowWrapper.test.js.snap diff --git a/packages/patternfly-4/react-table/src/components/Table/RowWrapper.js b/packages/patternfly-4/react-table/src/components/Table/RowWrapper.js index ce6277fe29c..9ae666b19af 100644 --- a/packages/patternfly-4/react-table/src/components/Table/RowWrapper.js +++ b/packages/patternfly-4/react-table/src/components/Table/RowWrapper.js @@ -4,7 +4,7 @@ import { debounce } from '@patternfly/react-core'; import styles from '@patternfly/react-styles/css/components/Table/table'; import { css } from '@patternfly/react-styles'; -export class RowWrapper extends React.Component { +class RowWrapper extends React.Component { constructor(props) { super(props); @@ -99,3 +99,5 @@ RowWrapper.defaultProps = { }, rowProps: null }; + +export default RowWrapper; diff --git a/packages/patternfly-4/react-table/src/components/Table/__snapshots__/RowWrapper.test.js.snap b/packages/patternfly-4/react-table/src/components/Table/__snapshots__/RowWrapper.test.js.snap new file mode 100644 index 00000000000..725c927e8ff --- /dev/null +++ b/packages/patternfly-4/react-table/src/components/Table/__snapshots__/RowWrapper.test.js.snap @@ -0,0 +1,63 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`RowWrapper renders correctly 1`] = ` + + + , + ], + ], + "results": Array [ + Object { + "isThrow": false, + "value": undefined, + }, + ], + } + } + > + + + +
+`; + +exports[`RowWrapper renders expanded correctly 1`] = ` + + + + + + +
+`; diff --git a/packages/patternfly-4/react-table/src/components/Table/index.d.ts b/packages/patternfly-4/react-table/src/components/Table/index.d.ts index 1d95c24e7b7..73d9155737f 100644 --- a/packages/patternfly-4/react-table/src/components/Table/index.d.ts +++ b/packages/patternfly-4/react-table/src/components/Table/index.d.ts @@ -17,7 +17,7 @@ export { } from './Table'; export { default as TableHeader, HeaderProps } from './Header'; export { default as TableBody, TableBodyProps } from './Body'; -export { default as RowWrapper, RowWrapperRow, RowWrapperProps } from './RowWrapper'; +export { default as RowWrapper } from './RowWrapper'; export { default as ExpandableRowContent } from './ExpandableRowContent'; export { sortable, headerCol, cellWidth, ISortable, expandable, isRowExpanded } from './utils'; export { compoundExpand } from './utils/decorators/compoundExpand';