Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/patternfly-4/react-table/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
"@patternfly/react-icons": "^3.10.14",
"@patternfly/react-styles": "^3.5.7",
"@patternfly/react-tokens": "^2.6.13",
"lodash": "^4.17.11",
"classnames": "^2.2.5",
"exenv": "^1.2.2",
"lodash-es": "^4.2.1"
"exenv": "^1.2.2"
},
"peerDependencies": {
"prop-types": "^15.6.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* https://github.com/reactabular/reactabular/tree/v8.14.0/packages/reactabular-table/src
* */

import { isEqual, isFunction } from 'lodash-es';
import { isEqual, isFunction } from 'lodash';
import React from 'react';
import columnsAreEqual from './columns-are-equal';
import evaluateFormatters from './evaluate-formatters';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* 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 { isEqual, isFunction } from 'lodash';
import React from 'react';
import { tableBodyTypes, tableBodyDefaults, tableBodyContextTypes } from './types';
import BodyRow from './body-row';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* 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 { isFunction, isEqualWith } from 'lodash';

function columnsAreEqual(oldColumns, newColumns) {
return isEqualWith(oldColumns, newColumns, (a, b) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* 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 { isFunction } from 'lodash';
import mergeProps from './merge-props';

function evaluateTransforms(transforms = [], value, extraParameters = {}) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Forked from reactabular-table version 8.14.0
* https://github.com/reactabular/reactabular/tree/v8.14.0/packages/reactabular-table/src
* */
import { mergeWith } from 'lodash-es';
import { mergeWith } from 'lodash';
import classNames from 'classnames';

function mergePropPair(...props) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* 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 { isArray } from 'lodash';

function resolveRowKey({ rowData, rowIndex, rowKey }) {
if (typeof rowKey === 'function') {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
},
"peerDependencies": {
"@patternfly/react-table": "^2.10.0",
"lodash-es": "4.x",
"lodash": "4.x",
"prop-types": "^15.6.1",
"react": "^16.4.0",
"react-dom": "^15.6.2 || ^16.4.0"
Expand Down