@microsoft/sp-module-interfaces 1.15.0-beta.6 → 1.15.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index-internal-beta.d.ts +9 -9
- package/dist/index-internal.d.ts +14 -706
- package/dist/tsdoc-metadata.json +1 -1
- package/lib-commonjs/index.js +5 -1
- package/lib-commonjs/manifestHelpers.d.ts +20 -0
- package/lib-commonjs/manifestHelpers.d.ts.map +1 -0
- package/lib-commonjs/manifestHelpers.js +29 -0
- package/lib-commonjs/manifestSchemaValidator.js +5 -1
- package/lib-commonjs/manifestSchemas/IAdaptiveCardExtensionManifest.d.ts +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.d.ts +8 -8
- package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/jsonSchemas/adaptive-card-extension-manifest.schema.json +8 -8
- package/lib-commonjs/manifestSchemas/jsonSchemas/client-side-web-part-manifest.schema.json +8 -8
- package/package.json +2 -2
|
@@ -94,7 +94,7 @@ export declare interface IAdaptiveCardExtensionManifest<TProperties> extends ICl
|
|
|
94
94
|
* ```
|
|
95
95
|
* [{
|
|
96
96
|
* "groupId": "5c03119e-3074-46fd-976b-c60198311f70",
|
|
97
|
-
* "group": { "default": "
|
|
97
|
+
* "group": { "default": "Advanced" },
|
|
98
98
|
* "title": { "id": "$./ManifestStrings.resx:PrimaryTextL1Template;" },
|
|
99
99
|
* "description": { "id": "$./ManifestStrings.resx:PrimaryTextL1TemplateDescription;" },
|
|
100
100
|
* "officeFabricIconFontName": "Balloons",
|
|
@@ -1267,7 +1267,7 @@ export declare const enum PredefinedGroup {
|
|
|
1267
1267
|
*
|
|
1268
1268
|
* @beta
|
|
1269
1269
|
*/
|
|
1270
|
-
|
|
1270
|
+
DocumentsListsAndLibraries = "1edbd9a8-0bfb-4aa2-9afd-14b8c45dd489",
|
|
1271
1271
|
/**
|
|
1272
1272
|
* Communication and collaboration.
|
|
1273
1273
|
*
|
|
@@ -1275,7 +1275,7 @@ export declare const enum PredefinedGroup {
|
|
|
1275
1275
|
*
|
|
1276
1276
|
* @beta
|
|
1277
1277
|
*/
|
|
1278
|
-
|
|
1278
|
+
Feeds = "75e22ed5-fa14-4829-850a-c890608aca2d",
|
|
1279
1279
|
/**
|
|
1280
1280
|
* Planning and process.
|
|
1281
1281
|
*
|
|
@@ -1283,7 +1283,7 @@ export declare const enum PredefinedGroup {
|
|
|
1283
1283
|
*
|
|
1284
1284
|
* @beta
|
|
1285
1285
|
*/
|
|
1286
|
-
|
|
1286
|
+
NewsPeopleAndEvents = "1bc7927e-4a5e-4520-b540-71305c79c20a",
|
|
1287
1287
|
/**
|
|
1288
1288
|
* Business and intelligence.
|
|
1289
1289
|
*
|
|
@@ -1291,15 +1291,15 @@ export declare const enum PredefinedGroup {
|
|
|
1291
1291
|
*
|
|
1292
1292
|
* @beta
|
|
1293
1293
|
*/
|
|
1294
|
-
|
|
1294
|
+
DataAnalysis = "4aca9e90-eff5-4fa1-bac7-728f5f157b66",
|
|
1295
1295
|
/**
|
|
1296
|
-
*
|
|
1296
|
+
* Regional information
|
|
1297
1297
|
*
|
|
1298
|
-
* This group includes web parts
|
|
1298
|
+
* This group includes web parts that display information based on current region and geographical location
|
|
1299
1299
|
*
|
|
1300
1300
|
* @beta
|
|
1301
1301
|
*/
|
|
1302
|
-
|
|
1302
|
+
RegionalInformation = "cfc8bda5-cb9b-49e3-8526-2ee6e52b256a",
|
|
1303
1303
|
/**
|
|
1304
1304
|
* Other.
|
|
1305
1305
|
*
|
|
@@ -1307,7 +1307,7 @@ export declare const enum PredefinedGroup {
|
|
|
1307
1307
|
*
|
|
1308
1308
|
* @beta
|
|
1309
1309
|
*/
|
|
1310
|
-
|
|
1310
|
+
Advanced = "5c03119e-3074-46fd-976b-c60198311f70",
|
|
1311
1311
|
/**
|
|
1312
1312
|
* Other.
|
|
1313
1313
|
*
|
package/dist/index-internal.d.ts
CHANGED
|
@@ -11,258 +11,9 @@ export declare type ComponentType = 'Application' | 'WebPart' | 'Library' | 'Ext
|
|
|
11
11
|
*/
|
|
12
12
|
export declare type ExtensionType = 'Unknown' | 'ApplicationCustomizer' | 'FieldCustomizer' | 'ListViewCommandSet' | 'SearchQueryModifier';
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
* @beta
|
|
16
|
-
*/
|
|
17
|
-
export declare interface IAdaptiveCardExtensionManifest<TProperties> extends IClientSideComponentManifest {
|
|
18
|
-
/**
|
|
19
|
-
* Id matching the Teams SaaS application that the ACE will redirect to when a “full page” experience is required
|
|
20
|
-
*/
|
|
21
|
-
connectedTeamsAppId?: string;
|
|
22
|
-
/**
|
|
23
|
-
* Id of the SPFx application that the ACE will redirect to when a “full page” experience is required
|
|
24
|
-
*/
|
|
25
|
-
connectedSPFXAppId?: string;
|
|
26
|
-
/**
|
|
27
|
-
* Definition: An array defining what host types are supported
|
|
28
|
-
*
|
|
29
|
-
*
|
|
30
|
-
* @remarks
|
|
31
|
-
* Usage: Use this array to define all hosts that are supported.
|
|
32
|
-
*
|
|
33
|
-
*/
|
|
34
|
-
supportedHosts?: ReadonlyArray<'Dashboard'>;
|
|
35
|
-
/**
|
|
36
|
-
* Definition: If true, this ACE supports and has been tested for theme variants experience.
|
|
37
|
-
*
|
|
38
|
-
* @remarks
|
|
39
|
-
* Usage: Use this flag if a ACE supports theme variants and has been tested as such.
|
|
40
|
-
* In order to support theme variants, ACEs must have the capability to render correctly in the context
|
|
41
|
-
* of a theme variant. An ACE may or may not need to be updated to support theme variants, but should
|
|
42
|
-
* always be tested before enabling this flag. By default no ACEs support theme variants.
|
|
43
|
-
*
|
|
44
|
-
*/
|
|
45
|
-
supportsThemeVariants?: boolean;
|
|
46
|
-
/**
|
|
47
|
-
* An untyped property bag for experimental flags not ready for production.
|
|
48
|
-
*
|
|
49
|
-
*/
|
|
50
|
-
experimentalData?: {
|
|
51
|
-
[key: string]: any;
|
|
52
|
-
};
|
|
53
|
-
/**
|
|
54
|
-
* If true, this AdaptiveCardExtension should not be displayed in the modern SharePoint toolbox.
|
|
55
|
-
*
|
|
56
|
-
* @remarks
|
|
57
|
-
* Usage: Use this flag if it is not appropriate to display a AdaptiveCardExtension in the modern toolbox. By default,
|
|
58
|
-
* all AdaptiveCardExtensions are enabled to be displayed in the toolbox if supportedHosts contains 'SharePointWebPart'
|
|
59
|
-
* Such AdaptiveCardExtensions can be provisioned on pages though API or be added to the page in a pre configured way.
|
|
60
|
-
*/
|
|
61
|
-
hiddenFromToolbox?: boolean;
|
|
62
|
-
/* Excluded from this release type: isolationLevel */
|
|
63
|
-
/**
|
|
64
|
-
* Definition:
|
|
65
|
-
* - If true, the AdaptiveCardExtension will be disposed and reloaded when the AdaptiveCardExtension data is updated by an external source.
|
|
66
|
-
* - If false, the AdaptiveCardExtension data will be deserialized and the properties of the AdaptiveCardExtension will be updated,
|
|
67
|
-
* onAfterPropertiesUpdatedExternally will be executed.
|
|
68
|
-
* - If undefined, AdaptiveCardExtensions developed with SPFx version below 1.9 will default to true and AdaptiveCardExtensions developed with
|
|
69
|
-
* a SPFx version 1.9 or greater will default to false.
|
|
70
|
-
*
|
|
71
|
-
* @remarks
|
|
72
|
-
* By default, onAfterPropertiesUpdatedExternally will re-render the AdaptiveCardExtension. If your AdaptiveCardExtension requires specialized
|
|
73
|
-
* logic, then it is recommended to override onAfterPropertiesUpdatedExternally.
|
|
74
|
-
*/
|
|
75
|
-
useFallbackWhenPropertiesUpdatedExternally?: boolean;
|
|
76
|
-
/**
|
|
77
|
-
* A AdaptiveCardExtension can have pre-configured properties like the title, description, iconImageUrl, officeFabricIconFontName, toolbox group name
|
|
78
|
-
* and AdaptiveCardExtension specific custom properties. And there can be multiple instances of these pre-configured properties.
|
|
79
|
-
*
|
|
80
|
-
* @remarks
|
|
81
|
-
* This helps support scenarios where an organization may want to present multiple pre-configured entries
|
|
82
|
-
* for a AdaptiveCardExtension in the Toolbox. Each entry is expected to configure the AdaptiveCardExtension with a different set
|
|
83
|
-
* of pre-configured properties. A developer may decide to seed some initial values for these properties
|
|
84
|
-
* but an organization admin can go ahead and customize these properties per the needs of his/her organization.
|
|
85
|
-
* The properties can also be modified by the author of the page.
|
|
86
|
-
*
|
|
87
|
-
* Usage: help display a AdaptiveCardExtension in the Toolbox, PropertyPane and the initial rendering of the AdaptiveCardExtension.
|
|
88
|
-
*
|
|
89
|
-
* Type: JSON object
|
|
90
|
-
*
|
|
91
|
-
* Supported values: Array of `IClientSideWebPartManifestEntry` objects.
|
|
92
|
-
*
|
|
93
|
-
* Example:
|
|
94
|
-
* ```
|
|
95
|
-
* [{
|
|
96
|
-
* "groupId": "5c03119e-3074-46fd-976b-c60198311f70",
|
|
97
|
-
* "group": { "default": "Other" },
|
|
98
|
-
* "title": { "id": "$./ManifestStrings.resx:PrimaryTextL1Template;" },
|
|
99
|
-
* "description": { "id": "$./ManifestStrings.resx:PrimaryTextL1TemplateDescription;" },
|
|
100
|
-
* "officeFabricIconFontName": "Balloons",
|
|
101
|
-
* "properties": {
|
|
102
|
-
* "templateType": "primaryText",
|
|
103
|
-
* "title": "Primary Text",
|
|
104
|
-
* "primaryText": "Basic card",
|
|
105
|
-
* "description": "This is an example.",
|
|
106
|
-
* "cardSize": "Medium"
|
|
107
|
-
* }
|
|
108
|
-
* }]
|
|
109
|
-
* ```
|
|
110
|
-
*/
|
|
111
|
-
preconfiguredEntries: IAdaptiveCardExtensionManifestEntry<TProperties>[];
|
|
112
|
-
}
|
|
14
|
+
/* Excluded from this release type: IAdaptiveCardExtensionManifest */
|
|
113
15
|
|
|
114
|
-
|
|
115
|
-
* This interface specifies the set of properties that can be pre-configured by a AdaptiveCardExtension developer. Each
|
|
116
|
-
* pre-configured instance of the AdaptiveCardExtension will need a copy of these properties. Organization admins and
|
|
117
|
-
* content authors can modify these properties on a need basis.
|
|
118
|
-
*
|
|
119
|
-
* @beta
|
|
120
|
-
*/
|
|
121
|
-
export declare interface IAdaptiveCardExtensionManifestEntry<TProperties> {
|
|
122
|
-
/**
|
|
123
|
-
* Size of the AdaptiveCardExtension when it is rendered. This is value must be one of the supported CardSizes
|
|
124
|
-
* ["Medium", "Large"] defined in the sp-adaptive-card-base project.
|
|
125
|
-
*/
|
|
126
|
-
cardSize: string;
|
|
127
|
-
/**
|
|
128
|
-
* Title of the AdaptiveCardExtension represented as a single a dictionary of locale keys to title values. This
|
|
129
|
-
* value will be displayed to the user in the toolbox.
|
|
130
|
-
*
|
|
131
|
-
* @remarks
|
|
132
|
-
* This title should be used in the Toolbox and other display areas. The AdaptiveCardExtension developer may give
|
|
133
|
-
* an initial title to the AdaptiveCardExtension. The organization admin and page author will have the ability to
|
|
134
|
-
* change this title as per need.
|
|
135
|
-
*
|
|
136
|
-
* Usage: display the name of the AdaptiveCardExtension in the toolbox, web part gallery and the page.
|
|
137
|
-
*
|
|
138
|
-
* Supported values: a dictionary of locale keys to strings. Should always have a `'default'` key.
|
|
139
|
-
*
|
|
140
|
-
* Example: `"My Webpart"`
|
|
141
|
-
* ```
|
|
142
|
-
* {
|
|
143
|
-
* "default": "My WebPart"
|
|
144
|
-
* "en-us": "My WebPart",
|
|
145
|
-
* "fr-fr": "Ma WebPart",
|
|
146
|
-
* "zh": "我的 web 部件"
|
|
147
|
-
* }
|
|
148
|
-
* ```
|
|
149
|
-
*/
|
|
150
|
-
title: ILocalizedString;
|
|
151
|
-
/**
|
|
152
|
-
* Description of the AdaptiveCardExtension represented as a dictionary of locale keys to description values. This
|
|
153
|
-
* value will be displayed to the user in the toolbox. This description should be used in the Toolbox tooltip and
|
|
154
|
-
* other display areas.
|
|
155
|
-
*
|
|
156
|
-
* @remarks
|
|
157
|
-
* The AdaptiveCardExtension developer may give an initial description to the AdaptiveCardExtension. The organization
|
|
158
|
-
* admin and page author will have the ability to change this description as per need.
|
|
159
|
-
*
|
|
160
|
-
* Usage: display the description of the AdaptiveCardExtension in the toolbox tooltip, web part gallery and the page.
|
|
161
|
-
*
|
|
162
|
-
* Supported values: a dictionary of locale keys to strings. Should always have a `'default'` key.
|
|
163
|
-
*
|
|
164
|
-
* Example: `"A tool for displaying neat information."`
|
|
165
|
-
*
|
|
166
|
-
* ```
|
|
167
|
-
* {
|
|
168
|
-
* "default": "A tool for displaying neat information.",
|
|
169
|
-
* "en-us": "A tool for displaying neat information.",
|
|
170
|
-
* "fr-fr": "Un outil d'affichage des informations soignées.",
|
|
171
|
-
* "zh": "用於顯示整潔資訊的工具。"
|
|
172
|
-
* }
|
|
173
|
-
* ```
|
|
174
|
-
*/
|
|
175
|
-
description: ILocalizedString;
|
|
176
|
-
/**
|
|
177
|
-
* The icon for the AdaptiveCardExtension, to be displayed in the toolbox, represented as a character name in the
|
|
178
|
-
* Office 365 icon font file.
|
|
179
|
-
*
|
|
180
|
-
* @remarks
|
|
181
|
-
* The icon font is specified here: {@link https://aka.ms/uifabric-icons} If this field has
|
|
182
|
-
* a value, the {@link IClientSideWebPartManifestEntry.iconImageUrl} field will be ignored.
|
|
183
|
-
*
|
|
184
|
-
* Supported values: Any character name in the Office 365 Icon Font.
|
|
185
|
-
*
|
|
186
|
-
* Example: "graph"
|
|
187
|
-
*/
|
|
188
|
-
officeFabricIconFontName?: string;
|
|
189
|
-
/**
|
|
190
|
-
* The icon for the AdaptiveCardExtension, to be displayed in the toolbox, represented an image URL. The image at the
|
|
191
|
-
* URL must be exactly 40x28 px (SPPPLAT VSO#218660 to fix the size of the icon image).
|
|
192
|
-
*
|
|
193
|
-
* @remarks
|
|
194
|
-
* If the {@link IClientSideWebPartManifestEntry.officeFabricIconFontName} field does not have a value,
|
|
195
|
-
* this field must have a value. This value can be an absolute URL (e.g. `"http://example.com/icons/my-icon.png"`) or
|
|
196
|
-
* a relative file path (e.g. `"./icons/my-icon.png"`). In the latter case, the path will be resolved relative to
|
|
197
|
-
* the folder containing the input manifest. The icon file will be copied to the deployment folder like an asset,
|
|
198
|
-
* and the output manifest's iconImageUrl will be replaced with a URL relative to the URL used to load all other
|
|
199
|
-
* assets (the loaderConfig.internalModuleBaseUrls property).
|
|
200
|
-
*
|
|
201
|
-
* Supported values: Any absolute URL.
|
|
202
|
-
*
|
|
203
|
-
* Example: `"https://contoso.akamaihd.net/files/myWebpartIcon.png"`
|
|
204
|
-
*/
|
|
205
|
-
iconImageUrl?: string;
|
|
206
|
-
/**
|
|
207
|
-
* The group id to determine which modern group contains the AdaptiveCardExtension in modern site page. The SharePoint
|
|
208
|
-
* Framework reserves group ids for predefined groups. The developer can pick one from those groups. If the developer
|
|
209
|
-
* fills an id not in the predefined groups, it falls back to Other group.
|
|
210
|
-
*
|
|
211
|
-
* @remarks
|
|
212
|
-
*
|
|
213
|
-
* Supported values: the GUID from PredefinedGroup list
|
|
214
|
-
*
|
|
215
|
-
* Example: `"cf066440-0614-43d6-98ae-0b31cf14c7c3"`
|
|
216
|
-
*
|
|
217
|
-
* @beta
|
|
218
|
-
*/
|
|
219
|
-
groupId: PredefinedGroup | string;
|
|
220
|
-
/**
|
|
221
|
-
* This field is used to tag a AdaptiveCardExtension with keywords that are different from the AdaptiveCardExtension group name.
|
|
222
|
-
* Tags can be used for categorization and searching of AdaptiveCardExtensions. For example, in the toolbox.
|
|
223
|
-
*
|
|
224
|
-
* @remarks
|
|
225
|
-
*
|
|
226
|
-
* Example `[{ "default": "image" }, { "default": "media" }, { "default": "picture" }, ...]`
|
|
227
|
-
*
|
|
228
|
-
* @beta
|
|
229
|
-
*/
|
|
230
|
-
tags?: ILocalizedString[];
|
|
231
|
-
/**
|
|
232
|
-
* Definition: Use this field to specify the data version of the pre-configured data provided to the AdaptiveCardExtension.
|
|
233
|
-
* Note that data version is different from the version field in the manifest.
|
|
234
|
-
*
|
|
235
|
-
* @remarks
|
|
236
|
-
* The manifest version is used to control the versioning of the AdaptiveCardExtension code, while data version is used
|
|
237
|
-
* to control the versioning of the serialized data of the AdaptiveCardExtension. Refer to dataVersion field of your
|
|
238
|
-
* AdaptiveCardExtension for more information.
|
|
239
|
-
*
|
|
240
|
-
* Usage: versioning and evolving the serialized data of the AdaptiveCardExtension
|
|
241
|
-
*
|
|
242
|
-
* Type: string representing a {@link http://semver.org | semantic version} with only two parts
|
|
243
|
-
*
|
|
244
|
-
* Supported values: MAJOR.MINOR
|
|
245
|
-
*
|
|
246
|
-
* Example: `"1.0"`
|
|
247
|
-
*/
|
|
248
|
-
dataVersion?: string;
|
|
249
|
-
/**
|
|
250
|
-
* Every AdaptiveCardExtension is expected to have some custom properties. For example, a page AdaptiveCardExtension might define
|
|
251
|
-
* properties for the page URL and caption text. A list AdaptiveCardExtension may have the list ID and list title as its
|
|
252
|
-
* properties, and so on.
|
|
253
|
-
*
|
|
254
|
-
* @remarks
|
|
255
|
-
*
|
|
256
|
-
* The SharePoint Framework passes these properties to the AdaptiveCardExtensions when they are loaded. The AdaptiveCardExtension developer
|
|
257
|
-
* fully controls the schema for these properties. The AdaptiveCardExtension developer should follow versioning rules when
|
|
258
|
-
* updating the properties.
|
|
259
|
-
*
|
|
260
|
-
* Usage: rendering of the AdaptiveCardExtension
|
|
261
|
-
*
|
|
262
|
-
* Example: `{"imageSource": "https://contoso.akamaihd.net/files/contosoLogo.jpg", "captionText": "Contoso logo"}"`
|
|
263
|
-
*/
|
|
264
|
-
properties: TProperties;
|
|
265
|
-
}
|
|
16
|
+
/* Excluded from this release type: IAdaptiveCardExtensionManifestEntry */
|
|
266
17
|
|
|
267
18
|
/* Excluded from this release type: ICapabilityCollection */
|
|
268
19
|
|
|
@@ -286,120 +37,7 @@ export declare interface IClientSideAssemblyManifest extends IClientSideComponen
|
|
|
286
37
|
rootComponentId: string;
|
|
287
38
|
}
|
|
288
39
|
|
|
289
|
-
|
|
290
|
-
* This interface describes how a client-side component is to be loaded and initialized by a SharePoint client
|
|
291
|
-
* framework. It contains all data for loading an entrypoint script and its dependency scripts.
|
|
292
|
-
*
|
|
293
|
-
* @beta
|
|
294
|
-
*/
|
|
295
|
-
export declare interface IClientSideComponentLoaderConfiguration {
|
|
296
|
-
/**
|
|
297
|
-
* This is an array of fully-qualified paths to be prepended to each of the script resource paths with the
|
|
298
|
-
* "internal" or "localized" type. If one fails to load, the loader will attempt to load from the next until there
|
|
299
|
-
* are no base paths remaining.
|
|
300
|
-
*
|
|
301
|
-
* @remarks
|
|
302
|
-
* All "internal" and "localized" script resources that do not have fully-qualified URLs
|
|
303
|
-
* as their "path" field values must be hosted under each of the paths listed in this property. For example, if an
|
|
304
|
-
* internal module's "path" field value is `"master_2015-04-20/my-application.bundle_1928f8a0.js"` and this field's
|
|
305
|
-
* value is `[ "https://contoso.akamaihd.net/files/", "https://contoso.msecnd.net/files/" ]`, the loader will first
|
|
306
|
-
* attempt to load this script resource from the URL
|
|
307
|
-
* `"https://contoso.akamaihd.net/files/master_2015-04-20/my-application.bundle_1928f8a0.js"`. If loading from
|
|
308
|
-
* that URL fails, the loader will then attempt to load this script resource from
|
|
309
|
-
* `"https://contoso.msecnd.net/files/master_2015-04-20/my-application.bundle_1928f8a0.js"`. If that URL fails
|
|
310
|
-
* to load, the component will fail to load and an error will be returned. It is important to note that the support
|
|
311
|
-
* for multiple base URLs is purely for failover support. This means that all files must be present on all hosts
|
|
312
|
-
* listed in this field.
|
|
313
|
-
*
|
|
314
|
-
* Usage: Base URLs for script resources with the "internal" or "localized" type.
|
|
315
|
-
*
|
|
316
|
-
* Supported values: Any URL that contains all internal scripts referenced in the "scriptResources" dictionary.
|
|
317
|
-
*
|
|
318
|
-
* Example: `[ "https://contoso.akamaihd.net/files/", "https://contoso.msecnd.net/files/" ]`
|
|
319
|
-
*/
|
|
320
|
-
internalModuleBaseUrls: string[];
|
|
321
|
-
/**
|
|
322
|
-
* This is the ID of one of the entries in the "scriptResources" dictionary.
|
|
323
|
-
*
|
|
324
|
-
* @remarks
|
|
325
|
-
* The loader will download and evaluate the script resource referenced in this field, resolve all dependencies
|
|
326
|
-
* against the keys in the "scriptResources", and return the exported object to the loader's calling function.
|
|
327
|
-
* The entry referenced in the "scriptResources" dictionary must be of the "internal" or the "localized" type.
|
|
328
|
-
*
|
|
329
|
-
* Supported values: An entry in the "scriptResources" dictionary that defines the base exported module of the
|
|
330
|
-
* component.
|
|
331
|
-
*
|
|
332
|
-
* Example: `"myApplication.bundle"`
|
|
333
|
-
*/
|
|
334
|
-
entryModuleId: string;
|
|
335
|
-
/**
|
|
336
|
-
* The module referenced by the "entryModuleId" field may export an object with several fields.
|
|
337
|
-
*
|
|
338
|
-
* @remarks
|
|
339
|
-
* This value optionally references the name of a field on the object exported by the module referenced by the
|
|
340
|
-
* `entryModuleId` field. When this field has a value, the value of the referenced field on the object exported
|
|
341
|
-
* by the module referenced by the `entryModuleId` field is returned when this manifest is loaded instead of
|
|
342
|
-
* the base exported object. For example, if entryModuleId refers to a module with with a top-level export of
|
|
343
|
-
* `{ foo: 'bar', baz: 123 }` and:
|
|
344
|
-
*
|
|
345
|
-
* - if this field is unset, the value returned by the module loader is `{ foo: 'bar', baz: 123 }`
|
|
346
|
-
*
|
|
347
|
-
* - if this field is set to `foo`, the value returned by the module loader is `bar`
|
|
348
|
-
*
|
|
349
|
-
* - if this field is set to `bar`, the value returned by the module loader is undefined (as `bar` is not a key in
|
|
350
|
-
* the top-level export).
|
|
351
|
-
*
|
|
352
|
-
* Example: `mySpWebpart`
|
|
353
|
-
*/
|
|
354
|
-
exportName?: string;
|
|
355
|
-
/**
|
|
356
|
-
* This is a dictionary of named script resources. `path` and `localizedPath` modules may reference each
|
|
357
|
-
* other and `manifest` modules are expected to be provided by the framework runtime. The resource named in the
|
|
358
|
-
* `entryModuleId` must contain the component's exported object.
|
|
359
|
-
*
|
|
360
|
-
* @remarks
|
|
361
|
-
*
|
|
362
|
-
* Supported values: A dictionary of named script resources.
|
|
363
|
-
*
|
|
364
|
-
* Example:
|
|
365
|
-
*
|
|
366
|
-
* ```
|
|
367
|
-
* {
|
|
368
|
-
* "myApplication.bundle": {
|
|
369
|
-
* "type": "path",
|
|
370
|
-
* "path": "master_2015-04-20/my-application.bundle_1928f8a0.js"
|
|
371
|
-
* },
|
|
372
|
-
* "@microsoft/sp-client-base": {
|
|
373
|
-
* "type": "component",
|
|
374
|
-
* "id": "af59c2b3-2da7-41fd-8b72-3939817960af",
|
|
375
|
-
* "version": "latest"
|
|
376
|
-
* },
|
|
377
|
-
* "@microsoft/sp-client-preview": {
|
|
378
|
-
* "type": "component",
|
|
379
|
-
* "id": "4d5eb168-6729-49a8-aec7-0e397f486b6e",
|
|
380
|
-
* "version": "latest"
|
|
381
|
-
* },
|
|
382
|
-
* "jQuery": {
|
|
383
|
-
* "type": "component",
|
|
384
|
-
* "id": "00000000-0000-0000-0000-000000000000",
|
|
385
|
-
* "version": "2.2.4",
|
|
386
|
-
* "path": "https://code.jquery.com/jquery-2.2.4.min.js"
|
|
387
|
-
* },
|
|
388
|
-
* "myApplication_strings": {
|
|
389
|
-
* "type": "localizedPath",
|
|
390
|
-
* "defaultPath": "master_2015-04-20/my-application_strings_default_af378e0d.js",
|
|
391
|
-
* "paths": {
|
|
392
|
-
* "en-us": "master_2015-04-20/my-application_strings_en-us_d38ff012.js",
|
|
393
|
-
* "fr-fr": "master_2015-04-20/my-application_strings_fr-fr_138af7e4.js"
|
|
394
|
-
* }
|
|
395
|
-
* }
|
|
396
|
-
* }
|
|
397
|
-
* ```
|
|
398
|
-
*/
|
|
399
|
-
scriptResources: {
|
|
400
|
-
[name: string]: IModuleConfiguration;
|
|
401
|
-
};
|
|
402
|
-
}
|
|
40
|
+
/* Excluded from this release type: IClientSideComponentLoaderConfiguration */
|
|
403
41
|
|
|
404
42
|
/**
|
|
405
43
|
* All client-side components built on the SharePoint framework need a valid component manifest. This interface
|
|
@@ -508,19 +146,7 @@ export declare interface IClientSideComponentManifest extends IClientSideManifes
|
|
|
508
146
|
* Usage: Requires Custom Script to be allowed in order for this component to be installed and run.
|
|
509
147
|
*/
|
|
510
148
|
requiresCustomScript?: boolean;
|
|
511
|
-
|
|
512
|
-
* This portion of the configuration describes how the component is to be loaded and initialized by a
|
|
513
|
-
* client. It contains an enumeration of scripts that the component requires along with a single
|
|
514
|
-
* entry point script.
|
|
515
|
-
*
|
|
516
|
-
* @remarks
|
|
517
|
-
* Usage: Loading a component.
|
|
518
|
-
*
|
|
519
|
-
* See `IClientSideComponentLoaderConfiguration` for more information and examples.
|
|
520
|
-
*
|
|
521
|
-
* @beta
|
|
522
|
-
*/
|
|
523
|
-
loaderConfig: IClientSideComponentLoaderConfiguration;
|
|
149
|
+
/* Excluded from this release type: loaderConfig */
|
|
524
150
|
/* Excluded from this release type: isolatedDomain */
|
|
525
151
|
/* Excluded from this release type: storeAppId */
|
|
526
152
|
/* Excluded from this release type: mpnId */
|
|
@@ -802,42 +428,9 @@ export declare interface IClientSideWebPartManifestEntry<TProperties> {
|
|
|
802
428
|
* Example: `"https://contoso.akamaihd.net/files/myWebpartIcon.png"`
|
|
803
429
|
*/
|
|
804
430
|
iconImageUrl?: string;
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
* fills an id not in the predefined groups, it falls back to Other group.
|
|
809
|
-
*
|
|
810
|
-
* @remarks
|
|
811
|
-
*
|
|
812
|
-
* Supported values: the GUID from PredefinedGroup list
|
|
813
|
-
*
|
|
814
|
-
* Example: `"cf066440-0614-43d6-98ae-0b31cf14c7c3"`
|
|
815
|
-
*
|
|
816
|
-
* @beta
|
|
817
|
-
*/
|
|
818
|
-
groupId: PredefinedGroup | string;
|
|
819
|
-
/**
|
|
820
|
-
* The group name in web part picker to contain the web part in the classic page. If no value is provided,
|
|
821
|
-
* then the web part will be displayed in the Miscellaneous group.
|
|
822
|
-
*
|
|
823
|
-
* @remarks
|
|
824
|
-
*
|
|
825
|
-
* Example: `{ "default": "Media and Content" }`
|
|
826
|
-
*
|
|
827
|
-
* @beta
|
|
828
|
-
*/
|
|
829
|
-
group?: ILocalizedString;
|
|
830
|
-
/**
|
|
831
|
-
* This field is used to tag a web part with keywords that are different from the web part group name.
|
|
832
|
-
* Tags can be used for categorization and searching of web parts. For example, in the web part toolbox.
|
|
833
|
-
*
|
|
834
|
-
* @remarks
|
|
835
|
-
*
|
|
836
|
-
* Example `[{ "default": "image" }, { "default": "media" }, { "default": "picture" }, ...]`
|
|
837
|
-
*
|
|
838
|
-
* @beta
|
|
839
|
-
*/
|
|
840
|
-
tags?: ILocalizedString[];
|
|
431
|
+
/* Excluded from this release type: groupId */
|
|
432
|
+
/* Excluded from this release type: group */
|
|
433
|
+
/* Excluded from this release type: tags */
|
|
841
434
|
/**
|
|
842
435
|
* Definition: Use this field to specify the data version of the pre-configured data provided to the web part.
|
|
843
436
|
* Note that data version is different from the version field in the manifest.
|
|
@@ -969,124 +562,11 @@ export declare interface ICommandSetExtensionManifest extends IClientSideExtensi
|
|
|
969
562
|
};
|
|
970
563
|
}
|
|
971
564
|
|
|
972
|
-
|
|
973
|
-
* This is the interface for a script module with the "component" type. Modules of this type will be provided via
|
|
974
|
-
* manifests. In order for the dependency to be loaded, the manifest must be available on the site.
|
|
975
|
-
*
|
|
976
|
-
* @beta
|
|
977
|
-
*/
|
|
978
|
-
export declare interface IComponentModuleConfiguration extends IModuleConfigurationBase {
|
|
979
|
-
type: 'component';
|
|
980
|
-
/**
|
|
981
|
-
* The version of the framework-supplied component to be loaded. For framework runtime component such as
|
|
982
|
-
* `@microsoft/sp-client-base`, it is recommended the version of the framework component the component was developed
|
|
983
|
-
* against be specified.
|
|
984
|
-
*
|
|
985
|
-
* @remarks
|
|
986
|
-
*
|
|
987
|
-
* Supported values: string representing a {@link http://semver.org | semantic version}, or "latest".
|
|
988
|
-
*
|
|
989
|
-
* Example: `"2.2.4"`
|
|
990
|
-
*/
|
|
991
|
-
version: string;
|
|
992
|
-
/**
|
|
993
|
-
* The ID of the framework-supplied component to be loaded.
|
|
994
|
-
*
|
|
995
|
-
* @remarks
|
|
996
|
-
*
|
|
997
|
-
* Supported values: string representing a component's ID.
|
|
998
|
-
*
|
|
999
|
-
* Example: `"0d910c1c-13b9-4e1c-9aa4-b008c5e42d7d"`
|
|
1000
|
-
*/
|
|
1001
|
-
id: string;
|
|
1002
|
-
/**
|
|
1003
|
-
* A path to the framework-supplied component in case the framework fails to load the requested version.
|
|
1004
|
-
*
|
|
1005
|
-
* @remarks
|
|
1006
|
-
* This must be either a fully-qualified URL, or a path under the paths specified in the `internalModuleBaseUrls`
|
|
1007
|
-
* field. If this field is not specified and the version is not available in the framework runtime, the closest
|
|
1008
|
-
* matching version of the component will be provided instead.
|
|
1009
|
-
*
|
|
1010
|
-
* Supported values: The path to the component either as a fully-qualified URL or as a path under the
|
|
1011
|
-
* paths provided in the "internalModuleBaseUrls" field.
|
|
1012
|
-
*
|
|
1013
|
-
* Example: `"https://code.jquery.com/jquery-2.2.4.min.js"`
|
|
1014
|
-
*/
|
|
1015
|
-
failoverPath?: string | IIntegrityPath;
|
|
1016
|
-
}
|
|
565
|
+
/* Excluded from this release type: IComponentModuleConfiguration */
|
|
1017
566
|
|
|
1018
|
-
|
|
1019
|
-
* A path with the subresource integrity hash of the resource.
|
|
1020
|
-
*
|
|
1021
|
-
* @beta
|
|
1022
|
-
*/
|
|
1023
|
-
export declare interface IIntegrityPath {
|
|
1024
|
-
/**
|
|
1025
|
-
* The path to the resource.
|
|
1026
|
-
*/
|
|
1027
|
-
path: string;
|
|
1028
|
-
/**
|
|
1029
|
-
* The subresource integrity hash of the resource referenced in {@link IIntegrityPath.path}.
|
|
1030
|
-
*/
|
|
1031
|
-
integrity?: string;
|
|
1032
|
-
}
|
|
567
|
+
/* Excluded from this release type: IIntegrityPath */
|
|
1033
568
|
|
|
1034
|
-
|
|
1035
|
-
* This is the interface for a script module with the "localizedPath" type.
|
|
1036
|
-
*
|
|
1037
|
-
* @remarks
|
|
1038
|
-
* Modules of this type must be provided by the component developer. These script resources are similar to those of
|
|
1039
|
-
* the "path" type, but they may be present at a number of different paths, to be selected by the user's locale.
|
|
1040
|
-
* Paths in this module type are loaded exactly the same way as "internal" modules are.
|
|
1041
|
-
*
|
|
1042
|
-
* @beta
|
|
1043
|
-
*/
|
|
1044
|
-
export declare interface ILocalizedPathModuleConfiguration extends IModuleConfigurationBase {
|
|
1045
|
-
type: 'localizedPath';
|
|
1046
|
-
/**
|
|
1047
|
-
* A path to this module's default locale javascript resource either as a fully-qualified URL or as a
|
|
1048
|
-
* path under the paths provided in the "internalModuleBaseUrls" field.
|
|
1049
|
-
*
|
|
1050
|
-
* @remarks
|
|
1051
|
-
* If the user's locale does not resolve to one of the paths specified in the "paths" field, the path in this
|
|
1052
|
-
* field is used. Paths in this module type are treated exactly the same way paths in modules of the "internal"
|
|
1053
|
-
* type are treated.
|
|
1054
|
-
*
|
|
1055
|
-
* Supported values: The path to the default locale version of the module either as a fully-qualified URL or as a path
|
|
1056
|
-
* under the paths provided in the "internalModuleBaseUrls" field.
|
|
1057
|
-
*
|
|
1058
|
-
* Example: `"master_2015-04-20/my-application_strings_default_af378e0d.js"`
|
|
1059
|
-
*/
|
|
1060
|
-
defaultPath: string | IIntegrityPath;
|
|
1061
|
-
/**
|
|
1062
|
-
* This is a dictionary of locale keys (in the `"ll-cc"` format) to paths to this module's locale
|
|
1063
|
-
* javascript resource either as a fully-qualified URL or as a path under the paths provided in the
|
|
1064
|
-
* `"internalModuleBaseUrls"` field.
|
|
1065
|
-
*
|
|
1066
|
-
* @remarks
|
|
1067
|
-
* The loader will attempt to resolve the user's locale to one of the paths provided by this field, and will load
|
|
1068
|
-
* the script resource under that path. If the user's locale does not resolve to one of the paths specified in this
|
|
1069
|
-
* field, the path in `"defaultPath"` field is used. For example, if the user's locale is `"en-gb"`, and this field's
|
|
1070
|
-
* value contains the keys `[ "en-us", "en-gb", "fr-fr" ]`, the path specified by the `"en-gb"` key will be used.
|
|
1071
|
-
* If the user's locale is "en-gb", and this field's value contains the keys `[ "en-us", "fr-fr" ]`, the path
|
|
1072
|
-
* specified by the `"en-us"` key will be used. If the user's locale is `"en-gb"`, and this field's value contains
|
|
1073
|
-
* the keys `[ "es-es", "fr-fr" ]`, the path specified by the "defaultPath" field will be used.
|
|
1074
|
-
* Paths in this module type are treated exactly the same way paths in modules of the "internal" type are treated.
|
|
1075
|
-
*
|
|
1076
|
-
* Supported values: A dictionary of locale-to-path mappings.
|
|
1077
|
-
*
|
|
1078
|
-
* Example:
|
|
1079
|
-
* ```
|
|
1080
|
-
* {
|
|
1081
|
-
* "en-us": "master_2015-04-20/my-application_strings_en-us_d38ff012.js",
|
|
1082
|
-
* "fr-fr": "master_2015-04-20/my-application_strings_fr-fr_138af7e4.js"
|
|
1083
|
-
* }
|
|
1084
|
-
* ```
|
|
1085
|
-
*/
|
|
1086
|
-
paths?: {
|
|
1087
|
-
[locale: string]: string | IIntegrityPath;
|
|
1088
|
-
};
|
|
1089
|
-
}
|
|
569
|
+
/* Excluded from this release type: ILocalizedPathModuleConfiguration */
|
|
1090
570
|
|
|
1091
571
|
/**
|
|
1092
572
|
* A set of localized strings.
|
|
@@ -1134,188 +614,16 @@ export declare interface ILocalizedString {
|
|
|
1134
614
|
[locale: string]: string | undefined;
|
|
1135
615
|
}
|
|
1136
616
|
|
|
1137
|
-
|
|
1138
|
-
* @beta
|
|
1139
|
-
*/
|
|
1140
|
-
export declare type IModuleConfiguration = IComponentModuleConfiguration | IPathModuleConfiguration | ILocalizedPathModuleConfiguration;
|
|
617
|
+
/* Excluded from this release type: IModuleConfiguration */
|
|
1141
618
|
|
|
1142
|
-
|
|
1143
|
-
* This is the base interface for a script module's definition.
|
|
1144
|
-
*
|
|
1145
|
-
* @beta
|
|
1146
|
-
*/
|
|
1147
|
-
export declare interface IModuleConfigurationBase {
|
|
1148
|
-
/**
|
|
1149
|
-
* The type of the script block. `"component"` modules come from a component,
|
|
1150
|
-
* `"path"` and `"localizedPath"` modules must be available on the paths provided in
|
|
1151
|
-
* the `"internalModuleBaseUrls"` field.
|
|
1152
|
-
*
|
|
1153
|
-
* @remarks
|
|
1154
|
-
*
|
|
1155
|
-
* Modules with the `"path"` type use the `IPathModuleConfiguration` interface.
|
|
1156
|
-
*
|
|
1157
|
-
* Modules with the `"component"` type use the `IComponentModuleConfiguration` interface.
|
|
1158
|
-
* Modules with the "localizedPath" type use the `ILocalizedPathModuleConfiguration` interface.
|
|
1159
|
-
*
|
|
1160
|
-
* Supported values: `"component"`, `"path"`, `"localizedPath"`
|
|
1161
|
-
*
|
|
1162
|
-
* Example: `"localized"`
|
|
1163
|
-
*/
|
|
1164
|
-
type: 'component' | 'path' | 'localizedPath';
|
|
1165
|
-
/**
|
|
1166
|
-
* If set to `true`, this module should not be preloaded when loading the component.
|
|
1167
|
-
*
|
|
1168
|
-
* @remarks
|
|
1169
|
-
* The most common case for setting this property to "true" is when a module is defined in a manifest,
|
|
1170
|
-
* but is not required for the module referenced in "entryModuleId" to load. Modules may be defined that
|
|
1171
|
-
* are loaded asynchronously, and these modules do not need to be preloaded. This field implicitly defaults
|
|
1172
|
-
* to `false`.
|
|
1173
|
-
*
|
|
1174
|
-
* Usage: Instructs the module loader to not preload this module.
|
|
1175
|
-
*/
|
|
1176
|
-
shouldNotPreload?: boolean;
|
|
1177
|
-
}
|
|
619
|
+
/* Excluded from this release type: IModuleConfigurationBase */
|
|
1178
620
|
|
|
1179
|
-
|
|
1180
|
-
* This is the interface for a script module with the "path" type. Modules of this type must be provided by the
|
|
1181
|
-
* component developer.
|
|
1182
|
-
*
|
|
1183
|
-
* @beta
|
|
1184
|
-
*/
|
|
1185
|
-
export declare interface IPathModuleConfiguration extends IModuleConfigurationBase {
|
|
1186
|
-
type: 'path';
|
|
1187
|
-
/**
|
|
1188
|
-
* A path to this module's javascript resource either as a fully-qualified URL or as a path under the
|
|
1189
|
-
* paths provided in the `internalModuleBaseUrls` field.
|
|
1190
|
-
*
|
|
1191
|
-
* @remarks
|
|
1192
|
-
*
|
|
1193
|
-
* For example, if this field's value is `"master_2015-04-20/my-application.bundle_1928f8a0.js"` and
|
|
1194
|
-
* the `"internalModuleBaseUrls"` field's value is
|
|
1195
|
-
* `[ "https://contoso.akamaihd.net/files/", "https://contoso.msecnd.net/files/" ]`, the loader will
|
|
1196
|
-
* first attempt to load this script resource from the URL
|
|
1197
|
-
* `"https://contoso.akamaihd.net/files/master_2015-04-20/my-application.bundle_1928f8a0.js"`.
|
|
1198
|
-
* If loading from that URL fails, the loader will then attempt to load this script resource from
|
|
1199
|
-
* `"https://contoso.msecnd.net/files/master_2015-04-20/my-application.bundle_1928f8a0.js"`.
|
|
1200
|
-
* If that URL fails to load, the component will fail to load and an error will be returned.
|
|
1201
|
-
*
|
|
1202
|
-
* Supported values: The path to the module either as a fully-qualified URL or as a path under the
|
|
1203
|
-
* paths provided in the "internalModuleBaseUrls" field.
|
|
1204
|
-
*
|
|
1205
|
-
* Example: `"master_2015-04-20/my-application.bundle_1928f8a0.js"`
|
|
1206
|
-
*/
|
|
1207
|
-
path: string | IIntegrityPath;
|
|
1208
|
-
/**
|
|
1209
|
-
* If this property is specified, this module is considered non-AMD and
|
|
1210
|
-
* the module loader will not expect "define" or "require" to be called.
|
|
1211
|
-
*
|
|
1212
|
-
* @remarks
|
|
1213
|
-
* In order to load scripts that don't follow the AMD/module-pattern where "define" or "require" is
|
|
1214
|
-
* called and dependencies are explicitly listed and exports are explicitly returned, the module loader needs to
|
|
1215
|
-
* know which global variable must be examined. If this property is specified, this module is considered non-AMD and
|
|
1216
|
-
* the module loader will not expect "define" or "require" to be called. Instead, it will wait for the script to
|
|
1217
|
-
* finish loading and examine the global variable specified in this field.
|
|
1218
|
-
*
|
|
1219
|
-
* Supported values: Variable names that are expected to be populated after this module is loaded. For example,
|
|
1220
|
-
* if this module is describing jQuery, this value should probably be "$". If an empty string is specified,
|
|
1221
|
-
* the module loader will throw an exception and the component will fail to load.
|
|
1222
|
-
*
|
|
1223
|
-
* Example: `"$"`
|
|
1224
|
-
*/
|
|
1225
|
-
globalName?: string;
|
|
1226
|
-
/**
|
|
1227
|
-
* For non-AMD/module-pattern scripts that have dependencies (for example, jQuery plugins), the module
|
|
1228
|
-
* loader will ensure that those dependencies are already loaded.
|
|
1229
|
-
*
|
|
1230
|
-
* @remarks
|
|
1231
|
-
* Entries in the array specified in this field must refer to other non-AMD modules in this component. This field
|
|
1232
|
-
* is not required to have a value for non-AMD modules. If any values are specified that do not refer to other
|
|
1233
|
-
* modules in the same component manifest that this module is specified, the module loader will throw an exception
|
|
1234
|
-
* and the component will fail to load.
|
|
1235
|
-
*
|
|
1236
|
-
* Supported values: Names of other non-AMD-pattern modules in this loader configuration, as specified by the key
|
|
1237
|
-
* `IClientSideComponentLoaderConfiguration.scriptResources[]`
|
|
1238
|
-
*
|
|
1239
|
-
* Example: `["jquery"]`
|
|
1240
|
-
*/
|
|
1241
|
-
globalDependencies?: string[];
|
|
1242
|
-
}
|
|
621
|
+
/* Excluded from this release type: IPathModuleConfiguration */
|
|
1243
622
|
|
|
1244
623
|
/* Excluded from this release type: IPreloadOptions */
|
|
1245
624
|
|
|
1246
625
|
/* Excluded from this release type: ManifestType */
|
|
1247
626
|
|
|
1248
|
-
|
|
1249
|
-
* Predefined web part group.
|
|
1250
|
-
*
|
|
1251
|
-
* @beta
|
|
1252
|
-
*/
|
|
1253
|
-
export declare const enum PredefinedGroup {
|
|
1254
|
-
/**
|
|
1255
|
-
* Text, media and content.
|
|
1256
|
-
*
|
|
1257
|
-
* This group includes web parts that display text, multi-media, documents, information from the web, and other
|
|
1258
|
-
* rich content.
|
|
1259
|
-
*
|
|
1260
|
-
* @beta
|
|
1261
|
-
*/
|
|
1262
|
-
TextMediaAndContent = "cf066440-0614-43d6-98ae-0b31cf14c7c3",
|
|
1263
|
-
/**
|
|
1264
|
-
* Discovery.
|
|
1265
|
-
*
|
|
1266
|
-
* This group includes web parts that organize, group, and filter content to help users discover information.
|
|
1267
|
-
*
|
|
1268
|
-
* @beta
|
|
1269
|
-
*/
|
|
1270
|
-
Discovery = "1edbd9a8-0bfb-4aa2-9afd-14b8c45dd489",
|
|
1271
|
-
/**
|
|
1272
|
-
* Communication and collaboration.
|
|
1273
|
-
*
|
|
1274
|
-
* This group includes web parts that facilitate information sharing, team work, and social interactions.
|
|
1275
|
-
*
|
|
1276
|
-
* @beta
|
|
1277
|
-
*/
|
|
1278
|
-
CommunicationAndCollaboration = "75e22ed5-fa14-4829-850a-c890608aca2d",
|
|
1279
|
-
/**
|
|
1280
|
-
* Planning and process.
|
|
1281
|
-
*
|
|
1282
|
-
* This group includes web parts that empower team productivity with the use of planning and process tools.
|
|
1283
|
-
*
|
|
1284
|
-
* @beta
|
|
1285
|
-
*/
|
|
1286
|
-
PlanningAndProcess = "1bc7927e-4a5e-4520-b540-71305c79c20a",
|
|
1287
|
-
/**
|
|
1288
|
-
* Business and intelligence.
|
|
1289
|
-
*
|
|
1290
|
-
* This group includes web parts for tracking and analyzing data, and for integrating business flow with pages.
|
|
1291
|
-
*
|
|
1292
|
-
* @beta
|
|
1293
|
-
*/
|
|
1294
|
-
BusinessAndIntelligence = "4aca9e90-eff5-4fa1-bac7-728f5f157b66",
|
|
1295
|
-
/**
|
|
1296
|
-
* Site tools.
|
|
1297
|
-
*
|
|
1298
|
-
* This group includes web parts for site information and management.
|
|
1299
|
-
*
|
|
1300
|
-
* @beta
|
|
1301
|
-
*/
|
|
1302
|
-
SiteTools = "070951d7-94da-4db8-b06e-9d581f1f55b1",
|
|
1303
|
-
/**
|
|
1304
|
-
* Other.
|
|
1305
|
-
*
|
|
1306
|
-
* This group includes web parts not in other groups.
|
|
1307
|
-
*
|
|
1308
|
-
* @beta
|
|
1309
|
-
*/
|
|
1310
|
-
Other = "5c03119e-3074-46fd-976b-c60198311f70",
|
|
1311
|
-
/**
|
|
1312
|
-
* Other.
|
|
1313
|
-
*
|
|
1314
|
-
* This group includes local web parts.
|
|
1315
|
-
*
|
|
1316
|
-
* @beta
|
|
1317
|
-
*/
|
|
1318
|
-
Local = "8b7bf6f1-a56a-4aa3-8657-7eb6e7e6af61"
|
|
1319
|
-
}
|
|
627
|
+
/* Excluded from this release type: PredefinedGroup */
|
|
1320
628
|
|
|
1321
629
|
export { }
|
package/dist/tsdoc-metadata.json
CHANGED
package/lib-commonjs/index.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { ILocalizedPathModuleConfiguration, IModuleConfiguration, IPathModuleConfiguration } from './manifestSchemas/IClientSideComponentLoaderConfiguration';
|
|
2
|
+
import type { IClientSideComponentManifest } from './manifestSchemas/IClientSideComponentManifest';
|
|
3
|
+
import type { IClientSideMultiVersionManifest } from './manifestSchemas/IClientSideMultiVersionManifest';
|
|
4
|
+
/**
|
|
5
|
+
* Identifies if a component manifest is a multi-version manifest.
|
|
6
|
+
* @param manifest - The manifest for a component, which may have multiple versions
|
|
7
|
+
* @returns If the manifest has multiple versions
|
|
8
|
+
*/
|
|
9
|
+
export declare function isMultiVersionManifest(manifest: IClientSideComponentManifest | IClientSideMultiVersionManifest<IClientSideComponentManifest>): manifest is IClientSideMultiVersionManifest<IClientSideComponentManifest>;
|
|
10
|
+
/**
|
|
11
|
+
* @param config - The module loader configuration for the module.
|
|
12
|
+
* @returns If the module loads as a localized path.
|
|
13
|
+
*/
|
|
14
|
+
export declare function isLocalizedPath(config: IModuleConfiguration): config is ILocalizedPathModuleConfiguration;
|
|
15
|
+
/**
|
|
16
|
+
* @param config - The module loader configuration for the module.
|
|
17
|
+
* @returns If the module loads as a non-localized path.
|
|
18
|
+
*/
|
|
19
|
+
export declare function isPath(config: IModuleConfiguration): config is IPathModuleConfiguration;
|
|
20
|
+
//# sourceMappingURL=manifestHelpers.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"manifestHelpers.d.ts","sourceRoot":"","sources":["../src/manifestHelpers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,iCAAiC,EACjC,oBAAoB,EACpB,wBAAwB,EACzB,MAAM,2DAA2D,CAAC;AACnE,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,gDAAgD,CAAC;AACnG,OAAO,KAAK,EAAE,+BAA+B,EAAE,MAAM,mDAAmD,CAAC;AAEzG;;;;GAIG;AACH,wBAAgB,sBAAsB,CACpC,QAAQ,EAAE,4BAA4B,GAAG,+BAA+B,CAAC,4BAA4B,CAAC,GACrG,QAAQ,IAAI,+BAA+B,CAAC,4BAA4B,CAAC,CAE3E;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAAC,MAAM,EAAE,oBAAoB,GAAG,MAAM,IAAI,iCAAiC,CAEzG;AAED;;;GAGG;AACH,wBAAgB,MAAM,CAAC,MAAM,EAAE,oBAAoB,GAAG,MAAM,IAAI,wBAAwB,CAEvF"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.isPath = exports.isLocalizedPath = exports.isMultiVersionManifest = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Identifies if a component manifest is a multi-version manifest.
|
|
6
|
+
* @param manifest - The manifest for a component, which may have multiple versions
|
|
7
|
+
* @returns If the manifest has multiple versions
|
|
8
|
+
*/
|
|
9
|
+
function isMultiVersionManifest(manifest) {
|
|
10
|
+
return !!manifest.versions;
|
|
11
|
+
}
|
|
12
|
+
exports.isMultiVersionManifest = isMultiVersionManifest;
|
|
13
|
+
/**
|
|
14
|
+
* @param config - The module loader configuration for the module.
|
|
15
|
+
* @returns If the module loads as a localized path.
|
|
16
|
+
*/
|
|
17
|
+
function isLocalizedPath(config) {
|
|
18
|
+
return config.type === 'localizedPath';
|
|
19
|
+
}
|
|
20
|
+
exports.isLocalizedPath = isLocalizedPath;
|
|
21
|
+
/**
|
|
22
|
+
* @param config - The module loader configuration for the module.
|
|
23
|
+
* @returns If the module loads as a non-localized path.
|
|
24
|
+
*/
|
|
25
|
+
function isPath(config) {
|
|
26
|
+
return config.type === 'path';
|
|
27
|
+
}
|
|
28
|
+
exports.isPath = isPath;
|
|
29
|
+
//# sourceMappingURL=manifestHelpers.js.map
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
|
@@ -94,7 +94,7 @@ export interface IAdaptiveCardExtensionManifest<TProperties> extends IClientSide
|
|
|
94
94
|
* ```
|
|
95
95
|
* [{
|
|
96
96
|
* "groupId": "5c03119e-3074-46fd-976b-c60198311f70",
|
|
97
|
-
* "group": { "default": "
|
|
97
|
+
* "group": { "default": "Advanced" },
|
|
98
98
|
* "title": { "id": "$./ManifestStrings.resx:PrimaryTextL1Template;" },
|
|
99
99
|
* "description": { "id": "$./ManifestStrings.resx:PrimaryTextL1TemplateDescription;" },
|
|
100
100
|
* "officeFabricIconFontName": "Balloons",
|
|
@@ -371,7 +371,7 @@ export declare const enum PredefinedGroup {
|
|
|
371
371
|
*
|
|
372
372
|
* @beta
|
|
373
373
|
*/
|
|
374
|
-
|
|
374
|
+
DocumentsListsAndLibraries = "1edbd9a8-0bfb-4aa2-9afd-14b8c45dd489",
|
|
375
375
|
/**
|
|
376
376
|
* Communication and collaboration.
|
|
377
377
|
*
|
|
@@ -379,7 +379,7 @@ export declare const enum PredefinedGroup {
|
|
|
379
379
|
*
|
|
380
380
|
* @beta
|
|
381
381
|
*/
|
|
382
|
-
|
|
382
|
+
Feeds = "75e22ed5-fa14-4829-850a-c890608aca2d",
|
|
383
383
|
/**
|
|
384
384
|
* Planning and process.
|
|
385
385
|
*
|
|
@@ -387,7 +387,7 @@ export declare const enum PredefinedGroup {
|
|
|
387
387
|
*
|
|
388
388
|
* @beta
|
|
389
389
|
*/
|
|
390
|
-
|
|
390
|
+
NewsPeopleAndEvents = "1bc7927e-4a5e-4520-b540-71305c79c20a",
|
|
391
391
|
/**
|
|
392
392
|
* Business and intelligence.
|
|
393
393
|
*
|
|
@@ -395,15 +395,15 @@ export declare const enum PredefinedGroup {
|
|
|
395
395
|
*
|
|
396
396
|
* @beta
|
|
397
397
|
*/
|
|
398
|
-
|
|
398
|
+
DataAnalysis = "4aca9e90-eff5-4fa1-bac7-728f5f157b66",
|
|
399
399
|
/**
|
|
400
|
-
*
|
|
400
|
+
* Regional information
|
|
401
401
|
*
|
|
402
|
-
* This group includes web parts
|
|
402
|
+
* This group includes web parts that display information based on current region and geographical location
|
|
403
403
|
*
|
|
404
404
|
* @beta
|
|
405
405
|
*/
|
|
406
|
-
|
|
406
|
+
RegionalInformation = "cfc8bda5-cb9b-49e3-8526-2ee6e52b256a",
|
|
407
407
|
/**
|
|
408
408
|
* Other.
|
|
409
409
|
*
|
|
@@ -411,7 +411,7 @@ export declare const enum PredefinedGroup {
|
|
|
411
411
|
*
|
|
412
412
|
* @beta
|
|
413
413
|
*/
|
|
414
|
-
|
|
414
|
+
Advanced = "5c03119e-3074-46fd-976b-c60198311f70",
|
|
415
415
|
/**
|
|
416
416
|
* Other.
|
|
417
417
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IClientSideWebPartManifest.d.ts","sourceRoot":"","sources":["../../src/manifestSchemas/IClientSideWebPartManifest.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,4BAA4B,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAEhG;;;;;;;;;;;;;GAaG;AACH,MAAM,WAAW,0BAA0B,CAAC,WAAW,CAAE,SAAQ,4BAA4B;IAC3F;;;;;;OAMG;IACH,sBAAsB,CAAC,EAAE,OAAO,CAAC;IAEjC;;;;;;;OAOG;IACH,2BAA2B,CAAC,EAAE,OAAO,CAAC;IAEtC;;;;OAIG;IACH,gBAAgB,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE,CAAkC;IAE3E;;;;;;;OAOG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAE5B;;;;;;;OAOG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAE5B;;;;;;;;;;;;;OAaG;IACH,oBAAoB,CAAC,EAAE,qBAAqB,CAAC;IAE7C;;;;;;;;;;OAUG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,cAAc,GAAG,iBAAiB,CAAC;IAE7D;;;;;;;;;OASG;IACH,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAEhC;;;;;;;;;;;;OAYG;IACH,0CAA0C,CAAC,EAAE,OAAO,CAAC;IAErD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA8BG;IACH,oBAAoB,EAAE,+BAA+B,CAAC,WAAW,CAAC,EAAE,CAAC;IAErE;;;;;;;;;;;OAWG;IACH,cAAc,CAAC,EAAE,KAAK,CACpB,oBAAoB,GAAG,mBAAmB,GAAG,UAAU,GAAG,kBAAkB,GAAG,iBAAiB,CACjG,CAAC;IAEF;;;;;;;;OAQG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED;;;;GAIG;AAEH,MAAM,WAAW,kCAAkC,CAAC,WAAW,CAAE,SAAQ,4BAA4B;CAAG;AAExG;;;;;;GAMG;AACH,MAAM,WAAW,+BAA+B,CAAC,WAAW;IAC1D;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACH,KAAK,EAAE,gBAAgB,CAAC;IAExB;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACH,WAAW,EAAE,gBAAgB,CAAC;IAE9B;;;;;;;;;;;OAWG;IACH,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAElC;;;;;;;;;;;;;;;OAeG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;;;;;;;;;;OAYG;IACH,OAAO,EAAE,eAAe,GAAG,MAAM,CAAC;IAElC;;;;;;;;;OASG;IACH,KAAK,CAAC,EAAE,gBAAgB,CAAC;IAEzB;;;;;;;;;OASG;IACH,IAAI,CAAC,EAAE,gBAAgB,EAAE,CAAC;IAE1B;;;;;;;;;;;;;;;;OAgBG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;;;;;;;;;;;;OAcG;IACH,UAAU,EAAE,WAAW,CAAC;IAExB;;;;;;;;;;;;OAYG;IACH,uBAAuB,CAAC,EAAE,MAAM,CAAC;CAClC;AAED;;;;GAIG;AACH,0BAAkB,eAAe;IAC/B;;;;;;;OAOG;IACH,mBAAmB,yCAAyC;IAE5D;;;;;;OAMG;IACH,
|
|
1
|
+
{"version":3,"file":"IClientSideWebPartManifest.d.ts","sourceRoot":"","sources":["../../src/manifestSchemas/IClientSideWebPartManifest.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,4BAA4B,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAEhG;;;;;;;;;;;;;GAaG;AACH,MAAM,WAAW,0BAA0B,CAAC,WAAW,CAAE,SAAQ,4BAA4B;IAC3F;;;;;;OAMG;IACH,sBAAsB,CAAC,EAAE,OAAO,CAAC;IAEjC;;;;;;;OAOG;IACH,2BAA2B,CAAC,EAAE,OAAO,CAAC;IAEtC;;;;OAIG;IACH,gBAAgB,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE,CAAkC;IAE3E;;;;;;;OAOG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAE5B;;;;;;;OAOG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAE5B;;;;;;;;;;;;;OAaG;IACH,oBAAoB,CAAC,EAAE,qBAAqB,CAAC;IAE7C;;;;;;;;;;OAUG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,cAAc,GAAG,iBAAiB,CAAC;IAE7D;;;;;;;;;OASG;IACH,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAEhC;;;;;;;;;;;;OAYG;IACH,0CAA0C,CAAC,EAAE,OAAO,CAAC;IAErD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA8BG;IACH,oBAAoB,EAAE,+BAA+B,CAAC,WAAW,CAAC,EAAE,CAAC;IAErE;;;;;;;;;;;OAWG;IACH,cAAc,CAAC,EAAE,KAAK,CACpB,oBAAoB,GAAG,mBAAmB,GAAG,UAAU,GAAG,kBAAkB,GAAG,iBAAiB,CACjG,CAAC;IAEF;;;;;;;;OAQG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED;;;;GAIG;AAEH,MAAM,WAAW,kCAAkC,CAAC,WAAW,CAAE,SAAQ,4BAA4B;CAAG;AAExG;;;;;;GAMG;AACH,MAAM,WAAW,+BAA+B,CAAC,WAAW;IAC1D;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACH,KAAK,EAAE,gBAAgB,CAAC;IAExB;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACH,WAAW,EAAE,gBAAgB,CAAC;IAE9B;;;;;;;;;;;OAWG;IACH,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAElC;;;;;;;;;;;;;;;OAeG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;;;;;;;;;;OAYG;IACH,OAAO,EAAE,eAAe,GAAG,MAAM,CAAC;IAElC;;;;;;;;;OASG;IACH,KAAK,CAAC,EAAE,gBAAgB,CAAC;IAEzB;;;;;;;;;OASG;IACH,IAAI,CAAC,EAAE,gBAAgB,EAAE,CAAC;IAE1B;;;;;;;;;;;;;;;;OAgBG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;;;;;;;;;;;;OAcG;IACH,UAAU,EAAE,WAAW,CAAC;IAExB;;;;;;;;;;;;OAYG;IACH,uBAAuB,CAAC,EAAE,MAAM,CAAC;CAClC;AAED;;;;GAIG;AACH,0BAAkB,eAAe;IAC/B;;;;;;;OAOG;IACH,mBAAmB,yCAAyC;IAE5D;;;;;;OAMG;IACH,0BAA0B,yCAAyC;IAEnE;;;;;;OAMG;IACH,KAAK,yCAAyC;IAE9C;;;;;;OAMG;IACH,mBAAmB,yCAAyC;IAE5D;;;;;;OAMG;IACH,YAAY,yCAAyC;IAErD;;;;;;OAMG;IACH,mBAAmB,yCAAyC;IAE5D;;;;;;OAMG;IACH,QAAQ,yCAAyC;IAEjD;;;;;;OAMG;IACH,KAAK,yCAAyC;CAC/C;AAED;;;;;;;;;GASG;AACH,MAAM,WAAW,qBAAqB;IACpC;;;;;OAKG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IAEtB;;;;;OAKG;IACH,mBAAmB,CAAC,EAAE,KAAK,CAAC,eAAe,GAAG,WAAW,CAAC,CAAC;CAC5D"}
|
package/lib-commonjs/manifestSchemas/jsonSchemas/adaptive-card-extension-manifest.schema.json
CHANGED
|
@@ -12,37 +12,37 @@
|
|
|
12
12
|
"pattern": "^cf066440-0614-43d6-98ae-0b31cf14c7c3$"
|
|
13
13
|
},
|
|
14
14
|
{
|
|
15
|
-
"title": "
|
|
15
|
+
"title": "Documents, lists, and libraries",
|
|
16
16
|
"description": "This group includes AdaptiveCardExtensions that organize, group, and filter content to help users discover information.",
|
|
17
17
|
"type": "string",
|
|
18
18
|
"pattern": "^1edbd9a8-0bfb-4aa2-9afd-14b8c45dd489$"
|
|
19
19
|
},
|
|
20
20
|
{
|
|
21
|
-
"title": "
|
|
21
|
+
"title": "Feeds",
|
|
22
22
|
"description": "This group includes AdaptiveCardExtensions that facilitate information sharing, team work, and social interactions.",
|
|
23
23
|
"type": "string",
|
|
24
24
|
"pattern": "^75e22ed5-fa14-4829-850a-c890608aca2d$"
|
|
25
25
|
},
|
|
26
26
|
{
|
|
27
|
-
"title": "
|
|
27
|
+
"title": "News, people and events",
|
|
28
28
|
"description": "This group includes AdaptiveCardExtensions that empower team productivity with the use of planning and process tools.",
|
|
29
29
|
"type": "string",
|
|
30
30
|
"pattern": "^1bc7927e-4a5e-4520-b540-71305c79c20a$"
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
|
-
"title": "
|
|
33
|
+
"title": "Data Analysis",
|
|
34
34
|
"description": "This group includes AdaptiveCardExtensions for tracking and analyzing data, and for integrating business flow with pages.",
|
|
35
35
|
"type": "string",
|
|
36
36
|
"pattern": "^4aca9e90-eff5-4fa1-bac7-728f5f157b66$"
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
|
-
"title": "
|
|
40
|
-
"description": "This group includes AdaptiveCardExtensions
|
|
39
|
+
"title": "Regional information",
|
|
40
|
+
"description": "This group includes AdaptiveCardExtensions that display information based on current region and geographical location",
|
|
41
41
|
"type": "string",
|
|
42
|
-
"pattern": "^
|
|
42
|
+
"pattern": "^cfc8bda5-cb9b-49e3-8526-2ee6e52b256a$"
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
|
-
"title": "
|
|
45
|
+
"title": "Advanced",
|
|
46
46
|
"description": "This group includes AdaptiveCardExtensions not in other categories.",
|
|
47
47
|
"type": "string",
|
|
48
48
|
"pattern": "^5c03119e-3074-46fd-976b-c60198311f70$"
|
|
@@ -22,37 +22,37 @@
|
|
|
22
22
|
"pattern": "^cf066440-0614-43d6-98ae-0b31cf14c7c3$"
|
|
23
23
|
},
|
|
24
24
|
{
|
|
25
|
-
"title": "
|
|
25
|
+
"title": "Documents, lists, and libraries",
|
|
26
26
|
"description": "This group includes web parts that organize, group, and filter content to help users discover information.",
|
|
27
27
|
"type": "string",
|
|
28
28
|
"pattern": "^1edbd9a8-0bfb-4aa2-9afd-14b8c45dd489$"
|
|
29
29
|
},
|
|
30
30
|
{
|
|
31
|
-
"title": "
|
|
31
|
+
"title": "Feeds",
|
|
32
32
|
"description": "This group includes web parts that facilitate information sharing, team work, and social interactions.",
|
|
33
33
|
"type": "string",
|
|
34
34
|
"pattern": "^75e22ed5-fa14-4829-850a-c890608aca2d$"
|
|
35
35
|
},
|
|
36
36
|
{
|
|
37
|
-
"title": "
|
|
37
|
+
"title": "News, people and events",
|
|
38
38
|
"description": "This group includes web parts that empower team productivity with the use of planning and process tools.",
|
|
39
39
|
"type": "string",
|
|
40
40
|
"pattern": "^1bc7927e-4a5e-4520-b540-71305c79c20a$"
|
|
41
41
|
},
|
|
42
42
|
{
|
|
43
|
-
"title": "
|
|
43
|
+
"title": "Data Analysis",
|
|
44
44
|
"description": "This group includes web parts for tracking and analyzing data, and for integrating business flow with pages.",
|
|
45
45
|
"type": "string",
|
|
46
46
|
"pattern": "^4aca9e90-eff5-4fa1-bac7-728f5f157b66$"
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
|
-
"title": "
|
|
50
|
-
"description": "This group includes web parts
|
|
49
|
+
"title": "Regional information",
|
|
50
|
+
"description": "This group includes web parts that display information based on current region and geographical location",
|
|
51
51
|
"type": "string",
|
|
52
|
-
"pattern": "^
|
|
52
|
+
"pattern": "^cfc8bda5-cb9b-49e3-8526-2ee6e52b256a$"
|
|
53
53
|
},
|
|
54
54
|
{
|
|
55
|
-
"title": "
|
|
55
|
+
"title": "Advanced",
|
|
56
56
|
"description": "This group includes web parts not in other categories.",
|
|
57
57
|
"type": "string",
|
|
58
58
|
"pattern": "^5c03119e-3074-46fd-976b-c60198311f70$"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/sp-module-interfaces",
|
|
3
|
-
"version": "1.15.
|
|
3
|
+
"version": "1.15.2",
|
|
4
4
|
"description": "SharePoint Framework module interfaces",
|
|
5
5
|
"license": "SEE LICENSE IN \"EULA\" FOLDER",
|
|
6
6
|
"homepage": "http://aka.ms/spfx",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"tsdocFlavor": "AEDoc"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@rushstack/node-core-library": "3.45.
|
|
18
|
+
"@rushstack/node-core-library": "3.45.5",
|
|
19
19
|
"z-schema": "4.2.4"
|
|
20
20
|
}
|
|
21
21
|
}
|