Skip to content

Commit 8c229e9

Browse files
committed
Updated changelog + suggestionsLimit property included
1 parent 152cd88 commit 8c229e9

File tree

4 files changed

+28
-24
lines changed

4 files changed

+28
-24
lines changed

CHANGELOG.JSON

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,13 @@
1313
"`PeoplePicker`: Remove Messagebar error handling to match Office UI Fabric field error styling [#140](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/140)",
1414
"`PeoplePicker`: REST API filter and nometadata header added to reduce payload [#139](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/139)",
1515
"`PeoplePicker`: Allow to set the maximum number of suggestions `suggestionsLimit` [#143](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/143) [#148](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/148)",
16-
"`TaxonomyPicker`: retreiving the terms in the correct custom sort order [#146](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/146)"
16+
"`TaxonomyPicker`: retreiving the terms in the correct custom sort order [#146](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/146)",
17+
"`PeoplePicker`: Documentation format updated to make it easier to check the default values [#159](https://github.com/SharePoint/sp-dev-fx-controls-react/pull/159)"
1718
],
1819
"fixes": []
1920
},
2021
"contributions": [
22+
"[Marc D Anderson](https://github.com/sympmarc)",
2123
"[Ole Bergtun](https://github.com/trillian74)",
2224
"[Markus Möller](https://github.com/mmsharepoint)",
2325
"[Asish Padhy](https://github.com/AsishP)",

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@
1313
- `PeoplePicker`: REST API filter and nometadata header added to reduce payload [#139](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/139)
1414
- `PeoplePicker`: Allow to set the maximum number of suggestions `suggestionsLimit` [#143](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/143) [#148](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/148)
1515
- `TaxonomyPicker`: retreiving the terms in the correct custom sort order [#146](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/146)
16+
- `PeoplePicker`: Documentation format updated to make it easier to check the default values [#159](https://github.com/SharePoint/sp-dev-fx-controls-react/pull/159)
1617

1718
### Contributors
1819

19-
Special thanks to our contributors (in alphabetical order): [Ole Bergtun](https://github.com/trillian74), [Asish Padhy](https://github.com/AsishP), [PooLP](https://github.com/PooLP), [Gautam Sheth](https://github.com/gautamdsheth), [Tse Kit Yam](https://github.com/tsekityam).
20+
Special thanks to our contributors (in alphabetical order): [Marc D Anderson](https://github.com/sympmarc), [Ole Bergtun](https://github.com/trillian74), [Markus Möller](https://github.com/mmsharepoint), [Asish Padhy](https://github.com/AsishP), [PooLP](https://github.com/PooLP), [Gautam Sheth](https://github.com/gautamdsheth), [Tse Kit Yam](https://github.com/tsekityam).
2021

2122
## 1.9.0
2223

docs/documentation/docs/about/release-notes.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@
1313
- `PeoplePicker`: REST API filter and nometadata header added to reduce payload [#139](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/139)
1414
- `PeoplePicker`: Allow to set the maximum number of suggestions `suggestionsLimit` [#143](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/143) [#148](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/148)
1515
- `TaxonomyPicker`: retreiving the terms in the correct custom sort order [#146](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/146)
16+
- `PeoplePicker`: Documentation format updated to make it easier to check the default values [#159](https://github.com/SharePoint/sp-dev-fx-controls-react/pull/159)
1617

1718
### Contributors
1819

19-
Special thanks to our contributors (in alphabetical order): [Ole Bergtun](https://github.com/trillian74), [Asish Padhy](https://github.com/AsishP), [PooLP](https://github.com/PooLP), [Gautam Sheth](https://github.com/gautamdsheth), [Tse Kit Yam](https://github.com/tsekityam).
20+
Special thanks to our contributors (in alphabetical order): [Marc D Anderson](https://github.com/sympmarc), [Ole Bergtun](https://github.com/trillian74), [Markus Möller](https://github.com/mmsharepoint), [Asish Padhy](https://github.com/AsishP), [PooLP](https://github.com/PooLP), [Gautam Sheth](https://github.com/gautamdsheth), [Tse Kit Yam](https://github.com/tsekityam).
2021

2122
## 1.9.0
2223

docs/documentation/docs/controls/PeoplePicker.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -52,27 +52,27 @@ private _getPeoplePickerItems(items: any[]) {
5252

5353
The People picker control can be configured with the following properties:
5454

55-
| Property | Type | Required | Description |
56-
| ---- | ---- | ---- | ---- |
57-
| context | WebPartContext | yes | Context of the current web part. |
58-
| titleText | string | yes | Text to be displayed on the control |
59-
| groupName | string | no | group from which users are fetched. Leave it blank if need to filter all users |
60-
| personSelectionLimit | number | no | Defines the limit of people that can be selected in the control|
61-
| isRequired | boolean | no | Set if the control is required or not |
62-
| disabled | boolean | no | Set if the control is disabled or not |
63-
| errorMessage | string | no | Specify the error message to display |
64-
| errorMessageClassName | string | no | applies custom styling to the error message section|
65-
| showtooltip | boolean | no | Defines if need a tooltip or not |
66-
| tooltip | string | no | Specify the tooltip message to display |
67-
| tooltipDirectional | DirectionalHint | no | Direction where the tooltip would be shown |
68-
| selectedItems | function | no | get the selected users in the control |
69-
| peoplePickerWPclassName | string | no | applies custom styling to the people picker element |
70-
| peoplePickerCntrlclassName | string | no | applies custom styling to the people picker control only |
71-
| defaultSelectedUsers | string[] | no | Default selected user emails |
72-
| webAbsoluteUrl | string | no | Specify the site URL on which you want to perform the user query call. Default is the current site URL. |
73-
| showHiddenInUI | boolean | no | Show users which are hidden from the UI. By default these users/groups hidden for the UI will not be shown. |
74-
| principleTypes | PrincipleType[] | no | Define which type of data you want to retrieve: User, SharePoint groups, Security groups. Multiple are possible. |
75-
| suggestionsLimit | number | no | Maximum number of suggestions to show in the full suggestion list. Default is 5. |
55+
| Property | Type | Required | Description | Default |
56+
| ---- | ---- | ---- | ---- | ---- |
57+
| context | WebPartContext | yes | Context of the current web part. | |
58+
| titleText | string | yes | Text to be displayed on the control | |
59+
| groupName | string | no | group from which users are fetched. Leave it blank if need to filter all users | _none_ |
60+
| personSelectionLimit | number | no | Defines the limit of people that can be selected in the control | |
61+
| isRequired | boolean | no | Set if the control is required or not | false |
62+
| disabled | boolean | no | Set if the control is disabled or not | false |
63+
| errorMessage | string | no | Specify the error message to display | |
64+
| errorMessageClassName | string | no | applies custom styling to the error message section | |
65+
| showtooltip | boolean | no | Defines if need a tooltip or not | false |
66+
| tooltip | string | no | Specify the tooltip message to display | |
67+
| tooltipDirectional | DirectionalHint | no | Direction where the tooltip would be shown | |
68+
| selectedItems | function | no | get the selected users in the control | |
69+
| peoplePickerWPclassName | string | no | applies custom styling to the people picker element | |
70+
| peoplePickerCntrlclassName | string | no | applies custom styling to the people picker control only | |
71+
| defaultSelectedUsers | string[] | no | Default selected user emails | |
72+
| webAbsoluteUrl | string | no | Specify the site URL on which you want to perform the user query call. | Current site URL |
73+
| showHiddenInUI | boolean | no | Show users which are hidden from the UI. By default these users/groups hidden for the UI will not be shown. | false |
74+
| principleTypes | PrincipleType[] | no | Define which type of data you want to retrieve: User, SharePoint groups, Security groups. Multiple are possible. | |
75+
| suggestionsLimit | number | no | Maximum number of suggestions to show in the full suggestion list. | 5 |
7676

7777
Enum `PrincipalType`
7878

0 commit comments

Comments
 (0)