Skip to content

Commit

Permalink
Fix primefaces#4129: MutliSelect typescript filter update
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Mar 3, 2023
1 parent 3072230 commit 71ef13e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions components/lib/multiselect/multiselect.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,32 @@ interface MultiSelectFilterOptions {
reset?: () => void;
}

/**
* Custom filter template options.
*/
interface MultiSelectTemplateOptions {
/**
* Style class of the filter.
*/
className: string;
/**
* The filter element.
*/
element: HTMLDivElement;
/**
* Style class of the filter icon.
*/
filterIconClassName: string;
/**
* The filter input options.
*/
filterOptions?: MultiSelectFilterOptions;
/**
* The props of multiselect header.
*/
props?: any;
}

/**
* Defines valid properties in MultiSelect component. In addition to these, all properties of HTMLDivElement can be used in this component.
* @group Properties
Expand Down

0 comments on commit 71ef13e

Please sign in to comment.