diff --git a/Gruntfile.js b/Gruntfile.js
index 3ddab44f5..4600d031b 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -135,6 +135,7 @@ module.exports = function(grunt) {
"packages/node_modules/@node-red/editor-client/src/js/validators.js",
"packages/node_modules/@node-red/editor-client/src/js/ui/utils.js",
"packages/node_modules/@node-red/editor-client/src/js/ui/common/editableList.js",
+ "packages/node_modules/@node-red/editor-client/src/js/ui/common/treeList.js",
"packages/node_modules/@node-red/editor-client/src/js/ui/common/checkboxSet.js",
"packages/node_modules/@node-red/editor-client/src/js/ui/common/menu.js",
"packages/node_modules/@node-red/editor-client/src/js/ui/common/panels.js",
diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/common/treeList.js b/packages/node_modules/@node-red/editor-client/src/js/ui/common/treeList.js
new file mode 100644
index 000000000..e139257f7
--- /dev/null
+++ b/packages/node_modules/@node-red/editor-client/src/js/ui/common/treeList.js
@@ -0,0 +1,177 @@
+/**
+ * Copyright JS Foundation and other contributors, http://js.foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ **/
+(function($) {
+
+/**
+ * options:
+ * - data : array - initial items to display in tree
+ *
+ * methods:
+ * - data(items) - clears existing items and replaces with new data
+ *
+ * events:
+ * - treelistselect : function(event, item) {}
+ *
+ *
+ * data:
+ * [
+ * {
+ * label: 'Local', // label for the item
+ * icon: 'fa fa-rocket', // (optional) icon for the item
+ * selected: true/false, // (optional) if present, display checkbox accordingly
+ * children: [] | function(done) // (optional) an array of child items, or a function
+ * // that will call the `done` callback with an array
+ * // of child items
+ * }
+ * ]
+ *
+ *
+ *
+ * var treeList = $("