├── LICENSE.md ├── README.md ├── archetypes └── default.md ├── images ├── screenshot.png └── tn.png ├── layouts ├── _default │ ├── list.html │ ├── single.html │ └── terms.html ├── index.html └── partials │ ├── content.html │ ├── disqus.html │ ├── footer.html │ ├── header.html │ └── pagination.html ├── static ├── bower.json ├── bower_components │ ├── font-roboto │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ └── roboto.html │ ├── iron-a11y-keys-behavior │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ ├── index.html │ │ │ └── x-key-aware.html │ │ ├── index.html │ │ ├── iron-a11y-keys-behavior.html │ │ └── test │ │ │ ├── basic-test.html │ │ │ └── index.html │ ├── iron-behaviors │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ ├── index.html │ │ │ └── simple-button.html │ │ ├── index.html │ │ ├── iron-button-state.html │ │ ├── iron-control-state.html │ │ └── test │ │ │ ├── active-state.html │ │ │ ├── disabled-state.html │ │ │ ├── focused-state.html │ │ │ ├── index.html │ │ │ └── test-elements.html │ ├── iron-flex-layout │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── classes │ │ │ ├── iron-flex-layout.html │ │ │ └── iron-shadow-flex-layout.html │ │ ├── demo │ │ │ ├── index.html │ │ │ └── x-app.html │ │ └── iron-flex-layout.html │ ├── iron-icon │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ ├── index.html │ │ │ └── location.png │ │ ├── hero.svg │ │ ├── index.html │ │ ├── iron-icon.html │ │ └── test │ │ │ ├── index.html │ │ │ └── iron-icon.html │ ├── iron-icons │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── av-icons.html │ │ ├── bower.json │ │ ├── communication-icons.html │ │ ├── demo │ │ │ └── index.html │ │ ├── device-icons.html │ │ ├── editor-icons.html │ │ ├── hardware-icons.html │ │ ├── hero.svg │ │ ├── image-icons.html │ │ ├── index.html │ │ ├── iron-icons.html │ │ ├── maps-icons.html │ │ ├── notification-icons.html │ │ └── social-icons.html │ ├── iron-iconset-svg │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ ├── index.html │ │ │ └── svg-sample-icons.html │ │ ├── index.html │ │ ├── iron-iconset-svg.html │ │ └── test │ │ │ ├── index.html │ │ │ └── iron-iconset-svg.html │ ├── iron-image │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ ├── index.html │ │ │ └── polymer.svg │ │ ├── index.html │ │ ├── iron-image.html │ │ └── test │ │ │ ├── index.html │ │ │ └── iron-image.html │ ├── iron-media-query │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── iron-media-query.html │ │ └── test │ │ │ ├── basic.html │ │ │ └── index.html │ ├── iron-menu-behavior │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ ├── index.html │ │ │ ├── simple-menu.html │ │ │ └── simple-menubar.html │ │ ├── index.html │ │ ├── iron-menu-behavior.html │ │ ├── iron-menubar-behavior.html │ │ └── test │ │ │ ├── index.html │ │ │ ├── iron-menu-behavior.html │ │ │ ├── iron-menubar-behavior.html │ │ │ ├── test-menu.html │ │ │ └── test-menubar.html │ ├── iron-meta │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── iron-meta.html │ │ └── test │ │ │ ├── basic.html │ │ │ ├── index.html │ │ │ └── iron-meta.html │ ├── iron-resizable-behavior │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ ├── index.html │ │ │ └── src │ │ │ │ └── x-app.html │ │ ├── index.html │ │ ├── iron-resizable-behavior.html │ │ └── test │ │ │ ├── basic.html │ │ │ ├── index.html │ │ │ ├── iron-resizable-behavior.html │ │ │ └── test-elements.html │ ├── iron-selector │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ └── index.html │ │ ├── index.html │ │ ├── iron-multi-selectable.html │ │ ├── iron-selectable.html │ │ ├── iron-selection.html │ │ ├── iron-selector.html │ │ └── test │ │ │ ├── activate-event.html │ │ │ ├── basic.html │ │ │ ├── content-element.html │ │ │ ├── content.html │ │ │ ├── index.html │ │ │ ├── multi.html │ │ │ ├── next-previous.html │ │ │ ├── selected-attribute.html │ │ │ └── template-repeat.html │ ├── paper-behaviors │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ ├── index.html │ │ │ ├── paper-button.html │ │ │ └── paper-radio-button.html │ │ ├── index.html │ │ ├── paper-button-behavior.html │ │ ├── paper-inky-focus-behavior.html │ │ └── test │ │ │ ├── index.html │ │ │ ├── paper-button-behavior.html │ │ │ ├── paper-radio-button-behavior.html │ │ │ ├── test-button.html │ │ │ └── test-radio-button.html │ ├── paper-drawer-panel │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-drawer-panel.css │ │ └── paper-drawer-panel.html │ ├── paper-fab │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ └── index.html │ │ ├── index.html │ │ ├── paper-fab.html │ │ └── test │ │ │ ├── a11y.html │ │ │ ├── basic.html │ │ │ └── index.html │ ├── paper-icon-button │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ └── index.html │ │ ├── index.html │ │ ├── paper-icon-button.html │ │ └── test │ │ │ ├── a11y.html │ │ │ ├── basic.html │ │ │ └── index.html │ ├── paper-item │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── all-imports.html │ │ ├── bower.json │ │ ├── demo │ │ │ └── index.html │ │ ├── index.html │ │ ├── paper-icon-item.html │ │ ├── paper-item-body.html │ │ ├── paper-item-shared.css │ │ ├── paper-item.html │ │ └── test │ │ │ ├── index.html │ │ │ └── paper-item.html │ ├── paper-material │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ └── index.html │ │ ├── index.html │ │ ├── paper-material.html │ │ └── test │ │ │ ├── index.html │ │ │ └── paper-material.html │ ├── paper-menu │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-menu.html │ │ └── test │ │ │ ├── index.html │ │ │ └── paper-menu.html │ ├── paper-ripple │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-ripple.html │ │ └── test │ │ │ ├── index.html │ │ │ └── paper-ripple.html │ ├── paper-scroll-header-panel │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ ├── demo1.html │ │ │ ├── demo2.html │ │ │ ├── demo3.html │ │ │ ├── demo4.html │ │ │ ├── demo5.html │ │ │ ├── demo6.html │ │ │ ├── demo7.html │ │ │ ├── demo8.html │ │ │ ├── demo9.html │ │ │ ├── images │ │ │ │ ├── bg2.jpg │ │ │ │ ├── bg3.jpg │ │ │ │ ├── bg5.jpg │ │ │ │ ├── bg6.jpg │ │ │ │ └── bg9.jpg │ │ │ ├── index.html │ │ │ ├── lorem-ipsum.html │ │ │ └── sample-content.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-scroll-header-panel.html │ │ └── test │ │ │ ├── basic.html │ │ │ └── index.html │ ├── paper-styles │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── classes │ │ │ ├── global.html │ │ │ ├── shadow-layout.html │ │ │ ├── shadow.html │ │ │ └── typography.html │ │ ├── color.html │ │ ├── default-theme.html │ │ ├── demo-pages.html │ │ ├── demo.css │ │ ├── demo │ │ │ └── index.html │ │ ├── paper-styles-classes.html │ │ ├── paper-styles.html │ │ ├── shadow.html │ │ └── typography.html │ ├── paper-toolbar │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ └── index.html │ │ ├── index.html │ │ ├── paper-toolbar.html │ │ └── test │ │ │ ├── index.html │ │ │ └── paper-toolbar.html │ ├── polymer │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ ├── bower.json │ │ ├── build.log │ │ ├── polymer-micro.html │ │ ├── polymer-mini.html │ │ └── polymer.html │ └── webcomponentsjs │ │ ├── .bower.json │ │ ├── CustomElements.js │ │ ├── CustomElements.min.js │ │ ├── HTMLImports.js │ │ ├── HTMLImports.min.js │ │ ├── MutationObserver.js │ │ ├── MutationObserver.min.js │ │ ├── README.md │ │ ├── ShadowDOM.js │ │ ├── ShadowDOM.min.js │ │ ├── bower.json │ │ ├── build.log │ │ ├── package.json │ │ ├── webcomponents-lite.js │ │ ├── webcomponents-lite.min.js │ │ ├── webcomponents.js │ │ └── webcomponents.min.js └── images │ ├── cover.png │ ├── facebook-dreamstale25.png │ ├── feed-dreamstale27.png │ ├── github2-dreamstale35.png │ ├── google+-dreamstale37.png │ ├── linkedin-dreamstale45.png │ ├── photo.png │ ├── profile.png │ └── twitter-dreamstale71.png └── theme.toml /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 pdevty 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Polymer 2 | 3 | Polymer is a web components material design theme for [Hugo](http://gohugo.io/). 4 | 5 | ![](https://github.com/pdevty/polymer/blob/master/images/tn.png) 6 | 7 | ## Features 8 | 9 | - Material Design by [polymer](https://www.polymer-project.org/1.0/) 10 | - Google Analytics (optional) 11 | - Pagination 12 | - Disqus (optional) 13 | - Twitter, Facebook, GitHub, Google+, LinkedIn links (optional) 14 | - Tags 15 | - Categories 16 | - Cover, Photo, Profile image (optional) 17 | - Highlighting source code 18 | 19 | ## Installation 20 | 21 | ```shell 22 | $ mkdir themes 23 | $ cd themes 24 | $ git clone https://github.com/pdevty/polymer 25 | ``` 26 | 27 | ## Usage 28 | 29 | ```shell 30 | $ hugo server -t polymer -w -D 31 | ``` 32 | 33 | ## Configuration 34 | 35 | config.toml 36 | 37 | ```toml 38 | theme="polymer" 39 | baseurl = "Your Site URL" 40 | languageCode = "en-us" 41 | title = "Your Site Title" 42 | MetaDataFormat = "toml" 43 | paginate = 10 # optional 44 | disqusShortname = "Your Disqus Name" # optional 45 | copyright = "© 2015 Copyright Text" 46 | 47 | [params] 48 | author = "Your Name" 49 | photo = "images/photo.png" # optional 50 | profile = "images/profile.png" # optional 51 | cover = "images/cover.png" # optional 52 | twitter = "Your Twitter Name" # optional 53 | github = "Your Github Name" # optional 54 | facebook = "Your facebook Name" # optional 55 | gplus = "Your Google+ Name" # optional 56 | linkedin = "Your linkedin Name" # optional 57 | googleAnalyticsUserID = "Your Analytics User Id" # optional 58 | 59 | [permalinks] 60 | post = "/:year/:month/:day/:filename/" # optional 61 | ``` 62 | 63 | ## Contributing 64 | 65 | 1. Fork it 66 | 2. Create your feature branch (`git checkout -b my-new-feature`) 67 | 3. Commit your changes (`git commit -am 'Add some feature'`) 68 | 4. Push to the branch (`git push origin my-new-feature`) 69 | 5. Create new Pull Request -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | Tags = [] 3 | Categories = [] 4 | +++ -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdevty/polymer/d8be0028b80dcf7026489598f4f8905ecc291611/images/screenshot.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdevty/polymer/d8be0028b80dcf7026489598f4f8905ecc291611/images/tn.png -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- 1 | {{ partial "header.html" . }} 2 | 3 | {{ partial "content.html" . }} 4 | 5 | {{ partial "pagination.html" .Paginator }} 6 | 7 | {{ partial "footer.html" . }} 8 | -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | {{ partial "header.html" . }} 2 | 3 | {{ $baseurl := .Site.BaseURL }} 4 |
5 | 6 |
7 |
{{ .Title }}
8 | {{if .Params.categories }} 9 |
10 | {{ range $index, $category := .Params.categories }} 11 | {{ $category }} 12 | {{ end }} 13 |
14 | {{end}} 15 |
{{ .Content }}
16 |
17 | {{ .Date.Format "2 Jan 2006" }} 18 | {{if .Params.tags }} 19 | {{ range $index, $tag := .Params.tags }} 20 | #{{ $tag }} 21 | {{ end }} 22 | {{end}} 23 |
24 | {{ with .Site.DisqusShortname }} 25 | {{ partial "disqus.html" . }} 26 | {{ end }} 27 |
28 | 29 |
30 | 31 | 32 | {{if .Prev}} 33 | 34 | {{else}} 35 | 36 | {{end}} 37 |
38 | {{if .Next}} 39 | 40 | {{else}} 41 | 42 | {{end}} 43 |
44 | 45 | {{ partial "footer.html" . }} 46 | -------------------------------------------------------------------------------- /layouts/_default/terms.html: -------------------------------------------------------------------------------- 1 | {{ $baseurl := .Site.BaseURL }} 2 | {{ partial "header.html" . }} 3 | 4 | {{ $data := .Data }} 5 | 6 | 7 | {{ range $key, $value := .Data.Terms }} 8 | {{ if eq $data.Plural "tags"}}{{else}}{{end}} 
{{ $key }}
{{ len $value }}
9 | {{ end }} 10 |
11 | 12 | {{ partial "footer.html" . }} -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- 1 | {{ partial "header.html" . }} 2 | 3 | {{ partial "content.html" . }} 4 | 5 | {{ partial "pagination.html" .Paginator }} 6 | 7 | {{ partial "footer.html" . }} 8 | -------------------------------------------------------------------------------- /layouts/partials/content.html: -------------------------------------------------------------------------------- 1 | {{ $baseurl := .Site.BaseURL }} 2 |
3 | 4 | {{range $index, $page := .Paginator.Pages}} 5 |
6 | 7 | {{if .Params.categories }} 8 |
9 | {{ range $index, $category := .Params.categories }} 10 | {{ $category }} 11 | {{ end }} 12 |
13 | {{end}} 14 |
{{ .Summary }}
15 |
16 | {{ .Date.Format "2 Jan 2006" }} 17 | {{if .Params.tags }} 18 | {{ range $index, $tag := .Params.tags }} 19 | #{{ $tag }} 20 | {{ end }} 21 | {{end}} 22 |
23 |
24 | {{ end }} 25 | 26 |
27 | -------------------------------------------------------------------------------- /layouts/partials/disqus.html: -------------------------------------------------------------------------------- 1 |
2 | 13 | -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
Design pdevty
5 |
6 | 7 | 8 | 9 | 10 | {{with .Site.Params.googleAnalyticsUserID }} 11 | 19 | {{end}} 20 | 21 | -------------------------------------------------------------------------------- /layouts/partials/pagination.html: -------------------------------------------------------------------------------- 1 | 2 | {{if .HasPrev}} 3 | 4 | {{else}} 5 | 6 | {{end}} 7 |
8 | {{if .HasNext}} 9 | 10 | {{else}} 11 | 12 | {{end}} 13 |
14 | -------------------------------------------------------------------------------- /static/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "polymer", 3 | "dependencies": { 4 | "polymer": "Polymer/polymer#^1.0.0", 5 | "paper-scroll-header-panel": "PolymerElements/paper-scroll-header-panel#^1.0.0", 6 | "iron-icons": "PolymerElements/iron-icons#^1.0.0", 7 | "paper-icon-button": "PolymerElements/paper-icon-button#^1.0.0", 8 | "paper-drawer-panel": "PolymerElements/paper-drawer-panel#^1.0.0", 9 | "paper-menu": "PolymerElements/paper-menu#^1.0.0", 10 | "paper-item": "PolymerElements/paper-item#^1.0.0", 11 | "paper-fab": "PolymerElements/paper-fab#^1.0.0", 12 | "iron-image": "PolymerElements/iron-image#^1.0.0" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /static/bower_components/font-roboto/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "font-roboto", 3 | "version": "1.0.0", 4 | "description": "An HTML import for Roboto", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "keywords": [ 9 | "font", 10 | "roboto" 11 | ], 12 | "repository": { 13 | "type": "git", 14 | "url": "git://github.com/PolymerElements/font-roboto.git" 15 | }, 16 | "main": "roboto.html", 17 | "license": "http://polymer.github.io/LICENSE.txt", 18 | "homepage": "https://github.com/PolymerElements/font-roboto/", 19 | "ignore": [ 20 | "/.*" 21 | ], 22 | "_release": "1.0.0", 23 | "_resolution": { 24 | "type": "version", 25 | "tag": "1.0.0", 26 | "commit": "b85b217e5f4b31f9c03b588e25c977b8104a40cd" 27 | }, 28 | "_source": "git://github.com/PolymerElements/font-roboto.git", 29 | "_target": "^1.0.0", 30 | "_originalSource": "PolymerElements/font-roboto" 31 | } -------------------------------------------------------------------------------- /static/bower_components/font-roboto/README.md: -------------------------------------------------------------------------------- 1 | # font-roboto 2 | -------------------------------------------------------------------------------- /static/bower_components/font-roboto/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "font-roboto", 3 | "version": "1.0.0", 4 | "description": "An HTML import for Roboto", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "keywords": [ 9 | "font", 10 | "roboto" 11 | ], 12 | "repository": { 13 | "type": "git", 14 | "url": "git://github.com/PolymerElements/font-roboto.git" 15 | }, 16 | "main": "roboto.html", 17 | "license": "http://polymer.github.io/LICENSE.txt", 18 | "homepage": "https://github.com/PolymerElements/font-roboto/", 19 | "ignore": [ 20 | "/.*" 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /static/bower_components/font-roboto/roboto.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /static/bower_components/iron-a11y-keys-behavior/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-a11y-keys-behavior", 3 | "version": "1.0.5", 4 | "description": "A behavior that enables keybindings for greater a11y.", 5 | "keywords": [ 6 | "web-components", 7 | "web-component", 8 | "polymer", 9 | "a11y", 10 | "input" 11 | ], 12 | "authors": [ 13 | "The Polymer Authors" 14 | ], 15 | "repository": { 16 | "type": "git", 17 | "url": "git://github.com/PolymerElements/iron-a11y-keys-behavior.git" 18 | }, 19 | "main": "iron-a11y-keys-behavior.html", 20 | "license": "http://polymer.github.io/LICENSE.txt", 21 | "dependencies": { 22 | "polymer": "Polymer/polymer#^1.0.0" 23 | }, 24 | "devDependencies": { 25 | "paper-styles": "PolymerElements/paper-styles#^1.0.2", 26 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 27 | "iron-test-helpers": "polymerelements/iron-test-helpers#^1.0.0", 28 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 29 | "web-component-tester": "*", 30 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 31 | }, 32 | "homepage": "https://github.com/polymerelements/iron-a11y-keys-behavior", 33 | "_release": "1.0.5", 34 | "_resolution": { 35 | "type": "version", 36 | "tag": "v1.0.5", 37 | "commit": "cf833eab5c55a26c5aa92e56d3fcb079120ce66a" 38 | }, 39 | "_source": "git://github.com/polymerelements/iron-a11y-keys-behavior.git", 40 | "_target": "^1.0.0", 41 | "_originalSource": "polymerelements/iron-a11y-keys-behavior" 42 | } -------------------------------------------------------------------------------- /static/bower_components/iron-a11y-keys-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /static/bower_components/iron-a11y-keys-behavior/README.md: -------------------------------------------------------------------------------- 1 | iron-a11y-keys-behavior 2 | ======================= 3 | 4 | `Polymer.IronA11yKeysBehavior` provides a normalized interface for processing 5 | keyboard commands that pertain to [WAI-ARIA best practices](http://www.w3.org/TR/wai-aria-practices/#kbd_general_binding). 6 | The element takes care of browser differences with respect to Keyboard events 7 | and uses an expressive syntax to filter key presses. 8 | 9 | Use the `keyBindings` prototype property to express what combination of keys 10 | will trigger the event to fire. 11 | 12 | Use the `key-event-target` attribute to set up event handlers on a specific 13 | node. 14 | The `keys-pressed` event will fire when one of the key combinations set with the 15 | `keys` property is pressed. 16 | -------------------------------------------------------------------------------- /static/bower_components/iron-a11y-keys-behavior/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-a11y-keys-behavior", 3 | "version": "1.0.5", 4 | "description": "A behavior that enables keybindings for greater a11y.", 5 | "keywords": [ 6 | "web-components", 7 | "web-component", 8 | "polymer", 9 | "a11y", 10 | "input" 11 | ], 12 | "authors": [ 13 | "The Polymer Authors" 14 | ], 15 | "repository": { 16 | "type": "git", 17 | "url": "git://github.com/PolymerElements/iron-a11y-keys-behavior.git" 18 | }, 19 | "main": "iron-a11y-keys-behavior.html", 20 | "license": "http://polymer.github.io/LICENSE.txt", 21 | "dependencies": { 22 | "polymer": "Polymer/polymer#^1.0.0" 23 | }, 24 | "devDependencies": { 25 | "paper-styles": "PolymerElements/paper-styles#^1.0.2", 26 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 27 | "iron-test-helpers": "polymerelements/iron-test-helpers#^1.0.0", 28 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 29 | "web-component-tester": "*", 30 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /static/bower_components/iron-a11y-keys-behavior/demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | Iron A11y Keys Behavior demo 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 | 25 | -------------------------------------------------------------------------------- /static/bower_components/iron-a11y-keys-behavior/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | iron-a11y-keys-behavior 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /static/bower_components/iron-a11y-keys-behavior/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | Tests 16 | 17 | 18 | 19 | 20 | 21 | 22 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /static/bower_components/iron-behaviors/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-behaviors", 3 | "version": "1.0.4", 4 | "description": "Provides a set of behaviors for the iron elements", 5 | "private": true, 6 | "authors": [ 7 | "The Polymer Authors" 8 | ], 9 | "repository": { 10 | "type": "git", 11 | "url": "git://github.com/PolymerElements/iron-behaviors.git" 12 | }, 13 | "main": [ 14 | "iron-button-state.html", 15 | "iron-control-state.html" 16 | ], 17 | "license": "http://polymer.github.io/LICENSE.txt", 18 | "dependencies": { 19 | "polymer": "Polymer/polymer#^1.0.0", 20 | "iron-a11y-keys-behavior": "PolymerElements/iron-a11y-keys-behavior#^1.0.0" 21 | }, 22 | "devDependencies": { 23 | "paper-styles": "polymerelements/paper-styles#^1.0.2", 24 | "iron-test-helpers": "polymerelements/iron-test-helpers#^1.0.0", 25 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 26 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 27 | "web-component-tester": "*", 28 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 29 | }, 30 | "homepage": "https://github.com/PolymerElements/iron-behaviors", 31 | "_release": "1.0.4", 32 | "_resolution": { 33 | "type": "version", 34 | "tag": "v1.0.4", 35 | "commit": "8792edd457de697a74f398c09b67df30adf7d866" 36 | }, 37 | "_source": "git://github.com/PolymerElements/iron-behaviors.git", 38 | "_target": "^1.0.0", 39 | "_originalSource": "PolymerElements/iron-behaviors" 40 | } -------------------------------------------------------------------------------- /static/bower_components/iron-behaviors/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /static/bower_components/iron-behaviors/README.md: -------------------------------------------------------------------------------- 1 | iron-behaviors 2 | ============== 3 | 4 | This repository collects shared behaviors that are mixed in to other elements. 5 | -------------------------------------------------------------------------------- /static/bower_components/iron-behaviors/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-behaviors", 3 | "version": "1.0.4", 4 | "description": "Provides a set of behaviors for the iron elements", 5 | "private": true, 6 | "authors": [ 7 | "The Polymer Authors" 8 | ], 9 | "repository": { 10 | "type": "git", 11 | "url": "git://github.com/PolymerElements/iron-behaviors.git" 12 | }, 13 | "main": [ 14 | "iron-button-state.html", 15 | "iron-control-state.html" 16 | ], 17 | "license": "http://polymer.github.io/LICENSE.txt", 18 | "dependencies": { 19 | "polymer": "Polymer/polymer#^1.0.0", 20 | "iron-a11y-keys-behavior": "PolymerElements/iron-a11y-keys-behavior#^1.0.0" 21 | }, 22 | "devDependencies": { 23 | "paper-styles": "polymerelements/paper-styles#^1.0.2", 24 | "iron-test-helpers": "polymerelements/iron-test-helpers#^1.0.0", 25 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 26 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 27 | "web-component-tester": "*", 28 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /static/bower_components/iron-behaviors/demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | simple-button 18 | 19 | 20 | 21 | 22 | 23 | 30 | 31 | 32 | 33 |
34 |

Normal

35 | 36 | Hello World 37 | 38 |

Toggles

39 | 40 | Hello World 41 | 42 |

Disabled

43 | 44 | Hello World 45 |
46 | 47 | 48 | -------------------------------------------------------------------------------- /static/bower_components/iron-behaviors/demo/simple-button.html: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 46 | 47 | 52 | 53 | 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /static/bower_components/iron-behaviors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | Iron Behaviors 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /static/bower_components/iron-behaviors/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /static/bower_components/iron-behaviors/test/test-elements.html: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | 26 | 27 | 45 | 46 | 47 | 48 | 51 | 52 | 53 | 54 | 67 | -------------------------------------------------------------------------------- /static/bower_components/iron-flex-layout/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-flex-layout", 3 | "version": "1.0.2", 4 | "description": "Provide flexbox-based layouts", 5 | "keywords": [ 6 | "web-components", 7 | "polymer", 8 | "layout" 9 | ], 10 | "private": true, 11 | "license": "http://polymer.github.io/LICENSE.txt", 12 | "authors": [ 13 | "The Polymer Authors" 14 | ], 15 | "repository": { 16 | "type": "git", 17 | "url": "git://github.com/PolymerElements/iron-flex-layout.git" 18 | }, 19 | "dependencies": { 20 | "polymer": "Polymer/polymer#^1.0.0" 21 | }, 22 | "devDependencies": { 23 | "paper-styles": "polymerelements/paper-styles#^1.0.0", 24 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 25 | }, 26 | "homepage": "https://github.com/polymerelements/iron-flex-layout", 27 | "_release": "1.0.2", 28 | "_resolution": { 29 | "type": "version", 30 | "tag": "v1.0.2", 31 | "commit": "50bcecf40ab23caa7c2cd90030555e00c5ba7154" 32 | }, 33 | "_source": "git://github.com/polymerelements/iron-flex-layout.git", 34 | "_target": "^1.0.0", 35 | "_originalSource": "polymerelements/iron-flex-layout" 36 | } -------------------------------------------------------------------------------- /static/bower_components/iron-flex-layout/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | 3 | -------------------------------------------------------------------------------- /static/bower_components/iron-flex-layout/README.md: -------------------------------------------------------------------------------- 1 | iron-flex-layout 2 | ================ 3 | 4 | Layout styles for the iron elements. 5 | -------------------------------------------------------------------------------- /static/bower_components/iron-flex-layout/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-flex-layout", 3 | "version": "1.0.2", 4 | "description": "Provide flexbox-based layouts", 5 | "keywords": [ 6 | "web-components", 7 | "polymer", 8 | "layout" 9 | ], 10 | "private": true, 11 | "license": "http://polymer.github.io/LICENSE.txt", 12 | "authors": [ 13 | "The Polymer Authors" 14 | ], 15 | "repository": { 16 | "type": "git", 17 | "url": "git://github.com/PolymerElements/iron-flex-layout.git" 18 | }, 19 | "dependencies": { 20 | "polymer": "Polymer/polymer#^1.0.0" 21 | }, 22 | "devDependencies": { 23 | "paper-styles": "polymerelements/paper-styles#^1.0.0", 24 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /static/bower_components/iron-flex-layout/demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | iron-flex-layout 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /static/bower_components/iron-icon/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-icon", 3 | "private": true, 4 | "version": "1.0.2", 5 | "license": "http://polymer.github.io/LICENSE.txt", 6 | "description": "An element that supports displaying an icon", 7 | "main": "iron-icon.html", 8 | "author": [ 9 | "The Polymer Authors" 10 | ], 11 | "keywords": [ 12 | "web-components", 13 | "polymer", 14 | "icon" 15 | ], 16 | "repository": { 17 | "type": "git", 18 | "url": "git://github.com/PolymerElements/iron-icon.git" 19 | }, 20 | "dependencies": { 21 | "iron-flex-layout": "polymerelements/iron-flex-layout#^1.0.0", 22 | "iron-meta": "polymerelements/iron-meta#^1.0.0", 23 | "polymer": "Polymer/polymer#^1.0.0" 24 | }, 25 | "devDependencies": { 26 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 27 | "iron-iconset": "polymerelements/iron-iconset#^1.0.0", 28 | "iron-icons": "polymerelements/iron-icons#^1.0.0", 29 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 30 | "web-component-tester": "*", 31 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 32 | }, 33 | "homepage": "https://github.com/polymerelements/iron-icon", 34 | "_release": "1.0.2", 35 | "_resolution": { 36 | "type": "version", 37 | "tag": "v1.0.2", 38 | "commit": "f9246c47ecb1c682f0fb9ea48255d5f7debd1e03" 39 | }, 40 | "_source": "git://github.com/polymerelements/iron-icon.git", 41 | "_target": "^1.0.0", 42 | "_originalSource": "polymerelements/iron-icon" 43 | } -------------------------------------------------------------------------------- /static/bower_components/iron-icon/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /static/bower_components/iron-icon/README.md: -------------------------------------------------------------------------------- 1 | iron-icon 2 | ========= 3 | 4 | The `iron-icon` element displays an icon. By default an icon renders as a 24px square. 5 | 6 | Example using src: 7 | 8 | ```html 9 | 10 | ``` 11 | 12 | Example setting size to 32px x 32px: 13 | 14 | ```html 15 | 16 | 17 | 23 | ``` 24 | 25 | The iron elements include several sets of icons. 26 | To use the default set of icons, import `iron-icons.html` and use the `icon` attribute to specify an icon: 27 | 28 | ```html 29 | 30 | 31 | 32 | 33 | ``` 34 | 35 | To use a different built-in set of icons, import `iron-icons/-icons.html`, and 36 | specify the icon as `:`. For example: 37 | 38 | ```html 39 | 40 | 41 | 42 | 43 | ``` 44 | 45 | You can also create custom icon sets of bitmap or SVG icons. 46 | 47 | Example of using an icon named `cherry` from a custom iconset with the ID `fruit`: 48 | 49 | ```html 50 | 51 | ``` 52 | 53 | See [iron-iconset](#iron-iconset) and [iron-iconset-svg](#iron-iconset-svg) for more information about 54 | how to create a custom iconset. 55 | 56 | See [iron-icons](http://www.polymer-project.org/components/iron-icons/demo.html) for the default set of icons. 57 | -------------------------------------------------------------------------------- /static/bower_components/iron-icon/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-icon", 3 | "private": true, 4 | "version": "1.0.2", 5 | "license": "http://polymer.github.io/LICENSE.txt", 6 | "description": "An element that supports displaying an icon", 7 | "main": "iron-icon.html", 8 | "author": [ 9 | "The Polymer Authors" 10 | ], 11 | "keywords": [ 12 | "web-components", 13 | "polymer", 14 | "icon" 15 | ], 16 | "repository": { 17 | "type": "git", 18 | "url": "git://github.com/PolymerElements/iron-icon.git" 19 | }, 20 | "dependencies": { 21 | "iron-flex-layout": "polymerelements/iron-flex-layout#^1.0.0", 22 | "iron-meta": "polymerelements/iron-meta#^1.0.0", 23 | "polymer": "Polymer/polymer#^1.0.0" 24 | }, 25 | "devDependencies": { 26 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 27 | "iron-iconset": "polymerelements/iron-iconset#^1.0.0", 28 | "iron-icons": "polymerelements/iron-icons#^1.0.0", 29 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 30 | "web-component-tester": "*", 31 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /static/bower_components/iron-icon/demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | iron-icon demo 14 | 15 | 16 | 17 | 18 | 19 | 29 | 30 | 31 |
32 |

This demo is for a single <iron-icon>. If you're looking for the 33 | whole set of available icons, check out the <iron-icons> demo.

34 | 35 |
36 | 37 | 38 | 39 |

<iron-icon icon="example:location">

40 | 41 | 42 | 43 |

<iron-icon src="location.png">

44 | 45 |
46 |
47 | 48 | 49 | -------------------------------------------------------------------------------- /static/bower_components/iron-icon/demo/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdevty/polymer/d8be0028b80dcf7026489598f4f8905ecc291611/static/bower_components/iron-icon/demo/location.png -------------------------------------------------------------------------------- /static/bower_components/iron-icon/hero.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /static/bower_components/iron-icon/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /static/bower_components/iron-icon/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | Tests 17 | 18 | 19 | 20 | 21 | 22 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /static/bower_components/iron-icons/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-icons", 3 | "version": "1.0.3", 4 | "description": "A set of icons for use with iron-icon", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "keywords": [ 9 | "web-components", 10 | "polymer", 11 | "icon" 12 | ], 13 | "main": "iron-icons.html", 14 | "private": true, 15 | "repository": { 16 | "type": "git", 17 | "url": "git://github.com/PolymerElements/iron-icons" 18 | }, 19 | "license": "http://polymer.github.io/LICENSE.txt", 20 | "homepage": "https://github.com/PolymerElements/paper-icons", 21 | "dependencies": { 22 | "iron-icon": "polymerelements/iron-icon#^1.0.0", 23 | "iron-iconset-svg": "polymerelements/iron-iconset-svg#^1.0.0", 24 | "polymer": "Polymer/polymer#^1.0.0" 25 | }, 26 | "devDependencies": { 27 | "paper-styles": "polymerelements/paper-styles#^1.0.2", 28 | "iron-component-page": "polymerelements/iron-component-page#1.0.0", 29 | "iron-flex-layout": "polymerelements/iron-flex-layout#^1.0.0", 30 | "iron-meta": "polymerelements/iron-meta#^1.0.0", 31 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 32 | }, 33 | "ignore": [ 34 | "util", 35 | "update-icons.sh" 36 | ], 37 | "_release": "1.0.3", 38 | "_resolution": { 39 | "type": "version", 40 | "tag": "v1.0.3", 41 | "commit": "036325be99c33c052ac807a705aacad70be1127f" 42 | }, 43 | "_source": "git://github.com/PolymerElements/iron-icons.git", 44 | "_target": "^1.0.0", 45 | "_originalSource": "PolymerElements/iron-icons" 46 | } -------------------------------------------------------------------------------- /static/bower_components/iron-icons/.gitignore: -------------------------------------------------------------------------------- 1 | util/node_modules 2 | material-design-icons 3 | bower_components 4 | -------------------------------------------------------------------------------- /static/bower_components/iron-icons/README.md: -------------------------------------------------------------------------------- 1 | iron-icons 2 | ========= 3 | 4 | ## Building 5 | Running `update-icons.sh` will checkout [material-design-icons](https://github.com/google/material-design-icons), reduce 6 | the fileset to 24px svgs, and compile the iconsets. 7 | -------------------------------------------------------------------------------- /static/bower_components/iron-icons/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-icons", 3 | "version": "1.0.3", 4 | "description": "A set of icons for use with iron-icon", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "keywords": [ 9 | "web-components", 10 | "polymer", 11 | "icon" 12 | ], 13 | "main": "iron-icons.html", 14 | "private": true, 15 | "repository": { 16 | "type": "git", 17 | "url": "git://github.com/PolymerElements/iron-icons" 18 | }, 19 | "license": "http://polymer.github.io/LICENSE.txt", 20 | "homepage": "https://github.com/PolymerElements/paper-icons", 21 | "dependencies": { 22 | "iron-icon": "polymerelements/iron-icon#^1.0.0", 23 | "iron-iconset-svg": "polymerelements/iron-iconset-svg#^1.0.0", 24 | "polymer": "Polymer/polymer#^1.0.0" 25 | }, 26 | "devDependencies": { 27 | "paper-styles": "polymerelements/paper-styles#^1.0.2", 28 | "iron-component-page": "polymerelements/iron-component-page#1.0.0", 29 | "iron-flex-layout": "polymerelements/iron-flex-layout#^1.0.0", 30 | "iron-meta": "polymerelements/iron-meta#^1.0.0", 31 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 32 | }, 33 | "ignore": [ 34 | "util", 35 | "update-icons.sh" 36 | ] 37 | } 38 | -------------------------------------------------------------------------------- /static/bower_components/iron-icons/hero.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /static/bower_components/iron-icons/index.html: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /static/bower_components/iron-iconset-svg/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-iconset-svg", 3 | "description": "Manages a set of svg icons", 4 | "version": "1.0.4", 5 | "keywords": [ 6 | "web-components", 7 | "polymer", 8 | "icon" 9 | ], 10 | "license": "http://polymer.github.io/LICENSE.txt", 11 | "private": true, 12 | "authors": [ 13 | "The Polymer Authors" 14 | ], 15 | "repository": { 16 | "type": "git", 17 | "url": "git://github.com/PolymerElements/iron-iconset-svg.git" 18 | }, 19 | "dependencies": { 20 | "polymer": "polymer/polymer#^1.0.0", 21 | "iron-meta": "polymerelements/iron-meta#^1.0.0" 22 | }, 23 | "devDependencies": { 24 | "paper-styles": "polymerelements/paper-styles#^1.0.2", 25 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 26 | "iron-icon": "polymerelements/iron-icon#^1.0.0", 27 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 28 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0", 29 | "web-component-tester": "*" 30 | }, 31 | "homepage": "https://github.com/polymerelements/iron-iconset-svg", 32 | "_release": "1.0.4", 33 | "_resolution": { 34 | "type": "version", 35 | "tag": "v1.0.4", 36 | "commit": "795aa82ac22971421bc4375efbd2419ebba9099f" 37 | }, 38 | "_source": "git://github.com/polymerelements/iron-iconset-svg.git", 39 | "_target": "^1.0.0", 40 | "_originalSource": "polymerelements/iron-iconset-svg" 41 | } -------------------------------------------------------------------------------- /static/bower_components/iron-iconset-svg/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /static/bower_components/iron-iconset-svg/README.md: -------------------------------------------------------------------------------- 1 | iron-iconset-svg 2 | ========= 3 | 4 | See the [component page](http://polymer-project.org/docs/elements/iron-elements.html#iron-iconset-svg) for more information. 5 | -------------------------------------------------------------------------------- /static/bower_components/iron-iconset-svg/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-iconset-svg", 3 | "description": "Manages a set of svg icons", 4 | "version": "1.0.4", 5 | "keywords": [ 6 | "web-components", 7 | "polymer", 8 | "icon" 9 | ], 10 | "license": "http://polymer.github.io/LICENSE.txt", 11 | "private": true, 12 | "authors": [ 13 | "The Polymer Authors" 14 | ], 15 | "repository": { 16 | "type": "git", 17 | "url": "git://github.com/PolymerElements/iron-iconset-svg.git" 18 | }, 19 | "dependencies": { 20 | "polymer": "polymer/polymer#^1.0.0", 21 | "iron-meta": "polymerelements/iron-meta#^1.0.0" 22 | }, 23 | "devDependencies": { 24 | "paper-styles": "polymerelements/paper-styles#^1.0.2", 25 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 26 | "iron-icon": "polymerelements/iron-icon#^1.0.0", 27 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 28 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0", 29 | "web-component-tester": "*" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /static/bower_components/iron-iconset-svg/demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | iron-iconset-svg 16 | 17 | 18 | 19 | 20 | 21 | 55 | 56 | 57 | 58 |
59 | 60 | 61 | 62 |
63 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /static/bower_components/iron-iconset-svg/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /static/bower_components/iron-iconset-svg/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | Tests 16 | 17 | 18 | 19 | 20 | 21 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /static/bower_components/iron-image/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-image", 3 | "version": "1.0.2", 4 | "license": "http://polymer.github.io/LICENSE.txt", 5 | "description": "An image-displaying element with lots of convenient features", 6 | "private": true, 7 | "authors": [ 8 | "The Polymer Authors" 9 | ], 10 | "keywords": [ 11 | "web-components", 12 | "polymer", 13 | "media" 14 | ], 15 | "repository": { 16 | "type": "git", 17 | "url": "git://github.com/PolymerElements/iron-image.git" 18 | }, 19 | "dependencies": { 20 | "iron-flex-layout": "polymerelements/iron-flex-layout#^1.0.0", 21 | "polymer": "Polymer/polymer#^1.0.0" 22 | }, 23 | "devDependencies": { 24 | "paper-styles": "polymerelements/paper-styles#^1.0.4", 25 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 26 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 27 | "web-component-tester": "*", 28 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 29 | }, 30 | "homepage": "https://github.com/PolymerElements/iron-image", 31 | "_release": "1.0.2", 32 | "_resolution": { 33 | "type": "version", 34 | "tag": "v1.0.2", 35 | "commit": "f3d3090dc9a59b662f67c9c7dd1fc61e716f353d" 36 | }, 37 | "_source": "git://github.com/PolymerElements/iron-image.git", 38 | "_target": "^1.0.0", 39 | "_originalSource": "PolymerElements/iron-image" 40 | } -------------------------------------------------------------------------------- /static/bower_components/iron-image/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /static/bower_components/iron-image/README.md: -------------------------------------------------------------------------------- 1 | iron-image 2 | ========== 3 | 4 | `iron-image` is an element for displaying an image that provides useful sizing and 5 | preloading options not found on the standard `` tag. 6 | 7 | The `sizing` option allows the image to be either cropped (`cover`) or 8 | letterboxed (`contain`) to fill a fixed user-size placed on the element. 9 | 10 | The `preload` option prevents the browser from rendering the image until the 11 | image is fully loaded. In the interim, either the element's CSS `background-color` 12 | can be be used as the placeholder, or the `placeholder` property can be 13 | set to a URL (preferably a data-URI, for instant rendering) for an 14 | placeholder image. 15 | 16 | The `fade` option (only valid when `preload` is set) will cause the placeholder 17 | image/color to be faded out once the image is rendered. 18 | 19 | Examples: 20 | 21 | Basically identical to `` tag: 22 | 23 | ```html 24 | 25 | ``` 26 | 27 | Will letterbox the image to fit: 28 | 29 | ```html 30 | 32 | ``` 33 | 34 | Will crop the image to fit: 35 | 36 | ```html 37 | 39 | ``` 40 | 41 | Will show light-gray background until the image loads: 42 | 43 | ```html 44 | 46 | ``` 47 | 48 | Will show a base-64 encoded placeholder image until the image loads: 49 | 50 | ```html 51 | 53 | ``` 54 | 55 | Will fade the light-gray background out once the image is loaded: 56 | 57 | ```html 58 | 60 | ``` 61 | -------------------------------------------------------------------------------- /static/bower_components/iron-image/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-image", 3 | "version": "1.0.2", 4 | "license": "http://polymer.github.io/LICENSE.txt", 5 | "description": "An image-displaying element with lots of convenient features", 6 | "private": true, 7 | "authors": [ 8 | "The Polymer Authors" 9 | ], 10 | "keywords": [ 11 | "web-components", 12 | "polymer", 13 | "media" 14 | ], 15 | "repository": { 16 | "type": "git", 17 | "url": "git://github.com/PolymerElements/iron-image.git" 18 | }, 19 | "dependencies": { 20 | "iron-flex-layout": "polymerelements/iron-flex-layout#^1.0.0", 21 | "polymer": "Polymer/polymer#^1.0.0" 22 | }, 23 | "devDependencies": { 24 | "paper-styles": "polymerelements/paper-styles#^1.0.4", 25 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 26 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 27 | "web-component-tester": "*", 28 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /static/bower_components/iron-image/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | iron-image 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /static/bower_components/iron-image/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /static/bower_components/iron-media-query/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-media-query", 3 | "version": "1.0.2", 4 | "description": "Lets you bind to a CSS media query", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "keywords": [ 9 | "web-components", 10 | "polymer", 11 | "media" 12 | ], 13 | "private": true, 14 | "repository": { 15 | "type": "git", 16 | "url": "git://github.com/PolymerElements/iron-media-query" 17 | }, 18 | "license": "http://polymer.github.io/LICENSE.txt", 19 | "homepage": "https://github.com/PolymerElements/iron-media-query", 20 | "ignore": [], 21 | "dependencies": { 22 | "polymer": "Polymer/polymer#^1.0.0" 23 | }, 24 | "devDependencies": { 25 | "paper-styles": "polymerelements/paper-styles#^1.0.2", 26 | "web-component-tester": "*", 27 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 28 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 29 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 30 | }, 31 | "_release": "1.0.2", 32 | "_resolution": { 33 | "type": "version", 34 | "tag": "v1.0.2", 35 | "commit": "34abf0a3b8bf9e9e478352dbb3d9e6a76bf3669a" 36 | }, 37 | "_source": "git://github.com/PolymerElements/iron-media-query.git", 38 | "_target": "^1.0.0", 39 | "_originalSource": "PolymerElements/iron-media-query" 40 | } -------------------------------------------------------------------------------- /static/bower_components/iron-media-query/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /static/bower_components/iron-media-query/README.md: -------------------------------------------------------------------------------- 1 | # iron-media-query 2 | 3 | `iron-media-query` can be used to data bind to a CSS media query. 4 | The `query` property is a bare CSS media query. 5 | The `query-matches` property is a boolean representing if the page matches that media query. 6 | 7 | Example: 8 | 9 | ```html 10 | 11 | ``` 12 | -------------------------------------------------------------------------------- /static/bower_components/iron-media-query/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-media-query", 3 | "version": "1.0.2", 4 | "description": "Lets you bind to a CSS media query", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "keywords": [ 9 | "web-components", 10 | "polymer", 11 | "media" 12 | ], 13 | "private": true, 14 | "repository": { 15 | "type": "git", 16 | "url": "git://github.com/PolymerElements/iron-media-query" 17 | }, 18 | "license": "http://polymer.github.io/LICENSE.txt", 19 | "homepage": "https://github.com/PolymerElements/iron-media-query", 20 | "ignore": [], 21 | "dependencies": { 22 | "polymer": "Polymer/polymer#^1.0.0" 23 | }, 24 | "devDependencies": { 25 | "paper-styles": "polymerelements/paper-styles#^1.0.2", 26 | "web-component-tester": "*", 27 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 28 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 29 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /static/bower_components/iron-media-query/demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | iron-media-query demo 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 |

<iron-media-query>

30 | 31 | 42 |
43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /static/bower_components/iron-media-query/hero.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /static/bower_components/iron-media-query/index.html: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | iron-media-query 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /static/bower_components/iron-media-query/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | Tests 16 | 17 | 18 | 19 | 20 | 21 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /static/bower_components/iron-menu-behavior/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-menu-behavior", 3 | "version": "1.0.1", 4 | "description": "Provides accessible menu behavior", 5 | "authors": "The Polymer Authors", 6 | "keywords": [ 7 | "web-components", 8 | "polymer", 9 | "behavior", 10 | "menu" 11 | ], 12 | "main": "iron-menu-behavior.html", 13 | "private": true, 14 | "repository": { 15 | "type": "git", 16 | "url": "git://github.com/PolymerElements/iron-menu-behavior" 17 | }, 18 | "license": "http://polymer.github.io/LICENSE.txt", 19 | "homepage": "https://github.com/PolymerElements/iron-menu-behavior", 20 | "ignore": [], 21 | "dependencies": { 22 | "iron-selector": "PolymerElements/iron-selector#^1.0.0", 23 | "polymer": "Polymer/polymer#^1.0.0", 24 | "iron-a11y-keys-behavior": "polymerelements/iron-a11y-keys-behavior#^1.0.0" 25 | }, 26 | "devDependencies": { 27 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 28 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 29 | "web-component-tester": "*", 30 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 31 | }, 32 | "_release": "1.0.1", 33 | "_resolution": { 34 | "type": "version", 35 | "tag": "v1.0.1", 36 | "commit": "3809f0eb7461c8ca63640aaa238775b3a25aa578" 37 | }, 38 | "_source": "git://github.com/PolymerElements/iron-menu-behavior.git", 39 | "_target": "^1.0.0", 40 | "_originalSource": "PolymerElements/iron-menu-behavior" 41 | } -------------------------------------------------------------------------------- /static/bower_components/iron-menu-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /static/bower_components/iron-menu-behavior/README.md: -------------------------------------------------------------------------------- 1 | # iron-menu-behavior 2 | 3 | `Polymer.IronMenuBehavior` implements accessible menu behavior. 4 | -------------------------------------------------------------------------------- /static/bower_components/iron-menu-behavior/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-menu-behavior", 3 | "version": "1.0.1", 4 | "description": "Provides accessible menu behavior", 5 | "authors": "The Polymer Authors", 6 | "keywords": [ 7 | "web-components", 8 | "polymer", 9 | "behavior", 10 | "menu" 11 | ], 12 | "main": "iron-menu-behavior.html", 13 | "private": true, 14 | "repository": { 15 | "type": "git", 16 | "url": "git://github.com/PolymerElements/iron-menu-behavior" 17 | }, 18 | "license": "http://polymer.github.io/LICENSE.txt", 19 | "homepage": "https://github.com/PolymerElements/iron-menu-behavior", 20 | "ignore": [], 21 | "dependencies": { 22 | "iron-selector": "PolymerElements/iron-selector#^1.0.0", 23 | "polymer": "Polymer/polymer#^1.0.0", 24 | "iron-a11y-keys-behavior": "polymerelements/iron-a11y-keys-behavior#^1.0.0" 25 | }, 26 | "devDependencies": { 27 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 28 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 29 | "web-component-tester": "*", 30 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /static/bower_components/iron-menu-behavior/demo/simple-menu.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 23 | 24 | 31 | 32 | 33 | 34 | 51 | -------------------------------------------------------------------------------- /static/bower_components/iron-menu-behavior/demo/simple-menubar.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 27 | 28 | 35 | 36 | 37 | 38 | 55 | -------------------------------------------------------------------------------- /static/bower_components/iron-menu-behavior/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | iron-menu-behavior 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /static/bower_components/iron-menu-behavior/iron-menubar-behavior.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 66 | -------------------------------------------------------------------------------- /static/bower_components/iron-menu-behavior/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | iron-menu-behavior tests 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /static/bower_components/iron-menu-behavior/test/test-menu.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 21 | 22 | 23 | 24 | 41 | -------------------------------------------------------------------------------- /static/bower_components/iron-menu-behavior/test/test-menubar.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 21 | 22 | 23 | 24 | 41 | -------------------------------------------------------------------------------- /static/bower_components/iron-meta/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-meta", 3 | "version": "1.0.3", 4 | "keywords": [ 5 | "web-components", 6 | "polymer" 7 | ], 8 | "license": "http://polymer.github.io/LICENSE.txt", 9 | "description": "Useful for sharing information across a DOM tree", 10 | "private": true, 11 | "authors": [ 12 | "The Polymer Authors" 13 | ], 14 | "repository": { 15 | "type": "git", 16 | "url": "git://github.com/PolymerElements/iron-meta.git" 17 | }, 18 | "dependencies": { 19 | "polymer": "Polymer/polymer#^1.0.0" 20 | }, 21 | "devDependencies": { 22 | "paper-styles": "polymerelements/paper-styles#^1.0.4", 23 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 24 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 25 | "web-component-tester": "*", 26 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 27 | }, 28 | "homepage": "https://github.com/polymerelements/iron-meta", 29 | "_release": "1.0.3", 30 | "_resolution": { 31 | "type": "version", 32 | "tag": "v1.0.3", 33 | "commit": "91529259262b0d8f33fed44bc3fd47aedf35cb04" 34 | }, 35 | "_source": "git://github.com/polymerelements/iron-meta.git", 36 | "_target": "^1.0.0", 37 | "_originalSource": "polymerelements/iron-meta" 38 | } -------------------------------------------------------------------------------- /static/bower_components/iron-meta/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /static/bower_components/iron-meta/README.md: -------------------------------------------------------------------------------- 1 | iron-meta 2 | ========= 3 | 4 | `iron-meta` is a generic element you can use for sharing information across the DOM tree. 5 | It uses [monostate pattern](http://c2.com/cgi/wiki?MonostatePattern) such that any 6 | instance of iron-meta has access to the shared 7 | information. You can use `iron-meta` to share whatever you want (or create an extension 8 | [like x-meta] for enhancements). 9 | 10 | The `iron-meta` instances containing your actual data can be loaded in an import, 11 | or constructed in any way you see fit. The only requirement is that you create them 12 | before you try to access them. 13 | 14 | Examples: 15 | 16 | If I create an instance like this: 17 | 18 | ```html 19 | 20 | ``` 21 | 22 | Note that value="foo/bar" is the metadata I've defined. I could define more 23 | attributes or use child nodes to define additional metadata. 24 | 25 | Now I can access that element (and it's metadata) from any iron-meta instance 26 | via the byKey method, e.g. 27 | 28 | ```javascript 29 | meta.byKey('info').getAttribute('value'); 30 | ``` 31 | 32 | Pure imperative form would be like: 33 | 34 | ```javascript 35 | document.createElement('iron-meta').byKey('info').getAttribute('value'); 36 | ``` 37 | 38 | Or, in a Polymer element, you can include a meta in your template: 39 | 40 | ```html 41 | 42 | ``` 43 | 44 | ```javascript 45 | this.$.meta.byKey('info').getAttribute('value'); 46 | ``` 47 | -------------------------------------------------------------------------------- /static/bower_components/iron-meta/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-meta", 3 | "version": "1.0.3", 4 | "keywords": [ 5 | "web-components", 6 | "polymer" 7 | ], 8 | "license": "http://polymer.github.io/LICENSE.txt", 9 | "description": "Useful for sharing information across a DOM tree", 10 | "private": true, 11 | "authors": [ 12 | "The Polymer Authors" 13 | ], 14 | "repository": { 15 | "type": "git", 16 | "url": "git://github.com/PolymerElements/iron-meta.git" 17 | }, 18 | "dependencies": { 19 | "polymer": "Polymer/polymer#^1.0.0" 20 | }, 21 | "devDependencies": { 22 | "paper-styles": "polymerelements/paper-styles#^1.0.4", 23 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 24 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 25 | "web-component-tester": "*", 26 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /static/bower_components/iron-meta/demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | iron-meta 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 |

<iron-meta>

27 | 28 | The value stored at key="info" is . 29 |
30 | 31 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /static/bower_components/iron-meta/hero.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /static/bower_components/iron-meta/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | iron-meta 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /static/bower_components/iron-meta/test/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | iron-meta-basic 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /static/bower_components/iron-meta/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | Tests 17 | 18 | 19 | 20 | 21 | 22 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /static/bower_components/iron-resizable-behavior/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-resizable-behavior", 3 | "version": "1.0.2", 4 | "license": "http://polymer.github.io/LICENSE.txt", 5 | "description": "Coordinates the flow of resizeable elements", 6 | "private": true, 7 | "main": "iron-resizable-behavior.html", 8 | "authors": [ 9 | "The Polymer Authors" 10 | ], 11 | "keywords": [ 12 | "web-components", 13 | "polymer", 14 | "iron", 15 | "behavior" 16 | ], 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com/PolymerElements/iron-resizable-behavior.git" 20 | }, 21 | "dependencies": { 22 | "polymer": "Polymer/polymer#^1.0.0" 23 | }, 24 | "devDependencies": { 25 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 26 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 27 | "web-component-tester": "*", 28 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 29 | }, 30 | "homepage": "https://github.com/PolymerElements/iron-resizable-behavior", 31 | "_release": "1.0.2", 32 | "_resolution": { 33 | "type": "version", 34 | "tag": "v1.0.2", 35 | "commit": "85de8ba28be2bf17c81d6436ef1119022b003674" 36 | }, 37 | "_source": "git://github.com/PolymerElements/iron-resizable-behavior.git", 38 | "_target": "^1.0.0", 39 | "_originalSource": "PolymerElements/iron-resizable-behavior" 40 | } -------------------------------------------------------------------------------- /static/bower_components/iron-resizable-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /static/bower_components/iron-resizable-behavior/README.md: -------------------------------------------------------------------------------- 1 | iron-resizable-behavior 2 | ======================= 3 | 4 | `IronResizableBehavior` is a behavior that can be used in Polymer elements to 5 | coordinate the flow of resize events between "resizers" (elements that control the 6 | size or hidden state of their children) and "resizables" (elements that need to be 7 | notified when they are resized or un-hidden by their parents in order to take 8 | action on their new measurements). 9 | 10 | Elements that perform measurement should add the `IronResizableBehavior` behavior to 11 | their element definition and listen for the `iron-resize` event on themselves. 12 | This event will be fired when they become showing after having been hidden, 13 | when they are resized explicitly by another resizable, or when the window has been 14 | resized. 15 | 16 | Note, the `iron-resize` event is non-bubbling. 17 | -------------------------------------------------------------------------------- /static/bower_components/iron-resizable-behavior/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-resizable-behavior", 3 | "version": "1.0.2", 4 | "license": "http://polymer.github.io/LICENSE.txt", 5 | "description": "Coordinates the flow of resizeable elements", 6 | "private": true, 7 | "main": "iron-resizable-behavior.html", 8 | "authors": [ 9 | "The Polymer Authors" 10 | ], 11 | "keywords": [ 12 | "web-components", 13 | "polymer", 14 | "iron", 15 | "behavior" 16 | ], 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com/PolymerElements/iron-resizable-behavior.git" 20 | }, 21 | "dependencies": { 22 | "polymer": "Polymer/polymer#^1.0.0" 23 | }, 24 | "devDependencies": { 25 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 26 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 27 | "web-component-tester": "*", 28 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /static/bower_components/iron-resizable-behavior/demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | iron-resizable-behavior demo 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /static/bower_components/iron-resizable-behavior/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | iron-resizable-behavior 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /static/bower_components/iron-resizable-behavior/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | Tests 17 | 18 | 19 | 20 | 21 | 22 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /static/bower_components/iron-selector/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-selector", 3 | "version": "1.0.2", 4 | "description": "Manages a set of elements that can be selected", 5 | "private": true, 6 | "license": "http://polymer.github.io/LICENSE.txt", 7 | "main": [ 8 | "iron-selector.html" 9 | ], 10 | "authors": [ 11 | "The Polymer Authors" 12 | ], 13 | "keywords": [ 14 | "web-components", 15 | "polymer", 16 | "selector" 17 | ], 18 | "repository": { 19 | "type": "git", 20 | "url": "git://github.com/PolymerElements/iron-selector.git" 21 | }, 22 | "dependencies": { 23 | "polymer": "Polymer/polymer#^1.0.0" 24 | }, 25 | "devDependencies": { 26 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 27 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 28 | "web-component-tester": "*", 29 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 30 | }, 31 | "homepage": "https://github.com/PolymerElements/iron-selector", 32 | "_release": "1.0.2", 33 | "_resolution": { 34 | "type": "version", 35 | "tag": "v1.0.2", 36 | "commit": "ea22d91d11ba6f72c01faa952d5e600f9d1773cf" 37 | }, 38 | "_source": "git://github.com/PolymerElements/iron-selector.git", 39 | "_target": "^1.0.0", 40 | "_originalSource": "PolymerElements/iron-selector" 41 | } -------------------------------------------------------------------------------- /static/bower_components/iron-selector/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /static/bower_components/iron-selector/README.md: -------------------------------------------------------------------------------- 1 | iron-selector 2 | ============= 3 | 4 | `iron-selector` is an element which can be used to manage a list of elements 5 | that can be selected. Tapping on the item will make the item selected. The `selected` indicates 6 | which item is being selected. The default is to use the index of the item. 7 | 8 | Example: 9 | 10 | ```html 11 | 12 |
Item 1
13 |
Item 2
14 |
Item 3
15 |
16 | ``` 17 | 18 | If you want to use the attribute value of an element for `selected` instead of the index, 19 | set `attrForSelected` to the name of the attribute. For example, if you want to select item by 20 | `name`, set `attrForSelected` to `name`. 21 | 22 | Example: 23 | 24 | ```html 25 | 26 |
Foo
27 |
Bar
28 |
Zot
29 |
30 | ``` 31 | 32 | `iron-selector` is not styled. Use the `iron-selected` CSS class to style the selected element. 33 | 34 | Example: 35 | 36 | ```html 37 | 42 | 43 | ... 44 | 45 | 46 |
Item 1
47 |
Item 2
48 |
Item 3
49 |
50 | ``` 51 | -------------------------------------------------------------------------------- /static/bower_components/iron-selector/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-selector", 3 | "version": "1.0.2", 4 | "description": "Manages a set of elements that can be selected", 5 | "private": true, 6 | "license": "http://polymer.github.io/LICENSE.txt", 7 | "main": [ 8 | "iron-selector.html" 9 | ], 10 | "authors": [ 11 | "The Polymer Authors" 12 | ], 13 | "keywords": [ 14 | "web-components", 15 | "polymer", 16 | "selector" 17 | ], 18 | "repository": { 19 | "type": "git", 20 | "url": "git://github.com/PolymerElements/iron-selector.git" 21 | }, 22 | "dependencies": { 23 | "polymer": "Polymer/polymer#^1.0.0" 24 | }, 25 | "devDependencies": { 26 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 27 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 28 | "web-component-tester": "*", 29 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /static/bower_components/iron-selector/demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | iron-selector 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 33 | 34 | 35 | 36 | 37 |

Basic

38 | 39 | 40 |
Item 0
41 |
Item 1
42 |
Item 2
43 |
Item 3
44 |
Item 4
45 |
46 | 47 |

Multi-select

48 | 49 | 50 |
Item 0
51 |
Item 1
52 |
Item 2
53 |
Item 3
54 |
Item 4
55 |
56 | 57 |

Example

58 | 59 | 60 |
Foo
61 |
Bar
62 |
Zot
63 |
64 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /static/bower_components/iron-selector/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | iron-selector 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /static/bower_components/iron-selector/test/content-element.html: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | 14 | 21 | 22 | 23 | 24 | 44 | -------------------------------------------------------------------------------- /static/bower_components/iron-selector/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | Tests 16 | 17 | 18 | 19 | 20 | 21 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /static/bower_components/paper-behaviors/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-behaviors", 3 | "version": "1.0.2", 4 | "description": "Common behaviors across the paper elements", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "main": [ 9 | "paper-button-behavior.html", 10 | "paper-radio-button-behavior.html" 11 | ], 12 | "keywords": [ 13 | "web-components", 14 | "web-component", 15 | "polymer", 16 | "paper", 17 | "behavior" 18 | ], 19 | "private": true, 20 | "repository": { 21 | "type": "git", 22 | "url": "git://github.com/PolymerElements/paper-behaviors" 23 | }, 24 | "license": "http://polymer.github.io/LICENSE.txt", 25 | "homepage": "https://github.com/PolymerElements/paper-behaviors", 26 | "dependencies": { 27 | "iron-behaviors": "PolymerElements/iron-behaviors#^1.0.0", 28 | "polymer": "Polymer/polymer#^1.0.0" 29 | }, 30 | "devDependencies": { 31 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 32 | "iron-test-helpers": "polymerelements/iron-test-helpers#^1.0.0", 33 | "paper-material": "PolymerElements/paper-material#^1.0.0", 34 | "paper-ripple": "PolymerElements/paper-ripple#^1.0.0", 35 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 36 | "web-component-tester": "*", 37 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 38 | }, 39 | "_release": "1.0.2", 40 | "_resolution": { 41 | "type": "version", 42 | "tag": "v1.0.2", 43 | "commit": "4dd226a2cc5b780a73d0058cd9998b6e0af1cb2c" 44 | }, 45 | "_source": "git://github.com/polymerelements/paper-behaviors.git", 46 | "_target": "^1.0.0", 47 | "_originalSource": "polymerelements/paper-behaviors" 48 | } -------------------------------------------------------------------------------- /static/bower_components/paper-behaviors/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /static/bower_components/paper-behaviors/README.md: -------------------------------------------------------------------------------- 1 | paper-behaviors 2 | =============== 3 | 4 | These are common behaviors used across `paper-*` elements. 5 | -------------------------------------------------------------------------------- /static/bower_components/paper-behaviors/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-behaviors", 3 | "version": "1.0.2", 4 | "description": "Common behaviors across the paper elements", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "main": [ 9 | "paper-button-behavior.html", 10 | "paper-radio-button-behavior.html" 11 | ], 12 | "keywords": [ 13 | "web-components", 14 | "web-component", 15 | "polymer", 16 | "paper", 17 | "behavior" 18 | ], 19 | "private": true, 20 | "repository": { 21 | "type": "git", 22 | "url": "git://github.com/PolymerElements/paper-behaviors" 23 | }, 24 | "license": "http://polymer.github.io/LICENSE.txt", 25 | "homepage": "https://github.com/PolymerElements/paper-behaviors", 26 | "dependencies": { 27 | "iron-behaviors": "PolymerElements/iron-behaviors#^1.0.0", 28 | "polymer": "Polymer/polymer#^1.0.0" 29 | }, 30 | "devDependencies": { 31 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 32 | "iron-test-helpers": "polymerelements/iron-test-helpers#^1.0.0", 33 | "paper-material": "PolymerElements/paper-material#^1.0.0", 34 | "paper-ripple": "PolymerElements/paper-ripple#^1.0.0", 35 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 36 | "web-component-tester": "*", 37 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /static/bower_components/paper-behaviors/demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | paper-behaviors demo 20 | 21 | 22 | 23 | 24 | 25 | 26 | 35 | 36 | 37 | 38 | 39 |

Normal

40 | 41 | Hello World 42 | 43 |

Toggles

44 | 45 | Hello World 46 | 47 |

Disabled

48 | 49 | Hello World 50 | 51 |

Radio button with focus state

52 | 53 | 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /static/bower_components/paper-behaviors/demo/paper-button.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 50 | 51 | 58 | 59 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /static/bower_components/paper-behaviors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /static/bower_components/paper-behaviors/paper-button-behavior.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 57 | -------------------------------------------------------------------------------- /static/bower_components/paper-behaviors/paper-inky-focus-behavior.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 45 | -------------------------------------------------------------------------------- /static/bower_components/paper-behaviors/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /static/bower_components/paper-behaviors/test/paper-radio-button-behavior.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | paper-radio-button-behavior 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 31 | 32 | 33 | 60 | 61 | 62 | 63 | -------------------------------------------------------------------------------- /static/bower_components/paper-behaviors/test/test-button.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 19 | 20 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /static/bower_components/paper-behaviors/test/test-radio-button.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 26 | 31 | 32 | 33 | 42 | -------------------------------------------------------------------------------- /static/bower_components/paper-drawer-panel/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-drawer-panel", 3 | "version": "1.0.2", 4 | "description": "A responsive drawer panel", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "keywords": [ 9 | "web-components", 10 | "polymer", 11 | "drawer", 12 | "responsive", 13 | "layout" 14 | ], 15 | "repository": { 16 | "type": "git", 17 | "url": "git://github.com/PolymerElements/paper-drawer-panel.git" 18 | }, 19 | "license": "http://polymer.github.io/LICENSE.txt", 20 | "homepage": "https://github.com/PolymerElements/paper-drawer-panel", 21 | "dependencies": { 22 | "polymer": "Polymer/polymer#^1.0.0", 23 | "iron-selector": "PolymerElements/iron-selector#^1.0.0", 24 | "iron-media-query": "PolymerElements/iron-media-query#^1.0.0" 25 | }, 26 | "devDependencies": { 27 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 28 | "paper-button": "PolymerElements/paper-button#^1.0.0", 29 | "paper-styles": "PolymerElements/paper-styles#^1.0.0", 30 | "web-component-tester": "*", 31 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 32 | }, 33 | "_release": "1.0.2", 34 | "_resolution": { 35 | "type": "version", 36 | "tag": "v1.0.2", 37 | "commit": "691739c877914f7231eaca16b724bdca295dfe8d" 38 | }, 39 | "_source": "git://github.com/PolymerElements/paper-drawer-panel.git", 40 | "_target": "^1.0.0", 41 | "_originalSource": "PolymerElements/paper-drawer-panel" 42 | } -------------------------------------------------------------------------------- /static/bower_components/paper-drawer-panel/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /static/bower_components/paper-drawer-panel/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-drawer-panel", 3 | "version": "1.0.2", 4 | "description": "A responsive drawer panel", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "keywords": [ 9 | "web-components", 10 | "polymer", 11 | "drawer", 12 | "responsive", 13 | "layout" 14 | ], 15 | "repository": { 16 | "type": "git", 17 | "url": "git://github.com/PolymerElements/paper-drawer-panel.git" 18 | }, 19 | "license": "http://polymer.github.io/LICENSE.txt", 20 | "homepage": "https://github.com/PolymerElements/paper-drawer-panel", 21 | "dependencies": { 22 | "polymer": "Polymer/polymer#^1.0.0", 23 | "iron-selector": "PolymerElements/iron-selector#^1.0.0", 24 | "iron-media-query": "PolymerElements/iron-media-query#^1.0.0" 25 | }, 26 | "devDependencies": { 27 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 28 | "paper-button": "PolymerElements/paper-button#^1.0.0", 29 | "paper-styles": "PolymerElements/paper-styles#^1.0.0", 30 | "web-component-tester": "*", 31 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /static/bower_components/paper-drawer-panel/hero.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /static/bower_components/paper-drawer-panel/index.html: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | paper-drawer-panel 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /static/bower_components/paper-fab/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-fab", 3 | "version": "1.0.2", 4 | "description": "A material design floating action button", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "keywords": [ 9 | "web-components", 10 | "polymer", 11 | "button" 12 | ], 13 | "main": "paper-fab.html", 14 | "ignore": [], 15 | "private": true, 16 | "repository": { 17 | "type": "git", 18 | "url": "git://github.com/PolymerElements/paper-fab" 19 | }, 20 | "license": "http://polymer.github.io/LICENSE.txt", 21 | "homepage": "https://github.com/PolymerElements/paper-fab", 22 | "dependencies": { 23 | "paper-ripple": "polymerelements/paper-ripple#^1.0.0", 24 | "paper-material": "polymerelements/paper-material#^1.0.0", 25 | "paper-behaviors": "polymerelements/paper-behaviors#^1.0.0", 26 | "iron-flex-layout": "polymerelements/iron-flex-layout#^1.0.0", 27 | "iron-icon": "polymerelements/iron-icon#^1.0.0", 28 | "iron-icons": "polymerelements/iron-icons#^1.0.0", 29 | "paper-styles": "polymerelements/paper-styles#^1.0.0", 30 | "polymer": "Polymer/polymer#^1.0.0" 31 | }, 32 | "devDependencies": { 33 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 34 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 35 | "paper-styles": "polymerelements/paper-styles#^1.0.0", 36 | "web-component-tester": "*", 37 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 38 | }, 39 | "_release": "1.0.2", 40 | "_resolution": { 41 | "type": "version", 42 | "tag": "v1.0.2", 43 | "commit": "59d2f77f456271f1ae4059b92d83ba7655fb1580" 44 | }, 45 | "_source": "git://github.com/PolymerElements/paper-fab.git", 46 | "_target": "^1.0.0", 47 | "_originalSource": "PolymerElements/paper-fab" 48 | } -------------------------------------------------------------------------------- /static/bower_components/paper-fab/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /static/bower_components/paper-fab/README.md: -------------------------------------------------------------------------------- 1 | paper-fab 2 | ========= 3 | 4 | Material Design: Button 5 | 6 | `paper-fab` is a floating action button. It contains an image placed in the center and 7 | comes in two sizes: regular size and a smaller size by applying the attribute `mini`. When 8 | the user touches the button, a ripple effect emanates from the center of the button. 9 | 10 | You may import `iron-icons` to use with this element, or provide a URL to a custom icon. 11 | See `iron-iconset` for more information about how to use a custom icon set. 12 | 13 | Example: 14 | 15 | ```html 16 | 17 | 18 | 19 | 20 | 21 | ``` 22 | 23 | Styling 24 | ------- 25 | 26 | Style the button with CSS as you would a normal DOM element. If you are using the icons 27 | provided by `iron-icons`, the icon will inherit the foreground color of the button. 28 | 29 | ```html 30 | 31 | 32 | ``` 33 | 34 | By default, the ripple is the same color as the foreground at 25% opacity. You may 35 | customize the color using this selector: 36 | 37 | ```css 38 | /* make #my-button use a blue ripple instead of foreground color */ 39 | #my-button::shadow #ripple { 40 | color: blue; 41 | } 42 | ``` 43 | 44 | The opacity of the ripple is not customizable via CSS. 45 | -------------------------------------------------------------------------------- /static/bower_components/paper-fab/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-fab", 3 | "version": "1.0.2", 4 | "description": "A material design floating action button", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "keywords": [ 9 | "web-components", 10 | "polymer", 11 | "button" 12 | ], 13 | "main": "paper-fab.html", 14 | "ignore": [], 15 | "private": true, 16 | "repository": { 17 | "type": "git", 18 | "url": "git://github.com/PolymerElements/paper-fab" 19 | }, 20 | "license": "http://polymer.github.io/LICENSE.txt", 21 | "homepage": "https://github.com/PolymerElements/paper-fab", 22 | "dependencies": { 23 | "paper-ripple": "polymerelements/paper-ripple#^1.0.0", 24 | "paper-material": "polymerelements/paper-material#^1.0.0", 25 | "paper-behaviors": "polymerelements/paper-behaviors#^1.0.0", 26 | "iron-flex-layout": "polymerelements/iron-flex-layout#^1.0.0", 27 | "iron-icon": "polymerelements/iron-icon#^1.0.0", 28 | "iron-icons": "polymerelements/iron-icons#^1.0.0", 29 | "paper-styles": "polymerelements/paper-styles#^1.0.0", 30 | "polymer": "Polymer/polymer#^1.0.0" 31 | }, 32 | "devDependencies": { 33 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 34 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 35 | "paper-styles": "polymerelements/paper-styles#^1.0.0", 36 | "web-component-tester": "*", 37 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /static/bower_components/paper-fab/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | paper-fab 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /static/bower_components/paper-fab/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | paper-fab tests 16 | 17 | 18 | 19 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /static/bower_components/paper-icon-button/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-icon-button", 3 | "private": true, 4 | "version": "1.0.2", 5 | "license": "http://polymer.github.io/LICENSE.txt", 6 | "description": "A material design icon button", 7 | "main": "paper-icon-button.html", 8 | "author": [ 9 | "The Polymer Authors" 10 | ], 11 | "keywords": [ 12 | "web-components", 13 | "polymer", 14 | "button", 15 | "icon", 16 | "control" 17 | ], 18 | "dependencies": { 19 | "iron-flex-layout": "polymerelements/iron-flex-layout#^1.0.0", 20 | "iron-icon": "polymerelements/iron-icon#^1.0.0", 21 | "iron-icons": "polymerelements/iron-icons#^1.0.0", 22 | "paper-behaviors": "polymerelements/paper-behaviors#^1.0.0", 23 | "paper-ripple": "polymerelements/paper-ripple#^1.0.0", 24 | "paper-styles": "polymerelements/paper-styles#^1.0.0", 25 | "polymer": "Polymer/polymer#^1.0.0" 26 | }, 27 | "devDependencies": { 28 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 29 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 30 | "web-component-tester": "*", 31 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 32 | }, 33 | "homepage": "https://github.com/PolymerElements/paper-icon-button", 34 | "_release": "1.0.2", 35 | "_resolution": { 36 | "type": "version", 37 | "tag": "v1.0.2", 38 | "commit": "b22ade2080f2527760eae41e4700c52d4689a866" 39 | }, 40 | "_source": "git://github.com/PolymerElements/paper-icon-button.git", 41 | "_target": "^1.0.0", 42 | "_originalSource": "PolymerElements/paper-icon-button" 43 | } -------------------------------------------------------------------------------- /static/bower_components/paper-icon-button/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /static/bower_components/paper-icon-button/README.md: -------------------------------------------------------------------------------- 1 | paper-icon-button 2 | ================= 3 | 4 | Material Design: Buttons 5 | 6 | `paper-icon-button` is a button with an image placed at the center. When the user touches 7 | the button, a ripple effect emanates from the center of the button. 8 | 9 | `paper-icon-button` includes a default icon set. Use `icon` to specify which icon 10 | from the icon set to use. 11 | 12 | ```html 13 | 14 | ``` 15 | 16 | See [`iron-iconset`](#iron-iconset) for more information about 17 | how to use a custom icon set. 18 | 19 | Example: 20 | 21 | ```html 22 | 23 | 24 | 25 | 26 | ``` 27 | 28 | Styling 29 | ------- 30 | 31 | Style the button with CSS as you would a normal DOM element. If you are using the icons 32 | provided by `iron-icons`, they will inherit the foreground color of the button. 33 | 34 | ```html 35 | 36 | 37 | ``` 38 | 39 | By default, the ripple is the same color as the foreground at 25% opacity. You may 40 | customize the color using this selector: 41 | 42 | ```css 43 | /* make #my-button use a blue ripple instead of foreground color */ 44 | #my-button::shadow #ripple { 45 | color: blue; 46 | } 47 | ``` 48 | 49 | The opacity of the ripple is not customizable via CSS. 50 | -------------------------------------------------------------------------------- /static/bower_components/paper-icon-button/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-icon-button", 3 | "private": true, 4 | "version": "1.0.2", 5 | "license": "http://polymer.github.io/LICENSE.txt", 6 | "description": "A material design icon button", 7 | "main": "paper-icon-button.html", 8 | "author": [ 9 | "The Polymer Authors" 10 | ], 11 | "keywords": [ 12 | "web-components", 13 | "polymer", 14 | "button", 15 | "icon", 16 | "control" 17 | ], 18 | "dependencies": { 19 | "iron-flex-layout": "polymerelements/iron-flex-layout#^1.0.0", 20 | "iron-icon": "polymerelements/iron-icon#^1.0.0", 21 | "iron-icons": "polymerelements/iron-icons#^1.0.0", 22 | "paper-behaviors": "polymerelements/paper-behaviors#^1.0.0", 23 | "paper-ripple": "polymerelements/paper-ripple#^1.0.0", 24 | "paper-styles": "polymerelements/paper-styles#^1.0.0", 25 | "polymer": "Polymer/polymer#^1.0.0" 26 | }, 27 | "devDependencies": { 28 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 29 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 30 | "web-component-tester": "*", 31 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /static/bower_components/paper-icon-button/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /static/bower_components/paper-icon-button/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | paper-icon-button tests 16 | 17 | 18 | 19 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /static/bower_components/paper-item/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-item", 3 | "version": "1.0.1", 4 | "description": "A material-design styled list item", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "keywords": [ 9 | "web-components", 10 | "polymer", 11 | "item" 12 | ], 13 | "main": [ 14 | "paper-item.html", 15 | "paper-icon-item.html", 16 | "paper-item-body.html" 17 | ], 18 | "private": true, 19 | "repository": { 20 | "type": "git", 21 | "url": "git://github.com/PolymerElements/paper-item" 22 | }, 23 | "license": "MIT", 24 | "homepage": "https://github.com/PolymerElements/paper-item", 25 | "ignore": [], 26 | "dependencies": { 27 | "paper-styles": "PolymerElements/paper-styles#^1.0.0", 28 | "polymer": "Polymer/polymer#^1.0.0" 29 | }, 30 | "devDependencies": { 31 | "iron-icon": "PolymerElements/iron-icon#^1.0.0", 32 | "iron-icons": "PolymerElements/iron-icons#^1.0.0", 33 | "paper-checkbox": "PolymerElements/paper-checkbox#^1.0.0", 34 | "paper-toggle-button": "PolymerElements/paper-toggle-button#^1.0.0", 35 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 36 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 37 | "web-component-tester": "*", 38 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 39 | }, 40 | "_release": "1.0.1", 41 | "_resolution": { 42 | "type": "version", 43 | "tag": "v1.0.1", 44 | "commit": "645ebae475ab4fc28698da253ccc3aa2c48341d7" 45 | }, 46 | "_source": "git://github.com/PolymerElements/paper-item.git", 47 | "_target": "^1.0.0", 48 | "_originalSource": "PolymerElements/paper-item" 49 | } -------------------------------------------------------------------------------- /static/bower_components/paper-item/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /static/bower_components/paper-item/README.md: -------------------------------------------------------------------------------- 1 | paper-item 2 | ========= 3 | 4 | A non-interactive list item. 5 | -------------------------------------------------------------------------------- /static/bower_components/paper-item/all-imports.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /static/bower_components/paper-item/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-item", 3 | "version": "1.0.1", 4 | "description": "A material-design styled list item", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "keywords": [ 9 | "web-components", 10 | "polymer", 11 | "item" 12 | ], 13 | "main": [ 14 | "paper-item.html", 15 | "paper-icon-item.html", 16 | "paper-item-body.html" 17 | ], 18 | "private": true, 19 | "repository": { 20 | "type": "git", 21 | "url": "git://github.com/PolymerElements/paper-item" 22 | }, 23 | "license": "MIT", 24 | "homepage": "https://github.com/PolymerElements/paper-item", 25 | "ignore": [], 26 | "dependencies": { 27 | "paper-styles": "PolymerElements/paper-styles#^1.0.0", 28 | "polymer": "Polymer/polymer#^1.0.0" 29 | }, 30 | "devDependencies": { 31 | "iron-icon": "PolymerElements/iron-icon#^1.0.0", 32 | "iron-icons": "PolymerElements/iron-icons#^1.0.0", 33 | "paper-checkbox": "PolymerElements/paper-checkbox#^1.0.0", 34 | "paper-toggle-button": "PolymerElements/paper-toggle-button#^1.0.0", 35 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 36 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 37 | "web-component-tester": "*", 38 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /static/bower_components/paper-item/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | paper-item 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /static/bower_components/paper-item/paper-item-shared.css: -------------------------------------------------------------------------------- 1 | /* 2 | @license 3 | Copyright (c) 2015 The Polymer Project Authors. All rights reserved. 4 | This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt 5 | The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt 6 | The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt 7 | Code distributed by Google as part of the polymer project is also 8 | subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt 9 | */ 10 | 11 | :host { 12 | display: block; 13 | min-height: var(--paper-item-min-height, 48px); 14 | padding: 0px 16px; 15 | } 16 | 17 | :host > ::content > *:not(:first-child):not(:last-child) { 18 | margin-right: 16px; 19 | } 20 | -------------------------------------------------------------------------------- /static/bower_components/paper-item/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | paper-item tests 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /static/bower_components/paper-material/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-material", 3 | "version": "1.0.0", 4 | "description": "A material design container that looks like a lifted sheet of paper", 5 | "private": true, 6 | "authors": [ 7 | "The Polymer Authors" 8 | ], 9 | "keywords": [ 10 | "web-components", 11 | "web-component", 12 | "polymer", 13 | "paper", 14 | "container" 15 | ], 16 | "main": [ 17 | "paper-material.html" 18 | ], 19 | "repository": { 20 | "type": "git", 21 | "url": "git://github.com/PolymerElements/paper-material" 22 | }, 23 | "license": "http://polymer.github.io/LICENSE.txt", 24 | "homepage": "https://github.com/PolymerElements/paper-material", 25 | "ignore": [], 26 | "dependencies": { 27 | "paper-styles": "polymerelements/paper-styles#^1.0.0", 28 | "polymer": "Polymer/polymer#^1.0.0" 29 | }, 30 | "devDependencies": { 31 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 32 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 33 | "web-component-tester": "*", 34 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 35 | }, 36 | "_release": "1.0.0", 37 | "_resolution": { 38 | "type": "version", 39 | "tag": "v1.0.0", 40 | "commit": "bd769d2b8c4f9ab000aee22582d76b5935793dc1" 41 | }, 42 | "_source": "git://github.com/polymerelements/paper-material.git", 43 | "_target": "^1.0.0", 44 | "_originalSource": "polymerelements/paper-material" 45 | } -------------------------------------------------------------------------------- /static/bower_components/paper-material/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /static/bower_components/paper-material/README.md: -------------------------------------------------------------------------------- 1 | # paper-material 2 | A Material Design container that looks like a lifted piece of paper. 3 | 4 | `paper-material` is a container that renders two shadows on top of each other to 5 | create the effect of a lifted piece of paper. 6 | 7 | Example: 8 | 9 | ```html 10 | 11 | ... content ... 12 | 13 | ``` 14 | -------------------------------------------------------------------------------- /static/bower_components/paper-material/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-material", 3 | "version": "1.0.0", 4 | "description": "A material design container that looks like a lifted sheet of paper", 5 | "private": true, 6 | "authors": [ 7 | "The Polymer Authors" 8 | ], 9 | "keywords": [ 10 | "web-components", 11 | "web-component", 12 | "polymer", 13 | "paper", 14 | "container" 15 | ], 16 | "main": [ 17 | "paper-material.html" 18 | ], 19 | "repository": { 20 | "type": "git", 21 | "url": "git://github.com/PolymerElements/paper-material" 22 | }, 23 | "license": "http://polymer.github.io/LICENSE.txt", 24 | "homepage": "https://github.com/PolymerElements/paper-material", 25 | "ignore": [], 26 | "dependencies": { 27 | "paper-styles": "polymerelements/paper-styles#^1.0.0", 28 | "polymer": "Polymer/polymer#^1.0.0" 29 | }, 30 | "devDependencies": { 31 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 32 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 33 | "web-component-tester": "*", 34 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /static/bower_components/paper-material/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | paper-material 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /static/bower_components/paper-material/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | paper-material tests 16 | 17 | 18 | 19 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /static/bower_components/paper-menu/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-menu", 3 | "version": "1.0.0", 4 | "description": "Implements an accessible material design menu", 5 | "authors": "The Polymer Authors", 6 | "keywords": [ 7 | "web-components", 8 | "polymer", 9 | "menu" 10 | ], 11 | "main": "paper-menu.html", 12 | "private": true, 13 | "repository": { 14 | "type": "git", 15 | "url": "git://github.com/PolymerElements/paper-menu" 16 | }, 17 | "license": "http://polymer.github.io/LICENSE.txt", 18 | "homepage": "https://github.com/PolymerElements/paper-menu", 19 | "ignore": [], 20 | "dependencies": { 21 | "iron-menu-behavior": "PolymerElements/iron-menu-behavior#^1.0.0", 22 | "paper-styles": "PolymerElements/paper-styles#^1.0.0", 23 | "polymer": "Polymer/polymer#^1.0.0" 24 | }, 25 | "devDependencies": { 26 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 27 | "paper-item": "PolymerElements/paper-item#^1.0.0", 28 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 29 | "web-component-tester": "*", 30 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 31 | }, 32 | "_release": "1.0.0", 33 | "_resolution": { 34 | "type": "version", 35 | "tag": "v1.0.0", 36 | "commit": "0642450ec9df0fc0b1d909842f436c3dea79ed1e" 37 | }, 38 | "_source": "git://github.com/PolymerElements/paper-menu.git", 39 | "_target": "^1.0.0", 40 | "_originalSource": "PolymerElements/paper-menu" 41 | } -------------------------------------------------------------------------------- /static/bower_components/paper-menu/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /static/bower_components/paper-menu/README.md: -------------------------------------------------------------------------------- 1 | # paper-menu 2 | 3 | `` implements an accessible menu control with Material Design styling. 4 | -------------------------------------------------------------------------------- /static/bower_components/paper-menu/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-menu", 3 | "version": "1.0.0", 4 | "description": "Implements an accessible material design menu", 5 | "authors": "The Polymer Authors", 6 | "keywords": [ 7 | "web-components", 8 | "polymer", 9 | "menu" 10 | ], 11 | "main": "paper-menu.html", 12 | "private": true, 13 | "repository": { 14 | "type": "git", 15 | "url": "git://github.com/PolymerElements/paper-menu" 16 | }, 17 | "license": "http://polymer.github.io/LICENSE.txt", 18 | "homepage": "https://github.com/PolymerElements/paper-menu", 19 | "ignore": [], 20 | "dependencies": { 21 | "iron-menu-behavior": "PolymerElements/iron-menu-behavior#^1.0.0", 22 | "paper-styles": "PolymerElements/paper-styles#^1.0.0", 23 | "polymer": "Polymer/polymer#^1.0.0" 24 | }, 25 | "devDependencies": { 26 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 27 | "paper-item": "PolymerElements/paper-item#^1.0.0", 28 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 29 | "web-component-tester": "*", 30 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /static/bower_components/paper-menu/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | paper-menu 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /static/bower_components/paper-menu/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | paper-menu tests 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /static/bower_components/paper-ripple/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-ripple", 3 | "version": "1.0.1", 4 | "license": "http://polymer.github.io/LICENSE.txt", 5 | "description": "Adds a material design ripple to any container", 6 | "private": true, 7 | "authors": [ 8 | "The Polymer Authors" 9 | ], 10 | "keywords": [ 11 | "web-components", 12 | "polymer", 13 | "ripple" 14 | ], 15 | "main": "paper-ripple.html", 16 | "dependencies": { 17 | "polymer": "Polymer/polymer#^1.0.0", 18 | "iron-a11y-keys-behavior": "polymerelements/iron-a11y-keys-behavior#^1.0.0" 19 | }, 20 | "devDependencies": { 21 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 22 | "iron-icon": "polymerelements/iron-icon#^1.0.0", 23 | "iron-icons": "polymerelements/iron-icons#^1.0.0", 24 | "paper-styles": "polymerelements/paper-styles#^1.0.0", 25 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 26 | "web-component-tester": "*", 27 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 28 | }, 29 | "homepage": "https://github.com/polymerelements/paper-ripple", 30 | "_release": "1.0.1", 31 | "_resolution": { 32 | "type": "version", 33 | "tag": "v1.0.1", 34 | "commit": "af19d904802437c305390bb03415c11661de3d0a" 35 | }, 36 | "_source": "git://github.com/polymerelements/paper-ripple.git", 37 | "_target": "^1.0.0", 38 | "_originalSource": "polymerelements/paper-ripple" 39 | } -------------------------------------------------------------------------------- /static/bower_components/paper-ripple/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /static/bower_components/paper-ripple/README.md: -------------------------------------------------------------------------------- 1 | paper-ripple 2 | ============ 3 | 4 | `paper-ripple` provides a visual effect that other paper elements can 5 | use to simulate a rippling effect emanating from the point of contact. The 6 | effect can be visualized as a concentric circle with motion. 7 | 8 | Example: 9 | 10 | ```html 11 | 12 | ``` 13 | 14 | `paper-ripple` listens to "mousedown" and "mouseup" events so it would display ripple 15 | effect when touches on it. You can also defeat the default behavior and 16 | manually route the down and up actions to the ripple element. Note that it is 17 | important if you call downAction() you will have to make sure to call 18 | upAction() so that `paper-ripple` would end the animation loop. 19 | 20 | Example: 21 | 22 | ```html 23 | 24 | ... 25 | 33 | ``` 34 | 35 | Styling ripple effect: 36 | 37 | Use CSS color property to style the ripple: 38 | 39 | ```css 40 | paper-ripple { 41 | color: #4285f4; 42 | } 43 | ``` 44 | 45 | Note that CSS color property is inherited so it is not required to set it on 46 | the `paper-ripple` element directly. 47 | 48 | 49 | By default, the ripple is centered on the point of contact. Apply the ``recenters`` attribute to have the ripple grow toward the center of its container. 50 | 51 | ```html 52 | 53 | ``` 54 | 55 | Apply `center` to center the ripple inside its container from the start. 56 | 57 | ```html 58 | 59 | ``` 60 | 61 | Apply `circle` class to make the rippling effect within a circle. 62 | 63 | ```html 64 | 65 | ``` 66 | -------------------------------------------------------------------------------- /static/bower_components/paper-ripple/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-ripple", 3 | "version": "1.0.1", 4 | "license": "http://polymer.github.io/LICENSE.txt", 5 | "description": "Adds a material design ripple to any container", 6 | "private": true, 7 | "authors": [ 8 | "The Polymer Authors" 9 | ], 10 | "keywords": [ 11 | "web-components", 12 | "polymer", 13 | "ripple" 14 | ], 15 | "main": "paper-ripple.html", 16 | "dependencies": { 17 | "polymer": "Polymer/polymer#^1.0.0", 18 | "iron-a11y-keys-behavior": "polymerelements/iron-a11y-keys-behavior#^1.0.0" 19 | }, 20 | "devDependencies": { 21 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 22 | "iron-icon": "polymerelements/iron-icon#^1.0.0", 23 | "iron-icons": "polymerelements/iron-icons#^1.0.0", 24 | "paper-styles": "polymerelements/paper-styles#^1.0.0", 25 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 26 | "web-component-tester": "*", 27 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /static/bower_components/paper-ripple/hero.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /static/bower_components/paper-ripple/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | paper-ripple 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /static/bower_components/paper-ripple/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | Tests 16 | 17 | 18 | 19 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /static/bower_components/paper-scroll-header-panel/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-scroll-header-panel", 3 | "description": "A header bar with scrolling behavior", 4 | "version": "1.0.4", 5 | "license": "http://polymer.github.io/LICENSE.txt", 6 | "private": true, 7 | "authors": "The Polymer Authors", 8 | "keywords": [ 9 | "web-components", 10 | "polymer", 11 | "layout", 12 | "responsive" 13 | ], 14 | "main": [ 15 | "paper-scroll-header-panel.html" 16 | ], 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com/PolymerElements/paper-scroll-header-panel.git" 20 | }, 21 | "dependencies": { 22 | "polymer": "Polymer/polymer#^1.0.0", 23 | "paper-toolbar": "PolymerElements/paper-toolbar#^1.0.0", 24 | "iron-resizable-behavior": "PolymerElements/iron-resizable-behavior#^1.0.0" 25 | }, 26 | "devDependencies": { 27 | "paper-styles": "PolymerElements/paper-styles#^1.0.0", 28 | "iron-flex-layout": "PolymerElements/iron-flex-layout#^1.0.0", 29 | "iron-media-query": "PolymerElements/iron-media-query#^1.0.0", 30 | "iron-icons": "PolymerElements/iron-icons#^1.0.0", 31 | "paper-icon-button": "PolymerElements/paper-icon-button#^1.0.0", 32 | "paper-input": "PolymerElements/paper-input#^1.0.0", 33 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 34 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 35 | "web-component-tester": "*", 36 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 37 | }, 38 | "homepage": "https://github.com/PolymerElements/paper-scroll-header-panel", 39 | "_release": "1.0.4", 40 | "_resolution": { 41 | "type": "version", 42 | "tag": "v1.0.4", 43 | "commit": "13f17709ce666adf2ab25161bc180816c53e7583" 44 | }, 45 | "_source": "git://github.com/PolymerElements/paper-scroll-header-panel.git", 46 | "_target": "^1.0.0", 47 | "_originalSource": "PolymerElements/paper-scroll-header-panel" 48 | } -------------------------------------------------------------------------------- /static/bower_components/paper-scroll-header-panel/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /static/bower_components/paper-scroll-header-panel/README.md: -------------------------------------------------------------------------------- 1 | paper-scroll-header-panel 2 | ======================== 3 | 4 | `paper-scroll-header-panel` contains a header section and a content section. The header is initially on the top part of the view but it scrolls away with the rest of the scrollable content. Upon scrolling slightly up at any point, the header scrolls back into view. This saves screen space and allows users to access important controls by easily moving them back to the view. 5 | 6 | Important: The `paper-scroll-header-panel` will not display if its parent does not have a height. Using layout classes, you can easily make the `paper-scroll-header-panel` fill the screen 7 | 8 | ```html 9 | 10 | 11 | 12 | Hello World! 13 | 14 | 15 | 16 | ``` 17 | or, if you would prefer to do it in CSS, just give html, body, and `paper-scroll-header-panel` a height of 100%: 18 | ```css 19 | html, body { 20 | height: 100%; 21 | margin: 0; 22 | } 23 | paper-scroll-header-panel { 24 | height: 100%; 25 | } 26 | ``` 27 | `paper-scroll-header-panel` works well with `paper-toolbar` but can use any element that represents a header by adding a `paper-header` class to it. 28 | 29 | ```html 30 | 31 | Header 32 |
Content goes here...
33 |
34 | ``` 35 | 36 | ### Styling scroll-header-panel: 37 | 38 | To change background for toolbar when it is at its full size: 39 | 40 | ```css 41 | paper-scroll-header-panel { 42 | --paper-scroll-header-panel-full-header: { 43 | background-color: red; 44 | }; 45 | } 46 | ``` 47 | 48 | To change the background for toolbar when it is condensed: 49 | 50 | ```css 51 | paper-scroll-header-panel { 52 | --paper-scroll-header-panel-condensed-header: { 53 | background-color: #f4b400; 54 | }; 55 | } 56 | ``` 57 | -------------------------------------------------------------------------------- /static/bower_components/paper-scroll-header-panel/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-scroll-header-panel", 3 | "description": "A header bar with scrolling behavior", 4 | "version": "1.0.4", 5 | "license": "http://polymer.github.io/LICENSE.txt", 6 | "private": true, 7 | "authors": "The Polymer Authors", 8 | "keywords": [ 9 | "web-components", 10 | "polymer", 11 | "layout", 12 | "responsive" 13 | ], 14 | "main": [ 15 | "paper-scroll-header-panel.html" 16 | ], 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com/PolymerElements/paper-scroll-header-panel.git" 20 | }, 21 | "dependencies": { 22 | "polymer": "Polymer/polymer#^1.0.0", 23 | "paper-toolbar": "PolymerElements/paper-toolbar#^1.0.0", 24 | "iron-resizable-behavior": "PolymerElements/iron-resizable-behavior#^1.0.0" 25 | }, 26 | "devDependencies": { 27 | "paper-styles": "PolymerElements/paper-styles#^1.0.0", 28 | "iron-flex-layout": "PolymerElements/iron-flex-layout#^1.0.0", 29 | "iron-media-query": "PolymerElements/iron-media-query#^1.0.0", 30 | "iron-icons": "PolymerElements/iron-icons#^1.0.0", 31 | "paper-icon-button": "PolymerElements/paper-icon-button#^1.0.0", 32 | "paper-input": "PolymerElements/paper-input#^1.0.0", 33 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 34 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 35 | "web-component-tester": "*", 36 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /static/bower_components/paper-scroll-header-panel/demo/images/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdevty/polymer/d8be0028b80dcf7026489598f4f8905ecc291611/static/bower_components/paper-scroll-header-panel/demo/images/bg2.jpg -------------------------------------------------------------------------------- /static/bower_components/paper-scroll-header-panel/demo/images/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdevty/polymer/d8be0028b80dcf7026489598f4f8905ecc291611/static/bower_components/paper-scroll-header-panel/demo/images/bg3.jpg -------------------------------------------------------------------------------- /static/bower_components/paper-scroll-header-panel/demo/images/bg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdevty/polymer/d8be0028b80dcf7026489598f4f8905ecc291611/static/bower_components/paper-scroll-header-panel/demo/images/bg5.jpg -------------------------------------------------------------------------------- /static/bower_components/paper-scroll-header-panel/demo/images/bg6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdevty/polymer/d8be0028b80dcf7026489598f4f8905ecc291611/static/bower_components/paper-scroll-header-panel/demo/images/bg6.jpg -------------------------------------------------------------------------------- /static/bower_components/paper-scroll-header-panel/demo/images/bg9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdevty/polymer/d8be0028b80dcf7026489598f4f8905ecc291611/static/bower_components/paper-scroll-header-panel/demo/images/bg9.jpg -------------------------------------------------------------------------------- /static/bower_components/paper-scroll-header-panel/hero.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /static/bower_components/paper-scroll-header-panel/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | paper-scroll-header-panel 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /static/bower_components/paper-scroll-header-panel/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | Tests 16 | 17 | 18 | 19 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /static/bower_components/paper-styles/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-styles", 3 | "version": "1.0.7", 4 | "description": "Common (global) styles for Material Design elements.", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "keywords": [ 9 | "web-component", 10 | "polymer", 11 | "style" 12 | ], 13 | "repository": { 14 | "type": "git", 15 | "url": "git://github.com/PolymerElements/paper-styles.git" 16 | }, 17 | "main": "paper-styles.html", 18 | "license": "http://polymer.github.io/LICENSE.txt", 19 | "homepage": "https://github.com/polymerelements/paper-styles/", 20 | "ignore": [ 21 | "/.*" 22 | ], 23 | "dependencies": { 24 | "iron-flex-layout": "PolymerElements/iron-flex-layout#^1.0.0", 25 | "font-roboto": "PolymerElements/font-roboto#^1.0.0", 26 | "polymer": "Polymer/polymer#^1.0.0" 27 | }, 28 | "devDependencies": { 29 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 30 | }, 31 | "_release": "1.0.7", 32 | "_resolution": { 33 | "type": "version", 34 | "tag": "v1.0.7", 35 | "commit": "c65f5ce6b898bb756fca35cedaa53c3e8011abeb" 36 | }, 37 | "_source": "git://github.com/PolymerElements/paper-styles.git", 38 | "_target": "^1.0.0", 39 | "_originalSource": "PolymerElements/paper-styles" 40 | } -------------------------------------------------------------------------------- /static/bower_components/paper-styles/README.md: -------------------------------------------------------------------------------- 1 | # paper-styles 2 | 3 | Material design CSS styles. 4 | -------------------------------------------------------------------------------- /static/bower_components/paper-styles/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-styles", 3 | "version": "1.0.7", 4 | "description": "Common (global) styles for Material Design elements.", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "keywords": [ 9 | "web-component", 10 | "polymer", 11 | "style" 12 | ], 13 | "repository": { 14 | "type": "git", 15 | "url": "git://github.com/PolymerElements/paper-styles.git" 16 | }, 17 | "main": "paper-styles.html", 18 | "license": "http://polymer.github.io/LICENSE.txt", 19 | "homepage": "https://github.com/polymerelements/paper-styles/", 20 | "ignore": [ 21 | "/.*" 22 | ], 23 | "dependencies": { 24 | "iron-flex-layout": "PolymerElements/iron-flex-layout#^1.0.0", 25 | "font-roboto": "PolymerElements/font-roboto#^1.0.0", 26 | "polymer": "Polymer/polymer#^1.0.0" 27 | }, 28 | "devDependencies": { 29 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /static/bower_components/paper-styles/classes/shadow.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 53 | -------------------------------------------------------------------------------- /static/bower_components/paper-styles/default-theme.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 40 | -------------------------------------------------------------------------------- /static/bower_components/paper-styles/demo-pages.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 73 | -------------------------------------------------------------------------------- /static/bower_components/paper-styles/demo.css: -------------------------------------------------------------------------------- 1 | /** 2 | @license 3 | Copyright (c) 2015 The Polymer Project Authors. All rights reserved. 4 | This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt 5 | The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt 6 | The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt 7 | Code distributed by Google as part of the polymer project is also 8 | subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt 9 | 10 | */ 11 | body { 12 | font-family: 'Roboto', 'Noto', sans-serif; 13 | font-size: 14px; 14 | margin: 0; 15 | padding: 24px; 16 | } 17 | 18 | section { 19 | padding: 20px 0; 20 | } 21 | 22 | section > div { 23 | padding: 14px; 24 | font-size: 16px; 25 | } 26 | -------------------------------------------------------------------------------- /static/bower_components/paper-styles/paper-styles-classes.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /static/bower_components/paper-styles/paper-styles.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /static/bower_components/paper-toolbar/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-toolbar", 3 | "version": "1.0.2", 4 | "license": "http://polymer.github.io/LICENSE.txt", 5 | "description": "A material design toolbar that is easily customizable", 6 | "private": true, 7 | "main": [ 8 | "paper-toolbar.html" 9 | ], 10 | "authors": [ 11 | "The Polymer Authors" 12 | ], 13 | "keywords": [ 14 | "web-components", 15 | "polymer", 16 | "toolbar", 17 | "layout" 18 | ], 19 | "repository": { 20 | "type": "git", 21 | "url": "git://github.com/PolymerElements/paper-toolbar.git" 22 | }, 23 | "dependencies": { 24 | "paper-styles": "PolymerElements/paper-styles#^1.0.0", 25 | "polymer": "Polymer/polymer#^1.0.0" 26 | }, 27 | "devDependencies": { 28 | "iron-icons": "PolymerElements/iron-icons#^1.0.0", 29 | "paper-icon-button": "PolymerElements/paper-icon-button#^1.0.0", 30 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 31 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 32 | "web-component-tester": "*", 33 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 34 | }, 35 | "homepage": "https://github.com/PolymerElements/paper-toolbar", 36 | "_release": "1.0.2", 37 | "_resolution": { 38 | "type": "version", 39 | "tag": "v1.0.2", 40 | "commit": "402eb11da736a5ae19713748bfa04cd96f3f7a0c" 41 | }, 42 | "_source": "git://github.com/PolymerElements/paper-toolbar.git", 43 | "_target": "^1.0.0", 44 | "_originalSource": "PolymerElements/paper-toolbar" 45 | } -------------------------------------------------------------------------------- /static/bower_components/paper-toolbar/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /static/bower_components/paper-toolbar/README.md: -------------------------------------------------------------------------------- 1 | paper-toolbar 2 | ============ 3 | 4 | `paper-toolbar` is a horizontal bar containing items that can be used for 5 | label, navigation, search and actions. The items place inside the 6 | `paper-toolbar` are projected into a `class="horizontal center layout"` container inside of 7 | `paper-toolbar`'s Shadow DOM. You can use flex attributes to control the items' 8 | sizing. 9 | 10 | Example: 11 | 12 | ```html 13 | 14 | 15 |
Title
16 | 17 |
18 | ``` 19 | 20 | `paper-toolbar` has a standard height, but can made be taller by setting `tall` 21 | class on the `paper-toolbar`. This will make the toolbar 3x the normal height. 22 | 23 | ```html 24 | 25 | 26 | 27 | ``` 28 | 29 | Apply `medium-tall` class to make the toolbar medium tall. This will make the 30 | toolbar 2x the normal height. 31 | 32 | ```html 33 | 34 | 35 | 36 | ``` 37 | 38 | When `tall`, items can pin to either the top (default), middle or bottom. Use 39 | `middle` class for middle content and `bottom` class for bottom content. 40 | 41 | ```html 42 | 43 | 44 |
Middle Title
45 |
Bottom Title
46 |
47 | ``` 48 | 49 | For `medium-tall` toolbar, the middle and bottom contents overlap and are 50 | pinned to the bottom. But `middleJustify` and `bottomJustify` attributes are 51 | still honored separately. 52 | -------------------------------------------------------------------------------- /static/bower_components/paper-toolbar/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-toolbar", 3 | "version": "1.0.2", 4 | "license": "http://polymer.github.io/LICENSE.txt", 5 | "description": "A material design toolbar that is easily customizable", 6 | "private": true, 7 | "main": [ 8 | "paper-toolbar.html" 9 | ], 10 | "authors": [ 11 | "The Polymer Authors" 12 | ], 13 | "keywords": [ 14 | "web-components", 15 | "polymer", 16 | "toolbar", 17 | "layout" 18 | ], 19 | "repository": { 20 | "type": "git", 21 | "url": "git://github.com/PolymerElements/paper-toolbar.git" 22 | }, 23 | "dependencies": { 24 | "paper-styles": "PolymerElements/paper-styles#^1.0.0", 25 | "polymer": "Polymer/polymer#^1.0.0" 26 | }, 27 | "devDependencies": { 28 | "iron-icons": "PolymerElements/iron-icons#^1.0.0", 29 | "paper-icon-button": "PolymerElements/paper-icon-button#^1.0.0", 30 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 31 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 32 | "web-component-tester": "*", 33 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /static/bower_components/paper-toolbar/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | paper-toolbar 18 | 19 | 20 | 21 | 22 | 23 | 24 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /static/bower_components/paper-toolbar/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | paper-toolbar tests 15 | 16 | 17 | 18 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /static/bower_components/polymer/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "polymer", 3 | "version": "1.0.5", 4 | "main": [ 5 | "polymer.html" 6 | ], 7 | "license": "http://polymer.github.io/LICENSE.txt", 8 | "ignore": [ 9 | "/.*", 10 | "/test/" 11 | ], 12 | "authors": [ 13 | "The Polymer Authors (http://polymer.github.io/AUTHORS.txt)" 14 | ], 15 | "repository": { 16 | "type": "git", 17 | "url": "https://github.com/Polymer/polymer.git" 18 | }, 19 | "dependencies": { 20 | "webcomponentsjs": "^0.7.2" 21 | }, 22 | "devDependencies": { 23 | "web-component-tester": "*" 24 | }, 25 | "private": true, 26 | "homepage": "https://github.com/Polymer/polymer", 27 | "_release": "1.0.5", 28 | "_resolution": { 29 | "type": "version", 30 | "tag": "v1.0.5", 31 | "commit": "b93f076d7b2606733d7166f311b77550deb98a39" 32 | }, 33 | "_source": "git://github.com/Polymer/polymer.git", 34 | "_target": "^1.0.0", 35 | "_originalSource": "Polymer/polymer" 36 | } -------------------------------------------------------------------------------- /static/bower_components/polymer/LICENSE.txt: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014 The Polymer Authors. All rights reserved. 2 | // 3 | // Redistribution and use in source and binary forms, with or without 4 | // modification, are permitted provided that the following conditions are 5 | // met: 6 | // 7 | // * Redistributions of source code must retain the above copyright 8 | // notice, this list of conditions and the following disclaimer. 9 | // * Redistributions in binary form must reproduce the above 10 | // copyright notice, this list of conditions and the following disclaimer 11 | // in the documentation and/or other materials provided with the 12 | // distribution. 13 | // * Neither the name of Google Inc. nor the names of its 14 | // contributors may be used to endorse or promote products derived from 15 | // this software without specific prior written permission. 16 | // 17 | // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 18 | // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 19 | // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20 | // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 21 | // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22 | // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23 | // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 | // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 | // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 | // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 | // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 | -------------------------------------------------------------------------------- /static/bower_components/polymer/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "polymer", 3 | "version": "1.0.5", 4 | "main": [ 5 | "polymer.html" 6 | ], 7 | "license": "http://polymer.github.io/LICENSE.txt", 8 | "ignore": [ 9 | "/.*", 10 | "/test/" 11 | ], 12 | "authors": [ 13 | "The Polymer Authors (http://polymer.github.io/AUTHORS.txt)" 14 | ], 15 | "repository": { 16 | "type": "git", 17 | "url": "https://github.com/Polymer/polymer.git" 18 | }, 19 | "dependencies": { 20 | "webcomponentsjs": "^0.7.2" 21 | }, 22 | "devDependencies": { 23 | "web-component-tester": "*" 24 | }, 25 | "private": true 26 | } 27 | -------------------------------------------------------------------------------- /static/bower_components/polymer/build.log: -------------------------------------------------------------------------------- 1 | BUILD LOG 2 | --------- 3 | Build Time: 2015-06-25T16:47:16-0700 4 | 5 | NODEJS INFORMATION 6 | ================== 7 | nodejs: v0.12.2 8 | del: 1.2.0 9 | gulp: 3.9.0 10 | gulp-audit: 1.0.0 11 | gulp-rename: 1.2.2 12 | gulp-replace: 0.5.3 13 | gulp-vulcanize: 6.0.1 14 | polyclean: 1.2.0 15 | run-sequence: 1.1.1 16 | lazypipe: 0.2.4 17 | 18 | REPO REVISIONS 19 | ============== 20 | polymer: e859b532a7fb5b10ae1311c22988b76cc6cbc04a 21 | 22 | BUILD HASHES 23 | ============ 24 | polymer-mini.html: 93f4b283ba95fd687562b965bf7651eab7a66a1f 25 | polymer-micro.html: db73818583996fe27b9f1119f0e4ef46ccadc859 26 | polymer.html: 9b0cd22e821422a8afe809ca5715612e682e5622 -------------------------------------------------------------------------------- /static/bower_components/webcomponentsjs/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "webcomponentsjs", 3 | "main": "webcomponents.js", 4 | "version": "0.7.5", 5 | "homepage": "http://webcomponents.org", 6 | "authors": [ 7 | "The Polymer Authors" 8 | ], 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/webcomponents/webcomponentsjs.git" 12 | }, 13 | "keywords": [ 14 | "webcomponents" 15 | ], 16 | "license": "BSD", 17 | "ignore": [], 18 | "_release": "0.7.5", 19 | "_resolution": { 20 | "type": "version", 21 | "tag": "v0.7.5", 22 | "commit": "6e2fd746392a9fbec95711872e21fa22bff22fae" 23 | }, 24 | "_source": "git://github.com/Polymer/webcomponentsjs.git", 25 | "_target": "^0.7.2", 26 | "_originalSource": "webcomponentsjs" 27 | } -------------------------------------------------------------------------------- /static/bower_components/webcomponentsjs/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "webcomponentsjs", 3 | "main": "webcomponents.js", 4 | "version": "0.7.5", 5 | "homepage": "http://webcomponents.org", 6 | "authors": [ 7 | "The Polymer Authors" 8 | ], 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/webcomponents/webcomponentsjs.git" 12 | }, 13 | "keywords": [ 14 | "webcomponents" 15 | ], 16 | "license": "BSD", 17 | "ignore": [] 18 | } 19 | -------------------------------------------------------------------------------- /static/bower_components/webcomponentsjs/build.log: -------------------------------------------------------------------------------- 1 | BUILD LOG 2 | --------- 3 | Build Time: 2015-06-17T19:01:18-0700 4 | 5 | NODEJS INFORMATION 6 | ================== 7 | nodejs: v2.3.0 8 | gulp: 3.9.0 9 | gulp-audit: 1.0.0 10 | gulp-concat: 2.5.2 11 | gulp-header: 1.2.2 12 | gulp-uglify: 1.2.0 13 | run-sequence: 1.1.1 14 | web-component-tester: 3.2.0 15 | 16 | REPO REVISIONS 17 | ============== 18 | webcomponentsjs: 1ee61faca40f109f2f5b6ddc8fa15de0319a6e61 19 | 20 | BUILD HASHES 21 | ============ 22 | CustomElements.js: f3f0c7f3c65aeb5cc56c64300fe89003a4c7fa31 23 | CustomElements.min.js: 557ccd338ab463c9bcd1e3c0fc4102455432214a 24 | HTMLImports.js: 8c1f33a777d7ff8ee3a22fce8d35e5b927285724 25 | HTMLImports.min.js: f4ba44076c40f408c661caa8baf81f9e3740689b 26 | MutationObserver.js: 81934731acd4175701d678dbef11aaefa7d701f5 27 | MutationObserver.min.js: 6202537174240ba28bf71e22cddf90ce80cf73f8 28 | ShadowDOM.js: 5e901cfe7eb384f15a39b1bf4e510a06ae03b43e 29 | ShadowDOM.min.js: 397715836fdd0cfe15a5e966f5ab187ccc1bec15 30 | webcomponents-lite.js: 5c38f87a645eea9d282de74340c101e5531cb2c0 31 | webcomponents-lite.min.js: 2a744443fbfba6b30fde7b17606f68cae6036e52 32 | webcomponents.js: 637cf33c1ee108fb376891eed0b5b47deed8c238 33 | webcomponents.min.js: c2841b948265560478872747618cad207a693c4f -------------------------------------------------------------------------------- /static/bower_components/webcomponentsjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "webcomponents.js", 3 | "version": "0.7.5", 4 | "description": "webcomponents.js", 5 | "main": "webcomponents.js", 6 | "directories": { 7 | "test": "tests" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/webcomponents/webcomponentsjs.git" 12 | }, 13 | "author": "The Polymer Authors", 14 | "license": { 15 | "type": "BSD-3-Clause", 16 | "url": "http://polymer.github.io/LICENSE.txt" 17 | }, 18 | "bugs": { 19 | "url": "https://github.com/webcomponents/webcomponentsjs/issues" 20 | }, 21 | "homepage": "http://webcomponents.org", 22 | "devDependencies": { 23 | "gulp": "^3.8.8", 24 | "gulp-audit": "^1.0.0", 25 | "gulp-concat": "^2.4.1", 26 | "gulp-header": "^1.1.1", 27 | "gulp-uglify": "^1.0.1", 28 | "run-sequence": "^1.0.1", 29 | "web-component-tester": "*" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /static/images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdevty/polymer/d8be0028b80dcf7026489598f4f8905ecc291611/static/images/cover.png -------------------------------------------------------------------------------- /static/images/facebook-dreamstale25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdevty/polymer/d8be0028b80dcf7026489598f4f8905ecc291611/static/images/facebook-dreamstale25.png -------------------------------------------------------------------------------- /static/images/feed-dreamstale27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdevty/polymer/d8be0028b80dcf7026489598f4f8905ecc291611/static/images/feed-dreamstale27.png -------------------------------------------------------------------------------- /static/images/github2-dreamstale35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdevty/polymer/d8be0028b80dcf7026489598f4f8905ecc291611/static/images/github2-dreamstale35.png -------------------------------------------------------------------------------- /static/images/google+-dreamstale37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdevty/polymer/d8be0028b80dcf7026489598f4f8905ecc291611/static/images/google+-dreamstale37.png -------------------------------------------------------------------------------- /static/images/linkedin-dreamstale45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdevty/polymer/d8be0028b80dcf7026489598f4f8905ecc291611/static/images/linkedin-dreamstale45.png -------------------------------------------------------------------------------- /static/images/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdevty/polymer/d8be0028b80dcf7026489598f4f8905ecc291611/static/images/photo.png -------------------------------------------------------------------------------- /static/images/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdevty/polymer/d8be0028b80dcf7026489598f4f8905ecc291611/static/images/profile.png -------------------------------------------------------------------------------- /static/images/twitter-dreamstale71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdevty/polymer/d8be0028b80dcf7026489598f4f8905ecc291611/static/images/twitter-dreamstale71.png -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- 1 | name = "Polymer" 2 | license = "MIT" 3 | licenselink = "https://github.com/pdevty/polymer/blob/master/LICENSE.md" 4 | description = "Material Design theme by polymer (web components)" 5 | homepage = "https://github.com/pdevty/polymer" 6 | tags = ["blog"] 7 | features = ["Polymer Material Design","Google Analytics","Pagination", 8 | "Disqus","Tags","Categories","Highlighting source code","Cover image","Social links"] 9 | min_version = 0.13 10 | 11 | [author] 12 | name = "pdevty" 13 | homepage = "http://pdevty.github.io/blog/" 14 | --------------------------------------------------------------------------------