diff --git a/bower.json b/bower.json index 06bae87..974ee12 100755 --- a/bower.json +++ b/bower.json @@ -16,6 +16,8 @@ "dependencies": { "google-map": "GoogleWebComponents/google-map#^1.0.0", "paper-fab-transitions": "~0.1.0", - "polymer": "Polymer/polymer#^1.0.0" + "polymer": "Polymer/polymer#^1.0.0", + "iron-icon": "PolymerElements/iron-icon#~1.0.7", + "iron-icons": "PolymerElements/iron-icons#~1.1.2" } } diff --git a/bower_components/iron-icons/.bower.json b/bower_components/iron-icons/.bower.json old mode 100755 new mode 100644 index 0186178..fcaaa8e --- a/bower_components/iron-icons/.bower.json +++ b/bower_components/iron-icons/.bower.json @@ -1,6 +1,6 @@ { "name": "iron-icons", - "version": "1.0.4", + "version": "1.1.2", "description": "A set of icons for use with iron-icon", "authors": [ "The Polymer Authors" @@ -28,19 +28,21 @@ "iron-component-page": "polymerelements/iron-component-page#1.0.0", "iron-flex-layout": "polymerelements/iron-flex-layout#^1.0.0", "iron-meta": "polymerelements/iron-meta#^1.0.0", - "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" + "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0", + "web-component-tester": "^4.0.0" }, "ignore": [ "util", "update-icons.sh" ], - "_release": "1.0.4", + "_release": "1.1.2", "_resolution": { "type": "version", - "tag": "v1.0.4", - "commit": "1a54850a7196eb8d9d7ec1c4dea064972b7bfd4c" + "tag": "v1.1.2", + "commit": "14a4138f7da753ee8bebeb9ed4abd6053b2496dd" }, "_source": "git://github.com/PolymerElements/iron-icons.git", - "_target": "^1.0.0", - "_originalSource": "PolymerElements/iron-icons" + "_target": "~1.1.2", + "_originalSource": "PolymerElements/iron-icons", + "_direct": true } \ No newline at end of file diff --git a/bower_components/iron-icons/.gitignore b/bower_components/iron-icons/.gitignore old mode 100755 new mode 100644 index bb1944e..bb1944e --- a/bower_components/iron-icons/.gitignore +++ b/bower_components/iron-icons/.gitignore diff --git a/bower_components/iron-icons/.travis.yml b/bower_components/iron-icons/.travis.yml new file mode 100644 index 0000000..57e6cef --- /dev/null +++ b/bower_components/iron-icons/.travis.yml @@ -0,0 +1,25 @@ +language: node_js +sudo: false +before_script: + - npm install -g bower polylint web-component-tester + - bower install + - polylint +env: + global: + - secure: itlu3qIX/3ggZQIuzTJc62A5MD2Rdms+zB1EvNEWFiQZQgNGu2+hhp72PcVB/urybOTFmMeq4W12RGr53KMvwj6mwNlXPhQxeP1oyR+icZZVbuLDfj5pF8OvNf4OXEkGv0yH+OTuNTB8CU4msJzgB2W8iuC+pFH/dIas6fQDTfE= + - secure: LBT0VumsEPWUYm0OLhqHU1XWmVY18QP64cMeqZAwASnYYyH/R5OGYAcI7aH8To29FWpkZSL85NPto37bN+f8DWRSULq4p+1wl2HviYHsam8x1NzN7hKq6nv+203qaT9SflheaNy6sSDfZJQ+36bRcGQ5khKkVeDpw7h8D/osSQ4= + - CXX=g++-4.8 +node_js: stable +addons: + firefox: latest + apt: + sources: + - google-chrome + - ubuntu-toolchain-r-test + packages: + - google-chrome-stable + - g++-4.8 + sauce_connect: true +script: + - xvfb-run wct + - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi" diff --git a/bower_components/iron-icons/CONTRIBUTING.md b/bower_components/iron-icons/CONTRIBUTING.md new file mode 100644 index 0000000..7b10141 --- /dev/null +++ b/bower_components/iron-icons/CONTRIBUTING.md @@ -0,0 +1,72 @@ + + +# Polymer Elements +## Guide for Contributors + +Polymer Elements are built in the open, and the Polymer authors eagerly encourage any and all forms of community contribution. When contributing, please follow these guidelines: + +### Filing Issues + +**If you are filing an issue to request a feature**, please provide a clear description of the feature. It can be helpful to describe answers to the following questions: + + 1. **Who will use the feature?** _“As someone filling out a form…”_ + 2. **When will they use the feature?** _“When I enter an invalid value…”_ + 3. **What is the user’s goal?** _“I want to be visually notified that the value needs to be corrected…”_ + +**If you are filing an issue to report a bug**, please provide: + + 1. **A clear description of the bug and related expectations.** Consider using the following example template for reporting a bug: + + ```markdown + The `paper-foo` element causes the page to turn pink when clicked. + + ## Expected outcome + + The page stays the same color. + + ## Actual outcome + + The page turns pink. + + ## Steps to reproduce + + 1. Put a `paper-foo` element in the page. + 2. Open the page in a web browser. + 3. Click the `paper-foo` element. + ``` + + 2. **A reduced test case that demonstrates the problem.** If possible, please include the test case as a JSBin. Start with this template to easily import and use relevant Polymer Elements: [http://jsbin.com/cagaye](http://jsbin.com/cagaye/edit?html,output). + + 3. **A list of browsers where the problem occurs.** This can be skipped if the problem is the same across all browsers. + +### Submitting Pull Requests + +**Before creating a pull request**, please ensure that an issue exists for the corresponding change in the pull request that you intend to make. **If an issue does not exist, please create one per the guidelines above**. The goal is to discuss the design and necessity of the proposed change with Polymer authors and community before diving into a pull request. + +When submitting pull requests, please provide: + + 1. **A reference to the corresponding issue** or issues that will be closed by the pull request. Please refer to these issues using the following syntax: + + ```markdown + (For a single issue) + Fixes #20 + + (For multiple issues) + Fixes #32, #40 + ``` + + 2. **A succinct description of the design** used to fix any related issues. For example: + + ```markdown + This fixes #20 by removing styles that leaked which would cause the page to turn pink whenever `paper-foo` is clicked. + ``` + + 3. **At least one test for each bug fixed or feature added** as part of the pull request. Pull requests that fix bugs or add features without accompanying tests will not be considered. + +If a proposed change contains multiple commits, please [squash commits](https://www.google.com/url?q=http://blog.steveklabnik.com/posts/2012-11-08-how-to-squash-commits-in-a-github-pull-request) to as few as is necessary to succinctly express the change. A Polymer author can help you squash commits, so don’t be afraid to ask us if you need help with that! diff --git a/bower_components/iron-icons/README.md b/bower_components/iron-icons/README.md old mode 100755 new mode 100644 index 5502532..8010d99 --- a/bower_components/iron-icons/README.md +++ b/bower_components/iron-icons/README.md @@ -1,6 +1,44 @@ -iron-icons -========= -## Building -Running `update-icons.sh` will checkout [material-design-icons](https://github.com/google/material-design-icons), reduce -the fileset to 24px svgs, and compile the iconsets. + + +[![Build Status](https://travis-ci.org/PolymerElements/iron-icons.svg?branch=master)](https://travis-ci.org/PolymerElements/iron-icons) + +_[Demo and API Docs](https://elements.polymer-project.org/elements/iron-icons)_ + + +##<iron-icons> + +`iron-icons` is a utitliy import that includes the definition for the `iron-icon` element, `iron-iconset-svg` element, as well as an import for the default icon set. + +The `iron-icons` directory also includes imports for additional icon sets that can be loaded into your project. + +Example loading icon set: + +```html + +``` + +To use an icon from one of these sets, first prefix your `iron-icon` with the icon set name, followed by a colon, ":", and then the icon id. + +Example using the directions-bus icon from the maps icon set: + +```html + +``` + +See [iron-icon](#iron-icon) for more information about working with icons. + +See [iron-iconset](#iron-iconset) and [iron-iconset-svg](#iron-iconset-svg) for more information about how to create a custom iconset. + + diff --git a/bower_components/iron-icons/av-icons.html b/bower_components/iron-icons/av-icons.html old mode 100755 new mode 100644 index 0d6ff37..e4a0d24 --- a/bower_components/iron-icons/av-icons.html +++ b/bower_components/iron-icons/av-icons.html @@ -11,17 +11,24 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN - + + + - - - + + + + + + + + @@ -34,6 +41,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN + @@ -43,22 +51,28 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN + + + + - - - + + + + + @@ -69,5 +83,6 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN + diff --git a/bower_components/iron-icons/bower.json b/bower_components/iron-icons/bower.json old mode 100755 new mode 100644 index 732bbc1..47170e7 --- a/bower_components/iron-icons/bower.json +++ b/bower_components/iron-icons/bower.json @@ -1,6 +1,6 @@ { "name": "iron-icons", - "version": "1.0.4", + "version": "1.1.2", "description": "A set of icons for use with iron-icon", "authors": [ "The Polymer Authors" @@ -28,7 +28,8 @@ "iron-component-page": "polymerelements/iron-component-page#1.0.0", "iron-flex-layout": "polymerelements/iron-flex-layout#^1.0.0", "iron-meta": "polymerelements/iron-meta#^1.0.0", - "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" + "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0", + "web-component-tester": "^4.0.0" }, "ignore": [ "util", diff --git a/bower_components/iron-icons/communication-icons.html b/bower_components/iron-icons/communication-icons.html old mode 100755 new mode 100644 index ec72704..b522e6d --- a/bower_components/iron-icons/communication-icons.html +++ b/bower_components/iron-icons/communication-icons.html @@ -17,6 +17,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN + @@ -24,18 +25,20 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN + + - + @@ -46,11 +49,13 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN + + diff --git a/bower_components/iron-icons/demo/index.html b/bower_components/iron-icons/demo/index.html old mode 100755 new mode 100644 index d5daf8f..acfbf36 --- a/bower_components/iron-icons/demo/index.html +++ b/bower_components/iron-icons/demo/index.html @@ -11,16 +11,11 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN - iron-icons - - + iron-icons demo - - - - - - + + + @@ -35,9 +30,10 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN +