@microsoft/sp-module-interfaces 1.15.2 → 1.16.0-beta.1

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.
@@ -713,6 +713,7 @@ export declare interface IClientSideWebPartManifest<TProperties> extends IClient
713
713
  * url
714
714
  */
715
715
  imagePreviewUrl?: string;
716
+ /* Excluded from this release type: propertiesMetadata */
716
717
  }
717
718
 
718
719
  /**
@@ -339,6 +339,7 @@ export declare interface IClientSideWebPartManifest<TProperties> extends IClient
339
339
  * url
340
340
  */
341
341
  imagePreviewUrl?: string;
342
+ /* Excluded from this release type: propertiesMetadata */
342
343
  }
343
344
 
344
345
  /**
@@ -11,9 +11,258 @@ export declare type ComponentType = 'Application' | 'WebPart' | 'Library' | 'Ext
11
11
  */
12
12
  export declare type ExtensionType = 'Unknown' | 'ApplicationCustomizer' | 'FieldCustomizer' | 'ListViewCommandSet' | 'SearchQueryModifier';
13
13
 
14
- /* Excluded from this release type: IAdaptiveCardExtensionManifest */
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": "Advanced" },
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
+ }
15
113
 
16
- /* Excluded from this release type: IAdaptiveCardExtensionManifestEntry */
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
+ }
17
266
 
18
267
  /* Excluded from this release type: ICapabilityCollection */
19
268
 
@@ -37,7 +286,120 @@ export declare interface IClientSideAssemblyManifest extends IClientSideComponen
37
286
  rootComponentId: string;
38
287
  }
39
288
 
40
- /* Excluded from this release type: IClientSideComponentLoaderConfiguration */
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
+ }
41
403
 
42
404
  /**
43
405
  * All client-side components built on the SharePoint framework need a valid component manifest. This interface
@@ -146,7 +508,19 @@ export declare interface IClientSideComponentManifest extends IClientSideManifes
146
508
  * Usage: Requires Custom Script to be allowed in order for this component to be installed and run.
147
509
  */
148
510
  requiresCustomScript?: boolean;
149
- /* Excluded from this release type: loaderConfig */
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;
150
524
  /* Excluded from this release type: isolatedDomain */
151
525
  /* Excluded from this release type: storeAppId */
152
526
  /* Excluded from this release type: mpnId */
@@ -339,6 +713,7 @@ export declare interface IClientSideWebPartManifest<TProperties> extends IClient
339
713
  * url
340
714
  */
341
715
  imagePreviewUrl?: string;
716
+ /* Excluded from this release type: propertiesMetadata */
342
717
  }
343
718
 
344
719
  /**
@@ -428,9 +803,42 @@ export declare interface IClientSideWebPartManifestEntry<TProperties> {
428
803
  * Example: `"https://contoso.akamaihd.net/files/myWebpartIcon.png"`
429
804
  */
430
805
  iconImageUrl?: string;
