@microsoft/sp-module-interfaces 1.21.0-beta.0 → 1.21.0-beta.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.
Files changed (158) hide show
  1. package/dist/index-internal-beta.d.ts +15 -3
  2. package/dist/index-internal-public.d.ts +47 -2
  3. package/dist/index-internal.d.ts +15 -3
  4. package/lib-commonjs/index.js +31 -29
  5. package/lib-commonjs/manifestHelpers.js +22 -19
  6. package/lib-commonjs/manifestSchemaValidator.js +70 -84
  7. package/lib-commonjs/manifestSchemas/IAdaptiveCardExtensionManifest.js +5 -2
  8. package/lib-commonjs/manifestSchemas/IClientSideApplicationManifest.js +5 -2
  9. package/lib-commonjs/manifestSchemas/IClientSideAssemblyManifest.js +5 -2
  10. package/lib-commonjs/manifestSchemas/IClientSideComponentLoaderConfiguration.js +11 -3
  11. package/lib-commonjs/manifestSchemas/IClientSideComponentManifest.js +5 -2
  12. package/lib-commonjs/manifestSchemas/IClientSideExtensionManifest.js +5 -2
  13. package/lib-commonjs/manifestSchemas/IClientSideLibraryManifest.js +5 -2
  14. package/lib-commonjs/manifestSchemas/IClientSideManifestBase.js +10 -3
  15. package/lib-commonjs/manifestSchemas/IClientSideMultiVersionManifest.js +5 -2
  16. package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.js +62 -67
  17. package/lib-commonjs/manifestSchemas/ICommandSetExtensionManifest.js +5 -2
  18. package/lib-commonjs/manifestSchemas/IPrefabAppManifest.js +5 -2
  19. package/lib-commonjs/manifestSchemas/ManifestType.js +18 -13
  20. package/lib-commonjs/manifestSchemas/examples/application_1.manifest.js +24 -6
  21. package/lib-commonjs/manifestSchemas/examples/application_2.manifest.js +28 -7
  22. package/lib-commonjs/manifestSchemas/examples/application_3.manifest.js +22 -5
  23. package/lib-commonjs/manifestSchemas/examples/assembly_1.manifest.js +18 -4
  24. package/lib-commonjs/manifestSchemas/examples/commandSet_1.manifest.js +15 -3
  25. package/lib-commonjs/manifestSchemas/examples/extension_1.manifest.js +15 -3
  26. package/lib-commonjs/manifestSchemas/examples/extension_2.manifest.js +15 -3
  27. package/lib-commonjs/manifestSchemas/examples/extension_3.manifest.js +15 -3
  28. package/lib-commonjs/manifestSchemas/examples/extension_4.manifest.js +15 -3
  29. package/lib-commonjs/manifestSchemas/examples/library_1.manifest.js +18 -4
  30. package/lib-commonjs/manifestSchemas/examples/multi-version_1.manifest.js +24 -6
  31. package/lib-commonjs/manifestSchemas/examples/prefab_1.manifest.js +27 -7
  32. package/lib-commonjs/manifestSchemas/examples/prefab_2.manifest.js +61 -9
  33. package/lib-commonjs/manifestSchemas/examples/prefabapp.manifest.json +37 -3
  34. package/lib-commonjs/manifestSchemas/examples/webpart_1.manifest.js +24 -6
  35. package/lib-commonjs/manifestSchemas/examples/webpart_2.manifest.js +47 -12
  36. package/lib-commonjs/manifestSchemas/jsonSchemas/prefab-app-manifest.schema.json +107 -3
  37. package/{lib-commonjs → lib-dts}/manifestSchemaValidator.d.ts +1 -1
  38. package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideWebPartManifest.d.ts +1 -3
  39. package/lib-dts/manifestSchemas/IPrefabAppManifest.d.ts +255 -0
  40. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/application_1.manifest.d.ts +1 -1
  41. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/application_2.manifest.d.ts +1 -1
  42. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/application_3.manifest.d.ts +1 -1
  43. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/assembly_1.manifest.d.ts +1 -1
  44. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/commandSet_1.manifest.d.ts +1 -1
  45. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_1.manifest.d.ts +1 -1
  46. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_2.manifest.d.ts +1 -1
  47. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_3.manifest.d.ts +1 -1
  48. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_4.manifest.d.ts +1 -1
  49. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/library_1.manifest.d.ts +1 -1
  50. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/multi-version_1.manifest.d.ts +1 -1
  51. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/prefab_1.manifest.d.ts +1 -1
  52. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/prefab_2.manifest.d.ts +1 -1
  53. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/webpart_1.manifest.d.ts +1 -1
  54. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/webpart_2.manifest.d.ts +1 -1
  55. package/{dist → lib-dts}/tsdoc-metadata.json +1 -1
  56. package/lib-esm/index.js +15 -0
  57. package/lib-esm/manifestHelpers.js +21 -0
  58. package/lib-esm/manifestSchemaValidator.js +135 -0
  59. package/lib-esm/manifestSchemas/IAdaptiveCardExtensionManifest.js +9 -0
  60. package/lib-esm/manifestSchemas/IClientSideApplicationManifest.js +5 -0
  61. package/lib-esm/manifestSchemas/IClientSideAssemblyManifest.js +7 -0
  62. package/lib-esm/manifestSchemas/IClientSideComponentLoaderConfiguration.js +17 -0
  63. package/lib-esm/manifestSchemas/IClientSideComponentManifest.js +27 -0
  64. package/lib-esm/manifestSchemas/IClientSideExtensionManifest.js +7 -0
  65. package/lib-esm/manifestSchemas/IClientSideLibraryManifest.js +7 -0
  66. package/lib-esm/manifestSchemas/IClientSideManifestBase.js +7 -0
  67. package/lib-esm/manifestSchemas/IClientSideMultiVersionManifest.js +25 -0
  68. package/lib-esm/manifestSchemas/IClientSideWebPartManifest.js +62 -0
  69. package/lib-esm/manifestSchemas/ICommandSetExtensionManifest.js +8 -0
  70. package/lib-esm/manifestSchemas/IPrefabAppManifest.js +7 -0
  71. package/lib-esm/manifestSchemas/ManifestType.js +15 -0
  72. package/lib-esm/manifestSchemas/examples/application.manifest.json +346 -0
  73. package/lib-esm/manifestSchemas/examples/application_1.manifest.js +344 -0
  74. package/lib-esm/manifestSchemas/examples/application_2.manifest.js +47 -0
  75. package/lib-esm/manifestSchemas/examples/application_3.manifest.js +42 -0
  76. package/lib-esm/manifestSchemas/examples/assembly.manifest.json +331 -0
  77. package/lib-esm/manifestSchemas/examples/assembly_1.manifest.js +336 -0
  78. package/lib-esm/manifestSchemas/examples/commandSet_1.manifest.js +42 -0
  79. package/lib-esm/manifestSchemas/examples/commandset.manifest.json +38 -0
  80. package/lib-esm/manifestSchemas/examples/extension.manifest.json +20 -0
  81. package/lib-esm/manifestSchemas/examples/extension_1.manifest.js +25 -0
  82. package/lib-esm/manifestSchemas/examples/extension_2.manifest.js +24 -0
  83. package/lib-esm/manifestSchemas/examples/extension_3.manifest.js +23 -0
  84. package/lib-esm/manifestSchemas/examples/extension_4.manifest.js +23 -0
  85. package/lib-esm/manifestSchemas/examples/library.manifest.json +330 -0
  86. package/lib-esm/manifestSchemas/examples/library_1.manifest.js +335 -0
  87. package/lib-esm/manifestSchemas/examples/multi-version_1.manifest.js +673 -0
  88. package/lib-esm/manifestSchemas/examples/multi-version_1.manifest.json +336 -0
  89. package/lib-esm/manifestSchemas/examples/prefab_1.manifest.js +344 -0
  90. package/lib-esm/manifestSchemas/examples/prefab_2.manifest.js +381 -0
  91. package/lib-esm/manifestSchemas/examples/prefabapp.manifest.json +379 -0
  92. package/lib-esm/manifestSchemas/examples/webpart.manifest.json +380 -0
  93. package/lib-esm/manifestSchemas/examples/webpart_1.manifest.js +350 -0
  94. package/lib-esm/manifestSchemas/examples/webpart_2.manifest.js +388 -0
  95. package/lib-esm/manifestSchemas/jsonSchemas/adaptive-card-extension-manifest.schema.json +230 -0
  96. package/lib-esm/manifestSchemas/jsonSchemas/any-value.schema.json +8 -0
  97. package/lib-esm/manifestSchemas/jsonSchemas/client-side-application-manifest.schema.json +138 -0
  98. package/lib-esm/manifestSchemas/jsonSchemas/client-side-assembly-manifest.schema.json +45 -0
  99. package/lib-esm/manifestSchemas/jsonSchemas/client-side-component-loader-configuration.schema.json +273 -0
  100. package/lib-esm/manifestSchemas/jsonSchemas/client-side-component-manifest.schema.json +131 -0
  101. package/lib-esm/manifestSchemas/jsonSchemas/client-side-extension-manifest.schema.json +61 -0
  102. package/lib-esm/manifestSchemas/jsonSchemas/client-side-library-manifest.schema.json +39 -0
  103. package/lib-esm/manifestSchemas/jsonSchemas/client-side-manifest-base.schema.json +25 -0
  104. package/lib-esm/manifestSchemas/jsonSchemas/client-side-multi-version-manifest.schema.json +118 -0
  105. package/lib-esm/manifestSchemas/jsonSchemas/client-side-web-part-manifest.schema.json +348 -0
  106. package/lib-esm/manifestSchemas/jsonSchemas/command-set-extension-manifest.schema.json +81 -0
  107. package/lib-esm/manifestSchemas/jsonSchemas/guid.schema.json +6 -0
  108. package/lib-esm/manifestSchemas/jsonSchemas/localized-string.schema.json +33 -0
  109. package/lib-esm/manifestSchemas/jsonSchemas/prefab-app-manifest.schema.json +176 -0
  110. package/lib-esm/manifestSchemas/jsonSchemas/semver.schema.json +8 -0
  111. package/lib-esm/manifestSchemas/remote/draft-04.schema.json +137 -0
  112. package/lib-esm/manifestSchemas/remote/site-design-script-actions.schema.json +1158 -0
  113. package/package.json +27 -7
  114. package/lib-commonjs/index.d.ts.map +0 -1
  115. package/lib-commonjs/manifestHelpers.d.ts.map +0 -1
  116. package/lib-commonjs/manifestSchemaValidator.d.ts.map +0 -1
  117. package/lib-commonjs/manifestSchemas/IAdaptiveCardExtensionManifest.d.ts.map +0 -1
  118. package/lib-commonjs/manifestSchemas/IClientSideApplicationManifest.d.ts.map +0 -1
  119. package/lib-commonjs/manifestSchemas/IClientSideAssemblyManifest.d.ts.map +0 -1
  120. package/lib-commonjs/manifestSchemas/IClientSideComponentLoaderConfiguration.d.ts.map +0 -1
  121. package/lib-commonjs/manifestSchemas/IClientSideComponentManifest.d.ts.map +0 -1
  122. package/lib-commonjs/manifestSchemas/IClientSideExtensionManifest.d.ts.map +0 -1
  123. package/lib-commonjs/manifestSchemas/IClientSideLibraryManifest.d.ts.map +0 -1
  124. package/lib-commonjs/manifestSchemas/IClientSideManifestBase.d.ts.map +0 -1
  125. package/lib-commonjs/manifestSchemas/IClientSideMultiVersionManifest.d.ts.map +0 -1
  126. package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.d.ts.map +0 -1
  127. package/lib-commonjs/manifestSchemas/ICommandSetExtensionManifest.d.ts.map +0 -1
  128. package/lib-commonjs/manifestSchemas/IPrefabAppManifest.d.ts +0 -76
  129. package/lib-commonjs/manifestSchemas/IPrefabAppManifest.d.ts.map +0 -1
  130. package/lib-commonjs/manifestSchemas/ManifestType.d.ts.map +0 -1
  131. package/lib-commonjs/manifestSchemas/examples/application_1.manifest.d.ts.map +0 -1
  132. package/lib-commonjs/manifestSchemas/examples/application_2.manifest.d.ts.map +0 -1
  133. package/lib-commonjs/manifestSchemas/examples/application_3.manifest.d.ts.map +0 -1
  134. package/lib-commonjs/manifestSchemas/examples/assembly_1.manifest.d.ts.map +0 -1
  135. package/lib-commonjs/manifestSchemas/examples/commandSet_1.manifest.d.ts.map +0 -1
  136. package/lib-commonjs/manifestSchemas/examples/extension_1.manifest.d.ts.map +0 -1
  137. package/lib-commonjs/manifestSchemas/examples/extension_2.manifest.d.ts.map +0 -1
  138. package/lib-commonjs/manifestSchemas/examples/extension_3.manifest.d.ts.map +0 -1
  139. package/lib-commonjs/manifestSchemas/examples/extension_4.manifest.d.ts.map +0 -1
  140. package/lib-commonjs/manifestSchemas/examples/library_1.manifest.d.ts.map +0 -1
  141. package/lib-commonjs/manifestSchemas/examples/multi-version_1.manifest.d.ts.map +0 -1
  142. package/lib-commonjs/manifestSchemas/examples/prefab_1.manifest.d.ts.map +0 -1
  143. package/lib-commonjs/manifestSchemas/examples/prefab_2.manifest.d.ts.map +0 -1
  144. package/lib-commonjs/manifestSchemas/examples/webpart_1.manifest.d.ts.map +0 -1
  145. package/lib-commonjs/manifestSchemas/examples/webpart_2.manifest.d.ts.map +0 -1
  146. /package/{lib-commonjs → lib-dts}/index.d.ts +0 -0
  147. /package/{lib-commonjs → lib-dts}/manifestHelpers.d.ts +0 -0
  148. /package/{lib-commonjs → lib-dts}/manifestSchemas/IAdaptiveCardExtensionManifest.d.ts +0 -0
  149. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideApplicationManifest.d.ts +0 -0
  150. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideAssemblyManifest.d.ts +0 -0
  151. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideComponentLoaderConfiguration.d.ts +0 -0
  152. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideComponentManifest.d.ts +0 -0
  153. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideExtensionManifest.d.ts +0 -0
  154. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideLibraryManifest.d.ts +0 -0
  155. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideManifestBase.d.ts +0 -0
  156. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideMultiVersionManifest.d.ts +0 -0
  157. /package/{lib-commonjs → lib-dts}/manifestSchemas/ICommandSetExtensionManifest.d.ts +0 -0
  158. /package/{lib-commonjs → lib-dts}/manifestSchemas/ManifestType.d.ts +0 -0
