File tree Expand file tree Collapse file tree 6 files changed +105
-16
lines changed
Expand file tree Collapse file tree 6 files changed +105
-16
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " angular-patternfly" ,
3- "version" : " 3.17 .0" ,
3+ "version" : " 3.18 .0" ,
44 "authors" : [
55 " Red Hat"
66 ],
4242 "angular-sanitize" : " 1.3.0 - 1.5.*" ,
4343 "angular-bootstrap" : " 0.14.x" ,
4444 "lodash" : " 3.x" ,
45- "patternfly" : " ~3.17.0 "
45+ "patternfly" : " git://github.com/patternfly/patternfly.git#master-dist "
4646 },
4747 "devDependencies" : {
4848 "angular-mocks" : " 1.3.0 - 1.5.*" ,
Original file line number Diff line number Diff line change @@ -2750,6 +2750,8 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
27502750}
27512751.close {
27522752 text-shadow : none;
2753+ z-index : 1 ;
2754+ position : relative;
27532755 opacity : 0.6 ;
27542756 filter : alpha (opacity=60);
27552757}
@@ -3602,6 +3604,8 @@ a.disabled {
36023604}
36033605.list-view-pf-stacked .list-view-pf-description {
36043606 display : block;
3607+ -ms-flex : none;
3608+ flex : none;
36053609}
36063610@media (min-width : 992px ) {
36073611 .list-view-pf-description {
Original file line number Diff line number Diff line change @@ -9746,6 +9746,68 @@ fieldset[disabled] .pagination > li > span.active {
97469746 font-size : 12px ;
97479747 margin-top : 2px ;
97489748}
9749+ .content-view-pf-pagination {
9750+ background-color : # f5f5f5 ;
9751+ border : 1px solid # d1d1d1 ;
9752+ border-top : none;
9753+ display : -ms-flexbox;
9754+ display : flex;
9755+ -ms-flex-wrap : wrap;
9756+ flex-wrap : wrap;
9757+ -ms-flex-pack : justify;
9758+ justify-content : space-between;
9759+ }
9760+ .content-view-pf-pagination .form-group {
9761+ -ms-flex-align : baseline;
9762+ align-items : baseline;
9763+ display : -ms-flexbox;
9764+ display : flex;
9765+ -ms-flex-positive : 1 ;
9766+ flex-grow : 1 ;
9767+ float : left;
9768+ margin : 5px ;
9769+ }
9770+ @supports (display : flex) {
9771+ .content-view-pf-pagination .form-group {
9772+ float : none;
9773+ }
9774+ }
9775+ .content-view-pf-pagination .form-group : last-child {
9776+ -ms-flex-pack : end;
9777+ justify-content : flex-end;
9778+ float : right;
9779+ }
9780+ @supports (display : flex) {
9781+ .content-view-pf-pagination .form-group : last-child {
9782+ float : none;
9783+ }
9784+ }
9785+ .content-view-pf-pagination .form-group .pagination-pf-pagesize .bootstrap-select .btn-group {
9786+ display : -ms-flexbox;
9787+ display : flex;
9788+ margin-right : 5px ;
9789+ width : auto;
9790+ }
9791+ .content-view-pf-pagination .pagination-pf-page {
9792+ margin-left : 10px ;
9793+ margin-right : 5px ;
9794+ padding : 0 2px 2px ;
9795+ text-align : right;
9796+ width : 2.5em ;
9797+ }
9798+ .content-view-pf-pagination .pagination {
9799+ display : -ms-flexbox;
9800+ display : flex;
9801+ margin : 0 0 0 10px ;
9802+ }
9803+ .content-view-pf-pagination .pagination a {
9804+ float : none;
9805+ }
9806+ @supports (display : flex) {
9807+ .content-view-pf-pagination .pagination a {
9808+ display : block;
9809+ }
9810+ }
97499811.panel-title {
97509812 font-weight : 700 ;
97519813}
Original file line number Diff line number Diff line change 22 'use strict' ;
33
44 var patternfly = {
5- version : "3.13 .0"
5+ version : "3.18 .0" ,
66 } ;
77
88 // Util: PatternFly Palette colors
200200 legend : this . getDefaultGroupedBarLegend ( )
201201 } ;
202202 } ,
203+ getDefaultStackedBarGrid = function ( ) {
204+ return {
205+ y : {
206+ show : true
207+ }
208+ } ;
209+ } ,
210+ getDefaultStackedBarLegend = function ( ) {
211+ return {
212+ show : true ,
213+ position : 'bottom'
214+ } ;
215+ } ,
216+ getDefaultStackedBarConfig = function ( ) {
217+ return {
218+ color : this . getDefaultColors ( ) ,
219+ grid : this . getDefaultStackedBarGrid ( ) ,
220+ legend : this . getDefaultStackedBarLegend ( )
221+ } ;
222+ } ,
203223 getDefaultDonut = function ( title ) {
204224 return {
205225 title : title ,
450470 getDefaultGroupedBarGrid : getDefaultGroupedBarGrid ,
451471 getDefaultGroupedBarLegend : getDefaultGroupedBarLegend ,
452472 getDefaultGroupedBarConfig : getDefaultGroupedBarConfig ,
473+ getDefaultStackedBarGrid : getDefaultStackedBarGrid ,
474+ getDefaultStackedBarLegend : getDefaultStackedBarLegend ,
475+ getDefaultStackedBarConfig : getDefaultStackedBarConfig ,
453476 getDefaultDonut : getDefaultDonut ,
454477 getDefaultDonutSize : getDefaultDonutSize ,
455478 getDefaultDonutColors : getDefaultDonutColors ,
Original file line number Diff line number Diff line change 11{
22 "author" : " Red Hat" ,
33 "name" : " angular-patternfly" ,
4- "version" : " 3.17 .0" ,
4+ "version" : " 3.18 .0" ,
55 "license" : " Apache-2.0" ,
66 "description" : " Angular extension of the PatternFly project." ,
77 "keywords" : [" angular" , " patternfly" ],
1313 "angular-sanitize" : " 1.3.0 - 1.5.*" ,
1414 "angular-ui-bootstrap" : " 0.14.x" ,
1515 "lodash" : " 3.x" ,
16- "patternfly" : " ~3.17.0 "
16+ "patternfly" : " git+https://github.com/patternfly/patternfly.git#master-dist "
1717 },
1818 "devDependencies" : {
1919 "express" : " 3.4.4" ,
4343 "karma-phantomjs-launcher" : " ^1.0.0" ,
4444 "matchdep" : " 0.3.0" ,
4545 "nsp" : " ^2.6.1" ,
46- "patternfly-eng-release" : " ~3.17.0 "
46+ "patternfly-eng-release" : " git+https://github.com/patternfly/patternfly-eng-release.git "
4747 },
4848 "scripts" : {
4949 "test" : " grunt test"
You can’t perform that action at this time.
0 commit comments