431
- /* Excluded from this release type: groupId */
432
- /* Excluded from this release type: group */
433
- /* Excluded from this release type: tags */
806
+ /**
807
+ * The group id to determine which modern group contains the web part in modern site page. The SharePoint
808
+ * Framework reserves group ids for predefined groups. The developer can pick one from those groups. If the developer
809
+ * fills an id not in the predefined groups, it falls back to Other group.
810
+ *
811
+ * @remarks
812
+ *
813
+ * Supported values: the GUID from PredefinedGroup list
814
+ *
815
+ * Example: `"cf066440-0614-43d6-98ae-0b31cf14c7c3"`
816
+ *
817
+ * @beta
818
+ */
819
+ groupId: PredefinedGroup | string;
820
+ /**
821
+ * The group name in web part picker to contain the web part in the classic page. If no value is provided,
822
+ * then the web part will be displayed in the Miscellaneous group.
823
+ *
824
+ * @remarks
825
+ *
826
+ * Example: `{ "default": "Media and Content" }`
827
+ *
828
+ * @beta
829
+ */
830
+ group?: ILocalizedString;
831
+ /**
832
+ * This field is used to tag a web part with keywords that are different from the web part group name.
833
+ * Tags can be used for categorization and searching of web parts. For example, in the web part toolbox.
834
+ *
835
+ * @remarks
836
+ *
837
+ * Example `[{ "default": "image" }, { "default": "media" }, { "default": "picture" }, ...]`
838
+ *
839
+ * @beta
840
+ */
841
+ tags?: ILocalizedString[];
434
842
  /**
435
843
  * Definition: Use this field to specify the data version of the pre-configured data provided to the web part.
436
844
  * Note that data version is different from the version field in the manifest.
@@ -562,11 +970,124 @@ export declare interface ICommandSetExtensionManifest extends IClientSideExtensi
562
970
  };
563
971
  }
564
972
 
565
- /* Excluded from this release type: IComponentModuleConfiguration */
973
+ /**
974
+ * This is the interface for a script module with the "component" type. Modules of this type will be provided via
975
+ * manifests. In order for the dependency to be loaded, the manifest must be available on the site.
976
+ *
977
+ * @beta
978
+ */
979
+ export declare interface IComponentModuleConfiguration extends IModuleConfigurationBase {
980
+ type: 'component';
981
+ /**
982
+ * The version of the framework-supplied component to be loaded. For framework runtime component such as
983
+ * `@microsoft/sp-client-base`, it is recommended the version of the framework component the component was developed
984
+ * against be specified.
985
+ *
986
+ * @remarks
987
+ *
988
+ * Supported values: string representing a {@link http://semver.org | semantic version}, or "latest".
989
+ *
990
+ * Example: `"2.2.4"`
991
+ */
992
+ version: string;
993
+ /**
994
+ * The ID of the framework-supplied component to be loaded.
995
+ *
996
+ * @remarks
997
+ *
998
+ * Supported values: string representing a component's ID.
999
+ *
1000
+ * Example: `"0d910c1c-13b9-4e1c-9aa4-b008c5e42d7d"`
1001
+ */
1002
+ id: string;
1003
+ /**
1004
+ * A path to the framework-supplied component in case the framework fails to load the requested version.
1005
+ *
1006
+ * @remarks
1007
+ * This must be either a fully-qualified URL, or a path under the paths specified in the `internalModuleBaseUrls`
1008
+ * field. If this field is not specified and the version is not available in the framework runtime, the closest
1009
+ * matching version of the component will be provided instead.
1010
+ *
1011
+ * Supported values: The path to the component either as a fully-qualified URL or as a path under the
1012
+ * paths provided in the "internalModuleBaseUrls" field.
1013
+ *
1014
+ * Example: `"https://code.jquery.com/jquery-2.2.4.min.js"`
1015
+ */
1016
+ failoverPath?: string | IIntegrityPath;
1017
+ }
566
1018
 
567
- /* Excluded from this release type: IIntegrityPath */
1019
+ /**
1020
+ * A path with the subresource integrity hash of the resource.
1021
+ *
1022
+ * @beta
1023
+ */
1024
+ export declare interface IIntegrityPath {
1025
+ /**
1026
+ * The path to the resource.
1027
+ */
1028
+ path: string;
1029
+ /**
1030
+ * The subresource integrity hash of the resource referenced in {@link IIntegrityPath.path}.
1031
+ */
1032
+ integrity?: string;
1033
+ }
568
1034
 
