@microsoft/sp-module-interfaces 1.20.2 → 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 (159) hide show
  1. package/dist/index-internal-beta.d.ts +59 -1
  2. package/dist/index-internal-public.d.ts +53 -1
  3. package/dist/index-internal.d.ts +760 -15
  4. package/lib-commonjs/index.js +31 -28
  5. package/lib-commonjs/manifestHelpers.js +22 -19
  6. package/lib-commonjs/manifestSchemaValidator.js +100 -63
  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 +6 -0
  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 +354 -0
  32. package/lib-commonjs/manifestSchemas/examples/prefab_2.manifest.js +391 -0
  33. package/lib-commonjs/manifestSchemas/examples/prefabapp.manifest.json +379 -0
  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/adaptive-card-extension-manifest.schema.json +8 -0
  37. package/lib-commonjs/manifestSchemas/jsonSchemas/client-side-component-manifest.schema.json +5 -2
  38. package/lib-commonjs/manifestSchemas/jsonSchemas/client-side-web-part-manifest.schema.json +23 -0
  39. package/lib-commonjs/manifestSchemas/jsonSchemas/prefab-app-manifest.schema.json +176 -0
  40. package/lib-commonjs/manifestSchemas/remote/draft-04.schema.json +137 -0
  41. package/lib-commonjs/manifestSchemas/remote/site-design-script-actions.schema.json +1158 -0
  42. package/{lib-commonjs → lib-dts}/index.d.ts +1 -0
  43. package/{lib-commonjs → lib-dts}/manifestSchemaValidator.d.ts +4 -1
  44. package/{lib-commonjs → lib-dts}/manifestSchemas/IAdaptiveCardExtensionManifest.d.ts +6 -0
  45. package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideComponentManifest.d.ts +1 -1
  46. package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideWebPartManifest.d.ts +33 -0
  47. package/lib-dts/manifestSchemas/IPrefabAppManifest.d.ts +255 -0
  48. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/application_1.manifest.d.ts +1 -1
  49. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/application_2.manifest.d.ts +1 -1
  50. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/application_3.manifest.d.ts +1 -1
  51. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/assembly_1.manifest.d.ts +1 -1
  52. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/commandSet_1.manifest.d.ts +1 -1
  53. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_1.manifest.d.ts +1 -1
  54. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_2.manifest.d.ts +1 -1
  55. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_3.manifest.d.ts +1 -1
  56. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_4.manifest.d.ts +1 -1
  57. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/library_1.manifest.d.ts +1 -1
  58. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/multi-version_1.manifest.d.ts +1 -1
  59. package/lib-dts/manifestSchemas/examples/prefab_1.manifest.d.ts +4 -0
  60. package/lib-dts/manifestSchemas/examples/prefab_2.manifest.d.ts +4 -0
  61. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/webpart_1.manifest.d.ts +1 -1
  62. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/webpart_2.manifest.d.ts +1 -1
  63. package/{dist → lib-dts}/tsdoc-metadata.json +1 -1
  64. package/lib-esm/index.js +15 -0
  65. package/lib-esm/manifestHelpers.js +21 -0
  66. package/lib-esm/manifestSchemaValidator.js +135 -0
  67. package/lib-esm/manifestSchemas/IAdaptiveCardExtensionManifest.js +9 -0
  68. package/lib-esm/manifestSchemas/IClientSideApplicationManifest.js +5 -0
  69. package/lib-esm/manifestSchemas/IClientSideAssemblyManifest.js +7 -0
  70. package/lib-esm/manifestSchemas/IClientSideComponentLoaderConfiguration.js +17 -0
  71. package/lib-esm/manifestSchemas/IClientSideComponentManifest.js +27 -0
  72. package/lib-esm/manifestSchemas/IClientSideExtensionManifest.js +7 -0
  73. package/lib-esm/manifestSchemas/IClientSideLibraryManifest.js +7 -0
  74. package/lib-esm/manifestSchemas/IClientSideManifestBase.js +7 -0
  75. package/lib-esm/manifestSchemas/IClientSideMultiVersionManifest.js +25 -0
  76. package/lib-esm/manifestSchemas/IClientSideWebPartManifest.js +62 -0
  77. package/lib-esm/manifestSchemas/ICommandSetExtensionManifest.js +8 -0
  78. package/lib-esm/manifestSchemas/IPrefabAppManifest.js +7 -0
  79. package/lib-esm/manifestSchemas/ManifestType.js +15 -0
  80. package/lib-esm/manifestSchemas/examples/application.manifest.json +346 -0
  81. package/lib-esm/manifestSchemas/examples/application_1.manifest.js +344 -0
  82. package/lib-esm/manifestSchemas/examples/application_2.manifest.js +47 -0
  83. package/lib-esm/manifestSchemas/examples/application_3.manifest.js +42 -0
  84. package/lib-esm/manifestSchemas/examples/assembly.manifest.json +331 -0
  85. package/lib-esm/manifestSchemas/examples/assembly_1.manifest.js +336 -0
  86. package/lib-esm/manifestSchemas/examples/commandSet_1.manifest.js +42 -0
  87. package/lib-esm/manifestSchemas/examples/commandset.manifest.json +38 -0
  88. package/lib-esm/manifestSchemas/examples/extension.manifest.json +20 -0
  89. package/lib-esm/manifestSchemas/examples/extension_1.manifest.js +25 -0
  90. package/lib-esm/manifestSchemas/examples/extension_2.manifest.js +24 -0
  91. package/lib-esm/manifestSchemas/examples/extension_3.manifest.js +23 -0
  92. package/lib-esm/manifestSchemas/examples/extension_4.manifest.js +23 -0
  93. package/lib-esm/manifestSchemas/examples/library.manifest.json +330 -0
  94. package/lib-esm/manifestSchemas/examples/library_1.manifest.js +335 -0
  95. package/lib-esm/manifestSchemas/examples/multi-version_1.manifest.js +673 -0
  96. package/lib-esm/manifestSchemas/examples/multi-version_1.manifest.json +336 -0
  97. package/lib-esm/manifestSchemas/examples/prefab_1.manifest.js +344 -0
  98. package/lib-esm/manifestSchemas/examples/prefab_2.manifest.js +381 -0
  99. package/lib-esm/manifestSchemas/examples/prefabapp.manifest.json +379 -0
  100. package/lib-esm/manifestSchemas/examples/webpart.manifest.json +380 -0
  101. package/lib-esm/manifestSchemas/examples/webpart_1.manifest.js +350 -0
  102. package/lib-esm/manifestSchemas/examples/webpart_2.manifest.js +388 -0
  103. package/lib-esm/manifestSchemas/jsonSchemas/adaptive-card-extension-manifest.schema.json +230 -0
  104. package/lib-esm/manifestSchemas/jsonSchemas/any-value.schema.json +8 -0
  105. package/lib-esm/manifestSchemas/jsonSchemas/client-side-application-manifest.schema.json +138 -0
  106. package/lib-esm/manifestSchemas/jsonSchemas/client-side-assembly-manifest.schema.json +45 -0
  107. package/lib-esm/manifestSchemas/jsonSchemas/client-side-component-loader-configuration.schema.json +273 -0
  108. package/lib-esm/manifestSchemas/jsonSchemas/client-side-component-manifest.schema.json +131 -0
  109. package/lib-esm/manifestSchemas/jsonSchemas/client-side-extension-manifest.schema.json +61 -0
  110. package/lib-esm/manifestSchemas/jsonSchemas/client-side-library-manifest.schema.json +39 -0
  111. package/lib-esm/manifestSchemas/jsonSchemas/client-side-manifest-base.schema.json +25 -0
  112. package/lib-esm/manifestSchemas/jsonSchemas/client-side-multi-version-manifest.schema.json +118 -0
  113. package/lib-esm/manifestSchemas/jsonSchemas/client-side-web-part-manifest.schema.json +348 -0
  114. package/lib-esm/manifestSchemas/jsonSchemas/command-set-extension-manifest.schema.json +81 -0
  115. package/lib-esm/manifestSchemas/jsonSchemas/guid.schema.json +6 -0
  116. package/lib-esm/manifestSchemas/jsonSchemas/localized-string.schema.json +33 -0
  117. package/lib-esm/manifestSchemas/jsonSchemas/prefab-app-manifest.schema.json +176 -0
  118. package/lib-esm/manifestSchemas/jsonSchemas/semver.schema.json +8 -0
  119. package/lib-esm/manifestSchemas/remote/draft-04.schema.json +137 -0
  120. package/lib-esm/manifestSchemas/remote/site-design-script-actions.schema.json +1158 -0
  121. package/package.json +32 -11
  122. package/lib-commonjs/index.d.ts.map +0 -1
  123. package/lib-commonjs/manifestHelpers.d.ts.map +0 -1
  124. package/lib-commonjs/manifestSchemaValidator.d.ts.map +0 -1
  125. package/lib-commonjs/manifestSchemas/IAdaptiveCardExtensionManifest.d.ts.map +0 -1
  126. package/lib-commonjs/manifestSchemas/IClientSideApplicationManifest.d.ts.map +0 -1
  127. package/lib-commonjs/manifestSchemas/IClientSideAssemblyManifest.d.ts.map +0 -1
  128. package/lib-commonjs/manifestSchemas/IClientSideComponentLoaderConfiguration.d.ts.map +0 -1
  129. package/lib-commonjs/manifestSchemas/IClientSideComponentManifest.d.ts.map +0 -1
  130. package/lib-commonjs/manifestSchemas/IClientSideExtensionManifest.d.ts.map +0 -1
  131. package/lib-commonjs/manifestSchemas/IClientSideLibraryManifest.d.ts.map +0 -1
  132. package/lib-commonjs/manifestSchemas/IClientSideManifestBase.d.ts.map +0 -1
  133. package/lib-commonjs/manifestSchemas/IClientSideMultiVersionManifest.d.ts.map +0 -1
  134. package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.d.ts.map +0 -1
  135. package/lib-commonjs/manifestSchemas/ICommandSetExtensionManifest.d.ts.map +0 -1
  136. package/lib-commonjs/manifestSchemas/ManifestType.d.ts.map +0 -1
  137. package/lib-commonjs/manifestSchemas/examples/application_1.manifest.d.ts.map +0 -1
  138. package/lib-commonjs/manifestSchemas/examples/application_2.manifest.d.ts.map +0 -1
  139. package/lib-commonjs/manifestSchemas/examples/application_3.manifest.d.ts.map +0 -1
  140. package/lib-commonjs/manifestSchemas/examples/assembly_1.manifest.d.ts.map +0 -1
  141. package/lib-commonjs/manifestSchemas/examples/commandSet_1.manifest.d.ts.map +0 -1
  142. package/lib-commonjs/manifestSchemas/examples/extension_1.manifest.d.ts.map +0 -1
  143. package/lib-commonjs/manifestSchemas/examples/extension_2.manifest.d.ts.map +0 -1
  144. package/lib-commonjs/manifestSchemas/examples/extension_3.manifest.d.ts.map +0 -1
  145. package/lib-commonjs/manifestSchemas/examples/extension_4.manifest.d.ts.map +0 -1
  146. package/lib-commonjs/manifestSchemas/examples/library_1.manifest.d.ts.map +0 -1
  147. package/lib-commonjs/manifestSchemas/examples/multi-version_1.manifest.d.ts.map +0 -1
  148. package/lib-commonjs/manifestSchemas/examples/webpart_1.manifest.d.ts.map +0 -1
  149. package/lib-commonjs/manifestSchemas/examples/webpart_2.manifest.d.ts.map +0 -1
  150. /package/{lib-commonjs → lib-dts}/manifestHelpers.d.ts +0 -0
  151. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideApplicationManifest.d.ts +0 -0
  152. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideAssemblyManifest.d.ts +0 -0
  153. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideComponentLoaderConfiguration.d.ts +0 -0
  154. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideExtensionManifest.d.ts +0 -0
  155. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideLibraryManifest.d.ts +0 -0
  156. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideManifestBase.d.ts +0 -0
  157. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideMultiVersionManifest.d.ts +0 -0
  158. /package/{lib-commonjs → lib-dts}/manifestSchemas/ICommandSetExtensionManifest.d.ts +0 -0
  159. /package/{lib-commonjs → lib-dts}/manifestSchemas/ManifestType.d.ts +0 -0
