-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
125 changed files
with
7,628 additions
and
1,176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"presets": [["env", { "modules": false }]], | ||
"plugins": ["external-helpers"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# EditorConfig: http://EditorConfig.org | ||
|
||
# Top-most EditorConfig file | ||
root = true | ||
|
||
# Rules for JavaScript files: | ||
|
||
[*.{js,py,json,sh,html}] | ||
# 4 space indentation | ||
indent_style = space | ||
indent_size = 2 | ||
# No trailing spaces | ||
trim_trailing_whitespace = true | ||
# Unix-style newlines | ||
end_of_line = lf | ||
# Newline ending every file | ||
insert_final_newline = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
language: node_js | ||
dist: trusty | ||
sudo: required | ||
addons: | ||
firefox: "latest" | ||
apt: | ||
sources: | ||
- google-chrome | ||
packages: | ||
- google-chrome-stable | ||
node_js: stable | ||
before_install: | ||
- npm install -g web-component-tester | ||
install: | ||
- npm install | ||
before_script: | ||
script: | ||
- xvfb-run npm run test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Copyright 2018 Red Hat, Inc. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
# WIP 🐣: RHElements Accordion Element | ||
|
||
## Usage | ||
|
||
``` | ||
<rh-accordion> | ||
<rh-accordion-header> | ||
<h2>Why do wizards need money if they could just create it?</h2> | ||
</rh-accordion-header> | ||
<rh-accordion-panel> | ||
<p>There is legislation that decides what you can conjure and what you can not. Because things that you conjure out of thin air will not last, it is illegal in the wizarding world.</p> | ||
</rh-accordion-panel> | ||
<rh-accordion-header> | ||
<h2>Why doesn't Harry have a portrait of his parents?</h2> | ||
</rh-accordion-header> | ||
<rh-accordion-panel> | ||
<p>The characters in the portraits are not actually ghosts. They mainly are there just to repeat common phrases or serve as a general representation of the individual they depict. A portrait of his parents would not be of much help to Harry.</p> | ||
</rh-accordion-panel> | ||
</rh-accordion> | ||
``` | ||
|
||
## Slots | ||
|
||
### Default slot in rh-accordion | ||
|
||
Place the `rh-accordion-header` and `rh-accordion-panel` elements here. | ||
|
||
### Default slot in rh-accordion-header | ||
|
||
We expect the light DOM of the `rh-accordion-header` to be a heading level tag | ||
(h1, h2, h3, h4, h5, h6) | ||
|
||
### Default slot in rh-accordion-panel | ||
|
||
Add the content for your accordion panel here. | ||
|
||
## Attributes | ||
|
||
**`color`** | ||
Changes the color of `<rh-accordion-header>` | ||
|
||
| Value | Description | | ||
| ----------------- | ------------------------------------------------------------------------- | | ||
| `striped` | Alternates `light` and `lightest` theme colors on `<rh-accordion-header>` | | ||
| `lightest` | `lightest` theme color | | ||
| `light` (default) | `light` theme color | | ||
| `base` | `base` theme color | | ||
| `dark` | `dark` theme color | | ||
| `darkest` | `darkest` theme color | | ||
| `complement` | `complement`theme color | | ||
| `accent` | `accent` theme color | | ||
|
||
## Styling | ||
|
||
| Theme Var Hook | Description | Default | | ||
| ----------------------------------------------------- | --------------------------------------------------------- | ------------------------------------------- | | ||
| `--rh-theme--color--surface--lighter` | Default `<rh-accordion-header>` color | $rh-color--surface--lighter | | ||
| `--rh-theme--color--surface--lighter--text` | Default `<rh-accordion-header>` text color | $rh-color--surface--lighter--text | | ||
| `--rh-theme--color--surface--lighter--link--focus` | Focus border color for default `<rh-accordion-header>` | $rh-color--surface--lighter--link--focus | | ||
| `--rh-theme--color--surface--lightest` | Lightest `<rh-accordion-header>` color option | $rh-color--surface--lighter | | ||
| `--rh-theme--color--surface--lightest--text` | Lightest `<rh-accordion-header>` text color option | $rh-color--surface--lightest--text | | ||
| `--rh-theme--color--surface--lightest--link--focus` | Focus border color for lightest `<rh-accordion-header>` | $rh-color--surface--lightest--link--focus | | ||
| `--rh-theme--color--surface--base` | Base `<rh-accordion-header>` color option | $rh-color--surface--base | | ||
| `--rh-theme--color--surface--base--text` | Base `<rh-accordion-header>` text color option | $rh-color--surface--base--text | | ||
| `--rh-theme--color--surface--base--link--focus` | Focus border color for base `<rh-accordion-header>` | $rh-color--surface--base--link--focus | | ||
| `--rh-theme--color--surface--darker` | Dark `<rh-accordion-header>` color option | $rh-color--surface--darker | | ||
| `--rh-theme--color--surface--darker--text` | Dark `<rh-accordion-header>` text color option | $rh-color--surface--darker--text | | ||
| `--rh-theme--color--surface--darker--link--focus` | Focus border color for dark `<rh-accordion-header>` | $rh-color--surface--darker--link--focus | | ||
| `--rh-theme--color--surface--darkest` | Darkest `<rh-accordion-header>` color option | $rh-color--surface--darkest | | ||
| `--rh-theme--color--surface--darkest--text` | Darkest `<rh-accordion-header>` text color option | $rh-color--surface--darkest--text | | ||
| `--rh-theme--color--surface--darkest--link--focus` | Focus border color for darkest `<rh-accordion-header>` | $rh-color--surface--darkest--link--focus | | ||
| `--rh-theme--color--surface--complement` | Complement `<rh-accordion-header>` color option | $rh-color--surface--complement | | ||
| `--rh-theme--color--surface--complement--text` | Complement `<rh-accordion-header>` text color option | $rh-color--surface--complement--text | | ||
| `--rh-theme--color--surface--complement--link--focus` | Focus border color for complement `<rh-accordion-header>` | $rh-color--surface--complement--link--focus | | ||
| `--rh-theme--color--surface--accent` | Accent `<rh-accordion-header>` color option | $rh-color--surface--accent | | ||
| `--rh-theme--color--surface--accent--text` | Accent `<rh-accordion-header>` text color option | $rh-color--surface--accent--text | | ||
| `--rh-theme--color--surface--accent--link--focus` | Focus border color for accent `<rh-accordion-header>` | $rh-color--surface--accent--link--focus | | ||
|
||
## Events | ||
|
||
### rh-accordion:change | ||
|
||
Fires when an rh-accordion-header is activated. The detail object contains the | ||
following | ||
|
||
``` | ||
detail: { | ||
expanded: Boolean | ||
} | ||
``` | ||
|
||
## Test | ||
|
||
npm run test | ||
|
||
## Build | ||
|
||
npm run build | ||
|
||
## Demo | ||
|
||
From the RHElements root directory, run: | ||
|
||
npm start | ||
|
||
## Code style | ||
|
||
Accordion (and all RHElements) use [Prettier][prettier] to auto-format JS and JSON. The style rules get applied when you commit a change. If you choose to, you can [integrate your editor][prettier-ed] with Prettier to have the style rules applied on every save. | ||
|
||
[prettier]: https://github.com/prettier/prettier/ | ||
[prettier-ed]: https://github.com/prettier/prettier/#editor-integration | ||
[web-component-tester]: https://github.com/Polymer/web-component-tester |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>RHElements: rh-accordion Demo</title> | ||
|
||
<link rel="stylesheet" href="http://overpass-30e2.kxcdn.com/overpass.css" /> | ||
<!-- <link rel="stylesheet" href="../../../themes/cp-theme/cp-theme.css" /> --> | ||
|
||
<noscript> | ||
<link href="../../rhelement/rhelement-noscript.min.css" rel="stylesheet"> | ||
</noscript> | ||
|
||
<link href="../../rhelement/rhelement.min.css" rel="stylesheet"> | ||
|
||
|
||
<!-- uncomment the es5-adapter if you're using the umd version --> | ||
<script src="/@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js"></script> | ||
<script src="/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.5/require.min.js"></script> | ||
<script>require([ | ||
'../../../themes/cp-theme/cp-theme.umd.js', | ||
'../rh-accordion.umd.js' | ||
])</script> | ||
</head> | ||
<body unresolved> | ||
<h1><rh-accordion></h1> | ||
<section> | ||
<rh-accordion color="lightest"> | ||
<rh-accordion-header> | ||
<h2>Why do wizards need money if they could just create it?</h2> | ||
</rh-accordion-header> | ||
<rh-accordion-panel> | ||
<p>There is legislation that decides what you can conjure and what you can not. Because things that you conjure out of thin air will not last, it is illegal in the wizarding world.</p> | ||
</rh-accordion-panel> | ||
<rh-accordion-header> | ||
<h2>Why doesn't Harry have a portrait of his parents?</h2> | ||
</rh-accordion-header> | ||
<rh-accordion-panel> | ||
<p>The characters in the portraits are not actually ghosts. They mainly are there just to repeat common phrases or serve as a general representation of the individual they depict. A portrait of his parents would not be of much help to Harry.</p> | ||
</rh-accordion-panel> | ||
<rh-accordion-header> | ||
<h2>Why is Harry considered a half-blood if both of his parents could use magic?</h2> | ||
</rh-accordion-header> | ||
<rh-accordion-panel> | ||
<p>Because Harry's grandparents were not able to do magic. This is generally frowned upon by those who consider themselves pure, such as the Malfoy's or other antagonists.</p> | ||
</rh-accordion-panel> | ||
<rh-accordion-header> | ||
<h2>Is Hogwarts the only wizarding school?</h2> | ||
</rh-accordion-header> | ||
<rh-accordion-panel> | ||
<p>No! It has been revealed that there are actually 11 long established and prestigious schools around the globe. These include Castelobruxo in the rainforest of Brazil, Durmstrang Institute (whereas nobody is certain of it’s whereabouts), and Ilvermorny, right here in the United States.</p> | ||
</rh-accordion-panel> | ||
<rh-accordion-header> | ||
<h2>Where do the main characters work as adults?</h2> | ||
</rh-accordion-header> | ||
<rh-accordion-panel> | ||
<p>Harry and Hermione are at the Ministry: he ends up leading the Auror department. Ron helps George at the joke shop and does very well. Ginny becomes a professional Quidditch player and then sportswriter for the Daily Prophet.</p> | ||
<p><a href="https://www.pottermore.com/collection/characters" target="blank">Read more about the characters</a></p> | ||
</rh-accordion-panel> | ||
</rh-accordion> | ||
</section> | ||
<section> | ||
<h2>Striped Accordion</h2> | ||
<rh-accordion color="striped"> | ||
<rh-accordion-header> | ||
<h2>Why do wizards need money if they could just create it?</h2> | ||
</rh-accordion-header> | ||
<rh-accordion-panel> | ||
<p>There is legislation that decides what you can conjure and what you can not. Because things that you conjure out of thin air will not last, it is illegal in the wizarding world.</p> | ||
</rh-accordion-panel> | ||
<rh-accordion-header> | ||
<h2>Why doesn't Harry have a portrait of his parents?</h2> | ||
</rh-accordion-header> | ||
<rh-accordion-panel> | ||
<p>The characters in the portraits are not actually ghosts. They mainly are there just to repeat common phrases or serve as a general representation of the individual they depict. A portrait of his parents would not be of much help to Harry.</p> | ||
</rh-accordion-panel> | ||
<rh-accordion-header> | ||
<h2>Why is Harry considered a half-blood if both of his parents could use magic?</h2> | ||
</rh-accordion-header> | ||
<rh-accordion-panel> | ||
<p>Because Harry's grandparents were not able to do magic. This is generally frowned upon by those who consider themselves pure, such as the Malfoy's or other antagonists.</p> | ||
</rh-accordion-panel> | ||
<rh-accordion-header> | ||
<h2>Is Hogwarts the only wizarding school?</h2> | ||
</rh-accordion-header> | ||
<rh-accordion-panel> | ||
<p>No! It has been revealed that there are actually 11 long established and prestigious schools around the globe. These include Castelobruxo in the rainforest of Brazil, Durmstrang Institute (whereas nobody is certain of it’s whereabouts), and Ilvermorny, right here in the United States.</p> | ||
</rh-accordion-panel> | ||
<rh-accordion-header> | ||
<h2>Where do the main characters work as adults?</h2> | ||
</rh-accordion-header> | ||
<rh-accordion-panel> | ||
<p>Harry and Hermione are at the Ministry: he ends up leading the Auror department. Ron helps George at the joke shop and does very well. Ginny becomes a professional Quidditch player and then sportswriter for the Daily Prophet.</p> | ||
<p><a href="https://www.pottermore.com/collection/characters" target="blank">Read more about the characters</a></p> | ||
</rh-accordion-panel> | ||
</rh-accordion> | ||
</section> | ||
</body> | ||
</html> |
Oops, something went wrong.