|
1 |
| -# Changes between Dev Preview and Release Candidate for SharePoint Framework Extensions (preview) |
| 1 | +# Changes introduced in the SharePoint Framework Extensions (preview) Release Candidate release |
2 | 2 |
|
3 |
| -If you have created SharePoint Framework Extensions with the developer preview version (released June 2017), you'll have to perform some changes to make them work with Release Candidate (RC) version. Here's a short list of the changes, which were introduced with the latest version. |
| 3 | +If you used the developer preview version of the SharePoint Framework Extensions (released in June 2017), you'll have to make some changes to ensure that your extensions work with the Release Candidate (RC) release. This article provides a short list of the changes that were introduced in the SharePoint Framework Extensions RC release. |
4 | 4 |
|
5 |
| -Release Candidate is enabled in the First Release tenants in Office 365, but is not supported yet in production use. |
| 5 | +>**Note:** The RC release is enabled on the First Release tenants in Office 365, but is not yet supported for use in production. |
6 | 6 |
|
7 | 7 | ## General solution package changes
|
8 | 8 |
|
9 |
| -- All SharePoint Framework packages are now standardized to version 1.2. All future updates will also have version standardization cross all packages to avoid any confusions around used versions. |
10 |
| -- Upgrade to use TypeScript 2.4 and React 15 typings |
11 |
| -- Update to Fabric React 4.32.0. |
| 9 | +- All SharePoint Framework packages are now standardized to version 1.2. All future updates will also have standard versions across all packages. |
| 10 | +- Upgraded to use TypeScript 2.4 and React 15 typings. |
| 11 | +- Updated to Fabric React 4.32.0. |
12 | 12 |
|
13 |
| -### Application Customizer Changes |
| 13 | +## Application Customizer changes |
14 | 14 |
|
15 |
| -- Placeholder logic has been changed slightly and they have been renamed. |
16 |
| -- Typical placeholders are now called `'top'` and `'bottom'` |
17 |
| -- `onRender` method is deprecated - you should call render from the onInit, if needed and also add event handling for the possible events when placeholders should be re-rendered. See [updated placeholder tutorial](./get-started/using-page-placeholder-with-extensions.md) for details. |
18 |
| -- Schema definition URL has been updated in the manifest file to point json schema file from the dev.office.com. |
| 15 | +- Placeholder logic has changed slightly and placeholders have been renamed. Typical placeholders are now called `'top'` and `'bottom'`. |
| 16 | +- The **`onRender`** method has been deprecated. Instead, call **`render`** from the **`onInit`** method, and add event handling for the possible events when placeholders should be re-rendered. For details, see [Using page placeholders](./get-started/using-page-placeholder-with-extensions.md). |
| 17 | +- The schema definition URL has been updated in the manifest file to point to the online documentation for the JSON schema. |
19 | 18 |
|
20 |
| -### Field Customizer Changes |
| 19 | +## Field Customizer changes |
21 | 20 |
|
22 |
| -- There are changes in the APIs for accessing the actual field values. You should be using `event.fieldValue`. Other options are deprecated. |
23 |
| -- API to access UI element to render the field customizer output has been changed from `event.cellDiv` to `event.domElement`. |
24 |
| -- Schema definition URL has been updated in the manifest file to point json schema file from the dev.office.com. |
| 21 | +- Changes were made to the APIs that access field values. Use **`event.fieldValue`**. Other options are deprecated. |
| 22 | +- The API to access UI elements to render the Field Customizer output has changed from **`event.cellDiv`** to **`event.domElement`**. |
| 23 | +- The schema definition URL has been updated in the manifest file to point to the online documentation for the JSON schema. |
25 | 24 |
|
26 |
| -### ListView Command Set Changes |
| 25 | +## ListView Command Set changes |
27 | 26 |
|
28 |
| -- `onRefreshCommand` method deprecated and replaced with `onListViewUpdated`. |
29 |
| -- Manifest json changes around the commands structure. Is using now `items` collections and changes in the title handling of the commands in the json definition. |
30 |
| -- Schema definition URL has been updated in the manifest file to point json schema file from the dev.office.com. |
| 27 | +- The **`onRefreshCommand`** method has been deprecated and replaced with **`onListViewUpdated`**. |
| 28 | +- Changes were made to the commands structure in the manifest json file. Commands now use the **`items`** collection and command title handling was updated in the json definition. |
| 29 | +- The schema definition URL has been updated in the manifest file to point to the online documentation for the JSON schema. |
0 commit comments