File tree Expand file tree Collapse file tree 3 files changed +10
-15
lines changed Expand file tree Collapse file tree 3 files changed +10
-15
lines changed Original file line number Diff line number Diff line change 11# Change Log
22All notable changes to this project will be documented in this file.
33
4+ ## [ 0.0.15]
5+ ### Fixed
6+ - Prevent custom layout distruption when not ` pf-layout ` is disabled.
7+ - Removed bottom padding on ` pf-table ` .
8+
49## [ 0.0.14]
510### Added
611- Implemented ` pf-menu-item ` as a functional component with vue-router integration.
@@ -157,7 +162,8 @@ disabled, as per PatternFly design guidelines.
157162- ` pf-toolbar ` component
158163- ` pf-utilization-bar-chart ` component
159164
160- [ Unreleased ] : https://github.com/mtorromeo/vue-patternfly/compare/v0.0.14...HEAD
165+ [ Unreleased ] : https://github.com/mtorromeo/vue-patternfly/compare/v0.0.15...HEAD
166+ [ 0.0.15 ] : https://github.com/mtorromeo/vue-patternfly/compare/v0.0.14...v0.0.15
161167[ 0.0.14 ] : https://github.com/mtorromeo/vue-patternfly/compare/v0.0.13...v0.0.14
162168[ 0.0.13 ] : https://github.com/mtorromeo/vue-patternfly/compare/v0.0.12...v0.0.13
163169[ 0.0.12 ] : https://github.com/mtorromeo/vue-patternfly/compare/v0.0.11...v0.0.12
Original file line number Diff line number Diff line change @@ -185,9 +185,9 @@ export default {
185185 </script >
186186
187187<style >
188- .pf-layout-container {
188+ .layout-pf . pf-layout-container {
189189 position : relative ;
190- height : 100% ;
190+ min- height : 100% ;
191191}
192192
193193nav .navbar-pf > .collapse .navbar-right :last-child ,
Original file line number Diff line number Diff line change 11<template >
2- <div
3- class =" table-wrapper"
4- :style =" {
5- 'padding-bottom': bottomPadding,
6- }"
7- >
2+ <div class =" table-wrapper" >
83 <table v-if =" scrollable"
94 class =" table dataTable table-head-clone"
105 :style =" {
@@ -225,12 +220,6 @@ export default {
225220 }
226221 return colspan;
227222 },
228-
229- bottomPadding () {
230- const headHeight = this .scrollable ? this .headHeight + 1 : 0 ;
231- const paginationHeight = this .itemsPerPage > 0 ? this .paginationHeight : 0 ;
232- return ` ${ paginationHeight + headHeight} px` ;
233- },
234223 },
235224
236225 methods: {
You can’t perform that action at this time.
0 commit comments