diff --git a/dashboard-ui/bower_components/emby-webcomponents/.bower.json b/dashboard-ui/bower_components/emby-webcomponents/.bower.json index 90ff1b1102..d5fc1bb59d 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/.bower.json +++ b/dashboard-ui/bower_components/emby-webcomponents/.bower.json @@ -16,12 +16,12 @@ }, "devDependencies": {}, "ignore": [], - "version": "1.1.91", - "_release": "1.1.91", + "version": "1.1.92", + "_release": "1.1.92", "_resolution": { "type": "version", - "tag": "1.1.91", - "commit": "8a268bdd807a875626f387dd8f4a0c4d0cff0a5f" + "tag": "1.1.92", + "commit": "b8a3cb7ffffe461b43e389650bd5c14170ea9eb7" }, "_source": "git://github.com/MediaBrowser/emby-webcomponents.git", "_target": "~1.1.5", diff --git a/dashboard-ui/bower_components/emby-webcomponents/prompt/prompt.js b/dashboard-ui/bower_components/emby-webcomponents/prompt/prompt.js index 1bb28a5ec3..ff0b701fa1 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/prompt/prompt.js +++ b/dashboard-ui/bower_components/emby-webcomponents/prompt/prompt.js @@ -75,8 +75,14 @@ define(['dialogHelper', 'layoutManager', 'dialogText', 'html!./icons.html', 'css dlg.querySelector('form').addEventListener('submit', function (e) { submitValue = dlg.querySelector('.txtPromptValue').value; - dialogHelper.close(dlg); e.preventDefault(); + e.stopPropagation(); + + // Important, don't close the dialog until after the form has completed submitting, or it will cause an error in Chrome + setTimeout(function () { + dialogHelper.close(dlg); + }, 300); + return false; }); @@ -99,6 +105,7 @@ define(['dialogHelper', 'layoutManager', 'dialogText', 'html!./icons.html', 'css return dialogHelper.open(dlg).then(function () { var value = submitValue; + if (value) { return value; } else { diff --git a/dashboard-ui/bower_components/iron-demo-helpers/.bower.json b/dashboard-ui/bower_components/iron-demo-helpers/.bower.json index 1dfd9906f1..c89b5a93dc 100644 --- a/dashboard-ui/bower_components/iron-demo-helpers/.bower.json +++ b/dashboard-ui/bower_components/iron-demo-helpers/.bower.json @@ -1,6 +1,6 @@ { "name": "iron-demo-helpers", - "version": "1.1.1", + "version": "1.2.0", "description": "Utility classes to make building demo pages easier", "authors": [ "The Polymer Authors" @@ -10,7 +10,10 @@ "polymer", "demo" ], - "main": "demo-snippet.html", + "main": [ + "demo-snippet.html", + "url-bar.html" + ], "private": true, "repository": { "type": "git", @@ -25,7 +28,8 @@ "paper-icon-button": "PolymerElements/paper-icon-button#^1.0.0", "paper-styles": "PolymerElements/paper-styles#^1.0.0", "marked-element": "polymerelements/marked-element#^1.0.0", - "prism-element": "PolymerElements/prism-element#^1.0.0" + "prism-element": "PolymerElements/prism-element#^1.0.0", + "iron-location": "PolymerElements/iron-location#^0.8.0" }, "devDependencies": { "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0", @@ -37,11 +41,11 @@ "paper-styles": "PolymerElements/paper-styles#^1.1.0", "paper-checkbox": "PolymerElements/paper-checkbox#^1.0.0" }, - "_release": "1.1.1", + "_release": "1.2.0", "_resolution": { "type": "version", - "tag": "v1.1.1", - "commit": "49584de566eae4f6c31cd1078ce0407b53c601eb" + "tag": "v1.2.0", + "commit": "b5385d0e1c6645560967dee564a43e66dfdf1993" }, "_source": "git://github.com/polymerelements/iron-demo-helpers.git", "_target": "^1.0.0", diff --git a/dashboard-ui/bower_components/iron-demo-helpers/.github/ISSUE_TEMPLATE.md b/dashboard-ui/bower_components/iron-demo-helpers/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000000..ff99a8f7b0 --- /dev/null +++ b/dashboard-ui/bower_components/iron-demo-helpers/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,33 @@ + +### 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-demo-helpers/bower.json b/dashboard-ui/bower_components/iron-demo-helpers/bower.json index 46b1101b1e..8370fc1a32 100644 --- a/dashboard-ui/bower_components/iron-demo-helpers/bower.json +++ b/dashboard-ui/bower_components/iron-demo-helpers/bower.json @@ -1,6 +1,6 @@ { "name": "iron-demo-helpers", - "version": "1.1.1", + "version": "1.2.0", "description": "Utility classes to make building demo pages easier", "authors": [ "The Polymer Authors" @@ -10,7 +10,7 @@ "polymer", "demo" ], - "main": "demo-snippet.html", + "main": ["demo-snippet.html", "url-bar.html"], "private": true, "repository": { "type": "git", @@ -25,7 +25,8 @@ "paper-icon-button": "PolymerElements/paper-icon-button#^1.0.0", "paper-styles": "PolymerElements/paper-styles#^1.0.0", "marked-element": "polymerelements/marked-element#^1.0.0", - "prism-element": "PolymerElements/prism-element#^1.0.0" + "prism-element": "PolymerElements/prism-element#^1.0.0", + "iron-location": "PolymerElements/iron-location#^0.8.0" }, "devDependencies": { "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0", diff --git a/dashboard-ui/bower_components/iron-demo-helpers/demo/url-bar.html b/dashboard-ui/bower_components/iron-demo-helpers/demo/url-bar.html new file mode 100644 index 0000000000..58de5fd37c --- /dev/null +++ b/dashboard-ui/bower_components/iron-demo-helpers/demo/url-bar.html @@ -0,0 +1,47 @@ + + + + + url-bar demo + + + + + + + + + + + + + + +
+ + + + diff --git a/dashboard-ui/bower_components/iron-demo-helpers/index.html b/dashboard-ui/bower_components/iron-demo-helpers/index.html index 848f042657..c1076b4885 100644 --- a/dashboard-ui/bower_components/iron-demo-helpers/index.html +++ b/dashboard-ui/bower_components/iron-demo-helpers/index.html @@ -22,7 +22,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN - + diff --git a/dashboard-ui/bower_components/iron-demo-helpers/url-bar.html b/dashboard-ui/bower_components/iron-demo-helpers/url-bar.html new file mode 100644 index 0000000000..b3555a8d0e --- /dev/null +++ b/dashboard-ui/bower_components/iron-demo-helpers/url-bar.html @@ -0,0 +1,71 @@ + + + + + + + + + diff --git a/dashboard-ui/bower_components/iron-location/.bower.json b/dashboard-ui/bower_components/iron-location/.bower.json new file mode 100644 index 0000000000..5d0a3871e6 --- /dev/null +++ b/dashboard-ui/bower_components/iron-location/.bower.json @@ -0,0 +1,45 @@ +{ + "name": "iron-location", + "version": "0.8.0", + "description": "Bidirectional data binding into the page's URL.", + "private": true, + "authors": [ + "The Polymer Authors" + ], + "keywords": [ + "web-components", + "polymer", + "routing" + ], + "main": "iron-location.html", + "repository": { + "type": "git", + "url": "git://github.com/PolymerElements/iron-location.git" + }, + "license": "http://polymer.github.io/LICENSE.txt", + "homepage": "https://github.com/PolymerElements/iron-location", + "ignore": [], + "dependencies": { + "polymer": "Polymer/polymer#^1.0.0" + }, + "devDependencies": { + "promise-polyfill": "polymerlabs/promise-polyfill#^1.0.0", + "iron-component-page": "polymerelements/iron-component-page#^1.0.0", + "iron-flex-layout": "polymerelements/iron-flex-layout#^1.0.0", + "paper-input": "polymerelements/paper-input#^1.0.0", + "paper-slider": "polymerelements/paper-slider#^1.0.0", + "paper-styles": "polymerelements/paper-styles#^1.0.0", + "test-fixture": "polymerelements/test-fixture#^1.0.0", + "web-component-tester": "^4.0.0", + "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" + }, + "_release": "0.8.0", + "_resolution": { + "type": "version", + "tag": "v0.8.0", + "commit": "9ed0d3f243a70545204ade98720d16b2ff71feb4" + }, + "_source": "git://github.com/PolymerElements/iron-location.git", + "_target": "^0.8.0", + "_originalSource": "PolymerElements/iron-location" +} \ No newline at end of file diff --git a/dashboard-ui/bower_components/iron-location/.gitignore b/dashboard-ui/bower_components/iron-location/.gitignore new file mode 100644 index 0000000000..8d4ae2536a --- /dev/null +++ b/dashboard-ui/bower_components/iron-location/.gitignore @@ -0,0 +1 @@ +bower_components diff --git a/dashboard-ui/bower_components/iron-location/.travis.yml b/dashboard-ui/bower_components/iron-location/.travis.yml new file mode 100644 index 0000000000..3fb5c36b03 --- /dev/null +++ b/dashboard-ui/bower_components/iron-location/.travis.yml @@ -0,0 +1,25 @@ +language: node_js +sudo: false +node_js: stable +addons: + firefox: latest + apt: + sources: + - google-chrome + - ubuntu-toolchain-r-test + packages: + - google-chrome-stable + - g++-4.8 + sauce_connect: true +before_script: + - npm install -g bower polylint web-component-tester + - bower install + - polylint +script: + - xvfb-run wct + - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi" +env: + global: + - secure: GQ+cUlta7BWa8Gq4YXrBStPzwRpHT2QG79T4pbDTz2Zs1RvT0GYQaEUksPQnsNCwnTF8ondXhUfMxHcC/r8p7YTCt2hSJSsKkx0lMertsjbKW38ZG28liaAN8msYGb9hnTs4qxhpVEX1pZtOI13RKBU85dw+jKbtxKDX/jVrMn42XCMhEmTeLxM4z8dW5nBu6LW6F3nwABQIUfdc/3OeIYG+2n+84zkXIsX1BFeejq28E6fYJAoMJgqfugLPgPu4IEVCWZJwYl2SgdXwxAcJ2auPph5GJ3DLd0fRRD1TZ94/u0A+eJcQ0OPiPu8hLpQNXOkCgAnO5jkpTCDERNQnB4nY8VfZeZdf1RLAB4VmxzOAbJwJcnqGrh89H6RhKKXyhcuFCgFACYfkzncBCs+co5KwVcwLq88cDOUbnmo3DlwQWpkfusvKy/ZrMrFrX1zycJWN4u8rDsIH4ELasSQh/J3OIa9l2mKfL/OEvqCmpv/ZLGlOVSvNLpr4U7vTVdZBP6C9rtwVXX7VzrClttiidHfoxztAMrNh2GBMjNH9n3FuWMoA/OSoxQGc7RreTsuzdniw3iJYUHIeG08R9bqRtSVA71AlQrbqUaHR+WM7rf7GUx6xG0uDop5vH0RDkE0Nld1W8XuVhHQUg3y3fd4AHJAQVmM7Zsfa3AY1gSr3hV0= + - secure: He0JAbtg9jFzuEBRHQdFWHJ33uueY/9Hxq4NB5PCAI1Z9ebIiTs73ofdNy6e+ftBqlQnBuhoKLfIpuD8Qj2kSdLHQvg1s6ojvNDmAvau1ZINCJRgOSKbGC0TvCVx9rT9Kqc83eqKvKDzr/rcpaIArgMYJzBrSG0D2Kn4luUQnWkKfo1knn17ytJFCvzqQvPWZTIZ6beJ7MRKXRU093a4wYMsKIxQHH65T4Ypj+RBsgv6Xnidjb8qZbNsEwaeOwExfsh30WUo/hSygRi2CP3KSRSc/vsMgSrGpFghZpnhjeDJAGTiDzCTxpJkAkHXereJT4agsWErcgSrRTaxi5G6f18o56pRS+I61BC5DuGGwSL7hOHWSC8pGzkwVFyz31MB2ll0HO3iQHMmcSjY37+G7toEP/vJ/UHm6SZoQq36HGJea7Ycv/2mk4HAHcVEDxhYG42bXXflxevFeqAkVUI7SxSaQpQuZF76/4th4uKFmAHPvRVj5yx8OWil9Lt6cG8DIEZaxXdJVueGgiODmmul7lAd5osO/1UCg4CTy1OnmuSJj7ax9LBa6YY2+3uvnBfE7fNUVKmVmVhlLsF0QAdj0LaFoSU0eQFWdReYqBxEvc4gOT3AtEpaAvfZnL11Q6wVyI7kCHhTHrltA4WENPOSA2u7W//WsQfHX3gRdpIVIVI= + - CXX=g++-4.8 diff --git a/dashboard-ui/bower_components/iron-location/CONTRIBUTING.md b/dashboard-ui/bower_components/iron-location/CONTRIBUTING.md new file mode 100644 index 0000000000..f147978a3e --- /dev/null +++ b/dashboard-ui/bower_components/iron-location/CONTRIBUTING.md @@ -0,0 +1,77 @@ + + +# 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-location/bower.json b/dashboard-ui/bower_components/iron-location/bower.json new file mode 100644 index 0000000000..eb2477212f --- /dev/null +++ b/dashboard-ui/bower_components/iron-location/bower.json @@ -0,0 +1,36 @@ +{ + "name": "iron-location", + "version": "0.8.0", + "description": "Bidirectional data binding into the page's URL.", + "private": true, + "authors": [ + "The Polymer Authors" + ], + "keywords": [ + "web-components", + "polymer", + "routing" + ], + "main": "iron-location.html", + "repository": { + "type": "git", + "url": "git://github.com/PolymerElements/iron-location.git" + }, + "license": "http://polymer.github.io/LICENSE.txt", + "homepage": "https://github.com/PolymerElements/iron-location", + "ignore": [], + "dependencies": { + "polymer": "Polymer/polymer#^1.0.0" + }, + "devDependencies": { + "promise-polyfill": "polymerlabs/promise-polyfill#^1.0.0", + "iron-component-page": "polymerelements/iron-component-page#^1.0.0", + "iron-flex-layout": "polymerelements/iron-flex-layout#^1.0.0", + "paper-input": "polymerelements/paper-input#^1.0.0", + "paper-slider": "polymerelements/paper-slider#^1.0.0", + "paper-styles": "polymerelements/paper-styles#^1.0.0", + "test-fixture": "polymerelements/test-fixture#^1.0.0", + "web-component-tester": "^4.0.0", + "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" + } +} diff --git a/dashboard-ui/bower_components/iron-location/demo/index.html b/dashboard-ui/bower_components/iron-location/demo/index.html new file mode 100644 index 0000000000..50f5ec743c --- /dev/null +++ b/dashboard-ui/bower_components/iron-location/demo/index.html @@ -0,0 +1,124 @@ + + + + + + iron-location + + + + + + + + + + + + + + + + + + + + diff --git a/dashboard-ui/bower_components/iron-location/demo/iron-query-params.html b/dashboard-ui/bower_components/iron-location/demo/iron-query-params.html new file mode 100644 index 0000000000..a7d753a716 --- /dev/null +++ b/dashboard-ui/bower_components/iron-location/demo/iron-query-params.html @@ -0,0 +1,119 @@ + + + + + + iron-query-params + + + + + + + + + + + + + + + + + + diff --git a/dashboard-ui/bower_components/iron-location/index.html b/dashboard-ui/bower_components/iron-location/index.html new file mode 100644 index 0000000000..8ded210751 --- /dev/null +++ b/dashboard-ui/bower_components/iron-location/index.html @@ -0,0 +1,27 @@ + + + + + + iron-location + + + + + + + + + + + + + diff --git a/dashboard-ui/bower_components/iron-location/iron-location.html b/dashboard-ui/bower_components/iron-location/iron-location.html new file mode 100644 index 0000000000..534959247c --- /dev/null +++ b/dashboard-ui/bower_components/iron-location/iron-location.html @@ -0,0 +1,301 @@ + + + + + + diff --git a/dashboard-ui/bower_components/iron-location/iron-query-params.html b/dashboard-ui/bower_components/iron-location/iron-query-params.html new file mode 100644 index 0000000000..d21a468087 --- /dev/null +++ b/dashboard-ui/bower_components/iron-location/iron-query-params.html @@ -0,0 +1,83 @@ + + + + + + diff --git a/dashboard-ui/bower_components/iron-location/test/index.html b/dashboard-ui/bower_components/iron-location/test/index.html new file mode 100644 index 0000000000..83e5250ba5 --- /dev/null +++ b/dashboard-ui/bower_components/iron-location/test/index.html @@ -0,0 +1,26 @@ + + + + + + + + + + + + diff --git a/dashboard-ui/bower_components/iron-location/test/initialization-cases.html b/dashboard-ui/bower_components/iron-location/test/initialization-cases.html new file mode 100644 index 0000000000..f8bde4f542 --- /dev/null +++ b/dashboard-ui/bower_components/iron-location/test/initialization-cases.html @@ -0,0 +1,277 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dashboard-ui/bower_components/iron-location/test/initialization-iframe.html b/dashboard-ui/bower_components/iron-location/test/initialization-iframe.html new file mode 100644 index 0000000000..564bf262a0 --- /dev/null +++ b/dashboard-ui/bower_components/iron-location/test/initialization-iframe.html @@ -0,0 +1,61 @@ + + + + + + + Base source for injecting into an iframe for tests + + + + + + + diff --git a/dashboard-ui/bower_components/iron-location/test/initialization-tests.html b/dashboard-ui/bower_components/iron-location/test/initialization-tests.html new file mode 100644 index 0000000000..16c911191d --- /dev/null +++ b/dashboard-ui/bower_components/iron-location/test/initialization-tests.html @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/dashboard-ui/bower_components/iron-location/test/iron-location.html b/dashboard-ui/bower_components/iron-location/test/iron-location.html new file mode 100644 index 0000000000..8c57298a16 --- /dev/null +++ b/dashboard-ui/bower_components/iron-location/test/iron-location.html @@ -0,0 +1,140 @@ + + + + + iron-location + + + + + + + + + + + + + + + + + + + diff --git a/dashboard-ui/bower_components/iron-location/test/iron-query-params.html b/dashboard-ui/bower_components/iron-location/test/iron-query-params.html new file mode 100644 index 0000000000..4dea02f387 --- /dev/null +++ b/dashboard-ui/bower_components/iron-location/test/iron-query-params.html @@ -0,0 +1,96 @@ + + + + + iron-location + + + + + + + + + + + + + + + + diff --git a/dashboard-ui/bower_components/iron-selector/.bower.json b/dashboard-ui/bower_components/iron-selector/.bower.json index c6b481c2cb..66d7d54b0f 100644 --- a/dashboard-ui/bower_components/iron-selector/.bower.json +++ b/dashboard-ui/bower_components/iron-selector/.bower.json @@ -36,7 +36,7 @@ "tag": "v1.3.0", "commit": "1662093611cda3fd29125cdab94a61d3d88093da" }, - "_source": "git://github.com/polymerelements/iron-selector.git", + "_source": "git://github.com/PolymerElements/iron-selector.git", "_target": "^1.0.0", - "_originalSource": "polymerelements/iron-selector" + "_originalSource": "PolymerElements/iron-selector" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/paper-icon-button/.bower.json b/dashboard-ui/bower_components/paper-icon-button/.bower.json index 5962b46698..abc5b3bf1c 100644 --- a/dashboard-ui/bower_components/paper-icon-button/.bower.json +++ b/dashboard-ui/bower_components/paper-icon-button/.bower.json @@ -34,14 +34,14 @@ "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" }, "ignore": [], - "homepage": "https://github.com/PolymerElements/paper-icon-button", + "homepage": "https://github.com/polymerelements/paper-icon-button", "_release": "1.0.7", "_resolution": { "type": "version", "tag": "v1.0.7", "commit": "7623d73efeb6e2e88e2abdb5e4d00641d39e400f" }, - "_source": "git://github.com/PolymerElements/paper-icon-button.git", + "_source": "git://github.com/polymerelements/paper-icon-button.git", "_target": "^1.0.0", - "_originalSource": "PolymerElements/paper-icon-button" + "_originalSource": "polymerelements/paper-icon-button" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/polymer/.bower.json b/dashboard-ui/bower_components/polymer/.bower.json index bbad7fe7ba..3e8a4009a3 100644 --- a/dashboard-ui/bower_components/polymer/.bower.json +++ b/dashboard-ui/bower_components/polymer/.bower.json @@ -34,6 +34,6 @@ "commit": "11c987b2eb3c73b388a79fc8aaea8ca01624f514" }, "_source": "git://github.com/Polymer/polymer.git", - "_target": "^1.1.0", + "_target": "^1.0.0", "_originalSource": "Polymer/polymer" } \ No newline at end of file