569
- /* Excluded from this release type: ILocalizedPathModuleConfiguration */
1035
+ /**
1036
+ * This is the interface for a script module with the "localizedPath" type.
1037
+ *
1038
+ * @remarks
1039
+ * Modules of this type must be provided by the component developer. These script resources are similar to those of
1040
+ * the "path" type, but they may be present at a number of different paths, to be selected by the user's locale.
1041
+ * Paths in this module type are loaded exactly the same way as "internal" modules are.
1042
+ *
1043
+ * @beta
1044
+ */
1045
+ export declare interface ILocalizedPathModuleConfiguration extends IModuleConfigurationBase {
1046
+ type: 'localizedPath';
1047
+ /**
1048
+ * A path to this module's default locale javascript resource either as a fully-qualified URL or as a
1049
+ * path under the paths provided in the "internalModuleBaseUrls" field.
1050
+ *
1051
+ * @remarks
1052
+ * If the user's locale does not resolve to one of the paths specified in the "paths" field, the path in this
1053
+ * field is used. Paths in this module type are treated exactly the same way paths in modules of the "internal"
1054
+ * type are treated.
1055
+ *
1056
+ * Supported values: The path to the default locale version of the module either as a fully-qualified URL or as a path
1057
+ * under the paths provided in the "internalModuleBaseUrls" field.
1058
+ *
1059
+ * Example: `"master_2015-04-20/my-application_strings_default_af378e0d.js"`
1060
+ */
1061
+ defaultPath: string | IIntegrityPath;
1062
+ /**
1063
+ * This is a dictionary of locale keys (in the `"ll-cc"` format) to paths to this module's locale
1064
+ * javascript resource either as a fully-qualified URL or as a path under the paths provided in the
1065
+ * `"internalModuleBaseUrls"` field.
1066
+ *
1067
+ * @remarks
1068
+ * The loader will attempt to resolve the user's locale to one of the paths provided by this field, and will load
1069
+ * the script resource under that path. If the user's locale does not resolve to one of the paths specified in this
1070
+ * field, the path in `"defaultPath"` field is used. For example, if the user's locale is `"en-gb"`, and this field's
1071
+ * value contains the keys `[ "en-us", "en-gb", "fr-fr" ]`, the path specified by the `"en-gb"` key will be used.
1072
+ * If the user's locale is "en-gb", and this field's value contains the keys `[ "en-us", "fr-fr" ]`, the path
1073
+ * specified by the `"en-us"` key will be used. If the user's locale is `"en-gb"`, and this field's value contains
1074
+ * the keys `[ "es-es", "fr-fr" ]`, the path specified by the "defaultPath" field will be used.
1075
+ * Paths in this module type are treated exactly the same way paths in modules of the "internal" type are treated.
1076
+ *
1077
+ * Supported values: A dictionary of locale-to-path mappings.
1078
+ *
1079
+ * Example:
1080
+ * ```
1081
+ * {
1082
+ * "en-us": "master_2015-04-20/my-application_strings_en-us_d38ff012.js",
1083
+ * "fr-fr": "master_2015-04-20/my-application_strings_fr-fr_138af7e4.js"
1084
+ * }
1085
+ * ```
1086
+ */
1087
+ paths?: {
1088
+ [locale: string]: string | IIntegrityPath;
1089
+ };
1090
+ }
570
1091
 
571
1092
  /**
572
1093
  * A set of localized strings.
@@ -614,16 +1135,188 @@ export declare interface ILocalizedString {
614
1135
  [locale: string]: string | undefined;
615
1136
  }
616
1137
 
617
- /* Excluded from this release type: IModuleConfiguration */
1138
+ /**
1139
+ * @beta
1140
+ */
1141
+ export declare type IModuleConfiguration = IComponentModuleConfiguration | IPathModuleConfiguration | ILocalizedPathModuleConfiguration;
618
1142
 
619
- /* Excluded from this release type: IModuleConfigurationBase */
1143
+ /**
1144
+ * This is the base interface for a script module's definition.
1145
+ *
1146
+ * @beta
1147
+ */
1148
+ export declare interface IModuleConfigurationBase {
1149
+ /**
1150
+ * The type of the script block. `"component"` modules come from a component,
1151
+ * `"path"` and `"localizedPath"` modules must be available on the paths provided in
1152
+ * the `"internalModuleBaseUrls"` field.
1153
+ *
1154
+ * @remarks
1155
+ *
1156
+ * Modules with the `"path"` type use the `IPathModuleConfiguration` interface.
1157
+ *
1158
+ * Modules with the `"component"` type use the `IComponentModuleConfiguration` interface.
1159
+ * Modules with the "localizedPath" type use the `ILocalizedPathModuleConfiguration` interface.
1160
+ *
1161
+ * Supported values: `"component"`, `"path"`, `"localizedPath"`
1162
+ *
1163
+ * Example: `"localized"`
1164
+ */
1165
+ type: 'component' | 'path' | 'localizedPath';
1166
+ /**
1167
+ * If set to `true`, this module should not be preloaded when loading the component.
1168
+ *
1169
+ * @remarks
1170
+ * The most common case for setting this property to "true" is when a module is defined in a manifest,
1171
+ * but is not required for the module referenced in "entryModuleId" to load. Modules may be defined that
1172
+ * are loaded asynchronously, and these modules do not need to be preloaded. This field implicitly defaults
1173
+ * to `false`.
1174
+ *
1175
+ * Usage: Instructs the module loader to not preload this module.
1176
+ */
1177
+ shouldNotPreload?: boolean;
1178
+ }
620
1179
 
