Skip to content

Commit fbfdb1e

Browse files
committed
2 parents 3226431 + fb41f84 commit fbfdb1e

Some content is hidden

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

44 files changed

+9117
-8909
lines changed

.circleci/config.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ jobs:
2323
- run:
2424
name: Update version number for telemetry
2525
command: npm run versionUpdater
26+
- run:
27+
name: Create/update the missing localization keys
28+
command: npm run localization
2629
- run:
2730
name: build
2831
command: npm run build
@@ -67,7 +70,7 @@ jobs:
6770
name: Run codevoc
6871
command: './node_modules/.bin/codecov -t $CODECOV_TOKEN'
6972
environment:
70-
- CODECOV_TOKEN: "83a5682f-4c9f-4ed7-9da8-ccc04416f364"
73+
- CODECOV_TOKEN: "$CODECOV_TOKEN"
7174
- store_artifacts:
7275
path: temp/coverage
7376
prefix: coverage

CHANGELOG.JSON

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,27 @@
33
{
44
"version": "1.17.0",
55
"changes": {
6-
"new": [],
6+
"new": [
7+
"`Localization`: Project now supports localization of all SharePoint Online languages (auto translation via Cognitive Services) [#456](https://github.com/SharePoint/sp-dev-fx-controls-react/pull/456)"
8+
],
79
"enhancements": [
810
"`TaxonomyPicker`: Possibility to hide deprecated and \"Available for Tagging\"= false terms [#421](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/421)"
911
],
1012
"fixes": [
11-
"`RichText`: problem with edit mode [#445](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/445)"
12-
]
13+
"`RichText`: problem with edit mode [#445](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/445)",
14+
"`ListView` documentation: Typo - the first occurrence of maxWidth should be minWidth [#400](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/400)",
15+
"`RichText`: Text indent buttons were copy-paste of subscript and superscript buttons. Clicking on the text-indent buttons would call subscript or superscript instead. [#454](https://github.com/SharePoint/sp-dev-fx-controls-react/pull/454)",
16+
"`RichText`: Fix of removing text and inserting link instead [#455](https://github.com/SharePoint/sp-dev-fx-controls-react/pull/455)",
17+
"`FilePicker`: Read file content in IE11 [#444](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/444)",
18+
"`ListPicker`: listPicker always return \"test\" when multiple allowed [#458](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/458)"
19+
]
1320
},
1421
"contributions": [
15-
"[JonasBjerke89](https://github.com/JonasBjerke89)"
16-
]
22+
"[JonasBjerke89](https://github.com/JonasBjerke89)",
23+
"[Alexander Kleshcheov](https://github.com/SharePickle)",
24+
"[Piotr Siatka](https://github.com/siata13)",
25+
"[mgwojciech](https://github.com/mgwojciech)"
26+
]
1727
},
1828
{
1929
"version": "1.16.0",

CHANGELOG.md

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

3+
## 1.17.0
4+
5+
### New control(s)
6+
7+
- `Localization`: Project now supports localization of all SharePoint Online languages (auto translation via Cognitive Services) [#456](https://github.com/SharePoint/sp-dev-fx-controls-react/pull/456)
8+
9+
### Enhancements
10+
11+
- `TaxonomyPicker`: Possibility to hide deprecated and "Available for Tagging"= false terms [#421](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/421)
12+
13+
### Fixes
14+
15+
- `RichText`: problem with edit mode [#445](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/445)
16+
- `ListView` documentation: Typo - the first occurrence of maxWidth should be minWidth [#400](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/400)
17+
- `RichText`: Text indent buttons were copy-paste of subscript and superscript buttons. Clicking on the text-indent buttons would call subscript or superscript instead. [#454](https://github.com/SharePoint/sp-dev-fx-controls-react/pull/454)
18+
- `RichText`: Fix of removing text and inserting link instead [#455](https://github.com/SharePoint/sp-dev-fx-controls-react/pull/455)
19+
- `FilePicker`: Read file content in IE11 [#444](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/444)
20+
- `ListPicker`: listPicker always return "test" when multiple allowed [#458](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/458)
21+
22+
### Contributors
23+
24+
Special thanks to our contributors (in alphabetical order): [JonasBjerke89](https://github.com/JonasBjerke89), [Alexander Kleshcheov](https://github.com/SharePickle), [Piotr Siatka](https://github.com/siata13), [mgwojciech](https://github.com/mgwojciech).
25+
326
## 1.16.0
427

528
### Enhancements

config/supported.localization.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"langs": ["bg-bg", "ca-es", "da-dk", "de-de", "el-gr", "es-es", "et-ee", "fi-fi", "fr-fr", "it-it", "ja-jp", "lt-lt", "lv-lv", "nb-no", "nl-nl", "pl-pl", "pt-pt", "ro-ro", "ru-ru", "sk-sk", "sr-latn-rs", "sv-se", "tr-tr", "vi-vn", "zh-cn", "zh-tw"]
3+
}

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

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

3+
## 1.17.0
4+
5+
### New control(s)
6+
7+
- `Localization`: Project now supports localization of all SharePoint Online languages (auto translation via Cognitive Services) [#456](https://github.com/SharePoint/sp-dev-fx-controls-react/pull/456)
8+
9+
### Enhancements
10+
11+
- `TaxonomyPicker`: Possibility to hide deprecated and "Available for Tagging"= false terms [#421](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/421)
12+
13+
### Fixes
14+
15+
- `RichText`: problem with edit mode [#445](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/445)
16+
- `ListView` documentation: Typo - the first occurrence of maxWidth should be minWidth [#400](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/400)
17+
- `RichText`: Text indent buttons were copy-paste of subscript and superscript buttons. Clicking on the text-indent buttons would call subscript or superscript instead. [#454](https://github.com/SharePoint/sp-dev-fx-controls-react/pull/454)
18+
- `RichText`: Fix of removing text and inserting link instead [#455](https://github.com/SharePoint/sp-dev-fx-controls-react/pull/455)
19+
- `FilePicker`: Read file content in IE11 [#444](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/444)
20+
- `ListPicker`: listPicker always return "test" when multiple allowed [#458](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/458)
21+
22+
### Contributors
23+
24+
Special thanks to our contributors (in alphabetical order): [JonasBjerke89](https://github.com/JonasBjerke89), [Alexander Kleshcheov](https://github.com/SharePickle), [Piotr Siatka](https://github.com/siata13), [mgwojciech](https://github.com/mgwojciech).
25+
326
## 1.16.0
427

528
### Enhancements

docs/documentation/docs/controls/ListView.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ The `IViewField` has the following implementation:
8787
| displayName | string | no | Name that will be used as the column title. If not defined, the name property will be used. |
8888
| linkPropertyName | string | no | Specify the field name that needs to be used to render a link for the current field. |
8989
| sorting | boolean | no | Specify if you want to enable sorting for the current field. |
90-
| maxWidth | number | no | Specify the minimum width of the column. |
90+
| minWidth | number | no | Specify the minimum width of the column. |
9191
| maxWidth | number | no | Specify the maximum width of the column. |
9292
| isResizable | boolean | no | Determines if the column can be resized. |
9393
| render | function | no | Override how the field has to get rendered. |

0 commit comments

Comments
 (0)