You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Update layout for sort, filter, and toolbar to match patternfly markup
13
+
14
+
15
+
Breaking Changes
16
+
- pfInlineNotification - pfNotificationRemove function added which ties the click event of the close button to a user specified function. Previously, this used to be hardcoded to use the Notifications service, this is now optional.
17
+
- pfListView - If defined, actionButton class will replace 'btn-default'. Previously it was appended. (Issue #434)
Copy file name to clipboardExpand all lines: README.md
+68-17Lines changed: 68 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,18 +21,14 @@ You have to install required software before you're able to use grunt:
21
21
Angular Patternfly stays up to date with the Node LTS [Release Schedule](https://github.com/nodejs/LTS#lts_schedule). If you're using Angular Patternfly downstream, we suggest the use of an actively supported version of Node/NPM, although prior versions of Node may work.
22
22
23
23
* Install npm - If npm is not already installed with Node.js, you have to install it manually. Find more information on [NPM](https://www.npmjs.org/)
24
-
* Install Bower globally - Find more information on [Bower](http://bower.io/)
25
24
26
-
npm install -g bower
27
25
* Install Grunt globally - Find more information on [Grunt](http://gruntjs.com/)
28
26
29
27
npm install -g grunt-cli
28
+
30
29
* Install npm dependencies with:
31
30
32
31
npm install
33
-
* Install bower dependencies with:
34
-
35
-
bower install
36
32
37
33
You should have your environment ready now.
38
34
@@ -52,8 +48,8 @@ Note:
52
48
53
49
1. Add Angular and Angular-PatternFly as dependencies for your project and you'll receive all the libraries you'll need:
54
50
55
-
$ bower install angular --save
56
-
$ bower install angular-patternfly --save
51
+
$ npm install angular --save
52
+
$ npm install angular-patternfly --save
57
53
58
54
2. Add the core Patternfly CSS and script includes to your HTML file(s):
59
55
@@ -62,29 +58,29 @@ Note:
62
58
3. Add the following CSS include to your HTML file(s):
In order to use Angular-Patternfly in a Webpack-bundled application there are some things you need to keep in mind:
@@ -144,7 +195,7 @@ grunt ngdocs:view --port=8002
144
195
145
196
## Releasing
146
197
147
-
Angular PatternFly is released through Bower. To release a new version version of Angular PatternFly, edit `bower.json` and `package.json` accordingly.
198
+
Angular PatternFly is released through Bower and npm. To release a new version version of Angular PatternFly, edit `bower.json` and `package.json` accordingly.
148
199
149
200
Update the version listed in `bower.json` by editing the file and changing the line:
0 commit comments