├── .gitignore ├── README.md ├── code.c ├── docs ├── bower_components │ ├── font-roboto │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ └── roboto.html │ ├── install │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── detect-zoom.js │ │ ├── detect-zoom.min.js │ │ └── package.json │ ├── iron-a11y-keys-behavior │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── 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 │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── 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-checked-element-behavior │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ ├── index.html │ │ │ └── simple-checkbox.html │ │ ├── index.html │ │ ├── iron-checked-element-behavior.html │ │ └── test │ │ │ ├── basic.html │ │ │ ├── index.html │ │ │ └── simple-checkbox.html │ ├── iron-flex-layout │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── classes │ │ │ ├── iron-flex-layout.html │ │ │ └── iron-shadow-flex-layout.html │ │ ├── demo │ │ │ └── index.html │ │ ├── index.html │ │ ├── iron-flex-layout-classes.html │ │ ├── iron-flex-layout.html │ │ └── test │ │ │ ├── index.html │ │ │ ├── iron-flex-layout-classes.html │ │ │ └── iron-flex-layout.html │ ├── iron-form-element-behavior │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ ├── index.html │ │ │ ├── simple-element.html │ │ │ └── simple-form.html │ │ ├── index.html │ │ ├── iron-form-element-behavior.html │ │ └── test │ │ │ ├── basic.html │ │ │ ├── index.html │ │ │ ├── simple-element.html │ │ │ └── simple-form.html │ ├── iron-icon │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ ├── async.html │ │ │ ├── index.html │ │ │ └── location.png │ │ ├── hero.svg │ │ ├── index.html │ │ ├── iron-icon.html │ │ └── test │ │ │ ├── index.html │ │ │ └── iron-icon.html │ ├── iron-icons │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── 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 │ │ ├── places-icons.html │ │ └── social-icons.html │ ├── iron-iconset-svg │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── 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-menu-behavior │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── 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 │ │ │ └── test-nested-menu.html │ ├── iron-meta │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── 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 │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── 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 │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── 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 │ │ │ ├── attr-for-selected-elements.html │ │ │ ├── attr-for-selected.html │ │ │ ├── basic.html │ │ │ ├── content-element.html │ │ │ ├── content.html │ │ │ ├── excluded-local-names.html │ │ │ ├── index.html │ │ │ ├── multi.html │ │ │ ├── next-previous.html │ │ │ ├── numeric-ids.html │ │ │ ├── selected-attribute.html │ │ │ └── template-repeat.html │ ├── iron-validatable-behavior │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ ├── cats-only.html │ │ │ ├── index.html │ │ │ └── validatable-input.html │ │ ├── index.html │ │ ├── iron-validatable-behavior.html │ │ └── test │ │ │ ├── cats-only.html │ │ │ ├── dogs-only.html │ │ │ ├── index.html │ │ │ ├── iron-validatable-behavior.html │ │ │ └── test-validatable.html │ ├── paper-badge │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ ├── index.html │ │ │ └── test-button.html │ │ ├── index.html │ │ ├── paper-badge.html │ │ └── test │ │ │ ├── basic.html │ │ │ ├── index.html │ │ │ └── test-button.html │ ├── paper-behaviors │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ ├── index.html │ │ │ ├── paper-button.html │ │ │ └── paper-radio-button.html │ │ ├── index.html │ │ ├── paper-button-behavior.html │ │ ├── paper-checked-element-behavior.html │ │ ├── paper-inky-focus-behavior.html │ │ ├── paper-ripple-behavior.html │ │ └── test │ │ │ ├── index.html │ │ │ ├── paper-button-behavior.html │ │ │ ├── paper-checked-element-behavior.html │ │ │ ├── paper-radio-button-behavior.html │ │ │ ├── paper-ripple-behavior.html │ │ │ ├── shadowed-ripple.html │ │ │ ├── test-button.html │ │ │ └── test-radio-button.html │ ├── paper-button │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ └── index.html │ │ ├── index.html │ │ ├── paper-button.html │ │ └── test │ │ │ ├── index.html │ │ │ └── paper-button.html │ ├── paper-icon-button │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ ├── index.html │ │ │ └── paper-icon-button-light.html │ │ ├── index.html │ │ ├── paper-icon-button-light.html │ │ ├── paper-icon-button.html │ │ └── test │ │ │ ├── a11y.html │ │ │ ├── basic.html │ │ │ └── index.html │ ├── paper-item │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── all-imports.html │ │ ├── bower.json │ │ ├── demo │ │ │ └── index.html │ │ ├── index.html │ │ ├── paper-icon-item.html │ │ ├── paper-item-behavior.html │ │ ├── paper-item-body.html │ │ ├── paper-item-shared-styles.html │ │ ├── paper-item.html │ │ └── test │ │ │ ├── index.html │ │ │ └── paper-item.html │ ├── paper-material │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ └── index.html │ │ ├── index.html │ │ ├── paper-material-shared-styles.html │ │ ├── paper-material.html │ │ └── test │ │ │ ├── index.html │ │ │ └── paper-material.html │ ├── paper-ripple │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-ripple.html │ │ └── test │ │ │ ├── index.html │ │ │ └── paper-ripple.html │ ├── paper-styles │ │ ├── .bower.json │ │ ├── CONTRIBUTING.md │ │ ├── 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 │ │ ├── index.html │ │ ├── paper-styles-classes.html │ │ ├── paper-styles.html │ │ ├── shadow.html │ │ └── typography.html │ ├── paper-tabs │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-tab.html │ │ ├── paper-tabs-icons.html │ │ ├── paper-tabs.html │ │ └── test │ │ │ ├── attr-for-selected.html │ │ │ ├── basic.html │ │ │ ├── index.html │ │ │ └── links.html │ ├── paper-toolbar │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── 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 ├── index.html ├── main.css └── temp │ ├── header_bg.jpg │ └── header_bg2.jpg └── test /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | 5 | # C extensions 6 | *.so 7 | 8 | # Distribution / packaging 9 | .Python 10 | env/ 11 | develop-eggs/ 12 | dist/ 13 | downloads/ 14 | eggs/ 15 | .eggs/ 16 | lib/ 17 | lib64/ 18 | parts/ 19 | sdist/ 20 | var/ 21 | *.egg-info/ 22 | .installed.cfg 23 | *.egg 24 | 25 | # PyInstaller 26 | # Usually these files are written by a python script from a template 27 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 28 | *.manifest 29 | *.spec 30 | 31 | # Installer logs 32 | pip-log.txt 33 | pip-delete-this-directory.txt 34 | 35 | # Tests / coverage reports 36 | htmlcov/ 37 | .tox/ 38 | .coverage 39 | .coverage.* 40 | .cache 41 | nosetests.xml 42 | coverage.xml 43 | *,cover 44 | functional_tests/bin/ 45 | functional_tests/log/ 46 | functional_tests/screendumps/ 47 | 48 | # Translations 49 | *.mo 50 | *.pot 51 | 52 | # Django stuff: 53 | *.log 54 | logs/ 55 | db.sqlite3 56 | migrations/ 57 | # Sphinx documentation 58 | docs/_build/ 59 | docs/*.rst 60 | docs/_templates/ 61 | docs/_static/ 62 | 63 | # PyBuilder 64 | target/ 65 | 66 | # MacOSX specific files 67 | .DS_Store 68 | .DS_Store? 69 | ._* 70 | .Spotlight-V100 71 | .Trashes 72 | Icon? 73 | Thumbs.db 74 | .htaccess 75 | .settings 76 | .project 77 | .buildpath 78 | .idea 79 | 80 | .sass* 81 | *.whl 82 | *.rej 83 | bucket/ 84 | env/ 85 | .env 86 | venv/ 87 | *.ropeproject 88 | *.rej 89 | *.orig 90 | # Node package 91 | node_modules/ 92 | # developement keypair 93 | neumann-dev.pem 94 | neumann-dev.pub 95 | 96 | # vim swap file 97 | *.swp 98 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # git/github 입문 2 | 3 | ### git/github 튜토리얼 4 | >[https://github.com/E-nuri/git_beginner](https://github.com/E-nuri/git_beginner) 5 | 6 | ### source code / guide slide file 7 | >[download link](https://goo.gl/Gq51j5) 8 | 9 | ### Pull Request Test Page 10 | >[Pull Request Test page link](https://e-nuri.github.io/git_beginner/) 11 | 12 | ### github markdown 문법 13 | >[GFM reference](https://guides.github.com/features/mastering-markdown/) 14 | 15 | 16 | Last Edited : Jan. 2017 17 | -------------------------------------------------------------------------------- /code.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | printf("Bye World!\n"); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /docs/bower_components/font-roboto/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "font-roboto", 3 | "version": "1.0.1", 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.1", 23 | "_resolution": { 24 | "type": "version", 25 | "tag": "v1.0.1", 26 | "commit": "21ce9b51a417fa9995cf6606e886aba0728f70a1" 27 | }, 28 | "_source": "https://github.com/PolymerElements/font-roboto.git", 29 | "_target": "^1.0.1", 30 | "_originalSource": "PolymerElements/font-roboto" 31 | } -------------------------------------------------------------------------------- /docs/bower_components/font-roboto/README.md: -------------------------------------------------------------------------------- 1 | # font-roboto 2 | -------------------------------------------------------------------------------- /docs/bower_components/font-roboto/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "font-roboto", 3 | "version": "1.0.1", 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 | -------------------------------------------------------------------------------- /docs/bower_components/font-roboto/roboto.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/bower_components/install/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "install", 3 | "homepage": "https://github.com/tombigel/detect-zoom", 4 | "version": "1.0.4", 5 | "_release": "1.0.4", 6 | "_resolution": { 7 | "type": "version", 8 | "tag": "v1.0.4", 9 | "commit": "d7068c9bc6db09d458af90f19a02084efb141f66" 10 | }, 11 | "_source": "https://github.com/tombigel/detect-zoom.git", 12 | "_target": "^1.0.4", 13 | "_originalSource": "install", 14 | "_direct": true 15 | } -------------------------------------------------------------------------------- /docs/bower_components/install/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Python files 2 | *.pyc 3 | 4 | # Folder view configuration files 5 | .DS_Store 6 | Desktop.ini 7 | 8 | # Thumbnail cache files 9 | ._* 10 | Thumbs.db 11 | 12 | # Files that might appear on external disks 13 | .Spotlight-V100 14 | .Trashes 15 | 16 | # IntelliJ 17 | *.iml 18 | *.ipr 19 | *.iws 20 | .idea 21 | 22 | # npm 23 | node-modules -------------------------------------------------------------------------------- /docs/bower_components/install/Makefile: -------------------------------------------------------------------------------- 1 | UGLIFY=./node_modules/uglify-js/bin/uglifyjs 2 | 3 | detect-zoom.min.js: detect-zoom.js 4 | $(UGLIFY) detect-zoom.js -c > detect-zoom.min.js 5 | -------------------------------------------------------------------------------- /docs/bower_components/install/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "detect-zoom", 3 | "version": "1.0.4", 4 | "description": "Cross Browser Zoom and Pixel Ratio Detector", 5 | "main": "detect-zoom.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git://github.com/tombigel/detect-zoom.git" 12 | }, 13 | "keywords": [ 14 | "browser", 15 | "zoom", 16 | "compatibility", 17 | "pixel", 18 | "ratio", 19 | "retina" 20 | ], 21 | "author": "Yonathan Randolph", 22 | "contributors": [ 23 | "Tom Bigelajzen " 24 | ], 25 | "license": "MIT", 26 | "readmeFilename": "README.md", 27 | "gitHead": "6eaf3107a6913a4f7b93665ba6d5bc16cdf0f3ab", 28 | "devDependencies": { 29 | "uglify-js": "~2.2.5" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /docs/bower_components/iron-a11y-keys-behavior/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-a11y-keys-behavior", 3 | "version": "1.1.9", 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.1.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": "^4.0.0", 30 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 31 | }, 32 | "ignore": [], 33 | "homepage": "https://github.com/PolymerElements/iron-a11y-keys-behavior", 34 | "_release": "1.1.9", 35 | "_resolution": { 36 | "type": "version", 37 | "tag": "v1.1.9", 38 | "commit": "26243e0f8687b8ea3d95eed3cefb7661a388dbce" 39 | }, 40 | "_source": "https://github.com/PolymerElements/iron-a11y-keys-behavior.git", 41 | "_target": "^1.0.0", 42 | "_originalSource": "PolymerElements/iron-a11y-keys-behavior" 43 | } -------------------------------------------------------------------------------- /docs/bower_components/iron-a11y-keys-behavior/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /docs/bower_components/iron-a11y-keys-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /docs/bower_components/iron-a11y-keys-behavior/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-a11y-keys-behavior", 3 | "version": "1.1.9", 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.1.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": "^4.0.0", 30 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 31 | }, 32 | "ignore": [] 33 | } 34 | -------------------------------------------------------------------------------- /docs/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 | -------------------------------------------------------------------------------- /docs/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 | -------------------------------------------------------------------------------- /docs/bower_components/iron-a11y-keys-behavior/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | Tests 13 | 14 | 15 | 16 | 17 | 18 | 19 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /docs/bower_components/iron-behaviors/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-behaviors", 3 | "version": "1.0.17", 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.2.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 | "paper-input": "polymerelements/paper-input#^1.0.0", 25 | "iron-test-helpers": "polymerelements/iron-test-helpers#^1.0.0", 26 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 27 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 28 | "web-component-tester": "^4.0.0", 29 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 30 | }, 31 | "ignore": [], 32 | "homepage": "https://github.com/PolymerElements/iron-behaviors", 33 | "_release": "1.0.17", 34 | "_resolution": { 35 | "type": "version", 36 | "tag": "v1.0.17", 37 | "commit": "ef8e89b5f0aa4e8a6b51ca6491ea453bf395f94f" 38 | }, 39 | "_source": "https://github.com/PolymerElements/iron-behaviors.git", 40 | "_target": "^1.0.0", 41 | "_originalSource": "PolymerElements/iron-behaviors" 42 | } -------------------------------------------------------------------------------- /docs/bower_components/iron-behaviors/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /docs/bower_components/iron-behaviors/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /docs/bower_components/iron-behaviors/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: H49pcRc5C6G+ti/ehtT74GZdsUsM/xCvEVJBmKq8rpck7s18R6BbH37RkF2XgYfO4rVa1Bl4KU4Wf5S6aIDYzdaq/phGtFQ04NmDYGbmBhRjwfgxlW4dJ7mkXqXCvNZkxJtAJpgzgVG+xu/I6GsO1Lp4VjGENvVYSsrkGIlSA34= 10 | - secure: Zq+hvOlL1RmTtMfAtO3bxqYnB7X6MY199cVCKo2J/EbsMvOHII1JvEU1+s2/UG9tgoiXkd7N2OfFOivlbQ75BDIwtvkq32KZNrUEC6vRGhbMBc8JCKkdFB/XHh1mNhQcn6Js656PhZIj2WteZYMSGYDUj7KcBBMacRZQKWuB0OU= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /docs/bower_components/iron-behaviors/README.md: -------------------------------------------------------------------------------- 1 | 2 | 14 | 15 | [![Build status](https://travis-ci.org/PolymerElements/iron-behaviors.svg?branch=master)](https://travis-ci.org/PolymerElements/iron-behaviors) 16 | 17 | _[Demo and API docs](https://elements.polymer-project.org/elements/iron-behaviors)_ 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /docs/bower_components/iron-behaviors/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-behaviors", 3 | "version": "1.0.17", 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.2.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 | "paper-input": "polymerelements/paper-input#^1.0.0", 25 | "iron-test-helpers": "polymerelements/iron-test-helpers#^1.0.0", 26 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 27 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 28 | "web-component-tester": "^4.0.0", 29 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 30 | }, 31 | "ignore": [] 32 | } 33 | -------------------------------------------------------------------------------- /docs/bower_components/iron-behaviors/demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | simple-button 19 | 20 | 21 | 22 | 23 | 24 | 31 | 32 | 33 | 34 |
35 |

