-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(core): expose all Extensions in new getter prop & fix draggable (#…
…29) * feat(core): expose all Extensions in new getter prop & fix draggable - also renamed the SharedService.grid to SharedService.slickGrid to align with the vanilla bundle `slickGrid` property - also fixed the Draggable Grouping example that was not working, apparently the option `enableColumnReorder` can be a callback function as well as a boolean
- Loading branch information
1 parent
7dc2e6f
commit 07257b2
Showing
55 changed files
with
255 additions
and
229 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
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
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,3 @@ | ||
import { Column, SlickGrid } from '../interfaces/index'; | ||
|
||
export type ColumnReorderFunction = (grid: SlickGrid, headers: HTMLElement[], headerColumnWidthDiff: any, setColumns: (col: Column) => void, setupColumnResize: () => void, columns: Column[], getColumnIndex: number, uid: string, trigger: boolean) => 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { ExtensionName, SlickControlList, SlickPluginList } from './index'; | ||
import { Extension, ExtensionModel } from '../interfaces/index'; | ||
|
||
export type ExtensionList<P extends (SlickControlList | SlickPluginList), E extends Extension> = Record<ExtensionName, ExtensionModel<P, E>>; |
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 |
---|---|---|
|
@@ -4,4 +4,4 @@ export enum GridStateType { | |
pagination = 'pagination', | ||
rowSelection = 'rowSelection', | ||
sorter = 'sorter', | ||
}; | ||
} |
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,20 +1,22 @@ | ||
export * from './caseType.enum'; | ||
export * from './delimiterType.enum'; | ||
export * from './emitterType.enum'; | ||
export * from './eventNamingStyle.enum'; | ||
export * from './extensionName.enum'; | ||
export * from './fieldType.enum'; | ||
export * from './extensionList.type'; | ||
export * from './eventNamingStyle.enum'; | ||
export * from './emitterType.enum'; | ||
export * from './fileType.enum'; | ||
export * from './delimiterType.enum'; | ||
export * from './columnReorderFunction.type'; | ||
export * from './extensionName.enum'; | ||
export * from './filterMultiplePassType.enum'; | ||
export * from './filterMultiplePassTypeString.type'; | ||
export * from './gridAutosizeColsMode.enum'; | ||
export * from './gridStateType.enum'; | ||
export * from './keyCode.enum'; | ||
export * from './operatorString.type'; | ||
export * from './operatorType.enum'; | ||
export * from './slickControlList.enum'; | ||
export * from './slickPluginList.enum'; | ||
export * from './sortDirection.enum'; | ||
export * from './sortDirectionString.type'; | ||
export * from './sortDirectionNumber.enum'; | ||
export * from './sortDirection.enum'; | ||
export * from './slickPluginList.enum'; | ||
export * from './slickControlList.enum'; | ||
export * from './searchTerm.type'; | ||
export * from './sortDirectionString.type'; | ||
export * from './operatorType.enum'; | ||
export * from './operatorString.type'; | ||
export * from './keyCode.enum'; | ||
export * from './gridStateType.enum'; | ||
export * from './gridAutosizeColsMode.enum'; | ||
export * from './filterMultiplePassTypeString.type'; |
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
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
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
Oops, something went wrong.