mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-03-01 17:29:11 +00:00
Added feature.xml provisioning tutorial code
This commit is contained in:
parent
526bd4db10
commit
378680f1cb
@ -7,6 +7,7 @@
|
||||
"title": "hello-world-client-side-solution",
|
||||
"description": "hello-world-client-side-solution",
|
||||
"id": "d46cd9d6-87fc-473b-a4c0-db9ad9162b64",
|
||||
"version": "1.0.0.0",
|
||||
"assets": {
|
||||
"elementManifests": [
|
||||
"elements.xml"
|
||||
|
@ -10,6 +10,7 @@ This sub folders contains client-side projects includes the web parts detailed i
|
||||
| hello-world-sp | [Connect your client-side web part to SharePoint](http://dev.office.com/sharepoint/docs/spfx/web-parts/get-started/connect-to-sharepoint) | [video](https://www.youtube.com/watch?v=9VMwjb2pbQ8) |
|
||||
| jquery-webpart | [Add jQueryUI Accordion to your SharePoint client-side web part](http://dev.office.com/sharepoint/docs/spfx/web-parts/get-started/add-jqueryui-accordion-to-web-part) | [video](https://www.youtube.com/watch?v=-3m__hRQxEI) |
|
||||
| documentcardexample-webpart | [Use Office UI Fabric React components in your SharePoint client-side web part](http://dev.office.com/sharepoint/docs/spfx/web-parts/get-started/use-fabric-react-components) | [video](https://www.youtube.com/watch?v=1N6kNvLxyg4) |
|
||||
| asset-deployment-webpart | [Provision SharePoint assets from SharePoint Framework solutions](https://dev.office.com/sharepoint/docs/spfx/web-parts/get-started/provision-sp-assets-from-package) | coming |
|
||||
|
||||
You can also other SharePoint Framework releated videos from [SharePoint PnP YouTube Channel](https://aka.ms/SPPnP-Videos).
|
||||
|
||||
@ -31,7 +32,8 @@ You can also other SharePoint Framework releated videos from [SharePoint PnP You
|
||||
|
||||
| Version | Date | Comments |
|
||||
| ------------- | ------------- | ------------- |
|
||||
| 0.2.0 | February 15th 2016 | Updated to RC0 level. |
|
||||
| 0.3.0 | February 28th 2017 | Updated to GA level. |
|
||||
| 0.2.0 | February 15th 2017 | Updated to RC0 level. |
|
||||
| 0.1.0 | December 16th 2016 | Updated to drop 6 level. |
|
||||
| 0.0.1 | August 31st 2016 | Initial release supporting SharePoint Framework developer preview. |
|
||||
|
||||
|
25
tutorials/asset-deployment-webpart/.editorconfig
Normal file
25
tutorials/asset-deployment-webpart/.editorconfig
Normal file
@ -0,0 +1,25 @@
|
||||
# EditorConfig helps developers define and maintain consistent
|
||||
# coding styles between different editors and IDEs
|
||||
# editorconfig.org
|
||||
|
||||
root = true
|
||||
|
||||
|
||||
[*]
|
||||
|
||||
# change these settings to your own preference
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
# we recommend you to keep these unchanged
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
||||
|
||||
[{package,bower}.json]
|
||||
indent_style = space
|
||||
indent_size = 2
|
1
tutorials/asset-deployment-webpart/.gitattributes
vendored
Normal file
1
tutorials/asset-deployment-webpart/.gitattributes
vendored
Normal file
@ -0,0 +1 @@
|
||||
* text=auto
|
32
tutorials/asset-deployment-webpart/.gitignore
vendored
Normal file
32
tutorials/asset-deployment-webpart/.gitignore
vendored
Normal file
@ -0,0 +1,32 @@
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
|
||||
# Dependency directories
|
||||
node_modules
|
||||
|
||||
# Build generated files
|
||||
dist
|
||||
lib
|
||||
solution
|
||||
temp
|
||||
*.sppkg
|
||||
|
||||
# Coverage directory used by tools like istanbul
|
||||
coverage
|
||||
|
||||
# OSX
|
||||
.DS_Store
|
||||
|
||||
# Visual Studio files
|
||||
.ntvs_analysis.dat
|
||||
.vs
|
||||
bin
|
||||
obj
|
||||
|
||||
# Resx Generated Code
|
||||
*.resx.ts
|
||||
|
||||
# Styles Generated Code
|
||||
*.scss.ts
|
14
tutorials/asset-deployment-webpart/.npmignore
Normal file
14
tutorials/asset-deployment-webpart/.npmignore
Normal file
@ -0,0 +1,14 @@
|
||||
# Folders
|
||||
.vscode
|
||||
coverage
|
||||
node_modules
|
||||
sharepoint
|
||||
src
|
||||
temp
|
||||
|
||||
# Files
|
||||
*.csproj
|
||||
.git*
|
||||
.yo-rc.json
|
||||
gulpfile.js
|
||||
tsconfig.json
|
3
tutorials/asset-deployment-webpart/.vscode/settings.json
vendored
Normal file
3
tutorials/asset-deployment-webpart/.vscode/settings.json
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"vsicons.presets.angular": false
|
||||
}
|
8
tutorials/asset-deployment-webpart/.yo-rc.json
Normal file
8
tutorials/asset-deployment-webpart/.yo-rc.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"@microsoft/generator-sharepoint": {
|
||||
"libraryName": "asset-deployment-webpart",
|
||||
"framework": "none",
|
||||
"version": "1.0.0",
|
||||
"libraryId": "31086065-dbdb-493f-b02e-7b7f97f45bd9"
|
||||
}
|
||||
}
|
26
tutorials/asset-deployment-webpart/README.md
Normal file
26
tutorials/asset-deployment-webpart/README.md
Normal file
@ -0,0 +1,26 @@
|
||||
## asset-deployment-webpart
|
||||
|
||||
This is where you include your WebPart documentation.
|
||||
|
||||
### Building the code
|
||||
|
||||
```bash
|
||||
git clone the repo
|
||||
npm i
|
||||
npm i -g gulp
|
||||
gulp
|
||||
```
|
||||
|
||||
This package produces the following:
|
||||
|
||||
* lib/* - intermediate-stage commonjs build artifacts
|
||||
* dist/* - the bundled script, along with other resources
|
||||
* deploy/* - all resources which should be uploaded to a CDN.
|
||||
|
||||
### Build options
|
||||
|
||||
gulp clean - TODO
|
||||
gulp test - TODO
|
||||
gulp serve - TODO
|
||||
gulp bundle - TODO
|
||||
gulp package-solution - TODO
|
13
tutorials/asset-deployment-webpart/config/config.json
Normal file
13
tutorials/asset-deployment-webpart/config/config.json
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"entries": [
|
||||
{
|
||||
"entry": "./lib/webparts/assetDeployment/AssetDeploymentWebPart.js",
|
||||
"manifest": "./src/webparts/assetDeployment/AssetDeploymentWebPart.manifest.json",
|
||||
"outputPath": "./dist/asset-deployment.bundle.js"
|
||||
}
|
||||
],
|
||||
"externals": {},
|
||||
"localizedResources": {
|
||||
"assetDeploymentStrings": "webparts/assetDeployment/loc/{locale}.js"
|
||||
}
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"deployCdnPath": "temp/deploy"
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"workingDir": "./temp/deploy/",
|
||||
"account": "<!-- STORAGE ACCOUNT NAME -->",
|
||||
"container": "asset-deployment-webpart",
|
||||
"accessKey": "<!-- ACCESS KEY -->"
|
||||
}
|
@ -0,0 +1,28 @@
|
||||
{
|
||||
"solution": {
|
||||
"name": "asset-deployment-webpart-client-side-solution",
|
||||
"id": "31086065-dbdb-493f-b02e-7b7f97f45bd9",
|
||||
"version": "2.0.0.0",
|
||||
"features": [{
|
||||
"title": "asset-deployment-webpart-client-side-solution",
|
||||
"description": "asset-deployment-webpart-client-side-solution",
|
||||
"id": "523fe887-ced5-4036-b564-8dad5c6c6e24",
|
||||
"version": "2.0.0.0",
|
||||
"assets": {
|
||||
"elementManifests": [
|
||||
"elements.xml",
|
||||
"elements-v2.xml"
|
||||
],
|
||||
"elementFiles": [
|
||||
"schema.xml"
|
||||
],
|
||||
"upgradeActions":[
|
||||
"upgrade-actions-v2.xml"
|
||||
]
|
||||
}
|
||||
}]
|
||||
},
|
||||
"paths": {
|
||||
"zippedPackage": "solution/asset-deployment-webpart.sppkg"
|
||||
}
|
||||
}
|
9
tutorials/asset-deployment-webpart/config/serve.json
Normal file
9
tutorials/asset-deployment-webpart/config/serve.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"port": 4321,
|
||||
"initialPage": "https://localhost:5432/workbench",
|
||||
"https": true,
|
||||
"api": {
|
||||
"port": 5432,
|
||||
"entryPath": "node_modules/@microsoft/sp-webpart-workbench/lib/api/"
|
||||
}
|
||||
}
|
46
tutorials/asset-deployment-webpart/config/tslint.json
Normal file
46
tutorials/asset-deployment-webpart/config/tslint.json
Normal file
@ -0,0 +1,46 @@
|
||||
{
|
||||
// Display errors as warnings
|
||||
"displayAsWarning": true,
|
||||
// The TSLint task may have been configured with several custom lint rules
|
||||
// before this config file is read (for example lint rules from the tslint-microsoft-contrib
|
||||
// project). If true, this flag will deactivate any of these rules.
|
||||
"removeExistingRules": true,
|
||||
// When true, the TSLint task is configured with some default TSLint "rules.":
|
||||
"useDefaultConfigAsBase": false,
|
||||
// Since removeExistingRules=true and useDefaultConfigAsBase=false, there will be no lint rules
|
||||
// which are active, other than the list of rules below.
|
||||
"lintConfig": {
|
||||
// Opt-in to Lint rules which help to eliminate bugs in JavaScript
|
||||
"rules": {
|
||||
"class-name": false,
|
||||
"export-name": false,
|
||||
"forin": false,
|
||||
"label-position": false,
|
||||
"member-access": true,
|
||||
"no-arg": false,
|
||||
"no-console": false,
|
||||
"no-construct": false,
|
||||
"no-duplicate-case": true,
|
||||
"no-duplicate-variable": true,
|
||||
"no-eval": false,
|
||||
"no-function-expression": true,
|
||||
"no-internal-module": true,
|
||||
"no-shadowed-variable": true,
|
||||
"no-switch-case-fall-through": true,
|
||||
"no-unnecessary-semicolons": true,
|
||||
"no-unused-expression": true,
|
||||
"no-unused-imports": true,
|
||||
"no-use-before-declare": true,
|
||||
"no-with-statement": true,
|
||||
"semicolon": true,
|
||||
"trailing-comma": false,
|
||||
"typedef": false,
|
||||
"typedef-whitespace": false,
|
||||
"use-named-parameter": true,
|
||||
"valid-typeof": true,
|
||||
"variable-name": false,
|
||||
"whitespace": false,
|
||||
"prefer-const": true
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"cdnBasePath": "<!-- PATH TO CDN -->"
|
||||
}
|
6
tutorials/asset-deployment-webpart/gulpfile.js
Normal file
6
tutorials/asset-deployment-webpart/gulpfile.js
Normal file
@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
|
||||
const gulp = require('gulp');
|
||||
const build = require('@microsoft/sp-build-web');
|
||||
|
||||
build.initialize(gulp);
|
27
tutorials/asset-deployment-webpart/package.json
Normal file
27
tutorials/asset-deployment-webpart/package.json
Normal file
@ -0,0 +1,27 @@
|
||||
{
|
||||
"name": "asset-deployment-webpart",
|
||||
"version": "0.0.1",
|
||||
"private": true,
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@microsoft/sp-client-base": "~1.0.0",
|
||||
"@microsoft/sp-core-library": "~1.0.0",
|
||||
"@microsoft/sp-webpart-base": "~1.0.0",
|
||||
"@types/webpack-env": ">=1.12.1 <1.14.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@microsoft/sp-build-web": "~1.0.0",
|
||||
"@microsoft/sp-module-interfaces": "~1.0.0",
|
||||
"@microsoft/sp-webpart-workbench": "~1.0.0",
|
||||
"gulp": "~3.9.1",
|
||||
"@types/chai": ">=3.4.34 <3.6.0",
|
||||
"@types/mocha": ">=2.2.33 <2.6.0"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "gulp bundle",
|
||||
"clean": "gulp clean",
|
||||
"test": "gulp test"
|
||||
}
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
|
||||
|
||||
<ListInstance
|
||||
FeatureId="00bfea71-de22-43b2-a848-c05709900100"
|
||||
Title="New List"
|
||||
Description="New list provisioned from v2"
|
||||
TemplateType="100"
|
||||
Url="Lists/NewList">
|
||||
</ListInstance>
|
||||
|
||||
</Elements>
|
@ -0,0 +1,48 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
|
||||
|
||||
<Field ID="{060E50AC-E9C1-4D3C-B1F9-DE0BCAC300F6}"
|
||||
Name="SPFxAmount"
|
||||
DisplayName="Amount"
|
||||
Type="Currency"
|
||||
Decimals="2"
|
||||
Min="0"
|
||||
Required="FALSE"
|
||||
Group="SPFx Columns" />
|
||||
|
||||
<Field ID="{943E7530-5E2B-4C02-8259-CCD93A9ECB18}"
|
||||
Name="SPFxCostCenter"
|
||||
DisplayName="Cost Center"
|
||||
Type="Choice"
|
||||
Required="FALSE"
|
||||
Group="SPFx Columns">
|
||||
<CHOICES>
|
||||
<CHOICE>Administration</CHOICE>
|
||||
<CHOICE>Information</CHOICE>
|
||||
<CHOICE>Facilities</CHOICE>
|
||||
<CHOICE>Operations</CHOICE>
|
||||
<CHOICE>Sales</CHOICE>
|
||||
<CHOICE>Marketing</CHOICE>
|
||||
</CHOICES>
|
||||
</Field>
|
||||
|
||||
<ContentType ID="0x010042D0C1C200A14B6887742B6344675C8B"
|
||||
Name="Cost Center"
|
||||
Group="SPFx Content Types"
|
||||
Description="Sample content types from web part solution">
|
||||
<FieldRefs>
|
||||
<FieldRef ID="{060E50AC-E9C1-4D3C-B1F9-DE0BCAC300F6}" />
|
||||
<FieldRef ID="{943E7530-5E2B-4C02-8259-CCD93A9ECB18}" />
|
||||
</FieldRefs>
|
||||
</ContentType>
|
||||
|
||||
<ListInstance
|
||||
CustomSchema="schema.xml"
|
||||
FeatureId="00bfea71-de22-43b2-a848-c05709900100"
|
||||
Title="SPFx List"
|
||||
Description="SPFx List"
|
||||
TemplateType="100"
|
||||
Url="Lists/SPFxList">
|
||||
</ListInstance>
|
||||
|
||||
</Elements>
|
@ -0,0 +1,31 @@
|
||||
<List xmlns:ows="Microsoft SharePoint" Title="Basic List" EnableContentTypes="TRUE" FolderCreation="FALSE" Direction="$Resources:Direction;" Url="Lists/Basic List" BaseType="0" xmlns="http://schemas.microsoft.com/sharepoint/">
|
||||
<MetaData>
|
||||
<ContentTypes>
|
||||
<ContentTypeRef ID="0x010042D0C1C200A14B6887742B6344675C8B" />
|
||||
</ContentTypes>
|
||||
<Fields></Fields>
|
||||
<Views>
|
||||
<View BaseViewID="1" Type="HTML" WebPartZoneID="Main" DisplayName="$Resources:core,objectiv_schema_mwsidcamlidC24;" DefaultView="TRUE" MobileView="TRUE" MobileDefaultView="TRUE" SetupPath="pages\viewpage.aspx" ImageUrl="/_layouts/images/generic.png" Url="AllItems.aspx">
|
||||
<XslLink Default="TRUE">main.xsl</XslLink>
|
||||
<JSLink>clienttemplates.js</JSLink>
|
||||
<RowLimit Paged="TRUE">30</RowLimit>
|
||||
<Toolbar Type="Standard" />
|
||||
<ViewFields>
|
||||
<FieldRef Name="LinkTitle"></FieldRef>
|
||||
<FieldRef Name="SPFxAmount"></FieldRef>
|
||||
<FieldRef Name="SPFxCostCenter"></FieldRef>
|
||||
</ViewFields>
|
||||
<Query>
|
||||
<OrderBy>
|
||||
<FieldRef Name="ID" />
|
||||
</OrderBy>
|
||||
</Query>
|
||||
</View>
|
||||
</Views>
|
||||
<Forms>
|
||||
<Form Type="DisplayForm" Url="DispForm.aspx" SetupPath="pages\form.aspx" WebPartZoneID="Main" />
|
||||
<Form Type="EditForm" Url="EditForm.aspx" SetupPath="pages\form.aspx" WebPartZoneID="Main" />
|
||||
<Form Type="NewForm" Url="NewForm.aspx" SetupPath="pages\form.aspx" WebPartZoneID="Main" />
|
||||
</Forms>
|
||||
</MetaData>
|
||||
</List>
|
@ -0,0 +1,3 @@
|
||||
<ApplyElementManifests>
|
||||
<ElementManifest Location="523fe887-ced5-4036-b564-8dad5c6c6e24\elements-v2.xml" />
|
||||
</ApplyElementManifests>
|
@ -0,0 +1,52 @@
|
||||
.helloWorld {
|
||||
.container {
|
||||
max-width: 700px;
|
||||
margin: 0px auto;
|
||||
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.row {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.listItem {
|
||||
max-width: 715px;
|
||||
margin: 5px auto 5px auto;
|
||||
box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.button {
|
||||
// Our button
|
||||
text-decoration: none;
|
||||
height: 32px;
|
||||
|
||||
// Primary Button
|
||||
min-width: 80px;
|
||||
background-color: #0078d7;
|
||||
border-color: #0078d7;
|
||||
color: #ffffff;
|
||||
|
||||
// Basic Button
|
||||
outline: transparent;
|
||||
position: relative;
|
||||
font-family: "Segoe UI WestEuropean","Segoe UI",-apple-system,BlinkMacSystemFont,Roboto,"Helvetica Neue",sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
border-width: 0;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
padding: 0 16px;
|
||||
|
||||
.label {
|
||||
font-weight: 600;
|
||||
font-size: 14px;
|
||||
height: 32px;
|
||||
line-height: 32px;
|
||||
margin: 0 4px;
|
||||
vertical-align: top;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
{
|
||||
"$schema": "../../../node_modules/@microsoft/sp-module-interfaces/lib/manifestSchemas/jsonSchemas/clientSideComponentManifestSchema.json",
|
||||
|
||||
"id": "1e12b818-ce16-4c4d-83e7-888c571dd227",
|
||||
"alias": "AssetDeploymentWebPart",
|
||||
"componentType": "WebPart",
|
||||
"version": "0.0.1",
|
||||
"manifestVersion": 2,
|
||||
|
||||
"preconfiguredEntries": [{
|
||||
"groupId": "1e12b818-ce16-4c4d-83e7-888c571dd227",
|
||||
"group": { "default": "Under Development" },
|
||||
"title": { "default": "AssetDeployment" },
|
||||
"description": { "default": "AssetDeployment Web Part" },
|
||||
"officeFabricIconFontName": "Page",
|
||||
"properties": {
|
||||
"description": "AssetDeployment"
|
||||
}
|
||||
}]
|
||||
}
|
@ -0,0 +1,58 @@
|
||||
import { Version } from '@microsoft/sp-core-library';
|
||||
import {
|
||||
BaseClientSideWebPart,
|
||||
IPropertyPaneConfiguration,
|
||||
PropertyPaneTextField
|
||||
} from '@microsoft/sp-webpart-base';
|
||||
import { escape } from '@microsoft/sp-lodash-subset';
|
||||
|
||||
import styles from './AssetDeployment.module.scss';
|
||||
import * as strings from 'assetDeploymentStrings';
|
||||
import { IAssetDeploymentWebPartProps } from './IAssetDeploymentWebPartProps';
|
||||
|
||||
export default class AssetDeploymentWebPart extends BaseClientSideWebPart<IAssetDeploymentWebPartProps> {
|
||||
|
||||
public render(): void {
|
||||
this.domElement.innerHTML = `
|
||||
<div class="${styles.helloWorld}">
|
||||
<div class="${styles.container}">
|
||||
<div class="ms-Grid-row ms-bgColor-themeDark ms-fontColor-white ${styles.row}">
|
||||
<div class="ms-Grid-col ms-u-lg10 ms-u-xl8 ms-u-xlPush2 ms-u-lgPush1">
|
||||
<span class="ms-font-xl ms-fontColor-white">Welcome to SharePoint!</span>
|
||||
<p class="ms-font-l ms-fontColor-white">Customize SharePoint experiences using Web Parts.</p>
|
||||
<p class="ms-font-l ms-fontColor-white">${escape(this.properties.description)}</p>
|
||||
<a href="https://aka.ms/spfx" class="${styles.button}">
|
||||
<span class="${styles.label}">Learn more</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>`;
|
||||
}
|
||||
|
||||
protected get dataVersion(): Version {
|
||||
return Version.parse('1.0');
|
||||
}
|
||||
|
||||
protected getPropertyPaneConfiguration(): IPropertyPaneConfiguration {
|
||||
return {
|
||||
pages: [
|
||||
{
|
||||
header: {
|
||||
description: strings.PropertyPaneDescription
|
||||
},
|
||||
groups: [
|
||||
{
|
||||
groupName: strings.BasicGroupName,
|
||||
groupFields: [
|
||||
PropertyPaneTextField('description', {
|
||||
label: strings.DescriptionFieldLabel
|
||||
})
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
};
|
||||
}
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
export interface IAssetDeploymentWebPartProps {
|
||||
description: string;
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
define([], function() {
|
||||
return {
|
||||
"PropertyPaneDescription": "Description",
|
||||
"BasicGroupName": "Group Name",
|
||||
"DescriptionFieldLabel": "Description Field"
|
||||
}
|
||||
});
|
10
tutorials/asset-deployment-webpart/src/webparts/assetDeployment/loc/mystrings.d.ts
vendored
Normal file
10
tutorials/asset-deployment-webpart/src/webparts/assetDeployment/loc/mystrings.d.ts
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
declare interface IAssetDeploymentStrings {
|
||||
PropertyPaneDescription: string;
|
||||
BasicGroupName: string;
|
||||
DescriptionFieldLabel: string;
|
||||
}
|
||||
|
||||
declare module 'assetDeploymentStrings' {
|
||||
const strings: IAssetDeploymentStrings;
|
||||
export = strings;
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
/// <reference types="mocha" />
|
||||
|
||||
import { assert } from 'chai';
|
||||
|
||||
describe('AssetDeploymentWebPart', () => {
|
||||
it('should do something', () => {
|
||||
assert.ok(true);
|
||||
});
|
||||
});
|
15
tutorials/asset-deployment-webpart/tsconfig.json
Normal file
15
tutorials/asset-deployment-webpart/tsconfig.json
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "es5",
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"module": "commonjs",
|
||||
"jsx": "react",
|
||||
"declaration": true,
|
||||
"sourceMap": true,
|
||||
"types": [
|
||||
"es6-promise",
|
||||
"es6-collections",
|
||||
"webpack-env"
|
||||
]
|
||||
}
|
||||
}
|
8
tutorials/asset-deployment-webpart/typings/@ms/odsp.d.ts
vendored
Normal file
8
tutorials/asset-deployment-webpart/typings/@ms/odsp.d.ts
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
// Type definitions for Microsoft ODSP projects
|
||||
// Project: ODSP
|
||||
|
||||
/* Global definition for UNIT_TEST builds
|
||||
Code that is wrapped inside an if(UNIT_TEST) {...}
|
||||
block will not be included in the final bundle when the
|
||||
--ship flag is specified */
|
||||
declare const UNIT_TEST: boolean;
|
1
tutorials/asset-deployment-webpart/typings/tsd.d.ts
vendored
Normal file
1
tutorials/asset-deployment-webpart/typings/tsd.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
||||
/// <reference path="@ms/odsp.d.ts" />
|
Loading…
x
Reference in New Issue
Block a user