-
-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ghislain Beaulac
authored and
Ghislain Beaulac
committed
Nov 10, 2017
1 parent
2ecb6cf
commit 83eaeac
Showing
43 changed files
with
649 additions
and
48,501 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
15,781 changes: 135 additions & 15,646 deletions
15,781
dist/angular-slickgrid/angular-slickgrid.es5.js
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
dist/src/app/modules/angular-slickgrid/formatters/arrayToCsvFormatter.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
import { Formatter } from './../models/formatter.interface'; | ||
export declare const arrayToCsvFormatter: Formatter; |
2 changes: 2 additions & 0 deletions
2
dist/src/app/modules/angular-slickgrid/formatters/hyperlinkFormatter.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
import { Formatter } from './../models/formatter.interface'; | ||
export declare const hyperlinkFormatter: Formatter; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
dist/src/app/modules/angular-slickgrid/models/onEventArgs.interface.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
dist/src/app/modules/angular-slickgrid/services/gridEvent.service.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
import { GridOption } from './../models'; | ||
export declare class GridEventService { | ||
attachOnMouseHover(grid: any): void; | ||
attachOnCellChange(grid: any, gridOptions: GridOption, dataView: any): void; | ||
attachOnClick(grid: any, gridOptions: GridOption, dataView: any): void; | ||
} |
18 changes: 18 additions & 0 deletions
18
dist/src/app/modules/angular-slickgrid/services/gridExtra.service.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
export declare class GridExtraService { | ||
private _grid; | ||
private _dataView; | ||
init(grid: any, dataView: any): void; | ||
/** Chain the item Metadata with our implementation of Metadata at given row index */ | ||
getItemRowMetadata(previousItemMetadata: any): (rowNumber: number) => { | ||
cssClasses: string; | ||
}; | ||
/** | ||
* Highlight then fade a row for x seconds. | ||
* The implementation follows this SO answer: https://stackoverflow.com/a/19985148/1212166 | ||
* @param {number} rowNumber | ||
* @param {number} fadeDelay | ||
*/ | ||
highlightRow(rowNumber: number, fadeDelay?: number): void; | ||
setSelectedRow(rowIndex: number): void; | ||
setSelectedRows(rowIndexes: number[]): void; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.