Skip to content

Commit

Permalink
Merge pull request #16198 from primefaces/issue-16180
Browse files Browse the repository at this point in the history
Fix template names, fixes #16180
  • Loading branch information
cetincakiroglu authored Aug 8, 2024
2 parents 8c6e585 + 7c6f44c commit 542abf4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/app/components/table/columnfilter.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export interface TableColumnFilterTemplates {
/**
* Custom filter template.
*/
filterTemplate(context: {
filter(context: {
/**
* filterConstraint.value.
*/
Expand Down Expand Up @@ -74,27 +74,27 @@ export interface TableColumnFilterTemplates {
/**
* Custom header template.
*/
headerTemplate(): TemplateRef<any>;
header(): TemplateRef<any>;
/**
* Custom footer template.
*/
footerTemplate(): TemplateRef<any>;
footer(): TemplateRef<any>;
/**
* Custom filter icon template.
*/
filterIconTemplate(): TemplateRef<any>;
filtericon(): TemplateRef<any>;
/**
* Custom remove rule icon template.
*/
removeRuleIconTemplate(): TemplateRef<any>;
removeruleicon(): TemplateRef<any>;
/**
* Custom add rule icon template.
*/
addRuleIconTemplate(): TemplateRef<any>;
addruleicon(): TemplateRef<any>;
/**
* Custom clear filter icon template.
*/
clearFilterIconTemplate(): TemplateRef<any>;
clearfiltericon(): TemplateRef<any>;
}

/**
Expand Down

0 comments on commit 542abf4

Please sign in to comment.