621
- /* Excluded from this release type: IPathModuleConfiguration */
1180
+ /**
1181
+ * This is the interface for a script module with the "path" type. Modules of this type must be provided by the
1182
+ * component developer.
1183
+ *
1184
+ * @beta
1185
+ */
1186
+ export declare interface IPathModuleConfiguration extends IModuleConfigurationBase {
1187
+ type: 'path';
1188
+ /**
1189
+ * A path to this module's javascript resource either as a fully-qualified URL or as a path under the
1190
+ * paths provided in the `internalModuleBaseUrls` field.
1191
+ *
1192
+ * @remarks
1193
+ *
1194
+ * For example, if this field's value is `"master_2015-04-20/my-application.bundle_1928f8a0.js"` and
1195
+ * the `"internalModuleBaseUrls"` field's value is
1196
+ * `[ "https://contoso.akamaihd.net/files/", "https://contoso.msecnd.net/files/" ]`, the loader will
1197
+ * first attempt to load this script resource from the URL
1198
+ * `"https://contoso.akamaihd.net/files/master_2015-04-20/my-application.bundle_1928f8a0.js"`.
1199
+ * If loading from that URL fails, the loader will then attempt to load this script resource from
1200
+ * `"https://contoso.msecnd.net/files/master_2015-04-20/my-application.bundle_1928f8a0.js"`.
1201
+ * If that URL fails to load, the component will fail to load and an error will be returned.
1202
+ *
1203
+ * Supported values: The path to the module either as a fully-qualified URL or as a path under the
1204
+ * paths provided in the "internalModuleBaseUrls" field.
1205
+ *
1206
+ * Example: `"master_2015-04-20/my-application.bundle_1928f8a0.js"`
1207
+ */
1208
+ path: string | IIntegrityPath;
1209
+ /**
1210
+ * If this property is specified, this module is considered non-AMD and
1211
+ * the module loader will not expect "define" or "require" to be called.
1212
+ *
1213
+ * @remarks
1214
+ * In order to load scripts that don't follow the AMD/module-pattern where "define" or "require" is
1215
+ * called and dependencies are explicitly listed and exports are explicitly returned, the module loader needs to
1216
+ * know which global variable must be examined. If this property is specified, this module is considered non-AMD and
1217
+ * the module loader will not expect "define" or "require" to be called. Instead, it will wait for the script to
1218
+ * finish loading and examine the global variable specified in this field.
1219
+ *
1220
+ * Supported values: Variable names that are expected to be populated after this module is loaded. For example,
1221
+ * if this module is describing jQuery, this value should probably be "$". If an empty string is specified,
1222
+ * the module loader will throw an exception and the component will fail to load.
1223
+ *
1224
+ * Example: `"$"`
1225
+ */
1226
+ globalName?: string;
1227
+ /**
1228
+ * For non-AMD/module-pattern scripts that have dependencies (for example, jQuery plugins), the module
1229
+ * loader will ensure that those dependencies are already loaded.
1230
+ *
1231
+ * @remarks
1232
+ * Entries in the array specified in this field must refer to other non-AMD modules in this component. This field
1233
+ * is not required to have a value for non-AMD modules. If any values are specified that do not refer to other
1234
+ * modules in the same component manifest that this module is specified, the module loader will throw an exception
1235
+ * and the component will fail to load.
1236
+ *
1237
+ * Supported values: Names of other non-AMD-pattern modules in this loader configuration, as specified by the key
1238
+ * `IClientSideComponentLoaderConfiguration.scriptResources[]`
1239
+ *
1240
+ * Example: `["jquery"]`
1241
+ */
1242
+ globalDependencies?: string[];
1243
+ }
622
1244
 
623
1245
  /* Excluded from this release type: IPreloadOptions */
624
1246
 
625
1247
  /* Excluded from this release type: ManifestType */
626
1248
 
