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 - {{localize('hello', 'Batman')}} + {{localize('hello', 'name', 'Batman')}} + + + + + + + + + + + + + + + +