Skip to content

Commit

Permalink
Merge pull request #1291 from pnp/dev
Browse files Browse the repository at this point in the history
3.10.0
  • Loading branch information
AJIXuMuK authored Aug 24, 2022
2 parents 15e346c + 7bf34cb commit 256d4a7
Show file tree
Hide file tree
Showing 255 changed files with 10,194 additions and 12,262 deletions.
361 changes: 361 additions & 0 deletions .eslintrc.js

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,6 @@ docs/documentation/site

# release
release
*.scss.d.ts
*.scss.d.ts

.heft
2 changes: 1 addition & 1 deletion .yo-rc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"@microsoft/generator-sharepoint": {
"version": "1.14.0",
"version": "1.15.2",
"libraryName": "sp-dev-fx-controls-react",
"libraryId": "92b1e52c-a5fa-490a-bcf4-76080f39442c",
"environment": "spo",
Expand Down
20 changes: 20 additions & 0 deletions CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
{
"versions": [
{
"version": "3.10.0",
"changes": {
"new": [],
"enhancements": [
"`DynamicForm`: possibility to override field rendering for individual fields [#1257](https://github.com/pnp/sp-dev-fx-controls-react/issues/1257)",
"`ModernTaxonomyPicker`: Display the full path of a term [#1172](https://github.com/pnp/sp-dev-fx-controls-react/issues/1172)",
"SharePoint Framework v1.15.2 support [#1261](https://github.com/pnp/sp-dev-fx-controls-react/pull/1261)"
],
"fixes": [
"`DateTimePicker`: `onChange` not triggered when clearing date [#1277](https://github.com/pnp/sp-dev-fx-controls-react/issues/1277)"
]
},
"contributions": [
"[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)"
]
},
{
"version": "3.9.0",
"changes": {
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Releases

## 3.10.0

### Enhancements

- `DynamicForm`: possibility to override field rendering for individual fields [#1257](https://github.com/pnp/sp-dev-fx-controls-react/issues/1257)
- `ModernTaxonomyPicker`: Display the full path of a term [#1172](https://github.com/pnp/sp-dev-fx-controls-react/issues/1172)
- SharePoint Framework v1.15.2 support [#1261](https://github.com/pnp/sp-dev-fx-controls-react/pull/1261)

### Fixes

- `DateTimePicker`: `onChange` not triggered when clearing date [#1277](https://github.com/pnp/sp-dev-fx-controls-react/issues/1277)

### Contributors

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).

## 3.9.0

### New control(s)
Expand Down
16 changes: 16 additions & 0 deletions docs/documentation/docs/about/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Releases

## 3.10.0

### Enhancements

- `DynamicForm`: possibility to override field rendering for individual fields [#1257](https://github.com/pnp/sp-dev-fx-controls-react/issues/1257)
- `ModernTaxonomyPicker`: Display the full path of a term [#1172](https://github.com/pnp/sp-dev-fx-controls-react/issues/1172)
- SharePoint Framework v1.15.2 support [#1261](https://github.com/pnp/sp-dev-fx-controls-react/pull/1261)

### Fixes

- `DateTimePicker`: `onChange` not triggered when clearing date [#1277](https://github.com/pnp/sp-dev-fx-controls-react/issues/1277)

### Contributors

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).

## 3.9.0

### New control(s)
Expand Down
1 change: 1 addition & 0 deletions docs/documentation/docs/controls/DynamicForm.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,4 @@ The `DynamicForm` can be configured with the following properties:
| onCancelled | () => void | no | Handler when form has been cancelled. |
| returnListItemInstanceOnSubmit | boolean | no | Specifies if `onSubmitted` event should pass PnPJS list item (`IItem`) as a second parameter. Default - `true` |
| webAbsoluteUrl | string | no | Absolute Web Url of target site (user requires permissions). |
| 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. |
1 change: 1 addition & 0 deletions docs/documentation/docs/controls/ModernTaxonomyPicker.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ The ModernTaxonomyPicker control can be configured with the following properties
| isLightDismiss | boolean | no | Whether the panel can be light dismissed. |
| isBlocking | boolean | no | Whether the panel uses a modal overlay or not. |
| onRenderActionButton | function | no | Optional custom renderer for adding e.g. a button with additional actions to the terms in the tree view. |
| isPathRendered | boolean | no | Whether the terms will be rendered with the term label or the full path up to the root. |

## Standalone TaxonomyTree control

Expand Down
Loading

0 comments on commit 256d4a7

Please sign in to comment.