primeng 17.18.7 → 17.18.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,7 +8,7 @@ export interface TableColumnFilterTemplates {
8
8
  /**
9
9
  * Custom filter template.
10
10
  */
11
- filterTemplate(context: {
11
+ filter(context: {
12
12
  /**
13
13
  * filterConstraint.value.
14
14
  */
@@ -73,27 +73,27 @@ export interface TableColumnFilterTemplates {
73
73
  /**
74
74
  * Custom header template.
75
75
  */
76
- headerTemplate(): TemplateRef<any>;
76
+ header(): TemplateRef<any>;
77
77
  /**
78
78
  * Custom footer template.
79
79
  */
80
- footerTemplate(): TemplateRef<any>;
80
+ footer(): TemplateRef<any>;
81
81
  /**
82
82
  * Custom filter icon template.
83
83
  */
84
- filterIconTemplate(): TemplateRef<any>;
84
+ filtericon(): TemplateRef<any>;
85
85
  /**
86
86
  * Custom remove rule icon template.
87
87
  */
88
- removeRuleIconTemplate(): TemplateRef<any>;
88
+ removeruleicon(): TemplateRef<any>;
89
89
  /**
90
90
  * Custom add rule icon template.
91
91
  */
92
- addRuleIconTemplate(): TemplateRef<any>;
92
+ addruleicon(): TemplateRef<any>;
93
93
  /**
94
94
  * Custom clear filter icon template.
95
95
  */
96
- clearFilterIconTemplate(): TemplateRef<any>;
96
+ clearfiltericon(): TemplateRef<any>;
97
97
  }
98
98
  /**
99
99
  * Defines valid properties in ColumnFilter component.