diff --git a/dashboard-ui/bower_components/iron-media-query/.bower.json b/dashboard-ui/bower_components/iron-media-query/.bower.json
deleted file mode 100644
index d9ad827eb..000000000
--- a/dashboard-ui/bower_components/iron-media-query/.bower.json
+++ /dev/null
@@ -1,41 +0,0 @@
-{
- "name": "iron-media-query",
- "version": "1.0.8",
- "description": "Lets you bind to a CSS media query",
- "authors": [
- "The Polymer Authors"
- ],
- "keywords": [
- "web-components",
- "polymer",
- "media"
- ],
- "private": true,
- "repository": {
- "type": "git",
- "url": "git://github.com/PolymerElements/iron-media-query"
- },
- "license": "http://polymer.github.io/LICENSE.txt",
- "homepage": "https://github.com/PolymerElements/iron-media-query",
- "ignore": [],
- "dependencies": {
- "polymer": "Polymer/polymer#^1.0.0"
- },
- "devDependencies": {
- "paper-styles": "polymerelements/paper-styles#^1.0.2",
- "web-component-tester": "polymer/web-component-tester#^3.4.0",
- "test-fixture": "PolymerElements/test-fixture#^1.0.0",
- "iron-component-page": "PolymerElements/iron-component-page#^1.0.0",
- "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
- },
- "main": "iron-media-query.html",
- "_release": "1.0.8",
- "_resolution": {
- "type": "version",
- "tag": "v1.0.8",
- "commit": "3f916be171af7a3e03eb019acdfea71055d3c744"
- },
- "_source": "git://github.com/PolymerElements/iron-media-query.git",
- "_target": "^1.0.0",
- "_originalSource": "PolymerElements/iron-media-query"
-}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/iron-media-query/.gitignore b/dashboard-ui/bower_components/iron-media-query/.gitignore
deleted file mode 100644
index 8d4ae2536..000000000
--- a/dashboard-ui/bower_components/iron-media-query/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-bower_components
diff --git a/dashboard-ui/bower_components/iron-media-query/.travis.yml b/dashboard-ui/bower_components/iron-media-query/.travis.yml
deleted file mode 100644
index b680b6900..000000000
--- a/dashboard-ui/bower_components/iron-media-query/.travis.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-language: node_js
-sudo: false
-before_script:
- - npm install web-component-tester
- - npm install bower
- - 'export PATH=$PWD/node_modules/.bin:$PATH'
- - bower install
-env:
- global:
- - secure: My9uxlkp4fZwSHKqo1RUv4yBhNl46XfbaiOsOStqJdI9l7hBfudSl7V2OZeLuV2pEDJC1z1ZqVU6C/K0/iTf7i66cd9g0iH5N+1qex8p2AcuP1evPWbwLw8moHH+M5E14MMXD8sPX4KauS8azmgRm61pppD5ZgKfCaeGZg7Tczs=
- - secure: LgnZP4BNGBkTZhf8Vr7r9LdrOwq2/58TqqYkFFloEGBRT6HmumNSRwNbIwOh1U9jSTVkqjC2rn4G27u4XlEIs+QTD2PVSSEKy7Vbn0KxSNCvCGaOB1ZaxWTwZa7nkg09ZFRCHGh+WIbuV+BxyzsjOqlN82GSzFNSb3rxhqDM6dU=
-node_js: 4
-addons:
- firefox: latest
- apt:
- sources:
- - google-chrome
- packages:
- - google-chrome-stable
-script:
- - xvfb-run wct
- - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi"
diff --git a/dashboard-ui/bower_components/iron-media-query/CONTRIBUTING.md b/dashboard-ui/bower_components/iron-media-query/CONTRIBUTING.md
deleted file mode 100644
index 7b1014156..000000000
--- a/dashboard-ui/bower_components/iron-media-query/CONTRIBUTING.md
+++ /dev/null
@@ -1,72 +0,0 @@
-
-
-# Polymer Elements
-## Guide for Contributors
-
-Polymer Elements are built in the open, and the Polymer authors eagerly encourage any and all forms of community contribution. When contributing, please follow these guidelines:
-
-### Filing Issues
-
-**If you are filing an issue to request a feature**, please provide a clear description of the feature. It can be helpful to describe answers to the following questions:
-
- 1. **Who will use the feature?** _“As someone filling out a form…”_
- 2. **When will they use the feature?** _“When I enter an invalid value…”_
- 3. **What is the user’s goal?** _“I want to be visually notified that the value needs to be corrected…”_
-
-**If you are filing an issue to report a bug**, please provide:
-
- 1. **A clear description of the bug and related expectations.** Consider using the following example template for reporting a bug:
-
- ```markdown
- The `paper-foo` element causes the page to turn pink when clicked.
-
- ## Expected outcome
-
- The page stays the same color.
-
- ## Actual outcome
-
- The page turns pink.
-
- ## Steps to reproduce
-
- 1. Put a `paper-foo` element in the page.
- 2. Open the page in a web browser.
- 3. Click the `paper-foo` element.
- ```
-
- 2. **A reduced test case that demonstrates the problem.** If possible, please include the test case as a JSBin. Start with this template to easily import and use relevant Polymer Elements: [http://jsbin.com/cagaye](http://jsbin.com/cagaye/edit?html,output).
-
- 3. **A list of browsers where the problem occurs.** This can be skipped if the problem is the same across all browsers.
-
-### Submitting Pull Requests
-
-**Before creating a pull request**, please ensure that an issue exists for the corresponding change in the pull request that you intend to make. **If an issue does not exist, please create one per the guidelines above**. The goal is to discuss the design and necessity of the proposed change with Polymer authors and community before diving into a pull request.
-
-When submitting pull requests, please provide:
-
- 1. **A reference to the corresponding issue** or issues that will be closed by the pull request. Please refer to these issues using the following syntax:
-
- ```markdown
- (For a single issue)
- Fixes #20
-
- (For multiple issues)
- Fixes #32, #40
- ```
-
- 2. **A succinct description of the design** used to fix any related issues. For example:
-
- ```markdown
- This fixes #20 by removing styles that leaked which would cause the page to turn pink whenever `paper-foo` is clicked.
- ```
-
- 3. **At least one test for each bug fixed or feature added** as part of the pull request. Pull requests that fix bugs or add features without accompanying tests will not be considered.
-
-If a proposed change contains multiple commits, please [squash commits](https://www.google.com/url?q=http://blog.steveklabnik.com/posts/2012-11-08-how-to-squash-commits-in-a-github-pull-request) to as few as is necessary to succinctly express the change. A Polymer author can help you squash commits, so don’t be afraid to ask us if you need help with that!
diff --git a/dashboard-ui/bower_components/iron-media-query/bower.json b/dashboard-ui/bower_components/iron-media-query/bower.json
deleted file mode 100644
index c69307215..000000000
--- a/dashboard-ui/bower_components/iron-media-query/bower.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "name": "iron-media-query",
- "version": "1.0.8",
- "description": "Lets you bind to a CSS media query",
- "authors": [
- "The Polymer Authors"
- ],
- "keywords": [
- "web-components",
- "polymer",
- "media"
- ],
- "private": true,
- "repository": {
- "type": "git",
- "url": "git://github.com/PolymerElements/iron-media-query"
- },
- "license": "http://polymer.github.io/LICENSE.txt",
- "homepage": "https://github.com/PolymerElements/iron-media-query",
- "ignore": [],
- "dependencies": {
- "polymer": "Polymer/polymer#^1.0.0"
- },
- "devDependencies": {
- "paper-styles": "polymerelements/paper-styles#^1.0.2",
- "web-component-tester": "polymer/web-component-tester#^3.4.0",
- "test-fixture": "PolymerElements/test-fixture#^1.0.0",
- "iron-component-page": "PolymerElements/iron-component-page#^1.0.0",
- "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
- },
- "main": "iron-media-query.html"
-}
diff --git a/dashboard-ui/bower_components/iron-media-query/demo/index.html b/dashboard-ui/bower_components/iron-media-query/demo/index.html
deleted file mode 100644
index 8a57dae60..000000000
--- a/dashboard-ui/bower_components/iron-media-query/demo/index.html
+++ /dev/null
@@ -1,93 +0,0 @@
-
-
-
-
-
- iron-media-query demo
-
-
-
-
-
-
-
-
-
-
-
-
-
<iron-media-query>
-
-
-
-
-
-
-
-
-
Resize the window
-
-
- The viewport is less than 600px wide, so the items' titles will
- not float.
-
-
- The viewport is at least 600px, so the items' titles will float
- to the left.
-
- Here's another sentence; it's not very long.
-
-
-
-
diff --git a/dashboard-ui/bower_components/iron-media-query/hero.svg b/dashboard-ui/bower_components/iron-media-query/hero.svg
deleted file mode 100644
index 9b5e2a615..000000000
--- a/dashboard-ui/bower_components/iron-media-query/hero.svg
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
diff --git a/dashboard-ui/bower_components/iron-media-query/index.html b/dashboard-ui/bower_components/iron-media-query/index.html
deleted file mode 100644
index 174afb5b5..000000000
--- a/dashboard-ui/bower_components/iron-media-query/index.html
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
- iron-media-query
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/dashboard-ui/bower_components/iron-media-query/iron-media-query.html b/dashboard-ui/bower_components/iron-media-query/iron-media-query.html
deleted file mode 100644
index 60cb84b89..000000000
--- a/dashboard-ui/bower_components/iron-media-query/iron-media-query.html
+++ /dev/null
@@ -1,121 +0,0 @@
-
-
-
-
-
-
-
diff --git a/dashboard-ui/bower_components/iron-media-query/test/basic.html b/dashboard-ui/bower_components/iron-media-query/test/basic.html
deleted file mode 100644
index 8649ceba3..000000000
--- a/dashboard-ui/bower_components/iron-media-query/test/basic.html
+++ /dev/null
@@ -1,118 +0,0 @@
-
-
-
-
-
-
- iron-media-query-basic
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/dashboard-ui/bower_components/iron-media-query/test/index.html b/dashboard-ui/bower_components/iron-media-query/test/index.html
deleted file mode 100644
index 30e527f53..000000000
--- a/dashboard-ui/bower_components/iron-media-query/test/index.html
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
- Tests
-
-
-
-
-
-
-
-
-
-
diff --git a/dashboard-ui/bower_components/iron-range-behavior/.bower.json b/dashboard-ui/bower_components/iron-range-behavior/.bower.json
deleted file mode 100644
index 76d8b27a1..000000000
--- a/dashboard-ui/bower_components/iron-range-behavior/.bower.json
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- "name": "iron-range-behavior",
- "version": "1.0.5",
- "license": "http://polymer.github.io/LICENSE.txt",
- "description": "Provides a behavior for something with a minimum and maximum value",
- "authors": "The Polymer Authors",
- "keywords": [
- "web-components",
- "polymer",
- "behavior"
- ],
- "main": "iron-range-behavior.html",
- "private": true,
- "repository": {
- "type": "git",
- "url": "git://github.com/PolymerElements/iron-range-behavior.git"
- },
- "dependencies": {
- "polymer": "Polymer/polymer#^1.0.0"
- },
- "devDependencies": {
- "iron-component-page": "PolymerElements/iron-component-page#^1.0.0",
- "iron-input": "PolymerElements/iron-input#^1.0.0",
- "test-fixture": "PolymerElements/test-fixture#^1.0.0",
- "web-component-tester": "^4.0.0",
- "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
- },
- "ignore": [],
- "homepage": "https://github.com/PolymerElements/iron-range-behavior",
- "_release": "1.0.5",
- "_resolution": {
- "type": "version",
- "tag": "v1.0.5",
- "commit": "645ffc6b39ae4fb0efd23b97016a9c4aac777978"
- },
- "_source": "git://github.com/PolymerElements/iron-range-behavior.git",
- "_target": "^1.0.0",
- "_originalSource": "PolymerElements/iron-range-behavior"
-}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/iron-range-behavior/.github/ISSUE_TEMPLATE.md b/dashboard-ui/bower_components/iron-range-behavior/.github/ISSUE_TEMPLATE.md
deleted file mode 100644
index 027392730..000000000
--- a/dashboard-ui/bower_components/iron-range-behavior/.github/ISSUE_TEMPLATE.md
+++ /dev/null
@@ -1,33 +0,0 @@
-
-### Description
-
-
-### Expected outcome
-
-
-
-### Actual outcome
-
-
-
-### Live Demo
-
-
-### Steps to reproduce
-
-
-
-### Browsers Affected
-
-- [ ] Chrome
-- [ ] Firefox
-- [ ] Safari 9
-- [ ] Safari 8
-- [ ] Safari 7
-- [ ] Edge
-- [ ] IE 11
-- [ ] IE 10
diff --git a/dashboard-ui/bower_components/iron-range-behavior/.gitignore b/dashboard-ui/bower_components/iron-range-behavior/.gitignore
deleted file mode 100644
index 8d4ae2536..000000000
--- a/dashboard-ui/bower_components/iron-range-behavior/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-bower_components
diff --git a/dashboard-ui/bower_components/iron-range-behavior/.travis.yml b/dashboard-ui/bower_components/iron-range-behavior/.travis.yml
deleted file mode 100644
index 4da2ba5b7..000000000
--- a/dashboard-ui/bower_components/iron-range-behavior/.travis.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-language: node_js
-sudo: required
-before_script:
- - npm install -g bower polylint web-component-tester
- - bower install
- - polylint
-env:
- global:
- - secure: IsCzwFlF0UR02RUnxyo+Gk4cdZMLDOVdy3X0qE7JCe3Lo/SJXjULrJMUZmHrKV9yQTu8bke5lhJdMe/8kuO7chLekQv4AF5bR2m3x7Kg4oJGQJE30WpBWXz6XSYuwnmOINmaNqNZKil692W28LFr97N2+TxEbE64lTd5cGcgJDI=
- - secure: TmQz2J5KMg/5dOi/7VDMWIxLoHjC5K7yCQAQOkcrq9M8PTBQE2wlCVe4wb6EqfiAofBv5e4heO9B3F0EOWWp2Sasa9ZQIcs0Lg/1SU6wv5Vt9XCONu/ZLI9oqG3SJ8pMMhcexMxmygX0wsytuI6LOI3sMMpOek2cdae1ntPT9IE=
-node_js: stable
-addons:
- firefox: latest
- apt:
- sources:
- - google-chrome
- packages:
- - google-chrome-stable
- sauce_connect: true
-script:
- - xvfb-run wct
- - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi"
-dist: trusty
diff --git a/dashboard-ui/bower_components/iron-range-behavior/CONTRIBUTING.md b/dashboard-ui/bower_components/iron-range-behavior/CONTRIBUTING.md
deleted file mode 100644
index 093090d43..000000000
--- a/dashboard-ui/bower_components/iron-range-behavior/CONTRIBUTING.md
+++ /dev/null
@@ -1,77 +0,0 @@
-
-
-# Polymer Elements
-## Guide for Contributors
-
-Polymer Elements are built in the open, and the Polymer authors eagerly encourage any and all forms of community contribution. When contributing, please follow these guidelines:
-
-### Filing Issues
-
-**If you are filing an issue to request a feature**, please provide a clear description of the feature. It can be helpful to describe answers to the following questions:
-
- 1. **Who will use the feature?** _“As someone filling out a form…”_
- 2. **When will they use the feature?** _“When I enter an invalid value…”_
- 3. **What is the user’s goal?** _“I want to be visually notified that the value needs to be corrected…”_
-
-**If you are filing an issue to report a bug**, please provide:
-
- 1. **A clear description of the bug and related expectations.** Consider using the following example template for reporting a bug:
-
- ```markdown
- The `paper-foo` element causes the page to turn pink when clicked.
-
- ## Expected outcome
-
- The page stays the same color.
-
- ## Actual outcome
-
- The page turns pink.
-
- ## Steps to reproduce
-
- 1. Put a `paper-foo` element in the page.
- 2. Open the page in a web browser.
- 3. Click the `paper-foo` element.
- ```
-
- 2. **A reduced test case that demonstrates the problem.** If possible, please include the test case as a JSBin. Start with this template to easily import and use relevant Polymer Elements: [https://jsbin.com/cagaye/edit?html,output](https://jsbin.com/cagaye/edit?html,output).
-
- 3. **A list of browsers where the problem occurs.** This can be skipped if the problem is the same across all browsers.
-
-### Submitting Pull Requests
-
-**Before creating a pull request**, please ensure that an issue exists for the corresponding change in the pull request that you intend to make. **If an issue does not exist, please create one per the guidelines above**. The goal is to discuss the design and necessity of the proposed change with Polymer authors and community before diving into a pull request.
-
-When submitting pull requests, please provide:
-
- 1. **A reference to the corresponding issue** or issues that will be closed by the pull request. Please refer to these issues in the pull request description using the following syntax:
-
- ```markdown
- (For a single issue)
- Fixes #20
-
- (For multiple issues)
- Fixes #32, fixes #40
- ```
-
- 2. **A succinct description of the design** used to fix any related issues. For example:
-
- ```markdown
- This fixes #20 by removing styles that leaked which would cause the page to turn pink whenever `paper-foo` is clicked.
- ```
-
- 3. **At least one test for each bug fixed or feature added** as part of the pull request. Pull requests that fix bugs or add features without accompanying tests will not be considered.
-
-If a proposed change contains multiple commits, please [squash commits](https://www.google.com/url?q=http://blog.steveklabnik.com/posts/2012-11-08-how-to-squash-commits-in-a-github-pull-request) to as few as is necessary to succinctly express the change. A Polymer author can help you squash commits, so don’t be afraid to ask us if you need help with that!
diff --git a/dashboard-ui/bower_components/iron-range-behavior/bower.json b/dashboard-ui/bower_components/iron-range-behavior/bower.json
deleted file mode 100644
index a58ad63f1..000000000
--- a/dashboard-ui/bower_components/iron-range-behavior/bower.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "name": "iron-range-behavior",
- "version": "1.0.5",
- "license": "http://polymer.github.io/LICENSE.txt",
- "description": "Provides a behavior for something with a minimum and maximum value",
- "authors": "The Polymer Authors",
- "keywords": [
- "web-components",
- "polymer",
- "behavior"
- ],
- "main": "iron-range-behavior.html",
- "private": true,
- "repository": {
- "type": "git",
- "url": "git://github.com/PolymerElements/iron-range-behavior.git"
- },
- "dependencies": {
- "polymer": "Polymer/polymer#^1.0.0"
- },
- "devDependencies": {
- "iron-component-page": "PolymerElements/iron-component-page#^1.0.0",
- "iron-input": "PolymerElements/iron-input#^1.0.0",
- "test-fixture": "PolymerElements/test-fixture#^1.0.0",
- "web-component-tester": "^4.0.0",
- "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
- },
- "ignore": []
-}
diff --git a/dashboard-ui/bower_components/iron-range-behavior/demo/index.html b/dashboard-ui/bower_components/iron-range-behavior/demo/index.html
deleted file mode 100644
index ce397365e..000000000
--- a/dashboard-ui/bower_components/iron-range-behavior/demo/index.html
+++ /dev/null
@@ -1,79 +0,0 @@
-
-
-
-
- iron-range-behavior demo
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
{{ratio}}%
-
-
-
-
-
-
-
-
-
-
diff --git a/dashboard-ui/bower_components/iron-range-behavior/index.html b/dashboard-ui/bower_components/iron-range-behavior/index.html
deleted file mode 100644
index cc7778873..000000000
--- a/dashboard-ui/bower_components/iron-range-behavior/index.html
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/dashboard-ui/bower_components/iron-range-behavior/iron-range-behavior.html b/dashboard-ui/bower_components/iron-range-behavior/iron-range-behavior.html
deleted file mode 100644
index 96f3c15b0..000000000
--- a/dashboard-ui/bower_components/iron-range-behavior/iron-range-behavior.html
+++ /dev/null
@@ -1,121 +0,0 @@
-
-
-
-
-
diff --git a/dashboard-ui/bower_components/iron-range-behavior/test/basic.html b/dashboard-ui/bower_components/iron-range-behavior/test/basic.html
deleted file mode 100644
index 9a7e41dc5..000000000
--- a/dashboard-ui/bower_components/iron-range-behavior/test/basic.html
+++ /dev/null
@@ -1,180 +0,0 @@
-
-
-
-
-
- iron-range-behavior
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/dashboard-ui/bower_components/iron-range-behavior/test/index.html b/dashboard-ui/bower_components/iron-range-behavior/test/index.html
deleted file mode 100644
index b66f1defb..000000000
--- a/dashboard-ui/bower_components/iron-range-behavior/test/index.html
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
- Tests
-
-
-
-
-
-
-
diff --git a/dashboard-ui/bower_components/iron-range-behavior/test/x-progressbar.html b/dashboard-ui/bower_components/iron-range-behavior/test/x-progressbar.html
deleted file mode 100644
index 2f0db85fb..000000000
--- a/dashboard-ui/bower_components/iron-range-behavior/test/x-progressbar.html
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
diff --git a/dashboard-ui/bower_components/paper-drawer-panel/.bower.json b/dashboard-ui/bower_components/paper-drawer-panel/.bower.json
deleted file mode 100644
index 73ff85786..000000000
--- a/dashboard-ui/bower_components/paper-drawer-panel/.bower.json
+++ /dev/null
@@ -1,47 +0,0 @@
-{
- "name": "paper-drawer-panel",
- "version": "1.0.9",
- "description": "A responsive drawer panel",
- "authors": [
- "The Polymer Authors"
- ],
- "keywords": [
- "web-components",
- "polymer",
- "drawer",
- "responsive",
- "layout"
- ],
- "repository": {
- "type": "git",
- "url": "git://github.com/PolymerElements/paper-drawer-panel.git"
- },
- "license": "http://polymer.github.io/LICENSE.txt",
- "homepage": "https://github.com/PolymerElements/paper-drawer-panel",
- "dependencies": {
- "iron-media-query": "PolymerElements/iron-media-query#^1.0.0",
- "iron-resizable-behavior": "PolymerElements/iron-resizable-behavior#^1.0.0",
- "iron-selector": "PolymerElements/iron-selector#^1.0.0",
- "polymer": "Polymer/polymer#^1.1.0"
- },
- "devDependencies": {
- "iron-component-page": "PolymerElements/iron-component-page#^1.0.0",
- "paper-button": "PolymerElements/paper-button#^1.0.0",
- "paper-styles": "PolymerElements/paper-styles#^1.0.0",
- "iron-test-helpers": "PolymerElements/iron-test-helpers#^1.0.0",
- "test-fixture": "PolymerElements/test-fixture#^1.0.0",
- "web-component-tester": "^4.0.0",
- "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
- },
- "main": "paper-drawer-panel.html",
- "ignore": [],
- "_release": "1.0.9",
- "_resolution": {
- "type": "version",
- "tag": "v1.0.9",
- "commit": "d0f2c801380397e5d4334b273a2fef63099d4a2f"
- },
- "_source": "git://github.com/PolymerElements/paper-drawer-panel.git",
- "_target": "~1.0.2",
- "_originalSource": "PolymerElements/paper-drawer-panel"
-}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/paper-drawer-panel/.gitignore b/dashboard-ui/bower_components/paper-drawer-panel/.gitignore
deleted file mode 100644
index fbe05fc93..000000000
--- a/dashboard-ui/bower_components/paper-drawer-panel/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-bower_components/
diff --git a/dashboard-ui/bower_components/paper-drawer-panel/.travis.yml b/dashboard-ui/bower_components/paper-drawer-panel/.travis.yml
deleted file mode 100644
index 2ab76e4e1..000000000
--- a/dashboard-ui/bower_components/paper-drawer-panel/.travis.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-language: node_js
-sudo: false
-before_script:
- - npm install -g bower polylint web-component-tester
- - bower install
- - polylint
-env:
- global:
- - secure: PLe0gvvFLKijrgyroIeymIP14SikK6RobNUOqHyUiLDCh9S2/vSBJUp8U5TYkVmpxMr+rcKXpfIhYt/bne97bARTnMjRQUa+rlraek6EPXyFILDsyaTosYD7rmY2f8ViiW+CM3eUA+ym0P8tvYONdTx+CEdO7S6esotfq3LHrLw=
- - secure: U4i/ZSfd87xQ+0YZCKxk3knQQk23V/2IxtSrvY42OnaGi10uz04Cad5XMuBcB1kCyRkAP/e9flQyp4iLaDpG+edm2fxJNPqXepWjtMr0rVFr2LoQ7dPAQCFkzO25dSiO+Wj4ffDO//hwgF5Xl/BXnyRBfSEjURZXr4EP+NjoMWU=
- - CXX=g++-4.8
-node_js: stable
-addons:
- firefox: latest
- apt:
- sources:
- - google-chrome
- - ubuntu-toolchain-r-test
- packages:
- - google-chrome-stable
- - g++-4.8
- sauce_connect: true
-script:
- - xvfb-run wct
- - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi"
diff --git a/dashboard-ui/bower_components/paper-drawer-panel/CONTRIBUTING.md b/dashboard-ui/bower_components/paper-drawer-panel/CONTRIBUTING.md
deleted file mode 100644
index f147978a3..000000000
--- a/dashboard-ui/bower_components/paper-drawer-panel/CONTRIBUTING.md
+++ /dev/null
@@ -1,77 +0,0 @@
-
-
-# Polymer Elements
-## Guide for Contributors
-
-Polymer Elements are built in the open, and the Polymer authors eagerly encourage any and all forms of community contribution. When contributing, please follow these guidelines:
-
-### Filing Issues
-
-**If you are filing an issue to request a feature**, please provide a clear description of the feature. It can be helpful to describe answers to the following questions:
-
- 1. **Who will use the feature?** _“As someone filling out a form…”_
- 2. **When will they use the feature?** _“When I enter an invalid value…”_
- 3. **What is the user’s goal?** _“I want to be visually notified that the value needs to be corrected…”_
-
-**If you are filing an issue to report a bug**, please provide:
-
- 1. **A clear description of the bug and related expectations.** Consider using the following example template for reporting a bug:
-
- ```markdown
- The `paper-foo` element causes the page to turn pink when clicked.
-
- ## Expected outcome
-
- The page stays the same color.
-
- ## Actual outcome
-
- The page turns pink.
-
- ## Steps to reproduce
-
- 1. Put a `paper-foo` element in the page.
- 2. Open the page in a web browser.
- 3. Click the `paper-foo` element.
- ```
-
- 2. **A reduced test case that demonstrates the problem.** If possible, please include the test case as a JSBin. Start with this template to easily import and use relevant Polymer Elements: [https://jsbin.com/cagaye/edit?html,output](https://jsbin.com/cagaye/edit?html,output).
-
- 3. **A list of browsers where the problem occurs.** This can be skipped if the problem is the same across all browsers.
-
-### Submitting Pull Requests
-
-**Before creating a pull request**, please ensure that an issue exists for the corresponding change in the pull request that you intend to make. **If an issue does not exist, please create one per the guidelines above**. The goal is to discuss the design and necessity of the proposed change with Polymer authors and community before diving into a pull request.
-
-When submitting pull requests, please provide:
-
- 1. **A reference to the corresponding issue** or issues that will be closed by the pull request. Please refer to these issues in the pull request description using the following syntax:
-
- ```markdown
- (For a single issue)
- Fixes #20
-
- (For multiple issues)
- Fixes #32, fixes #40
- ```
-
- 2. **A succinct description of the design** used to fix any related issues. For example:
-
- ```markdown
- This fixes #20 by removing styles that leaked which would cause the page to turn pink whenever `paper-foo` is clicked.
- ```
-
- 3. **At least one test for each bug fixed or feature added** as part of the pull request. Pull requests that fix bugs or add features without accompanying tests will not be considered.
-
-If a proposed change contains multiple commits, please [squash commits](https://www.google.com/url?q=http://blog.steveklabnik.com/posts/2012-11-08-how-to-squash-commits-in-a-github-pull-request) to as few as is necessary to succinctly express the change. A Polymer author can help you squash commits, so don’t be afraid to ask us if you need help with that!
diff --git a/dashboard-ui/bower_components/paper-drawer-panel/bower.json b/dashboard-ui/bower_components/paper-drawer-panel/bower.json
deleted file mode 100644
index ba8ce10a5..000000000
--- a/dashboard-ui/bower_components/paper-drawer-panel/bower.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "name": "paper-drawer-panel",
- "version": "1.0.9",
- "description": "A responsive drawer panel",
- "authors": [
- "The Polymer Authors"
- ],
- "keywords": [
- "web-components",
- "polymer",
- "drawer",
- "responsive",
- "layout"
- ],
- "repository": {
- "type": "git",
- "url": "git://github.com/PolymerElements/paper-drawer-panel.git"
- },
- "license": "http://polymer.github.io/LICENSE.txt",
- "homepage": "https://github.com/PolymerElements/paper-drawer-panel",
- "dependencies": {
- "iron-media-query": "PolymerElements/iron-media-query#^1.0.0",
- "iron-resizable-behavior": "PolymerElements/iron-resizable-behavior#^1.0.0",
- "iron-selector": "PolymerElements/iron-selector#^1.0.0",
- "polymer": "Polymer/polymer#^1.1.0"
- },
- "devDependencies": {
- "iron-component-page": "PolymerElements/iron-component-page#^1.0.0",
- "paper-button": "PolymerElements/paper-button#^1.0.0",
- "paper-styles": "PolymerElements/paper-styles#^1.0.0",
- "iron-test-helpers": "PolymerElements/iron-test-helpers#^1.0.0",
- "test-fixture": "PolymerElements/test-fixture#^1.0.0",
- "web-component-tester": "^4.0.0",
- "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
- },
- "main": "paper-drawer-panel.html",
- "ignore": []
-}
diff --git a/dashboard-ui/bower_components/paper-drawer-panel/demo/index.html b/dashboard-ui/bower_components/paper-drawer-panel/demo/index.html
deleted file mode 100644
index a453ae709..000000000
--- a/dashboard-ui/bower_components/paper-drawer-panel/demo/index.html
+++ /dev/null
@@ -1,97 +0,0 @@
-
-
-
-
- paper-drawer-panel demo
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/dashboard-ui/bower_components/paper-drawer-panel/test/index.html b/dashboard-ui/bower_components/paper-drawer-panel/test/index.html
deleted file mode 100644
index 1cdc93f16..000000000
--- a/dashboard-ui/bower_components/paper-drawer-panel/test/index.html
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
- paper-drawer-panel tests
-
-
-
-
-
-
diff --git a/dashboard-ui/bower_components/paper-drawer-panel/test/positioning.html b/dashboard-ui/bower_components/paper-drawer-panel/test/positioning.html
deleted file mode 100644
index f70c2cf1c..000000000
--- a/dashboard-ui/bower_components/paper-drawer-panel/test/positioning.html
+++ /dev/null
@@ -1,93 +0,0 @@
-
-
-
-
-
- paper-drawer-panel tests
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/dashboard-ui/bower_components/paper-drawer-panel/test/small-devices.html b/dashboard-ui/bower_components/paper-drawer-panel/test/small-devices.html
deleted file mode 100644
index b3091cbd4..000000000
--- a/dashboard-ui/bower_components/paper-drawer-panel/test/small-devices.html
+++ /dev/null
@@ -1,138 +0,0 @@
-
-
-
-
-
- paper-drawer-panel tests
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/dashboard-ui/bower_components/paper-input/.bower.json b/dashboard-ui/bower_components/paper-input/.bower.json
index dc6a378a1..b3a6f1a2f 100644
--- a/dashboard-ui/bower_components/paper-input/.bower.json
+++ b/dashboard-ui/bower_components/paper-input/.bower.json
@@ -54,7 +54,8 @@
"tag": "v1.1.11",
"commit": "8cfe5c5bf8c2e40d243443d046a94b6fe371983c"
},
- "_source": "git://github.com/polymerelements/paper-input.git",
- "_target": "^1.0.9",
- "_originalSource": "polymerelements/paper-input"
+ "_source": "git://github.com/PolymerElements/paper-input.git",
+ "_target": "^1.1.11",
+ "_originalSource": "PolymerElements/paper-input",
+ "_direct": true
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/paper-progress/.bower.json b/dashboard-ui/bower_components/paper-progress/.bower.json
deleted file mode 100644
index d76d4cd97..000000000
--- a/dashboard-ui/bower_components/paper-progress/.bower.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
- "name": "paper-progress",
- "version": "1.0.9",
- "license": "http://polymer.github.io/LICENSE.txt",
- "description": "A material design progress bar",
- "authors": "The Polymer Authors",
- "keywords": [
- "web-components",
- "polymer",
- "progress"
- ],
- "main": "paper-progress.html",
- "repository": {
- "type": "git",
- "url": "git://github.com/PolymerElements/paper-progress.git"
- },
- "dependencies": {
- "iron-flex-layout": "PolymerElements/iron-flex-layout#^1.0.0",
- "iron-range-behavior": "PolymerElements/iron-range-behavior#^1.0.0",
- "paper-styles": "PolymerElements/paper-styles#^1.0.0",
- "polymer": "Polymer/polymer#^1.1.0"
- },
- "devDependencies": {
- "iron-component-page": "PolymerElements/iron-component-page#^1.0.0",
- "iron-demo-helpers": "PolymerElements/iron-demo-helpers#^1.0.0",
- "paper-button": "PolymerElements/paper-button#^1.0.0",
- "test-fixture": "PolymerElements/test-fixture#^1.0.0",
- "web-component-tester": "^4.0.0",
- "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
- },
- "ignore": [],
- "homepage": "https://github.com/PolymerElements/paper-progress",
- "_release": "1.0.9",
- "_resolution": {
- "type": "version",
- "tag": "v1.0.9",
- "commit": "389e717d2e600bb44c6cb1537ee12b203b55fca1"
- },
- "_source": "git://github.com/PolymerElements/paper-progress.git",
- "_target": "^1.0.0",
- "_originalSource": "PolymerElements/paper-progress"
-}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/paper-progress/.gitignore b/dashboard-ui/bower_components/paper-progress/.gitignore
deleted file mode 100644
index 8d4ae2536..000000000
--- a/dashboard-ui/bower_components/paper-progress/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-bower_components
diff --git a/dashboard-ui/bower_components/paper-progress/.travis.yml b/dashboard-ui/bower_components/paper-progress/.travis.yml
deleted file mode 100644
index cfc1bd935..000000000
--- a/dashboard-ui/bower_components/paper-progress/.travis.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-language: node_js
-sudo: false
-before_script:
- - npm install -g bower polylint web-component-tester
- - bower install
- - polylint
-env:
- global:
- - secure: fmp2kJysxTcVsouaQfEkPCJYPzbsuGCeq5RqvttDaYdue92n5912OR/WI476PPGpX2owvxq97saVX9CqXweVtgrmdhONsrGy31eULpW0vUonuhbjkKU87E0aAmHu478uuJnc4hU7oN7wuNEtqWmpFG+oqMqHKwUyAWLk+V4XY0nseuFYQLX52qfglD+CqipQsoe84nIM0JxQxpDw1njYZbKQzZVttyLQVv13Ahh+5v75EqqwggoD2mgU1xQIH1GarbnZpmE9BL4ETbaJwJ7Fon/Pxsrs1Zs9hEStJCwo5aTiyPJibRQBCk9Cj+PJY3TkqfE3zIwhbW1/aSCIuUg5egsh6Of6clqrDE2wWPyIURUBFcE3UXsqBEXh56K9WQh+KNIgJYoQ/tzhD2VlgQhM89geTKZc6ysSTWcukv9tw9h9gaG2gD1e+uRQ/rMyt6vlh2DNI/J8oAv1WifZwuUKRkwm7SUBP55sukFryJIQEXEMqjT0WVbjTWP+2VNiHFPo7wGdVZ8X7y4bwA7lmnlC4AnNd8L6BE0tStZUBAKv3LhzRvd+DrRvaiSPdFhGBbAiMzytKGgxfD7nhMntV7GREjfQCB/hch5anePK7Cuw58kF8PiZX9aVk8Se3VP0+rdUkzVgWTW5THhdpw2nnuIyK5QDtL4/L3l/oJhl9Jbmak4=
- - secure: WzzECDnm17AwL4VDbMJD0E1cdi11p2YLahJRPi/+GZ9BFNIV3I2WZFc5l0WEiGDMB4igx5DdXHzDFk7HF2z2qRpf2skhWDTd/Ie5+exZlY9/D/tED8dJepGtV40UTuWr+vHsDJeNkXteYNpNU7ZHfNbXl14/x25ccaLYSX5yRNLBRMn9KToRNBhXA0YH/Q9AnWNKGFWb0YBfjSRywSvVuVRQr/tL43JUCTEEwjdGHVTUlvWPE5XHDs6yqjJlTI70GVvQb5WPZdQJugiolG9Z66ZRWEEuawJgzTCdlaKwBQX0UAXLdfUsQKwrcxvLnDibMHVG6hNOBw4Un73YL0klD7nKoPlhCiDHtPWoNUCvpNGxPWozw2KC50YX4MZSFKAWCkIA4/oiIhMvSUOWcrOpfHZNpJNNBCFHvv6JS5PwEiNlqM2BjqfS4Vy/03Fy0h6CyNX8o5wDAjZvJKCyZQHGy4tFWNPpyZ6SbwsnzH+bjqXSDURI6hCUNiujlIRzUT95H8rIega1mWT8sffvb4qK72iXAqf7hoQbi1Ldhjq/b0iO0PRdpjX5vusLN797KxPNrxDZc9LoaIgVMAFD5AJmwF/DilvwsW6sI4o5cpAw58/g1wpB7iX0YFWXNzXv/hZh2o4gW81Y2afM//gIgCFSitRO10bOqw+pEcGCnLrz/BQ=
- - CXX=g++-4.8
-node_js: stable
-addons:
- firefox: latest
- apt:
- sources:
- - google-chrome
- - ubuntu-toolchain-r-test
- packages:
- - google-chrome-stable
- - g++-4.8
- sauce_connect: true
-script:
- - xvfb-run wct
- - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi"
diff --git a/dashboard-ui/bower_components/paper-progress/CONTRIBUTING.md b/dashboard-ui/bower_components/paper-progress/CONTRIBUTING.md
deleted file mode 100644
index f147978a3..000000000
--- a/dashboard-ui/bower_components/paper-progress/CONTRIBUTING.md
+++ /dev/null
@@ -1,77 +0,0 @@
-
-
-# Polymer Elements
-## Guide for Contributors
-
-Polymer Elements are built in the open, and the Polymer authors eagerly encourage any and all forms of community contribution. When contributing, please follow these guidelines:
-
-### Filing Issues
-
-**If you are filing an issue to request a feature**, please provide a clear description of the feature. It can be helpful to describe answers to the following questions:
-
- 1. **Who will use the feature?** _“As someone filling out a form…”_
- 2. **When will they use the feature?** _“When I enter an invalid value…”_
- 3. **What is the user’s goal?** _“I want to be visually notified that the value needs to be corrected…”_
-
-**If you are filing an issue to report a bug**, please provide:
-
- 1. **A clear description of the bug and related expectations.** Consider using the following example template for reporting a bug:
-
- ```markdown
- The `paper-foo` element causes the page to turn pink when clicked.
-
- ## Expected outcome
-
- The page stays the same color.
-
- ## Actual outcome
-
- The page turns pink.
-
- ## Steps to reproduce
-
- 1. Put a `paper-foo` element in the page.
- 2. Open the page in a web browser.
- 3. Click the `paper-foo` element.
- ```
-
- 2. **A reduced test case that demonstrates the problem.** If possible, please include the test case as a JSBin. Start with this template to easily import and use relevant Polymer Elements: [https://jsbin.com/cagaye/edit?html,output](https://jsbin.com/cagaye/edit?html,output).
-
- 3. **A list of browsers where the problem occurs.** This can be skipped if the problem is the same across all browsers.
-
-### Submitting Pull Requests
-
-**Before creating a pull request**, please ensure that an issue exists for the corresponding change in the pull request that you intend to make. **If an issue does not exist, please create one per the guidelines above**. The goal is to discuss the design and necessity of the proposed change with Polymer authors and community before diving into a pull request.
-
-When submitting pull requests, please provide:
-
- 1. **A reference to the corresponding issue** or issues that will be closed by the pull request. Please refer to these issues in the pull request description using the following syntax:
-
- ```markdown
- (For a single issue)
- Fixes #20
-
- (For multiple issues)
- Fixes #32, fixes #40
- ```
-
- 2. **A succinct description of the design** used to fix any related issues. For example:
-
- ```markdown
- This fixes #20 by removing styles that leaked which would cause the page to turn pink whenever `paper-foo` is clicked.
- ```
-
- 3. **At least one test for each bug fixed or feature added** as part of the pull request. Pull requests that fix bugs or add features without accompanying tests will not be considered.
-
-If a proposed change contains multiple commits, please [squash commits](https://www.google.com/url?q=http://blog.steveklabnik.com/posts/2012-11-08-how-to-squash-commits-in-a-github-pull-request) to as few as is necessary to succinctly express the change. A Polymer author can help you squash commits, so don’t be afraid to ask us if you need help with that!
diff --git a/dashboard-ui/bower_components/paper-progress/bower.json b/dashboard-ui/bower_components/paper-progress/bower.json
deleted file mode 100644
index 69a5c5ef2..000000000
--- a/dashboard-ui/bower_components/paper-progress/bower.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "name": "paper-progress",
- "version": "1.0.9",
- "license": "http://polymer.github.io/LICENSE.txt",
- "description": "A material design progress bar",
- "authors": "The Polymer Authors",
- "keywords": [
- "web-components",
- "polymer",
- "progress"
- ],
- "main": "paper-progress.html",
- "repository": {
- "type": "git",
- "url": "git://github.com/PolymerElements/paper-progress.git"
- },
- "dependencies": {
- "iron-flex-layout": "PolymerElements/iron-flex-layout#^1.0.0",
- "iron-range-behavior": "PolymerElements/iron-range-behavior#^1.0.0",
- "paper-styles": "PolymerElements/paper-styles#^1.0.0",
- "polymer": "Polymer/polymer#^1.1.0"
- },
- "devDependencies": {
- "iron-component-page": "PolymerElements/iron-component-page#^1.0.0",
- "iron-demo-helpers": "PolymerElements/iron-demo-helpers#^1.0.0",
- "paper-button": "PolymerElements/paper-button#^1.0.0",
- "test-fixture": "PolymerElements/test-fixture#^1.0.0",
- "web-component-tester": "^4.0.0",
- "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
- },
- "ignore": []
-}
diff --git a/dashboard-ui/bower_components/paper-progress/demo/index.html b/dashboard-ui/bower_components/paper-progress/demo/index.html
deleted file mode 100644
index 88f4b7689..000000000
--- a/dashboard-ui/bower_components/paper-progress/demo/index.html
+++ /dev/null
@@ -1,122 +0,0 @@
-
-
-
-
- paper-progress demo
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
paper-progress can be imperatively controlled
-
-
-
Once started, loops 5 times before stopping.
-
- Start
-
-
-
-
-
diff --git a/dashboard-ui/bower_components/paper-progress/test/basic.html b/dashboard-ui/bower_components/paper-progress/test/basic.html
deleted file mode 100644
index 73547501e..000000000
--- a/dashboard-ui/bower_components/paper-progress/test/basic.html
+++ /dev/null
@@ -1,148 +0,0 @@
-
-
-
-
-
- paper-progress test
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/dashboard-ui/bower_components/paper-progress/test/index.html b/dashboard-ui/bower_components/paper-progress/test/index.html
deleted file mode 100644
index b66f1defb..000000000
--- a/dashboard-ui/bower_components/paper-progress/test/index.html
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
- Tests
-
-
-
-
-
-
-
diff --git a/dashboard-ui/bower_components/paper-slider/.bower.json b/dashboard-ui/bower_components/paper-slider/.bower.json
deleted file mode 100644
index 7fb300408..000000000
--- a/dashboard-ui/bower_components/paper-slider/.bower.json
+++ /dev/null
@@ -1,48 +0,0 @@
-{
- "name": "paper-slider",
- "version": "1.0.11",
- "description": "A material design-style slider",
- "license": "http://polymer.github.io/LICENSE.txt",
- "authors": "The Polymer Authors",
- "keywords": [
- "web-components",
- "polymer",
- "slider",
- "control"
- ],
- "main": "paper-slider.html",
- "repository": {
- "type": "git",
- "url": "git://github.com/PolymerElements/paper-slider.git"
- },
- "ignore": [],
- "dependencies": {
- "polymer": "Polymer/polymer#^1.1.0",
- "paper-input": "PolymerElements/paper-input#^1.0.0",
- "paper-progress": "PolymerElements/paper-progress#^1.0.0",
- "iron-flex-layout": "PolymerElements/iron-flex-layout#^1.0.0",
- "paper-styles": "PolymerElements/paper-styles#^1.0.0",
- "iron-behaviors": "PolymerElements/iron-behaviors#^1.0.0",
- "paper-behaviors": "PolymerElements/paper-behaviors#^1.0.0",
- "iron-a11y-keys-behavior": "PolymerElements/iron-a11y-keys-behavior#^1.0.0",
- "iron-form-element-behavior": "PolymerElements/iron-form-element-behavior#^1.0.0"
- },
- "devDependencies": {
- "iron-component-page": "PolymerElements/iron-component-page#^1.0.0",
- "iron-demo-helpers": "polymerelements/iron-demo-helpers#^1.0.0",
- "test-fixture": "PolymerElements/test-fixture#^1.0.0",
- "iron-test-helpers": "polymerelements/iron-test-helpers#^1.0.0",
- "web-component-tester": "^4.0.0",
- "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
- },
- "homepage": "https://github.com/PolymerElements/paper-slider",
- "_release": "1.0.11",
- "_resolution": {
- "type": "version",
- "tag": "v1.0.11",
- "commit": "855e3ed20d12b4545175317536adca7897928537"
- },
- "_source": "git://github.com/PolymerElements/paper-slider.git",
- "_target": "~1.0.3",
- "_originalSource": "PolymerElements/paper-slider"
-}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/paper-slider/.github/ISSUE_TEMPLATE.md b/dashboard-ui/bower_components/paper-slider/.github/ISSUE_TEMPLATE.md
deleted file mode 100644
index 5cf23a0cf..000000000
--- a/dashboard-ui/bower_components/paper-slider/.github/ISSUE_TEMPLATE.md
+++ /dev/null
@@ -1,33 +0,0 @@
-
-### Description
-
-
-### Expected outcome
-
-
-
-### Actual outcome
-
-
-
-### Live Demo
-
-
-### Steps to reproduce
-
-
-
-### Browsers Affected
-
-- [ ] Chrome
-- [ ] Firefox
-- [ ] Safari 9
-- [ ] Safari 8
-- [ ] Safari 7
-- [ ] Edge
-- [ ] IE 11
-- [ ] IE 10
diff --git a/dashboard-ui/bower_components/paper-slider/.gitignore b/dashboard-ui/bower_components/paper-slider/.gitignore
deleted file mode 100644
index 8d4ae2536..000000000
--- a/dashboard-ui/bower_components/paper-slider/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-bower_components
diff --git a/dashboard-ui/bower_components/paper-slider/.travis.yml b/dashboard-ui/bower_components/paper-slider/.travis.yml
deleted file mode 100644
index bbd292e1e..000000000
--- a/dashboard-ui/bower_components/paper-slider/.travis.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-language: node_js
-sudo: required
-before_script:
- - npm install -g bower polylint web-component-tester
- - bower install
- - polylint
-env:
- global:
- - secure: W9pv3wK5AyI038GpPZpFo5yii72up1pTHM9yu8TI4th6Q/TiUQCa8GbjAMhUcbMDl3Y4i50WjckykSox+c506Zs5Pe5vDCaKpHT/iOHYqjIaQEDGGvvKWxSTJr82HY2taNhkH7seksg7oKq8dL7DCBLyKJUl03hGmRqZABjIw9fWjSNUb9PVdlZass5nJaqw954t76GYBWcQ71fntm8uCnSrQoviHEprvfwZMNnK0mhd79VmBohl83jpFU8FaYEWLc5IFY29u7McLxgynZBggwhGSrvdDrOYG4jtn26RNx4mNCcJGxejzadvf4K6H2S45SGnsCIjJRJbl8MV+ni18VqC/BuCF2J4k8QqSRtWi2mSq/l9DOgIiwViPRjPRxoK+a+/6qA7pQ1aMXBWWF4FjngvgoZHcY2J5FptbRltDtalrUSbUVmmKNoWwaJa4Sb5OopJdr0herGds946qzQKW1FLqkcDTtF6c4fZqK12WVEIXZLXiP9sV9+dBJDXT4oWzgjo2GHAiMEzV6Xk3oZ/RHmWJ34Bemy7M5zYKDHErLhD6/UXiA/tYlTqqgu/4Jdxs07ilWmaVd3kTYywRYuTzR4yO3xq8ElpEnpby2WobGiVCsuzQwOe4fWSvV4wS8TpSdigoGxYQ+FPrrbc7jhgRodyZP1xF/mTHlIvNmaTYYc=
- - secure: xLLhaBejrIuYAxwQoFPsrvnBpeDVY8IYdThJ36fJnD4V0jpqS7m8b2rw5fYrtwWvmEAQlqJ20/hnjfp9kKXr6Qpkj2im9d0KWdw4xAyD2KxiG/u5pBn1Y+zE9iGjq+NGa58EJDNaxQSnaXmVnk55tyT9W3ailkiO/lEtaofXXXGqiW9Nxa9D0GtbbNWBypcoc7X/HXCcg5hVpdVjEFh3Y+nFWIdqJEO0V7oKujfb5yFhu5PRU7siTzdN+nLoPXPMlkBa3aWwPLdM1D9HKXN1jBX6dM9dH3oz20K/TCPpbO5u675vfuTT9iP9XuLy4LB/cl7S6bcopvhU5ipkQvLEieeq73EP1hz5vwdSWgleXkNhWBInhzeHLTI04M49ZxIc0NEay2Tvx9tQl5e8BT1/WglpjnHvqx/VoF7zkHRfWyWeObL6YyFVFiJ0Gz3ExJTUCruQRBen+g2Cqr1qwBN4bFPhgxzHW58ECdsDFvfpZT3I7h/wnCzNVOZx+A74nVwDpl6zg+/+GWpqZF2ILGbRDTcjp1A/eH+FMwnQccRLiBcXm4v4y8pFfaNzjRwswUQjnMV5KyIV+dSyQQAh9sBedFJjeWm1HSy3UXFZvyc6gQIG5GR5uGWkyxYHdCxBFMYFj2xmEzoLwF7omu5CXF0TUdYxb5hvUBMEqEEKIwte2VE=
-node_js: stable
-addons:
- firefox: latest
- apt:
- sources:
- - google-chrome
- packages:
- - google-chrome-stable
- sauce_connect: true
-script:
- - xvfb-run wct
- - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi"
-dist: trusty
diff --git a/dashboard-ui/bower_components/paper-slider/CONTRIBUTING.md b/dashboard-ui/bower_components/paper-slider/CONTRIBUTING.md
deleted file mode 100644
index 093090d43..000000000
--- a/dashboard-ui/bower_components/paper-slider/CONTRIBUTING.md
+++ /dev/null
@@ -1,77 +0,0 @@
-
-
-# Polymer Elements
-## Guide for Contributors
-
-Polymer Elements are built in the open, and the Polymer authors eagerly encourage any and all forms of community contribution. When contributing, please follow these guidelines:
-
-### Filing Issues
-
-**If you are filing an issue to request a feature**, please provide a clear description of the feature. It can be helpful to describe answers to the following questions:
-
- 1. **Who will use the feature?** _“As someone filling out a form…”_
- 2. **When will they use the feature?** _“When I enter an invalid value…”_
- 3. **What is the user’s goal?** _“I want to be visually notified that the value needs to be corrected…”_
-
-**If you are filing an issue to report a bug**, please provide:
-
- 1. **A clear description of the bug and related expectations.** Consider using the following example template for reporting a bug:
-
- ```markdown
- The `paper-foo` element causes the page to turn pink when clicked.
-
- ## Expected outcome
-
- The page stays the same color.
-
- ## Actual outcome
-
- The page turns pink.
-
- ## Steps to reproduce
-
- 1. Put a `paper-foo` element in the page.
- 2. Open the page in a web browser.
- 3. Click the `paper-foo` element.
- ```
-
- 2. **A reduced test case that demonstrates the problem.** If possible, please include the test case as a JSBin. Start with this template to easily import and use relevant Polymer Elements: [https://jsbin.com/cagaye/edit?html,output](https://jsbin.com/cagaye/edit?html,output).
-
- 3. **A list of browsers where the problem occurs.** This can be skipped if the problem is the same across all browsers.
-
-### Submitting Pull Requests
-
-**Before creating a pull request**, please ensure that an issue exists for the corresponding change in the pull request that you intend to make. **If an issue does not exist, please create one per the guidelines above**. The goal is to discuss the design and necessity of the proposed change with Polymer authors and community before diving into a pull request.
-
-When submitting pull requests, please provide:
-
- 1. **A reference to the corresponding issue** or issues that will be closed by the pull request. Please refer to these issues in the pull request description using the following syntax:
-
- ```markdown
- (For a single issue)
- Fixes #20
-
- (For multiple issues)
- Fixes #32, fixes #40
- ```
-
- 2. **A succinct description of the design** used to fix any related issues. For example:
-
- ```markdown
- This fixes #20 by removing styles that leaked which would cause the page to turn pink whenever `paper-foo` is clicked.
- ```
-
- 3. **At least one test for each bug fixed or feature added** as part of the pull request. Pull requests that fix bugs or add features without accompanying tests will not be considered.
-
-If a proposed change contains multiple commits, please [squash commits](https://www.google.com/url?q=http://blog.steveklabnik.com/posts/2012-11-08-how-to-squash-commits-in-a-github-pull-request) to as few as is necessary to succinctly express the change. A Polymer author can help you squash commits, so don’t be afraid to ask us if you need help with that!
diff --git a/dashboard-ui/bower_components/paper-slider/bower.json b/dashboard-ui/bower_components/paper-slider/bower.json
deleted file mode 100644
index 9504c0e55..000000000
--- a/dashboard-ui/bower_components/paper-slider/bower.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "name": "paper-slider",
- "version": "1.0.11",
- "description": "A material design-style slider",
- "license": "http://polymer.github.io/LICENSE.txt",
- "authors": "The Polymer Authors",
- "keywords": [
- "web-components",
- "polymer",
- "slider",
- "control"
- ],
- "main": "paper-slider.html",
- "repository": {
- "type": "git",
- "url": "git://github.com/PolymerElements/paper-slider.git"
- },
- "ignore": [],
- "dependencies": {
- "polymer": "Polymer/polymer#^1.1.0",
- "paper-input": "PolymerElements/paper-input#^1.0.0",
- "paper-progress": "PolymerElements/paper-progress#^1.0.0",
- "iron-flex-layout": "PolymerElements/iron-flex-layout#^1.0.0",
- "paper-styles": "PolymerElements/paper-styles#^1.0.0",
- "iron-behaviors": "PolymerElements/iron-behaviors#^1.0.0",
- "paper-behaviors": "PolymerElements/paper-behaviors#^1.0.0",
- "iron-a11y-keys-behavior": "PolymerElements/iron-a11y-keys-behavior#^1.0.0",
- "iron-form-element-behavior": "PolymerElements/iron-form-element-behavior#^1.0.0"
- },
- "devDependencies": {
- "iron-component-page": "PolymerElements/iron-component-page#^1.0.0",
- "iron-demo-helpers": "polymerelements/iron-demo-helpers#^1.0.0",
- "test-fixture": "PolymerElements/test-fixture#^1.0.0",
- "iron-test-helpers": "polymerelements/iron-test-helpers#^1.0.0",
- "web-component-tester": "^4.0.0",
- "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
- }
-}
diff --git a/dashboard-ui/bower_components/paper-slider/demo/index.html b/dashboard-ui/bower_components/paper-slider/demo/index.html
deleted file mode 100644
index 3910a8a36..000000000
--- a/dashboard-ui/bower_components/paper-slider/demo/index.html
+++ /dev/null
@@ -1,122 +0,0 @@
-
-
-
-
- paper-slider demo
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
paper-sliders can have values, secondary progress values, or be disabled.
-
-
-
-
-
-
-
-
-
-
They can be editable, and styled using custom properties