@@ -1,77 +1,72 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PredefinedGroup = void 0;
4
- /**
5
- * Predefined web part group.
6
- *
7
- * @beta
8
- */
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "PredefinedGroup", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return PredefinedGroup;
9
+ }
10
+ });
9
11
  var PredefinedGroup;
10
- (function (PredefinedGroup) {
12
+ (function(PredefinedGroup) {
11
13
  /**
12
- * Text, media and content.
13
- *
14
- * This group includes web parts that display text, multi-media, documents, information from the web, and other
15
- * rich content.
16
- *
17
- * @beta
18
- */
19
- PredefinedGroup["TextMediaAndContent"] = "cf066440-0614-43d6-98ae-0b31cf14c7c3";
14
+ * Text, media and content.
15
+ *
16
+ * This group includes web parts that display text, multi-media, documents, information from the web, and other
17
+ * rich content.
18
+ *
19
+ * @beta
20
+ */ PredefinedGroup["TextMediaAndContent"] = "cf066440-0614-43d6-98ae-0b31cf14c7c3";
20
21
  /**
21
- * Discovery.
22
- *
23
- * This group includes web parts that organize, group, and filter content to help users discover information.
24
- *
25
- * @beta
26
- */
27
- PredefinedGroup["DocumentsListsAndLibraries"] = "1edbd9a8-0bfb-4aa2-9afd-14b8c45dd489";
22
+ * Discovery.
23
+ *
24
+ * This group includes web parts that organize, group, and filter content to help users discover information.
25
+ *
26
+ * @beta
27
+ */ PredefinedGroup["DocumentsListsAndLibraries"] = "1edbd9a8-0bfb-4aa2-9afd-14b8c45dd489";
28
28
  /**
29
- * Communication and collaboration.
30
- *
31
- * This group includes web parts that facilitate information sharing, team work, and social interactions.
32
- *
33
- * @beta
34
- */
35
- PredefinedGroup["Feeds"] = "75e22ed5-fa14-4829-850a-c890608aca2d";
29
+ * Communication and collaboration.
30
+ *
31
+ * This group includes web parts that facilitate information sharing, team work, and social interactions.
32
+ *
33
+ * @beta
34
+ */ PredefinedGroup["Feeds"] = "75e22ed5-fa14-4829-850a-c890608aca2d";
36
35
  /**
37
- * Planning and process.
38
- *
39
- * This group includes web parts that empower team productivity with the use of planning and process tools.
40
- *
41
- * @beta
42
- */
43
- PredefinedGroup["NewsPeopleAndEvents"] = "1bc7927e-4a5e-4520-b540-71305c79c20a";
36
+ * Planning and process.
37
+ *
38
+ * This group includes web parts that empower team productivity with the use of planning and process tools.
39
+ *
40
+ * @beta
41
+ */ PredefinedGroup["NewsPeopleAndEvents"] = "1bc7927e-4a5e-4520-b540-71305c79c20a";
44
42
  /**
45
- * Business and intelligence.
46
- *
47
- * This group includes web parts for tracking and analyzing data, and for integrating business flow with pages.
48
- *
49
- * @beta
50
- */
51
- PredefinedGroup["DataAnalysis"] = "4aca9e90-eff5-4fa1-bac7-728f5f157b66";
43
+ * Business and intelligence.
44
+ *
45
+ * This group includes web parts for tracking and analyzing data, and for integrating business flow with pages.
46
+ *
47
+ * @beta
48
+ */ PredefinedGroup["DataAnalysis"] = "4aca9e90-eff5-4fa1-bac7-728f5f157b66";
52
49
  /**
53
- * Regional information
54
- *
55
- * This group includes web parts that display information based on current region and geographical location
56
- *
57
- * @beta
58
- */
59
- PredefinedGroup["RegionalInformation"] = "cfc8bda5-cb9b-49e3-8526-2ee6e52b256a";
50
+ * Regional information
51
+ *
52
+ * This group includes web parts that display information based on current region and geographical location
53
+ *
54
+ * @beta
55
+ */ PredefinedGroup["RegionalInformation"] = "cfc8bda5-cb9b-49e3-8526-2ee6e52b256a";
60
56
  /**
61
- * Other.
62
- *
63
- * This group includes web parts not in other groups.
64
- *
65
- * @beta
66
- */
67
- PredefinedGroup["Advanced"] = "5c03119e-3074-46fd-976b-c60198311f70";
57
+ * Other.
58
+ *
59
+ * This group includes web parts not in other groups.
60
+ *
61
+ * @beta
62
+ */ PredefinedGroup["Advanced"] = "5c03119e-3074-46fd-976b-c60198311f70";
68
63
  /**
69
- * Other.
70
- *
71
- * This group includes local web parts.
72
- *
73
- * @beta
74
- */
75
- PredefinedGroup["Local"] = "8b7bf6f1-a56a-4aa3-8657-7eb6e7e6af61";
76
- })(PredefinedGroup || (exports.PredefinedGroup = PredefinedGroup = {}));
77
- //# sourceMappingURL=IClientSideWebPartManifest.js.map
64
+ * Other.
65
+ *
66
+ * This group includes local web parts.
67
+ *
68
+ * @beta
69
+ */ PredefinedGroup["Local"] = "8b7bf6f1-a56a-4aa3-8657-7eb6e7e6af61";
70
+ })(PredefinedGroup || (PredefinedGroup = {}));
71
+
72
+ //#sourceMappingUrl=./IClientSideWebPartManifest.js.map
@@ -1,3 +1,6 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=ICommandSetExtensionManifest.js.map
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+
6
+ //#sourceMappingUrl=./ICommandSetExtensionManifest.js.map
@@ -1,3 +1,6 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=IPrefabAppManifest.js.map
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+
6
+ //#sourceMappingUrl=./IPrefabAppManifest.js.map
@@ -1,20 +1,25 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ManifestType = void 0;
4
1
  /**
5
2
  * The type of the manifest.
6
3
  *
7
4
  * @alpha
8
- */
5
+ */ "use strict";
6
+ Object.defineProperty(exports, "__esModule", {
7
+ value: true
8
+ });
9
+ Object.defineProperty(exports, "ManifestType", {
10
+ enumerable: true,
11
+ get: function() {
12
+ return ManifestType;
13
+ }
14
+ });
9
15
  var ManifestType;
