@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
@@ -0,0 +1,350 @@
1
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
2
+ const webpartManifest = {
3
+ manifestVersion: 2,
4
+ componentType: 'WebPart',
5
+ id: '00000000-0000-0000-0000-000000000000',
6
+ alias: 'myWebPart',
7
+ version: '0.0.1',
8
+ safeWithCustomScriptDisabled: true,
9
+ disabledOnClassicSharepoint: true,
10
+ loaderConfig: {
11
+ internalModuleBaseUrls: [
12
+ 'https://cdn.net/'
13
+ ],
14
+ entryModuleId: 'main.bundle',
15
+ scriptResources: {
16
+ frameworkA: {
17
+ type: 'component',
18
+ version: '1.2.3',
19
+ id: '00000000-0000-0000-0000-000000000000'
20
+ },
21
+ frameworkB: {
22
+ type: 'component',
23
+ version: '1.2.3',
24
+ id: '00000000-0000-0000-0000-000000000000',
25
+ failoverPath: 'script.js'
26
+ },
27
+ frameworkC: {
28
+ type: 'component',
29
+ version: 'latest',
30
+ id: '00000000-0000-0000-0000-000000000000',
31
+ failoverPath: {
32
+ path: 'script.js'
33
+ }
34
+ },
35
+ frameworkD: {
36
+ type: 'component',
37
+ version: 'latest',
38
+ id: '00000000-0000-0000-0000-000000000000',
39
+ failoverPath: {
40
+ path: 'script.js',
41
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
42
+ }
43
+ },
44
+ frameworkE: {
45
+ type: 'component',
46
+ version: '1.2.3',
47
+ id: '00000000-0000-0000-0000-000000000000',
48
+ shouldNotPreload: true
49
+ },
50
+ frameworkF: {
51
+ type: 'component',
52
+ version: '1.2.3',
53
+ id: '00000000-0000-0000-0000-000000000000',
54
+ failoverPath: 'script.js',
55
+ shouldNotPreload: true
56
+ },
57
+ frameworkG: {
58
+ type: 'component',
59
+ version: 'latest',
60
+ id: '00000000-0000-0000-0000-000000000000',
61
+ failoverPath: {
62
+ path: 'script.js'
63
+ },
64
+ shouldNotPreload: true
65
+ },
66
+ frameworkI: {
67
+ type: 'component',
68
+ version: 'latest',
69
+ id: '00000000-0000-0000-0000-000000000000',
70
+ failoverPath: {
71
+ path: 'script.js',
72
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
73
+ },
74
+ shouldNotPreload: true
75
+ },
76
+ frameworkJ: {
77
+ type: 'component',
78
+ version: '1.2.3',
79
+ id: '00000000-0000-0000-0000-000000000000',
80
+ shouldNotPreload: false
81
+ },
82
+ frameworkK: {
83
+ type: 'component',
84
+ version: '1.2.3',
85
+ id: '00000000-0000-0000-0000-000000000000',
86
+ failoverPath: 'script.js',
87
+ shouldNotPreload: false
88
+ },
89
+ frameworkL: {
90
+ type: 'component',
91
+ version: 'latest',
92
+ id: '00000000-0000-0000-0000-000000000000',
93
+ failoverPath: {
94
+ path: 'script.js'
95
+ },
96
+ shouldNotPreload: false
97
+ },
98
+ frameworkM: {
99
+ type: 'component',
100
+ version: 'latest',
101
+ id: '00000000-0000-0000-0000-000000000000',
102
+ failoverPath: {
103
+ path: 'script.js',
104
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
105
+ },
106
+ shouldNotPreload: false
107
+ },
108
+ 'main.bundle': {
109
+ type: 'path',
110
+ path: 'bundle.script.js'
111
+ },
112
+ dependencyA: {
113
+ type: 'path',
114
+ path: {
115
+ path: 'dependencyA.script.js',
116
+ integrity: 'dependencyA.sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
117
+ }
118
+ },
119
+ dependencyB: {
120
+ type: 'path',
121
+ path: {
122
+ path: 'dependencyB.script.js'
123
+ }
124
+ },
125
+ dependencyC: {
126
+ type: 'path',
127
+ path: 'dependencyC.script.js'
128
+ },
129
+ dependencyD: {
130
+ type: 'path',
131
+ path: {
132
+ path: 'dependencyD.script.js',
133
+ integrity: 'dependencyD.sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
134
+ },
135
+ shouldNotPreload: true
136
+ },
137
+ dependencyE: {
138
+ type: 'path',
139
+ path: {
140
+ path: 'dependencyE.script.js'
141
+ },
142
+ shouldNotPreload: true
143
+ },
144
+ dependencyF: {
145
+ type: 'path',
146
+ path: 'dependencyF.script.js',
147
+ shouldNotPreload: true
148
+ },
149
+ dependencyG: {
150
+ type: 'path',
151
+ path: {
152
+ path: 'dependencyG.script.js',
153
+ integrity: 'dependencyG.sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
154
+ },
155
+ shouldNotPreload: false
156
+ },
157
+ dependencyH: {
158
+ type: 'path',
159
+ path: {
160
+ path: 'dependencyH.script.js'
161
+ },
162
+ shouldNotPreload: false
163
+ },
164
+ dependencyI: {
165
+ type: 'path',
166
+ path: 'dependencyI.script.js',
167
+ shouldNotPreload: false
168
+ },
169
+ stringsA: {
170
+ type: 'localizedPath',
171
+ defaultPath: 'stringsA_default.js'
172
+ },
173
+ stringsB: {
174
+ type: 'localizedPath',
175
+ defaultPath: {
176
+ path: 'stringsB_default.js',
177
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
178
+ }
179
+ },
180
+ stringsC: {
181
+ type: 'localizedPath',
182
+ defaultPath: {
183
+ path: 'stringsC_default.js'
184
+ }
185
+ },
186
+ stringsD: {
187
+ type: 'localizedPath',
188
+ defaultPath: 'stringsD_default.js',
189
+ paths: {
190
+ 'en-us': 'stringsD_en-us.js',
191
+ 'fr-fr': 'stringsD_fr-fr.js'
192
+ }
193
+ },
194
+ stringsE: {
195
+ type: 'localizedPath',
196
+ defaultPath: 'stringsE_default.js',
197
+ paths: {
198
+ 'en-us': {
199
+ path: 'stringsE_en-us.js'
200
+ },
201
+ 'fr-fr': 'stringsE_fr-fr.js'
202
+ }
203
+ },
204
+ stringsF: {
205
+ type: 'localizedPath',
206
+ defaultPath: 'stringsF_default.js',
207
+ paths: {
208
+ 'en-us': {
209
+ path: 'stringsF_en-us.js',
210
+ integrity: 'stringsF_en-sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
211
+ },
212
+ 'fr-fr': 'stringsF_fr-fr.js'
213
+ }
214
+ },
215
+ stringsG: {
216
+ type: 'localizedPath',
217
+ defaultPath: 'stringsG_default.js',
218
+ shouldNotPreload: true
219
+ },
220
+ stringsH: {
221
+ type: 'localizedPath',
222
+ defaultPath: {
223
+ path: 'stringsH_default.js',
224
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
225
+ },
226
+ shouldNotPreload: true
227
+ },
228
+ stringsI: {
229
+ type: 'localizedPath',
230
+ defaultPath: {
231
+ path: 'stringsI_default.js'
232
+ },
233
+ shouldNotPreload: true
234
+ },
235
+ stringsJ: {
236
+ type: 'localizedPath',
237
+ defaultPath: 'stringsJ_default.js',
238
+ paths: {
239
+ 'en-us': 'stringsJ_en-us.js',
240
+ 'fr-fr': 'stringsJ_fr-fr.js'
241
+ },
242
+ shouldNotPreload: true
243
+ },
244
+ stringsK: {
245
+ type: 'localizedPath',
246
+ defaultPath: 'stringsK_default.js',
247
+ paths: {
248
+ 'en-us': {
249
+ path: 'stringsK_en-us.js'
250
+ },
251
+ 'fr-fr': 'stringsK_fr-fr.js'
252
+ },
253
+ shouldNotPreload: true
254
+ },
255
+ stringsL: {
256
+ type: 'localizedPath',
257
+ defaultPath: 'stringsL_default.js',
258
+ paths: {
259
+ 'en-us': {
260
+ path: 'stringsL_en-us.js',
261
+ integrity: 'stringsL_en-sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
262
+ },
263
+ 'fr-fr': 'stringsL_fr-fr.js'
264
+ },
265
+ shouldNotPreload: true
266
+ },
267
+ stringsM: {
268
+ type: 'localizedPath',
269
+ defaultPath: 'stringsM_default.js',
270
+ shouldNotPreload: false
271
+ },
272
+ stringsN: {
273
+ type: 'localizedPath',
274
+ defaultPath: {
275
+ path: 'stringsN_default.js',
276
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
277
+ },
278
+ shouldNotPreload: false
279
+ },
280
+ stringsO: {
281
+ type: 'localizedPath',
282
+ defaultPath: {
283
+ path: 'stringsO_default.js'
284
+ },
285
+ shouldNotPreload: false
286
+ },
287
+ stringsP: {
288
+ type: 'localizedPath',
289
+ defaultPath: 'stringsP_default.js',
290
+ paths: {
291
+ 'en-us': 'stringsP_en-us.js',
292
+ 'fr-fr': 'stringsP_fr-fr.js'
293
+ },
294
+ shouldNotPreload: false
295
+ },
296
+ stringsQ: {
297
+ type: 'localizedPath',
298
+ defaultPath: 'stringsQ_default.js',
299
+ paths: {
300
+ 'en-us': {
301
+ path: 'stringsQ_en-us.js'
302
+ },
303
+ 'fr-fr': 'stringsQ_fr-fr.js'
304
+ },
305
+ shouldNotPreload: false
306
+ },
307
+ stringsR: {
308
+ type: 'localizedPath',
309
+ defaultPath: 'stringsR_default.js',
310
+ paths: {
311
+ 'en-us': {
312
+ path: 'stringsR_en-us.js',
313
+ integrity: 'stringsR_en-sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
314
+ },
315
+ 'fr-fr': 'stringsR_fr-fr.js'
316
+ },
317
+ shouldNotPreload: false
318
+ },
319
+ nonAmdA: {
320
+ type: 'path',
321
+ path: 'nonAmdA.js',
322
+ globalName: 'nonAmdA'
323
+ },
324
+ nonAmdB: {
325
+ type: 'path',
326
+ path: 'nonAmdB.js',
327
+ globalName: 'nonAmdB',
328
+ globalDependencies: [
329
+ 'nonAmdB'
330
+ ]
331
+ }
332
+ }
333
+ },
334
+ preconfiguredEntries: [
335
+ {
336
+ title: {
337
+ default: 'asdf'
338
+ },
339
+ description: {
340
+ default: 'asdf jkl'
341
+ },
342
+ officeFabricIconFontName: 'chart',
343
+ properties: {},
344
+ groupId: '75e22ed5-fa14-4829-850a-c890608aca2d' // Communication and Collaboration
345
+ }
346
+ ]
347
+ };
348
+ export default webpartManifest;
349
+
350
+ //#sourceMappingUrl=./webpart_1.manifest.js.map