-
Notifications
You must be signed in to change notification settings - Fork 0
Release Notes Drop 3
Expect September to be relatively quiet, but we'll still release minor updates throughout the month. Drop 3 of the framework has a few changes to the property pane APIs in the sp-client-preview package, and some small fixes to the build toolchain.
#Getting the new bits
Make sure that your @microsoft/generator-sharepoint
npm package is version 0.1.1. To get the latest version, run npm i -g @microsoft/generator-sharepoint@latest
#Updating your existing projects
1 - Open package.json and set the versions of the following packages:
-
"@microsoft/sp-client-base": "~0.2.1"
-
"@microsoft/sp-client-preview": "~0.3.0"
-
"@microsoft/sp-webpart-workbench": "~0.3.0"
2 - Run npm update
then npm prune
then npm dedupe
This will update all the packages then optimize the node_modules folder size.
3 - Run gulp nuke
to clean up any old build artifacts
4 - Run gulp
to build your updated project
-
BaseClientSideWebPart::onAfterPropertyPaneChangesApplied
has been removed -
BaseClientSiteWebPart::onPropertyPaneConfigurationStart
as been removed -
BaseClientSideWebPart::propertyPaneRenderedByWebPart
has been removed -
BaseClientSideWebPart::onPropertyPaneConfigurationComplete
has been renamed toonPropertyConfigurationComplete
-
BaseClientSideWebPart::onPropertyPaneSave
has been added
-
IPropertyPaneData::onConfigurationEvent
has been removed, replaced by IPropertyPaneData::onClose
IPropertyPaneData::onConfigurationComplete
IPropertyPaneData::onLostFocus
IPropertyPaneData::onSave
The entries for this enum have been tweaked
-
combokeys
added to typings in generated project (makes it easier to use the@microsoft/sp-module-loader
) -
gulp --tasks
no longer returns an error. Should make integration with IDEs like WebStorm easier - Adding
--no-install
to yo @microsoft\sharepoint will skip the install step. - The title and description of component feature XML is now correct.
- SharePoint Framework
- Release Notes
- Getting Started
- Getting familiar with the tools and libraries
- Setup your developer tenant
- Setup your machine
- Tutorial 1: HelloWorld WebPart
- Tutorial 2: HelloWorld, Talking to SharePoint
- Tutorial 3: HelloWorld, Serving in SharePoint Pages
- Tutorial 4: HelloWorld, Deploy to CDN
- Tutorial 5: jQueryUI Accordion WebPart
- Tutorial 6: Using Office UI Fabric Components
- Basics
- Tech Notes