627
- /* Excluded from this release type: PredefinedGroup */
1249
+ /**
1250
+ * Predefined web part group.
1251
+ *
1252
+ * @beta
1253
+ */
1254
+ export declare const enum PredefinedGroup {
1255
+ /**
1256
+ * Text, media and content.
1257
+ *
1258
+ * This group includes web parts that display text, multi-media, documents, information from the web, and other
1259
+ * rich content.
1260
+ *
1261
+ * @beta
1262
+ */
1263
+ TextMediaAndContent = "cf066440-0614-43d6-98ae-0b31cf14c7c3",
1264
+ /**
1265
+ * Discovery.
1266
+ *
1267
+ * This group includes web parts that organize, group, and filter content to help users discover information.
1268
+ *
1269
+ * @beta
1270
+ */
1271
+ DocumentsListsAndLibraries = "1edbd9a8-0bfb-4aa2-9afd-14b8c45dd489",
1272
+ /**
1273
+ * Communication and collaboration.
1274
+ *
1275
+ * This group includes web parts that facilitate information sharing, team work, and social interactions.
1276
+ *
1277
+ * @beta
1278
+ */
1279
+ Feeds = "75e22ed5-fa14-4829-850a-c890608aca2d",
1280
+ /**
1281
+ * Planning and process.
1282
+ *
1283
+ * This group includes web parts that empower team productivity with the use of planning and process tools.
1284
+ *
1285
+ * @beta
1286
+ */
1287
+ NewsPeopleAndEvents = "1bc7927e-4a5e-4520-b540-71305c79c20a",
1288
+ /**
1289
+ * Business and intelligence.
1290
+ *
1291
+ * This group includes web parts for tracking and analyzing data, and for integrating business flow with pages.
1292
+ *
1293
+ * @beta
1294
+ */
1295
+ DataAnalysis = "4aca9e90-eff5-4fa1-bac7-728f5f157b66",
1296
+ /**
1297
+ * Regional information
1298
+ *
1299
+ * This group includes web parts that display information based on current region and geographical location
1300
+ *
1301
+ * @beta
1302
+ */
1303
+ RegionalInformation = "cfc8bda5-cb9b-49e3-8526-2ee6e52b256a",
1304
+ /**
1305
+ * Other.
1306
+ *
1307
+ * This group includes web parts not in other groups.
1308
+ *
1309
+ * @beta
1310
+ */
1311
+ Advanced = "5c03119e-3074-46fd-976b-c60198311f70",
1312
+ /**
1313
+ * Other.
1314
+ *
1315
+ * This group includes local web parts.
1316
+ *
1317
+ * @beta
1318
+ */
1319
+ Local = "8b7bf6f1-a56a-4aa3-8657-7eb6e7e6af61"
1320
+ }
628
1321
 
629
1322
  export { }
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.24.1"
8
+ "packageVersion": "7.29.0"
9
9
  }
10
10
  ]
11
11
  }
@@ -169,6 +169,12 @@ export interface IClientSideWebPartManifest<TProperties> extends IClientSideComp
169
169
  * url
170
170
  */
171
171
  imagePreviewUrl?: string;
172
+ /**
173
+ * @internal
174
+ */
175
+ propertiesMetadata?: {
176
+ current: any;
177
+ };
172
178
  }
173
179
  /**
174
180
  * Manifest that is relevant to a Web Part instance.
@@ -1 +1 @@
1
- {"version":3,"file":"IClientSideWebPartManifest.d.ts","sourceRoot":"","sources":["../../src/manifestSchemas/IClientSideWebPartManifest.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"IClientSideWebPartManifest.d.ts","sourceRoot":"","sources":["../../src/manifestSchemas/IClientSideWebPartManifest.ts"],"names":[],"mappings":"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"}
@@ -5,4 +5,78 @@
5
5
  * @file Client-side Web Part manifest definition.
6
6
  */
7
7
  Object.defineProperty(exports, "__esModule", { value: true });
