Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Dresser committed Aug 23, 2018
1 parent 6bd082a commit 5494e99
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 24 deletions.
4 changes: 0 additions & 4 deletions out/js/interfaces.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ export interface IGridColumnDefinition {
id: string;
type: number;
}
export interface IGridDataRow {
row?: number;
values: any[];
}
export interface ISlickColumn<T> extends Slick.Column<T> {
isEditable?: boolean;
}
2 changes: 1 addition & 1 deletion out/js/interfaces.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions out/js/slickGrid.d.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { OnChanges, OnInit, OnDestroy, SimpleChange, EventEmitter, AfterViewInit } from '@angular/core';
import { Observable } from 'rxjs/Rx';
import { IObservableCollection, IGridDataRow, ISlickColumn } from './interfaces';
import { IObservableCollection, ISlickColumn } from './interfaces';
export declare function getOverridableTextEditorClass(grid: SlickGrid): any;
export declare class SlickGrid implements OnChanges, OnInit, OnDestroy, AfterViewInit {
private _el;
columnDefinitions: ISlickColumn<any>[];
dataRows: IObservableCollection<IGridDataRow>;
dataRows: IObservableCollection<{}>;
resized: Observable<any>;
highlightedCells: {
row: number;
Expand Down Expand Up @@ -56,7 +56,6 @@ export declare class SlickGrid implements OnChanges, OnInit, OnDestroy, AfterVie
selection: Slick.Range[] | boolean;
private initGrid();
private changeEditSession(enabled);
private static getDataWithSchema(data, columns);
private onResize();
private invalidateRange(start, end);
private getColumnEditor(column);
Expand Down
20 changes: 5 additions & 15 deletions out/js/slickGrid.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion out/js/slickGrid.js.map

Large diffs are not rendered by default.

0 comments on commit 5494e99

Please sign in to comment.