Normal

36 | 37 | Hello World 38 | 39 |

Toggles

40 | 41 | Hello World 42 | 43 |

Disabled

44 | 45 | Hello World 46 |
47 | 48 | 49 | -------------------------------------------------------------------------------- /docs/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 | -------------------------------------------------------------------------------- /docs/bower_components/iron-behaviors/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /docs/bower_components/iron-checked-element-behavior/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /docs/bower_components/iron-checked-element-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /docs/bower_components/iron-checked-element-behavior/README.md: -------------------------------------------------------------------------------- 1 | 2 | 14 | 15 | [![Build status](https://travis-ci.org/PolymerElements/iron-checked-element-behavior.svg?branch=master)](https://travis-ci.org/PolymerElements/iron-checked-element-behavior) 16 | 17 | _[Demo and API docs](https://elements.polymer-project.org/elements/iron-checked-element-behavior)_ 18 | 19 | 20 | ##Polymer.IronCheckedElementBehavior 21 | 22 | Use `Polymer.IronCheckedElementBehavior` to implement a custom element 23 | that has a `checked` property, which can be used for validation if the 24 | element is also `required`. Element instances implementing this behavior 25 | will also be registered for use in an `iron-form` element. 26 | 27 | 28 | -------------------------------------------------------------------------------- /docs/bower_components/iron-checked-element-behavior/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-checked-element-behavior", 3 | "version": "1.0.5", 4 | "description": "Implements an element that has a checked attribute and can be added to a form", 5 | "authors": "The Polymer Authors", 6 | "keywords": [ 7 | "web-components", 8 | "polymer", 9 | "iron", 10 | "behavior" 11 | ], 12 | "main": "iron-checked-element-behavior.html", 13 | "private": true, 14 | "repository": { 15 | "type": "git", 16 | "url": "git://github.com/PolymerElements/iron-checked-element-behavior.git" 17 | }, 18 | "license": "http://polymer.github.io/LICENSE.txt", 19 | "homepage": "https://github.com/PolymerElements/iron-checked-element-behavior", 20 | "ignore": [], 21 | "dependencies": { 22 | "polymer": "Polymer/polymer#^1.1.0", 23 | "iron-validatable-behavior": "PolymerElements/iron-validatable-behavior#^1.0.0", 24 | "iron-form-element-behavior": "PolymerElements/iron-form-element-behavior#^1.0.0" 25 | }, 26 | "devDependencies": { 27 | "paper-styles": "PolymerElements/paper-styles#^1.0.0", 28 | "paper-button": "PolymerElements/paper-button#^1.0.0", 29 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 30 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 31 | "web-component-tester": "^4.0.0", 32 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /docs/bower_components/iron-checked-element-behavior/demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | iron-checked-element-behavior demo 18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 |
26 |

Not required

27 |
28 | 29 |
30 |
31 |
32 |

Required

33 |
34 | 35 |
36 |
37 |
38 | 39 | 40 | -------------------------------------------------------------------------------- /docs/bower_components/iron-checked-element-behavior/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | iron-checked-element-behavior 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /docs/bower_components/iron-checked-element-behavior/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | iron-checked-element-behavior tests 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /docs/bower_components/iron-checked-element-behavior/test/simple-checkbox.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 27 | -------------------------------------------------------------------------------- /docs/bower_components/iron-flex-layout/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-flex-layout", 3 | "version": "1.3.1", 4 | "description": "Provide flexbox-based layouts", 5 | "keywords": [ 6 | "web-components", 7 | "polymer", 8 | "layout" 9 | ], 10 | "main": "iron-flex-layout.html", 11 | "private": true, 12 | "license": "http://polymer.github.io/LICENSE.txt", 13 | "authors": [ 14 | "The Polymer Authors" 15 | ], 16 | "repository": { 17 | "type": "git", 18 | "url": "git://github.com/PolymerElements/iron-flex-layout.git" 19 | }, 20 | "dependencies": { 21 | "polymer": "Polymer/polymer#^1.1.0" 22 | }, 23 | "devDependencies": { 24 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 25 | "iron-demo-helpers": "PolymerElements/iron-demo-helpers#^1.0.0", 26 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 27 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0", 28 | "web-component-tester": "^4.0.0" 29 | }, 30 | "ignore": [], 31 | "homepage": "https://github.com/PolymerElements/iron-flex-layout", 32 | "_release": "1.3.1", 33 | "_resolution": { 34 | "type": "version", 35 | "tag": "v1.3.1", 36 | "commit": "6d88f29f3a7181daa2a5c7f678de44f0a0e6a717" 37 | }, 38 | "_source": "https://github.com/PolymerElements/iron-flex-layout.git", 39 | "_target": "^1.0.0", 40 | "_originalSource": "PolymerElements/iron-flex-layout" 41 | } -------------------------------------------------------------------------------- /docs/bower_components/iron-flex-layout/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | 3 | -------------------------------------------------------------------------------- /docs/bower_components/iron-flex-layout/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: false 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: jFaXkmco40NlJT4VyFYM34Zv9D1XVfLXgixobnyHQyJDBKSXrNLcwDuvrGUpJx/pwBCxEhKAbvxeJ+PBMUv8QV08MAdw2S6QOsIe3CUxAehoNoOMJw5duhE8faWlz8qzmCWEowHVFUeVsd0ZUsgOu6RTspj2A51D/CztQuW0Ljw= 10 | - secure: fKrO5yMx8kZM1WQ3k0bzo6MCREKGW2WkCl2suDjuEtb1SQ/SaZa9Tun0fcqIHVJqg9+jOS1Romt/+MN27Nc6IT1tv/NdLd+uWjtMA+OzLyv48gzcdu8Ls/TISUGm5Wb7XHkcvMAb1tRoBs5BOvQ/85FilZLEq1km8snG9ZsOOWI= 11 | - CXX=g++-4.8 12 | node_js: stable 13 | addons: 14 | firefox: latest 15 | apt: 16 | sources: 17 | - google-chrome 18 | - ubuntu-toolchain-r-test 19 | packages: 20 | - google-chrome-stable 21 | - g++-4.8 22 | sauce_connect: true 23 | script: 24 | - xvfb-run wct 25 | - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi" 26 | -------------------------------------------------------------------------------- /docs/bower_components/iron-flex-layout/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-flex-layout", 3 | "version": "1.3.1", 4 | "description": "Provide flexbox-based layouts", 5 | "keywords": [ 6 | "web-components", 7 | "polymer", 8 | "layout" 9 | ], 10 | "main": "iron-flex-layout.html", 11 | "private": true, 12 | "license": "http://polymer.github.io/LICENSE.txt", 13 | "authors": [ 14 | "The Polymer Authors" 15 | ], 16 | "repository": { 17 | "type": "git", 18 | "url": "git://github.com/PolymerElements/iron-flex-layout.git" 19 | }, 20 | "dependencies": { 21 | "polymer": "Polymer/polymer#^1.1.0" 22 | }, 23 | "devDependencies": { 24 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 25 | "iron-demo-helpers": "PolymerElements/iron-demo-helpers#^1.0.0", 26 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 27 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0", 28 | "web-component-tester": "^4.0.0" 29 | }, 30 | "ignore": [] 31 | } 32 | -------------------------------------------------------------------------------- /docs/bower_components/iron-flex-layout/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | iron-flex-layout 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/bower_components/iron-flex-layout/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | iron-flex-behavior tests 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /docs/bower_components/iron-form-element-behavior/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-form-element-behavior", 3 | "version": "1.0.6", 4 | "license": "http://polymer.github.io/LICENSE.txt", 5 | "private": true, 6 | "main": "iron-form-element-behavior.html", 7 | "authors": [ 8 | "The Polymer Authors" 9 | ], 10 | "description": "Enables a custom element to be included in an iron-form", 11 | "keywords": [ 12 | "web-components", 13 | "polymer", 14 | "form" 15 | ], 16 | "repository": { 17 | "type": "git", 18 | "url": "git://github.com/PolymerElements/iron-form-element-behavior.git" 19 | }, 20 | "dependencies": { 21 | "polymer": "Polymer/polymer#^1.0.0" 22 | }, 23 | "devDependencies": { 24 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 25 | "paper-styles": "PolymerElements/paper-styles#^1.0.0", 26 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 27 | "web-component-tester": "polymer/web-component-tester#^3.4.0", 28 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 29 | }, 30 | "ignore": [], 31 | "homepage": "https://github.com/PolymerElements/iron-form-element-behavior", 32 | "_release": "1.0.6", 33 | "_resolution": { 34 | "type": "version", 35 | "tag": "v1.0.6", 36 | "commit": "cf9e09ded62daf3363852ce98260aaad1ed0fae1" 37 | }, 38 | "_source": "https://github.com/PolymerElements/iron-form-element-behavior.git", 39 | "_target": "^1.0.0", 40 | "_originalSource": "PolymerElements/iron-form-element-behavior" 41 | } -------------------------------------------------------------------------------- /docs/bower_components/iron-form-element-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /docs/bower_components/iron-form-element-behavior/README.md: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | [![Build Status](https://travis-ci.org/PolymerElements/iron-form-element-behavior.svg?branch=master)](https://travis-ci.org/PolymerElements/iron-form-element-behavior) 13 | 14 | _[Demo and API Docs](https://elements.polymer-project.org/elements/iron-form-element-behavior)_ 15 | 16 | 17 | ##Polymer.IronFormElementBehavior 18 | 19 | 20 | Polymer.IronFormElementBehavior enables a custom element to be included 21 | in an `iron-form`. 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/bower_components/iron-form-element-behavior/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-form-element-behavior", 3 | "version": "1.0.6", 4 | "license": "http://polymer.github.io/LICENSE.txt", 5 | "private": true, 6 | "main": "iron-form-element-behavior.html", 7 | "authors": [ 8 | "The Polymer Authors" 9 | ], 10 | "description": "Enables a custom element to be included in an iron-form", 11 | "keywords": [ 12 | "web-components", 13 | "polymer", 14 | "form" 15 | ], 16 | "repository": { 17 | "type": "git", 18 | "url": "git://github.com/PolymerElements/iron-form-element-behavior.git" 19 | }, 20 | "dependencies": { 21 | "polymer": "Polymer/polymer#^1.0.0" 22 | }, 23 | "devDependencies": { 24 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 25 | "paper-styles": "PolymerElements/paper-styles#^1.0.0", 26 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 27 | "web-component-tester": "polymer/web-component-tester#^3.4.0", 28 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 29 | }, 30 | "ignore": [] 31 | } 32 | -------------------------------------------------------------------------------- /docs/bower_components/iron-form-element-behavior/demo/simple-element.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 28 | -------------------------------------------------------------------------------- /docs/bower_components/iron-form-element-behavior/demo/simple-form.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 54 | -------------------------------------------------------------------------------- /docs/bower_components/iron-form-element-behavior/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | iron-form-element-behavior 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /docs/bower_components/iron-form-element-behavior/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/bower_components/iron-form-element-behavior/test/simple-element.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 24 | -------------------------------------------------------------------------------- /docs/bower_components/iron-form-element-behavior/test/simple-form.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 20 | -------------------------------------------------------------------------------- /docs/bower_components/iron-icon/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-icon", 3 | "private": true, 4 | "version": "1.0.12", 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 | "ignore": [], 21 | "dependencies": { 22 | "iron-flex-layout": "polymerelements/iron-flex-layout#^1.0.0", 23 | "iron-meta": "polymerelements/iron-meta#^1.0.0", 24 | "polymer": "Polymer/polymer#^1.1.0" 25 | }, 26 | "devDependencies": { 27 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 28 | "promise-polyfill": "polymerlabs/promise-polyfill#^1.0.0", 29 | "iron-iconset": "polymerelements/iron-iconset#^1.0.0", 30 | "iron-icons": "polymerelements/iron-icons#^1.0.0", 31 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 32 | "web-component-tester": "^4.0.0", 33 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 34 | }, 35 | "homepage": "https://github.com/PolymerElements/iron-icon", 36 | "_release": "1.0.12", 37 | "_resolution": { 38 | "type": "version", 39 | "tag": "v1.0.12", 40 | "commit": "e6bce09a074f9f8433f168081405b7e44d525c62" 41 | }, 42 | "_source": "https://github.com/PolymerElements/iron-icon.git", 43 | "_target": "^1.0.0", 44 | "_originalSource": "PolymerElements/iron-icon" 45 | } -------------------------------------------------------------------------------- /docs/bower_components/iron-icon/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /docs/bower_components/iron-icon/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /docs/bower_components/iron-icon/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: TTp7q3OKEpaFqnqbYczhMd8iXTa1Ya0jOQVq1OhljpJogLWb78qvHLHgnxgMWkw+/KDyE5KHW1CXhYUQa7C9QF2Zn7uoN27+7+4q7HuK3pTuUtqdfstLVuLHQrfK6VqUT4XjSpeMzNX/HxuD3EMBH0bMBR4CIr76sLJOuIL/XF8= 10 | - secure: damHvQXygRYIJG/8Vmqh7U4zxoi5224JIZiZVQL6I5z//s5zqHq6AqwDyfOoc0zWndJCwE8NvOzKD/lmVYXIsPcY95kkZS45Dbye0krYWUzKnv42rDi/7olXcg647iAEDVhW3BRHmA+opzQtKUpAkXl97DtPVkszLL1ReyNyv3A= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /docs/bower_components/iron-icon/README.md: -------------------------------------------------------------------------------- 1 | [![Build status](https://travis-ci.org/PolymerElements/iron-icon.svg?branch=master)](https://travis-ci.org/PolymerElements/iron-icon) 2 | 3 | ##<iron-icon> 4 | 5 | The `iron-icon` element displays an icon. By default an icon renders as a 24px square. 6 | 7 | 19 | ```html 20 | 21 | 22 | ``` 23 | -------------------------------------------------------------------------------- /docs/bower_components/iron-icon/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-icon", 3 | "private": true, 4 | "version": "1.0.12", 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 | "ignore": [], 21 | "dependencies": { 22 | "iron-flex-layout": "polymerelements/iron-flex-layout#^1.0.0", 23 | "iron-meta": "polymerelements/iron-meta#^1.0.0", 24 | "polymer": "Polymer/polymer#^1.1.0" 25 | }, 26 | "devDependencies": { 27 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 28 | "promise-polyfill": "polymerlabs/promise-polyfill#^1.0.0", 29 | "iron-iconset": "polymerelements/iron-iconset#^1.0.0", 30 | "iron-icons": "polymerelements/iron-icons#^1.0.0", 31 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 32 | "web-component-tester": "^4.0.0", 33 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /docs/bower_components/iron-icon/demo/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E-nuri/git_beginner/b2630461561177e43cda42162a52ea11c9dfdcc1/docs/bower_components/iron-icon/demo/location.png -------------------------------------------------------------------------------- /docs/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 | -------------------------------------------------------------------------------- /docs/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 | -------------------------------------------------------------------------------- /docs/bower_components/iron-icon/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | Tests 13 | 14 | 15 | 16 | 17 | 18 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /docs/bower_components/iron-icons/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-icons", 3 | "version": "1.2.0", 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 | "web-component-tester": "^4.0.0" 33 | }, 34 | "ignore": [ 35 | "util", 36 | "update-icons.sh" 37 | ], 38 | "_release": "1.2.0", 39 | "_resolution": { 40 | "type": "version", 41 | "tag": "v1.2.0", 42 | "commit": "3752efe4bb6c248b9dfeefb73f0d1ce6d446dff7" 43 | }, 44 | "_source": "https://github.com/PolymerElements/iron-icons.git", 45 | "_target": "^1.2.0", 46 | "_originalSource": "PolymerElements/iron-icons", 47 | "_direct": true 48 | } -------------------------------------------------------------------------------- /docs/bower_components/iron-icons/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /docs/bower_components/iron-icons/.gitignore: -------------------------------------------------------------------------------- 1 | util/node_modules 2 | material-design-icons 3 | bower_components 4 | -------------------------------------------------------------------------------- /docs/bower_components/iron-icons/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: >- 10 | L3XJmmXJlYZYyvlKoZ25HpEC1FcTtWejNk2xRQKAH4cg8+oNMjE80OxkaIVHtZlatpLdIIYk79p+9OtGiskXZ1QsAjHtrxWE5YRSSz3nL/XyZqUu7tjiNtrih6PiEvocmwMCCdRGMSXwVl1YoUUYM0DWxHdykd0EMXYYkYe+yQo= 11 | - secure: >- 12 | PSLkHUoiTj6UxN+7KtZG2miLmeuDuGN4c+ksviIP4/4lh5x7xic7CIeMmf2HLd18MR8CwCHjfMrIrxYF/IusILn6fdQ8rdBw+XhEF7xP+8UqqgF6YjGHs/xPDYYiGtisEc2OOg+vzqXIMhmKTg2vVlhuNq16eggGsRDcsEhEong= 13 | node_js: '6' 14 | addons: 15 | firefox: latest 16 | apt: 17 | sources: 18 | - google-chrome 19 | packages: 20 | - google-chrome-stable 21 | script: 22 | - true || xvfb-run wct 23 | - 'if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then true || wct -s ''default''; fi' 24 | dist: trusty 25 | -------------------------------------------------------------------------------- /docs/bower_components/iron-icons/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-icons", 3 | "version": "1.2.0", 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 | "web-component-tester": "^4.0.0" 33 | }, 34 | "ignore": [ 35 | "util", 36 | "update-icons.sh" 37 | ] 38 | } 39 | -------------------------------------------------------------------------------- /docs/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 | -------------------------------------------------------------------------------- /docs/bower_components/iron-icons/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/bower_components/iron-iconset-svg/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-iconset-svg", 3 | "description": "Manages a set of svg icons", 4 | "version": "1.1.0", 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 | "promise-polyfill": "polymerlabs/promise-polyfill#^1.0.0", 28 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 29 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0", 30 | "web-component-tester": "^4.0.0" 31 | }, 32 | "main": "iron-iconset-svg.html", 33 | "ignore": [], 34 | "homepage": "https://github.com/polymerelements/iron-iconset-svg", 35 | "_release": "1.1.0", 36 | "_resolution": { 37 | "type": "version", 38 | "tag": "v1.1.0", 39 | "commit": "9d3135d76b32a1ca60ce36c32e157fc9d4cfdd0e" 40 | }, 41 | "_source": "https://github.com/polymerelements/iron-iconset-svg.git", 42 | "_target": "^1.0.0", 43 | "_originalSource": "polymerelements/iron-iconset-svg" 44 | } -------------------------------------------------------------------------------- /docs/bower_components/iron-iconset-svg/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /docs/bower_components/iron-iconset-svg/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /docs/bower_components/iron-iconset-svg/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: FVt0rYGSWqJW3i57y9CQHuDaa97UDwZuGc5ts+TDpbuR3DVP8LxB9MT1ApA2bqhg101hPzhWJWIK3Siotkb7eAlsiWgVhdNr8t5eZBPOOnjLiU6PNCF6ZGCZRJHQ6q4xQ2DycGug8OfwMw63yewLEYmVBppeAlStnPUfDWURlJ8= 10 | - secure: X7cWxU13zLWoahM/BNBPSvgnI396zMmLzVHDHX6zAQL7gFL+PS4Dz6WjooO3Jx79ks2E8REUzWB8IFY3FohVAncXA///PAaqNLX0k2et4aOTOs5tcsCWL4nj8tKA6vjZIZ61rCjWTyNRR+o2QPsY9QQgi3Y+6bzLguWoPuycRbE= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /docs/bower_components/iron-iconset-svg/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-iconset-svg", 3 | "description": "Manages a set of svg icons", 4 | "version": "1.1.0", 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 | "promise-polyfill": "polymerlabs/promise-polyfill#^1.0.0", 28 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 29 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0", 30 | "web-component-tester": "^4.0.0" 31 | }, 32 | "main": "iron-iconset-svg.html", 33 | "ignore": [] 34 | } 35 | -------------------------------------------------------------------------------- /docs/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 | -------------------------------------------------------------------------------- /docs/bower_components/iron-iconset-svg/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | Tests 13 | 14 | 15 | 16 | 17 | 18 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /docs/bower_components/iron-menu-behavior/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-menu-behavior", 3 | "version": "1.2.0", 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": [ 13 | "iron-menu-behavior.html", 14 | "iron-menubar-behavior.html" 15 | ], 16 | "private": true, 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com/PolymerElements/iron-menu-behavior" 20 | }, 21 | "license": "http://polymer.github.io/LICENSE.txt", 22 | "homepage": "https://github.com/PolymerElements/iron-menu-behavior", 23 | "ignore": [], 24 | "dependencies": { 25 | "iron-selector": "PolymerElements/iron-selector#^1.0.0", 26 | "polymer": "Polymer/polymer#^1.2.4", 27 | "iron-a11y-keys-behavior": "polymerelements/iron-a11y-keys-behavior#^1.0.0" 28 | }, 29 | "devDependencies": { 30 | "paper-styles": "polymerelements/paper-styles#^1.0.2", 31 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 32 | "iron-test-helpers": "polymerelements/iron-test-helpers#^1.0.0", 33 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 34 | "web-component-tester": "^4.0.0", 35 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 36 | }, 37 | "_release": "1.2.0", 38 | "_resolution": { 39 | "type": "version", 40 | "tag": "v1.2.0", 41 | "commit": "038b48d9bdda3740d9701b4aea903b4ba0e45e2b" 42 | }, 43 | "_source": "https://github.com/PolymerElements/iron-menu-behavior.git", 44 | "_target": "^1.1.0", 45 | "_originalSource": "PolymerElements/iron-menu-behavior" 46 | } -------------------------------------------------------------------------------- /docs/bower_components/iron-menu-behavior/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /docs/bower_components/iron-menu-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /docs/bower_components/iron-menu-behavior/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: CbYi/0VAtpLB+NDHdD/I9q2ldILrmyc3wxKdO5vEtMvRKYgsddQ/hXGovV3c6Hy9sAXD5sKtNi60BBG5E2XuydshjYAZiytfeNjFIvDu5627Xljjt90e/r1hg3tNHRRQihH73nPECfp/X+g+yBNCX3f0+2ExAh0DMs1DXt7Dl7Q= 10 | - secure: kLFlOTh9IjctY7DIJ3KEw5OPrqHNTzoArdabfAtisBMWahuJptKFmYCp/t+zPSL27IVqJakaqPrwGrBUi+4h3wVWredNhfl2lCpMfQfBMcHC5kBVkf2xjJyDa5Y3bP7jPq6YnWYAqEl6pBWYiHU6yWBc6BEdJ6FsTWFbLFTnY7w= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /docs/bower_components/iron-menu-behavior/README.md: -------------------------------------------------------------------------------- 1 | 2 | 14 | 15 | [![Build status](https://travis-ci.org/PolymerElements/iron-menu-behavior.svg?branch=master)](https://travis-ci.org/PolymerElements/iron-menu-behavior) 16 | 17 | _[Demo and API docs](https://elements.polymer-project.org/elements/iron-menu-behavior)_ 18 | 19 | 20 | ##Polymer.IronMenuBehavior 21 | 22 | `Polymer.IronMenuBehavior` implements accessible menu behavior. 23 | 24 | 25 | 26 | ##Polymer.IronMenubarBehavior 27 | 28 | `Polymer.IronMenubarBehavior` implements accessible menubar behavior. 29 | 30 | 31 | -------------------------------------------------------------------------------- /docs/bower_components/iron-menu-behavior/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-menu-behavior", 3 | "version": "1.2.0", 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": [ 13 | "iron-menu-behavior.html", 14 | "iron-menubar-behavior.html" 15 | ], 16 | "private": true, 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com/PolymerElements/iron-menu-behavior" 20 | }, 21 | "license": "http://polymer.github.io/LICENSE.txt", 22 | "homepage": "https://github.com/PolymerElements/iron-menu-behavior", 23 | "ignore": [], 24 | "dependencies": { 25 | "iron-selector": "PolymerElements/iron-selector#^1.0.0", 26 | "polymer": "Polymer/polymer#^1.2.4", 27 | "iron-a11y-keys-behavior": "polymerelements/iron-a11y-keys-behavior#^1.0.0" 28 | }, 29 | "devDependencies": { 30 | "paper-styles": "polymerelements/paper-styles#^1.0.2", 31 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 32 | "iron-test-helpers": "polymerelements/iron-test-helpers#^1.0.0", 33 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 34 | "web-component-tester": "^4.0.0", 35 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /docs/bower_components/iron-menu-behavior/demo/simple-menu.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 29 | 30 | 31 | 32 | 49 | -------------------------------------------------------------------------------- /docs/bower_components/iron-menu-behavior/demo/simple-menubar.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 33 | 34 | 35 | 36 | 53 | -------------------------------------------------------------------------------- /docs/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 | -------------------------------------------------------------------------------- /docs/bower_components/iron-menu-behavior/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | iron-menu-behavior tests 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /docs/bower_components/iron-menu-behavior/test/test-menu.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 23 | 24 | 25 | 26 | 47 | -------------------------------------------------------------------------------- /docs/bower_components/iron-menu-behavior/test/test-menubar.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 23 | 24 | 25 | 26 | 47 | -------------------------------------------------------------------------------- /docs/bower_components/iron-menu-behavior/test/test-nested-menu.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 34 | 35 | 36 | 45 | -------------------------------------------------------------------------------- /docs/bower_components/iron-meta/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-meta", 3 | "version": "1.1.2", 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": "^4.0.0", 26 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 27 | }, 28 | "main": "iron-meta.html", 29 | "ignore": [], 30 | "homepage": "https://github.com/polymerelements/iron-meta", 31 | "_release": "1.1.2", 32 | "_resolution": { 33 | "type": "version", 34 | "tag": "v1.1.2", 35 | "commit": "bae96531b63ea6d4ce982f5592248aea849c0f5a" 36 | }, 37 | "_source": "https://github.com/polymerelements/iron-meta.git", 38 | "_target": "^1.0.0", 39 | "_originalSource": "polymerelements/iron-meta" 40 | } -------------------------------------------------------------------------------- /docs/bower_components/iron-meta/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /docs/bower_components/iron-meta/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /docs/bower_components/iron-meta/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: mjikUCoN+UpTbFHwbGXUoKp4vtZ2qNN1JYW79WcOik7fCFmvdFzfYQPDa6y9aJvU3kgkDndGdR/ynLG4kejZjmqTS5fYtdHEwpPVPapbVYnquJvCJKbMN4S2QpGCoq51pjKQ8U3Ys6G5HkmdcDfw3SKk1uMgVzKV7fEI+6WnZ/M= 10 | - secure: LHDnBtwK7yO2X4GNmIaAl7t85WWc1U189OiPqemD27+jTcKml0by1n9Mu/yrg94jYgeXab9mHgU3uMtIdQstNNwTDu8CgmmIP4H2EWopHrTi3KM7Z7aeofPgMJsVFXwg+WhNlcCfhEsygHZWTxjJXM4fcGOrFPDa4+BTgRa2hEE= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /docs/bower_components/iron-meta/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-meta", 3 | "version": "1.1.2", 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": "^4.0.0", 26 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 27 | }, 28 | "main": "iron-meta.html", 29 | "ignore": [] 30 | } 31 | -------------------------------------------------------------------------------- /docs/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 | -------------------------------------------------------------------------------- /docs/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 | -------------------------------------------------------------------------------- /docs/bower_components/iron-meta/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | Tests 13 | 14 | 15 | 16 | 17 | 18 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /docs/bower_components/iron-resizable-behavior/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-resizable-behavior", 3 | "version": "1.0.5", 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.1.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": "^4.0.0", 28 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 29 | }, 30 | "ignore": [], 31 | "homepage": "https://github.com/PolymerElements/iron-resizable-behavior", 32 | "_release": "1.0.5", 33 | "_resolution": { 34 | "type": "version", 35 | "tag": "v1.0.5", 36 | "commit": "354f287922e497b79797348b31596eebaccb9761" 37 | }, 38 | "_source": "https://github.com/PolymerElements/iron-resizable-behavior.git", 39 | "_target": "^1.0.0", 40 | "_originalSource": "PolymerElements/iron-resizable-behavior" 41 | } -------------------------------------------------------------------------------- /docs/bower_components/iron-resizable-behavior/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /docs/bower_components/iron-resizable-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /docs/bower_components/iron-resizable-behavior/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: Bsp8pa19FCij3Eee0P5eOE8ZrbylrYL99R9EIxH6rcDH+rxMhK0BIfSiXTPSFRk2iqJp++RIZN8kUu5GddetiXreRZDtnhXBA2QoYteIAS8Hzy9u2EggqI0UdGqbCiFHDVD/rEQyhSPiIfWHGCg/Moeo9J2k/eC2w6I8I9C15Zw= 10 | - secure: j9xIW/banUkkNaLrWVGcTsasAp64zEmZJQO+eY8ExINx3uLbDh5h6Foc7xWhJ4Yu7aey3+nH5BWKYimtPTYoXUD2nIWU31yBNbqU/+G6vIppDbgPHMRcVnRiO7YZ0yW1JunvKs+1lOPhOw4ibztJjGkQ2ZK9q6ZSJvQKRbo6Au0= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /docs/bower_components/iron-resizable-behavior/README.md: -------------------------------------------------------------------------------- 1 | 2 | 14 | 15 | [![Build status](https://travis-ci.org/PolymerElements/iron-resizable-behavior.svg?branch=master)](https://travis-ci.org/PolymerElements/iron-resizable-behavior) 16 | 17 | _[Demo and API docs](https://elements.polymer-project.org/elements/iron-resizable-behavior)_ 18 | 19 | 20 | ##Polymer.IronResizableBehavior 21 | 22 | `IronResizableBehavior` is a behavior that can be used in Polymer elements to 23 | coordinate the flow of resize events between "resizers" (elements that control the 24 | size or hidden state of their children) and "resizables" (elements that need to be 25 | notified when they are resized or un-hidden by their parents in order to take 26 | action on their new measurements). 27 | 28 | Elements that perform measurement should add the `IronResizableBehavior` behavior to 29 | their element definition and listen for the `iron-resize` event on themselves. 30 | This event will be fired when they become showing after having been hidden, 31 | when they are resized explicitly by another resizable, or when the window has been 32 | resized. 33 | 34 | Note, the `iron-resize` event is non-bubbling. 35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/bower_components/iron-resizable-behavior/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-resizable-behavior", 3 | "version": "1.0.5", 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.1.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": "^4.0.0", 28 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 29 | }, 30 | "ignore": [] 31 | } 32 | -------------------------------------------------------------------------------- /docs/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 | -------------------------------------------------------------------------------- /docs/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 | -------------------------------------------------------------------------------- /docs/bower_components/iron-resizable-behavior/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | Tests 13 | 14 | 15 | 16 | 17 | 18 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /docs/bower_components/iron-selector/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-selector", 3 | "version": "1.5.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": "iron-selector.html", 8 | "authors": [ 9 | "The Polymer Authors" 10 | ], 11 | "keywords": [ 12 | "web-components", 13 | "polymer", 14 | "selector" 15 | ], 16 | "repository": { 17 | "type": "git", 18 | "url": "git://github.com/PolymerElements/iron-selector.git" 19 | }, 20 | "homepage": "https://github.com/PolymerElements/iron-selector", 21 | "ignore": [], 22 | "dependencies": { 23 | "polymer": "Polymer/polymer#^1.2.0" 24 | }, 25 | "devDependencies": { 26 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 27 | "iron-test-helpers": "polymerelements/iron-test-helpers#^1.0.0", 28 | "paper-styles": "PolymerElements/paper-styles#^1.0.4", 29 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 30 | "web-component-tester": "^4.0.0", 31 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 32 | }, 33 | "_release": "1.5.2", 34 | "_resolution": { 35 | "type": "version", 36 | "tag": "v1.5.2", 37 | "commit": "18e8e12dcd9a4560de480562f65935feed334b86" 38 | }, 39 | "_source": "https://github.com/PolymerElements/iron-selector.git", 40 | "_target": "^1.0.0", 41 | "_originalSource": "PolymerElements/iron-selector" 42 | } -------------------------------------------------------------------------------- /docs/bower_components/iron-selector/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /docs/bower_components/iron-selector/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /docs/bower_components/iron-selector/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: ltCkwJM0nkTS9WjikyjqBsB5J2hQon4UnVVrINk4y+Vq4v9PQJH3+83nya0jnxilKaeAJs4d2/OS02F9GkqYpsSmDz7OgXPfk0hrHA8UksvvpSALfnukleIAN2YTOcxXJKeNHcfpqCKPk1dGeNQOEM61H+QgTBIyFB3sMugygqs= 10 | - secure: TJuu1WdpFLTaBN/prBafm8Pld/BQCySNuuG1nATbF3fqiOpgehXu8Z5URAz5syUhqZAyEmuRMxvXpEVD/t1jrtaXVwkdCFkkQ4ckkP4gTIeSGA/Puw8sveB2q7QAqXyTmeFkocNlh8fxV+B07o0SPWdhcvdZnDVU9VrpSqL+92M= 11 | node_js: stable 12 | addons: 13 | firefox: latest 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi" 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /docs/bower_components/iron-selector/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-selector", 3 | "version": "1.5.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": "iron-selector.html", 8 | "authors": [ 9 | "The Polymer Authors" 10 | ], 11 | "keywords": [ 12 | "web-components", 13 | "polymer", 14 | "selector" 15 | ], 16 | "repository": { 17 | "type": "git", 18 | "url": "git://github.com/PolymerElements/iron-selector.git" 19 | }, 20 | "homepage": "https://github.com/PolymerElements/iron-selector", 21 | "ignore": [], 22 | "dependencies": { 23 | "polymer": "Polymer/polymer#^1.2.0" 24 | }, 25 | "devDependencies": { 26 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 27 | "iron-test-helpers": "polymerelements/iron-test-helpers#^1.0.0", 28 | "paper-styles": "PolymerElements/paper-styles#^1.0.4", 29 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 30 | "web-component-tester": "^4.0.0", 31 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /docs/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 | -------------------------------------------------------------------------------- /docs/bower_components/iron-selector/test/attr-for-selected-elements.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 17 | 30 | 31 | -------------------------------------------------------------------------------- /docs/bower_components/iron-selector/test/content-element.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 22 | 23 | 24 | 25 | 45 | -------------------------------------------------------------------------------- /docs/bower_components/iron-selector/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | Tests 13 | 14 | 15 | 16 | 17 | 18 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /docs/bower_components/iron-validatable-behavior/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-validatable-behavior", 3 | "version": "1.1.1", 4 | "description": "Provides a behavior for an element that validates user input", 5 | "authors": "The Polymer Authors", 6 | "keywords": [ 7 | "web-components", 8 | "polymer", 9 | "iron", 10 | "behavior" 11 | ], 12 | "main": "iron-validatable-behavior.html", 13 | "private": true, 14 | "repository": { 15 | "type": "git", 16 | "url": "git://github.com/PolymerElements/iron-validatable-behavior.git" 17 | }, 18 | "license": "http://polymer.github.io/LICENSE.txt", 19 | "homepage": "https://github.com/PolymerElements/iron-validatable-behavior", 20 | "ignore": [], 21 | "dependencies": { 22 | "iron-meta": "PolymerElements/iron-meta#^1.0.0", 23 | "polymer": "Polymer/polymer#^1.0.0" 24 | }, 25 | "devDependencies": { 26 | "paper-styles": "PolymerElements/paper-styles#^1.0.4", 27 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 28 | "iron-validator-behavior": "PolymerElements/iron-validator-behavior#^1.0.0", 29 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 30 | "web-component-tester": "^4.0.0", 31 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 32 | }, 33 | "_release": "1.1.1", 34 | "_resolution": { 35 | "type": "version", 36 | "tag": "v1.1.1", 37 | "commit": "2ecd3f411e298733b29f1660f75cb9b03ea31d77" 38 | }, 39 | "_source": "https://github.com/PolymerElements/iron-validatable-behavior.git", 40 | "_target": "^1.0.0", 41 | "_originalSource": "PolymerElements/iron-validatable-behavior" 42 | } -------------------------------------------------------------------------------- /docs/bower_components/iron-validatable-behavior/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /docs/bower_components/iron-validatable-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /docs/bower_components/iron-validatable-behavior/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: AsXK1s4viLG4eumYMxE0bJasVbWrpQ7JaUboMoK4Nzhmunx01udikRRAJifl3nkcc4m2GpzCb4Kmtyh5hxyLA05uE416VzmfDq3dGJKsNAQXbSescSVik63llq4HXAdOvek2eSo5wOVGNHslscIed5K2bJajXfPMIODJyBxo8aE= 10 | - secure: V/H/0+/R8owujbwe3IDbND8v5zs4pWTe0hRCLefjgR9ci2lmNNP54Zb97nOZnLQqynafDSyrngL3+RP5F0fk1dC++cpuxQNKoYPwDFPZ41LAxp5dgtyxkb+J4eWtq0UilWF5thVt4oB1OWwPGtxMmSl+imXXKtq4a4Ov++t2Apo= 11 | node_js: stable 12 | addons: 13 | firefox: latest 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi" 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /docs/bower_components/iron-validatable-behavior/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iron-validatable-behavior", 3 | "version": "1.1.1", 4 | "description": "Provides a behavior for an element that validates user input", 5 | "authors": "The Polymer Authors", 6 | "keywords": [ 7 | "web-components", 8 | "polymer", 9 | "iron", 10 | "behavior" 11 | ], 12 | "main": "iron-validatable-behavior.html", 13 | "private": true, 14 | "repository": { 15 | "type": "git", 16 | "url": "git://github.com/PolymerElements/iron-validatable-behavior.git" 17 | }, 18 | "license": "http://polymer.github.io/LICENSE.txt", 19 | "homepage": "https://github.com/PolymerElements/iron-validatable-behavior", 20 | "ignore": [], 21 | "dependencies": { 22 | "iron-meta": "PolymerElements/iron-meta#^1.0.0", 23 | "polymer": "Polymer/polymer#^1.0.0" 24 | }, 25 | "devDependencies": { 26 | "paper-styles": "PolymerElements/paper-styles#^1.0.4", 27 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 28 | "iron-validator-behavior": "PolymerElements/iron-validator-behavior#^1.0.0", 29 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 30 | "web-component-tester": "^4.0.0", 31 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /docs/bower_components/iron-validatable-behavior/demo/cats-only.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 47 | -------------------------------------------------------------------------------- /docs/bower_components/iron-validatable-behavior/demo/validatable-input.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 47 | -------------------------------------------------------------------------------- /docs/bower_components/iron-validatable-behavior/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | iron-validatable-behavior 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /docs/bower_components/iron-validatable-behavior/test/cats-only.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 31 | -------------------------------------------------------------------------------- /docs/bower_components/iron-validatable-behavior/test/dogs-only.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 31 | -------------------------------------------------------------------------------- /docs/bower_components/iron-validatable-behavior/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | iron-validatable-behavior tests 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /docs/bower_components/iron-validatable-behavior/test/test-validatable.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 30 | -------------------------------------------------------------------------------- /docs/bower_components/paper-badge/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-badge", 3 | "version": "1.1.4", 4 | "description": "Material design status message for elements", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "keywords": [ 9 | "web-components", 10 | "polymer", 11 | "badge", 12 | "notification" 13 | ], 14 | "main": "paper-badge.html", 15 | "repository": { 16 | "type": "git", 17 | "url": "git://github.com/PolymerElements/paper-badge.git" 18 | }, 19 | "license": "http://polymer.github.io/LICENSE.txt", 20 | "homepage": "https://github.com/PolymerElements/paper-badge", 21 | "ignore": [], 22 | "dependencies": { 23 | "polymer": "Polymer/polymer#^1.1.0", 24 | "iron-resizable-behavior": "PolymerElements/iron-resizable-behavior#^1.0.0", 25 | "paper-styles": "PolymerElements/paper-styles#^1.0.0", 26 | "iron-icon": "PolymerElements/iron-icon#^1.0.0", 27 | "iron-flex-layout": "PolymerElements/iron-flex-layout#^1.0.0" 28 | }, 29 | "devDependencies": { 30 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 31 | "iron-demo-helpers": "PolymerElements/iron-demo-helpers#^1.0.0", 32 | "paper-icon-button": "PolymerElements/paper-icon-button#^1.0.0", 33 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 34 | "web-component-tester": "^4.0.0", 35 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 36 | }, 37 | "_release": "1.1.4", 38 | "_resolution": { 39 | "type": "version", 40 | "tag": "v1.1.4", 41 | "commit": "f34ba1f4594c9d0bdffa8e94311bee47cad9c684" 42 | }, 43 | "_source": "https://github.com/PolymerElements/paper-badge.git", 44 | "_target": "^1.1.4", 45 | "_originalSource": "paper-badge", 46 | "_direct": true 47 | } -------------------------------------------------------------------------------- /docs/bower_components/paper-badge/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /docs/bower_components/paper-badge/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /docs/bower_components/paper-badge/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-badge", 3 | "version": "1.1.4", 4 | "description": "Material design status message for elements", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "keywords": [ 9 | "web-components", 10 | "polymer", 11 | "badge", 12 | "notification" 13 | ], 14 | "main": "paper-badge.html", 15 | "repository": { 16 | "type": "git", 17 | "url": "git://github.com/PolymerElements/paper-badge.git" 18 | }, 19 | "license": "http://polymer.github.io/LICENSE.txt", 20 | "homepage": "https://github.com/PolymerElements/paper-badge", 21 | "ignore": [], 22 | "dependencies": { 23 | "polymer": "Polymer/polymer#^1.1.0", 24 | "iron-resizable-behavior": "PolymerElements/iron-resizable-behavior#^1.0.0", 25 | "paper-styles": "PolymerElements/paper-styles#^1.0.0", 26 | "iron-icon": "PolymerElements/iron-icon#^1.0.0", 27 | "iron-flex-layout": "PolymerElements/iron-flex-layout#^1.0.0" 28 | }, 29 | "devDependencies": { 30 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 31 | "iron-demo-helpers": "PolymerElements/iron-demo-helpers#^1.0.0", 32 | "paper-icon-button": "PolymerElements/paper-icon-button#^1.0.0", 33 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 34 | "web-component-tester": "^4.0.0", 35 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /docs/bower_components/paper-badge/demo/test-button.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 38 | 39 | 44 | 45 | -------------------------------------------------------------------------------- /docs/bower_components/paper-badge/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | paper-badge 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /docs/bower_components/paper-badge/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | paper-badge tests 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/bower_components/paper-badge/test/test-button.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 30 | 31 | 36 | 37 | -------------------------------------------------------------------------------- /docs/bower_components/paper-behaviors/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /docs/bower_components/paper-behaviors/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /docs/bower_components/paper-behaviors/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: TYkyKHfqK31bPGX+x388nfvBWtoGhD7lwYYLdunZi2pwvR2N3ngzblklwK/ADgYVDC0y+lZaJsrODvQW2cUxVdQP8p+DifXoOig5b8S2H7HFFFf83gaXv0SJ50rIaKLQmXfBdI0ICFzeQOeJ9TlKvtF3/yn/LDpYftuzgbXIyp4= 10 | - secure: eUlJabqBW3P+MRieHvRcr446jhpV2YYRfZasOh3zh2vkAVsi5R5mPJXVBwk6xP4tdNPbRo0M3boKnMHjoK8AgFolxQwXpVaoOt/oiFUsBFIUNcwKnSdfnadQa6ON5VoDmPd9UhDwES/gq7i906XkV/1jwRKKhPkx1DCyCBfuTvM= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /docs/bower_components/paper-behaviors/README.md: -------------------------------------------------------------------------------- 1 | 2 | 14 | 15 | [![Build status](https://travis-ci.org/PolymerElements/paper-behaviors.svg?branch=master)](https://travis-ci.org/PolymerElements/paper-behaviors) 16 | 17 | _[Demo and API docs](https://elements.polymer-project.org/elements/paper-behaviors)_ 18 | 19 | 20 | 21 | 22 | ##Polymer.PaperCheckedElementBehavior 23 | 24 | Use `Polymer.PaperCheckedElementBehavior` to implement a custom element 25 | that has a `checked` property similar to `Polymer.IronCheckedElementBehavior` 26 | and is compatible with having a ripple effect. 27 | 28 | 29 | 30 | ##Polymer.PaperInkyFocusBehavior 31 | 32 | `Polymer.PaperInkyFocusBehavior` implements a ripple when the element has keyboard focus. 33 | 34 | 35 | 36 | ##Polymer.PaperRippleBehavior 37 | 38 | `Polymer.PaperRippleBehavior` dynamically implements a ripple 39 | when the element has focus via pointer or keyboard. 40 | 41 | NOTE: This behavior is intended to be used in conjunction with and after 42 | `Polymer.IronButtonState` and `Polymer.IronControlState`. 43 | 44 | 45 | -------------------------------------------------------------------------------- /docs/bower_components/paper-behaviors/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-behaviors", 3 | "version": "1.0.12", 4 | "description": "Common behaviors across the paper elements", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "main": [ 9 | "paper-button-behavior.html", 10 | "paper-checked-element-behavior.html", 11 | "paper-inky-focus-behavior.html" 12 | ], 13 | "keywords": [ 14 | "web-components", 15 | "web-component", 16 | "polymer", 17 | "paper", 18 | "behavior" 19 | ], 20 | "private": true, 21 | "repository": { 22 | "type": "git", 23 | "url": "git://github.com/PolymerElements/paper-behaviors" 24 | }, 25 | "license": "http://polymer.github.io/LICENSE.txt", 26 | "homepage": "https://github.com/PolymerElements/paper-behaviors", 27 | "dependencies": { 28 | "iron-behaviors": "PolymerElements/iron-behaviors#^1.0.0", 29 | "iron-checked-element-behavior": "PolymerElements/iron-checked-element-behavior#^1.0.0", 30 | "paper-ripple": "PolymerElements/paper-ripple#^1.0.0", 31 | "polymer": "Polymer/polymer#^1.2.1" 32 | }, 33 | "devDependencies": { 34 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 35 | "iron-test-helpers": "polymerelements/iron-test-helpers#^1.0.0", 36 | "paper-material": "PolymerElements/paper-material#^1.0.0", 37 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 38 | "web-component-tester": "^4.0.0", 39 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 40 | }, 41 | "ignore": [] 42 | } 43 | -------------------------------------------------------------------------------- /docs/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 | -------------------------------------------------------------------------------- /docs/bower_components/paper-behaviors/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /docs/bower_components/paper-behaviors/test/test-button.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 19 | 20 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /docs/bower_components/paper-behaviors/test/test-radio-button.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 31 | 32 | 33 | 42 | -------------------------------------------------------------------------------- /docs/bower_components/paper-button/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /docs/bower_components/paper-button/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /docs/bower_components/paper-button/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: YhRb8f1f4y3Rjs5wnp4sCzIcEcL07HOBoJcEp6U/KVgIIk/sBxkxMVmZsoUeABrNbKcdE6Gn6OS2K1lFq4VThKppJ0yjvESa1p0FjmQ0Nf1xCYxc46n936xj87khZy3rrTGHxwcOY5vAa5mvNzXI4BYxjmSjmqRsQwsJBsJHWVw= 10 | - secure: eQjSTRxQKF5vyRa6yK2o+j5xWK480hHCKDh7RJQISEVhyzAaCzPZNmWf2pmaDj+ZoZZrahBcoRwOZAiVdHDaKQ+VLHbEECzV3OVV32/9DHi608BPCBdxVR2MDTtZVt3fGVhPQwCnFhwRTWtVVGx8y8HnTDMv/r4xW1OMSThPsbM= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /docs/bower_components/paper-button/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-button", 3 | "version": "1.0.14", 4 | "description": "Material design button", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "keywords": [ 9 | "web-components", 10 | "web-component", 11 | "polymer", 12 | "paper", 13 | "button" 14 | ], 15 | "main": "paper-button.html", 16 | "private": true, 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com/PolymerElements/paper-button.git" 20 | }, 21 | "license": "http://polymer.github.io/LICENSE.txt", 22 | "homepage": "https://github.com/PolymerElements/paper-button", 23 | "dependencies": { 24 | "polymer": "Polymer/polymer#^1.1.0", 25 | "iron-flex-layout": "PolymerElements/iron-flex-layout#^1.0.0", 26 | "paper-behaviors": "PolymerElements/paper-behaviors#^1.0.0", 27 | "paper-material": "PolymerElements/paper-material#^1.0.0" 28 | }, 29 | "devDependencies": { 30 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 31 | "iron-demo-helpers": "PolymerElements/iron-demo-helpers#^1.0.0", 32 | "iron-icon": "PolymerElements/iron-icon#^1.0.0", 33 | "iron-icons": "PolymerElements/iron-icons#^1.0.0", 34 | "iron-test-helpers": "PolymerElements/iron-test-helpers#^1.0.0", 35 | "paper-styles": "PolymerElements/paper-styles#^1.0.0", 36 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 37 | "web-component-tester": "^4.0.0", 38 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 39 | }, 40 | "ignore": [] 41 | } 42 | -------------------------------------------------------------------------------- /docs/bower_components/paper-button/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/bower_components/paper-button/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | paper-button tests 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/bower_components/paper-icon-button/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /docs/bower_components/paper-icon-button/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /docs/bower_components/paper-icon-button/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: >- 10 | HdHTMNdAamEtP+Nl5/mL2X7IKba4p2+ljpDSnvkA6gyoLzrWRZAyUjJxGjVRutQejTa8ZLOGXnBYKugSIMrGv8cblvngbhEmIHd2HBnPjd140KNwtsCtzPRDMdJMrvekVOXgpCkecmGq9G/j0WOoOnYY9oJrHB5dFy0y7LfPy6w= 11 | - secure: >- 12 | XjZRR/HW23UneacknoaYle/dg2Diupr9p9UOWLR7w6ejvwIP99nUF0Bh4trZkUiXBBt29HOBoETwBTMizDHNg8vKe544EgR26Fq4Lwk5EuEHy3xeyroiHlwc56ZC9Obye1kdM3QjU6rzJ7F9NuRL2E0ttgZjt/OnM+vKx3kqGOY= 13 | node_js: '6' 14 | addons: 15 | firefox: latest 16 | apt: 17 | sources: 18 | - google-chrome 19 | packages: 20 | - google-chrome-stable 21 | script: 22 | - xvfb-run wct 23 | - 'if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s ''default''; fi' 24 | dist: trusty 25 | -------------------------------------------------------------------------------- /docs/bower_components/paper-icon-button/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-icon-button", 3 | "private": true, 4 | "version": "1.1.4", 5 | "license": "http://polymer.github.io/LICENSE.txt", 6 | "description": "A material design icon button", 7 | "main": [ 8 | "paper-icon-button.html", 9 | "paper-icon-button-light.html" 10 | ], 11 | "author": [ 12 | "The Polymer Authors" 13 | ], 14 | "keywords": [ 15 | "web-components", 16 | "polymer", 17 | "button", 18 | "icon", 19 | "control" 20 | ], 21 | "repository": { 22 | "type": "git", 23 | "url": "git://github.com/PolymerElements/paper-icon-button.git" 24 | }, 25 | "dependencies": { 26 | "polymer": "Polymer/polymer#^1.1.0", 27 | "iron-icon": "PolymerElements/iron-icon#^1.0.0", 28 | "paper-behaviors": "PolymerElements/paper-behaviors#^1.0.0", 29 | "paper-styles": "PolymerElements/paper-styles#^1.0.0" 30 | }, 31 | "devDependencies": { 32 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 33 | "iron-demo-helpers": "PolymerElements/iron-demo-helpers#^1.0.0", 34 | "iron-icons": "PolymerElements/iron-icons#^1.0.0", 35 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 36 | "web-component-tester": "^4.0.0", 37 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 38 | }, 39 | "ignore": [] 40 | } 41 | -------------------------------------------------------------------------------- /docs/bower_components/paper-icon-button/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/bower_components/paper-icon-button/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | paper-icon-button tests 13 | 14 | 15 | 16 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/bower_components/paper-item/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /docs/bower_components/paper-item/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /docs/bower_components/paper-item/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: NCk3KK+wbaXMzp8XAY6FeL+TSdI0AlPI3/tl0OpsUIaU2EiCjQuzf/UpyzCW5XZMEVFF4q/eDjrPkqJodHfpngj36mpkfmfqj9DrgDmYsV9BDvsTd8KmLsA6H8D6p7Qer+r1JMMB8PvX44vdhQ6GhZD1HFNYK1Ekpt0TkYwWKNw= 10 | - secure: TGgUEQe6FJS+GuYk94d//8YQmDLUu0ekMvPSIs8TQ2QkdBK4SL+2bSXZt44BbDEOwc9P4NCPSUx/RMiCAqsc5OGRJImzb/zqPNIDTeKG6q72HPBBBD3Sk0CrEpTQbOK/Flaa/B7RYR0U1kuljSmRS7lPG19nnY8gOHnIAgwIyk0= 11 | node_js: stable 12 | addons: 13 | firefox: latest 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi" 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /docs/bower_components/paper-item/all-imports.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/bower_components/paper-item/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-item", 3 | "version": "1.2.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": "http://polymer.github.io/LICENSE.txt", 24 | "homepage": "https://github.com/PolymerElements/paper-item", 25 | "ignore": [], 26 | "dependencies": { 27 | "polymer": "Polymer/polymer#^1.1.0", 28 | "paper-styles": "PolymerElements/paper-styles#^1.0.0", 29 | "iron-flex-layout": "PolymerElements/iron-flex-layout#^1.0.0", 30 | "iron-behaviors": "polymerelements/iron-behaviors#^1.0.0" 31 | }, 32 | "devDependencies": { 33 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 34 | "iron-demo-helpers": "PolymerElements/iron-demo-helpers#^1.0.0", 35 | "iron-icon": "PolymerElements/iron-icon#^1.0.0", 36 | "iron-icons": "PolymerElements/iron-icons#^1.0.0", 37 | "paper-icon-button": "PolymerElements/paper-icon-button#^1.0.0", 38 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 39 | "web-component-tester": "^4.0.0", 40 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0", 41 | "iron-test-helpers": "PolymerElements/iron-test-helpers#^1.0.0" 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /docs/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 | -------------------------------------------------------------------------------- /docs/bower_components/paper-item/paper-item-behavior.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 20 | 21 | 37 | -------------------------------------------------------------------------------- /docs/bower_components/paper-item/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | paper-item tests 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /docs/bower_components/paper-material/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-material", 3 | "version": "1.0.6", 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": "paper-material.html", 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com/PolymerElements/paper-material" 20 | }, 21 | "license": "http://polymer.github.io/LICENSE.txt", 22 | "homepage": "https://github.com/PolymerElements/paper-material", 23 | "ignore": [], 24 | "dependencies": { 25 | "polymer": "Polymer/polymer#^1.1.0", 26 | "paper-styles": "polymerelements/paper-styles#^1.0.0" 27 | }, 28 | "devDependencies": { 29 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0", 30 | "iron-demo-helpers": "PolymerElements/iron-demo-helpers#^1.0.0", 31 | "web-component-tester": "^4.0.0", 32 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 33 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0" 34 | }, 35 | "_release": "1.0.6", 36 | "_resolution": { 37 | "type": "version", 38 | "tag": "v1.0.6", 39 | "commit": "6aef0896fcbc25f9f5bd1dd55f7679e6ab7f92ad" 40 | }, 41 | "_source": "https://github.com/polymerelements/paper-material.git", 42 | "_target": "^1.0.6", 43 | "_originalSource": "polymerelements/paper-material", 44 | "_direct": true 45 | } -------------------------------------------------------------------------------- /docs/bower_components/paper-material/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /docs/bower_components/paper-material/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: false 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: PEaqY+YpV0ZhnQbJlNQbmfIFLqy7UvvCtii0sPoGKT5/P7ulMqMOPQV9l/zLAtYi14HEz63FKLqDrpnGaVe7Cz7jtt2WRWrWqTBdarqwSHs73Z2XqztD1+2wW6vgz/lfK00B8UplAk28B7d5dbWzwUF6Kg02zOfQMsawMpulFjo= 10 | - secure: f/3XYrYjM8aXLe9kqM/MjHQ6IEsDRuoxDqM+l2JiR3v2Nw7lP6ZyXSNvKm8bN+VNU7ubSzAmRbUGnRU7e61BhnGzuLXjOqxYeJLWZaqoSm9TDz3re3rd7wB2ddAhRokeSSPO2KeAgr6C02P9M3Au1DiO1G66fuWVH62WtzW4+qY= 11 | - CXX=g++-4.8 12 | node_js: stable 13 | addons: 14 | firefox: latest 15 | apt: 16 | sources: 17 | - google-chrome 18 | - ubuntu-toolchain-r-test 19 | packages: 20 | - google-chrome-stable 21 | - g++-4.8 22 | sauce_connect: true 23 | script: 24 | - xvfb-run wct 25 | - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi" 26 | -------------------------------------------------------------------------------- /docs/bower_components/paper-material/README.md: -------------------------------------------------------------------------------- 1 | 2 | 14 | 15 | [![Build Status](https://travis-ci.org/PolymerElements/paper-material.svg?branch=master)](https://travis-ci.org/PolymerElements/paper-material) 16 | 17 | _[Demo and API Docs](https://elements.polymer-project.org/elements/paper-material)_ 18 | 19 | 20 | ##<paper-material> 21 | 22 | Material design: [Cards](https://www.google.com/design/spec/components/cards.html) 23 | 24 | `paper-material` is a container that renders two shadows on top of each other to 25 | create the effect of a lifted piece of paper. 26 | 27 | Example: 28 | 29 | ```html 30 | 31 | ... content ... 32 | 33 | ``` 34 | 35 | 36 | -------------------------------------------------------------------------------- /docs/bower_components/paper-material/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-material", 3 | "version": "1.0.6", 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": "paper-material.html", 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com/PolymerElements/paper-material" 20 | }, 21 | "license": "http://polymer.github.io/LICENSE.txt", 22 | "homepage": "https://github.com/PolymerElements/paper-material", 23 | "ignore": [], 24 | "dependencies": { 25 | "polymer": "Polymer/polymer#^1.1.0", 26 | "paper-styles": "polymerelements/paper-styles#^1.0.0" 27 | }, 28 | "devDependencies": { 29 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0", 30 | "iron-demo-helpers": "PolymerElements/iron-demo-helpers#^1.0.0", 31 | "web-component-tester": "^4.0.0", 32 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 33 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /docs/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 | -------------------------------------------------------------------------------- /docs/bower_components/paper-material/paper-material-shared-styles.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 42 | 43 | -------------------------------------------------------------------------------- /docs/bower_components/paper-material/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | paper-material tests 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/bower_components/paper-ripple/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-ripple", 3 | "version": "1.0.10", 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 | "repository": { 16 | "type": "git", 17 | "url": "git://github.com/PolymerElements/paper-ripple.git" 18 | }, 19 | "main": "paper-ripple.html", 20 | "dependencies": { 21 | "iron-a11y-keys-behavior": "polymerelements/iron-a11y-keys-behavior#^1.1.5", 22 | "polymer": "Polymer/polymer#^1.1.0" 23 | }, 24 | "devDependencies": { 25 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 26 | "iron-icon": "polymerelements/iron-icon#^1.0.0", 27 | "iron-icons": "polymerelements/iron-icons#^1.0.0", 28 | "iron-test-helpers": "PolymerElements/iron-test-helpers#^1.0.0", 29 | "paper-styles": "polymerelements/paper-styles#^1.0.0", 30 | "test-fixture": "polymerelements/test-fixture#^1.0.0", 31 | "web-component-tester": "^4.0.0", 32 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 33 | }, 34 | "ignore": [], 35 | "homepage": "https://github.com/PolymerElements/paper-ripple", 36 | "_release": "1.0.10", 37 | "_resolution": { 38 | "type": "version", 39 | "tag": "v1.0.10", 40 | "commit": "6fef0ee16db4b7eec81f270efaf6b55b6ea53aa2" 41 | }, 42 | "_source": "https://github.com/PolymerElements/paper-ripple.git", 43 | "_target": "^1.0.0", 44 | "_originalSource": "PolymerElements/paper-ripple" 45 | } -------------------------------------------------------------------------------- /docs/bower_components/paper-ripple/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /docs/bower_components/paper-ripple/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /docs/bower_components/paper-ripple/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: eLNXQngbn6nHUirBVQAroarZUJHGZAj8sqSJaxRBqaL08//nzaOpnzuavYUeNSJ1fOnbL95jS5yZJy8+oCUW0a6BCXZUHJCrj/N6ywG4KpgPYQnUZVnpvsLdXZJuq4L4l5jYL1GsPydMePfAlrDpSu+QzEc1+C0q7sprxsbHbbQ= 10 | - secure: YLIZR4/tqr25Ty+daEdTInLVXoV/lSwagZCGMfT84SgHj94UYHr9u9Te3tNDeI8I83Kq1PSUn1kKE6ptT+EjuGhTDsyLx2IboVDtNlngDIo5GTSO1RBBzIlHRIb2eMS6om9cfLiOEWM3gFS/Mos/VYO3/A3ZSLE5BcNFagij724= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /docs/bower_components/paper-ripple/README.md: -------------------------------------------------------------------------------- 1 | [![Build status](https://travis-ci.org/PolymerElements/paper-ripple.svg?branch=master)](https://travis-ci.org/PolymerElements/paper-ripple) 2 | 3 | ##<paper-ripple> 4 | 5 | Material design: [Surface reaction](https://www.google.com/design/spec/animation/responsive-interaction.html#responsive-interaction-surface-reaction) 6 | 7 | `paper-ripple` provides a visual effect that other paper elements can 8 | use to simulate a rippling effect emanating from the point of contact. The 9 | effect can be visualized as a concentric circle with motion. 10 | 11 | 33 | ```html 34 |
35 | 36 |
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 | -------------------------------------------------------------------------------- /docs/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 | -------------------------------------------------------------------------------- /docs/bower_components/paper-ripple/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | Tests 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/bower_components/paper-styles/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-styles", 3 | "version": "1.1.5", 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.1", 26 | "polymer": "Polymer/polymer#^1.0.0" 27 | }, 28 | "devDependencies": { 29 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0", 30 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 31 | "web-component-tester": "^4.0.0" 32 | }, 33 | "_release": "1.1.5", 34 | "_resolution": { 35 | "type": "version", 36 | "tag": "v1.1.5", 37 | "commit": "4b26a4e50db27c53425f61a0dc9148b73691970a" 38 | }, 39 | "_source": "https://github.com/polymerelements/paper-styles.git", 40 | "_target": "^1.0.0", 41 | "_originalSource": "polymerelements/paper-styles" 42 | } -------------------------------------------------------------------------------- /docs/bower_components/paper-styles/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-styles", 3 | "version": "1.1.5", 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.1", 26 | "polymer": "Polymer/polymer#^1.0.0" 27 | }, 28 | "devDependencies": { 29 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0", 30 | "iron-component-page": "polymerelements/iron-component-page#^1.0.0", 31 | "web-component-tester": "^4.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /docs/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 | -------------------------------------------------------------------------------- /docs/bower_components/paper-styles/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | paper-styles 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/bower_components/paper-styles/paper-styles-classes.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/bower_components/paper-tabs/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /docs/bower_components/paper-tabs/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /docs/bower_components/paper-tabs/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: ieKt2HWOdClqU7OyYA20DFlWduaM0IDk91lO7mWySQL6r55SSB4DnUCgVycQJf0L6S8vyY/fbC/vFP0notyz3MvMAz1NwpRzAI9mKkVWJuaBbm9Ql9PewjanX42chbz3XyqZofXVkfBywmj61NyPM7VRVwhEHmOeYgyFUyV9cls= 10 | - secure: g7yrxdFIVMIjkYBKZ29FHUX3noS6u1lvjUmaAaG28rGaEfXK4XR9fhZABR+6ydAjLjdo+WUMvTp4oi6HYrb6ToByprEli/fTexjeGuagDc5r5R84u3CusBuw9YYHDjstHCBFmIZndD+r4PRXkWvYatciF9c0NCHoVrjTH/woe9g= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct -l chrome 22 | - xvfb-run wct -l firefox 23 | - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi" 24 | dist: trusty 25 | -------------------------------------------------------------------------------- /docs/bower_components/paper-tabs/README.md: -------------------------------------------------------------------------------- 1 | [![Build status](https://travis-ci.org/PolymerElements/paper-tabs.svg?branch=master)](https://travis-ci.org/PolymerElements/paper-tabs) 2 | [![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://beta.webcomponents.org/element/PolymerElements/paper-tabs) 3 | 4 | ##<paper-tabs> 5 | 6 | Material design: [Tabs](https://www.google.com/design/spec/components/tabs.html) 7 | 8 | `paper-tabs` makes it easy to explore and switch between different views or functional aspects of 9 | an app, or to browse categorized data sets. 10 | 11 | 39 | ```html 40 | 41 | The first tab 42 | Tab two 43 | The third tab 44 | Fourth tab 45 | 46 | ``` 47 | -------------------------------------------------------------------------------- /docs/bower_components/paper-tabs/hero.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/bower_components/paper-tabs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | paper-tabs 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /docs/bower_components/paper-tabs/paper-tabs-icons.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /docs/bower_components/paper-tabs/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | Tests 13 | 14 | 15 | 16 | 17 | 18 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /docs/bower_components/paper-toolbar/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /docs/bower_components/paper-toolbar/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /docs/bower_components/paper-toolbar/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: YhDTyZvC5P5rhCWlBTeIhKJx2izTUgaBPbWWCtVE/ukYfXeO0HY49emFYSOBJe3oKLLlipuTFehbtyZ4QPWmfa7QKEtnyYSfyCnOA3mJFzoMDDt/RVqDfWpa+fjpIdVR045ySCQE7NAbD47i8gAVwmlQ10k/yU+BA9uGxVHPSwo= 10 | - secure: GvWTJBajnq7yHfbx+Ud7jmG6ZNXf79U7i3UhTsXkDhotqzJr//MlJGzZFBZjbk2Qsgcx+x4cT10ieZR4oixn/ipiz/NfKvIbHl4+0sLauum+5lDd8TmKspJULzSeDkYcVl8tEVKn2vdCTBaTRQituXvDlipat1drAu4Zx3EtmxI= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /docs/bower_components/paper-toolbar/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "paper-toolbar", 3 | "version": "1.1.7", 4 | "license": "http://polymer.github.io/LICENSE.txt", 5 | "description": "A material design toolbar that is easily customizable", 6 | "private": true, 7 | "main": "paper-toolbar.html", 8 | "authors": [ 9 | "The Polymer Authors" 10 | ], 11 | "keywords": [ 12 | "web-components", 13 | "polymer", 14 | "toolbar", 15 | "layout" 16 | ], 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com/PolymerElements/paper-toolbar.git" 20 | }, 21 | "dependencies": { 22 | "iron-flex-layout": "PolymerElements/iron-flex-layout#^1.0.0", 23 | "paper-styles": "PolymerElements/paper-styles#^1.1.0", 24 | "polymer": "Polymer/polymer#^1.2.0" 25 | }, 26 | "devDependencies": { 27 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0", 28 | "iron-demo-helpers": "PolymerElements/iron-demo-helpers#^1.0.0", 29 | "iron-icons": "PolymerElements/iron-icons#^1.0.0", 30 | "paper-icon-button": "PolymerElements/paper-icon-button#^1.0.0", 31 | "paper-progress": "PolymerElements/paper-progress#^1.0.0", 32 | "test-fixture": "PolymerElements/test-fixture#^1.0.0", 33 | "web-component-tester": "^4.0.0", 34 | "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" 35 | }, 36 | "ignore": [] 37 | } 38 | -------------------------------------------------------------------------------- /docs/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 | -------------------------------------------------------------------------------- /docs/bower_components/paper-toolbar/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | paper-toolbar tests 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/bower_components/polymer/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "polymer", 3 | "version": "1.7.1", 4 | "main": [ 5 | "polymer.html", 6 | "polymer-mini.html", 7 | "polymer-micro.html" 8 | ], 9 | "license": "http://polymer.github.io/LICENSE.txt", 10 | "ignore": [ 11 | "/.*", 12 | "/test/", 13 | "/util/", 14 | "/explainer/", 15 | "gulpfile.js", 16 | "PRIMER.md", 17 | "CONTRIBUTING.md", 18 | "CHANGELOG.md" 19 | ], 20 | "authors": [ 21 | "The Polymer Authors (http://polymer.github.io/AUTHORS.txt)" 22 | ], 23 | "repository": { 24 | "type": "git", 25 | "url": "https://github.com/Polymer/polymer.git" 26 | }, 27 | "dependencies": { 28 | "webcomponentsjs": "^0.7.20" 29 | }, 30 | "devDependencies": { 31 | "web-component-tester": "*", 32 | "iron-component-page": "polymerElements/iron-component-page#^1.1.6" 33 | }, 34 | "private": true, 35 | "homepage": "https://github.com/Polymer/polymer", 36 | "_release": "1.7.1", 37 | "_resolution": { 38 | "type": "version", 39 | "tag": "v1.7.1", 40 | "commit": "39d185fecfeb6957835aaa80f7f28dd6924a3b29" 41 | }, 42 | "_source": "https://github.com/Polymer/polymer.git", 43 | "_target": "^1.7.1", 44 | "_originalSource": "polymer", 45 | "_direct": true 46 | } -------------------------------------------------------------------------------- /docs/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 | -------------------------------------------------------------------------------- /docs/bower_components/polymer/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "polymer", 3 | "version": "1.7.1", 4 | "main": [ 5 | "polymer.html", 6 | "polymer-mini.html", 7 | "polymer-micro.html" 8 | ], 9 | "license": "http://polymer.github.io/LICENSE.txt", 10 | "ignore": [ 11 | "/.*", 12 | "/test/", 13 | "/util/", 14 | "/explainer/", 15 | "gulpfile.js", 16 | "PRIMER.md", 17 | "CONTRIBUTING.md", 18 | "CHANGELOG.md" 19 | ], 20 | "authors": [ 21 | "The Polymer Authors (http://polymer.github.io/AUTHORS.txt)" 22 | ], 23 | "repository": { 24 | "type": "git", 25 | "url": "https://github.com/Polymer/polymer.git" 26 | }, 27 | "dependencies": { 28 | "webcomponentsjs": "^0.7.20" 29 | }, 30 | "devDependencies": { 31 | "web-component-tester": "*", 32 | "iron-component-page": "polymerElements/iron-component-page#^1.1.6" 33 | }, 34 | "private": true 35 | } 36 | -------------------------------------------------------------------------------- /docs/bower_components/webcomponentsjs/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "webcomponentsjs", 3 | "main": "webcomponents.js", 4 | "version": "0.7.23", 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 | "devDependencies": { 19 | "web-component-tester": "^4.0.1" 20 | }, 21 | "_release": "0.7.23", 22 | "_resolution": { 23 | "type": "version", 24 | "tag": "v0.7.23", 25 | "commit": "9d6cb3a3571241e4cda0617e043629c5c9002b34" 26 | }, 27 | "_source": "https://github.com/Polymer/webcomponentsjs.git", 28 | "_target": "^0.7.23", 29 | "_originalSource": "webcomponentsjs", 30 | "_direct": true 31 | } -------------------------------------------------------------------------------- /docs/bower_components/webcomponentsjs/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "webcomponentsjs", 3 | "main": "webcomponents.js", 4 | "version": "0.7.23", 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 | "devDependencies": { 19 | "web-component-tester": "^4.0.1" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /docs/bower_components/webcomponentsjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "webcomponents.js", 3 | "version": "0.7.23", 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": "BSD-3-Clause", 15 | "bugs": { 16 | "url": "https://github.com/webcomponents/webcomponentsjs/issues" 17 | }, 18 | "scripts": { 19 | "test": "wct" 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": "^4.0.1" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /docs/main.css: -------------------------------------------------------------------------------- 1 | /* Initialize CSS */ 2 | * { padding: 0; margin: 0; border: 0; } 3 | 4 | .main 5 | { 6 | padding: 0 0 0 100px ; 7 | } 8 | 9 | .main h2 10 | { 11 | padding: 20px 0; 12 | } 13 | 14 | .user_pr h2 15 | { 16 | padding: 20px 0; 17 | } 18 | 19 | iron-icon 20 | { 21 | margin: 0 10px 0 5px; 22 | } 23 | 24 | .paper-tabs 25 | { 26 | width: 190px; 27 | } 28 | 29 | paper-toolbar 30 | { 31 | margin: 0 0 20px 0; 32 | } 33 | 34 | .paper-button-0 35 | { 36 | margin : 0; 37 | } 38 | 39 | paper-material 40 | { 41 | width: 500px; 42 | margin: 0 0 10px 0; 43 | } 44 | 45 | p 46 | { 47 | padding: 5px 0 5px 10px; 48 | vertical-align: middle; 49 | } 50 | -------------------------------------------------------------------------------- /docs/temp/header_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E-nuri/git_beginner/b2630461561177e43cda42162a52ea11c9dfdcc1/docs/temp/header_bg.jpg -------------------------------------------------------------------------------- /docs/temp/header_bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E-nuri/git_beginner/b2630461561177e43cda42162a52ea11c9dfdcc1/docs/temp/header_bg2.jpg -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- 1 | Hello 2 | --------------------------------------------------------------------------------