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
Copy file name to clipboardExpand all lines: dist/angular-patternfly.js
+63-13Lines changed: 63 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -141,11 +141,25 @@ angular.module('patternfly.autofocus', []).directive('pfFocused', ["$timeout", f
141
141
* <li>.iconClass - an icon to display to the right of the notification count
142
142
* <li>.count - the number count of the notification status
143
143
* <li>.href - href to navigate to if one clicks on the notification status icon or count
144
-
* <li>.id - unique id of the notificaiton status, appended to the .href
144
+
* </ul>
145
+
* </ul>
146
+
* When layout='mini', only one notification can be specified:<br>
147
+
* <ul style='list-style-type: none'>
148
+
* <li>...
149
+
* <li><strong>.notification</strong> - an <em>object</em> of containing a single notification icon & count
150
+
* <ul style='list-style-type: none'>
151
+
* <li>.iconClass - an icon to display to the right of the notification count
152
+
* <li>.count - the number count of the notification status
153
+
* <li>.href - href to navigate to if one clicks on the notification status icon or count
145
154
* </ul>
146
155
* </ul>
147
156
* @param {boolean=} show-top-border Show/hide the top border, true shows top border, false (default) hides top border
148
-
* @param {boolean=} alt-layout Display the aggregate status card in a 'alternate tall' layout. false (default) displays normal layout, true displays tall layout
157
+
* @param {string=} layout Various alternative layouts the aggregate status card may have:<br/>
158
+
* <ul style='list-style-type: none'>
159
+
* <li>'mini' displays a mini aggregate status card. Note: when using 'mini' layout, only one notification can be specified in the status object
160
+
* <li>'tall' displays a tall aggregate status card. This equals the depreciated 'alt-layout' param.</li>
161
+
* </ul>
162
+
* @deprecated {boolean=} alt-layout Display the aggregate status card in a 'alternate tall' layout. false (default) displays normal layout, true displays tall layout
149
163
*
150
164
* @description
151
165
* Directive for easily displaying status information
@@ -154,13 +168,26 @@ angular.module('patternfly.autofocus', []).directive('pfFocused', ["$timeout", f
Copy file name to clipboardExpand all lines: src/card/aggregate-status/aggregate-status-card.directive.js
+62-12Lines changed: 62 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -14,11 +14,25 @@
14
14
* <li>.iconClass - an icon to display to the right of the notification count
15
15
* <li>.count - the number count of the notification status
16
16
* <li>.href - href to navigate to if one clicks on the notification status icon or count
17
-
* <li>.id - unique id of the notificaiton status, appended to the .href
17
+
* </ul>
18
+
* </ul>
19
+
* When layout='mini', only one notification can be specified:<br>
20
+
* <ul style='list-style-type: none'>
21
+
* <li>...
22
+
* <li><strong>.notification</strong> - an <em>object</em> of containing a single notification icon & count
23
+
* <ul style='list-style-type: none'>
24
+
* <li>.iconClass - an icon to display to the right of the notification count
25
+
* <li>.count - the number count of the notification status
26
+
* <li>.href - href to navigate to if one clicks on the notification status icon or count
18
27
* </ul>
19
28
* </ul>
20
29
* @param {boolean=} show-top-border Show/hide the top border, true shows top border, false (default) hides top border
21
-
* @param {boolean=} alt-layout Display the aggregate status card in a 'alternate tall' layout. false (default) displays normal layout, true displays tall layout
30
+
* @param {string=} layout Various alternative layouts the aggregate status card may have:<br/>
31
+
* <ul style='list-style-type: none'>
32
+
* <li>'mini' displays a mini aggregate status card. Note: when using 'mini' layout, only one notification can be specified in the status object
33
+
* <li>'tall' displays a tall aggregate status card. This equals the depreciated 'alt-layout' param.</li>
34
+
* </ul>
35
+
* @deprecated {boolean=} alt-layout Display the aggregate status card in a 'alternate tall' layout. false (default) displays normal layout, true displays tall layout
22
36
*
23
37
* @description
24
38
* Directive for easily displaying status information
0 commit comments