File tree Expand file tree Collapse file tree 5 files changed +10
-83
lines changed Expand file tree Collapse file tree 5 files changed +10
-83
lines changed Original file line number Diff line number Diff line change @@ -56,8 +56,7 @@ import { Component } from '@angular/core';
5656 <ul>
5757 <li><a href="#" (click)="state='cell-selection'">Cell</a></li>
5858 <li><a href="#" (click)="state='single-selection'">Single Row</a></li>
59- <li><a href="#" (click)="state='multi-selection'">Click Mulit Row</a></li>
60- <li><a href="#" (click)="state='multishift-selection'">Shift Multi Row</a></li>
59+ <li><a href="#" (click)="state='multi-selection'">Mulit Row</a></li>
6160 <li><a href="#" (click)="state='multidisable-selection'">Disable Callback</a></li>
6261 <li><a href="#" (click)="state='chkbox-selection'">Checkbox</a></li>
6362 </ul>
@@ -110,7 +109,6 @@ import { Component } from '@angular/core';
110109 <cell-selection-demo *ngIf="state === 'cell-selection'"></cell-selection-demo>
111110 <single-selection-demo *ngIf="state === 'single-selection'"></single-selection-demo>
112111 <multi-selection-demo *ngIf="state === 'multi-selection'"></multi-selection-demo>
113- <multishift-selection-demo *ngIf="state === 'multishift-selection'"></multishift-selection-demo>
114112 <multidisable-selection-demo *ngIf="state === 'multidisable-selection'"></multidisable-selection-demo>
115113 <chkbox-selection-demo *ngIf="state === 'chkbox-selection'"></chkbox-selection-demo>
116114
Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ import { TemplateRefTemplatesComponent } from './templates/template-obj';
3939import { CellSelectionComponent } from './selection/selection-cell' ;
4040import { MultiSelectionComponent } from './selection/selection-multi' ;
4141import { SingleSelectionComponent } from './selection/selection-single' ;
42- import { MultiShiftSelectionComponent } from './selection/selection-shift' ;
4342import { MultiDisableSelectionComponent } from './selection/selection-disabled' ;
4443import { CheckboxSelectionComponent } from './selection/selection-chkbox' ;
4544
@@ -79,7 +78,6 @@ import { ColumnPinningComponent } from './columns/pinning';
7978 TabsDemoComponent ,
8079 SingleSelectionComponent ,
8180 LiveDataComponent ,
82- MultiShiftSelectionComponent ,
8381 MultiDisableSelectionComponent ,
8482 RxDemoComponent ,
8583 ContextMenuDemoComponent ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ Enabled horizontal scrollbars. Default value: `false`
4646Enable vertical scrollbar for fixed height vs fluid. This is necessary for virtual scrolling. Default value: ` false `
4747
4848## ` selectionType `
49- Type of row selection. Options are ` single ` , ` multi ` and ` multiShift ` .
49+ Type of row selection. Options are ` single ` , ` multi ` and ` chkbox ` .
5050For no selection pass a ` falsey ` . Default value: ` undefined `
5151
5252## ` selected `
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 3.0.0
4+ - BREAKING: Removed ` shiftMulti ` option, its not useful and creates odd scenarios
5+ - Bug: Permanently high CPU utilization after sorting (#359 )
6+ - Bug: Fix checkbox showing in header if defined but not using checkbox select
7+ - Bug: Fix AoT errors (#370 )
8+ - Bug: Fix build not outputing AoT files in correct directory
9+ - Bug: Fix checkbox selection not working w/ shift key
10+
311## 2.2.3
412- Bug: Fix header checkbox mutating selection array
513
You can’t perform that action at this time.
0 commit comments