@@ -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 */
@@ -75,7 +75,7 @@ export interface IPeoplePickerProps {
7575 /**
7676 * Prop to validate contents on blur
7777 */
78- validateOnFocusOut ?: boolean ;
78+ validateOnFocusOut ?: boolean ;
7979 /**
8080 * Method to check value of People Picker text
8181 */
@@ -89,8 +89,8 @@ export interface IPeoplePickerProps {
8989 */
9090 tooltipDirectional ?: DirectionalHint ;
9191 /**
92- * Class Name for the whole People picker control
93- */
92+ * Class Name for the whole People picker control
93+ */
9494 peoplePickerWPclassName ?: string ;
9595 /**
9696 * Class Name for the People picker control
@@ -125,10 +125,14 @@ export interface IPeoplePickerProps {
125125 * Placeholder to be displayed in an empty term picker
126126 */
127127 placeholder ?: string ;
128- /**
128+ /**
129129 * styles to apply on control
130130 */
131- styles ?: Partial < IBasePickerStyles > ;
131+ styles ?: Partial < IBasePickerStyles > ;
132+ /**
133+ * Define a filter to be applied to the search results, such as a filter to only show users from a specific domain
134+ */
135+ resultFilter ?: ( result : IPersonaProps [ ] ) => IPersonaProps [ ] ;
132136}
133137
134138export interface IPeoplePickerState {
0 commit comments