diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..1e834899 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,110 @@ +# Contributing to the development of Polymer CDN + +If Polymer had a new release that you want to try and it's not here yet +on Polymer CDN, you can help yourself and contribute to this project. +Follow these steps to make a new version of Polymer available on Polymer CDN. + +## Prerequisites +Before you start, make sure you have installed [Node JS](https://nodejs.org/en/), +[NPM](https://www.npmjs.com/) (comes with Node) and [Bower](https://bower.io/). +Haven't used Node JS yet? See this as an excuse to try the water. You'll love it! +As far as Git itself goes, I assume you already have it, but I can recommend +installing the [TortoiseGit](https://tortoisegit.org/) client. It's great and +it's what I'm using in this guide. + +## Fork this project +This is recommended even if you just use `polymer-cdn`, because it gives you full +control over the contents of the CDN and is so easy to do. Just press that button +on the top right and hit it! + +![Fork polymer-cdn](https://cdn.rawgit.com/Download/polymer-cdn/1.6.0/doc/fork.png) + +## Clone your fork +Clone your fork to your local machine. + +![Clone your fork](https://cdn.rawgit.com/Download/polymer-cdn/1.6.0/doc/clone.png) + +## Create a branch and switch to it +This is a very important step as it will make it much easier later on to create a +Pull Request. Don't forget this step! + +![Create a branch](https://cdn.rawgit.com/Download/polymer-cdn/1.6.0/doc/branch.png) + +**(If you are like me and already started editing before realizing you need a new branch, +the easiest thing to do in my experience is to Stash Save your changes. Git will store +your changes out of sight and restore your workspace. You can then create the branch +and Stash Pop your changes on top of that. Make sure you include untracked changes)** + +## Edit bower.json + +**This step is optional.** Normally all versions will be set to #latest so you only have +to run `bower update` (next step), but sometimes (like for me today as I'm writing +this) you want to upgrade to a specific version of Polymer or one of the components. +In that case, just list that version in `bower.json` beforehand. + +```json +{ + .. + + "dependencies": { + "polymer": "Polymer/polymer#1.6.0", + "paper-elements": "polymerelements/paper-elements#latest", + "iron-elements": "polymerelements/iron-elements#latest", + "neon-elements": "polymerelements/neon-elements#latest", + "gold-elements": "polymerelements/gold-elements#latest", + "platinum-elements": "polymerelements/platinum-elements#latest", + "app-elements": "polymerelements/app-elements#0.9.0", + "google-web-components": "GoogleWebComponents/google-web-components#latest", + "molecules": "polymerelements/molecules#latest" + } +} +``` + +## Run bower update +Open a command prompt in the root of the `polymer-cdn` project and run `bower update`. + +```sh +$ bower update +``` + +## Copy the dependency tree to README.md +In the root of the project, run +```sh +bower list +```` +Copy the resulting dependency tree and paste it at the bottom of `README.md` + +## Add your name to the contributors section in package.json +Just copy-paste one of the existing contributor sections and fill in your info. + +## Bump the version +Change the version number in a few places. It should match the Polymer version, +unless there is a second release with the same Polymer version, in which case +we append a `.2`, or a `.3` for the third release etc. For example: `1.4.0.2`. + +Use search/replace to change the old version to the new one in these files: +* package.json +* bower.json +* README.md + +## Commit your changes +Commit your changes with a commit message that describes what changed. + +## Push them to GitHub +Like the title says :) + +## Test them with rawgit +You can test it by opening this [Codepen](http://codepen.io/StijnDeWitt/pen/EyPyyL) +and replacing the url in the `` tag at the top with one that points +to the new branch on your fork. + +## Create a Pull Request +After you've tested (and possibly committed and pushed fixes), you can create a +Pull Request (PR). If you go to your fork on GitHub, you'll notice a bar at the +top of the screen with a nice and shiny green button: + +![Pull request](https://cdn.rawgit.com/Download/polymer-cdn/1.6.0/doc/pr.png) + +I can't wait until you click that one! + + diff --git a/README.md b/README.md index 7d9628bd..23a6afb8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# polymer-cdn v1.5.0 +# polymer-cdn v1.6.0 **A mirror of Polymer's components so that they can be used directly from CDN** ![Polymer CDN is powered by MaxCDN](http://i.imgur.com/9obTXpk.png) @@ -6,7 +6,7 @@ ## How to use In general, given an element named `my-cool-element`, the CDN url for it will be: ``` -https://cdn.rawgit.com/download/polymer-cdn/1.5.0/lib/my-cool-element/my-cool-element.html +https://cdn.rawgit.com/download/polymer-cdn/1.6.0/lib/my-cool-element/my-cool-element.html ``` To be sure, browse this repo and copy-paste the url to the raw version into [RawGit](https://rawgit.com). @@ -39,20 +39,13 @@ a way that (transitive) dependencies can be correctly resolved for all component missing some (version of) a component, please [create an issue](https://github.com/Download/polymer-cdn/issues) explaining what should be changed and I'll do my best to implement it. -Pull requests are of course also always welcome! If you want to try that, here is the rough procedure: - 1. Create an issue in this repo describing your change and mention you're preparing a pull request - 2. Fork this repo - 3. Clone your forked repo to your own machine - 4. Create and switch to a new Branch - 5. Implement the change - 6. Commit your change, making sure to mention the URL to the issue created in step 1 in the commit comment - 7. Push your change to your fork (make sure to push the right branch) - 8. Create a Pull Request from your change. +In the meanwhile, you can *fork this project* and apply the needed updates to your +own fork. It's a pretty simple process. Have a look at the [Contribution Guide](https://github.com/Download/polymer-cdn/blob/master/CONTRIBUTING.md) +which explains it in more detail. -I will review the PR and if it looks good, Merge it and Publish the resulting work as a new Release. ## Contents -All the libraries available in polymer-cdn can be found side-by-side in the [lib](https://github.com/Download/polymer-cdn/tree/1.5.0/lib) subfolder. +All the libraries available in polymer-cdn can be found side-by-side in the [lib](https://github.com/Download/polymer-cdn/tree/1.6.0/lib) subfolder. Some of the libraries depend on other libraries. We call those other libraries the dependencies of the library. These dependencies will also be pulled into your page when you include such a library. @@ -65,1440 +58,1347 @@ These dependencies are themselves also listed at the top-level, so you can work tree for a library by carefully examining this diagram. ```sh -polymer-cdn#1.5.0 -├─┬ app-elements#0.9.0 -│ ├─┬ app-layout#0.9.1 +polymer-cdn#1.6.0 +├─┬ app-elements#0.9.0 (latest is 0.10.0) +│ ├─┬ app-layout#0.9.2 (latest is 0.10.4) │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 (1.6.1 available) │ │ ├─┬ iron-media-query#1.0.8 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-scroll-target-behavior#1.0.6 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ app-localize-behavior#0.9.1 +│ │ │ └── polymer#1.6.0 (1.6.1 available) +│ │ ├─┬ iron-resizable-behavior#1.0.5 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-scroll-target-behavior#1.0.8 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 (1.6.1 available) +│ ├─┬ app-localize-behavior#0.9.2 (latest is 0.10.0) │ │ ├── intl-messageformat#1.3.0 -│ │ ├─┬ iron-ajax#1.2.0 -│ │ │ ├── polymer#1.5.0 -│ │ │ └─┬ promise-polyfill#1.0.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ app-pouchdb#0.9.1 -│ │ ├─┬ app-storage#0.9.3 -│ │ │ ├── polymer#1.5.0 -│ │ │ └─┬ promise-polyfill#1.0.0 -│ │ │ └── polymer#1.5.0 -│ │ ├── polymer#1.5.0 -│ │ ├── pouchdb#5.4.1 -│ │ ├── pouchdb-find#0.9.0 (latest is 0.10.0) -│ │ └─┬ promise-polyfill#1.0.0 -│ │ └── polymer#1.5.0 -│ ├─┬ app-route#0.9.1 -│ │ ├── iron-location#0.8.3 -│ │ └── polymer#1.5.0 -│ └── app-storage#0.9.3 -├─┬ carbon-elements#0.1.0 extraneous -│ └─┬ carbon-route#0.8.5 extraneous (latest is 0.9.1) -│ ├─┬ iron-location#0.8.3 -│ │ └── polymer#1.5.0 -│ └─┬ polymer#1.5.0 -│ └── webcomponentsjs#0.7.22 -├─┬ carbon-route#0.8.5 extraneous (latest is 0.9.1) -│ ├─┬ iron-location#0.8.3 -│ │ └── polymer#1.5.0 -│ └─┬ polymer#1.5.0 -│ └── webcomponentsjs#0.7.22 +│ │ ├─┬ iron-ajax#1.4.3 +│ │ │ ├── polymer#1.6.0 (1.6.1 available) +│ │ │ └─┬ promise-polyfill#1.0.1 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 (1.6.1 available) +│ ├─┬ app-pouchdb#0.9.2 +│ │ ├─┬ app-storage#0.9.5 +│ │ │ ├── polymer#1.6.0 (1.6.1 available) +│ │ │ └─┬ promise-polyfill#1.0.1 +│ │ │ └── polymer#1.6.0 +│ │ ├── polymer#1.6.0 (1.6.1 available) +│ │ ├── pouchdb#6.0.4 +│ │ ├── pouchdb-find#0.10.3 +│ │ └─┬ promise-polyfill#1.0.1 +│ │ └── polymer#1.6.0 +│ ├─┬ app-route#0.9.2 +│ │ ├── iron-location#0.8.8 +│ │ └── polymer#1.6.0 (1.6.1 available) +│ └── app-storage#0.9.5 +├── firebase-sdk extraneous ├─┬ gold-elements#1.0.1 │ ├─┬ gold-cc-cvc-input#1.0.9 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-icon#1.0.8 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-icon#1.0.10 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├── paper-input#1.1.11 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├── paper-input#1.1.19 │ │ ├─┬ paper-styles#1.1.4 │ │ │ ├── font-roboto#1.0.1 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ gold-cc-expiration-input#1.1.2 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-validator-behavior#1.0.1 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├── paper-input#1.1.11 +│ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├── paper-input#1.1.19 │ │ ├─┬ paper-styles#1.1.4 │ │ │ ├── font-roboto#1.0.1 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ gold-cc-input#1.0.7 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-icon#1.0.8 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-icon#1.0.10 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-validator-behavior#1.0.1 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├── paper-input#1.1.11 +│ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├── paper-input#1.1.19 │ │ ├─┬ paper-styles#1.1.4 │ │ │ ├── font-roboto#1.0.1 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ gold-email-input#1.0.7 │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-icon#1.0.8 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-icon#1.0.10 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├── paper-input#1.1.11 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├── paper-input#1.1.19 │ │ ├─┬ paper-styles#1.1.4 │ │ │ ├── font-roboto#1.0.1 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ gold-phone-input#1.0.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├─┬ gold-phone-input#1.1.0 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-input#1.0.10 -│ │ │ ├─┬ iron-a11y-announcer#1.0.4 -│ │ │ │ └── polymer#1.5.0 +│ │ │ ├─┬ iron-a11y-announcer#1.0.5 +│ │ │ │ └── polymer#1.6.0 (1.6.1 available) │ │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├── paper-input#1.1.11 +│ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├── paper-input#1.1.19 │ │ ├─┬ paper-styles#1.1.4 │ │ │ ├── font-roboto#1.0.1 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ └─┬ gold-zip-input#1.0.5 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 (1.6.1 available) +│ └─┬ gold-zip-input#1.0.6 │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-icon#1.0.8 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-icon#1.0.10 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-meta#1.1.1 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-meta#1.1.2 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ iron-validator-behavior#1.0.1 -│ │ ├─┬ iron-meta#1.1.1 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├── paper-input#1.1.11 +│ │ ├─┬ iron-meta#1.1.2 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├── paper-input#1.1.19 │ ├─┬ paper-styles#1.1.4 │ │ ├── font-roboto#1.0.1 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ └── polymer#1.6.0 ├─┬ google-web-components#1.1.0 -│ ├─┬ firebase-element#1.0.14 -│ │ ├── firebase#2.4.2 (latest is 3.0.4) -│ │ └── polymer#1.5.0 -│ ├─┬ google-analytics#1.2.1 -│ │ ├── ga-api-utils#0.2.0 (latest is 0.5.0) -│ │ ├─┬ google-chart#1.0.5 -│ │ │ ├─┬ google-apis#1.1.5 +│ ├─┬ firebase-element#1.0.15 +│ │ ├── firebase#3.4.0 incompatible with ^2.3.1 (2.4.2 available, latest is 3.4.0) +│ │ └── polymer#1.6.0 +│ ├─┬ google-analytics#1.2.2 +│ │ ├── ga-api-utils#0.2.0 (latest is 0.6.0) +│ │ ├─┬ google-chart#1.1.0 +│ │ │ ├─┬ google-apis#1.1.6 │ │ │ │ ├─┬ iron-jsonp-library#1.0.4 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-ajax#1.2.0 -│ │ │ │ ├── polymer#1.5.0 -│ │ │ │ └─┬ promise-polyfill#1.0.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├── polymer#1.5.0 -│ │ │ └─┬ promise-polyfill#1.0.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ google-signin#1.3.4 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-ajax#1.4.3 +│ │ │ │ ├── polymer#1.6.0 +│ │ │ │ └─┬ promise-polyfill#1.0.1 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├── polymer#1.6.0 +│ │ │ └─┬ promise-polyfill#1.0.1 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ google-signin#1.3.6 │ │ │ ├── font-roboto#1.0.1 -│ │ │ ├─┬ google-apis#1.1.5 +│ │ │ ├─┬ google-apis#1.1.6 │ │ │ │ ├─┬ iron-jsonp-library#1.0.4 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├── iron-flex-layout#1.3.1 -│ │ │ ├─┬ iron-icon#1.0.8 +│ │ │ ├─┬ iron-icon#1.0.10 │ │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├─┬ iron-iconset-svg#1.0.9 -│ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├─┬ paper-material#1.0.6 │ │ │ │ ├─┬ paper-styles#1.1.4 │ │ │ │ │ ├── font-roboto#1.0.1 │ │ │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ paper-ripple#1.0.5 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├── polymer#1.5.0 -│ │ └─┬ promise-polyfill#1.0.0 -│ │ └── polymer#1.5.0 -│ ├─┬ google-apis#1.1.5 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ paper-ripple#1.0.8 +│ │ │ │ ├── iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├── polymer#1.6.0 +│ │ └─┬ promise-polyfill#1.0.1 +│ │ └── polymer#1.6.0 +│ ├─┬ google-apis#1.1.6 │ │ ├─┬ iron-jsonp-library#1.0.4 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ google-calendar#1.0.1 -│ │ ├── google-apis#1.1.5 -│ │ ├── google-signin#1.3.4 -│ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├─┬ google-calendar#1.0.2 +│ │ ├── google-apis#1.1.6 +│ │ ├── google-signin#1.3.6 +│ │ └── polymer#1.6.0 │ ├─┬ google-castable-video#1.0.2 -│ │ └── polymer#1.5.0 -│ ├─┬ google-chart#1.0.5 -│ │ ├─┬ google-apis#1.1.5 +│ │ └── polymer#1.6.0 +│ ├─┬ google-chart#1.1.0 +│ │ ├─┬ google-apis#1.1.6 │ │ │ ├─┬ iron-jsonp-library#1.0.4 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-ajax#1.2.0 -│ │ │ ├── polymer#1.5.0 -│ │ │ └─┬ promise-polyfill#1.0.0 -│ │ │ └── polymer#1.5.0 -│ │ ├── polymer#1.5.0 -│ │ └─┬ promise-polyfill#1.0.0 -│ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-ajax#1.4.3 +│ │ │ ├── polymer#1.6.0 +│ │ │ └─┬ promise-polyfill#1.0.1 +│ │ │ └── polymer#1.6.0 +│ │ ├── polymer#1.6.0 +│ │ └─┬ promise-polyfill#1.0.1 +│ │ └── polymer#1.6.0 │ ├─┬ google-feeds#1.0.2 -│ │ ├── google-apis#1.1.5 +│ │ ├── google-apis#1.1.6 │ │ ├─┬ iron-jsonp-library#1.0.4 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ google-hangout-button#1.0.1 -│ │ ├─┬ google-apis#1.1.5 +│ │ ├─┬ google-apis#1.1.6 │ │ │ ├─┬ iron-jsonp-library#1.0.4 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ google-map#1.1.10 -│ │ ├── google-apis#1.1.5 -│ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├─┬ google-map#1.1.11 +│ │ ├── google-apis#1.1.6 +│ │ ├─┬ iron-resizable-behavior#1.0.5 +│ │ │ └── polymer#1.6.0 │ │ ├── iron-selector#1.5.2 -│ │ └── polymer#1.5.0 +│ │ └── polymer#1.6.0 (1.6.1 available) │ ├─┬ google-sheets#1.0.5 -│ │ ├── google-apis#1.1.5 -│ │ ├── google-signin#1.3.4 -│ │ ├─┬ iron-ajax#1.2.0 -│ │ │ ├── polymer#1.5.0 -│ │ │ └─┬ promise-polyfill#1.0.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ google-signin#1.3.4 +│ │ ├── google-apis#1.1.6 +│ │ ├── google-signin#1.3.6 +│ │ ├─┬ iron-ajax#1.4.3 +│ │ │ ├── polymer#1.6.0 +│ │ │ └─┬ promise-polyfill#1.0.1 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 (1.6.1 available) +│ ├─┬ google-signin#1.3.6 │ │ ├── font-roboto#1.0.1 -│ │ ├─┬ google-apis#1.1.5 +│ │ ├─┬ google-apis#1.1.6 │ │ │ ├─┬ iron-jsonp-library#1.0.4 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├── iron-flex-layout#1.3.1 -│ │ ├─┬ iron-icon#1.0.8 +│ │ ├─┬ iron-icon#1.0.10 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-iconset-svg#1.0.9 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ paper-material#1.0.6 │ │ │ ├─┬ paper-styles#1.1.4 │ │ │ │ ├── font-roboto#1.0.1 │ │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ paper-ripple#1.0.5 -│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ paper-ripple#1.0.8 +│ │ │ ├── iron-a11y-keys-behavior#1.1.9 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ google-streetview-pano#1.0.3 -│ │ ├── google-apis#1.1.5 -│ │ └── polymer#1.5.0 +│ │ ├── google-apis#1.1.6 +│ │ └── polymer#1.6.0 (1.6.1 available) │ ├─┬ google-url-shortener#1.0.1 -│ │ ├─┬ google-apis#1.1.5 +│ │ ├─┬ google-apis#1.1.6 │ │ │ ├─┬ iron-jsonp-library#1.0.4 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ google-youtube#1.2.1 -│ │ ├─┬ google-apis#1.1.5 +│ │ ├─┬ google-apis#1.1.6 │ │ │ ├─┬ iron-jsonp-library#1.0.4 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-localstorage#1.0.5 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-localstorage#1.0.6 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ google-youtube-upload#1.1.2 (latest is 2.0.0) │ │ ├── cors-upload-sample#37c97848a2 -│ │ ├─┬ google-signin#1.3.4 +│ │ ├─┬ google-signin#1.3.6 │ │ │ ├── font-roboto#1.0.1 -│ │ │ ├─┬ google-apis#1.1.5 +│ │ │ ├─┬ google-apis#1.1.6 │ │ │ │ ├─┬ iron-jsonp-library#1.0.4 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├── iron-flex-layout#1.3.1 -│ │ │ ├─┬ iron-icon#1.0.8 +│ │ │ ├─┬ iron-icon#1.0.10 │ │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├─┬ iron-iconset-svg#1.0.9 -│ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├─┬ paper-material#1.0.6 │ │ │ │ ├─┬ paper-styles#1.1.4 │ │ │ │ │ ├── font-roboto#1.0.1 │ │ │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ paper-ripple#1.0.5 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ └─┬ polymerfire#0.9.2 -│ ├── app-storage#0.9.3 -│ ├── firebase-sdk -│ └── polymer#1.5.0 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ paper-ripple#1.0.8 +│ │ │ │ ├── iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ └─┬ polymerfire#0.9.7 +│ ├── app-storage#0.9.5 +│ ├── firebase#3.4.0 +│ └── polymer#1.6.0 (1.6.1 available) ├─┬ iron-elements#1.0.10 -│ ├─┬ iron-a11y-announcer#1.0.4 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-a11y-keys#1.0.5 -│ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-ajax#1.2.0 -│ │ ├── polymer#1.5.0 -│ │ └─┬ promise-polyfill#1.0.0 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-autogrow-textarea#1.0.12 -│ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ ├─┬ iron-a11y-announcer#1.0.5 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-a11y-keys#1.0.6 +│ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-ajax#1.4.3 +│ │ ├── polymer#1.6.0 +│ │ └─┬ promise-polyfill#1.0.1 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-autogrow-textarea#1.0.13 +│ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-behaviors#1.0.16 -│ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-checked-element-behavior#1.0.4 +│ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-behaviors#1.0.17 +│ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-checked-element-behavior#1.0.5 │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-collapse#1.1.0 -│ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-component-page#1.1.6 -│ │ ├── hydrolysis#1.24.0 -│ │ ├─┬ iron-ajax#1.2.0 -│ │ │ ├── polymer#1.5.0 -│ │ │ └─┬ promise-polyfill#1.0.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-doc-viewer#1.0.14 -│ │ │ ├─┬ marked-element#1.1.3 -│ │ │ │ ├── marked#0.3.5 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ paper-button#1.0.12 +│ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-collapse#1.2.1 +│ │ ├─┬ iron-resizable-behavior#1.0.5 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-component-page#1.1.7 +│ │ ├── hydrolysis#1.24.1 +│ │ ├─┬ iron-ajax#1.4.3 +│ │ │ ├── polymer#1.6.0 +│ │ │ └─┬ promise-polyfill#1.0.1 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-doc-viewer#1.0.15 +│ │ │ ├─┬ marked-element#1.2.0 +│ │ │ │ ├── marked#0.3.6 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ paper-button#1.0.13 │ │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ paper-behaviors#1.0.11 -│ │ │ │ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ ├─┬ iron-checked-element-behavior#1.0.4 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ ├─┬ paper-behaviors#1.0.12 +│ │ │ │ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ ├─┬ iron-checked-element-behavior#1.0.5 │ │ │ │ │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ │ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ │ │ └── polymer#1.6.0 │ │ │ │ │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ │ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ ├─┬ paper-ripple#1.0.5 -│ │ │ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ ├─┬ paper-ripple#1.0.8 +│ │ │ │ │ │ ├── iron-a11y-keys-behavior#1.1.9 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ └── polymer#1.6.0 (1.6.1 available) │ │ │ │ ├─┬ paper-material#1.0.6 │ │ │ │ │ ├─┬ paper-styles#1.1.4 │ │ │ │ │ │ ├── font-roboto#1.0.1 │ │ │ │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├─┬ paper-styles#1.1.4 │ │ │ │ ├── font-roboto#1.0.1 │ │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├── polymer#1.5.0 -│ │ │ └─┬ prism-element#1.1.0 -│ │ │ ├── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├── polymer#1.6.0 +│ │ │ └─┬ prism-element#1.1.1 +│ │ │ ├── polymer#1.6.0 │ │ │ └── prism#1.5.1 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-icons#1.1.3 -│ │ │ ├─┬ iron-icon#1.0.8 +│ │ │ ├─┬ iron-icon#1.0.10 │ │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├─┬ iron-iconset-svg#1.0.9 -│ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-selector#1.5.2 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ paper-header-panel#1.1.6 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ paper-styles#1.1.4 │ │ │ ├── font-roboto#1.0.1 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ paper-toolbar#1.1.4 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ paper-toolbar#1.1.6 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├── paper-styles#1.1.4 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-demo-helpers#1.2.3 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-demo-helpers#1.2.5 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-icons#1.1.3 -│ │ │ ├─┬ iron-icon#1.0.8 +│ │ │ ├─┬ iron-icon#1.0.10 │ │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├─┬ iron-iconset-svg#1.0.9 -│ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-location#0.8.3 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ marked-element#1.1.3 -│ │ │ ├── marked#0.3.5 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ paper-icon-button#1.1.1 -│ │ │ ├─┬ iron-icon#1.0.8 +│ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-location#0.8.8 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ marked-element#1.2.0 +│ │ │ ├── marked#0.3.6 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ paper-icon-button#1.1.2 +│ │ │ ├─┬ iron-icon#1.0.10 │ │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ paper-behaviors#1.0.11 -│ │ │ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ iron-checked-element-behavior#1.0.4 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ paper-behaviors#1.0.12 +│ │ │ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ ├─┬ iron-checked-element-behavior#1.0.5 │ │ │ │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ │ └── polymer#1.6.0 │ │ │ │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ paper-ripple#1.0.5 -│ │ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ ├─┬ paper-ripple#1.0.8 +│ │ │ │ │ ├── iron-a11y-keys-behavior#1.1.9 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├─┬ paper-styles#1.1.4 │ │ │ │ ├── font-roboto#1.0.1 │ │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ paper-styles#1.1.4 │ │ │ ├── font-roboto#1.0.1 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├── polymer#1.5.0 -│ │ └── prism-element#1.1.0 -│ ├── iron-doc-viewer#1.0.14 -│ ├─┬ iron-dropdown#1.4.1 -│ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-overlay-behavior#1.8.0 -│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-fit-behavior#1.2.2 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ neon-animation#1.2.3 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├── polymer#1.6.0 +│ │ └── prism-element#1.1.1 +│ ├── iron-doc-viewer#1.0.15 +│ ├─┬ iron-dropdown#1.5.2 +│ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├── iron-overlay-behavior#1.8.6 +│ │ ├─┬ iron-resizable-behavior#1.0.5 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ neon-animation#1.2.4 +│ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-resizable-behavior#1.0.5 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├─┬ iron-selector#1.5.2 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├── polymer#1.5.0 -│ │ │ └── web-animations-js#2.2.1 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-fit-behavior#1.2.2 -│ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├── polymer#1.6.0 +│ │ │ └── web-animations-js#2.2.2 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-fit-behavior#1.2.5 +│ │ └── polymer#1.6.0 │ ├─┬ iron-flex-layout#1.3.1 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-form#1.0.16 -│ │ ├─┬ iron-ajax#1.2.0 -│ │ │ ├── polymer#1.5.0 -│ │ │ └─┬ promise-polyfill#1.0.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-form#1.1.4 +│ │ ├─┬ iron-ajax#1.4.3 +│ │ │ ├── polymer#1.6.0 +│ │ │ └─┬ promise-polyfill#1.0.1 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-icon#1.0.8 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-icon#1.0.10 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-meta#1.1.1 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-meta#1.1.2 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ iron-icons#1.1.3 -│ │ ├─┬ iron-icon#1.0.8 +│ │ ├─┬ iron-icon#1.0.10 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-iconset-svg#1.0.9 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ iron-iconset#1.0.4 -│ │ ├─┬ iron-meta#1.1.1 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ ├─┬ iron-meta#1.1.2 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ iron-iconset-svg#1.0.9 -│ │ ├─┬ iron-meta#1.1.1 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├── iron-image#1.2.3 +│ │ ├─┬ iron-meta#1.1.2 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├── iron-image#1.2.5 │ ├─┬ iron-input#1.0.10 -│ │ ├─┬ iron-a11y-announcer#1.0.4 -│ │ │ └── polymer#1.5.0 +│ │ ├─┬ iron-a11y-announcer#1.0.5 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ iron-jsonp-library#1.0.4 -│ │ └── polymer#1.5.0 +│ │ └── polymer#1.6.0 │ ├─┬ iron-label#1.0.2 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-list#1.3.2 -│ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-scroll-target-behavior#1.0.6 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-localstorage#1.0.5 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-location#0.8.3 -│ │ └── polymer#1.5.0 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-list#1.3.9 +│ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-resizable-behavior#1.0.5 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-scroll-target-behavior#1.0.8 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-localstorage#1.0.6 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-location#0.8.8 +│ │ └── polymer#1.6.0 │ ├─┬ iron-media-query#1.0.8 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-menu-behavior#1.1.7 -│ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ └── polymer#1.5.0 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-menu-behavior#1.1.10 +│ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-selector#1.5.2 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-meta#1.1.1 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-overlay-behavior#1.8.0 -│ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-fit-behavior#1.2.2 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-pages#1.0.7 -│ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 (1.6.1 available) +│ ├─┬ iron-meta#1.1.2 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-overlay-behavior#1.8.6 +│ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-fit-behavior#1.2.5 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-resizable-behavior#1.0.5 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-pages#1.0.8 +│ │ ├─┬ iron-resizable-behavior#1.0.5 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-selector#1.5.2 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-range-behavior#1.0.5 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-resizable-behavior#1.0.3 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-scroll-target-behavior#1.0.6 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-scroll-threshold#1.0.1 -│ │ ├─┬ iron-scroll-target-behavior#1.0.6 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-range-behavior#1.0.6 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-resizable-behavior#1.0.5 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-scroll-target-behavior#1.0.8 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-scroll-threshold#1.0.2 +│ │ ├─┬ iron-scroll-target-behavior#1.0.8 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ iron-selector#1.5.2 -│ │ └── polymer#1.5.0 +│ │ └── polymer#1.6.0 │ ├─┬ iron-signals#1.0.3 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-swipeable-container#1.0.2 -│ │ └── polymer#1.5.0 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-swipeable-container#1.0.3 +│ │ └── polymer#1.6.0 │ ├─┬ iron-test-helpers#1.2.5 -│ │ └── polymer#1.5.0 +│ │ └── polymer#1.6.0 │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ ├─┬ iron-meta#1.1.1 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ ├─┬ iron-meta#1.1.2 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ └─┬ iron-validator-behavior#1.0.1 -│ ├─┬ iron-meta#1.1.1 -│ │ └── polymer#1.5.0 -│ └── polymer#1.5.0 -├─┬ iron-page-url#0.7.3 extraneous (latest is 0.8.3) -│ └─┬ polymer#1.5.0 +│ ├─┬ iron-meta#1.1.2 +│ │ └── polymer#1.6.0 +│ └── polymer#1.6.0 +├─┬ iron-page-url#0.7.3 extraneous (latest is 0.8.8) +│ └─┬ polymer#1.6.0 │ └── webcomponentsjs#0.7.22 ├─┬ molecules#1.0.0 -│ └─┬ marked-element#1.1.3 -│ ├── marked#0.3.5 -│ └── polymer#1.5.0 +│ └─┬ marked-element#1.2.0 +│ ├── marked#0.3.6 +│ └── polymer#1.6.0 ├─┬ neon-elements#1.0.0 -│ └─┬ neon-animation#1.2.3 -│ ├─┬ iron-meta#1.1.1 -│ │ └── polymer#1.5.0 -│ ├─┬ iron-resizable-behavior#1.0.3 -│ │ └── polymer#1.5.0 +│ └─┬ neon-animation#1.2.4 +│ ├─┬ iron-meta#1.1.2 +│ │ └── polymer#1.6.0 +│ ├─┬ iron-resizable-behavior#1.0.5 +│ │ └── polymer#1.6.0 │ ├─┬ iron-selector#1.5.2 -│ │ └── polymer#1.5.0 -│ ├── polymer#1.5.0 -│ └── web-animations-js#2.2.1 +│ │ └── polymer#1.6.0 +│ ├── polymer#1.6.0 +│ └── web-animations-js#2.2.2 ├─┬ paper-elements#1.0.7 -│ ├─┬ paper-badge#1.1.1 -│ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ └── polymer#1.5.0 +│ ├─┬ paper-badge#1.1.3 +│ │ ├─┬ iron-resizable-behavior#1.0.5 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ paper-styles#1.1.4 │ │ │ ├── font-roboto#1.0.1 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ paper-behaviors#1.0.11 -│ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-checked-element-behavior#1.0.4 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├─┬ paper-behaviors#1.0.12 +│ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-checked-element-behavior#1.0.5 │ │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ paper-ripple#1.0.5 -│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ paper-button#1.0.12 +│ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ paper-ripple#1.0.8 +│ │ │ ├── iron-a11y-keys-behavior#1.1.9 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├─┬ paper-button#1.0.13 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ paper-behaviors#1.0.11 -│ │ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-checked-element-behavior#1.0.4 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ paper-behaviors#1.0.12 +│ │ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-checked-element-behavior#1.0.5 │ │ │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 │ │ │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ paper-ripple#1.0.5 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ paper-ripple#1.0.8 +│ │ │ │ ├── iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ paper-material#1.0.6 │ │ │ ├─┬ paper-styles#1.1.4 │ │ │ │ ├── font-roboto#1.0.1 │ │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ paper-card#1.1.1 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├─┬ paper-card#1.1.2 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-image#1.2.3 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-image#1.2.5 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ paper-material#1.0.6 │ │ │ ├─┬ paper-styles#1.1.4 │ │ │ │ ├── font-roboto#1.0.1 │ │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├── paper-styles#1.1.4 -│ │ └── polymer#1.5.0 -│ ├─┬ paper-checkbox#1.2.0 -│ │ ├─┬ iron-checked-element-behavior#1.0.4 +│ │ └── polymer#1.6.0 +│ ├─┬ paper-checkbox#1.4.0 +│ │ ├─┬ iron-checked-element-behavior#1.0.5 │ │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ paper-behaviors#1.0.11 -│ │ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-checked-element-behavior#1.0.4 +│ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ paper-behaviors#1.0.12 +│ │ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-checked-element-behavior#1.0.5 │ │ │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 │ │ │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ paper-ripple#1.0.5 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ paper-ripple#1.0.5 -│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ paper-ripple#1.0.8 +│ │ │ │ ├── iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ paper-ripple#1.0.8 +│ │ │ ├── iron-a11y-keys-behavior#1.1.9 +│ │ │ └── polymer#1.6.0 │ │ ├── paper-styles#1.1.4 -│ │ └── polymer#1.5.0 -│ ├─┬ paper-dialog#1.0.4 -│ │ ├─┬ neon-animation#1.2.3 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ │ └── polymer#1.5.0 +│ │ └── polymer#1.6.0 (1.6.1 available) +│ ├─┬ paper-dialog#1.1.0 +│ │ ├── iron-overlay-behavior#1.8.6 +│ │ ├─┬ neon-animation#1.2.4 +│ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-resizable-behavior#1.0.5 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├─┬ iron-selector#1.5.2 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├── polymer#1.5.0 -│ │ │ └── web-animations-js#2.2.1 -│ │ ├─┬ paper-dialog-behavior#1.2.6 -│ │ │ ├─┬ iron-overlay-behavior#1.8.0 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ iron-fit-behavior#1.2.2 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├── polymer#1.6.0 +│ │ │ └── web-animations-js#2.2.2 +│ │ ├─┬ paper-dialog-behavior#1.2.7 +│ │ │ ├─┬ iron-overlay-behavior#1.8.6 +│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ ├─┬ iron-fit-behavior#1.2.5 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ ├─┬ iron-resizable-behavior#1.0.5 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├── paper-styles#1.1.4 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ paper-styles#1.1.4 │ │ │ ├── font-roboto#1.0.1 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ paper-dialog-behavior#1.2.6 -│ │ ├─┬ iron-overlay-behavior#1.8.0 -│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-fit-behavior#1.2.2 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├─┬ paper-dialog-behavior#1.2.7 +│ │ ├─┬ iron-overlay-behavior#1.8.6 +│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-fit-behavior#1.2.5 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-resizable-behavior#1.0.5 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├── paper-styles#1.1.4 -│ │ └── polymer#1.5.0 -│ ├─┬ paper-dialog-scrollable#1.1.4 +│ │ └── polymer#1.6.0 +│ ├─┬ paper-dialog-scrollable#1.1.5 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ paper-dialog-behavior#1.2.6 -│ │ │ ├─┬ iron-overlay-behavior#1.8.0 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ iron-fit-behavior#1.2.2 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ paper-dialog-behavior#1.2.7 +│ │ │ ├─┬ iron-overlay-behavior#1.8.6 +│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ ├─┬ iron-fit-behavior#1.2.5 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ ├─┬ iron-resizable-behavior#1.0.5 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├── paper-styles#1.1.4 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ paper-styles#1.1.4 │ │ │ ├── font-roboto#1.0.1 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ paper-drawer-panel#1.0.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├─┬ paper-drawer-panel#1.0.10 │ │ ├─┬ iron-media-query#1.0.8 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-resizable-behavior#1.0.5 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-selector#1.5.2 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ paper-dropdown-menu#1.2.1 -│ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├─┬ paper-dropdown-menu#1.4.1 +│ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-icon#1.0.8 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-icon#1.0.10 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-iconset-svg#1.0.9 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ paper-behaviors#1.0.11 -│ │ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-checked-element-behavior#1.0.4 +│ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ paper-behaviors#1.0.12 +│ │ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-checked-element-behavior#1.0.5 │ │ │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 │ │ │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ paper-ripple#1.0.5 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ paper-input#1.1.11 -│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-autogrow-textarea#1.0.12 -│ │ │ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ paper-ripple#1.0.8 +│ │ │ │ ├── iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ paper-input#1.1.19 +│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-autogrow-textarea#1.0.13 +│ │ │ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ └── polymer#1.6.0 │ │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 │ │ │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 │ │ │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├─┬ iron-input#1.0.10 -│ │ │ │ ├─┬ iron-a11y-announcer#1.0.4 -│ │ │ │ │ └── polymer#1.5.0 +│ │ │ │ ├─┬ iron-a11y-announcer#1.0.5 +│ │ │ │ │ └── polymer#1.6.0 │ │ │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├── paper-styles#1.1.4 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ paper-menu-button#1.1.0 -│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-dropdown#1.4.1 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ iron-overlay-behavior#1.8.0 -│ │ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ ├─┬ iron-fit-behavior#1.2.2 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ neon-animation#1.2.3 -│ │ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ │ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ paper-menu-button#1.5.2 +│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-dropdown#1.5.2 +│ │ │ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ ├── iron-overlay-behavior#1.8.6 +│ │ │ │ ├─┬ iron-resizable-behavior#1.0.5 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ ├─┬ neon-animation#1.2.4 +│ │ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ ├─┬ iron-resizable-behavior#1.0.5 +│ │ │ │ │ │ └── polymer#1.6.0 │ │ │ │ │ ├─┬ iron-selector#1.5.2 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ ├── polymer#1.5.0 -│ │ │ │ │ └── web-animations-js#2.2.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ neon-animation#1.2.3 -│ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ ├── polymer#1.6.0 +│ │ │ │ │ └── web-animations-js#2.2.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├── iron-fit-behavior#1.2.5 +│ │ │ ├─┬ neon-animation#1.2.4 +│ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ ├─┬ iron-resizable-behavior#1.0.5 +│ │ │ │ │ └── polymer#1.6.0 │ │ │ │ ├─┬ iron-selector#1.5.2 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├── polymer#1.5.0 -│ │ │ │ └── web-animations-js#2.2.1 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ ├── polymer#1.6.0 +│ │ │ │ └── web-animations-js#2.2.2 │ │ │ ├─┬ paper-styles#1.1.4 │ │ │ │ ├── font-roboto#1.0.1 │ │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ paper-ripple#1.0.5 -│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ paper-ripple#1.0.8 +│ │ │ ├── iron-a11y-keys-behavior#1.1.9 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ paper-styles#1.1.4 │ │ │ ├── font-roboto#1.0.1 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ paper-fab#1.2.0 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-icon#1.0.8 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-icon#1.0.10 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-icons#1.1.3 -│ │ │ ├─┬ iron-icon#1.0.8 +│ │ │ ├─┬ iron-icon#1.0.10 │ │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├─┬ iron-iconset-svg#1.0.9 -│ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ paper-behaviors#1.0.11 -│ │ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-checked-element-behavior#1.0.4 +│ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ paper-behaviors#1.0.12 +│ │ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-checked-element-behavior#1.0.5 │ │ │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 │ │ │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ paper-ripple#1.0.5 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ paper-ripple#1.0.8 +│ │ │ │ ├── iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├── paper-material#1.0.6 │ │ ├─┬ paper-styles#1.1.4 │ │ │ ├── font-roboto#1.0.1 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ paper-header-panel#1.1.6 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ paper-icon-button#1.1.1 -│ │ ├─┬ iron-icon#1.0.8 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├─┬ paper-icon-button#1.1.2 +│ │ ├─┬ iron-icon#1.0.10 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ paper-behaviors#1.0.11 -│ │ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-checked-element-behavior#1.0.4 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ paper-behaviors#1.0.12 +│ │ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-checked-element-behavior#1.0.5 │ │ │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 │ │ │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ paper-ripple#1.0.5 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ paper-ripple#1.0.8 +│ │ │ │ ├── iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ paper-styles#1.1.4 │ │ │ ├── font-roboto#1.0.1 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├── paper-input#1.1.11 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├── paper-input#1.1.19 │ ├─┬ paper-item#1.2.1 -│ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ paper-styles#1.1.4 │ │ │ ├── font-roboto#1.0.1 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ paper-listbox#1.1.2 -│ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-collapse#1.1.0 -│ │ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-menu-behavior#1.1.7 -│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ └── polymer#1.5.0 +│ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-collapse#1.2.1 +│ │ │ ├─┬ iron-resizable-behavior#1.0.5 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-menu-behavior#1.1.10 +│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├─┬ iron-selector#1.5.2 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ paper-styles#1.1.4 │ │ │ ├── font-roboto#1.0.1 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ paper-material#1.0.6 │ │ ├─┬ paper-styles#1.1.4 │ │ │ ├── font-roboto#1.0.1 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ paper-menu#1.2.2 -│ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-collapse#1.1.0 -│ │ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-collapse#1.2.1 +│ │ │ ├─┬ iron-resizable-behavior#1.0.5 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-menu-behavior#1.1.7 -│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-selector#1.5.2 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ paper-styles#1.1.4 -│ │ │ ├── font-roboto#1.0.1 -│ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ paper-menu-button#1.1.0 -│ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-dropdown#1.4.1 -│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-overlay-behavior#1.8.0 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ iron-fit-behavior#1.2.2 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ neon-animation#1.2.3 -│ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ iron-selector#1.5.2 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├── polymer#1.5.0 -│ │ │ │ └── web-animations-js#2.2.1 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ neon-animation#1.2.3 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-menu-behavior#1.1.10 +│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├─┬ iron-selector#1.5.2 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├── polymer#1.5.0 -│ │ │ └── web-animations-js#2.2.1 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ paper-styles#1.1.4 │ │ │ ├── font-roboto#1.0.1 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ paper-progress#1.0.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├── paper-menu-button#1.5.2 +│ ├─┬ paper-progress#1.0.10 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-range-behavior#1.0.5 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-range-behavior#1.0.6 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ paper-styles#1.1.4 │ │ │ ├── font-roboto#1.0.1 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ paper-radio-button#1.2.0 -│ │ ├─┬ iron-checked-element-behavior#1.0.4 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├─┬ paper-radio-button#1.2.1 +│ │ ├─┬ iron-checked-element-behavior#1.0.5 │ │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├── iron-flex-layout#1.3.1 -│ │ ├─┬ paper-behaviors#1.0.11 -│ │ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-checked-element-behavior#1.0.4 +│ │ ├─┬ paper-behaviors#1.0.12 +│ │ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-checked-element-behavior#1.0.5 │ │ │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 │ │ │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ paper-ripple#1.0.5 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ paper-ripple#1.0.8 +│ │ │ │ ├── iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├── paper-styles#1.1.4 -│ │ └── polymer#1.5.0 +│ │ └── polymer#1.6.0 │ ├─┬ paper-radio-group#1.2.0 -│ │ ├── iron-menu-behavior#1.1.7 -│ │ └── polymer#1.5.0 -│ ├─┬ paper-ripple#1.0.5 -│ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ paper-scroll-header-panel#1.0.15 -│ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ ├── iron-menu-behavior#1.1.10 +│ │ └── polymer#1.6.0 +│ ├─┬ paper-ripple#1.0.8 +│ │ ├── iron-a11y-keys-behavior#1.1.9 +│ │ └── polymer#1.6.0 +│ ├─┬ paper-scroll-header-panel#1.0.16 +│ │ ├─┬ iron-resizable-behavior#1.0.5 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ paper-slider#1.0.11 -│ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ paper-behaviors#1.0.11 -│ │ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-checked-element-behavior#1.0.4 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ paper-behaviors#1.0.12 +│ │ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-checked-element-behavior#1.0.5 │ │ │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 │ │ │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ paper-ripple#1.0.5 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├── paper-input#1.1.11 -│ │ ├─┬ paper-progress#1.0.9 +│ │ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ paper-ripple#1.0.8 +│ │ │ │ ├── iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├── paper-input#1.1.19 +│ │ ├─┬ paper-progress#1.0.10 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-range-behavior#1.0.5 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-range-behavior#1.0.6 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├─┬ paper-styles#1.1.4 │ │ │ │ ├── font-roboto#1.0.1 │ │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ paper-styles#1.1.4 │ │ │ ├── font-roboto#1.0.1 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ paper-spinner#1.2.0 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ paper-styles#1.1.4 │ │ │ ├── font-roboto#1.0.1 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ paper-styles#1.1.4 │ │ ├── font-roboto#1.0.1 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ ├─┬ paper-tabs#1.6.0 -│ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ ├─┬ paper-tabs#1.6.2 +│ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-icon#1.0.8 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-icon#1.0.10 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-iconset-svg#1.0.9 -│ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├── iron-menu-behavior#1.1.7 -│ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ paper-behaviors#1.0.11 -│ │ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-checked-element-behavior#1.0.4 +│ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├── iron-menu-behavior#1.1.10 +│ │ ├─┬ iron-resizable-behavior#1.0.5 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ paper-behaviors#1.0.12 +│ │ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-checked-element-behavior#1.0.5 │ │ │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 │ │ │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ paper-ripple#1.0.5 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ paper-icon-button#1.1.1 -│ │ │ ├─┬ iron-icon#1.0.8 +│ │ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ paper-ripple#1.0.8 +│ │ │ │ ├── iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ paper-icon-button#1.1.2 +│ │ │ ├─┬ iron-icon#1.0.10 │ │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ paper-behaviors#1.0.11 -│ │ │ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ iron-checked-element-behavior#1.0.4 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ paper-behaviors#1.0.12 +│ │ │ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ ├─┬ iron-checked-element-behavior#1.0.5 │ │ │ │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ │ └── polymer#1.6.0 │ │ │ │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ ├─┬ paper-ripple#1.0.5 -│ │ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ ├─┬ paper-ripple#1.0.8 +│ │ │ │ │ ├── iron-a11y-keys-behavior#1.1.9 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├─┬ paper-styles#1.1.4 │ │ │ │ ├── font-roboto#1.0.1 │ │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ paper-styles#1.1.4 │ │ │ ├── font-roboto#1.0.1 │ │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 │ ├─┬ paper-toast#1.3.0 -│ │ ├─┬ iron-a11y-announcer#1.0.4 -│ │ │ └── polymer#1.5.0 -│ │ ├── iron-fit-behavior#1.2.2 -│ │ ├── iron-overlay-behavior#1.8.0 -│ │ └── polymer#1.5.0 -│ ├─┬ paper-toggle-button#1.1.2 -│ │ ├─┬ iron-checked-element-behavior#1.0.4 +│ │ ├─┬ iron-a11y-announcer#1.0.5 +│ │ │ └── polymer#1.6.0 +│ │ ├── iron-fit-behavior#1.2.5 +│ │ ├── iron-overlay-behavior#1.8.6 +│ │ └── polymer#1.6.0 +│ ├─┬ paper-toggle-button#1.2.0 +│ │ ├─┬ iron-checked-element-behavior#1.0.5 │ │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ │ └── polymer#1.5.0 +│ │ │ │ └── polymer#1.6.0 │ │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ paper-behaviors#1.0.11 -│ │ │ ├─┬ iron-behaviors#1.0.16 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ iron-checked-element-behavior#1.0.4 +│ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ paper-behaviors#1.0.12 +│ │ │ ├─┬ iron-behaviors#1.0.17 +│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.9 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ iron-checked-element-behavior#1.0.5 │ │ │ │ ├─┬ iron-form-element-behavior#1.0.6 -│ │ │ │ │ └── polymer#1.5.0 +│ │ │ │ │ └── polymer#1.6.0 │ │ │ │ ├─┬ iron-validatable-behavior#1.1.1 -│ │ │ │ │ ├─┬ iron-meta#1.1.1 -│ │ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ ├─┬ paper-ripple#1.0.5 -│ │ │ │ ├─┬ iron-a11y-keys-behavior#1.1.3 -│ │ │ │ │ └── polymer#1.5.0 -│ │ │ │ └── polymer#1.5.0 -│ │ │ └── polymer#1.5.0 +│ │ │ │ │ ├─┬ iron-meta#1.1.2 +│ │ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ │ └── polymer#1.6.0 +│ │ │ │ └── polymer#1.6.0 +│ │ │ ├─┬ paper-ripple#1.0.8 +│ │ │ │ ├── iron-a11y-keys-behavior#1.1.9 +│ │ │ │ └── polymer#1.6.0 +│ │ │ └── polymer#1.6.0 │ │ ├── paper-styles#1.1.4 -│ │ └── polymer#1.5.0 -│ ├─┬ paper-toolbar#1.1.4 +│ │ └── polymer#1.6.0 +│ ├─┬ paper-toolbar#1.1.6 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 │ │ ├── paper-styles#1.1.4 -│ │ └── polymer#1.5.0 -│ └─┬ paper-tooltip#1.1.2 -│ ├─┬ neon-animation#1.2.3 -│ │ ├─┬ iron-meta#1.1.1 -│ │ │ └── polymer#1.5.0 -│ │ ├─┬ iron-resizable-behavior#1.0.3 -│ │ │ └── polymer#1.5.0 +│ │ └── polymer#1.6.0 +│ └─┬ paper-tooltip#1.1.3 +│ ├─┬ neon-animation#1.2.4 +│ │ ├─┬ iron-meta#1.1.2 +│ │ │ └── polymer#1.6.0 +│ │ ├─┬ iron-resizable-behavior#1.0.5 +│ │ │ └── polymer#1.6.0 │ │ ├─┬ iron-selector#1.5.2 -│ │ │ └── polymer#1.5.0 -│ │ ├── polymer#1.5.0 -│ │ └── web-animations-js#2.2.1 +│ │ │ └── polymer#1.6.0 +│ │ ├── polymer#1.6.0 +│ │ └── web-animations-js#2.2.2 │ ├─┬ paper-styles#1.1.4 │ │ ├── font-roboto#1.0.1 │ │ ├─┬ iron-flex-layout#1.3.1 -│ │ │ └── polymer#1.5.0 -│ │ └── polymer#1.5.0 -│ └── polymer#1.5.0 +│ │ │ └── polymer#1.6.0 +│ │ └── polymer#1.6.0 +│ └── polymer#1.6.0 ├─┬ platinum-elements#2.0.0 -│ ├─┬ platinum-bluetooth#2.1.0 -│ │ ├── polymer#1.5.0 -│ │ └─┬ promise-polyfill#1.0.0 -│ │ └── polymer#1.5.0 +│ ├─┬ platinum-bluetooth#2.1.1 +│ │ ├── polymer#1.6.0 +│ │ └─┬ promise-polyfill#1.0.1 +│ │ └── polymer#1.6.0 │ ├─┬ platinum-https-redirect#1.0.2 -│ │ └── polymer#1.5.0 +│ │ └── polymer#1.6.0 │ ├─┬ platinum-push-messaging#1.0.5 -│ │ ├── polymer#1.5.0 -│ │ └─┬ promise-polyfill#1.0.0 -│ │ └── polymer#1.5.0 +│ │ ├── polymer#1.6.0 +│ │ └─┬ promise-polyfill#1.0.1 +│ │ └── polymer#1.6.0 │ └─┬ platinum-sw#1.3.0 -│ ├── polymer#1.5.0 -│ └── sw-toolbox#3.2.0 -└─┬ polymer#1.5.0 +│ ├── polymer#1.6.0 +│ └── sw-toolbox#3.2.1 +└─┬ polymer#1.6.0 (latest is 1.6.1) └── webcomponentsjs#0.7.22 ``` \ No newline at end of file diff --git a/bower.json b/bower.json index 5df5ca63..c77c5c86 100644 --- a/bower.json +++ b/bower.json @@ -1,10 +1,10 @@ { "name": "polymer-cdn", - "version": "1.5.0", + "version": "1.6.0", "main": "polymer.js", "homepage": "https://github.com/Download/polymer-cdn", "authors": [ - "Stijn de Witt " + "Stijn de Witt " ], "description": "Mirror for Polymer so it can be used from CDN.", "keywords": [ @@ -21,14 +21,17 @@ "tests" ], "dependencies": { - "polymer": "Polymer/polymer#latest", + "polymer": "Polymer/polymer#1.6.0", "paper-elements": "polymerelements/paper-elements#latest", "iron-elements": "polymerelements/iron-elements#latest", "neon-elements": "polymerelements/neon-elements#latest", "gold-elements": "polymerelements/gold-elements#latest", "platinum-elements": "polymerelements/platinum-elements#latest", - "app-elements": "polymerelements/app-elements#latest", + "app-elements": "polymerelements/app-elements#0.9.0", "google-web-components": "GoogleWebComponents/google-web-components#latest", "molecules": "polymerelements/molecules#latest" + }, + "resolutions": { + "firebase": "^3.0" } } diff --git a/doc/branch.png b/doc/branch.png new file mode 100644 index 00000000..835532a8 Binary files /dev/null and b/doc/branch.png differ diff --git a/doc/clone.png b/doc/clone.png new file mode 100644 index 00000000..5ebaea43 Binary files /dev/null and b/doc/clone.png differ diff --git a/doc/fork.png b/doc/fork.png new file mode 100644 index 00000000..a914ed17 Binary files /dev/null and b/doc/fork.png differ diff --git a/doc/pr.png b/doc/pr.png new file mode 100644 index 00000000..639aa89f Binary files /dev/null and b/doc/pr.png differ diff --git a/lib/app-elements/.bower.json b/lib/app-elements/.bower.json index f4710eb8..26ee332b 100644 --- a/lib/app-elements/.bower.json +++ b/lib/app-elements/.bower.json @@ -36,6 +36,6 @@ "commit": "af32ca6b41070266c79acea0f89c7d4c2240e8da" }, "_source": "git://github.com/polymerelements/app-elements.git", - "_target": "*", + "_target": "0.9.0", "_originalSource": "polymerelements/app-elements" } \ No newline at end of file diff --git a/lib/app-layout/.bower.json b/lib/app-layout/.bower.json index 8a084165..bc087671 100644 --- a/lib/app-layout/.bower.json +++ b/lib/app-layout/.bower.json @@ -1,6 +1,6 @@ { "name": "app-layout", - "version": "0.9.1", + "version": "0.9.2", "description": "A set of layout elements for your app", "authors": [ "The Polymer Authors" @@ -39,11 +39,11 @@ "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0", "web-component-tester": "^4.0.0" }, - "_release": "0.9.1", + "_release": "0.9.2", "_resolution": { "type": "version", - "tag": "v0.9.1", - "commit": "6ecd4771eb3e529f63c41947b5eb64ff66cddf33" + "tag": "v0.9.2", + "commit": "e4453ca78c83677938041885023d79ce92d03a3a" }, "_source": "git://github.com/PolymerElements/app-layout.git", "_target": "^0.9.0", diff --git a/lib/app-layout/bower.json b/lib/app-layout/bower.json index 304219f2..160bea6f 100644 --- a/lib/app-layout/bower.json +++ b/lib/app-layout/bower.json @@ -1,6 +1,6 @@ { "name": "app-layout", - "version": "0.9.1", + "version": "0.9.2", "description": "A set of layout elements for your app", "authors": [ "The Polymer Authors" diff --git a/lib/app-localize-behavior/.bower.json b/lib/app-localize-behavior/.bower.json index 5dff12f7..e972ebab 100644 --- a/lib/app-localize-behavior/.bower.json +++ b/lib/app-localize-behavior/.bower.json @@ -1,6 +1,6 @@ { "name": "app-localize-behavior", - "version": "0.9.1", + "version": "0.9.2", "description": "A behavior to help with internationalizating apps", "authors": [ "The Polymer Authors" @@ -35,11 +35,11 @@ "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" }, "main": "app-localize-behavior.html", - "_release": "0.9.1", + "_release": "0.9.2", "_resolution": { "type": "version", - "tag": "v0.9.1", - "commit": "9184f728d3df5c3974fc0300fa3000eeff342181" + "tag": "v0.9.2", + "commit": "c1576c09e9055b4e2130bb3ce741991a0c995623" }, "_source": "git://github.com/PolymerElements/app-localize-behavior.git", "_target": "^0.9.0", diff --git a/lib/app-localize-behavior/README.md b/lib/app-localize-behavior/README.md index 8537ca1c..2212148a 100644 --- a/lib/app-localize-behavior/README.md +++ b/lib/app-localize-behavior/README.md @@ -30,7 +30,7 @@ Sample application loading resources from an external file: ```html + + + + + + + + + + + + + + + + diff --git a/lib/app-route/demo/data-loading-demo/flickr-image-page.html b/lib/app-route/demo/data-loading-demo/flickr-image-page.html new file mode 100644 index 00000000..eeb3a1e2 --- /dev/null +++ b/lib/app-route/demo/data-loading-demo/flickr-image-page.html @@ -0,0 +1,107 @@ + + + + + + + + + + + diff --git a/lib/app-route/demo/data-loading-demo/flickr-search-demo.html b/lib/app-route/demo/data-loading-demo/flickr-search-demo.html new file mode 100644 index 00000000..8a6cb47e --- /dev/null +++ b/lib/app-route/demo/data-loading-demo/flickr-search-demo.html @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + diff --git a/lib/app-route/demo/data-loading-demo/flickr-search-page.html b/lib/app-route/demo/data-loading-demo/flickr-search-page.html new file mode 100644 index 00000000..dedb3eba --- /dev/null +++ b/lib/app-route/demo/data-loading-demo/flickr-search-page.html @@ -0,0 +1,107 @@ + + + + + + + + + + + diff --git a/lib/app-route/demo/index.html b/lib/app-route/demo/index.html index 024548c4..4a80ad08 100644 --- a/lib/app-route/demo/index.html +++ b/lib/app-route/demo/index.html @@ -19,17 +19,17 @@ app-route Demo - - - - - + + + + + diff --git a/lib/app-route/demo/route-info.html b/lib/app-route/demo/youtube-demo/route-info.html similarity index 96% rename from lib/app-route/demo/route-info.html rename to lib/app-route/demo/youtube-demo/route-info.html index 5e81822f..26e79094 100644 --- a/lib/app-route/demo/route-info.html +++ b/lib/app-route/demo/youtube-demo/route-info.html @@ -7,7 +7,8 @@ Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt --> - + + - - - diff --git a/lib/app-route/demo/youtube-toolbar.html b/lib/app-route/demo/youtube-toolbar.html deleted file mode 100644 index f6bb6b52..00000000 --- a/lib/app-route/demo/youtube-toolbar.html +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - - - - diff --git a/lib/app-route/index.html b/lib/app-route/index.html index 96652515..5b354f51 100644 --- a/lib/app-route/index.html +++ b/lib/app-route/index.html @@ -8,14 +8,6 @@ Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt --> - diff --git a/lib/app-route/test/app-route.html b/lib/app-route/test/app-route.html index 7cd2cf0a..da4af2ca 100644 --- a/lib/app-route/test/app-route.html +++ b/lib/app-route/test/app-route.html @@ -274,6 +274,42 @@ expect(routes.bar.queryParams).to.be.eql({ qux: 'zot' }); expect(routes.baz.queryParams).to.be.eql({ qux: 'quux' }); }); + + test('doesn\'t generate excess query-params-changed events', function() { + var routes = fixtureChainedRoutes({}); + var appRoutes = [routes.foo, routes.bar, routes.baz]; + var numChanges = 0; + for (var i = 0; i < appRoutes.length; i++) { + appRoutes[i].addEventListener('query-params-changed', function() { + numChanges++; + }); + } + + // Messing with paths but not query params shouldn't generate any + // change events. + expect(numChanges).to.be.equal(0); + routes.foo.set('route.path', '/foo/123/bar/456'); + expect(numChanges).to.be.equal(0); + routes.foo.set('route.path', '/foo/456/baz/789'); + expect(numChanges).to.be.equal(0); + + // Changing queryParams here should update foo and baz + routes.foo.set('route.__queryParams', {key: 'value'}); + expect(numChanges).to.be.equal(2); + // Then this should update bar + routes.foo.set('route.path', '/foo/123/bar/456'); + expect(numChanges).to.be.equal(3); + + // Changing back to baz shouldn't generate a change event. + routes.foo.set('route.path', '/foo/456/baz/789'); + expect(numChanges).to.be.equal(3); + + routes.foo.set('route.__queryParams', {}); + expect(numChanges).to.be.equal(5); + routes.foo.set('route.path', '/foo/123/bar/456'); + expect(numChanges).to.be.equal(6); + + }); }); }); diff --git a/lib/app-storage/.bower.json b/lib/app-storage/.bower.json index a7abe426..772bcafd 100644 --- a/lib/app-storage/.bower.json +++ b/lib/app-storage/.bower.json @@ -3,7 +3,7 @@ "authors": [ "The Polymer Authors" ], - "version": "0.9.3", + "version": "0.9.5", "description": "Web Components for managing user data in web apps", "main": [ "app-storage-behavior.html", @@ -33,11 +33,11 @@ "platinum-sw": "polymerelements/platinum-sw#^1.3.0" }, "ignore": [], - "_release": "0.9.3", + "_release": "0.9.5", "_resolution": { "type": "version", - "tag": "v0.9.3", - "commit": "ed3c8e8c4ae4aee6c9ab31cf9b6108e3c5dc35a0" + "tag": "v0.9.5", + "commit": "498a32135fc661102e30f345498268c2efd303ae" }, "_source": "git://github.com/PolymerElements/app-storage.git", "_target": "^0.9.0", diff --git a/lib/app-storage/app-indexeddb-mirror/common-worker.html b/lib/app-storage/app-indexeddb-mirror/common-worker.html index fcef3f5d..52703e4f 100644 --- a/lib/app-storage/app-indexeddb-mirror/common-worker.html +++ b/lib/app-storage/app-indexeddb-mirror/common-worker.html @@ -41,7 +41,7 @@ } else if (HAS_WEB_WORKER) { if (!WEB_WORKERS.hasOwnProperty(workerUrl)) { - WEB_WORKERS.workerUrl = + WEB_WORKERS[workerUrl] = new Worker(WORKER_SCOPE_URL + '?' + workerUrl); } @@ -52,7 +52,7 @@ } this.channel = new MessageChannel(); - this.webWorker = WEB_WORKERS.workerUrl; + this.webWorker = WEB_WORKERS[workerUrl]; if (this.webWorker) { this.webWorker.postMessage({ diff --git a/lib/app-storage/app-localstorage/app-localstorage-document.html b/lib/app-storage/app-localstorage/app-localstorage-document.html index 98983d61..792b2f41 100644 --- a/lib/app-storage/app-localstorage/app-localstorage-document.html +++ b/lib/app-storage/app-localstorage/app-localstorage-document.html @@ -204,10 +204,11 @@ }, __onAppLocalStorageChanged: function(event) { - if (event.detail === this) { + if (event.detail === this || + event.detail.key !== this.key || + event.detail.storage !== this.storage) { return; } - this.syncToMemory(function() { this.set('data', event.detail.data); }); diff --git a/lib/app-storage/bower.json b/lib/app-storage/bower.json index 7013cc01..3cb375a2 100644 --- a/lib/app-storage/bower.json +++ b/lib/app-storage/bower.json @@ -3,7 +3,7 @@ "authors": [ "The Polymer Authors" ], - "version": "0.9.3", + "version": "0.9.5", "description": "Web Components for managing user data in web apps", "main": [ "app-storage-behavior.html", diff --git a/lib/carbon-elements/.bower.json b/lib/carbon-elements/.bower.json deleted file mode 100644 index 3cc0867a..00000000 --- a/lib/carbon-elements/.bower.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "name": "carbon-elements", - "version": "0.1.0", - "homepage": "https://github.com/PolymerElements/carbon-elements", - "authors": [ - "The Polymer Authors" - ], - "description": "The carbon elements enable building full web apps out of modular custom elements.", - "main": "carbon-elements.html", - "moduleType": [], - "keywords": [ - "web-components", - "polymer", - "app" - ], - "license": "http://polymer.github.io/LICENSE.txt", - "private": true, - "ignore": [ - "**/.*", - "node_modules", - "bower_components", - "test", - "tests" - ], - "dependencies": { - "carbon-route": "PolymerElements/carbon-route#^0.8.0" - }, - "_release": "0.1.0", - "_resolution": { - "type": "version", - "tag": "v0.1.0", - "commit": "07ee891269fa04e2c9c8e7d4c0e8d122191880cd" - }, - "_source": "git://github.com/polymerelements/carbon-elements.git", - "_target": "*", - "_originalSource": "polymerelements/carbon-elements" -} \ No newline at end of file diff --git a/lib/carbon-elements/README.md b/lib/carbon-elements/README.md deleted file mode 100644 index 8117c5c1..00000000 --- a/lib/carbon-elements/README.md +++ /dev/null @@ -1,31 +0,0 @@ -# carbon-elements - -The carbon elements are for app-level concerns like routing, storage, and binding to remote data stores. - -## Roadmap - -### Elements recently released - -* [`carbon-route` and `carbon-location`](https://github.com/PolymerElements/carbon-route) enable declarative client-side routing. - -### Elements in progress - -* `carbon-i18n` - to enable client-side translation and localization - -### Elements planned - -_Elements we're planning on building soon but haven't started yet_ - -[None] - -### Elements not planned, notably - -_Elements we're not planning on building as part of this product line, but that one might be wondering about_ - -[None] - -### Related elements - -* [``](https://github.com/PolymerElements/iron-location) - provides a foundation for routing, handling the common concerns of databinding with `window.location`. -* [``](https://github.com/PolymerElements/iron-localstorage) - provides databinding into local storage. -* [``](https://github.com/GoogleWebComponents/firebase-element) - provides databinding with firebase, the real time database diff --git a/lib/carbon-elements/bower.json b/lib/carbon-elements/bower.json deleted file mode 100644 index 7c108aee..00000000 --- a/lib/carbon-elements/bower.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "name": "carbon-elements", - "version": "0.1.0", - "homepage": "https://github.com/PolymerElements/carbon-elements", - "authors": [ - "The Polymer Authors" - ], - "description": "The carbon elements enable building full web apps out of modular custom elements.", - "main": "carbon-elements.html", - "moduleType": [], - "keywords": [ - "web-components", - "polymer", - "app" - ], - "license": "http://polymer.github.io/LICENSE.txt", - "private": true, - "ignore": [ - "**/.*", - "node_modules", - "bower_components", - "test", - "tests" - ], - "dependencies": { - "carbon-route": "PolymerElements/carbon-route#^0.8.0" - } -} diff --git a/lib/carbon-elements/carbon-elements.html b/lib/carbon-elements/carbon-elements.html deleted file mode 100644 index 4a1b3702..00000000 --- a/lib/carbon-elements/carbon-elements.html +++ /dev/null @@ -1,11 +0,0 @@ - - - diff --git a/lib/carbon-route/.bower.json b/lib/carbon-route/.bower.json deleted file mode 100644 index d1a46548..00000000 --- a/lib/carbon-route/.bower.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "name": "carbon-route", - "version": "0.8.5", - "authors": [ - "The Polymer Authors" - ], - "description": "App routing expressed as Polymer Custom Elements.", - "main": [ - "carbon-route.html", - "carbon-location.html", - "carbon-route-converter.html" - ], - "license": "http://polymer.github.io/LICENSE.txt", - "homepage": "https://github.com/PolymerElements/carbon-route", - "private": true, - "ignore": [], - "devDependencies": { - "paper-styles": "polymerelements/paper-styles#^1.0.13", - "paper-input": "polymerelements/paper-input#^1.1.2", - "web-component-tester": "^4.0.0", - "iron-component-page": "polymerelements/iron-component-page#^1.0.0", - "iron-test-helpers": "polymerelements/iron-test-helpers#^1.0.0", - "iron-pages": "PolymerElements/iron-pages#^1.0.7", - "paper-card": "PolymerElements/paper-card#^1.1.1", - "paper-icon-button": "polymerelements/paper-icon-button#^v1.0.0", - "paper-toggle-button": "polymerelements/paper-toggle-button#^v1.0.0", - "google-youtube": "GoogleWebComponents/google-youtube#^1.2.1", - "iron-demo-helpers": "PolymerElements/iron-demo-helpers#^1.2.0" - }, - "dependencies": { - "polymer": "polymer/polymer#^1.3.1", - "iron-location": "polymerelements/iron-location#^0.8.1" - }, - "_release": "0.8.5", - "_resolution": { - "type": "version", - "tag": "v0.8.5", - "commit": "b7b63db7facd212ffc80d7c0edd9230b99c42f57" - }, - "_source": "git://github.com/PolymerElements/carbon-route.git", - "_target": "^0.8.0", - "_originalSource": "PolymerElements/carbon-route" -} \ No newline at end of file diff --git a/lib/carbon-route/.gitignore b/lib/carbon-route/.gitignore deleted file mode 100644 index 8d4ae253..00000000 --- a/lib/carbon-route/.gitignore +++ /dev/null @@ -1 +0,0 @@ -bower_components diff --git a/lib/carbon-route/.travis.yml b/lib/carbon-route/.travis.yml deleted file mode 100644 index 52fa9ddf..00000000 --- a/lib/carbon-route/.travis.yml +++ /dev/null @@ -1,23 +0,0 @@ -language: node_js -node_js: stable -addons: - firefox: latest - sauce_connect: true - apt: - sources: - - google-chrome - packages: - - google-chrome-stable -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: fWYqxcZ31A3bT/qXPkoIr3AIOD/p+4zjtrn0D++YCgKByA0iVDEgkXzqKPkVXJay8QMTZSBv2WwzruEECfJONQQjq6Dq6ghtCTwYYbJz3Pp8tP0mAeJTUlxtlBrpVw4Sr5r3vVef4r9u8QBzBhXonUyMSVGwYtD1r/gTEcbGiArcm4y+rDFptoGbmrdoiZJ+36IeoKJsNR7Mc6+W338EL1o1nxF3jboYguhnd4bMYcY4LGEsuDIpFVoqTod2oWJRKkTXz8UIzqnG1BT7rUpVDf62oF0dJOfSHwcwrS/PxuJlYurd0Ep4tAOTqLsNfEO1y1+2GjSr4nB8XPZ+PAPpFOHBFyOH1FwYrYnFuH40EWtY7Wb376vLQFSmsnBMcQkFhWBrqenCgWTDGIUhecyaKNf1o1tXr64ATLcPdXJTzjh8K4hvgKwgBaYYXakZJKujMKMitcPvbbxydXe7ZU1AFyPKkasXdIJH0g+767eqEL7KhJicnGLdEQq4ABJRKSEl5Fj4M7BMyOKCyOkUKWielN4MC2b24SROiPIVp3HEQZH/TqZj5pZJhuRopg4PsQtoN+mLhbaOOiAZ5riRG+Rr8nJanfJCBzPogpFz4CTZcrofdSZEV4pn/j81ahUQx7GO2wI9JmAk2qTTx+9eyyPBfasV3waF+GqwawdfR0hIHFs= - - secure: DU/KiwHNln8R8NRF86qBMhinoC+dnZNIqj0ySoMgva5BuFrJcf01vyBQvGVxGrMrkVdksONtaz3UjBWh1q4NHZZ3oLjHtSnQAGb1D+x/bdAn4MQvQepz/CtstOH4eLghDtTqUUuxyRsAMApcdTQuPD9j1qmgZ8uTAMlyrtI/yMTrjdabsDz4DVUe8p020YGsrpFxgRSidpq+aNZ70cnxGcU20pgFdnyNj/4xRAxztL9ViDU+gJX/adDxVQpoZQNhqGev7OkFVbN/1CYcqLR7ZdhGXB0iFm6feVbnWPJUntrQeNkncw7LZiV7BIXfqGxKC8hN5+cBlLXzIJHzSoOuEF6yUyJ24a7V4DcZXqwJsPz8sX+qK/fAqFDKg9vB5fuqaJXk8DE2rCOIGgFAFKlIL09YJcocFXDXGmjAnVUuWKvt2no8zLjPbMEYF+p/27dH1zb/yq57VBz2ol4h4gPi8JC6950bTYquJsqk1/Bo8gDy5IlRBxJuNihj0NEFRwjkWi6cCtHZsSYCUAEsSNwvTkdg+Ubw90DkMjao/GHh9sAyObFNDIK8AxbVobgXNmsLs6i9oJoauu9MmaUrTPzlmmV+4XI7dVcV6duw2xVlR8AA7yTZEI5hHkw3f0AkXCzxAMSIGXDVJf0PNSOUfnTFCbaBdQes56GgE/Np6iZv8qQ= -dist: trusty -sudo: required diff --git a/lib/carbon-route/README.md b/lib/carbon-route/README.md deleted file mode 100644 index 9ca88fff..00000000 --- a/lib/carbon-route/README.md +++ /dev/null @@ -1,192 +0,0 @@ - - - -[![Build status](https://travis-ci.org/PolymerElements/carbon-route.svg?branch=master)](https://travis-ci.org/PolymerElements/carbon-route) - -_[Demo and API docs](https://elements.polymer-project.org/elements/carbon-route)_ - - -##<carbon-route> - -`carbon-route` is an element that enables declarative, self-describing routing -for a web app. - -> *n.b. carbon-route is still in beta. We expect it will need some changes. We're counting on your feedback!* - -In its typical usage, a `carbon-route` element consumes an object that describes -some state about the current route, via the `route` property. It then parses -that state using the `pattern` property, and produces two artifacts: some `data` -related to the `route`, and a `tail` that contains the rest of the `route` that -did not match. - -Here is a basic example, when used with `carbon-location`: - -```html - - - -``` - -In the above example, the `carbon-location` produces a `route` value. Then, the -`route.path` property is matched by comparing it to the `pattern` property. If -the `pattern` property matches `route.path`, the `carbon-route` will set or update -its `data` property with an object whose properties correspond to the parameters -in `pattern`. So, in the above example, if `route.path` was `'/about'`, the value -of `data` would be `{"page": "about"}`. - -The `tail` property represents the remaining part of the route state after the -`pattern` has been applied to a matching `route`. - -Here is another example, where `tail` is used: - -```html - - - - - -``` - -In the above example, there are two `carbon-route` elements. The first -`carbon-route` consumes a `route`. When the `route` is matched, the first -`carbon-route` also produces `routeData` from its `data`, and `subroute` from -its `tail`. The second `carbon-route` consumes the `subroute`, and when it -matches, it produces an object called `subrouteData` from its `data`. - -So, when `route.path` is `'/about'`, the `routeData` object will look like -this: `{ page: 'about' }` - -And `subrouteData` will be null. However, if `route.path` changes to -`'/article/123'`, the `routeData` object will look like this: -`{ page: 'article' }` - -And the `subrouteData` will look like this: `{ id: '123' }` - -`carbon-route` is responsive to bi-directional changes to the `data` objects -they produce. So, if `routeData.page` changed from `'article'` to `'about'`, -the `carbon-route` will update `route.path`. This in-turn will update the -`carbon-location`, and cause the global location bar to change its value. - - - -##<carbon-location> - -`carbon-location` is an element that provides synchronization between the -browser location bar and the state of an app. When created, `carbon-location` -elements will automatically watch the global location for changes. As changes -occur, `carbon-location` produces and updates an object called `route`. This -`route` object is suitable for passing into a `carbon-route`, and other similar -elements. - -An example of the public API of a route object that describes the URL -`https://elements.polymer-project.org/elements/carbon-route-converter?foo=bar&baz=qux`: - -```css -{ - prefix: '', - path: '/elements/carbon-route-converter' -} -``` - -Example Usage: - -```html - - -``` - -As you can see above, the `carbon-location` element produces a `route` and that -property is then bound into the `carbon-route` element. The bindings are two- -directional, so when changes to the `route` object occur within `carbon-route`, -they automatically reflect back to the global location. - -A `carbon-location` can be configured to use the hash part of a URL as the -canonical source for path information. - -Example: - -```html - -``` - - - -##<carbon-route-converter> - -`carbon-route-converter` provides a means to convert a path and query -parameters into a route object and vice versa. This produced route object -is to be fed into route-consuming elements such as `carbon-route`. - -> n.b. This element is intended to be a primitive of the routing system and for -creating bespoke routing solutions from scratch. To simply include routing in -an app, please refer to [carbon-location](https://github.com/PolymerElements/carbon-route/blob/master/carbon-location.html) -and [carbon-route](https://github.com/PolymerElements/carbon-route/blob/master/carbon-route.html). - -An example of a route object that describes -`https://elements.polymer-project.org/elements/carbon-route-converter?foo=bar&baz=qux` -and should be passed to other `carbon-route` elements: - -```css -{ - prefix: '', - path: '/elements/carbon-route-converter', - __queryParams: { - foo: 'bar', - baz: 'qux' - } -} -``` - -`__queryParams` is private to discourage directly data-binding to it. This is so -that routing elements like `carbon-route` can intermediate changes to the query -params and choose whether to propagate them upstream or not. `carbon-route` for -example will not propagate changes to its `queryParams` property if it is not -currently active. A public queryParams object will also be produced in which you -should perform data-binding operations. - -Example Usage: - -```html - - - - - - - -``` - -This is a simplified implementation of the `carbon-location` element. Here the -`iron-location` produces a path and a query, the `iron-query-params` consumes -the query and produces a queryParams object, and the `carbon-route-converter` -consumes the path and the query params and converts it into a route which is in -turn is consumed by the `carbon-route`. - - diff --git a/lib/carbon-route/bower.json b/lib/carbon-route/bower.json deleted file mode 100644 index 86d18421..00000000 --- a/lib/carbon-route/bower.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "name": "carbon-route", - "version": "0.8.5", - "authors": [ - "The Polymer Authors" - ], - "description": "App routing expressed as Polymer Custom Elements.", - "main": [ - "carbon-route.html", - "carbon-location.html", - "carbon-route-converter.html" - ], - "license": "http://polymer.github.io/LICENSE.txt", - "homepage": "https://github.com/PolymerElements/carbon-route", - "private": true, - "ignore": [], - "devDependencies": { - "paper-styles": "polymerelements/paper-styles#^1.0.13", - "paper-input": "polymerelements/paper-input#^1.1.2", - "web-component-tester": "^4.0.0", - "iron-component-page": "polymerelements/iron-component-page#^1.0.0", - "iron-test-helpers": "polymerelements/iron-test-helpers#^1.0.0", - "iron-pages": "PolymerElements/iron-pages#^1.0.7", - "paper-card": "PolymerElements/paper-card#^1.1.1", - "paper-icon-button": "polymerelements/paper-icon-button#^v1.0.0", - "paper-toggle-button": "polymerelements/paper-toggle-button#^v1.0.0", - "google-youtube": "GoogleWebComponents/google-youtube#^1.2.1", - "iron-demo-helpers": "PolymerElements/iron-demo-helpers#^1.2.0" - }, - "dependencies": { - "polymer": "polymer/polymer#^1.3.1", - "iron-location": "polymerelements/iron-location#^0.8.1" - } -} diff --git a/lib/carbon-route/carbon-location.html b/lib/carbon-route/carbon-location.html deleted file mode 100644 index 6fe5b227..00000000 --- a/lib/carbon-route/carbon-location.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - - - - - diff --git a/lib/carbon-route/carbon-route-converter.html b/lib/carbon-route/carbon-route-converter.html deleted file mode 100644 index c2d3162e..00000000 --- a/lib/carbon-route/carbon-route-converter.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - diff --git a/lib/carbon-route/carbon-route.html b/lib/carbon-route/carbon-route.html deleted file mode 100644 index 33d7996c..00000000 --- a/lib/carbon-route/carbon-route.html +++ /dev/null @@ -1,393 +0,0 @@ - - - - - - - diff --git a/lib/carbon-route/demo/index.html b/lib/carbon-route/demo/index.html deleted file mode 100644 index 1f2728d1..00000000 --- a/lib/carbon-route/demo/index.html +++ /dev/null @@ -1,219 +0,0 @@ - - - - - - -carbon-route Demo - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/carbon-route/demo/route-info.html b/lib/carbon-route/demo/route-info.html deleted file mode 100644 index 5e81822f..00000000 --- a/lib/carbon-route/demo/route-info.html +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - diff --git a/lib/carbon-route/demo/search-results.html b/lib/carbon-route/demo/search-results.html deleted file mode 100644 index 6a4bb93a..00000000 --- a/lib/carbon-route/demo/search-results.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - diff --git a/lib/carbon-route/demo/video-viewer.html b/lib/carbon-route/demo/video-viewer.html deleted file mode 100644 index c5b3be9f..00000000 --- a/lib/carbon-route/demo/video-viewer.html +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/lib/carbon-route/demo/youtube-search.html b/lib/carbon-route/demo/youtube-search.html deleted file mode 100644 index 7c8b2bd8..00000000 --- a/lib/carbon-route/demo/youtube-search.html +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/lib/carbon-route/index.html b/lib/carbon-route/index.html deleted file mode 100644 index 908343ae..00000000 --- a/lib/carbon-route/index.html +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - carbon-router - - - - - - - - - - - - - diff --git a/lib/carbon-route/test/app-example-1.html b/lib/carbon-route/test/app-example-1.html deleted file mode 100644 index 75b850bf..00000000 --- a/lib/carbon-route/test/app-example-1.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - diff --git a/lib/carbon-route/test/carbon-location.html b/lib/carbon-route/test/carbon-location.html deleted file mode 100644 index e4274c24..00000000 --- a/lib/carbon-route/test/carbon-location.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - carbon-location - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/carbon-route/test/carbon-route-converter.html b/lib/carbon-route/test/carbon-route-converter.html deleted file mode 100644 index 6fde9e3f..00000000 --- a/lib/carbon-route/test/carbon-route-converter.html +++ /dev/null @@ -1,58 +0,0 @@ - - - - - carbon-route-converter - - - - - - - - - - - - - - diff --git a/lib/carbon-route/test/carbon-route.html b/lib/carbon-route/test/carbon-route.html deleted file mode 100644 index 53873b2d..00000000 --- a/lib/carbon-route/test/carbon-route.html +++ /dev/null @@ -1,452 +0,0 @@ - - - - - carbon-route - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/carbon-route/test/index.html b/lib/carbon-route/test/index.html deleted file mode 100644 index 2a5b548a..00000000 --- a/lib/carbon-route/test/index.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - diff --git a/lib/carbon-route/test/redirection.html b/lib/carbon-route/test/redirection.html deleted file mode 100644 index 07a93f47..00000000 --- a/lib/carbon-route/test/redirection.html +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - diff --git a/lib/carbon-route/test/test-app-example-1.html b/lib/carbon-route/test/test-app-example-1.html deleted file mode 100644 index cf745a8a..00000000 --- a/lib/carbon-route/test/test-app-example-1.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - carbon-route - - - - - - - - - - - - - diff --git a/lib/firebase-element/.bower.json b/lib/firebase-element/.bower.json index 15db0df3..d0d07192 100644 --- a/lib/firebase-element/.bower.json +++ b/lib/firebase-element/.bower.json @@ -1,7 +1,7 @@ { "name": "firebase-element", "description": "An element that makes it easy to declaratively use the powerful firebase backend", - "version": "1.0.14", + "version": "1.0.15", "private": true, "main": [ "firebase-collection.html", @@ -29,11 +29,11 @@ "web-component-tester": "*" }, "homepage": "https://github.com/GoogleWebComponents/firebase-element", - "_release": "1.0.14", + "_release": "1.0.15", "_resolution": { "type": "version", - "tag": "1.0.14", - "commit": "161ada77940b1bf0a237ddcaa2968d12ab2eac94" + "tag": "1.0.15", + "commit": "210a8bbce8ed80fc71a2f57b9ae1fffdd2a12bae" }, "_source": "git://github.com/GoogleWebComponents/firebase-element.git", "_target": "^1.0.0", diff --git a/lib/firebase-element/bower.json b/lib/firebase-element/bower.json index 70892ae8..7da0920e 100644 --- a/lib/firebase-element/bower.json +++ b/lib/firebase-element/bower.json @@ -1,7 +1,7 @@ { "name": "firebase-element", "description": "An element that makes it easy to declaratively use the powerful firebase backend", - "version": "1.0.14", + "version": "1.0.15", "private": true, "main": ["firebase-collection.html","firebase-document.html","firebase-auth.html","firebase-query-behavior.html"], "dependencies": { diff --git a/lib/firebase-element/firebase-query-behavior.html b/lib/firebase-element/firebase-query-behavior.html index e49b4577..450028a1 100644 --- a/lib/firebase-element/firebase-query-behavior.html +++ b/lib/firebase-element/firebase-query-behavior.html @@ -12,11 +12,13 @@ - + +

