Skip to content
This repository was archived by the owner on Jan 4, 2021. It is now read-only.

Commit 3e7c920

Browse files
author
Francois-Xavier Gentilhomme
committed
[FIX] fixes styling issues
1 parent 3cb02c4 commit 3e7c920

File tree

372 files changed

+32490
-2895
lines changed

Some content is hidden

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

372 files changed

+32490
-2895
lines changed

analysis.json

Lines changed: 380 additions & 242 deletions
Large diffs are not rendered by default.

bower.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@
3636
},
3737
"devDependencies": {
3838
"iron-component-page": "PolymerElements/iron-component-page#^3.0.0",
39-
"webcomponentsjs": "^1.0.1"
39+
"webcomponentsjs": "^1.0.1",
40+
"paper-swatch-picker": "^2.0.1",
41+
"paper-toggle-button": "^2.0.0",
42+
"paper-slider": "^2.0.2"
4043
}
4144
}
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
{
2+
"name": "iron-autogrow-textarea",
3+
"version": "2.1.0",
4+
"description": "A textarea element that automatically grows with input",
5+
"authors": [
6+
"The Polymer Authors"
7+
],
8+
"keywords": [
9+
"web-components",
10+
"polymer",
11+
"input",
12+
"textarea"
13+
],
14+
"main": "iron-autogrow-textarea.html",
15+
"private": true,
16+
"repository": {
17+
"type": "git",
18+
"url": "git://github.com/PolymerElements/iron-autogrow-textarea.git"
19+
},
20+
"license": "http://polymer.github.io/LICENSE.txt",
21+
"homepage": "https://github.com/PolymerElements/iron-autogrow-textarea",
22+
"ignore": [],
23+
"dependencies": {
24+
"iron-behaviors": "PolymerElements/iron-behaviors#1 - 2",
25+
"iron-flex-layout": "PolymerElements/iron-flex-layout#1 - 2",
26+
"iron-validatable-behavior": "PolymerElements/iron-validatable-behavior#1 - 2",
27+
"polymer": "Polymer/polymer#1.9 - 2"
28+
},
29+
"devDependencies": {
30+
"iron-component-page": "PolymerElements/iron-component-page#1 - 2",
31+
"iron-demo-helpers": "PolymerElements/iron-demo-helpers#1 - 2",
32+
"iron-test-helpers": "PolymerElements/iron-test-helpers#1 - 2",
33+
"paper-styles": "PolymerElements/paper-styles#1 - 2",
34+
"test-fixture": "PolymerElements/test-fixture#^3.0.0-rc.1",
35+
"web-component-tester": "^6.0.0",
36+
"webcomponentsjs": "webcomponents/webcomponentsjs#^1.0.0"
37+
},
38+
"variants": {
39+
"1.x": {
40+
"dependencies": {
41+
"iron-behaviors": "PolymerElements/iron-behaviors#^1.0.0",
42+
"iron-flex-layout": "PolymerElements/iron-flex-layout#^1.0.0",
43+
"iron-validatable-behavior": "PolymerElements/iron-validatable-behavior#^1.0.0",
44+
"polymer": "Polymer/polymer#^1.9"
45+
},
46+
"devDependencies": {
47+
"iron-component-page": "PolymerElements/iron-component-page#^1.0.0",
48+
"iron-demo-helpers": "PolymerElements/iron-demo-helpers#^1.0.0",
49+
"iron-test-helpers": "PolymerElements/iron-test-helpers#^1.0.0",
50+
"paper-styles": "PolymerElements/paper-styles#^1.0.0",
51+
"test-fixture": "PolymerElements/test-fixture#^1.0.0",
52+
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0",
53+
"web-component-tester": "Polymer/web-component-tester#^4.0.0"
54+
},
55+
"resolutions": {
56+
"webcomponentsjs": "^0.7"
57+
}
58+
}
59+
},
60+
"resolutions": {
61+
"webcomponentsjs": "^1.0.0"
62+
},
63+
"_release": "2.1.0",
64+
"_resolution": {
65+
"type": "version",
66+
"tag": "v2.1.0",
67+
"commit": "1e6bcf4c585fa4a1b82acef2ba9aa6eab76de3b4"
68+
},
69+
"_source": "https://github.com/PolymerElements/iron-autogrow-textarea.git",
70+
"_target": "1 - 2",
71+
"_originalSource": "PolymerElements/iron-autogrow-textarea"
72+
}
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<!-- Instructions: https://github.com/PolymerElements/iron-autogrow-textarea/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
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
bower_components*
2+
bower-*.json
Lines changed: 26 additions & 0 deletions
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+
TqFz1Cdu4BtLCHYLFPES0q+6wPfCnj9bnTfven9LIU+gtek70FPDT3UlnviNwp5ob3o0sbLgsLWG5OkCsRHli+HCgPEVDazSrghfwaT9mL+h/DlM/PVB079VDdIKvZM6L7xEF0zPv7t26kljBRQcZJ81O3K7h1mNjeBj6sDXHzE=
10+
- secure: >-
11+
ihYM52Uu3H7FGU+x+f+hzMcWt00B7l6GZOtxzT1xYx4hb4E9/WwXYR5z9bqN+s5p10yf3FG64zbmMTuJeBvknDpSyBt/vKP+QBBZT0hxv05GifS38hiSoYT3HBxEpwhYdpjlsSJtIbKfYGR3xIXutRzRrRKSYigcrQNX83MGWFY=
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
Lines changed: 77 additions & 0 deletions
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!
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
2+
<!---
3+
4+
This README is automatically generated from the comments in these files:
5+
iron-autogrow-textarea.html
6+
7+
Edit those files, and our readme bot will duplicate them over here!
8+
Edit this file, and the bot will squash your changes :)
9+
10+
The bot does some handling of markdown. Please file a bug if it does the wrong
11+
thing! https://github.com/PolymerLabs/tedium/issues
12+
13+
-->
14+
15+
[![Build status](https://travis-ci.org/PolymerElements/iron-autogrow-textarea.svg?branch=master)](https://travis-ci.org/PolymerElements/iron-autogrow-textarea)
16+
17+
_[Demo and API docs](https://elements.polymer-project.org/elements/iron-autogrow-textarea)_
18+
19+
20+
## &lt;iron-autogrow-textarea&gt;
21+
22+
`iron-autogrow-textarea` is an element containing a textarea that grows in height as more
23+
lines of input are entered. Unless an explicit height or the `maxRows` property is set, it will
24+
never scroll.
25+
26+
Example:
27+
28+
```html
29+
<iron-autogrow-textarea></iron-autogrow-textarea>
30+
```
31+
32+
### Changes in 2.0
33+
- `bind-value` is deprecated, and just mirrors the `value` property
34+
- corrected the behaviour of `validate()`
35+
36+
### Styling
37+
38+
The following custom properties and mixins are available for styling:
39+
40+
| Custom property | Description | Default |
41+
| --- | --- | --- |
42+
| `--iron-autogrow-textarea` | Mixin applied to the textarea | `{}` |
43+
| `--iron-autogrow-textarea-placeholder` | Mixin applied to the textarea placeholder | `{}` |
44+
45+
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"name": "iron-autogrow-textarea",
3+
"version": "2.1.0",
4+
"description": "A textarea element that automatically grows with input",
5+
"authors": [
6+
"The Polymer Authors"
7+
],
8+
"keywords": [
9+
"web-components",
10+
"polymer",
11+
"input",
12+
"textarea"
13+
],
14+
"main": "iron-autogrow-textarea.html",
15+
"private": true,
16+
"repository": {
17+
"type": "git",
18+
"url": "git://github.com/PolymerElements/iron-autogrow-textarea.git"
19+
},
20+
"license": "http://polymer.github.io/LICENSE.txt",
21+
"homepage": "https://github.com/PolymerElements/iron-autogrow-textarea",
22+
"ignore": [],
23+
"dependencies": {
24+
"iron-behaviors": "PolymerElements/iron-behaviors#1 - 2",
25+
"iron-flex-layout": "PolymerElements/iron-flex-layout#1 - 2",
26+
"iron-validatable-behavior": "PolymerElements/iron-validatable-behavior#1 - 2",
27+
"polymer": "Polymer/polymer#1.9 - 2"
28+
},
29+
"devDependencies": {
30+
"iron-component-page": "PolymerElements/iron-component-page#1 - 2",
31+
"iron-demo-helpers": "PolymerElements/iron-demo-helpers#1 - 2",
32+
"iron-test-helpers": "PolymerElements/iron-test-helpers#1 - 2",
33+
"paper-styles": "PolymerElements/paper-styles#1 - 2",
34+
"test-fixture": "PolymerElements/test-fixture#^3.0.0-rc.1",
35+
"web-component-tester": "^6.0.0",
36+
"webcomponentsjs": "webcomponents/webcomponentsjs#^1.0.0"
37+
},
38+
"variants": {
39+
"1.x": {
40+
"dependencies": {
41+
"iron-behaviors": "PolymerElements/iron-behaviors#^1.0.0",
42+
"iron-flex-layout": "PolymerElements/iron-flex-layout#^1.0.0",
43+
"iron-validatable-behavior": "PolymerElements/iron-validatable-behavior#^1.0.0",
44+
"polymer": "Polymer/polymer#^1.9"
45+
},
46+
"devDependencies": {
47+
"iron-component-page": "PolymerElements/iron-component-page#^1.0.0",
48+
"iron-demo-helpers": "PolymerElements/iron-demo-helpers#^1.0.0",
49+
"iron-test-helpers": "PolymerElements/iron-test-helpers#^1.0.0",
50+
"paper-styles": "PolymerElements/paper-styles#^1.0.0",
51+
"test-fixture": "PolymerElements/test-fixture#^1.0.0",
52+
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0",
53+
"web-component-tester": "Polymer/web-component-tester#^4.0.0"
54+
},
55+
"resolutions": {
56+
"webcomponentsjs": "^0.7"
57+
}
58+
}
59+
},
60+
"resolutions": {
61+
"webcomponentsjs": "^1.0.0"
62+
}
63+
}

0 commit comments

Comments
 (0)