Skip to content

Commit 256d4a7

Browse files
authored
Merge pull request pnp#1291 from pnp/dev
3.10.0
2 parents 15e346c + 7bf34cb commit 256d4a7

File tree

255 files changed

+10194
-12262
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

255 files changed

+10194
-12262
lines changed

.eslintrc.js

Lines changed: 361 additions & 0 deletions
Large diffs are not rendered by default.

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,6 @@ docs/documentation/site
4242

4343
# release
4444
release
45-
*.scss.d.ts
45+
*.scss.d.ts
46+
47+
.heft

.yo-rc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"@microsoft/generator-sharepoint": {
3-
"version": "1.14.0",
3+
"version": "1.15.2",
44
"libraryName": "sp-dev-fx-controls-react",
55
"libraryId": "92b1e52c-a5fa-490a-bcf4-76080f39442c",
66
"environment": "spo",

CHANGELOG.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
{
22
"versions": [
3+
{
4+
"version": "3.10.0",
5+
"changes": {
6+
"new": [],
7+
"enhancements": [
8+
"`DynamicForm`: possibility to override field rendering for individual fields [#1257](https://github.com/pnp/sp-dev-fx-controls-react/issues/1257)",
9+
"`ModernTaxonomyPicker`: Display the full path of a term [#1172](https://github.com/pnp/sp-dev-fx-controls-react/issues/1172)",
10+
"SharePoint Framework v1.15.2 support [#1261](https://github.com/pnp/sp-dev-fx-controls-react/pull/1261)"
11+
],
12+
"fixes": [
13+
"`DateTimePicker`: `onChange` not triggered when clearing date [#1277](https://github.com/pnp/sp-dev-fx-controls-react/issues/1277)"
14+
]
15+
},
16+
"contributions": [
17+
"[Bart-Jan Dekker](https://github.com/bjdekker)",
18+
"[Edin Kapic](https://github.com/ekapic)",
19+
"[Milan Holemans](https://github.com/milanholemans)",
20+
"[Steve Beaugé](https://github.com/stevebeauge)"
21+
]
22+
},
323
{
424
"version": "3.9.0",
525
"changes": {

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Releases
22

3+
## 3.10.0
4+
5+
### Enhancements
6+
7+
- `DynamicForm`: possibility to override field rendering for individual fields [#1257](https://github.com/pnp/sp-dev-fx-controls-react/issues/1257)
8+
- `ModernTaxonomyPicker`: Display the full path of a term [#1172](https://github.com/pnp/sp-dev-fx-controls-react/issues/1172)
9+
- SharePoint Framework v1.15.2 support [#1261](https://github.com/pnp/sp-dev-fx-controls-react/pull/1261)
10+
11+
### Fixes
12+
13+
- `DateTimePicker`: `onChange` not triggered when clearing date [#1277](https://github.com/pnp/sp-dev-fx-controls-react/issues/1277)
14+
15+
### Contributors
16+
17+
Special thanks to our contributors (in alphabetical order): [Bart-Jan Dekker](https://github.com/bjdekker), [Edin Kapic](https://github.com/ekapic), [Milan Holemans](https://github.com/milanholemans), [Steve Beaugé](https://github.com/stevebeauge).
18+
319
## 3.9.0
420

521
### New control(s)

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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Releases
22

3+
## 3.10.0
4+
5+
### Enhancements
6+
7+
- `DynamicForm`: possibility to override field rendering for individual fields [#1257](https://github.com/pnp/sp-dev-fx-controls-react/issues/1257)
8+
- `ModernTaxonomyPicker`: Display the full path of a term [#1172](https://github.com/pnp/sp-dev-fx-controls-react/issues/1172)
9+
- SharePoint Framework v1.15.2 support [#1261](https://github.com/pnp/sp-dev-fx-controls-react/pull/1261)
10+
11+
### Fixes
12+
13+
- `DateTimePicker`: `onChange` not triggered when clearing date [#1277](https://github.com/pnp/sp-dev-fx-controls-react/issues/1277)
14+
15+
### Contributors
16+
17+
Special thanks to our contributors (in alphabetical order): [Bart-Jan Dekker](https://github.com/bjdekker), [Edin Kapic](https://github.com/ekapic), [Milan Holemans](https://github.com/milanholemans), [Steve Beaugé](https://github.com/stevebeauge).
18+
319
## 3.9.0
420

521
### New control(s)

docs/documentation/docs/controls/DynamicForm.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,4 @@ The `DynamicForm` can be configured with the following properties:
4444
| onCancelled | () => void | no | Handler when form has been cancelled. |
4545
| returnListItemInstanceOnSubmit | boolean | no | Specifies if `onSubmitted` event should pass PnPJS list item (`IItem`) as a second parameter. Default - `true` |
4646
| webAbsoluteUrl | string | no | Absolute Web Url of target site (user requires permissions). |
47+
| fieldOverrides | {[columnInternalName: string] : {(fieldProperties: IDynamicFieldProps): React.ReactElement\<IDynamicFieldProps\>}} | no | Key value pair for fields you want to override. Key is the internal field name, value is the function to be called for the custom element to render. |

docs/documentation/docs/controls/ModernTaxonomyPicker.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@ The ModernTaxonomyPicker control can be configured with the following properties
176176
| isLightDismiss | boolean | no | Whether the panel can be light dismissed. |
177177
| isBlocking | boolean | no | Whether the panel uses a modal overlay or not. |
178178
| onRenderActionButton | function | no | Optional custom renderer for adding e.g. a button with additional actions to the terms in the tree view. |
179+
| isPathRendered | boolean | no | Whether the terms will be rendered with the term label or the full path up to the root. |
179180

180181
## Standalone TaxonomyTree control
181182

0 commit comments

Comments
 (0)