@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.
- package/dist/index-internal-beta.d.ts +15 -3
- package/dist/index-internal-public.d.ts +47 -2
- package/dist/index-internal.d.ts +15 -3
- package/lib-commonjs/index.js +31 -29
- package/lib-commonjs/manifestHelpers.js +22 -19
- package/lib-commonjs/manifestSchemaValidator.js +70 -84
- package/lib-commonjs/manifestSchemas/IAdaptiveCardExtensionManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideApplicationManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideAssemblyManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideComponentLoaderConfiguration.js +11 -3
- package/lib-commonjs/manifestSchemas/IClientSideComponentManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideExtensionManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideLibraryManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideManifestBase.js +10 -3
- package/lib-commonjs/manifestSchemas/IClientSideMultiVersionManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.js +62 -67
- package/lib-commonjs/manifestSchemas/ICommandSetExtensionManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IPrefabAppManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/ManifestType.js +18 -13
- package/lib-commonjs/manifestSchemas/examples/application_1.manifest.js +24 -6
- package/lib-commonjs/manifestSchemas/examples/application_2.manifest.js +28 -7
- package/lib-commonjs/manifestSchemas/examples/application_3.manifest.js +22 -5
- package/lib-commonjs/manifestSchemas/examples/assembly_1.manifest.js +18 -4
- package/lib-commonjs/manifestSchemas/examples/commandSet_1.manifest.js +15 -3
- package/lib-commonjs/manifestSchemas/examples/extension_1.manifest.js +15 -3
- package/lib-commonjs/manifestSchemas/examples/extension_2.manifest.js +15 -3
- package/lib-commonjs/manifestSchemas/examples/extension_3.manifest.js +15 -3
- package/lib-commonjs/manifestSchemas/examples/extension_4.manifest.js +15 -3
- package/lib-commonjs/manifestSchemas/examples/library_1.manifest.js +18 -4
- package/lib-commonjs/manifestSchemas/examples/multi-version_1.manifest.js +24 -6
- package/lib-commonjs/manifestSchemas/examples/prefab_1.manifest.js +27 -7
- package/lib-commonjs/manifestSchemas/examples/prefab_2.manifest.js +61 -9
- package/lib-commonjs/manifestSchemas/examples/prefabapp.manifest.json +37 -3
- package/lib-commonjs/manifestSchemas/examples/webpart_1.manifest.js +24 -6
- package/lib-commonjs/manifestSchemas/examples/webpart_2.manifest.js +47 -12
- package/lib-commonjs/manifestSchemas/jsonSchemas/prefab-app-manifest.schema.json +107 -3
- package/{lib-commonjs → lib-dts}/manifestSchemaValidator.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideWebPartManifest.d.ts +1 -3
- package/lib-dts/manifestSchemas/IPrefabAppManifest.d.ts +255 -0
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/application_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/application_2.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/application_3.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/assembly_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/commandSet_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_2.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_3.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_4.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/library_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/multi-version_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/prefab_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/prefab_2.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/webpart_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/webpart_2.manifest.d.ts +1 -1
- package/{dist → lib-dts}/tsdoc-metadata.json +1 -1
- package/lib-esm/index.js +15 -0
- package/lib-esm/manifestHelpers.js +21 -0
- package/lib-esm/manifestSchemaValidator.js +135 -0
- package/lib-esm/manifestSchemas/IAdaptiveCardExtensionManifest.js +9 -0
- package/lib-esm/manifestSchemas/IClientSideApplicationManifest.js +5 -0
- package/lib-esm/manifestSchemas/IClientSideAssemblyManifest.js +7 -0
- package/lib-esm/manifestSchemas/IClientSideComponentLoaderConfiguration.js +17 -0
- package/lib-esm/manifestSchemas/IClientSideComponentManifest.js +27 -0
- package/lib-esm/manifestSchemas/IClientSideExtensionManifest.js +7 -0
- package/lib-esm/manifestSchemas/IClientSideLibraryManifest.js +7 -0
- package/lib-esm/manifestSchemas/IClientSideManifestBase.js +7 -0
- package/lib-esm/manifestSchemas/IClientSideMultiVersionManifest.js +25 -0
- package/lib-esm/manifestSchemas/IClientSideWebPartManifest.js +62 -0
- package/lib-esm/manifestSchemas/ICommandSetExtensionManifest.js +8 -0
- package/lib-esm/manifestSchemas/IPrefabAppManifest.js +7 -0
- package/lib-esm/manifestSchemas/ManifestType.js +15 -0
- package/lib-esm/manifestSchemas/examples/application.manifest.json +346 -0
- package/lib-esm/manifestSchemas/examples/application_1.manifest.js +344 -0
- package/lib-esm/manifestSchemas/examples/application_2.manifest.js +47 -0
- package/lib-esm/manifestSchemas/examples/application_3.manifest.js +42 -0
- package/lib-esm/manifestSchemas/examples/assembly.manifest.json +331 -0
- package/lib-esm/manifestSchemas/examples/assembly_1.manifest.js +336 -0
- package/lib-esm/manifestSchemas/examples/commandSet_1.manifest.js +42 -0
- package/lib-esm/manifestSchemas/examples/commandset.manifest.json +38 -0
- package/lib-esm/manifestSchemas/examples/extension.manifest.json +20 -0
- package/lib-esm/manifestSchemas/examples/extension_1.manifest.js +25 -0
- package/lib-esm/manifestSchemas/examples/extension_2.manifest.js +24 -0
- package/lib-esm/manifestSchemas/examples/extension_3.manifest.js +23 -0
- package/lib-esm/manifestSchemas/examples/extension_4.manifest.js +23 -0
- package/lib-esm/manifestSchemas/examples/library.manifest.json +330 -0
- package/lib-esm/manifestSchemas/examples/library_1.manifest.js +335 -0
- package/lib-esm/manifestSchemas/examples/multi-version_1.manifest.js +673 -0
- package/lib-esm/manifestSchemas/examples/multi-version_1.manifest.json +336 -0
- package/lib-esm/manifestSchemas/examples/prefab_1.manifest.js +344 -0
- package/lib-esm/manifestSchemas/examples/prefab_2.manifest.js +381 -0
- package/lib-esm/manifestSchemas/examples/prefabapp.manifest.json +379 -0
- package/lib-esm/manifestSchemas/examples/webpart.manifest.json +380 -0
- package/lib-esm/manifestSchemas/examples/webpart_1.manifest.js +350 -0
- package/lib-esm/manifestSchemas/examples/webpart_2.manifest.js +388 -0
- package/lib-esm/manifestSchemas/jsonSchemas/adaptive-card-extension-manifest.schema.json +230 -0
- package/lib-esm/manifestSchemas/jsonSchemas/any-value.schema.json +8 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-application-manifest.schema.json +138 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-assembly-manifest.schema.json +45 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-component-loader-configuration.schema.json +273 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-component-manifest.schema.json +131 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-extension-manifest.schema.json +61 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-library-manifest.schema.json +39 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-manifest-base.schema.json +25 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-multi-version-manifest.schema.json +118 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-web-part-manifest.schema.json +348 -0
- package/lib-esm/manifestSchemas/jsonSchemas/command-set-extension-manifest.schema.json +81 -0
- package/lib-esm/manifestSchemas/jsonSchemas/guid.schema.json +6 -0
- package/lib-esm/manifestSchemas/jsonSchemas/localized-string.schema.json +33 -0
- package/lib-esm/manifestSchemas/jsonSchemas/prefab-app-manifest.schema.json +176 -0
- package/lib-esm/manifestSchemas/jsonSchemas/semver.schema.json +8 -0
- package/lib-esm/manifestSchemas/remote/draft-04.schema.json +137 -0
- package/lib-esm/manifestSchemas/remote/site-design-script-actions.schema.json +1158 -0
- package/package.json +27 -7
- package/lib-commonjs/index.d.ts.map +0 -1
- package/lib-commonjs/manifestHelpers.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemaValidator.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IAdaptiveCardExtensionManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideApplicationManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideAssemblyManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideComponentLoaderConfiguration.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideComponentManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideExtensionManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideLibraryManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideManifestBase.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideMultiVersionManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/ICommandSetExtensionManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IPrefabAppManifest.d.ts +0 -76
- package/lib-commonjs/manifestSchemas/IPrefabAppManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/ManifestType.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/application_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/application_2.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/application_3.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/assembly_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/commandSet_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/extension_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/extension_2.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/extension_3.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/extension_4.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/library_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/multi-version_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/prefab_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/prefab_2.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/webpart_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/webpart_2.manifest.d.ts.map +0 -1
- /package/{lib-commonjs → lib-dts}/index.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestHelpers.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IAdaptiveCardExtensionManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideApplicationManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideAssemblyManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideComponentLoaderConfiguration.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideComponentManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideExtensionManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideLibraryManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideManifestBase.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideMultiVersionManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/ICommandSetExtensionManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/ManifestType.d.ts +0 -0
|
@@ -1,77 +1,72 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
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
|
|
12
|
+
(function(PredefinedGroup) {
|
|
11
13
|
/**
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
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
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
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
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
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
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
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
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
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
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
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
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
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
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
//#
|
|
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", {
|
|
3
|
-
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
|
|
6
|
+
//#sourceMappingUrl=./ICommandSetExtensionManifest.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
|
|
16
|
+
(function(ManifestType) {
|
|
11
17
|
/**
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
ManifestType["component"] = "Component";
|
|
18
|
+
* The component manifest type.
|
|
19
|
+
*/ ManifestType["component"] = "Component";
|
|
15
20
|
/**
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
//#
|
|
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: [
|
|
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: [
|
|
336
|
+
globalDependencies: [
|
|
337
|
+
'nonAmdB'
|
|
338
|
+
]
|
|
326
339
|
}
|
|
327
340
|
}
|
|
328
341
|
},
|
|
329
342
|
preloadOptions: {},
|
|
330
343
|
preloadComponents: [],
|
|
331
|
-
title: {
|
|
332
|
-
|
|
344
|
+
title: {
|
|
345
|
+
default: 'foobar'
|
|
346
|
+
},
|
|
347
|
+
description: {
|
|
348
|
+
default: 'foobar baz'
|
|
349
|
+
},
|
|
333
350
|
assemblyId: '00000000-0000-0000-0000-000000000000'
|
|
334
351
|
};
|
|
335
|
-
|
|
336
|
-
|
|
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: [
|
|
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: [
|
|
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
|
-
|
|
36
|
-
|
|
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: [
|
|
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: [
|
|
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: {
|
|
45
|
+
description: {
|
|
46
|
+
default: 'foobar baz'
|
|
47
|
+
},
|
|
32
48
|
hasSuiteNav: false
|
|
33
49
|
};
|
|
34
|
-
|
|
35
|
-
|
|
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: [
|
|
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: [
|
|
337
|
+
globalDependencies: [
|
|
338
|
+
'nonAmdB'
|
|
339
|
+
]
|
|
327
340
|
}
|
|
328
341
|
}
|
|
329
342
|
}
|
|
330
343
|
};
|
|
331
|
-
|
|
332
|
-
|
|
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: [
|
|
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
|
-
|
|
40
|
-
|
|
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: [
|
|
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
|
-
|
|
23
|
-
|
|
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: [
|
|
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
|
-
|
|
22
|
-
|
|
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: [
|
|
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
|
-
|
|
21
|
-
|
|
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: [
|
|
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
|
-
|
|
21
|
-
|
|
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: [
|
|
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: [
|
|
336
|
+
globalDependencies: [
|
|
337
|
+
'nonAmdB'
|
|
338
|
+
]
|
|
326
339
|
}
|
|
327
340
|
}
|
|
328
341
|
}
|
|
329
342
|
};
|
|
330
|
-
|
|
331
|
-
|
|
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: [
|
|
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: [
|
|
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: [
|
|
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: [
|
|
672
|
+
globalDependencies: [
|
|
673
|
+
'nonAmdB'
|
|
674
|
+
]
|
|
658
675
|
}
|
|
659
676
|
}
|
|
660
677
|
}
|
|
661
678
|
}
|
|
662
679
|
}
|
|
663
680
|
};
|
|
664
|
-
|
|
665
|
-
|
|
681
|
+
const _default = multiVersionManifest;
|
|
682
|
+
|
|
683
|
+
//#sourceMappingUrl=./multi-version_1.manifest.js.map
|