Skip to content
This repository was archived by the owner on Oct 6, 2020. It is now read-only.

Commit e114e47

Browse files
published md2@0.0.6
1 parent 4d68973 commit e114e47

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# [0.0.6](https://github.com/promact/md2/compare/md2@0.0.5...md2@0.0.6) (2016-10-20)
2+
3+
### Bug Fixes
4+
* fix(data-tagle) position
5+
16
# [0.0.5](https://github.com/promact/md2/compare/md2@0.0.4...md2@0.0.5) (2016-10-20)
27

38
### Features

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "md2",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"description": "Angular2 based Material Design components, directives and services are Accordion, Autocomplete, Collapse, Colorpicker, Datepicker, Dialog(Modal), Menu, Multiselect, Select, Tabs, Tags(Chips), Toast and Tooltip.",
55
"author": "Dharmesh Pipariya <pipariyadharmesh@gmail.com>",
66
"homepage": "https://github.com/Promact/md2",

src/lib/data-table/data-table.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ export class Md2DataTableSortField {
203203
</svg>
204204
</li>
205205
</ul>
206-
<ul class="md2-pagination pull-right" *ngIf="dataLength > _minRows">
206+
<ul class="md2-pagination md2-rows" *ngIf="dataLength > _minRows">
207207
<li *ngFor="let row of rows" [class.active]="_rows===row" (click)="_setRows(row)">{{row}}</li>
208208
</ul>
209209
`,
@@ -217,6 +217,7 @@ export class Md2DataTableSortField {
217217
md2-pagination .md2-pagination li.active,
218218
md2-pagination .md2-pagination li.active:hover { background: #106CC8; color: #fff; cursor: default; }
219219
md2-pagination .md2-pagination li svg { fill: currentColor; margin-bottom: -7px; }
220+
md2-pagination .md2-pagination.md2-rows { float: right; }
220221
`],
221222
encapsulation: ViewEncapsulation.None
222223
})

src/lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "md2",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"description": "Angular2 based Material Design components, directives and services are Accordion, Autocomplete, Collapse, Colorpicker, Datepicker, Dialog(Modal), Menu, Multiselect, Select, Tabs, Tags(Chips), Toast and Tooltip.",
55
"main": "./md2.umd.js",
66
"module": "./index.js",

0 commit comments

Comments
 (0)