Skip to content

Commit

Permalink
Fixed #16180 | ColumnFilter: Template names are wrong.
Browse files Browse the repository at this point in the history
  • Loading branch information
mehmetcetin01140 committed Nov 11, 2024
1 parent 6438500 commit ae60c7d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions packages/primeng/src/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 ae60c7d

Please sign in to comment.