8
+ exports.PredefinedGroup = void 0;
9
+ /**
10
+ * Predefined web part group.
11
+ *
12
+ * @beta
13
+ */
14
+ var PredefinedGroup;
15
+ (function (PredefinedGroup) {
16
+ /**
17
+ * Text, media and content.
18
+ *
19
+ * This group includes web parts that display text, multi-media, documents, information from the web, and other
20
+ * rich content.
21
+ *
22
+ * @beta
23
+ */
24
+ PredefinedGroup["TextMediaAndContent"] = "cf066440-0614-43d6-98ae-0b31cf14c7c3";
25
+ /**
26
+ * Discovery.
27
+ *
28
+ * This group includes web parts that organize, group, and filter content to help users discover information.
29
+ *
30
+ * @beta
31
+ */
32
+ PredefinedGroup["DocumentsListsAndLibraries"] = "1edbd9a8-0bfb-4aa2-9afd-14b8c45dd489";
33
+ /**
34
+ * Communication and collaboration.
35
+ *
36
+ * This group includes web parts that facilitate information sharing, team work, and social interactions.
37
+ *
38
+ * @beta
39
+ */
40
+ PredefinedGroup["Feeds"] = "75e22ed5-fa14-4829-850a-c890608aca2d";
41
+ /**
42
+ * Planning and process.
43
+ *
44
+ * This group includes web parts that empower team productivity with the use of planning and process tools.
45
+ *
46
+ * @beta
47
+ */
48
+ PredefinedGroup["NewsPeopleAndEvents"] = "1bc7927e-4a5e-4520-b540-71305c79c20a";
49
+ /**
50
+ * Business and intelligence.
51
+ *
52
+ * This group includes web parts for tracking and analyzing data, and for integrating business flow with pages.
53
+ *
54
+ * @beta
55
+ */
56
+ PredefinedGroup["DataAnalysis"] = "4aca9e90-eff5-4fa1-bac7-728f5f157b66";
57
+ /**
58
+ * Regional information
59
+ *
60
+ * This group includes web parts that display information based on current region and geographical location
61
+ *
62
+ * @beta
63
+ */
64
+ PredefinedGroup["RegionalInformation"] = "cfc8bda5-cb9b-49e3-8526-2ee6e52b256a";
65
+ /**
66
+ * Other.
67
+ *
68
+ * This group includes web parts not in other groups.
69
+ *
70
+ * @beta
71
+ */
72
+ PredefinedGroup["Advanced"] = "5c03119e-3074-46fd-976b-c60198311f70";
73
+ /**
74
+ * Other.
75
+ *
76
+ * This group includes local web parts.
77
+ *
78
+ * @beta
79
+ */
80
+ PredefinedGroup["Local"] = "8b7bf6f1-a56a-4aa3-8657-7eb6e7e6af61";
81
+ })(PredefinedGroup = exports.PredefinedGroup || (exports.PredefinedGroup = {}));
8
82
  //# sourceMappingURL=IClientSideWebPartManifest.js.map
@@ -217,7 +217,7 @@
217
217
 
218
218
  "officeFabricIconFontName": {
219
219
  "title": "Office Fabric Icon Name",
220
- "description": " The icon for the Web Part, to be displayed in the toolbox, represented as a character name in the Office 365 icon font file. The icon font is specified here: http://o365icons.cloudapp.net/. If this field has a value, the 'iconImageUrl' field will be ignored.",
220
+ "description": " The icon for the Web Part, to be displayed in the toolbox, represented as a character name in the Office 365 icon font file. The icon font is specified here: https://aka.ms/uifabric-icons. If this field has a value, the 'iconImageUrl' field will be ignored.",
221
221
  "type": "string",
222
222
  "minLength": 1
223
223
  },
@@ -289,6 +289,18 @@
289
289
 
290
290
  "additionalProperties": false
291
291
  }
292
+ },
293
+
294
+ "propertiesMetadata": {
295
+ "additionalProperties": false,
296
+ "type": "object",
297
+ "required": ["current"],
298
+ "properties": {
299
+ "current": {
300
+ "type": "object",
301
+ "additionalProperties": true
302
+ }
303
+ }
292
304
  }
293
305
  },
294
306
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/sp-module-interfaces",
3
- "version": "1.15.2",
3
+ "version": "1.16.0-beta.1",
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.5",
18
+ "@rushstack/node-core-library": "3.50.1",
19
19
  "z-schema": "4.2.4"
20
20
  }
21
21
  }