From 7268516f7cf5a947c8d2bb82278534a4c4ea22fa Mon Sep 17 00:00:00 2001 From: Brian Seim Date: Thu, 5 Jan 2017 15:59:23 -0700 Subject: [PATCH 1/2] Icons and bootstrap4 Modified icons from glyphicon to font awesome and checked appearance with bootstrap 4 --- src/components/header.template.ts | 4 ++-- src/components/row.template.ts | 4 ++-- src/components/table.template.ts | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/components/header.template.ts b/src/components/header.template.ts index b299a86..b2d9423 100644 --- a/src/components/header.template.ts +++ b/src/components/header.template.ts @@ -4,11 +4,11 @@ export const HEADER_TEMPLATE = `
diff --git a/src/components/row.template.ts b/src/components/row.template.ts index b35956b..e7b049f 100644 --- a/src/components/row.template.ts +++ b/src/components/row.template.ts @@ -10,8 +10,8 @@ export const ROW_TEMPLATE = ` (click)="dataTable.rowClicked(_this, $event)" > - + diff --git a/src/components/table.template.ts b/src/components/table.template.ts index 4c68a29..a32828c 100644 --- a/src/components/table.template.ts +++ b/src/components/table.template.ts @@ -19,10 +19,10 @@ export const TABLE_TEMPLATE = ` - + - - + + From 6e2e5a087236cdde0129b234bf84b5abdcf68b37 Mon Sep 17 00:00:00 2001 From: Brian Seim Date: Thu, 5 Jan 2017 16:08:38 -0700 Subject: [PATCH 2/2] cleaned up old project references. --- README.md | 4 +++- package.json | 6 +++--- typings.json | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4535a0c..fa65577 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,9 @@ A simple Angular 2 data table, with built-in solutions for features including: The component can be used not just with local data, but remote resources too: for example if the sorting and paging happen in the database. -The templates use bootstrap CSS class names, so the component requires a bootstrap .css file to be present in the application using it. +The templates use bootstrap 4 CSS class names, so the component requires a bootstrap .css file to be present in the application using it. + +The templates use Font Awesome CSS class names, so the component requires Font Awesome to be present in the application using it. ## Installing: `npm install angular-datatable --save` diff --git a/package.json b/package.json index 5c77fe6..200d0f2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "angular-datatable", "version": "2.0.4", - "description": "An Angular 2 data table, with pagination, sorting, expandable rows etc.", + "description": "An Angular 2 datatable, with pagination, sorting, expandable rows etc.", "keywords": [ "angular", "angular2", @@ -21,12 +21,12 @@ }, "repository": { "type": "git", - "url": "git://git@github.com/briebugconsulting/ng-data-table.git" + "url": "git://git@github.com/briebugconsulting/angular-datatable.git" }, "peerDependencies": { "@angular/core": "^2.0.0" }, - "author": "ggmod ", + "author": "BrieBug Developers ", "license": "MIT", "devDependencies": { "@angular/common": "^2.0.0", diff --git a/typings.json b/typings.json index b0bb089..f670590 100644 --- a/typings.json +++ b/typings.json @@ -1,5 +1,5 @@ { - "name": "angular-2-data-table", + "name": "angular-datatable", "dependencies": {}, "globalDevDependencies": { "es6-shim": "registry:dt/es6-shim#0.31.2+20160602141504"