@openneuro/app 4.2.4 → 4.3.0-alpha.1

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 (75) hide show
  1. package/jestsetup.ts +0 -5
  2. package/package.json +7 -12
  3. package/src/scripts/common/forms/__tests__/__snapshots__/warn-button.spec.jsx.snap +26 -26
  4. package/src/scripts/common/forms/__tests__/warn-button.spec.jsx +7 -5
  5. package/src/scripts/datalad/dataset/dataset-query-fragments.js +6 -0
  6. package/src/scripts/datalad/subscriptions/__tests__/__snapshots__/files-subscription.spec.jsx.snap +1 -159
  7. package/src/scripts/datalad/subscriptions/__tests__/files-subscription.spec.jsx +6 -3
  8. package/src/scripts/errors/errorRoute.jsx +4 -23
  9. package/src/scripts/faq/__tests__/__snapshots__/faq.spec.jsx.snap +183 -154
  10. package/src/scripts/faq/__tests__/faq.spec.jsx +3 -3
  11. package/src/scripts/refactor_2021/admin/admin.jsx +1 -7
  12. package/src/scripts/refactor_2021/dataset/comments/__tests__/__snapshots__/comments.spec.jsx.snap +12 -110
  13. package/src/scripts/refactor_2021/dataset/comments/__tests__/comments.spec.jsx +7 -5
  14. package/src/scripts/refactor_2021/dataset/dataset-query.jsx +2 -4
  15. package/src/scripts/refactor_2021/dataset/dataset-routes.jsx +6 -11
  16. package/src/scripts/refactor_2021/dataset/download/__tests__/__snapshots__/download-command-line.spec.jsx.snap +8 -9
  17. package/src/scripts/refactor_2021/dataset/download/__tests__/__snapshots__/download-link.spec.jsx.snap +46 -1255
  18. package/src/scripts/refactor_2021/dataset/download/__tests__/__snapshots__/shell-example.spec.jsx.snap +3 -4
  19. package/src/scripts/refactor_2021/dataset/download/__tests__/download-command-line.spec.jsx +10 -11
  20. package/src/scripts/refactor_2021/dataset/download/__tests__/download-link.spec.jsx +3 -3
  21. package/src/scripts/refactor_2021/dataset/download/__tests__/shell-example.spec.jsx +3 -3
  22. package/src/scripts/refactor_2021/dataset/download/download-command-line.jsx +1 -1
  23. package/src/scripts/refactor_2021/dataset/draft-container.tsx +6 -23
  24. package/src/scripts/refactor_2021/dataset/draft-snapshot-routes.tsx +1 -6
  25. package/src/scripts/refactor_2021/dataset/files/__tests__/__snapshots__/file-tree.spec.jsx.snap +24 -49
  26. package/src/scripts/refactor_2021/dataset/files/__tests__/__snapshots__/file.spec.jsx.snap +74 -54
  27. package/src/scripts/refactor_2021/dataset/files/__tests__/file-tree-unloaded-directory.spec.jsx +4 -3
  28. package/src/scripts/refactor_2021/dataset/files/__tests__/file-tree.spec.jsx +23 -19
  29. package/src/scripts/refactor_2021/dataset/files/__tests__/file-viewer-type.spec.jsx +5 -3
  30. package/src/scripts/refactor_2021/dataset/files/__tests__/file.spec.jsx +21 -21
  31. package/src/scripts/refactor_2021/dataset/files/file.jsx +3 -2
  32. package/src/scripts/refactor_2021/dataset/files/viewers/__tests__/__snapshots__/file-viewer-json.spec.jsx.snap +85 -60
  33. package/src/scripts/refactor_2021/dataset/files/viewers/__tests__/file-viewer-json.spec.jsx +5 -5
  34. package/src/scripts/refactor_2021/dataset/fragments/__tests__/__snapshots__/cancel-button.spec.tsx.snap +14 -6
  35. package/src/scripts/refactor_2021/dataset/fragments/__tests__/__snapshots__/edit-button.spec.tsx.snap +14 -6
  36. package/src/scripts/refactor_2021/dataset/fragments/__tests__/__snapshots__/save-button.spec.tsx.snap +14 -6
  37. package/src/scripts/refactor_2021/dataset/fragments/__tests__/__snapshots__/select-input.spec.tsx.snap +178 -105
  38. package/src/scripts/refactor_2021/dataset/fragments/__tests__/cancel-button.spec.tsx +3 -3
  39. package/src/scripts/refactor_2021/dataset/fragments/__tests__/dataset-alert-draft.spec.tsx +72 -0
  40. package/src/scripts/refactor_2021/dataset/fragments/__tests__/edit-button.spec.tsx +3 -3
  41. package/src/scripts/refactor_2021/dataset/fragments/__tests__/edit-list.spec.jsx +0 -1
  42. package/src/scripts/refactor_2021/dataset/fragments/__tests__/save-button.spec.tsx +3 -3
  43. package/src/scripts/refactor_2021/dataset/fragments/__tests__/select-input.spec.tsx +9 -9
  44. package/src/scripts/refactor_2021/dataset/fragments/dataset-alert-draft.tsx +79 -0
  45. package/src/scripts/refactor_2021/dataset/fragments/dataset-alert-version.tsx +24 -0
  46. package/src/scripts/refactor_2021/dataset/fragments/select-input.tsx +1 -1
  47. package/src/scripts/refactor_2021/dataset/mutations/__tests__/__snapshots__/deprecate-snapshot.spec.tsx.snap +14 -0
  48. package/src/scripts/refactor_2021/dataset/mutations/__tests__/__snapshots__/deprecate-version.spec.tsx.snap +14 -0
  49. package/src/scripts/refactor_2021/dataset/mutations/__tests__/__snapshots__/description.spec.jsx.snap +3 -277
  50. package/src/scripts/refactor_2021/dataset/mutations/__tests__/deprecate-snapshot.spec.tsx +71 -0
  51. package/src/scripts/refactor_2021/dataset/mutations/__tests__/deprecate-version.spec.tsx +71 -0
  52. package/src/scripts/refactor_2021/dataset/mutations/__tests__/description.spec.jsx +22 -9
  53. package/src/scripts/refactor_2021/dataset/mutations/deprecate-version.tsx +46 -0
  54. package/src/scripts/refactor_2021/dataset/mutations/description.jsx +1 -1
  55. package/src/scripts/refactor_2021/dataset/mutations/readme.jsx +1 -1
  56. package/src/scripts/refactor_2021/dataset/mutations/submit-metadata.jsx +1 -1
  57. package/src/scripts/refactor_2021/dataset/mutations/undo-deprecate-version.tsx +43 -0
  58. package/src/scripts/refactor_2021/dataset/mutations/update-file.jsx +15 -19
  59. package/src/scripts/refactor_2021/dataset/routes/__tests__/__snapshots__/publish.spec.jsx.snap +3 -0
  60. package/src/scripts/refactor_2021/dataset/routes/__tests__/publish.spec.jsx +13 -0
  61. package/src/scripts/refactor_2021/dataset/routes/add-metadata.jsx +0 -1
  62. package/src/scripts/refactor_2021/dataset/routes/deprecate-snapshot-page.tsx +46 -0
  63. package/src/scripts/refactor_2021/dataset/snapshot-container.tsx +19 -23
  64. package/src/scripts/refactor_2021/routes.tsx +9 -9
  65. package/src/scripts/refactor_2021/uploader/uploader-setup-routes.jsx +4 -24
  66. package/src/scripts/refactor_2021/uploader/uploader-status-routes.jsx +1 -6
  67. package/src/scripts/common/forms/__tests__/__snapshots__/input.spec.jsx.snap +0 -13
  68. package/src/scripts/common/forms/__tests__/input.spec.jsx +0 -25
  69. package/src/scripts/common/forms/input.jsx +0 -98
  70. package/src/scripts/datalad/routes/__tests__/__snapshots__/publish.spec.jsx.snap +0 -14
  71. package/src/scripts/datalad/routes/__tests__/publish.spec.jsx +0 -10
  72. package/src/scripts/datalad/routes/mobile-class.tsx +0 -16
  73. package/src/scripts/datalad/routes/publish.jsx +0 -50
  74. package/src/scripts/refactor_2021/dataset/dataset-query-fragments.js +0 -220
  75. package/src/scripts/refactor_2021/dataset/queries/dataset-query-fragments.js +0 -220
