Skip to content

Commit

Permalink
chore(release): updates generated by Travis build
Browse files Browse the repository at this point in the history
  • Loading branch information
patternfly-build committed Dec 14, 2017
1 parent 5d80f09 commit e495853
Show file tree
Hide file tree
Showing 732 changed files with 281,141 additions and 0 deletions.
77 changes: 77 additions & 0 deletions dist-demo/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
[![Build Status](https://travis-ci.org/patternfly/patternfly-ng.svg?branch=master)](https://travis-ci.org/patternfly/patternfly-ng) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)

Welcome to PatternFly-Ng. This is a library of common Angular components for use with the PatternFly reference implementation. Below is information on how to get started using PatternFly-ng. If you wish to contribute to PatternFly-ng, please go to our [Contributions page][contributing].

- Web site: https://www.patternfly.org
- API Docs: http://www.patternfly.org/patternfly-ng/
- Build Status: https://travis-ci.org/patternfly/patternfly-ng.svg?branch=master


### Using PatternFly-ng In Your Application

This example demonstrates using the Angular-cli to get started with PatternFly-ng

1. Installing angular-cli
*Note*: you can skip this part if you already have generated an Angular application using `ng-cli` and webpack

```bash
npm i -g @angular/cli
ng new patternfly-ng-app
cd patternfly-ng-app
ng serve
```

2. Install patternfly-ng
```bash
npm install patternfly-ng --save
```

3. Add patternfly-ng dependencies

- install `patternfly`

```bash
npm install patternfly --save
```

4. Add a patternfly-ng component
- open `src/app/app.module.ts` and add

```typescript
import { NotificationModule } from 'patternfly-ng';
...

@NgModule({
...
imports: [NotificationModule, ... ],
...
})
```

- open `.angular-cli.json` and insert a new entry into the styles array

```json
"styles": [
"../node_modules/patternfly/dist/css/patternfly.min.css",
"../node_modules/patternfly/dist/css/patternfly-additions.min.css",
"styles.css",
],
```

- open `src/app/app.component.html` and add
```
<pfng-toast-notification
[header]="'test header'"
[message]="'this is a notification'"
[showClose]="'true'"
[type]="'success'">
</pfng-toast-notification>
```

## <a name="question"></a> Do you have a question?
- Search our [GitHub issues][github-issues]
- Join our patternfly-ng channel on [Slack](http://slack.patternfly.org)
- Join our mailing-list following the instructions on [patternfly.org](http://www.patternfly.org/community/)

[contributing]: https://github.com/patternfly/patternfly-ng/blob/master/CONTRIBUTING.md
[github-issues]: https://github.com/patternfly/patternfly-ng/issues
4,691 changes: 4,691 additions & 0 deletions dist-demo/app.js

Large diffs are not rendered by default.

Binary file not shown.
19,028 changes: 19,028 additions & 0 deletions dist-demo/assets/fonts/OpenSans-Bold-webfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist-demo/assets/fonts/OpenSans-Bold-webfont.ttf
Binary file not shown.
Binary file added dist-demo/assets/fonts/OpenSans-Bold-webfont.woff
Binary file not shown.
Binary file not shown.
Binary file not shown.
19,036 changes: 19,036 additions & 0 deletions dist-demo/assets/fonts/OpenSans-BoldItalic-webfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
19,030 changes: 19,030 additions & 0 deletions dist-demo/assets/fonts/OpenSans-ExtraBold-webfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
19,036 changes: 19,036 additions & 0 deletions dist-demo/assets/fonts/OpenSans-ExtraBoldItalic-webfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
19,043 changes: 19,043 additions & 0 deletions dist-demo/assets/fonts/OpenSans-Italic-webfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added dist-demo/assets/fonts/OpenSans-Light-webfont.eot
Binary file not shown.
19,026 changes: 19,026 additions & 0 deletions dist-demo/assets/fonts/OpenSans-Light-webfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
19,039 changes: 19,039 additions & 0 deletions dist-demo/assets/fonts/OpenSans-LightItalic-webfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
19,030 changes: 19,030 additions & 0 deletions dist-demo/assets/fonts/OpenSans-Regular-webfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
19,030 changes: 19,030 additions & 0 deletions dist-demo/assets/fonts/OpenSans-Semibold-webfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
19,043 changes: 19,043 additions & 0 deletions dist-demo/assets/fonts/OpenSans-SemiboldItalic-webfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
130 changes: 130 additions & 0 deletions dist-demo/assets/fonts/PatternFlyIcons-webfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file added dist-demo/assets/fonts/bg-login.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist-demo/assets/fonts/bg-modal-about-pf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist-demo/assets/fonts/fontawesome-webfont.eot
Binary file not shown.
2,671 changes: 2,671 additions & 0 deletions dist-demo/assets/fonts/fontawesome-webfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist-demo/assets/fonts/fontawesome-webfont.ttf
Binary file not shown.
Binary file added dist-demo/assets/fonts/fontawesome-webfont.woff
Binary file not shown.
Binary file added dist-demo/assets/fonts/fontawesome-webfont.woff2
Binary file not shown.
Binary file not shown.
288 changes: 288 additions & 0 deletions dist-demo/assets/fonts/glyphicons-halflings-regular.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
865 changes: 865 additions & 0 deletions dist-demo/docs/assets/css/main.css

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions dist-demo/docs/assets/css/main.css.map

Large diffs are not rendered by default.

Binary file added dist-demo/docs/assets/images/icons.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist-demo/docs/assets/images/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist-demo/docs/assets/images/widgets.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist-demo/docs/assets/images/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions dist-demo/docs/assets/js/main.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions dist-demo/docs/assets/js/search.js

Large diffs are not rendered by default.

Loading

0 comments on commit e495853

Please sign in to comment.