@@ -15,7 +15,7 @@ export interface IPeoplePickerProps {
1515 context : BaseComponentContext ;
1616 /**
1717 * Text of the Control
18- */
18+ */
1919 titleText ?: string ;
2020 /**
2121 * Web Absolute Url of source site. When this is provided, a search request is done to the local site.
@@ -32,7 +32,7 @@ export interface IPeoplePickerProps {
3232 /**
3333 * Id of SharePoint Group (Number) or Office365 Group (String)
3434 */
35- groupId ?: number | string | ( string | number ) [ ] ;
35+ groupId ?: number | string | ( string | number ) [ ] ;
3636 /**
3737 * Maximum number of suggestions to show in the full suggestion list. (default: 5)
3838 */
@@ -79,7 +79,7 @@ export interface IPeoplePickerProps {
7979 /**
8080 * Prop to validate contents on blur
8181 */
82- validateOnFocusOut ?: boolean ;
82+ validateOnFocusOut ?: boolean ;
8383 /**
8484 * Method to check value of People Picker text
8585 */
@@ -93,8 +93,8 @@ export interface IPeoplePickerProps {
9393 */
9494 tooltipDirectional ?: DirectionalHint ;
9595 /**
96- * Class Name for the whole People picker control
97- */
96+ * Class Name for the whole People picker control
97+ */
9898 peoplePickerWPclassName ?: string ;
9999 /**
100100 * Class Name for the People picker control
@@ -129,10 +129,14 @@ export interface IPeoplePickerProps {
129129 * Placeholder to be displayed in an empty term picker
130130 */
131131 placeholder ?: string ;
132- /**
132+ /**
133133 * styles to apply on control
134134 */
135- styles ?: Partial < IBasePickerStyles > ;
135+ styles ?: Partial < IBasePickerStyles > ;
136+ /**
137+ * Define a filter to be applied to the search results, such as a filter to only show users from a specific domain
138+ */
139+ resultFilter ?: ( result : IPersonaProps [ ] ) => IPersonaProps [ ] ;
136140}
137141
138142export interface IPeoplePickerState {
0 commit comments