From 35171e0cad6da6f8ce415373423f6ea48a8b0532 Mon Sep 17 00:00:00 2001 From: Jannis Mattheis Date: Sun, 21 Oct 2018 14:07:44 +0200 Subject: [PATCH] Add new infinite list dependency --- ui/package-lock.json | 41 +++++++++++++++++++++++++++++++++++++++++ ui/package.json | 1 + 2 files changed, 42 insertions(+) diff --git a/ui/package-lock.json b/ui/package-lock.json index 7532e54..30a02b2 100644 --- a/ui/package-lock.json +++ b/ui/package-lock.json @@ -6988,6 +6988,21 @@ "resolved": "https://registry.npmjs.org/lodash.endswith/-/lodash.endswith-4.2.1.tgz", "integrity": "sha1-/tWawXOO0+I27dcGTsRWRIs3vAk=" }, + "lodash.isarray": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", + "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=" + }, + "lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=" + }, + "lodash.isfinite": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/lodash.isfinite/-/lodash.isfinite-3.2.0.tgz", + "integrity": "sha1-qmn/uTo36C+rDOGIYmVfkXTO0zk=" + }, "lodash.isfunction": { "version": "3.0.9", "resolved": "https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz", @@ -9571,6 +9586,32 @@ } } }, + "react-infinite": { + "version": "0.12.1", + "resolved": "https://registry.npmjs.org/react-infinite/-/react-infinite-0.12.1.tgz", + "integrity": "sha512-sOXsm0OsszFQQ+4Vtqt1UUqLETGOCS0keAdEQuNMmeoIHHz2iIW44cHhPLxyeAsdfJQOYanmBZjhpZFQw7bhKw==", + "requires": { + "lodash.isarray": "3.0.4", + "lodash.isfinite": "3.2.0", + "object-assign": "4.0.1" + }, + "dependencies": { + "object-assign": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.0.1.tgz", + "integrity": "sha1-mVBEVsNZi1ytT8WcJuipuxB/4L0=" + } + } + }, + "react-infinite-any-height": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/react-infinite-any-height/-/react-infinite-any-height-2.3.0.tgz", + "integrity": "sha1-elUDgIl9iOG9JtnzjdfIkQi5jPU=", + "requires": { + "lodash.isequal": "^4.5.0", + "react-infinite": "^0.12.1" + } + }, "react-jss": { "version": "8.6.1", "resolved": "https://registry.npmjs.org/react-jss/-/react-jss-8.6.1.tgz", diff --git a/ui/package.json b/ui/package.json index 2447ef8..222bebe 100644 --- a/ui/package.json +++ b/ui/package.json @@ -15,6 +15,7 @@ "prop-types": "^15.6.2", "react": "^16.4.2", "react-dom": "^16.4.2", + "react-infinite-any-height": "^2.3.0", "react-router": "^4.3.1", "react-router-dom": "^4.3.1", "react-scripts-ts": "2.17.0",