@@ -1,1259 +1,50 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
3
  exports[`dataset/download/DownloadLink renders successfully 1`] = `
4
- <ApolloProvider
5
- client={
6
- ApolloClient {
7
- "cache": InMemoryCache {
8
- "addTypename": true,
9
- "config": Object {
10
- "addTypename": true,
11
- "canonizeResults": false,
12
- "dataIdFromObject": [Function],
13
- "resultCaching": true,
14
- },
15
- "data": Root {
16
- "canRead": [Function],
17
- "data": Object {},
18
- "getFieldValue": [Function],
19
- "group": CacheGroup {
20
- "caching": true,
21
- "d": [Function],
22
- "keyMaker": Trie {
23
- "makeData": [Function],
24
- "weakness": true,
25
- },
26
- "parent": null,
27
- },
28
- "policies": Policies {
29
- "cache": [Circular],
30
- "config": Object {
31
- "cache": [Circular],
32
- "dataIdFromObject": [Function],
33
- "possibleTypes": undefined,
34
- "typePolicies": undefined,
35
- },
36
- "fuzzySubtypes": Map {},
37
- "rootIdsByTypename": Object {
38
- "Mutation": "ROOT_MUTATION",
39
- "Query": "ROOT_QUERY",
40
- "Subscription": "ROOT_SUBSCRIPTION",
41
- },
42
- "rootTypenamesById": Object {
43
- "ROOT_MUTATION": "Mutation",
44
- "ROOT_QUERY": "Query",
45
- "ROOT_SUBSCRIPTION": "Subscription",
46
- },
47
- "supertypeMap": Map {},
48
- "toBeAdded": Object {},
49
- "typePolicies": Object {},
50
- "usingPossibleTypes": false,
51
- },
52
- "refs": Object {},
53
- "rootIds": Object {},
54
- "storageTrie": Trie {
55
- "makeData": [Function],
56
- "weakness": true,
57
- },
58
- "stump": Stump {
59
- "canRead": [Function],
60
- "data": Object {},
61
- "getFieldValue": [Function],
62
- "group": CacheGroup {
63
- "caching": true,
64
- "d": [Function],
65
- "keyMaker": Trie {
66
- "makeData": [Function],
67
- "weakness": true,
68
- },
69
- "parent": CacheGroup {
70
- "caching": true,
71
- "d": [Function],
72
- "keyMaker": Trie {
73
- "makeData": [Function],
74
- "weakness": true,
75
- },
76
- "parent": null,
77
- },
78
- },
79
- "id": "EntityStore.Stump",
80
- "parent": [Circular],
81
- "policies": Policies {
82
- "cache": [Circular],
83
- "config": Object {
84
- "cache": [Circular],
85
- "dataIdFromObject": [Function],
86
- "possibleTypes": undefined,
87
- "typePolicies": undefined,
88
- },
89
- "fuzzySubtypes": Map {},
90
- "rootIdsByTypename": Object {
91
- "Mutation": "ROOT_MUTATION",
92
- "Query": "ROOT_QUERY",
93
- "Subscription": "ROOT_SUBSCRIPTION",
94
- },
95
- "rootTypenamesById": Object {
96
- "ROOT_MUTATION": "Mutation",
97
- "ROOT_QUERY": "Query",
98
- "ROOT_SUBSCRIPTION": "Subscription",
99
- },
100
- "supertypeMap": Map {},
101
- "toBeAdded": Object {},
102
- "typePolicies": Object {},
103
- "usingPossibleTypes": false,
104
- },
105
- "refs": Object {},
106
- "replay": [Function],
107
- "rootIds": Object {},
108
- "toReference": [Function],
109
- },
110
- "toReference": [Function],
111
- },
112
- "getFragmentDoc": [Function],
113
- "makeVar": [Function],
114
- "maybeBroadcastWatch": [Function],
115
- "optimisticData": Stump {
116
- "canRead": [Function],
117
- "data": Object {},
118
- "getFieldValue": [Function],
119
- "group": CacheGroup {
120
- "caching": true,
121
- "d": [Function],
122
- "keyMaker": Trie {
123
- "makeData": [Function],
124
- "weakness": true,
125
- },
126
- "parent": CacheGroup {
127
- "caching": true,
128
- "d": [Function],
129
- "keyMaker": Trie {
130
- "makeData": [Function],
131
- "weakness": true,
132
- },
133
- "parent": null,
134
- },
135
- },
136
- "id": "EntityStore.Stump",
137
- "parent": Root {
138
- "canRead": [Function],
139
- "data": Object {},
140
- "getFieldValue": [Function],
141
- "group": CacheGroup {
142
- "caching": true,
143
- "d": [Function],
144
- "keyMaker": Trie {
145
- "makeData": [Function],
146
- "weakness": true,
147
- },
148
- "parent": null,
149
- },
150
- "policies": Policies {
151
- "cache": [Circular],
152
- "config": Object {
153
- "cache": [Circular],
154
- "dataIdFromObject": [Function],
155
- "possibleTypes": undefined,
156
- "typePolicies": undefined,
157
- },
158
- "fuzzySubtypes": Map {},
159
- "rootIdsByTypename": Object {
160
- "Mutation": "ROOT_MUTATION",
161
- "Query": "ROOT_QUERY",
162
- "Subscription": "ROOT_SUBSCRIPTION",
163
- },
164
- "rootTypenamesById": Object {
165
- "ROOT_MUTATION": "Mutation",
166
- "ROOT_QUERY": "Query",
167
- "ROOT_SUBSCRIPTION": "Subscription",
168
- },
169
- "supertypeMap": Map {},
170
- "toBeAdded": Object {},
171
- "typePolicies": Object {},
172
- "usingPossibleTypes": false,
173
- },
174
- "refs": Object {},
175
- "rootIds": Object {},
176
- "storageTrie": Trie {
177
- "makeData": [Function],
178
- "weakness": true,
179
- },
180
- "stump": [Circular],
181
- "toReference": [Function],
182
- },
183
- "policies": Policies {
184
- "cache": [Circular],
185
- "config": Object {
186
- "cache": [Circular],
187
- "dataIdFromObject": [Function],
188
- "possibleTypes": undefined,
189
- "typePolicies": undefined,
190
- },
191
- "fuzzySubtypes": Map {},
192
- "rootIdsByTypename": Object {
193
- "Mutation": "ROOT_MUTATION",
194
- "Query": "ROOT_QUERY",
195
- "Subscription": "ROOT_SUBSCRIPTION",
196
- },
197
- "rootTypenamesById": Object {
198
- "ROOT_MUTATION": "Mutation",
199
- "ROOT_QUERY": "Query",
200
- "ROOT_SUBSCRIPTION": "Subscription",
201
- },
202
- "supertypeMap": Map {},
203
- "toBeAdded": Object {},
204
- "typePolicies": Object {},
205
- "usingPossibleTypes": false,
206
- },
207
- "refs": Object {},
208
- "replay": [Function],
209
- "rootIds": Object {},
210
- "toReference": [Function],
211
- },
212
- "policies": Policies {
213
- "cache": [Circular],
214
- "config": Object {
215
- "cache": [Circular],
216
- "dataIdFromObject": [Function],
217
- "possibleTypes": undefined,
218
- "typePolicies": undefined,
219
- },
220
- "fuzzySubtypes": Map {},
221
- "rootIdsByTypename": Object {
222
- "Mutation": "ROOT_MUTATION",
223
- "Query": "ROOT_QUERY",
224
- "Subscription": "ROOT_SUBSCRIPTION",
225
- },
226
- "rootTypenamesById": Object {
227
- "ROOT_MUTATION": "Mutation",
228
- "ROOT_QUERY": "Query",
229
- "ROOT_SUBSCRIPTION": "Subscription",
230
- },
231
- "supertypeMap": Map {},
232
- "toBeAdded": Object {},
233
- "typePolicies": Object {},
234
- "usingPossibleTypes": false,
235
- },
236
- "storeReader": StoreReader {
237
- "canon": ObjectCanon {
238
- "empty": Object {},
239
- "keysByJSON": Map {
240
- "[]" => Object {
241
- "json": "[]",
242
- "sorted": Array [],
243
- },
244
- },
245
- "known": WeakSet {},
246
- "passes": WeakMap {},
247
- "pool": Trie {
248
- "data": Object {
249
- "keys": Object {
250
- "json": "[]",
251
- "sorted": Array [],
252
- },
253
- },
254
- "makeData": [Function],
255
- "weak": WeakMap {},
256
- "weakness": true,
257
- },
258
- },
259
- "config": Object {
260
- "addTypename": true,
261
- "cache": [Circular],
262
- "canonizeResults": false,
263
- },
264
- "executeSelectionSet": [Function],
265
- "executeSubSelectedArray": [Function],
266
- "knownResults": WeakMap {},
267
- },
268
- "storeWriter": StoreWriter {
269
- "cache": [Circular],
270
- "reader": StoreReader {
271
- "canon": ObjectCanon {
272
- "empty": Object {},
273
- "keysByJSON": Map {
274
- "[]" => Object {
275
- "json": "[]",
276
- "sorted": Array [],
277
- },
278
- },
279
- "known": WeakSet {},
280
- "passes": WeakMap {},
281
- "pool": Trie {
282
- "data": Object {
283
- "keys": Object {
284
- "json": "[]",
285
- "sorted": Array [],
286
- },
287
- },
288
- "makeData": [Function],
289
- "weak": WeakMap {},
290
- "weakness": true,
291
- },
292
- },
293
- "config": Object {
294
- "addTypename": true,
295
- "cache": [Circular],
296
- "canonizeResults": false,
297
- },
298
- "executeSelectionSet": [Function],
299
- "executeSubSelectedArray": [Function],
300
- "knownResults": WeakMap {},
301
- },
302
- },
303
- "txCount": 0,
304
- "typenameDocumentCache": Map {},
305
- "watches": Set {},
306
- },
307
- "clearStoreCallbacks": Array [],
308
- "defaultOptions": Object {},
309
- "disableNetworkFetches": false,
310
- "link": MockLink {
311
- "addTypename": true,
312
- "mockedResponsesByKey": Object {},
313
- },
314
- "localState": LocalState {
315
- "cache": InMemoryCache {
316
- "addTypename": true,
317
- "config": Object {
318
- "addTypename": true,
319
- "canonizeResults": false,
320
- "dataIdFromObject": [Function],
321
- "resultCaching": true,
322
- },
323
- "data": Root {
324
- "canRead": [Function],
325
- "data": Object {},
326
- "getFieldValue": [Function],
327
- "group": CacheGroup {
328
- "caching": true,
329
- "d": [Function],
330
- "keyMaker": Trie {
331
- "makeData": [Function],
332
- "weakness": true,
333
- },
334
- "parent": null,
335
- },
336
- "policies": Policies {
337
- "cache": [Circular],
338
- "config": Object {
339
- "cache": [Circular],
340
- "dataIdFromObject": [Function],
341
- "possibleTypes": undefined,
342
- "typePolicies": undefined,
343
- },
344
- "fuzzySubtypes": Map {},
345
- "rootIdsByTypename": Object {
346
- "Mutation": "ROOT_MUTATION",
347
- "Query": "ROOT_QUERY",
348
- "Subscription": "ROOT_SUBSCRIPTION",
349
- },
350
- "rootTypenamesById": Object {
351
- "ROOT_MUTATION": "Mutation",
352
- "ROOT_QUERY": "Query",
353
- "ROOT_SUBSCRIPTION": "Subscription",
354
- },
355
- "supertypeMap": Map {},
356
- "toBeAdded": Object {},
357
- "typePolicies": Object {},
358
- "usingPossibleTypes": false,
359
- },
360
- "refs": Object {},
361
- "rootIds": Object {},
362
- "storageTrie": Trie {
363
- "makeData": [Function],
364
- "weakness": true,
365
- },
366
- "stump": Stump {
367
- "canRead": [Function],
368
- "data": Object {},
369
- "getFieldValue": [Function],
370
- "group": CacheGroup {
371
- "caching": true,
372
- "d": [Function],
373
- "keyMaker": Trie {
374
- "makeData": [Function],
375
- "weakness": true,
376
- },
377
- "parent": CacheGroup {
378
- "caching": true,
379
- "d": [Function],
380
- "keyMaker": Trie {
381
- "makeData": [Function],
382
- "weakness": true,
383
- },
384
- "parent": null,
385
- },
386
- },
387
- "id": "EntityStore.Stump",
388
- "parent": [Circular],
389
- "policies": Policies {
390
- "cache": [Circular],
391
- "config": Object {
392
- "cache": [Circular],
393
- "dataIdFromObject": [Function],
394
- "possibleTypes": undefined,
395
- "typePolicies": undefined,
396
- },
397
- "fuzzySubtypes": Map {},
398
- "rootIdsByTypename": Object {
399
- "Mutation": "ROOT_MUTATION",
400
- "Query": "ROOT_QUERY",
401
- "Subscription": "ROOT_SUBSCRIPTION",
402
- },
403
- "rootTypenamesById": Object {
404
- "ROOT_MUTATION": "Mutation",
405
- "ROOT_QUERY": "Query",
406
- "ROOT_SUBSCRIPTION": "Subscription",
407
- },
408
- "supertypeMap": Map {},
409
- "toBeAdded": Object {},
410
- "typePolicies": Object {},
411
- "usingPossibleTypes": false,
412
- },
413
- "refs": Object {},
414
- "replay": [Function],
415
- "rootIds": Object {},
416
- "toReference": [Function],
417
- },
418
- "toReference": [Function],
419
- },
420
- "getFragmentDoc": [Function],
421
- "makeVar": [Function],
422
- "maybeBroadcastWatch": [Function],
423
- "optimisticData": Stump {
424
- "canRead": [Function],
425
- "data": Object {},
426
- "getFieldValue": [Function],
427
- "group": CacheGroup {
428
- "caching": true,
429
- "d": [Function],
430
- "keyMaker": Trie {
431
- "makeData": [Function],
432
- "weakness": true,
433
- },
434
- "parent": CacheGroup {
435
- "caching": true,
436
- "d": [Function],
437
- "keyMaker": Trie {
438
- "makeData": [Function],
439
- "weakness": true,
440
- },
441
- "parent": null,
442
- },
443
- },
444
- "id": "EntityStore.Stump",
445
- "parent": Root {
446
- "canRead": [Function],
447
- "data": Object {},
448
- "getFieldValue": [Function],
449
- "group": CacheGroup {
450
- "caching": true,
451
- "d": [Function],
452
- "keyMaker": Trie {
453
- "makeData": [Function],
454
- "weakness": true,
455
- },
456
- "parent": null,
457
- },
458
- "policies": Policies {
459
- "cache": [Circular],
460
- "config": Object {
461
- "cache": [Circular],
462
- "dataIdFromObject": [Function],
463
- "possibleTypes": undefined,
464
- "typePolicies": undefined,
465
- },
466
- "fuzzySubtypes": Map {},
467
- "rootIdsByTypename": Object {
468
- "Mutation": "ROOT_MUTATION",
469
- "Query": "ROOT_QUERY",
470
- "Subscription": "ROOT_SUBSCRIPTION",
471
- },
472
- "rootTypenamesById": Object {
473
- "ROOT_MUTATION": "Mutation",
474
- "ROOT_QUERY": "Query",
475
- "ROOT_SUBSCRIPTION": "Subscription",
476
- },
477
- "supertypeMap": Map {},
478
- "toBeAdded": Object {},
479
- "typePolicies": Object {},
480
- "usingPossibleTypes": false,
481
- },
482
- "refs": Object {},
483
- "rootIds": Object {},
484
- "storageTrie": Trie {
485
- "makeData": [Function],
486
- "weakness": true,
487
- },
488
- "stump": [Circular],
489
- "toReference": [Function],
490
- },
491
- "policies": Policies {
492
- "cache": [Circular],
493
- "config": Object {
494
- "cache": [Circular],
495
- "dataIdFromObject": [Function],
496
- "possibleTypes": undefined,
497
- "typePolicies": undefined,
498
- },
499
- "fuzzySubtypes": Map {},
500
- "rootIdsByTypename": Object {
501
- "Mutation": "ROOT_MUTATION",
502
- "Query": "ROOT_QUERY",
503
- "Subscription": "ROOT_SUBSCRIPTION",
504
- },
505
- "rootTypenamesById": Object {
506
- "ROOT_MUTATION": "Mutation",
507
- "ROOT_QUERY": "Query",
508
- "ROOT_SUBSCRIPTION": "Subscription",
509
- },
510
- "supertypeMap": Map {},
511
- "toBeAdded": Object {},
512
- "typePolicies": Object {},
513
- "usingPossibleTypes": false,
514
- },
515
- "refs": Object {},
516
- "replay": [Function],
517
- "rootIds": Object {},
518
- "toReference": [Function],
519
- },
520
- "policies": Policies {
521
- "cache": [Circular],
522
- "config": Object {
523
- "cache": [Circular],
524
- "dataIdFromObject": [Function],
525
- "possibleTypes": undefined,
526
- "typePolicies": undefined,
527
- },
528
- "fuzzySubtypes": Map {},
529
- "rootIdsByTypename": Object {
530
- "Mutation": "ROOT_MUTATION",
531
- "Query": "ROOT_QUERY",
532
- "Subscription": "ROOT_SUBSCRIPTION",
533
- },
534
- "rootTypenamesById": Object {
535
- "ROOT_MUTATION": "Mutation",
536
- "ROOT_QUERY": "Query",
537
- "ROOT_SUBSCRIPTION": "Subscription",
538
- },
539
- "supertypeMap": Map {},
540
- "toBeAdded": Object {},
541
- "typePolicies": Object {},
542
- "usingPossibleTypes": false,
543
- },
544
- "storeReader": StoreReader {
545
- "canon": ObjectCanon {
546
- "empty": Object {},
547
- "keysByJSON": Map {
548
- "[]" => Object {
549
- "json": "[]",
550
- "sorted": Array [],
551
- },
552
- },
553
- "known": WeakSet {},
554
- "passes": WeakMap {},
555
- "pool": Trie {
556
- "data": Object {
557
- "keys": Object {
558
- "json": "[]",
559
- "sorted": Array [],
560
- },
561
- },
562
- "makeData": [Function],
563
- "weak": WeakMap {},
564
- "weakness": true,
565
- },
566
- },
567
- "config": Object {
568
- "addTypename": true,
569
- "cache": [Circular],
570
- "canonizeResults": false,
571
- },
572
- "executeSelectionSet": [Function],
573
- "executeSubSelectedArray": [Function],
574
- "knownResults": WeakMap {},
575
- },
576
- "storeWriter": StoreWriter {
577
- "cache": [Circular],
578
- "reader": StoreReader {
579
- "canon": ObjectCanon {
580
- "empty": Object {},
581
- "keysByJSON": Map {
582
- "[]" => Object {
583
- "json": "[]",
584
- "sorted": Array [],
585
- },
586
- },
587
- "known": WeakSet {},
588
- "passes": WeakMap {},
589
- "pool": Trie {
590
- "data": Object {
591
- "keys": Object {
592
- "json": "[]",
593
- "sorted": Array [],
594
- },
595
- },
596
- "makeData": [Function],
597
- "weak": WeakMap {},
598
- "weakness": true,
599
- },
600
- },
601
- "config": Object {
602
- "addTypename": true,
603
- "cache": [Circular],
604
- "canonizeResults": false,
605
- },
606
- "executeSelectionSet": [Function],
607
- "executeSubSelectedArray": [Function],
608
- "knownResults": WeakMap {},
609
- },
610
- },
611
- "txCount": 0,
612
- "typenameDocumentCache": Map {},
613
- "watches": Set {},
614
- },
615
- "client": [Circular],
616
- },
617
- "mutate": [Function],
618
- "query": [Function],
619
- "queryDeduplication": true,
620
- "queryManager": QueryManager {
621
- "assumeImmutableResults": false,
622
- "cache": InMemoryCache {
623
- "addTypename": true,
624
- "config": Object {
625
- "addTypename": true,
626
- "canonizeResults": false,
627
- "dataIdFromObject": [Function],
628
- "resultCaching": true,
629
- },
630
- "data": Root {
631
- "canRead": [Function],
632
- "data": Object {},
633
- "getFieldValue": [Function],
634
- "group": CacheGroup {
635
- "caching": true,
636
- "d": [Function],
637
- "keyMaker": Trie {
638
- "makeData": [Function],
639
- "weakness": true,
640
- },
641
- "parent": null,
642
- },
643
- "policies": Policies {
644
- "cache": [Circular],
645
- "config": Object {
646
- "cache": [Circular],
647
- "dataIdFromObject": [Function],
648
- "possibleTypes": undefined,
649
- "typePolicies": undefined,
650
- },
651
- "fuzzySubtypes": Map {},
652
- "rootIdsByTypename": Object {
653
- "Mutation": "ROOT_MUTATION",
654
- "Query": "ROOT_QUERY",
655
- "Subscription": "ROOT_SUBSCRIPTION",
656
- },
657
- "rootTypenamesById": Object {
658
- "ROOT_MUTATION": "Mutation",
659
- "ROOT_QUERY": "Query",
660
- "ROOT_SUBSCRIPTION": "Subscription",
661
- },
662
- "supertypeMap": Map {},
663
- "toBeAdded": Object {},
664
- "typePolicies": Object {},
665
- "usingPossibleTypes": false,
666
- },
667
- "refs": Object {},
668
- "rootIds": Object {},
669
- "storageTrie": Trie {
670
- "makeData": [Function],
671
- "weakness": true,
672
- },
673
- "stump": Stump {
674
- "canRead": [Function],
675
- "data": Object {},
676
- "getFieldValue": [Function],
677
- "group": CacheGroup {
678
- "caching": true,
679
- "d": [Function],
680
- "keyMaker": Trie {
681
- "makeData": [Function],
682
- "weakness": true,
683
- },
684
- "parent": CacheGroup {
685
- "caching": true,
686
- "d": [Function],
687
- "keyMaker": Trie {
688
- "makeData": [Function],
689
- "weakness": true,
690
- },
691
- "parent": null,
692
- },
693
- },
694
- "id": "EntityStore.Stump",
695
- "parent": [Circular],
696
- "policies": Policies {
697
- "cache": [Circular],
698
- "config": Object {
699
- "cache": [Circular],
700
- "dataIdFromObject": [Function],
701
- "possibleTypes": undefined,
702
- "typePolicies": undefined,
703
- },
704
- "fuzzySubtypes": Map {},
705
- "rootIdsByTypename": Object {
706
- "Mutation": "ROOT_MUTATION",
707
- "Query": "ROOT_QUERY",
708
- "Subscription": "ROOT_SUBSCRIPTION",
709
- },
710
- "rootTypenamesById": Object {
711
- "ROOT_MUTATION": "Mutation",
712
- "ROOT_QUERY": "Query",
713
- "ROOT_SUBSCRIPTION": "Subscription",
714
- },
715
- "supertypeMap": Map {},
716
- "toBeAdded": Object {},
717
- "typePolicies": Object {},
718
- "usingPossibleTypes": false,
719
- },
720
- "refs": Object {},
721
- "replay": [Function],
722
- "rootIds": Object {},
723
- "toReference": [Function],
724
- },
725
- "toReference": [Function],
726
- },
727
- "getFragmentDoc": [Function],
728
- "makeVar": [Function],
729
- "maybeBroadcastWatch": [Function],
730
- "optimisticData": Stump {
731
- "canRead": [Function],
732
- "data": Object {},
733
- "getFieldValue": [Function],
734
- "group": CacheGroup {
735
- "caching": true,
736
- "d": [Function],
737
- "keyMaker": Trie {
738
- "makeData": [Function],
739
- "weakness": true,
740
- },
741
- "parent": CacheGroup {
742
- "caching": true,
743
- "d": [Function],
744
- "keyMaker": Trie {
745
- "makeData": [Function],
746
- "weakness": true,
747
- },
748
- "parent": null,
749
- },
750
- },
751
- "id": "EntityStore.Stump",
752
- "parent": Root {
753
- "canRead": [Function],
754
- "data": Object {},
755
- "getFieldValue": [Function],
756
- "group": CacheGroup {
757
- "caching": true,
758
- "d": [Function],
759
- "keyMaker": Trie {
760
- "makeData": [Function],
761
- "weakness": true,
762
- },
763
- "parent": null,
764
- },
765
- "policies": Policies {
766
- "cache": [Circular],
767
- "config": Object {
768
- "cache": [Circular],
769
- "dataIdFromObject": [Function],
770
- "possibleTypes": undefined,
771
- "typePolicies": undefined,
772
- },
773
- "fuzzySubtypes": Map {},
774
- "rootIdsByTypename": Object {
775
- "Mutation": "ROOT_MUTATION",
776
- "Query": "ROOT_QUERY",
777
- "Subscription": "ROOT_SUBSCRIPTION",
778
- },
779
- "rootTypenamesById": Object {
780
- "ROOT_MUTATION": "Mutation",
781
- "ROOT_QUERY": "Query",
782
- "ROOT_SUBSCRIPTION": "Subscription",
783
- },
784
- "supertypeMap": Map {},
785
- "toBeAdded": Object {},
786
- "typePolicies": Object {},
787
- "usingPossibleTypes": false,
788
- },
789
- "refs": Object {},
790
- "rootIds": Object {},
791
- "storageTrie": Trie {
792
- "makeData": [Function],
793
- "weakness": true,
794
- },
795
- "stump": [Circular],
796
- "toReference": [Function],
797
- },
798
- "policies": Policies {
799
- "cache": [Circular],
800
- "config": Object {
801
- "cache": [Circular],
802
- "dataIdFromObject": [Function],
803
- "possibleTypes": undefined,
804
- "typePolicies": undefined,
805
- },
806
- "fuzzySubtypes": Map {},
807
- "rootIdsByTypename": Object {
808
- "Mutation": "ROOT_MUTATION",
809
- "Query": "ROOT_QUERY",
810
- "Subscription": "ROOT_SUBSCRIPTION",
811
- },
812
- "rootTypenamesById": Object {
813
- "ROOT_MUTATION": "Mutation",
814
- "ROOT_QUERY": "Query",
815
- "ROOT_SUBSCRIPTION": "Subscription",
816
- },
817
- "supertypeMap": Map {},
818
- "toBeAdded": Object {},
819
- "typePolicies": Object {},
820
- "usingPossibleTypes": false,
821
- },
822
- "refs": Object {},
823
- "replay": [Function],
824
- "rootIds": Object {},
825
- "toReference": [Function],
826
- },
827
- "policies": Policies {
828
- "cache": [Circular],
829
- "config": Object {
830
- "cache": [Circular],
831
- "dataIdFromObject": [Function],
832
- "possibleTypes": undefined,
833
- "typePolicies": undefined,
834
- },
835
- "fuzzySubtypes": Map {},
836
- "rootIdsByTypename": Object {
837
- "Mutation": "ROOT_MUTATION",
838
- "Query": "ROOT_QUERY",
839
- "Subscription": "ROOT_SUBSCRIPTION",
840
- },
841
- "rootTypenamesById": Object {
842
- "ROOT_MUTATION": "Mutation",
843
- "ROOT_QUERY": "Query",
844
- "ROOT_SUBSCRIPTION": "Subscription",
845
- },
846
- "supertypeMap": Map {},
847
- "toBeAdded": Object {},
848
- "typePolicies": Object {},
849
- "usingPossibleTypes": false,
850
- },
851
- "storeReader": StoreReader {
852
- "canon": ObjectCanon {
853
- "empty": Object {},
854
- "keysByJSON": Map {
855
- "[]" => Object {
856
- "json": "[]",
857
- "sorted": Array [],
858
- },
859
- },
860
- "known": WeakSet {},
861
- "passes": WeakMap {},
862
- "pool": Trie {
863
- "data": Object {
864
- "keys": Object {
865
- "json": "[]",
866
- "sorted": Array [],
867
- },
868
- },
869
- "makeData": [Function],
870
- "weak": WeakMap {},
871
- "weakness": true,
872
- },
873
- },
874
- "config": Object {
875
- "addTypename": true,
876
- "cache": [Circular],
877
- "canonizeResults": false,
878
- },
879
- "executeSelectionSet": [Function],
880
- "executeSubSelectedArray": [Function],
881
- "knownResults": WeakMap {},
882
- },
883
- "storeWriter": StoreWriter {
884
- "cache": [Circular],
885
- "reader": StoreReader {
886
- "canon": ObjectCanon {
887
- "empty": Object {},
888
- "keysByJSON": Map {
889
- "[]" => Object {
890
- "json": "[]",
891
- "sorted": Array [],
892
- },
893
- },
894
- "known": WeakSet {},
895
- "passes": WeakMap {},
896
- "pool": Trie {
897
- "data": Object {
898
- "keys": Object {
899
- "json": "[]",
900
- "sorted": Array [],
901
- },
902
- },
903
- "makeData": [Function],
904
- "weak": WeakMap {},
905
- "weakness": true,
906
- },
907
- },
908
- "config": Object {
909
- "addTypename": true,
910
- "cache": [Circular],
911
- "canonizeResults": false,
912
- },
913
- "executeSelectionSet": [Function],
914
- "executeSubSelectedArray": [Function],
915
- "knownResults": WeakMap {},
916
- },
917
- },
918
- "txCount": 0,
919
- "typenameDocumentCache": Map {},
920
- "watches": Set {},
921
- },
922
- "clientAwareness": Object {
923
- "name": undefined,
924
- "version": undefined,
925
- },
926
- "fetchCancelFns": Map {},
927
- "inFlightLinkObservables": Map {},
928
- "link": MockLink {
929
- "addTypename": true,
930
- "mockedResponsesByKey": Object {},
931
- },
932
- "localState": LocalState {
933
- "cache": InMemoryCache {
934
- "addTypename": true,
935
- "config": Object {
936
- "addTypename": true,
937
- "canonizeResults": false,
938
- "dataIdFromObject": [Function],
939
- "resultCaching": true,
940
- },
941
- "data": Root {
942
- "canRead": [Function],
943
- "data": Object {},
944
- "getFieldValue": [Function],
945
- "group": CacheGroup {
946
- "caching": true,
947
- "d": [Function],
948
- "keyMaker": Trie {
949
- "makeData": [Function],
950
- "weakness": true,
951
- },
952
- "parent": null,
953
- },
954
- "policies": Policies {
955
- "cache": [Circular],
956
- "config": Object {
957
- "cache": [Circular],
958
- "dataIdFromObject": [Function],
959
- "possibleTypes": undefined,
960
- "typePolicies": undefined,
961
- },
962
- "fuzzySubtypes": Map {},
963
- "rootIdsByTypename": Object {
964
- "Mutation": "ROOT_MUTATION",
965
- "Query": "ROOT_QUERY",
966
- "Subscription": "ROOT_SUBSCRIPTION",
967
- },
968
- "rootTypenamesById": Object {
969
- "ROOT_MUTATION": "Mutation",
970
- "ROOT_QUERY": "Query",
971
- "ROOT_SUBSCRIPTION": "Subscription",
972
- },
973
- "supertypeMap": Map {},
974
- "toBeAdded": Object {},
975
- "typePolicies": Object {},
976
- "usingPossibleTypes": false,
977
- },
978
- "refs": Object {},
979
- "rootIds": Object {},
980
- "storageTrie": Trie {
981
- "makeData": [Function],
982
- "weakness": true,
983
- },
984
- "stump": Stump {
985
- "canRead": [Function],
986
- "data": Object {},
987
- "getFieldValue": [Function],
988
- "group": CacheGroup {
989
- "caching": true,
990
- "d": [Function],
991
- "keyMaker": Trie {
992
- "makeData": [Function],
993
- "weakness": true,
994
- },
995
- "parent": CacheGroup {
996
- "caching": true,
997
- "d": [Function],
998
- "keyMaker": Trie {
999
- "makeData": [Function],
1000
- "weakness": true,
1001
- },
1002
- "parent": null,
1003
- },
1004
- },
1005
- "id": "EntityStore.Stump",
1006
- "parent": [Circular],
1007
- "policies": Policies {
1008
- "cache": [Circular],
1009
- "config": Object {
1010
- "cache": [Circular],
1011
- "dataIdFromObject": [Function],
1012
- "possibleTypes": undefined,
1013
- "typePolicies": undefined,
1014
- },
1015
- "fuzzySubtypes": Map {},
1016
- "rootIdsByTypename": Object {
1017
- "Mutation": "ROOT_MUTATION",
1018
- "Query": "ROOT_QUERY",
1019
- "Subscription": "ROOT_SUBSCRIPTION",
1020
- },
1021
- "rootTypenamesById": Object {
1022
- "ROOT_MUTATION": "Mutation",
1023
- "ROOT_QUERY": "Query",
1024
- "ROOT_SUBSCRIPTION": "Subscription",
1025
- },
1026
- "supertypeMap": Map {},
1027
- "toBeAdded": Object {},
1028
- "typePolicies": Object {},
1029
- "usingPossibleTypes": false,
1030
- },
1031
- "refs": Object {},
1032
- "replay": [Function],
1033
- "rootIds": Object {},
1034
- "toReference": [Function],
1035
- },
1036
- "toReference": [Function],
1037
- },
1038
- "getFragmentDoc": [Function],
1039
- "makeVar": [Function],
1040
- "maybeBroadcastWatch": [Function],
1041
- "optimisticData": Stump {
1042
- "canRead": [Function],
1043
- "data": Object {},
1044
- "getFieldValue": [Function],
1045
- "group": CacheGroup {
1046
- "caching": true,
1047
- "d": [Function],
1048
- "keyMaker": Trie {
1049
- "makeData": [Function],
1050
- "weakness": true,
1051
- },
1052
- "parent": CacheGroup {
1053
- "caching": true,
1054
- "d": [Function],
1055
- "keyMaker": Trie {
1056
- "makeData": [Function],
1057
- "weakness": true,
1058
- },
1059
- "parent": null,
1060
- },
1061
- },
1062
- "id": "EntityStore.Stump",
1063
- "parent": Root {
1064
- "canRead": [Function],
1065
- "data": Object {},
1066
- "getFieldValue": [Function],
1067
- "group": CacheGroup {
1068
- "caching": true,
1069
- "d": [Function],
1070
- "keyMaker": Trie {
1071
- "makeData": [Function],
1072
- "weakness": true,
1073
- },
1074
- "parent": null,
1075
- },
1076
- "policies": Policies {
1077
- "cache": [Circular],
1078
- "config": Object {
1079
- "cache": [Circular],
1080
- "dataIdFromObject": [Function],
1081
- "possibleTypes": undefined,
1082
- "typePolicies": undefined,
1083
- },
1084
- "fuzzySubtypes": Map {},
1085
- "rootIdsByTypename": Object {
1086
- "Mutation": "ROOT_MUTATION",
1087
- "Query": "ROOT_QUERY",
1088
- "Subscription": "ROOT_SUBSCRIPTION",
1089
- },
1090
- "rootTypenamesById": Object {
1091
- "ROOT_MUTATION": "Mutation",
1092
- "ROOT_QUERY": "Query",
1093
- "ROOT_SUBSCRIPTION": "Subscription",
1094
- },
1095
- "supertypeMap": Map {},
1096
- "toBeAdded": Object {},
1097
- "typePolicies": Object {},
1098
- "usingPossibleTypes": false,
1099
- },
1100
- "refs": Object {},
1101
- "rootIds": Object {},
1102
- "storageTrie": Trie {
1103
- "makeData": [Function],
1104
- "weakness": true,
1105
- },
1106
- "stump": [Circular],
1107
- "toReference": [Function],
1108
- },
1109
- "policies": Policies {
1110
- "cache": [Circular],
1111
- "config": Object {
1112
- "cache": [Circular],
1113
- "dataIdFromObject": [Function],
1114
- "possibleTypes": undefined,
1115
- "typePolicies": undefined,
1116
- },
1117
- "fuzzySubtypes": Map {},
1118
- "rootIdsByTypename": Object {
1119
- "Mutation": "ROOT_MUTATION",
1120
- "Query": "ROOT_QUERY",
1121
- "Subscription": "ROOT_SUBSCRIPTION",
1122
- },
1123
- "rootTypenamesById": Object {
1124
- "ROOT_MUTATION": "Mutation",
1125
- "ROOT_QUERY": "Query",
1126
- "ROOT_SUBSCRIPTION": "Subscription",
1127
- },
1128
- "supertypeMap": Map {},
1129
- "toBeAdded": Object {},
1130
- "typePolicies": Object {},
1131
- "usingPossibleTypes": false,
1132
- },
1133
- "refs": Object {},
1134
- "replay": [Function],
1135
- "rootIds": Object {},
1136
- "toReference": [Function],
1137
- },
1138
- "policies": Policies {
1139
- "cache": [Circular],
1140
- "config": Object {
1141
- "cache": [Circular],
1142
- "dataIdFromObject": [Function],
1143
- "possibleTypes": undefined,
1144
- "typePolicies": undefined,
1145
- },
1146
- "fuzzySubtypes": Map {},
1147
- "rootIdsByTypename": Object {
1148
- "Mutation": "ROOT_MUTATION",
1149
- "Query": "ROOT_QUERY",
1150
- "Subscription": "ROOT_SUBSCRIPTION",
1151
- },
1152
- "rootTypenamesById": Object {
1153
- "ROOT_MUTATION": "Mutation",
1154
- "ROOT_QUERY": "Query",
1155
- "ROOT_SUBSCRIPTION": "Subscription",
1156
- },
1157
- "supertypeMap": Map {},
1158
- "toBeAdded": Object {},
1159
- "typePolicies": Object {},
1160
- "usingPossibleTypes": false,
1161
- },
1162
- "storeReader": StoreReader {
1163
- "canon": ObjectCanon {
1164
- "empty": Object {},
1165
- "keysByJSON": Map {
1166
- "[]" => Object {
1167
- "json": "[]",
1168
- "sorted": Array [],
1169
- },
1170
- },
1171
- "known": WeakSet {},
1172
- "passes": WeakMap {},
1173
- "pool": Trie {
1174
- "data": Object {
1175
- "keys": Object {
1176
- "json": "[]",
1177
- "sorted": Array [],
1178
- },
1179
- },
1180
- "makeData": [Function],
1181
- "weak": WeakMap {},
1182
- "weakness": true,
1183
- },
1184
- },
1185
- "config": Object {
1186
- "addTypename": true,
1187
- "cache": [Circular],
1188
- "canonizeResults": false,
1189
- },
1190
- "executeSelectionSet": [Function],
1191
- "executeSubSelectedArray": [Function],
1192
- "knownResults": WeakMap {},
1193
- },
1194
- "storeWriter": StoreWriter {
1195
- "cache": [Circular],
1196
- "reader": StoreReader {
1197
- "canon": ObjectCanon {
1198
- "empty": Object {},
1199
- "keysByJSON": Map {
1200
- "[]" => Object {
1201
- "json": "[]",
1202
- "sorted": Array [],
1203
- },
1204
- },
1205
- "known": WeakSet {},
1206
- "passes": WeakMap {},
1207
- "pool": Trie {
1208
- "data": Object {
1209
- "keys": Object {
1210
- "json": "[]",
1211
- "sorted": Array [],
1212
- },
1213
- },
1214
- "makeData": [Function],
1215
- "weak": WeakMap {},
1216
- "weakness": true,
1217
- },
1218
- },
1219
- "config": Object {
1220
- "addTypename": true,
1221
- "cache": [Circular],
1222
- "canonizeResults": false,
1223
- },
1224
- "executeSelectionSet": [Function],
1225
- "executeSubSelectedArray": [Function],
1226
- "knownResults": WeakMap {},
1227
- },
1228
- },
1229
- "txCount": 0,
1230
- "typenameDocumentCache": Map {},
1231
- "watches": Set {},
1232
- },
1233
- "client": [Circular],
1234
- },
1235
- "mutationIdCounter": 1,
1236
- "mutationStore": Object {},
1237
- "onBroadcast": [Function],
1238
- "queries": Map {},
1239
- "queryDeduplication": true,
1240
- "queryIdCounter": 1,
1241
- "requestIdCounter": 1,
1242
- "ssrMode": false,
1243
- "transformCache": WeakMap {},
1244
- },
1245
- "reFetchObservableQueries": [Function],
1246
- "resetStore": [Function],
1247
- "resetStoreCallbacks": Array [],
1248
- "typeDefs": undefined,
1249
- "version": "3.4.17",
1250
- "watchQuery": [Function],
1251
- }
1252
- }
1253
- >
1254
- <DownloadLink
1255
- datasetId="ds000001"
1256
- snapshotTag="1.0.0"
1257
- />
1258
- </ApolloProvider>
4
+ <DocumentFragment>
5
+ <div
6
+ class="download-link"
7
+ >
8
+ <h4>
9
+ Download with your browser
10
+ </h4>
11
+ <p>
12
+ This method is convenient and allows you to select a local directory to download the dataset to.
13
+ </p>
14
+ <h5>
15
+ Steps
16
+ </h5>
17
+ <ol>
18
+ <li>
19
+ Select a local directory to save the dataset and grant permission to OpenNeuro to read and write into this directory.
20
+ </li>
21
+ <li>
22
+ Download will run in the background, please leave the site open while downloading.
23
+ </li>
24
+ <li>
25
+ A notification will appear when complete.
26
+ </li>
27
+ </ol>
28
+ <div
29
+ class="grid"
30
+ >
31
+ <div
32
+ class="col-align-middle"
33
+ >
34
+ <button
35
+ aria-label="Download"
36
+ class="on-button on-button--small on-button--primary icon-text undefined"
37
+ role="button"
38
+ type="button"
39
+ >
40
+ <i
41
+ aria-hidden="true"
42
+ class="fa fa-download css-0"
43
+ />
44
+ Download
45
+ </button>
46
+ </div>
47
+ </div>
48
+ </div>
49
+ </DocumentFragment>
1259
50
  `;