@@ -0,0 +1,391 @@
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
+ });
11
+ const prefabManifest = {
12
+ manifestVersion: 2,
13
+ componentType: 'Prefab',
14
+ id: '00000000-0000-0000-0000-000000000000',
15
+ alias: 'myPrefabApp',
16
+ version: '0.0.1',
17
+ loaderConfig: {
18
+ internalModuleBaseUrls: [
19
+ 'https://cdn.net/'
20
+ ],
21
+ entryModuleId: 'main.bundle',
22
+ scriptResources: {
23
+ frameworkA: {
24
+ type: 'component',
25
+ version: '1.2.3',
26
+ id: '00000000-0000-0000-0000-000000000000'
27
+ },
28
+ frameworkB: {
29
+ type: 'component',
30
+ version: '1.2.3',
31
+ id: '00000000-0000-0000-0000-000000000000',
32
+ failoverPath: 'script.js'
33
+ },
34
+ frameworkC: {
35
+ type: 'component',
36
+ version: 'latest',
37
+ id: '00000000-0000-0000-0000-000000000000',
38
+ failoverPath: {
39
+ path: 'script.js'
40
+ }
41
+ },
42
+ frameworkD: {
43
+ type: 'component',
44
+ version: 'latest',
45
+ id: '00000000-0000-0000-0000-000000000000',
46
+ failoverPath: {
47
+ path: 'script.js',
48
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
49
+ }
50
+ },
51
+ frameworkE: {
52
+ type: 'component',
53
+ version: '1.2.3',
54
+ id: '00000000-0000-0000-0000-000000000000',
55
+ shouldNotPreload: true
56
+ },
57
+ frameworkF: {
58
+ type: 'component',
59
+ version: '1.2.3',
60
+ id: '00000000-0000-0000-0000-000000000000',
61
+ failoverPath: 'script.js',
62
+ shouldNotPreload: true
63
+ },
64
+ frameworkG: {
65
+ type: 'component',
66
+ version: 'latest',
67
+ id: '00000000-0000-0000-0000-000000000000',
68
+ failoverPath: {
69
+ path: 'script.js'
70
+ },
71
+ shouldNotPreload: true
72
+ },
73
+ frameworkI: {
74
+ type: 'component',
75
+ version: 'latest',
76
+ id: '00000000-0000-0000-0000-000000000000',
77
+ failoverPath: {
78
+ path: 'script.js',
79
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
80
+ },
81
+ shouldNotPreload: true
82
+ },
83
+ frameworkJ: {
84
+ type: 'component',
85
+ version: '1.2.3',
86
+ id: '00000000-0000-0000-0000-000000000000',
87
+ shouldNotPreload: false
88
+ },
89
+ frameworkK: {
90
+ type: 'component',
91
+ version: '1.2.3',
92
+ id: '00000000-0000-0000-0000-000000000000',
93
+ failoverPath: 'script.js',
94
+ shouldNotPreload: false
95
+ },
96
+ frameworkL: {
97
+ type: 'component',
98
+ version: 'latest',
99
+ id: '00000000-0000-0000-0000-000000000000',
100
+ failoverPath: {
101
+ path: 'script.js'
102
+ },
103
+ shouldNotPreload: false
104
+ },
105
+ frameworkM: {
106
+ type: 'component',
107
+ version: 'latest',
108
+ id: '00000000-0000-0000-0000-000000000000',
109
+ failoverPath: {
110
+ path: 'script.js',
111
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
112
+ },
113
+ shouldNotPreload: false
114
+ },
115
+ 'main.bundle': {
116
+ type: 'path',
117
+ path: 'bundle.script.js'
118
+ },
119
+ dependencyA: {
120
+ type: 'path',
121
+ path: {
122
+ path: 'dependencyA.script.js',
123
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
124
+ }
125
+ },
126
+ dependencyB: {
127
+ type: 'path',
128
+ path: {
129
+ path: 'dependencyB.script.js'
130
+ }
131
+ },
132
+ dependencyC: {
133
+ type: 'path',
134
+ path: 'dependencyC.script.js'
135
+ },
136
+ dependencyD: {
137
+ type: 'path',
138
+ path: {
139
+ path: 'dependencyD.script.js',
140
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
141
+ },
142
+ shouldNotPreload: true
143
+ },
144
+ dependencyE: {
145
+ type: 'path',
146
+ path: {
147
+ path: 'dependencyE.script.js'
148
+ },
149
+ shouldNotPreload: true
150
+ },
151
+ dependencyF: {
152
+ type: 'path',
153
+ path: 'dependencyF.script.js',
154
+ shouldNotPreload: true
155
+ },
156
+ dependencyG: {
157
+ type: 'path',
158
+ path: {
159
+ path: 'dependencyG.script.js',
160
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
161
+ },
162
+ shouldNotPreload: false
163
+ },
164
+ dependencyH: {
165
+ type: 'path',
166
+ path: {
167
+ path: 'dependencyH.script.js'
168
+ },
169
+ shouldNotPreload: false
170
+ },
171
+ dependencyI: {
172
+ type: 'path',
173
+ path: 'dependencyI.script.js',
174
+ shouldNotPreload: false
175
+ },
176
+ stringsA: {
177
+ type: 'localizedPath',
178
+ defaultPath: 'stringsA_default.js'
179
+ },
180
+ stringsB: {
181
+ type: 'localizedPath',
182
+ defaultPath: {
183
+ path: 'stringsB_default.js',
184
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
185
+ }
186
+ },
187
+ stringsC: {
188
+ type: 'localizedPath',
189
+ defaultPath: {
190
+ path: 'stringsC_default.js'
191
+ }
192
+ },
193
+ stringsD: {
194
+ type: 'localizedPath',
195
+ defaultPath: 'stringsD_default.js',
196
+ paths: {
197
+ 'en-us': 'stringsD_en-us.js',
198
+ 'fr-fr': 'stringsD_fr-fr.js'
199
+ }
200
+ },
201
+ stringsE: {
202
+ type: 'localizedPath',
203
+ defaultPath: 'stringsE_default.js',
204
+ paths: {
205
+ 'en-us': {
206
+ path: 'stringsE_en-us.js'
207
+ },
208
+ 'fr-fr': 'stringsE_fr-fr.js'
209
+ }
210
+ },
211
+ stringsF: {
212
+ type: 'localizedPath',
213
+ defaultPath: 'stringsF_default.js',
214
+ paths: {
215
+ 'en-us': {
216
+ path: 'stringsF_en-us.js',
217
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
218
+ },
219
+ 'fr-fr': 'stringsF_fr-fr.js'
220
+ }
221
+ },
222
+ stringsG: {
223
+ type: 'localizedPath',
224
+ defaultPath: 'stringsG_default.js',
225
+ shouldNotPreload: true
226
+ },
227
+ stringsH: {
228
+ type: 'localizedPath',
229
+ defaultPath: {
230
+ path: 'stringsH_default.js',
231
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
232
+ },
233
+ shouldNotPreload: true
234
+ },
235
+ stringsI: {
236
+ type: 'localizedPath',
237
+ defaultPath: {
238
+ path: 'stringsI_default.js'
239
+ },
240
+ shouldNotPreload: true
241
+ },
242
+ stringsJ: {
243
+ type: 'localizedPath',
244
+ defaultPath: 'stringsJ_default.js',
245
+ paths: {
246
+ 'en-us': 'stringsJ_en-us.js',
247
+ 'fr-fr': 'stringsJ_fr-fr.js'
248
+ },
249
+ shouldNotPreload: true
250
+ },
251
+ stringsK: {
252
+ type: 'localizedPath',
253
+ defaultPath: 'stringsK_default.js',
254
+ paths: {
255
+ 'en-us': {
256
+ path: 'stringsK_en-us.js'
257
+ },
258
+ 'fr-fr': 'stringsK_fr-fr.js'
259
+ },
260
+ shouldNotPreload: true
261
+ },
262
+ stringsL: {
263
+ type: 'localizedPath',
264
+ defaultPath: 'stringsL_default.js',
265
+ paths: {
266
+ 'en-us': {
267
+ path: 'stringsL_en-us.js',
268
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
269
+ },
270
+ 'fr-fr': 'stringsL_fr-fr.js'
271
+ },
272
+ shouldNotPreload: true
273
+ },
274
+ stringsM: {
275
+ type: 'localizedPath',
276
+ defaultPath: 'stringsM_default.js',
277
+ shouldNotPreload: false
278
+ },
279
+ stringsN: {
280
+ type: 'localizedPath',
281
+ defaultPath: {
282
+ path: 'stringsN_default.js',
283
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
284
+ },
285
+ shouldNotPreload: false
286
+ },
287
+ stringsO: {
288
+ type: 'localizedPath',
289
+ defaultPath: {
290
+ path: 'stringsO_default.js'
291
+ },
292
+ shouldNotPreload: false
293
+ },
294
+ stringsP: {
295
+ type: 'localizedPath',
296
+ defaultPath: 'stringsP_default.js',
297
+ paths: {
298
+ 'en-us': 'stringsP_en-us.js',
299
+ 'fr-fr': 'stringsP_fr-fr.js'
300
+ },
301
+ shouldNotPreload: false
302
+ },
303
+ stringsQ: {
304
+ type: 'localizedPath',
305
+ defaultPath: 'stringsQ_default.js',
306
+ paths: {
307
+ 'en-us': {
308
+ path: 'stringsQ_en-us.js'
309
+ },
310
+ 'fr-fr': 'stringsQ_fr-fr.js'
311
+ },
312
+ shouldNotPreload: false
313
+ },
314
+ stringsR: {
315
+ type: 'localizedPath',
316
+ defaultPath: 'stringsR_default.js',
317
+ paths: {
318
+ 'en-us': {
319
+ path: 'stringsR_en-us.js',
320
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
321
+ },
322
+ 'fr-fr': 'stringsR_fr-fr.js'
323
+ },
324
+ shouldNotPreload: false
325
+ },
326
+ nonAmdA: {
327
+ type: 'path',
328
+ path: 'nonAmdA.js',
329
+ globalName: 'nonAmdA'
330
+ },
331
+ nonAmdB: {
332
+ type: 'path',
333
+ path: 'nonAmdB.js',
334
+ globalName: 'nonAmdB',
335
+ globalDependencies: [
336
+ 'nonAmdB'
337
+ ]
338
+ }
339
+ }
340
+ },
341
+ title: {
342
+ default: 'foobar'
343
+ },
344
+ description: {
345
+ default: 'foobar baz'
346
+ },
347
+ isConfigured: true,
348
+ actions: {
349
+ key1: {
350
+ type: 'onInstall',
351
+ actions: [
352
+ {
353
+ verb: 'applyTheme',
354
+ themeName: 'themeName'
355
+ }
356
+ ]
357
+ },
358
+ key2: {
359
+ type: 'onDemand',
360
+ actions: [
361
+ {
362
+ verb: 'applyTheme',
363
+ themeName: 'themeName'
364
+ }
365
+ ]
366
+ }
367
+ },
368
+ siteSettingsLinks: [
369
+ {
370
+ viewId: 'routeId',
371
+ text: {
372
+ default: 'text'
373
+ }
374
+ }
375
+ ],
376
+ toolboxEntries: [
377
+ {
378
+ viewId: 'routeId1',
379
+ title: {
380
+ default: 'title1'
381
+ },
382
+ description: {
383
+ default: 'description1'
384
+ },
385
+ officeFabricIconFontName: 'icon1'
386
+ }
387
+ ]
388
+ };
389
+ const _default = prefabManifest;
390
+
391
+ //#sourceMappingUrl=./prefab_2.manifest.js.map