@microsoft/sp-module-interfaces 1.20.2 → 1.21.0-beta.0
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 +47 -1
- package/dist/index-internal-public.d.ts +8 -1
- package/dist/index-internal.d.ts +748 -15
- package/dist/tsdoc-metadata.json +1 -1
- package/lib-commonjs/index.d.ts +1 -0
- package/lib-commonjs/index.d.ts.map +1 -1
- package/lib-commonjs/index.js +1 -0
- package/lib-commonjs/manifestSchemaValidator.d.ts +3 -0
- package/lib-commonjs/manifestSchemaValidator.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemaValidator.js +52 -1
- package/lib-commonjs/manifestSchemas/IAdaptiveCardExtensionManifest.d.ts +6 -0
- package/lib-commonjs/manifestSchemas/IAdaptiveCardExtensionManifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideComponentManifest.d.ts +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideComponentManifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.d.ts +35 -0
- package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/IPrefabAppManifest.d.ts +76 -0
- package/lib-commonjs/manifestSchemas/IPrefabAppManifest.d.ts.map +1 -0
- package/lib-commonjs/manifestSchemas/IPrefabAppManifest.js +3 -0
- package/lib-commonjs/manifestSchemas/examples/prefab_1.manifest.d.ts +4 -0
- package/lib-commonjs/manifestSchemas/examples/prefab_1.manifest.d.ts.map +1 -0
- package/lib-commonjs/manifestSchemas/examples/prefab_1.manifest.js +334 -0
- package/lib-commonjs/manifestSchemas/examples/prefab_2.manifest.d.ts +4 -0
- package/lib-commonjs/manifestSchemas/examples/prefab_2.manifest.d.ts.map +1 -0
- package/lib-commonjs/manifestSchemas/examples/prefab_2.manifest.js +339 -0
- package/lib-commonjs/manifestSchemas/examples/prefabapp.manifest.json +345 -0
- package/lib-commonjs/manifestSchemas/jsonSchemas/adaptive-card-extension-manifest.schema.json +8 -0
- package/lib-commonjs/manifestSchemas/jsonSchemas/client-side-component-manifest.schema.json +5 -2
- package/lib-commonjs/manifestSchemas/jsonSchemas/client-side-web-part-manifest.schema.json +23 -0
- package/lib-commonjs/manifestSchemas/jsonSchemas/prefab-app-manifest.schema.json +72 -0
- package/lib-commonjs/manifestSchemas/remote/draft-04.schema.json +137 -0
- package/lib-commonjs/manifestSchemas/remote/site-design-script-actions.schema.json +1158 -0
- package/package.json +8 -7
|
@@ -0,0 +1,334 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const prefabManifest = {
|
|
3
|
+
manifestVersion: 2,
|
|
4
|
+
componentType: 'Prefab',
|
|
5
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
6
|
+
alias: 'myPrefabApp',
|
|
7
|
+
version: '0.0.1',
|
|
8
|
+
loaderConfig: {
|
|
9
|
+
internalModuleBaseUrls: ['https://cdn.net/'],
|
|
10
|
+
entryModuleId: 'main.bundle',
|
|
11
|
+
scriptResources: {
|
|
12
|
+
frameworkA: {
|
|
13
|
+
type: 'component',
|
|
14
|
+
version: '1.2.3',
|
|
15
|
+
id: '00000000-0000-0000-0000-000000000000'
|
|
16
|
+
},
|
|
17
|
+
frameworkB: {
|
|
18
|
+
type: 'component',
|
|
19
|
+
version: '1.2.3',
|
|
20
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
21
|
+
failoverPath: 'script.js'
|
|
22
|
+
},
|
|
23
|
+
frameworkC: {
|
|
24
|
+
type: 'component',
|
|
25
|
+
version: 'latest',
|
|
26
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
27
|
+
failoverPath: {
|
|
28
|
+
path: 'script.js'
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
frameworkD: {
|
|
32
|
+
type: 'component',
|
|
33
|
+
version: 'latest',
|
|
34
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
35
|
+
failoverPath: {
|
|
36
|
+
path: 'script.js',
|
|
37
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
frameworkE: {
|
|
41
|
+
type: 'component',
|
|
42
|
+
version: '1.2.3',
|
|
43
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
44
|
+
shouldNotPreload: true
|
|
45
|
+
},
|
|
46
|
+
frameworkF: {
|
|
47
|
+
type: 'component',
|
|
48
|
+
version: '1.2.3',
|
|
49
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
50
|
+
failoverPath: 'script.js',
|
|
51
|
+
shouldNotPreload: true
|
|
52
|
+
},
|
|
53
|
+
frameworkG: {
|
|
54
|
+
type: 'component',
|
|
55
|
+
version: 'latest',
|
|
56
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
57
|
+
failoverPath: {
|
|
58
|
+
path: 'script.js'
|
|
59
|
+
},
|
|
60
|
+
shouldNotPreload: true
|
|
61
|
+
},
|
|
62
|
+
frameworkI: {
|
|
63
|
+
type: 'component',
|
|
64
|
+
version: 'latest',
|
|
65
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
66
|
+
failoverPath: {
|
|
67
|
+
path: 'script.js',
|
|
68
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
69
|
+
},
|
|
70
|
+
shouldNotPreload: true
|
|
71
|
+
},
|
|
72
|
+
frameworkJ: {
|
|
73
|
+
type: 'component',
|
|
74
|
+
version: '1.2.3',
|
|
75
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
76
|
+
shouldNotPreload: false
|
|
77
|
+
},
|
|
78
|
+
frameworkK: {
|
|
79
|
+
type: 'component',
|
|
80
|
+
version: '1.2.3',
|
|
81
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
82
|
+
failoverPath: 'script.js',
|
|
83
|
+
shouldNotPreload: false
|
|
84
|
+
},
|
|
85
|
+
frameworkL: {
|
|
86
|
+
type: 'component',
|
|
87
|
+
version: 'latest',
|
|
88
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
89
|
+
failoverPath: {
|
|
90
|
+
path: 'script.js'
|
|
91
|
+
},
|
|
92
|
+
shouldNotPreload: false
|
|
93
|
+
},
|
|
94
|
+
frameworkM: {
|
|
95
|
+
type: 'component',
|
|
96
|
+
version: 'latest',
|
|
97
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
98
|
+
failoverPath: {
|
|
99
|
+
path: 'script.js',
|
|
100
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
101
|
+
},
|
|
102
|
+
shouldNotPreload: false
|
|
103
|
+
},
|
|
104
|
+
'main.bundle': {
|
|
105
|
+
type: 'path',
|
|
106
|
+
path: 'bundle.script.js'
|
|
107
|
+
},
|
|
108
|
+
dependencyA: {
|
|
109
|
+
type: 'path',
|
|
110
|
+
path: {
|
|
111
|
+
path: 'dependencyA.script.js',
|
|
112
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
dependencyB: {
|
|
116
|
+
type: 'path',
|
|
117
|
+
path: {
|
|
118
|
+
path: 'dependencyB.script.js'
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
dependencyC: {
|
|
122
|
+
type: 'path',
|
|
123
|
+
path: 'dependencyC.script.js'
|
|
124
|
+
},
|
|
125
|
+
dependencyD: {
|
|
126
|
+
type: 'path',
|
|
127
|
+
path: {
|
|
128
|
+
path: 'dependencyD.script.js',
|
|
129
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
130
|
+
},
|
|
131
|
+
shouldNotPreload: true
|
|
132
|
+
},
|
|
133
|
+
dependencyE: {
|
|
134
|
+
type: 'path',
|
|
135
|
+
path: {
|
|
136
|
+
path: 'dependencyE.script.js'
|
|
137
|
+
},
|
|
138
|
+
shouldNotPreload: true
|
|
139
|
+
},
|
|
140
|
+
dependencyF: {
|
|
141
|
+
type: 'path',
|
|
142
|
+
path: 'dependencyF.script.js',
|
|
143
|
+
shouldNotPreload: true
|
|
144
|
+
},
|
|
145
|
+
dependencyG: {
|
|
146
|
+
type: 'path',
|
|
147
|
+
path: {
|
|
148
|
+
path: 'dependencyG.script.js',
|
|
149
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
150
|
+
},
|
|
151
|
+
shouldNotPreload: false
|
|
152
|
+
},
|
|
153
|
+
dependencyH: {
|
|
154
|
+
type: 'path',
|
|
155
|
+
path: {
|
|
156
|
+
path: 'dependencyH.script.js'
|
|
157
|
+
},
|
|
158
|
+
shouldNotPreload: false
|
|
159
|
+
},
|
|
160
|
+
dependencyI: {
|
|
161
|
+
type: 'path',
|
|
162
|
+
path: 'dependencyI.script.js',
|
|
163
|
+
shouldNotPreload: false
|
|
164
|
+
},
|
|
165
|
+
stringsA: {
|
|
166
|
+
type: 'localizedPath',
|
|
167
|
+
defaultPath: 'stringsA_default.js'
|
|
168
|
+
},
|
|
169
|
+
stringsB: {
|
|
170
|
+
type: 'localizedPath',
|
|
171
|
+
defaultPath: {
|
|
172
|
+
path: 'stringsB_default.js',
|
|
173
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
stringsC: {
|
|
177
|
+
type: 'localizedPath',
|
|
178
|
+
defaultPath: {
|
|
179
|
+
path: 'stringsC_default.js'
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
stringsD: {
|
|
183
|
+
type: 'localizedPath',
|
|
184
|
+
defaultPath: 'stringsD_default.js',
|
|
185
|
+
paths: {
|
|
186
|
+
'en-us': 'stringsD_en-us.js',
|
|
187
|
+
'fr-fr': 'stringsD_fr-fr.js'
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
stringsE: {
|
|
191
|
+
type: 'localizedPath',
|
|
192
|
+
defaultPath: 'stringsE_default.js',
|
|
193
|
+
paths: {
|
|
194
|
+
'en-us': {
|
|
195
|
+
path: 'stringsE_en-us.js'
|
|
196
|
+
},
|
|
197
|
+
'fr-fr': 'stringsE_fr-fr.js'
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
stringsF: {
|
|
201
|
+
type: 'localizedPath',
|
|
202
|
+
defaultPath: 'stringsF_default.js',
|
|
203
|
+
paths: {
|
|
204
|
+
'en-us': {
|
|
205
|
+
path: 'stringsF_en-us.js',
|
|
206
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
207
|
+
},
|
|
208
|
+
'fr-fr': 'stringsF_fr-fr.js'
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
stringsG: {
|
|
212
|
+
type: 'localizedPath',
|
|
213
|
+
defaultPath: 'stringsG_default.js',
|
|
214
|
+
shouldNotPreload: true
|
|
215
|
+
},
|
|
216
|
+
stringsH: {
|
|
217
|
+
type: 'localizedPath',
|
|
218
|
+
defaultPath: {
|
|
219
|
+
path: 'stringsH_default.js',
|
|
220
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
221
|
+
},
|
|
222
|
+
shouldNotPreload: true
|
|
223
|
+
},
|
|
224
|
+
stringsI: {
|
|
225
|
+
type: 'localizedPath',
|
|
226
|
+
defaultPath: {
|
|
227
|
+
path: 'stringsI_default.js'
|
|
228
|
+
},
|
|
229
|
+
shouldNotPreload: true
|
|
230
|
+
},
|
|
231
|
+
stringsJ: {
|
|
232
|
+
type: 'localizedPath',
|
|
233
|
+
defaultPath: 'stringsJ_default.js',
|
|
234
|
+
paths: {
|
|
235
|
+
'en-us': 'stringsJ_en-us.js',
|
|
236
|
+
'fr-fr': 'stringsJ_fr-fr.js'
|
|
237
|
+
},
|
|
238
|
+
shouldNotPreload: true
|
|
239
|
+
},
|
|
240
|
+
stringsK: {
|
|
241
|
+
type: 'localizedPath',
|
|
242
|
+
defaultPath: 'stringsK_default.js',
|
|
243
|
+
paths: {
|
|
244
|
+
'en-us': {
|
|
245
|
+
path: 'stringsK_en-us.js'
|
|
246
|
+
},
|
|
247
|
+
'fr-fr': 'stringsK_fr-fr.js'
|
|
248
|
+
},
|
|
249
|
+
shouldNotPreload: true
|
|
250
|
+
},
|
|
251
|
+
stringsL: {
|
|
252
|
+
type: 'localizedPath',
|
|
253
|
+
defaultPath: 'stringsL_default.js',
|
|
254
|
+
paths: {
|
|
255
|
+
'en-us': {
|
|
256
|
+
path: 'stringsL_en-us.js',
|
|
257
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
258
|
+
},
|
|
259
|
+
'fr-fr': 'stringsL_fr-fr.js'
|
|
260
|
+
},
|
|
261
|
+
shouldNotPreload: true
|
|
262
|
+
},
|
|
263
|
+
stringsM: {
|
|
264
|
+
type: 'localizedPath',
|
|
265
|
+
defaultPath: 'stringsM_default.js',
|
|
266
|
+
shouldNotPreload: false
|
|
267
|
+
},
|
|
268
|
+
stringsN: {
|
|
269
|
+
type: 'localizedPath',
|
|
270
|
+
defaultPath: {
|
|
271
|
+
path: 'stringsN_default.js',
|
|
272
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
273
|
+
},
|
|
274
|
+
shouldNotPreload: false
|
|
275
|
+
},
|
|
276
|
+
stringsO: {
|
|
277
|
+
type: 'localizedPath',
|
|
278
|
+
defaultPath: {
|
|
279
|
+
path: 'stringsO_default.js'
|
|
280
|
+
},
|
|
281
|
+
shouldNotPreload: false
|
|
282
|
+
},
|
|
283
|
+
stringsP: {
|
|
284
|
+
type: 'localizedPath',
|
|
285
|
+
defaultPath: 'stringsP_default.js',
|
|
286
|
+
paths: {
|
|
287
|
+
'en-us': 'stringsP_en-us.js',
|
|
288
|
+
'fr-fr': 'stringsP_fr-fr.js'
|
|
289
|
+
},
|
|
290
|
+
shouldNotPreload: false
|
|
291
|
+
},
|
|
292
|
+
stringsQ: {
|
|
293
|
+
type: 'localizedPath',
|
|
294
|
+
defaultPath: 'stringsQ_default.js',
|
|
295
|
+
paths: {
|
|
296
|
+
'en-us': {
|
|
297
|
+
path: 'stringsQ_en-us.js'
|
|
298
|
+
},
|
|
299
|
+
'fr-fr': 'stringsQ_fr-fr.js'
|
|
300
|
+
},
|
|
301
|
+
shouldNotPreload: false
|
|
302
|
+
},
|
|
303
|
+
stringsR: {
|
|
304
|
+
type: 'localizedPath',
|
|
305
|
+
defaultPath: 'stringsR_default.js',
|
|
306
|
+
paths: {
|
|
307
|
+
'en-us': {
|
|
308
|
+
path: 'stringsR_en-us.js',
|
|
309
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
310
|
+
},
|
|
311
|
+
'fr-fr': 'stringsR_fr-fr.js'
|
|
312
|
+
},
|
|
313
|
+
shouldNotPreload: false
|
|
314
|
+
},
|
|
315
|
+
nonAmdA: {
|
|
316
|
+
type: 'path',
|
|
317
|
+
path: 'nonAmdA.js',
|
|
318
|
+
globalName: 'nonAmdA'
|
|
319
|
+
},
|
|
320
|
+
nonAmdB: {
|
|
321
|
+
type: 'path',
|
|
322
|
+
path: 'nonAmdB.js',
|
|
323
|
+
globalName: 'nonAmdB',
|
|
324
|
+
globalDependencies: ['nonAmdB']
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
title: { default: 'foobar' },
|
|
329
|
+
description: { default: 'foobar baz' },
|
|
330
|
+
isConfigured: true,
|
|
331
|
+
appInstallationTypes: ['NewSite']
|
|
332
|
+
};
|
|
333
|
+
module.exports = prefabManifest;
|
|
334
|
+
//# sourceMappingURL=prefab_1.manifest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"prefab_2.manifest.d.ts","sourceRoot":"","sources":["../../../src/manifestSchemas/examples/prefab_2.manifest.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAQhE,QAAA,MAAM,cAAc,EAAE,kBAyXrB,CAAC;AAEF,SAAS,cAAc,CAAC"}
|
|
@@ -0,0 +1,339 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const prefabManifest = {
|
|
3
|
+
manifestVersion: 2,
|
|
4
|
+
componentType: 'Prefab',
|
|
5
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
6
|
+
alias: 'myPrefabApp',
|
|
7
|
+
version: '0.0.1',
|
|
8
|
+
loaderConfig: {
|
|
9
|
+
internalModuleBaseUrls: ['https://cdn.net/'],
|
|
10
|
+
entryModuleId: 'main.bundle',
|
|
11
|
+
scriptResources: {
|
|
12
|
+
frameworkA: {
|
|
13
|
+
type: 'component',
|
|
14
|
+
version: '1.2.3',
|
|
15
|
+
id: '00000000-0000-0000-0000-000000000000'
|
|
16
|
+
},
|
|
17
|
+
frameworkB: {
|
|
18
|
+
type: 'component',
|
|
19
|
+
version: '1.2.3',
|
|
20
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
21
|
+
failoverPath: 'script.js'
|
|
22
|
+
},
|
|
23
|
+
frameworkC: {
|
|
24
|
+
type: 'component',
|
|
25
|
+
version: 'latest',
|
|
26
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
27
|
+
failoverPath: {
|
|
28
|
+
path: 'script.js'
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
frameworkD: {
|
|
32
|
+
type: 'component',
|
|
33
|
+
version: 'latest',
|
|
34
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
35
|
+
failoverPath: {
|
|
36
|
+
path: 'script.js',
|
|
37
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
frameworkE: {
|
|
41
|
+
type: 'component',
|
|
42
|
+
version: '1.2.3',
|
|
43
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
44
|
+
shouldNotPreload: true
|
|
45
|
+
},
|
|
46
|
+
frameworkF: {
|
|
47
|
+
type: 'component',
|
|
48
|
+
version: '1.2.3',
|
|
49
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
50
|
+
failoverPath: 'script.js',
|
|
51
|
+
shouldNotPreload: true
|
|
52
|
+
},
|
|
53
|
+
frameworkG: {
|
|
54
|
+
type: 'component',
|
|
55
|
+
version: 'latest',
|
|
56
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
57
|
+
failoverPath: {
|
|
58
|
+
path: 'script.js'
|
|
59
|
+
},
|
|
60
|
+
shouldNotPreload: true
|
|
61
|
+
},
|
|
62
|
+
frameworkI: {
|
|
63
|
+
type: 'component',
|
|
64
|
+
version: 'latest',
|
|
65
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
66
|
+
failoverPath: {
|
|
67
|
+
path: 'script.js',
|
|
68
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
69
|
+
},
|
|
70
|
+
shouldNotPreload: true
|
|
71
|
+
},
|
|
72
|
+
frameworkJ: {
|
|
73
|
+
type: 'component',
|
|
74
|
+
version: '1.2.3',
|
|
75
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
76
|
+
shouldNotPreload: false
|
|
77
|
+
},
|
|
78
|
+
frameworkK: {
|
|
79
|
+
type: 'component',
|
|
80
|
+
version: '1.2.3',
|
|
81
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
82
|
+
failoverPath: 'script.js',
|
|
83
|
+
shouldNotPreload: false
|
|
84
|
+
},
|
|
85
|
+
frameworkL: {
|
|
86
|
+
type: 'component',
|
|
87
|
+
version: 'latest',
|
|
88
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
89
|
+
failoverPath: {
|
|
90
|
+
path: 'script.js'
|
|
91
|
+
},
|
|
92
|
+
shouldNotPreload: false
|
|
93
|
+
},
|
|
94
|
+
frameworkM: {
|
|
95
|
+
type: 'component',
|
|
96
|
+
version: 'latest',
|
|
97
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
98
|
+
failoverPath: {
|
|
99
|
+
path: 'script.js',
|
|
100
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
101
|
+
},
|
|
102
|
+
shouldNotPreload: false
|
|
103
|
+
},
|
|
104
|
+
'main.bundle': {
|
|
105
|
+
type: 'path',
|
|
106
|
+
path: 'bundle.script.js'
|
|
107
|
+
},
|
|
108
|
+
dependencyA: {
|
|
109
|
+
type: 'path',
|
|
110
|
+
path: {
|
|
111
|
+
path: 'dependencyA.script.js',
|
|
112
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
dependencyB: {
|
|
116
|
+
type: 'path',
|
|
117
|
+
path: {
|
|
118
|
+
path: 'dependencyB.script.js'
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
dependencyC: {
|
|
122
|
+
type: 'path',
|
|
123
|
+
path: 'dependencyC.script.js'
|
|
124
|
+
},
|
|
125
|
+
dependencyD: {
|
|
126
|
+
type: 'path',
|
|
127
|
+
path: {
|
|
128
|
+
path: 'dependencyD.script.js',
|
|
129
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
130
|
+
},
|
|
131
|
+
shouldNotPreload: true
|
|
132
|
+
},
|
|
133
|
+
dependencyE: {
|
|
134
|
+
type: 'path',
|
|
135
|
+
path: {
|
|
136
|
+
path: 'dependencyE.script.js'
|
|
137
|
+
},
|
|
138
|
+
shouldNotPreload: true
|
|
139
|
+
},
|
|
140
|
+
dependencyF: {
|
|
141
|
+
type: 'path',
|
|
142
|
+
path: 'dependencyF.script.js',
|
|
143
|
+
shouldNotPreload: true
|
|
144
|
+
},
|
|
145
|
+
dependencyG: {
|
|
146
|
+
type: 'path',
|
|
147
|
+
path: {
|
|
148
|
+
path: 'dependencyG.script.js',
|
|
149
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
150
|
+
},
|
|
151
|
+
shouldNotPreload: false
|
|
152
|
+
},
|
|
153
|
+
dependencyH: {
|
|
154
|
+
type: 'path',
|
|
155
|
+
path: {
|
|
156
|
+
path: 'dependencyH.script.js'
|
|
157
|
+
},
|
|
158
|
+
shouldNotPreload: false
|
|
159
|
+
},
|
|
160
|
+
dependencyI: {
|
|
161
|
+
type: 'path',
|
|
162
|
+
path: 'dependencyI.script.js',
|
|
163
|
+
shouldNotPreload: false
|
|
164
|
+
},
|
|
165
|
+
stringsA: {
|
|
166
|
+
type: 'localizedPath',
|
|
167
|
+
defaultPath: 'stringsA_default.js'
|
|
168
|
+
},
|
|
169
|
+
stringsB: {
|
|
170
|
+
type: 'localizedPath',
|
|
171
|
+
defaultPath: {
|
|
172
|
+
path: 'stringsB_default.js',
|
|
173
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
stringsC: {
|
|
177
|
+
type: 'localizedPath',
|
|
178
|
+
defaultPath: {
|
|
179
|
+
path: 'stringsC_default.js'
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
stringsD: {
|
|
183
|
+
type: 'localizedPath',
|
|
184
|
+
defaultPath: 'stringsD_default.js',
|
|
185
|
+
paths: {
|
|
186
|
+
'en-us': 'stringsD_en-us.js',
|
|
187
|
+
'fr-fr': 'stringsD_fr-fr.js'
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
stringsE: {
|
|
191
|
+
type: 'localizedPath',
|
|
192
|
+
defaultPath: 'stringsE_default.js',
|
|
193
|
+
paths: {
|
|
194
|
+
'en-us': {
|
|
195
|
+
path: 'stringsE_en-us.js'
|
|
196
|
+
},
|
|
197
|
+
'fr-fr': 'stringsE_fr-fr.js'
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
stringsF: {
|
|
201
|
+
type: 'localizedPath',
|
|
202
|
+
defaultPath: 'stringsF_default.js',
|
|
203
|
+
paths: {
|
|
204
|
+
'en-us': {
|
|
205
|
+
path: 'stringsF_en-us.js',
|
|
206
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
207
|
+
},
|
|
208
|
+
'fr-fr': 'stringsF_fr-fr.js'
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
stringsG: {
|
|
212
|
+
type: 'localizedPath',
|
|
213
|
+
defaultPath: 'stringsG_default.js',
|
|
214
|
+
shouldNotPreload: true
|
|
215
|
+
},
|
|
216
|
+
stringsH: {
|
|
217
|
+
type: 'localizedPath',
|
|
218
|
+
defaultPath: {
|
|
219
|
+
path: 'stringsH_default.js',
|
|
220
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
221
|
+
},
|
|
222
|
+
shouldNotPreload: true
|
|
223
|
+
},
|
|
224
|
+
stringsI: {
|
|
225
|
+
type: 'localizedPath',
|
|
226
|
+
defaultPath: {
|
|
227
|
+
path: 'stringsI_default.js'
|
|
228
|
+
},
|
|
229
|
+
shouldNotPreload: true
|
|
230
|
+
},
|
|
231
|
+
stringsJ: {
|
|
232
|
+
type: 'localizedPath',
|
|
233
|
+
defaultPath: 'stringsJ_default.js',
|
|
234
|
+
paths: {
|
|
235
|
+
'en-us': 'stringsJ_en-us.js',
|
|
236
|
+
'fr-fr': 'stringsJ_fr-fr.js'
|
|
237
|
+
},
|
|
238
|
+
shouldNotPreload: true
|
|
239
|
+
},
|
|
240
|
+
stringsK: {
|
|
241
|
+
type: 'localizedPath',
|
|
242
|
+
defaultPath: 'stringsK_default.js',
|
|
243
|
+
paths: {
|
|
244
|
+
'en-us': {
|
|
245
|
+
path: 'stringsK_en-us.js'
|
|
246
|
+
},
|
|
247
|
+
'fr-fr': 'stringsK_fr-fr.js'
|
|
248
|
+
},
|
|
249
|
+
shouldNotPreload: true
|
|
250
|
+
},
|
|
251
|
+
stringsL: {
|
|
252
|
+
type: 'localizedPath',
|
|
253
|
+
defaultPath: 'stringsL_default.js',
|
|
254
|
+
paths: {
|
|
255
|
+
'en-us': {
|
|
256
|
+
path: 'stringsL_en-us.js',
|
|
257
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
258
|
+
},
|
|
259
|
+
'fr-fr': 'stringsL_fr-fr.js'
|
|
260
|
+
},
|
|
261
|
+
shouldNotPreload: true
|
|
262
|
+
},
|
|
263
|
+
stringsM: {
|
|
264
|
+
type: 'localizedPath',
|
|
265
|
+
defaultPath: 'stringsM_default.js',
|
|
266
|
+
shouldNotPreload: false
|
|
267
|
+
},
|
|
268
|
+
stringsN: {
|
|
269
|
+
type: 'localizedPath',
|
|
270
|
+
defaultPath: {
|
|
271
|
+
path: 'stringsN_default.js',
|
|
272
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
273
|
+
},
|
|
274
|
+
shouldNotPreload: false
|
|
275
|
+
},
|
|
276
|
+
stringsO: {
|
|
277
|
+
type: 'localizedPath',
|
|
278
|
+
defaultPath: {
|
|
279
|
+
path: 'stringsO_default.js'
|
|
280
|
+
},
|
|
281
|
+
shouldNotPreload: false
|
|
282
|
+
},
|
|
283
|
+
stringsP: {
|
|
284
|
+
type: 'localizedPath',
|
|
285
|
+
defaultPath: 'stringsP_default.js',
|
|
286
|
+
paths: {
|
|
287
|
+
'en-us': 'stringsP_en-us.js',
|
|
288
|
+
'fr-fr': 'stringsP_fr-fr.js'
|
|
289
|
+
},
|
|
290
|
+
shouldNotPreload: false
|
|
291
|
+
},
|
|
292
|
+
stringsQ: {
|
|
293
|
+
type: 'localizedPath',
|
|
294
|
+
defaultPath: 'stringsQ_default.js',
|
|
295
|
+
paths: {
|
|
296
|
+
'en-us': {
|
|
297
|
+
path: 'stringsQ_en-us.js'
|
|
298
|
+
},
|
|
299
|
+
'fr-fr': 'stringsQ_fr-fr.js'
|
|
300
|
+
},
|
|
301
|
+
shouldNotPreload: false
|
|
302
|
+
},
|
|
303
|
+
stringsR: {
|
|
304
|
+
type: 'localizedPath',
|
|
305
|
+
defaultPath: 'stringsR_default.js',
|
|
306
|
+
paths: {
|
|
307
|
+
'en-us': {
|
|
308
|
+
path: 'stringsR_en-us.js',
|
|
309
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
310
|
+
},
|
|
311
|
+
'fr-fr': 'stringsR_fr-fr.js'
|
|
312
|
+
},
|
|
313
|
+
shouldNotPreload: false
|
|
314
|
+
},
|
|
315
|
+
nonAmdA: {
|
|
316
|
+
type: 'path',
|
|
317
|
+
path: 'nonAmdA.js',
|
|
318
|
+
globalName: 'nonAmdA'
|
|
319
|
+
},
|
|
320
|
+
nonAmdB: {
|
|
321
|
+
type: 'path',
|
|
322
|
+
path: 'nonAmdB.js',
|
|
323
|
+
globalName: 'nonAmdB',
|
|
324
|
+
globalDependencies: ['nonAmdB']
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
title: { default: 'foobar' },
|
|
329
|
+
description: { default: 'foobar baz' },
|
|
330
|
+
isConfigured: true,
|
|
331
|
+
actions: [
|
|
332
|
+
{
|
|
333
|
+
verb: 'applyTheme',
|
|
334
|
+
themeName: 'themeName'
|
|
335
|
+
}
|
|
336
|
+
]
|
|
337
|
+
};
|
|
338
|
+
module.exports = prefabManifest;
|
|
339
|
+
//# sourceMappingURL=prefab_2.manifest.js.map
|