-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed #14397 - Add missing template & update documentation
- Loading branch information
1 parent
4a9c09c
commit 4d23352
Showing
3 changed files
with
421 additions
and
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import { TemplateRef } from '@angular/core'; | ||
|
||
/** | ||
* Defines valid templates in Column Filter. | ||
* @group Templates | ||
*/ | ||
export interface TableColumnFilterTemplates { | ||
/** | ||
* Custom filter template. | ||
*/ | ||
filterTemplate(): TemplateRef<any>; | ||
/** | ||
* Custom header template. | ||
*/ | ||
headerTemplate(): TemplateRef<any>; | ||
/** | ||
* Custom footer template. | ||
*/ | ||
footerTemplate(): TemplateRef<any>; | ||
/** | ||
* Custom filter icon template. | ||
*/ | ||
filterIconTemplate(): TemplateRef<any>; | ||
/** | ||
* Custom remove rule icon template. | ||
*/ | ||
removeRuleIconTemplate(): TemplateRef<any>; | ||
/** | ||
* Custom add rule icon template. | ||
*/ | ||
addRuleIconTemplate(): TemplateRef<any>; | ||
/** | ||
* Custom clear filter icon template. | ||
*/ | ||
clearFilterIconTemplate(): TemplateRef<any>; | ||
} |
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.