-
Notifications
You must be signed in to change notification settings - Fork 536
/
BannerWebPart.manifest.json
34 lines (30 loc) · 1.27 KB
/
BannerWebPart.manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx/client-side-web-part-manifest.schema.json",
"id": "84a626d0-e973-4429-91cc-5adc610d437c",
"alias": "BannerWebPart",
"componentType": "WebPart",
// The "*" signifies that the version should be taken from the package.json
"version": "*",
"manifestVersion": 2,
// If true, the component can only be installed on sites where Custom Script is allowed.
// Components that allow authors to embed arbitrary script code should set this to true.
// https://support.office.com/en-us/article/Turn-scripting-capabilities-on-or-off-1f2c515f-5d7e-448a-9fd7-835da935584f
"requiresCustomScript": false,
"supportsFullBleed": true,
"supportedHosts": ["SharePointWebPart", "TeamsTab", "TeamsPersonalApp", "SharePointFullPage"],
"hiddenFromToolbox": true,
"preconfiguredEntries": [{
"groupId": "5c03119e-3074-46fd-976b-c60198311f70", // Other
"group": { "default": "Other" },
"title": { "default": "Banner" },
"description": { "default": "Renders a banner style presentation with text and image" },
"officeFabricIconFontName": "PanoIndicator",
"properties": {
"bannerText": "",
"bannerImage": "",
"bannerLink": "",
"bannerHeight": 280,
"useParallax": true
}
}]
}