-
-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
prepare release 0.14.4 and try new packagr way of bundling
- Loading branch information
Ghislain Beaulac
authored and
Ghislain Beaulac
committed
Mar 27, 2018
1 parent
6f5d8e9
commit ecdcb77
Showing
17 changed files
with
155 additions
and
81 deletions.
There are no files selected for viewing
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
5 changes: 5 additions & 0 deletions
5
dist/app/modules/angular-slickgrid/models/sortDirectionNumber.enum.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,5 @@ | ||
export declare enum SortDirectionNumber { | ||
asc = 1, | ||
desc = -1, | ||
neutral = 0, | ||
} |
3 changes: 2 additions & 1 deletion
3
dist/app/modules/angular-slickgrid/models/sorter.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
export declare type Sorter = (value1: any, value2: any, sortDirection: number) => number; | ||
import { SortDirectionNumber } from './sortDirectionNumber.enum'; | ||
export declare type Sorter = (value1: any, value2: any, sortDirection: SortDirectionNumber) => number; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
import { SortDirectionNumber } from './../models/sortDirectionNumber.enum'; | ||
export declare const Sorters: { | ||
date: (value1: any, value2: any, sortDirection: number) => number; | ||
dateIso: (value1: any, value2: any, sortDirection: number) => number; | ||
dateUs: (value1: any, value2: any, sortDirection: number) => number; | ||
dateUsShort: (value1: any, value2: any, sortDirection: number) => number; | ||
numeric: (value1: any, value2: any, sortDirection: number) => number; | ||
string: (value1: any, value2: any, sortDirection: number) => number; | ||
date: (value1: any, value2: any, sortDirection: SortDirectionNumber) => number; | ||
dateIso: (value1: any, value2: any, sortDirection: SortDirectionNumber) => number; | ||
dateUs: (value1: any, value2: any, sortDirection: SortDirectionNumber) => number; | ||
dateUsShort: (value1: any, value2: any, sortDirection: SortDirectionNumber) => number; | ||
numeric: (value1: any, value2: any, sortDirection: SortDirectionNumber) => number; | ||
string: (value1: any, value2: any, sortDirection: SortDirectionNumber) => number; | ||
}; |
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.