Skip to content

Commit ef19a17

Browse files
committed
Merge branch 'dev' into accessibility
2 parents ffc8f3c + 4d03018 commit ef19a17

File tree

13 files changed

+83
-8
lines changed

13 files changed

+83
-8
lines changed

CHANGELOG.JSON

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
{
22
"versions": [
3+
{
4+
"version": "1.8.0",
5+
"changes": {
6+
"new": [],
7+
"enhancements": [
8+
"`PeoplePicker`: ability to specify the source site to load users from [#110](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/110)",
9+
"`WebPartTitle`: changing font-sizes on different resolutions [#114](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/114)"
10+
],
11+
"fixes": []
12+
},
13+
"contributions": ["Thomas Lamb", "Joel Rodrigues"]
14+
},
315
{
416
"version": "1.7.0",
517
"changes": {

CHANGELOG.md

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

3+
## 1.8.0
4+
5+
**Enhancements**
6+
7+
- `PeoplePicker`: ability to specify the source site to load users from [#110](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/110)
8+
- `WebPartTitle`: changing font-sizes on different resolutions [#114](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/114)
9+
310
## 1.7.0
411

512
**Enhancements**

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

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

3+
## 1.8.0
4+
5+
**Enhancements**
6+
7+
- `PeoplePicker`: ability to specify the source site to load users from [#110](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/110)
8+
- `WebPartTitle`: changing font-sizes on different resolutions [#114](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/114)
9+
310
## 1.7.0
411

512
**Enhancements**
Lines changed: 1 addition & 0 deletions
Loading

docs/documentation/docs/controls/ListView.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const groupByFields: IGrouping[] = [
5555
```
5656

5757
!!! note "Extend ListView with a ContextualMenu"
58-
To extend the `ListView` control with a [ContextualMenu](https://developer.microsoft.com/en-us/fabric#/components/contextualmenu) refer to [ListView.ContextualMenu](./ListView.ContextualMenu).
58+
To extend the `ListView` control with a [ContextualMenu](https://developer.microsoft.com/en-us/fabric#/components/contextualmenu) refer to [ListView.ContextualMenu](./ListView.ContextualMenu.md).
5959

6060
## Implementation
6161

docs/documentation/docs/controls/PeoplePicker.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ The People picker control can be configured with the following properties:
6767
| peoplePickerWPclassName | string | no | applies custom styling to the people picker element |
6868
| peoplePickerCntrlclassName | string | no | applies custom styling to the people picker control only |
6969
| defaultSelectedUsers | string[] | no | Default selected user emails |
70+
| webAbsoluteUrl | string | no | Specify the site URL on which you want to perform the user query call. Default is the current site URL. |
7071

7172

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

docs/documentation/docs/css/extra.css

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
.md-logo {
2+
height: 32px;
3+
width: 150px;
4+
}
5+
6+
.md-logo img {
7+
width: 100% !important;
8+
height: auto !important;
9+
margin-top: -0.25em;
10+
}
11+
12+
.md-header{
13+
height: 75px;
14+
}
15+
16+
.md-container{
17+
padding-top: 70px;
18+
}
19+
20+
.md-sidebar[data-md-state="lock"]{
21+
padding-top: 75px;
22+
}
23+
24+
.md-footer {
25+
margin-top: 5em;
26+
}
27+
28+
@media only screen and (max-width: 76.1875em) {
29+
.md-nav--primary .md-nav__title--site .md-nav__button {
30+
width: 150px;
31+
}
32+
}

docs/documentation/mkdocs.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
site_name: SharePoint Framework React Controls
2-
pages:
1+
site_name: '@pnp/spfx-controls-react'
2+
nav:
33
- Home: 'index.md'
44
- Controls:
55
- FileTypeIcon: 'controls/FileTypeIcon.md'
@@ -34,9 +34,11 @@ theme:
3434
name: 'material'
3535
palette:
3636
primary: 'blue'
37-
logo: 'assets/sharepoint.png'
37+
logo: 'assets/pnp-spfx-controls.svg'
3838
feature:
3939
tabs: true
40+
extra_css:
41+
- 'css/extra.css'
4042
markdown_extensions:
4143
- admonition
4244
- codehilite:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@pnp/spfx-controls-react",
33
"description": "Reusable React controls for SharePoint Framework solutions",
4-
"version": "1.7.0",
4+
"version": "1.8.0",
55
"engines": {
66
"node": ">=0.10.0"
77
},

src/common/telemetry/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version: string = "1.7.0";
1+
export const version: string = "1.8.0";

0 commit comments

Comments
 (0)