Skip to content

Commit 6b11504

Browse files
authored
Merge branch 'master' into discovery-doc-link
2 parents c05f662 + f0140c7 commit 6b11504

File tree

389 files changed

+11890
-11843
lines changed

Some content is hidden

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

389 files changed

+11890
-11843
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@
22
node_modules
33
tmp
44

5+
# Compiled index
6+
doc/index.html
7+
58
# Logs
69
lerna-debug.log
7-
npm-debug.log
10+
npm-debug.log*
811

912
# Local files
1013
*.local.umd.js

.storybook/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { setOptions } from "@storybook/addon-options";
33
const req = require.context("../elements", true, /\.story\.js$/);
44

55
setOptions({
6-
name: "RHElements",
6+
name: "PatternFly Elements",
77
url: "/",
88
addonPanelInRight: true
99
});

.storybook/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This is a collection of functions to reuse within RHElements stories.
1+
// This is a collection of functions to reuse within PFElements stories.
22

33
export function escapeHTML(html) {
44
const div = document.createElement("div");

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
**[Getting Started][start] | [Element Catalog][storybook] | [Discovery doc](https://docs.google.com/document/d/1THnbwpUelkNfwHs8br-DmFYbJjX5NQwVveGYAP7XUAY/edit) | [Creating Components][develop] | [Theming Components][theming]**
22

3-
![RHElements logo](./brand/logo/png/rhelements-logo-red.png)
3+
![PFElements logo](./brand/logo/png/rhelements-logo-red.png)
44

5-
[RHElements][rhe] is a collection of flexible and lightweight [Web Components][wc], and the tools to build them. RHElements are...
5+
[PFElements][rhe] is a collection of flexible and lightweight [Web Components][wc], and the tools to build them. PFElements are...
66

7-
- **Lightweight**: small file size, minimal boilerplate, no "framework-like" features.
8-
- **Universal**: write once, use everywhere. RHElements work in React, Vue, Angular, vanilla JS, anywhere HTML elements are used.
7+
- **Lightweight**: small file size, minimal boilerplate, no "framework-like" features.
8+
- **Universal**: write once, use everywhere. PFElements work in React, Vue, Angular, vanilla JS, anywhere HTML elements are used.
99

1010
The result of these two principles is plugging one set of comopnents into a wide variety of applications, bringing UX consistency and developer familiarity to any web project.
1111

@@ -20,9 +20,9 @@ Let's get started!
2020
npm install # this will take a while due to lerna bootstrap
2121
npm start
2222

23-
The `start` script will launch the demo pages. Demo pages are static showcases of each element, and also serve as scratchpads for experimenting while working on an element.
23+
The `start` script will launch the demo pages. Demo pages are static showcases of each element, and also serve as scratchpads for experimenting while working on an element.
2424

25-
*Notice: You will need to use [Node](https://nodejs.org/en/) v.7 or higher. Storybook _may_ not work with Node v.10.*
25+
_Notice: You will need to use [Node](https://nodejs.org/en/) v.7 or higher. Storybook *may* not work with Node v.10._
2626

2727
---
2828

doc/index.html

Lines changed: 0 additions & 25 deletions
This file was deleted.

doc/wrapper.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta name="viewport" content="width=device-width" />
6+
<title>RH Elements</title>
7+
8+
<link href="../elements/rhelement/rhelement.min.css" rel="stylesheet">
9+
</head>
10+
<body>
11+
<h1>Demos</h1>
12+
<ul id="demos"><!-- Inject list --></ul>
13+
</body>
14+
</html>

0 commit comments

Comments
 (0)