Skip to content

Commit 5372935

Browse files
committed
merge with dev
2 parents 4d48a46 + 0b97b4b commit 5372935

24 files changed

+474
-215
lines changed

CHANGELOG.JSON

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,26 @@
99
"enhancements": [
1010
"`FilePicker`: Stock images option added [#593](https://github.com/pnp/sp-dev-fx-controls-react/issues/593)",
1111
"`TaxonomyPicker`: Add the 'required' property [#216](https://github.com/pnp/sp-dev-fx-controls-react/issues/216)",
12-
"`TaxonomyPicker`: Add `errorMessage` and `onGetErrorMessage` props [#600](https://github.com/pnp/sp-dev-fx-controls-react/pull/600)"
12+
"`TaxonomyPicker`: Add `errorMessage` and `onGetErrorMessage` props [#600](https://github.com/pnp/sp-dev-fx-controls-react/pull/600)",
13+
"`ListItemPicker`: ability to use substring search instead of startswith [#583](https://github.com/pnp/sp-dev-fx-controls-react/issues/583)",
14+
"`Map`: return display name and address details for the location [#585](https://github.com/pnp/sp-dev-fx-controls-react/issues/585)",
15+
"`Map`: support for draggable and static Bing maps [#586](https://github.com/pnp/sp-dev-fx-controls-react/issues/586)",
16+
"`TaxonomyPicker`: onLoad validation [#602](https://github.com/pnp/sp-dev-fx-controls-react/issues/602)"
1317
],
1418
"fixes": [
1519
"`ComboBoxListItemPicker`: fetching only 100 items [#569](https://github.com/pnp/sp-dev-fx-controls-react/issues/569)",
1620
"`TaxonomyPicker`: browse (tree view) doesn't work with SP 2016 On-Premises [#183](https://github.com/pnp/sp-dev-fx-controls-react/issues/183)",
1721
"`FilePicker`: default tab when opened shows hidden RecentTab [#477](https://github.com/pnp/sp-dev-fx-controls-react/issues/477)",
18-
"`PeoplePicker`: The required error message not showing [#590](https://github.com/pnp/sp-dev-fx-controls-react/issues/590)"
22+
"`PeoplePicker`: The required error message not showing [#590](https://github.com/pnp/sp-dev-fx-controls-react/issues/590)",
23+
"`ListItemAttachments`: fails in Microsoft Teams Tab SPFx applications [#582](fails in Microsoft Teams Tab SPFx applications)",
24+
"`Carousel`: Changing pages doesn't work [#609](https://github.com/pnp/sp-dev-fx-controls-react/issues/609)",
25+
"`TaxonomyPicker`: no suggestions are displayed if `anchorId` is not set",
26+
"`TaxonomyPicker`: Suggestion/match does not work as expected [#604](https://github.com/pnp/sp-dev-fx-controls-react/issues/604)"
1927
]
2028
},
2129
"contributions": [
30+
"[geltapatio](https://github.com/geltapatio)",
31+
"[Joel Jeffery](https://github.com/joeljeffery)",
2232
"[Piotr Siatka](https://github.com/siata13)"
2333
]
2434
},

docs/documentation/docs/controls/ListItemAttachments.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,6 @@ The `ListItemAttachments` control can be configured with the following propertie
4141
| listId | string | yes | Guid of the list. |
4242
| webUrl | string | no | URL of the site. By default it uses the current site URL. |
4343
| disabled | boolean | no | Specifies if the control is disabled or not. |
44+
| openAttachmentsInNewWindow | boolean | no | Specifies if the attachment should be openend in a separate browser tab. Use this property set to `true` if you plan to use the component in Microsoft Teams. |
4445

4546
![](https://telemetry.sharepointpnp.com/sp-dev-fx-controls-react/wiki/controls/ListItemAttachments)

docs/documentation/docs/controls/ListItemPicker.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,6 @@ The `ListItemPicker` control can be configured with the following properties:
6161
| disabled | boolean | no | Specifies if the control is disabled or not. |
6262
| filter | string | no | condition to filter list Item, same as $filter ODATA parameter|
6363
| placeholder | string | no | Short text hint to display in empty picker |
64+
| substringSearch | boolean | no | Specifies if substring search should be used |
6465

6566
![](https://telemetry.sharepointpnp.com/sp-dev-fx-controls-react/wiki/controls/ListItemPicker)

docs/documentation/docs/controls/Map.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ The `Map` control can be configured with the following properties:
4848
| ---- | ---- | ---- | ---- | ---- |
4949
| latitude | number | yes | Latitude of the map to display. | |
5050
| longitude | number | yes | Longitude of the map to display. | |
51+
| displayName | string | no | Display Name of the location. | |
52+
| address | any | no | Address of the location. | |
5153

5254
`MapType` enum:
5355

docs/documentation/docs/controls/TaxonomyPicker.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ The TaxonomyPicker control can be configured with the following properties:
164164
| anchorId | string | no | Set the anchorid to a child term in the TermSet to be able to select terms from that level and below. |
165165
| termActions | ITermActions | no | Allows to execute custom action on the term like e.g. get other term labelsITermActions. |
166166
| hideTagsNotAvailableForTagging | boolean | no | Specifies if the tags marked with 'Available for tagging' = false should be hidden |
167+
| validateOnLoad | boolean | no | Specifies if the initial values will be validated, when the component is loaded. Default value is false |
167168
| hideDeprecatedTags | boolean | no | Specifies if deprecated tags should be hidden |
168169
| placeholder | string | no | Short text hint to display in empty picker |
169170
| errorMessage | string | no | Static error message displayed below the picker. Use `onGetErrorMessage` to dynamically change the error message displayed (if any) based on the current value. `errorMessage` and `onGetErrorMessage` are mutually exclusive (`errorMessage` takes precedence). |

0 commit comments

Comments
 (0)