From 07fe51e96ce2754b86e7ae9009f1539101df41ce Mon Sep 17 00:00:00 2001 From: Denys Vuika Date: Wed, 31 May 2017 17:48:47 +0100 Subject: [PATCH] [ADF-667] selection mode and row styles (#1914) * selection mode and row styles - single/multiple/none selection modes for DataTable component (and Document List) - support for custom row styles (inline and classname values) - fix karma config (material themes) - readme updates - package-lock.json files for NPM5 support - updated DataTable demo to demonstrate selection modes and row styles * remove package lock files --- demo-shell-ng2/app/app.module.ts | 2 +- .../src/components/datatable/datatable.component.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/demo-shell-ng2/app/app.module.ts b/demo-shell-ng2/app/app.module.ts index ba3672b3bf..9489b5c208 100644 --- a/demo-shell-ng2/app/app.module.ts +++ b/demo-shell-ng2/app/app.module.ts @@ -17,7 +17,7 @@ import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; -import { MdSlideToggleModule, MdInputModule } from '@angular/material'; +import { MdSlideToggleModule, MdInputModule, MdSelectModule } from '@angular/material'; import { CoreModule, AppConfigService } from 'ng2-alfresco-core'; import { SearchModule } from 'ng2-alfresco-search'; diff --git a/ng2-components/ng2-alfresco-datatable/src/components/datatable/datatable.component.spec.ts b/ng2-components/ng2-alfresco-datatable/src/components/datatable/datatable.component.spec.ts index 2337c9b81f..261b704348 100644 --- a/ng2-components/ng2-alfresco-datatable/src/components/datatable/datatable.component.spec.ts +++ b/ng2-components/ng2-alfresco-datatable/src/components/datatable/datatable.component.spec.ts @@ -26,7 +26,7 @@ import { DataColumn, DataSorting, ObjectDataTableAdapter, - ObjectDataColumn + ObjectDataColumn, ObjectDataRow } from './../../data/index'; describe('DataTable', () => {