Skip to content

Commit 7b99242

Browse files
committed
temporarily updated bower_components, updated polymer, made element definitons work with polymer 2
1 parent 390e67a commit 7b99242

File tree

934 files changed

+82009
-43898
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

934 files changed

+82009
-43898
lines changed

app/bower.json

+21-18
Original file line numberDiff line numberDiff line change
@@ -21,24 +21,27 @@
2121
"tests"
2222
],
2323
"dependencies": {
24-
"polymer": "Polymer/polymer#^1.0.0",
25-
"paper-button": "PolymerElements/paper-button#^1.0.0",
26-
"paper-checkbox": "PolymerElements/paper-checkbox#^1.0.0",
27-
"paper-dialog": "PolymerElements/paper-dialog#^1.0.0",
28-
"paper-fab": "PolymerElements/paper-fab#^1.0.0",
29-
"paper-header-panel": "PolymerElements/paper-header-panel#^1.0.0",
30-
"paper-icon-button": "PolymerElements/paper-icon-button#^1.0.0",
31-
"paper-input": "PolymerElements/paper-input#^1.0.0",
32-
"paper-item": "PolymerElements/paper-item#^1.0.0",
33-
"paper-menu": "PolymerElements/paper-menu#^1.0.0",
34-
"paper-ripple": "PolymerElements/paper-ripple#^1.0.0",
35-
"paper-toolbar": "PolymerElements/paper-toolbar#^1.0.0",
36-
"paper-drawer-panel": "PolymerElements/paper-drawer-panel#1.0.0",
37-
"paper-toast": "PolymerElements/paper-toast#^1.0.0",
38-
"paper-spinner": "PolymerElements/paper-spinner#^1.0.0",
39-
"paper-radio-group": "PolymerElements/paper-radio-group#^1.0.0",
40-
"paper-radio-button": "PolymerElements/paper-radio-button#^1.0.0",
41-
"paper-toggle-button": "PolymerElements/paper-toggle-button#^1.0.0",
24+
"polymer": "Polymer/polymer#2.0.0",
25+
"paper-button": "PolymerElements/paper-button#^2.0.0",
26+
"paper-checkbox": "PolymerElements/paper-checkbox#^2.0.0",
27+
"paper-dialog": "PolymerElements/paper-dialog#^2.0.0",
28+
"paper-fab": "PolymerElements/paper-fab#^2.0.0",
29+
"paper-header-panel": "PolymerElements/paper-header-panel#^2.0.0",
30+
"paper-icon-button": "PolymerElements/paper-icon-button#^2.0.0",
31+
"paper-input": "PolymerElements/paper-input#^2.0.0",
32+
"paper-item": "PolymerElements/paper-item#^2.0.0",
33+
"paper-ripple": "PolymerElements/paper-ripple#^2.0.0",
34+
"paper-toolbar": "PolymerElements/paper-toolbar#^2.0.0",
35+
"paper-drawer-panel": "PolymerElements/paper-drawer-panel#2.0.0",
36+
"paper-toast": "PolymerElements/paper-toast#^2.0.0",
37+
"paper-spinner": "PolymerElements/paper-spinner#^2.0.0",
38+
"paper-radio-group": "PolymerElements/paper-radio-group#^2.0.0",
39+
"paper-radio-button": "PolymerElements/paper-radio-button#^2.0.0",
40+
"paper-toggle-button": "PolymerElements/paper-toggle-button#^2.0.0",
4241
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.23"
42+
},
43+
"resolutions": {
44+
"webcomponentsjs": "^v1.0.0",
45+
"polymer": "2.0.0"
4346
}
4447
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "font-roboto",
3+
"version": "1.0.3",
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.3",
23+
"_resolution": {
24+
"type": "version",
25+
"tag": "v1.0.3",
26+
"commit": "6b16584ff654fea05d6bf3e812fb8b225202663f"
27+
},
28+
"_source": "https://github.com/PolymerElements/font-roboto.git",
29+
"_target": "^1.0.1",
30+
"_originalSource": "PolymerElements/font-roboto"
31+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
<!--
2+
This file is autogenerated based on
3+
https://github.com/PolymerElements/ContributionGuide/blob/master/CONTRIBUTING.md
4+
5+
If you edit that file, it will get updated everywhere else.
6+
If you edit this file, your changes will get overridden :)
7+
8+
You can however override the jsbin link with one that's customized to this
9+
specific element:
10+
11+
jsbin=https://jsbin.com/cagaye/edit?html,output
12+
-->
13+
14+
# Polymer Elements
15+
## Guide for Contributors
16+
17+
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:
18+
19+
### Filing Issues
20+
21+
**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:
22+
23+
1. **Who will use the feature?** _“As someone filling out a form…”_
24+
2. **When will they use the feature?** _“When I enter an invalid value…”_
25+
3. **What is the user’s goal?** _“I want to be visually notified that the value needs to be corrected…”_
26+
27+
**If you are filing an issue to report a bug**, please provide:
28+
29+
1. **A clear description of the bug and related expectations.** Consider using the following example template for reporting a bug:
30+
31+
```markdown
32+
The `paper-foo` element causes the page to turn pink when clicked.
33+
34+
## Expected outcome
35+
36+
The page stays the same color.
37+
38+
## Actual outcome
39+
40+
The page turns pink.
41+
42+
## Steps to reproduce
43+
44+
1. Put a `paper-foo` element in the page.
45+
2. Open the page in a web browser.
46+
3. Click the `paper-foo` element.
47+
```
48+
49+
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: [https://jsbin.com/cagaye/edit?html,output](https://jsbin.com/cagaye/edit?html,output).
50+
51+
3. **A list of browsers where the problem occurs.** This can be skipped if the problem is the same across all browsers.
52+
53+
### Submitting Pull Requests
54+
55+
**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.
56+
57+
When submitting pull requests, please provide:
58+
59+
1. **A reference to the corresponding issue** or issues that will be closed by the pull request. Please refer to these issues in the pull request description using the following syntax:
60+
61+
```markdown
62+
(For a single issue)
63+
Fixes #20
64+
65+
(For multiple issues)
66+
Fixes #32, fixes #40
67+
```
68+
69+
2. **A succinct description of the design** used to fix any related issues. For example:
70+
71+
```markdown
72+
This fixes #20 by removing styles that leaked which would cause the page to turn pink whenever `paper-foo` is clicked.
73+
```
74+
75+
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.
76+
77+
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!
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# font-roboto
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "font-roboto",
3+
"version": "1.0.3",
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+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "@polymerelements/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+
}
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,10 @@
1-
/**
1+
<!--
22
@license
33
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
44
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
55
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
66
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
77
Code distributed by Google as part of the polymer project is also
88
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-
}
9+
-->
10+
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,700|Roboto:400,300,300italic,400italic,500,500italic,700,700italic" crossorigin="anonymous">
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "iron-a11y-announcer",
3-
"version": "1.0.1",
3+
"version": "2.0.0",
44
"description": "A singleton element that simplifies announcing text to screen readers.",
55
"keywords": [
66
"web-components",
@@ -18,25 +18,48 @@
1818
"main": "iron-a11y-announcer.html",
1919
"license": "http://polymer.github.io/LICENSE.txt",
2020
"dependencies": {
21-
"polymer": "polymer/polymer#^1.0.0"
21+
"polymer": "Polymer/polymer#1.9 - 2"
2222
},
2323
"devDependencies": {
24-
"iron-component-page": "polymerelements/iron-component-page#^1.0.0",
25-
"iron-test-helpers": "polymerelements/iron-test-helpers#^1.0.0",
26-
"paper-button": "polymerelements/paper-button#^1.0.0",
27-
"paper-styles": "polymerelements/paper-styles#^1.0.0",
28-
"test-fixture": "polymerelements/test-fixture#^1.0.0",
29-
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0",
30-
"web-component-tester": "*"
24+
"iron-component-page": "PolymerElements/iron-component-page#1 - 2",
25+
"iron-demo-helpers": "PolymerElements/iron-demo-helpers#1 - 2",
26+
"iron-test-helpers": "PolymerElements/iron-test-helpers#1 - 2",
27+
"paper-button": "PolymerElements/paper-button#1 - 2",
28+
"test-fixture": "PolymerElements/test-fixture#^3.0.0-rc.1",
29+
"web-component-tester": "^6.0.0",
30+
"webcomponentsjs": "webcomponents/webcomponentsjs#^1.0.0"
3131
},
32-
"homepage": "https://github.com/polymerelements/iron-a11y-announcer",
33-
"_release": "1.0.1",
32+
"ignore": [],
33+
"variants": {
34+
"1.x": {
35+
"dependencies": {
36+
"polymer": "Polymer/polymer#^1.9"
37+
},
38+
"devDependencies": {
39+
"iron-component-page": "PolymerElements/iron-component-page#^1.0.0",
40+
"iron-demo-helpers": "PolymerElements/iron-demo-helpers#^1.0.0",
41+
"iron-test-helpers": "PolymerElements/iron-test-helpers#^1.0.0",
42+
"paper-button": "PolymerElements/paper-button#^1.0.0",
43+
"test-fixture": "PolymerElements/test-fixture#^1.0.0",
44+
"web-component-tester": "Polymer/web-component-tester#^4.0.0",
45+
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
46+
},
47+
"resolutions": {
48+
"webcomponentsjs": "^0.7"
49+
}
50+
}
51+
},
52+
"resolutions": {
53+
"webcomponentsjs": "^1.0.0"
54+
},
55+
"homepage": "https://github.com/PolymerElements/iron-a11y-announcer",
56+
"_release": "2.0.0",
3457
"_resolution": {
3558
"type": "version",
36-
"tag": "v1.0.1",
37-
"commit": "699697fe8935400ab11e3e33cd6a5a54d762300e"
59+
"tag": "v2.0.0",
60+
"commit": "d87178289c267b3c80c2dbd0060cb7ba9804bf53"
3861
},
39-
"_source": "git://github.com/polymerelements/iron-a11y-announcer.git",
40-
"_target": "^1.0.0",
41-
"_originalSource": "polymerelements/iron-a11y-announcer"
62+
"_source": "https://github.com/PolymerElements/iron-a11y-announcer.git",
63+
"_target": "1 - 2",
64+
"_originalSource": "PolymerElements/iron-a11y-announcer"
4265
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<!-- Instructions: https://github.com/PolymerElements/iron-a11y-announcer/CONTRIBUTING.md#filing-issues -->
2+
### Description
3+
<!-- Example: The `paper-foo` element causes the page to turn pink when clicked. -->
4+
5+
### Expected outcome
6+
7+
<!-- Example: The page stays the same color. -->
8+
9+
### Actual outcome
10+
11+
<!-- Example: The page turns pink. -->
12+
13+
### Live Demo
14+
<!-- Example: https://jsbin.com/cagaye/edit?html,output -->
15+
16+
### Steps to reproduce
17+
18+
<!-- Example
19+
1. Put a `paper-foo` element in the page.
20+
2. Open the page in a web browser.
21+
3. Click the `paper-foo` element.
22+
-->
23+
24+
### Browsers Affected
25+
<!-- Check all that apply -->
26+
- [ ] Chrome
27+
- [ ] Firefox
28+
- [ ] Safari 9
29+
- [ ] Safari 8
30+
- [ ] Safari 7
31+
- [ ] Edge
32+
- [ ] IE 11
33+
- [ ] IE 10
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
bower_components
1+
bower_components*
2+
bower-*.json
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
language: node_js
2+
sudo: required
3+
before_script:
4+
- npm install -g polymer-cli
5+
- polymer install --variants
6+
env:
7+
global:
8+
- secure: >-
9+
QlyQxWnziNgzWqptOtM0Oq1s/q6YHT/GPuslA31yC0nex7Wi6X9DFoF5rNlDEY0Y6WxCh8xzsZpwXrI9vZypgKoZlAwO1e3RLDsGV0APPrWg66MyImAwlHAJolvJg+ASsLJ8pm9nxMP/xapRamciqUMTUTeZh0V/5SR82BXQCf3zXe+9cMmAFNXBrIg6LDCm77AwW+1vkE/IZAL1oShSBwXEybn9kpYsdCiOGdnvMlChhaeqRlOUXkr3LHPUDtV8hbd2EswmPeHSV+RGdB/UFyRGa4g7gPgqtz7U2FS0/BqT0G2iJlAXGCttJnS6fXwyCriREplYjXzqrX0MeRWHD5vNxAucO/Va1n2tHEmJM3OhIYgO8VDM8S3nRRUDE/ifSjsu1UgBN7b1vml0zWo7rdvpD8fedx6+g4ph390kg5XRFNJZJ03YijfcNVUfnOTEWt9LntGRq5aKPB6RSbEvkuZFjLGHHD/xQu2LfyIjmueIWJNk4JeCNrm3zFPMhBAZfu7WTJPTk3dZ2L+0mty1QbaJ/lyTWIBYbTVBwwHzXKrPbgg5u/9e6DjhT8Zg/eJvmN/+sXAlUqnmTAE9coQ0LIivg6COWPoRDmdGl2uMygiCaLkFAy4sqhjP99Aq5/ekZWXUrTTa4NGw2qnvM4JY9YcEzUC0ZqzM11gj8x8ATi0=
10+
- secure: >-
11+
d0wz93AwXyNVmCr33od+TFC51nZgUzcdwHiJWxX0E+msZ8VgYCjj21D6OOZy84O7vYiPFy8vO03dvyqkj1uclEvfu2YlfiEaRxifKaxN6mQx142WjBtdHFjEUfBJR5eqm5qSeGj7aSZzPgerUl6yAkYH5tFldBatevF5Ax98Yr1dCsgpegsLCmBmusPH7tERnBilalcvXKVBfRXrnrkFkVoWroBb04W79aZSTlLGTlpBJCzR9Xe7RiXqnanSQQb1LjyCl55P0NvVVRjwpoVnikRqkIV/jehcNfIiJSC/vetepqqUehD6RdP2T8Nio7YvlLtXnW9vptlKYL2uZjhg23DyhgGW/4ZPaIABWVBqVUBbyaX6GCXo3EMyQcZhi17qCWEKnFGCrorC/4ZM6A0kJ+olOfQxszf9HrAX8+9DCaiKscn2Lz+ON/opFKFRAQngCJ9swBc27twavUxx4qNzOVJLdH8oGhCdl5DA4mgGGDWZz463X0HzagGUpi/RfME26uQnTkyK8eErL2yac+1VmA/QOx0RkYlrZ/pIEywkZPWusjJepCm9nlZGylaBr2mDpk8Kea+7IytO6sefiBwjX1RiqmnjnszO3jb/w5s0giUItWuFmDr14sOaFmj6wQB643eSGi42LSPG+FMea1RwUupyEPeLZq/aoJ0jmewGLv4=
12+
node_js: stable
13+
addons:
14+
firefox: latest
15+
apt:
16+
sources:
17+
- google-chrome
18+
packages:
19+
- google-chrome-stable
20+
sauce_connect: true
21+
script:
22+
- xvfb-run polymer test
23+
- >-
24+
if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then polymer test -s 'default';
25+
fi
26+
dist: trusty

0 commit comments

Comments
 (0)