You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,13 @@
1
1
# Releases
2
2
3
+
## 1.5.0
4
+
5
+
**Enhancements**
6
+
7
+
-`PropertyFieldListPicker` control extended with select all lists option [#8](https://github.com/SharePoint/sp-dev-fx-property-controls/issues/8)
8
+
-`PropertyFieldTermPicker` control extended with the ability to search terms by typing in the textbox [#11](https://github.com/SharePoint/sp-dev-fx-property-controls/issues/11)[#42](https://github.com/SharePoint/sp-dev-fx-property-controls/issues/42)[#44](https://github.com/SharePoint/sp-dev-fx-property-controls/issues/44)[#45](https://github.com/SharePoint/sp-dev-fx-property-controls/issues/45)
9
+
-`SPTermStorePickerService` has a new interface which contains only the required properties
Copy file name to clipboardExpand all lines: docs/documentation/docs/about/release-notes.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,13 @@
1
1
# Releases
2
2
3
+
## 1.5.0
4
+
5
+
**Enhancements**
6
+
7
+
-`PropertyFieldListPicker` control extended with select all lists option [#8](https://github.com/SharePoint/sp-dev-fx-property-controls/issues/8)
8
+
-`PropertyFieldTermPicker` control extended with the ability to search terms by typing in the textbox [#11](https://github.com/SharePoint/sp-dev-fx-property-controls/issues/11)[#42](https://github.com/SharePoint/sp-dev-fx-property-controls/issues/42)[#44](https://github.com/SharePoint/sp-dev-fx-property-controls/issues/44)[#45](https://github.com/SharePoint/sp-dev-fx-property-controls/issues/45)
9
+
-`SPTermStorePickerService` has a new interface which contains only the required properties
Copy file name to clipboardExpand all lines: docs/documentation/docs/controls/PropertyFieldListPicker.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,9 @@ The `PropertyFieldListPicker` control can be configured with the following prope
62
62
| includeHidden | boolean | no | Specify if you want to include hidden lists in the list picker. By default this is set to `true`. |
63
63
| orderBy | PropertyFieldListPickerOrderBy | no | Specify the property on which you want to order the retrieve set of lists. |
64
64
| multiSelect | boolean | no | Specify if you want to have a single or multi-list picker. By default this is set to `false` (single list picker). |
65
+
| showSelectAll | boolean | no | Specify if you want the Select All checkbox. By default this is set to `false` (mult-list picker only). |
66
+
| selectAllInList | boolean | no | Specify where to show the Select All checkbox. When false (default), checkbox is shown before the label, when true it is shown with the lists (mult-list picker only). |
67
+
| selectAllInListLabel | string | no | The label to use for the in list select all checkbox (mult-list picker only). |
65
68
| onPropertyChange | function | yes | Defines a onPropertyChange function to raise when the date gets changed. |
66
69
| properties | any | yes | Parent web part properties, this object is use to update the property value. |
67
70
| key | string | yes | An unique key that indicates the identity of this control. |
| disabled | boolean | no | Specify if the control needs to be disabled. |
75
79
| context | WebPartContext | yes | Context of the current web part. |
76
-
| initialValues |ICheckedTerms| no | Defines the selected by default term sets. |
80
+
| initialValues |IPickerTerms| no | Defines the selected by default term sets. |
77
81
| allowMultipleSelections | boolean | no | Defines if the user can select only one or many term sets. Default value is false. |
78
82
| excludeSystemGroup | boolean | no | Indicator to define if the system Groups are exclude. Default is false. |
79
83
| limitByGroupNameOrID | string | no | Limit the term sets that can be used by the group name or ID. |
@@ -85,13 +89,15 @@ The `PropertyFieldTermPicker` control can be configured with the following prope
85
89
| onGetErrorMessage | function | no | The method is used to get the validation error message and determine whether the input value is valid or not. See [this documentation](https://dev.office.com/sharepoint/docs/spfx/web-parts/guidance/validate-web-part-property-values) to learn how to use it. |
86
90
| deferredValidationTime | number | no | Control will start to validate after users stop typing for `deferredValidationTime` milliseconds. Default value is 200. |
87
91
88
-
Interface `ICheckedTerms`
92
+
Interface `IPickerTerms`
89
93
90
94
| Property | Type | Required | Description |
91
95
| ---- | ---- | ---- | ---- |
92
-
|id| string | yes | The ID of the term |
96
+
|key| string | yes | The ID of the term |
93
97
| name | string | yes | The name of the term |
94
98
| path | string | yes | The path of the term |
95
-
| termSet | string | yes | The parent term set of the term |
99
+
| termSet | string | yes | The Id of the parent term set of the term |
100
+
| termSetName | string | no | The Name of the parent term set of the term |
0 commit comments