Here's a chart that changes data every 3 seconds:

Chart gallery rows='[["Jan", 31],["Feb", 28],["Mar", 31],["Apr", 30],["May", 31],["Jun", 30]]'> +

And here is the material bar chart:

+ + +

Here's a bubble chart:

Chart gallery @@ -432,13 +440,13 @@

Chart gallery

@@ -450,45 +458,44 @@

Chart gallery

type="bar">
-

DataViews can be altered, but you'll need to call the drawChart method afterward.

+

DataViews can be altered, but you'll need to call the redraw method afterward.

Here's an image of the line chart:

-
+ diff --git a/lib/google-chart/google-chart-loader.html b/lib/google-chart/google-chart-loader.html new file mode 100644 index 00000000..2f69e468 --- /dev/null +++ b/lib/google-chart/google-chart-loader.html @@ -0,0 +1,304 @@ + + + + + diff --git a/lib/google-chart/google-chart.html b/lib/google-chart/google-chart.html index ddac46a5..db37e2d2 100644 --- a/lib/google-chart/google-chart.html +++ b/lib/google-chart/google-chart.html @@ -1,7 +1,7 @@ - + + diff --git a/lib/google-map/.bower.json b/lib/google-map/.bower.json index bc62b655..93b6b87d 100644 --- a/lib/google-map/.bower.json +++ b/lib/google-map/.bower.json @@ -1,6 +1,6 @@ { "name": "google-map", - "version": "1.1.10", + "version": "1.1.11", "description": "Google Maps web components", "homepage": "https://elements.polymer-project.org/elements/google-map", "main": [ @@ -37,11 +37,11 @@ "web-component-tester": "*", "iron-component-page": "PolymerElements/iron-component-page#^1.0.2" }, - "_release": "1.1.10", + "_release": "1.1.11", "_resolution": { "type": "version", - "tag": "1.1.10", - "commit": "182e4571568116202973c3a29bf57a355007abaa" + "tag": "1.1.11", + "commit": "54940112d458239d7fa2caf86aecb33f60a16a48" }, "_source": "git://github.com/GoogleWebComponents/google-map.git", "_target": "^1.0.0", diff --git a/lib/google-map/bower.json b/lib/google-map/bower.json index 2451db7f..56f368d0 100644 --- a/lib/google-map/bower.json +++ b/lib/google-map/bower.json @@ -1,6 +1,6 @@ { "name": "google-map", - "version": "1.1.10", + "version": "1.1.11", "description": "Google Maps web components", "homepage": "https://elements.polymer-project.org/elements/google-map", "main": [ diff --git a/lib/google-map/google-map-directions.html b/lib/google-map/google-map-directions.html index ab4762c1..9922dcc2 100644 --- a/lib/google-map/google-map-directions.html +++ b/lib/google-map/google-map-directions.html @@ -34,7 +34,8 @@ + on-api-load="_mapApiLoaded" + maps-url="[[mapsUrl]]">
@@ -59,6 +60,14 @@ */ apiKey: String, + /** + * Overrides the origin the Maps API is loaded from. Defaults to `https://maps.googleapis.com`. + */ + mapsUrl: { + type: String + // Initial value set in google-maps-api. + }, + /** * The Google map object. * @@ -143,7 +152,7 @@ }, observers: [ - '_route(startAddress, endAddress, travelMode, waypoints)' + '_route(startAddress, endAddress, travelMode, waypoints.*)' ], _mapApiLoaded: function() { diff --git a/lib/google-map/google-map-search.html b/lib/google-map/google-map-search.html index cd9a234d..c76e83e5 100644 --- a/lib/google-map/google-map-search.html +++ b/lib/google-map/google-map-search.html @@ -153,14 +153,12 @@

{{marker.name}}

if (this.types && typeof this.types == 'string') { var types = this.types.split(' '); } - - if (!this.globalSearch) { - var bounds = this.map.getBounds(); - } else if (this.radius) { + if (this.radius) { var radius = this.radius; var location = this.location ? this.location : this.map.getCenter(); + } else if (!this.globalSearch) { + var bounds = this.map.getBounds(); } - places.textSearch({ query: this.query, types: types, diff --git a/lib/google-map/google-map.html b/lib/google-map/google-map.html index d5f36132..2afd6364 100644 --- a/lib/google-map/google-map.html +++ b/lib/google-map/google-map.html @@ -15,7 +15,7 @@ height: 600px; } - + Example - add markers to the map and ensure they're in view: @@ -40,10 +40,20 @@ Example - with Google directions, using data-binding inside another Polymer element - +Disable dragging by adding `draggable="false"` on the `google-map` element. + +Example - loading the Maps API from another origin (China) + + + +### Tips + +If you're seeing the message "You have included the Google Maps API multiple times on this page. This may cause unexpected errors." it probably means you're loading other maps elements on the page (``). Each maps element must include the same set of configuration options (`apiKey`, `clientId`, `language`, `version`, etc.) so the Maps API is loaded from the same URL. + @demo demo/index.html @demo demo/polys.html @demo demo/kml.html @@ -68,13 +78,15 @@