Skip to content

Commit

Permalink
Merge branch 'master' into 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebuch8 committed Oct 1, 2018
2 parents fd1457b + ae22f52 commit 000d771
Show file tree
Hide file tree
Showing 125 changed files with 7,628 additions and 1,176 deletions.
1 change: 1 addition & 0 deletions .storybook/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const req = require.context("../elements", true, /\.story\.js$/);

setOptions({
name: "RHElements",
url: "/",
addonPanelInRight: true
});

Expand Down
2 changes: 2 additions & 0 deletions doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,15 @@
<h1>RHElements demos</h1>

<ul>
<li><a href="../elements/rh-accordion/demo">rh-accordion</a></li>
<li><a href="../elements/rh-card/demo">rh-card</a></li>
<li><a href="../elements/rh-cta/demo">rh-cta</a></li>
<li><a href="../elements/rh-datetime/demo">rh-datetime</a></li>
<li><a href="../elements/rh-health-index/demo">rh-health-index</a></li>
<li><a href="../elements/rh-icon-panel/demo">rh-icon-panel</a></li>
<li><a href="../elements/rh-icon/demo">rh-icon</a></li>
<li><a href="../elements/rh-number/demo">rh-number</a></li>
<li><a href="../elements/rh-tabs/demo">rh-tabs</a></li>
</ul>

</body>
Expand Down
2 changes: 2 additions & 0 deletions elements/all/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@
"private": true,
"license": "MIT",
"dependencies": {
"@rhelements/rh-accordion": "file:elements/rh-accordion",
"@rhelements/rh-card": "file:elements/rh-card",
"@rhelements/rh-cta": "file:elements/rh-cta",
"@rhelements/rh-datetime": "file:elements/rh-datetime",
"@rhelements/rh-health-index": "file:elements/rh-health-index",
"@rhelements/rh-icon": "file:elements/rh-icon",
"@rhelements/rh-icon-panel": "file:elements/rh-icon-panel",
"@rhelements/rh-number": "file:elements/rh-number",
"@rhelements/rh-tabs": "file:elements/rh-tabs",
"@rhelements/rhelement": "file:elements/rhelement"
}
}
4 changes: 4 additions & 0 deletions elements/rh-accordion/.babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"presets": [["env", { "modules": false }]],
"plugins": ["external-helpers"]
}
17 changes: 17 additions & 0 deletions elements/rh-accordion/.editorconfig
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
1 change: 1 addition & 0 deletions elements/rh-accordion/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
18 changes: 18 additions & 0 deletions elements/rh-accordion/.travis.yml
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
19 changes: 19 additions & 0 deletions elements/rh-accordion/LICENSE.txt
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.
112 changes: 112 additions & 0 deletions elements/rh-accordion/README.md
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
100 changes: 100 additions & 0 deletions elements/rh-accordion/demo/index.html
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>&lt;rh-accordion&gt;</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>
Loading

0 comments on commit 000d771

Please sign in to comment.