10
- (function (ManifestType) {
16
+ (function(ManifestType) {
11
17
  /**
12
- * The component manifest type.
13
- */
14
- ManifestType["component"] = "Component";
18
+ * The component manifest type.
19
+ */ ManifestType["component"] = "Component";
15
20
  /**
16
- * The container manifest type. This is used for manifests that contain other manifests, like multiversion manifests.
17
- */
18
- ManifestType["container"] = "Container";
19
- })(ManifestType || (exports.ManifestType = ManifestType = {}));
20
- //# sourceMappingURL=ManifestType.js.map
21
+ * The container manifest type. This is used for manifests that contain other manifests, like multiversion manifests.
22
+ */ ManifestType["container"] = "Container";
23
+ })(ManifestType || (ManifestType = {}));
24
+
25
+ //#sourceMappingUrl=./ManifestType.js.map
@@ -1,4 +1,13 @@
1
1
  "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "default", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return _default;
9
+ }
10
+ });
2
11
  const appManifest = {
3
12
  manifestVersion: 2,
4
13
  componentType: 'Application',
@@ -7,7 +16,9 @@ const appManifest = {
7
16
  version: '0.0.1',
8
17
  safeWithCustomScriptDisabled: true,
9
18
  loaderConfig: {
10
- internalModuleBaseUrls: ['https://cdn.net/'],
19
+ internalModuleBaseUrls: [
20
+ 'https://cdn.net/'
21
+ ],
11
22
  entryModuleId: 'main.bundle',
12
23
  scriptResources: {
13
24
  frameworkA: {
@@ -322,15 +333,22 @@ const appManifest = {
322
333
  type: 'path',
323
334
  path: 'nonAmdB.js',
324
335
  globalName: 'nonAmdB',
325
- globalDependencies: ['nonAmdB']
336
+ globalDependencies: [
337
+ 'nonAmdB'
338
+ ]
326
339
  }
327
340
  }
328
341
  },
329
342
  preloadOptions: {},
330
343
  preloadComponents: [],
331
- title: { default: 'foobar' },
332
- description: { default: 'foobar baz' },
344
+ title: {
345
+ default: 'foobar'
346
+ },
347
+ description: {
348
+ default: 'foobar baz'
349
+ },
333
350
  assemblyId: '00000000-0000-0000-0000-000000000000'
334
351
  };
335
- module.exports = appManifest;
336
- //# sourceMappingURL=application_1.manifest.js.map
352
+ const _default = appManifest;
353
+
354
+ //#sourceMappingUrl=./application_1.manifest.js.map
@@ -1,4 +1,13 @@
1
1
  "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "default", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return _default;
9
+ }
10
+ });
2
11
  const appManifest = {
3
12
  manifestVersion: 2,
4
13
  componentType: 'Application',
@@ -7,7 +16,9 @@ const appManifest = {
7
16
  version: '0.0.1',
8
17
  requiresCustomScript: false,
9
18
  loaderConfig: {
10
- internalModuleBaseUrls: ['https://cdn.net/'],
19
+ internalModuleBaseUrls: [
20
+ 'https://cdn.net/'
21
+ ],
11
22
  entryModuleId: 'main.bundle',
12
23
  exportName: 'foobar',
13
24
  scriptResources: {
@@ -25,12 +36,22 @@ const appManifest = {
25
36
  shouldPreloadQuickLaunch: true,
26
37
  preloadListItemQueryOption: 'query',
27
38
  preloadListItemQueryOptionOverride: 'query',
28
- preloadListItemProperties: ['DefaultCanvasContentVersion']
39
+ preloadListItemProperties: [
40
+ 'DefaultCanvasContentVersion'
41
+ ]
42
+ },
43
+ preloadComponents: [
44
+ 'framework1',
45
+ 'framework2'
46
+ ],
47
+ title: {
48
+ default: 'foobar'
49
+ },
50
+ description: {
51
+ default: 'foobar baz'
29
52
  },
30
- preloadComponents: ['framework1', 'framework2'],
31
- title: { default: 'foobar' },
32
- description: { default: 'foobar baz' },
33
53
  hasSuiteNav: true
34
54
  };
35
- module.exports = appManifest;
36
- //# sourceMappingURL=application_2.manifest.js.map
55
+ const _default = appManifest;
56
+
57
+ //#sourceMappingUrl=./application_2.manifest.js.map
@@ -1,4 +1,13 @@
1
1
  "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "default", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return _default;
9
+ }
10
+ });
2
11
  const appManifest = {
3
12
  manifestVersion: 2,
4
13
  componentType: 'Application',
@@ -6,7 +15,9 @@ const appManifest = {
6
15
  alias: 'myApplication',
7
16
  version: '0.0.1',
8
17
  loaderConfig: {
9
- internalModuleBaseUrls: ['https://cdn.net/'],
18
+ internalModuleBaseUrls: [
19
+ 'https://cdn.net/'
20
+ ],
10
21
  entryModuleId: 'main.bundle',
11
22
  scriptResources: {
12
23
  'main.bundle': {
@@ -22,14 +33,20 @@ const appManifest = {
22
33
  shouldPreloadItem: false,
23
34
  shouldPreloadQuickLaunch: false
24
35
  },
25
- preloadComponents: ['framework1', 'framework2'],
36
+ preloadComponents: [
37
+ 'framework1',
38
+ 'framework2'
39
+ ],
26
40
  title: {
27
41
  default: 'foobar',
28
42
  'en-us': 'ABC123',
29
43
  'fr-fr': '123ABC'
30
44
  },
31
- description: { default: 'foobar baz' },
45
+ description: {
46
+ default: 'foobar baz'
47
+ },
32
48
  hasSuiteNav: false
33
49
  };
34
- module.exports = appManifest;
35
- //# sourceMappingURL=application_3.manifest.js.map
50
+ const _default = appManifest;
51
+
52
+ //#sourceMappingUrl=./application_3.manifest.js.map
@@ -1,4 +1,13 @@
1
1
  "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "default", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return _default;
9
+ }
10
+ });
2
11
  const assemblyManifest = {
3
12
  manifestVersion: 2,
4
13
  componentType: 'Library',
@@ -7,7 +16,9 @@ const assemblyManifest = {
7
16
  version: '0.0.1',
8
17
  rootComponentId: '00000000-0000-0000-0000-000000000000',
9
18
  loaderConfig: {
10
- internalModuleBaseUrls: ['https://cdn.net/'],
19
+ internalModuleBaseUrls: [
20
+ 'https://cdn.net/'
21
+ ],
11
22
  entryModuleId: 'main.bundle',
12
23
  exportName: 'foobar',
13
24
  scriptResources: {
@@ -323,10 +334,13 @@ const assemblyManifest = {
323
334
  type: 'path',
324
335
  path: 'nonAmdB.js',
325
336
  globalName: 'nonAmdB',
326
- globalDependencies: ['nonAmdB']
337
+ globalDependencies: [
338
+ 'nonAmdB'
339
+ ]
327
340
  }
328
341
  }
329
342
  }
330
343
  };
331
- module.exports = assemblyManifest;
332
- //# sourceMappingURL=assembly_1.manifest.js.map
344
+ const _default = assemblyManifest;
345
+
346
+ //#sourceMappingUrl=./assembly_1.manifest.js.map
@@ -1,4 +1,13 @@
1
1
  "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "default", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return _default;
9
+ }
10
+ });
2
11
  const extensionManifest = {
3
12
  manifestVersion: 2,
4
13
  componentType: 'Extension',
@@ -26,7 +35,9 @@ const extensionManifest = {
26
35
  }
27
36
  },
