Skip to content

Commit 2fd07a9

Browse files
author
Marcin Wojciechowski
committed
2 parents b89513f + e1a0c84 commit 2fd07a9

File tree

96 files changed

+15529
-19618
lines changed

Some content is hidden

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

96 files changed

+15529
-19618
lines changed

.circleci/config.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defaults: &defaults
22
working_directory: ~/sp-dev-fx-controls-react
33
docker:
4-
- image: circleci/node:10.22.0
4+
- image: circleci/node:12.15.0
55

66
version: 2
77
jobs:
@@ -29,12 +29,6 @@ jobs:
2929
- run:
3030
name: build
3131
command: npm run build
32-
- run:
33-
name: sonarcloud:config
34-
command: npm run sonarcloud:config $SONARCLOUD_TOKEN $CIRCLE_BRANCH
35-
- run:
36-
name: sonarcloud:start
37-
command: npm run sonarcloud:start
3832
- persist_to_workspace:
3933
root: .
4034
paths: .

.husky/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_

.husky/pre-commit

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
npm run changelog

.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.11.0",
3+
"version": "1.12.0",
44
"libraryName": "sp-dev-fx-controls-react",
55
"libraryId": "92b1e52c-a5fa-490a-bcf4-76080f39442c",
66
"environment": "spo",

CHANGELOG.JSON

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
11
{
22
"versions": [
3+
{
4+
"version": "3.1.0",
5+
"changes": {
6+
"new": [
7+
"`TeamPicker`: new Team Picker control [#846](https://github.com/pnp/sp-dev-fx-controls-react/pull/846)",
8+
"`TeamChannelPicker`: new Team Channel Picker control [#846](https://github.com/pnp/sp-dev-fx-controls-react/pull/846)"
9+
],
10+
"enhancements": [],
11+
"fixes": [
12+
"Documentation for `ListView`: typos fixes [#855](https://github.com/pnp/sp-dev-fx-controls-react/pull/855)",
13+
"Documentation fix: type on index page [#852](https://github.com/pnp/sp-dev-fx-controls-react/pull/852)",
14+
"`PeoplePicker`: error message isn't cleared after `onGetErrorMessage` returns an empty string [#841](https://github.com/pnp/sp-dev-fx-controls-react/issues/841)"
15+
]
16+
},
17+
"contributions": [
18+
"[Ari Gunawan](https://github.com/AriGunawan)",
19+
"[aroraans1512](https://github.com/aroraans1512)",
20+
"[joaojmendes](https://github.com/joaojmendes)"
21+
]
22+
},
23+
{
24+
"version": "3.0.0",
25+
"changes": {
26+
"new": [],
27+
"enhancements": [
28+
"SharePoint Framework v1.12 support (breaking change)",
29+
"Fluent UI v7 support"
30+
],
31+
"fixes": []
32+
},
33+
"contributions": []
34+
},
335
{
436
"version": "2.6.0",
537
"changes": {
@@ -20,7 +52,8 @@
2052
"`AccessibleAccordion`: documentation link is broken [#818](https://github.com/pnp/sp-dev-fx-controls-react/issues/818)",
2153
"Documentation: Controls link in the menu is broken [#821](https://github.com/pnp/sp-dev-fx-controls-react/pull/821)",
2254
"`TreeView`: Fix two potential null reference issues [#832](https://github.com/pnp/sp-dev-fx-controls-react/pull/832)",
23-
"`RichText`: Problem with bullets and number list [#795](https://github.com/pnp/sp-dev-fx-controls-react/issues/795)"
55+
"`RichText`: Problem with bullets and number list [#795](https://github.com/pnp/sp-dev-fx-controls-react/issues/795)",
56+
"`FolderPicker`: Correct FolderPicker link alignment"
2457
]
2558
},
2659
"contributions": [

CHANGELOG.md

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

3+
## 3.0.0
4+
5+
### Enhancements
6+
7+
- SharePoint Framework v1.12 support (breaking change)
8+
- Fluent UI v7 support
9+
310
## 2.6.0
411

512
### New control(s)
@@ -13,6 +20,7 @@
1320
- `FilePicker`: default alphabet sorting [#824](https://github.com/pnp/sp-dev-fx-controls-react/pull/824)
1421
- `ListItemPicker`: ability to provide `orderBy` [#829](https://github.com/pnp/sp-dev-fx-controls-react/issues/829)
1522
- `Dashboard`: Dashboard widget wrapper for styling and error catching [#836](https://github.com/pnp/sp-dev-fx-controls-react/pull/836)
23+
- `FolderExplorer`: Update folder explorer documentation [#835](https://github.com/pnp/sp-dev-fx-controls-react/pull/835)
1624

1725
### Fixes
1826

@@ -22,6 +30,7 @@
2230
- Documentation: Controls link in the menu is broken [#821](https://github.com/pnp/sp-dev-fx-controls-react/pull/821)
2331
- `TreeView`: Fix two potential null reference issues [#832](https://github.com/pnp/sp-dev-fx-controls-react/pull/832)
2432
- `RichText`: Problem with bullets and number list [#795](https://github.com/pnp/sp-dev-fx-controls-react/issues/795)
33+
- `FolderPicker`: Correct FolderPicker link alignment
2534

2635
### Contributors
2736

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

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

3+
## 3.0.0
4+
5+
### Enhancements
6+
7+
- SharePoint Framework v1.12 support (breaking change)
8+
- Fluent UI v7 support
9+
310
## 2.6.0
411

512
### New control(s)
@@ -13,6 +20,7 @@
1320
- `FilePicker`: default alphabet sorting [#824](https://github.com/pnp/sp-dev-fx-controls-react/pull/824)
1421
- `ListItemPicker`: ability to provide `orderBy` [#829](https://github.com/pnp/sp-dev-fx-controls-react/issues/829)
1522
- `Dashboard`: Dashboard widget wrapper for styling and error catching [#836](https://github.com/pnp/sp-dev-fx-controls-react/pull/836)
23+
- `FolderExplorer`: Update folder explorer documentation [#835](https://github.com/pnp/sp-dev-fx-controls-react/pull/835)
1624

1725
### Fixes
1826

@@ -22,6 +30,7 @@
2230
- Documentation: Controls link in the menu is broken [#821](https://github.com/pnp/sp-dev-fx-controls-react/pull/821)
2331
- `TreeView`: Fix two potential null reference issues [#832](https://github.com/pnp/sp-dev-fx-controls-react/pull/832)
2432
- `RichText`: Problem with bullets and number list [#795](https://github.com/pnp/sp-dev-fx-controls-react/issues/795)
33+
- `FolderPicker`: Correct FolderPicker link alignment
2534

2635
### Contributors
2736

130 KB
Loading
9.9 MB
Loading
149 KB
Loading

0 commit comments

Comments
 (0)