28
37
  loaderConfig: {
29
- internalModuleBaseUrls: ['https://cdn.net/'],
38
+ internalModuleBaseUrls: [
39
+ 'https://cdn.net/'
40
+ ],
30
41
  entryModuleId: 'main.bundle',
31
42
  scriptResources: {
32
43
  'main.bundle': {
@@ -36,5 +47,6 @@ const extensionManifest = {
36
47
  }
37
48
  }
38
49
  };
39
- module.exports = extensionManifest;
40
- //# sourceMappingURL=commandSet_1.manifest.js.map
50
+ const _default = extensionManifest;
51
+
52
+ //#sourceMappingUrl=./commandSet_1.manifest.js.map
@@ -1,4 +1,13 @@
1
1
  "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "default", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return _default;
9
+ }
10
+ });
2
11
  const extensionManifest = {
3
12
  manifestVersion: 2,
4
13
  componentType: 'Extension',
@@ -8,7 +17,9 @@ const extensionManifest = {
8
17
  safeWithCustomScriptDisabled: true,
9
18
  extensionType: 'FieldCustomizer',
10
19
  loaderConfig: {
11
- internalModuleBaseUrls: ['https://cdn.net/'],
20
+ internalModuleBaseUrls: [
21
+ 'https://cdn.net/'
22
+ ],
12
23
  entryModuleId: 'main.bundle',
13
24
  exportName: 'foobar',
14
25
  scriptResources: {
@@ -19,5 +30,6 @@ const extensionManifest = {
19
30
  }
20
31
  }
21
32
  };
22
- module.exports = extensionManifest;
23
- //# sourceMappingURL=extension_1.manifest.js.map
33
+ const _default = extensionManifest;
34
+
35
+ //#sourceMappingUrl=./extension_1.manifest.js.map
@@ -1,4 +1,13 @@
1
1
  "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "default", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return _default;
9
+ }
10
+ });
2
11
  const extensionManifest = {
3
12
  manifestVersion: 2,
4
13
  componentType: 'Extension',
@@ -8,7 +17,9 @@ const extensionManifest = {
8
17
  requiresCustomScript: false,
9
18
  extensionType: 'Unknown',
10
19
  loaderConfig: {
11
- internalModuleBaseUrls: ['https://cdn.net/'],
20
+ internalModuleBaseUrls: [
21
+ 'https://cdn.net/'
22
+ ],
12
23
  entryModuleId: 'main.bundle',
13
24
  scriptResources: {
14
25
  'main.bundle': {
@@ -18,5 +29,6 @@ const extensionManifest = {
18
29
  }
19
30
  }
20
31
  };
21
- module.exports = extensionManifest;
22
- //# sourceMappingURL=extension_2.manifest.js.map
32
+ const _default = extensionManifest;
33
+
34
+ //#sourceMappingUrl=./extension_2.manifest.js.map
@@ -1,4 +1,13 @@
1
1
  "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "default", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return _default;
9
+ }
10
+ });
2
11
  const extensionManifest = {
3
12
  manifestVersion: 2,
4
13
  componentType: 'Extension',
@@ -7,7 +16,9 @@ const extensionManifest = {
7
16
  version: '0.0.1',
8
17
  extensionType: 'ApplicationCustomizer',
9
18
  loaderConfig: {
10
- internalModuleBaseUrls: ['https://cdn.net/'],
19
+ internalModuleBaseUrls: [
20
+ 'https://cdn.net/'
21
+ ],
11
22
  entryModuleId: 'main.bundle',
12
23
  scriptResources: {
13
24
  'main.bundle': {
@@ -17,5 +28,6 @@ const extensionManifest = {
17
28
  }
18
29
  }
19
30
  };
20
- module.exports = extensionManifest;
21
- //# sourceMappingURL=extension_3.manifest.js.map
31
+ const _default = extensionManifest;
32
+
33
+ //#sourceMappingUrl=./extension_3.manifest.js.map
@@ -1,4 +1,13 @@
1
1
  "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "default", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return _default;
9
+ }
10
+ });
2
11
  const extensionManifest = {
3
12
  manifestVersion: 2,
4
13
  componentType: 'Extension',
@@ -7,7 +16,9 @@ const extensionManifest = {
7
16
  version: '0.0.1',
8
17
  extensionType: 'SearchQueryModifier',
9
18
  loaderConfig: {
10
- internalModuleBaseUrls: ['https://cdn.net/'],
19
+ internalModuleBaseUrls: [
20
+ 'https://cdn.net/'
21
+ ],
11
22
  entryModuleId: 'main.bundle',
12
23
  scriptResources: {
13
24
  'main.bundle': {
@@ -17,5 +28,6 @@ const extensionManifest = {
17
28
  }
18
29
  }
19
30
  };
20
- module.exports = extensionManifest;
21
- //# sourceMappingURL=extension_4.manifest.js.map
31
+ const _default = extensionManifest;
32
+
33
+ //#sourceMappingUrl=./extension_4.manifest.js.map
@@ -1,4 +1,13 @@
1
1
  "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "default", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return _default;
9
+ }
10
+ });
2
11
  const libraryManifest = {
3
12
  manifestVersion: 2,
4
13
  componentType: 'Library',
@@ -6,7 +15,9 @@ const libraryManifest = {
6
15
  alias: 'myLibrary',
7
16
  version: '0.0.1',
8
17
  loaderConfig: {
9
- internalModuleBaseUrls: ['https://cdn.net/'],
18
+ internalModuleBaseUrls: [
19
+ 'https://cdn.net/'
20
+ ],
10
21
  entryModuleId: 'main.bundle',
11
22
  exportName: 'foobar',
12
23
  scriptResources: {
@@ -322,10 +333,13 @@ const libraryManifest = {
322
333
  type: 'path',
323
334
  path: 'nonAmdB.js',
324
335
  globalName: 'nonAmdB',
325
- globalDependencies: ['nonAmdB']
336
+ globalDependencies: [
337
+ 'nonAmdB'
338
+ ]
326
339
  }
327
340
  }
328
341
  }
329
342
  };
330
- module.exports = libraryManifest;
331
- //# sourceMappingURL=library_1.manifest.js.map
343
+ const _default = libraryManifest;
344
+
345
+ //#sourceMappingUrl=./library_1.manifest.js.map
@@ -1,4 +1,13 @@
1
1
  "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "default", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return _default;
9
+ }
10
+ });
2
11
  const multiVersionManifest = {
3
12
  manifestVersion: 2,
4
13
  id: '00000000-0000-0000-0000-000000000000',
@@ -10,7 +19,9 @@ const multiVersionManifest = {
10
19
  alias: 'myLibrary',
11
20
  version: '0.0.1',
12
21
  loaderConfig: {
13
- internalModuleBaseUrls: ['https://cdn.net/'],
22
+ internalModuleBaseUrls: [
23
+ 'https://cdn.net/'
24
+ ],
14
25
  entryModuleId: 'main.bundle',
15
26
  exportName: 'foobar',
16
27
  scriptResources: {
@@ -326,7 +337,9 @@ const multiVersionManifest = {
326
337
  type: 'path',
327
338
  path: 'nonAmdB.js',
328
339
  globalName: 'nonAmdB',
329
- globalDependencies: ['nonAmdB']
340
+ globalDependencies: [
341
+ 'nonAmdB'
342
+ ]
330
343
  }
331
344
  }
332
345
  }
@@ -338,7 +351,9 @@ const multiVersionManifest = {
338
351
  alias: 'myLibrary',
339
352
  version: '0.0.1',
340
353
  loaderConfig: {
341
- internalModuleBaseUrls: ['https://cdn.net/'],
354
+ internalModuleBaseUrls: [
355
+ 'https://cdn.net/'
356
+ ],
342
357
  entryModuleId: 'main.bundle',
343
358
  exportName: 'foobar',
344
359
  scriptResources: {
@@ -654,12 +669,15 @@ const multiVersionManifest = {
654
669
  type: 'path',
655
670
  path: 'nonAmdB.js',
656
671
  globalName: 'nonAmdB',
657
- globalDependencies: ['nonAmdB']
672
+ globalDependencies: [
673
+ 'nonAmdB'
674
+ ]
658
675
  }
659
676
  }
660
677
  }
661
678
  }
662
679
  }
663
680
  };
664
- module.exports = multiVersionManifest;
665
- //# sourceMappingURL=multi-version_1.manifest.js.map
681
+ const _default = multiVersionManifest;
682
+
683
+ //#sourceMappingUrl=./multi-version_1.manifest.js.map