@explorer-1/vue 0.2.65 → 0.2.66
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/components.d.ts +1 -1
- package/dist/explorer-1-vue.js +3787 -3764
- package/dist/explorer-1-vue.umd.cjs +14 -14
- package/dist/src/components/BlockRichTable/BlockRichTable.stories.d.ts +129 -0
- package/dist/src/components/BlockStreamfield/BlockStreamfield.stories.d.ts +125 -1
- package/dist/src/components/SearchFilterGroup/SearchFilterGroup.vue.d.ts +9 -0
- package/dist/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.stories.d.ts +336 -3
- package/dist/src/templates/edu/PageEduStudentProject/PageEduStudentProject.stories.d.ts +195 -2
- package/dist/src/templates/www/PageAsteroidWatchIndex/PageAsteroidWatchIndex.stories.d.ts +112 -1
- package/dist/style.css +1 -1
- package/lib/main.ts +0 -2
- package/package.json +2 -2
- package/src/components/BlockHeading/BlockHeading.vue +1 -1
- package/src/components/BlockKeyPoints/BlockKeyPoints.vue +1 -1
- package/src/components/BlockRichTable/BlockRichTable.stories.js +23 -4
- package/src/components/BlockRichTable/BlockRichTable.vue +10 -10
- package/src/components/BlockStreamfield/BlockStreamfield.stories.js +9 -4
- package/src/components/BlockStreamfield/BlockStreamfield.vue +4 -12
- package/src/components/BlockText/BlockText.stories.js +51 -2
- package/src/components/NavDesktop/NavDesktopTopHat.vue +12 -2
- package/src/components/NavJumpMenu/NavJumpMenu.stories.js +17 -0
- package/src/components/NavJumpMenu/NavJumpMenu.vue +1 -0
- package/src/components/NavSearchForm/NavSearchForm.vue +6 -1
- package/src/components/NavSecondary/NavSecondaryDropdownContent.vue +4 -2
- package/src/templates/edu/PageEduExplainerArticle/PageEduExplainerArticle.vue +2 -2
- package/src/templates/edu/PageEduGalleryDetail/PageEduGalleryDetail.vue +2 -2
- package/src/templates/edu/PageEduNewsDetail/PageEduNewsDetail.vue +0 -13
- package/src/templates/edu/PageEduStudentProject/PageEduStudentProject.stories.js +13 -2
- package/src/templates/edu/PageEduStudentProject/PageEduStudentProject.vue +2 -2
- package/src/templates/edu/PageEduStudentProject/PageEduStudentProjectSection.vue +25 -4
- package/dist/src/components/BlockTable/BlockTable.stories.d.ts +0 -17
- package/dist/src/components/BlockTable/BlockTable.vue.d.ts +0 -17
- package/src/components/BlockTable/BlockTable.stories.js +0 -20
- package/src/components/BlockTable/BlockTable.vue +0 -69
|
@@ -230,6 +230,120 @@ export namespace BaseStory {
|
|
|
230
230
|
detailUrl: string;
|
|
231
231
|
};
|
|
232
232
|
displayCaption: boolean;
|
|
233
|
+
} | {
|
|
234
|
+
blockType: string;
|
|
235
|
+
tableCaption: string;
|
|
236
|
+
tableContent: {
|
|
237
|
+
tableHead: {
|
|
238
|
+
text: string;
|
|
239
|
+
}[][];
|
|
240
|
+
tableBody: ({
|
|
241
|
+
caption: string;
|
|
242
|
+
displayCaption: boolean;
|
|
243
|
+
blockType: string;
|
|
244
|
+
fullBleed: boolean;
|
|
245
|
+
image: {
|
|
246
|
+
alt: string;
|
|
247
|
+
caption: string;
|
|
248
|
+
credit: string;
|
|
249
|
+
detailUrl: string;
|
|
250
|
+
original: string;
|
|
251
|
+
src: {
|
|
252
|
+
height: number;
|
|
253
|
+
url: string;
|
|
254
|
+
width: number;
|
|
255
|
+
};
|
|
256
|
+
srcSet: string;
|
|
257
|
+
};
|
|
258
|
+
imageFullBleed: {
|
|
259
|
+
alt: string;
|
|
260
|
+
caption: string;
|
|
261
|
+
credit: string;
|
|
262
|
+
detailUrl: string;
|
|
263
|
+
original: string;
|
|
264
|
+
src: {
|
|
265
|
+
width: number;
|
|
266
|
+
height: number;
|
|
267
|
+
url: string;
|
|
268
|
+
};
|
|
269
|
+
srcCropped: {
|
|
270
|
+
width: number;
|
|
271
|
+
height: number;
|
|
272
|
+
url: string;
|
|
273
|
+
};
|
|
274
|
+
screenXs: {
|
|
275
|
+
url: string;
|
|
276
|
+
width: number;
|
|
277
|
+
};
|
|
278
|
+
screenLg: {
|
|
279
|
+
url: string;
|
|
280
|
+
width: number;
|
|
281
|
+
};
|
|
282
|
+
screenXl: {
|
|
283
|
+
url: string;
|
|
284
|
+
width: number;
|
|
285
|
+
};
|
|
286
|
+
screenThreexl: {
|
|
287
|
+
url: string;
|
|
288
|
+
width: number;
|
|
289
|
+
};
|
|
290
|
+
};
|
|
291
|
+
value?: undefined;
|
|
292
|
+
} | {
|
|
293
|
+
blockType: string;
|
|
294
|
+
fullBleed: boolean;
|
|
295
|
+
image: {
|
|
296
|
+
alt: string;
|
|
297
|
+
caption: string;
|
|
298
|
+
credit: string;
|
|
299
|
+
detailUrl: string;
|
|
300
|
+
original: string;
|
|
301
|
+
src: {
|
|
302
|
+
height: number;
|
|
303
|
+
url: string;
|
|
304
|
+
width: number;
|
|
305
|
+
};
|
|
306
|
+
srcSet: string;
|
|
307
|
+
};
|
|
308
|
+
imageFullBleed: {
|
|
309
|
+
alt: string;
|
|
310
|
+
caption: string;
|
|
311
|
+
credit: string;
|
|
312
|
+
detailUrl: string;
|
|
313
|
+
original: string;
|
|
314
|
+
src: {
|
|
315
|
+
width: number;
|
|
316
|
+
height: number;
|
|
317
|
+
url: string;
|
|
318
|
+
};
|
|
319
|
+
srcCropped: {
|
|
320
|
+
width: number;
|
|
321
|
+
height: number;
|
|
322
|
+
url: string;
|
|
323
|
+
};
|
|
324
|
+
screenXs: {
|
|
325
|
+
url: string;
|
|
326
|
+
width: number;
|
|
327
|
+
};
|
|
328
|
+
screenLg: {
|
|
329
|
+
url: string;
|
|
330
|
+
width: number;
|
|
331
|
+
};
|
|
332
|
+
screenXl: {
|
|
333
|
+
url: string;
|
|
334
|
+
width: number;
|
|
335
|
+
};
|
|
336
|
+
screenThreexl: {
|
|
337
|
+
url: string;
|
|
338
|
+
width: number;
|
|
339
|
+
};
|
|
340
|
+
};
|
|
341
|
+
value?: undefined;
|
|
342
|
+
} | {
|
|
343
|
+
blockType: string;
|
|
344
|
+
value: string;
|
|
345
|
+
})[][];
|
|
346
|
+
};
|
|
233
347
|
} | {
|
|
234
348
|
blockType: string;
|
|
235
349
|
value: string;
|
|
@@ -280,10 +394,89 @@ export namespace BaseStory {
|
|
|
280
394
|
};
|
|
281
395
|
caption: string;
|
|
282
396
|
}[];
|
|
283
|
-
content: {
|
|
397
|
+
content: ({
|
|
398
|
+
blockType: string;
|
|
399
|
+
fullBleed: boolean;
|
|
400
|
+
image: {
|
|
401
|
+
alt: string;
|
|
402
|
+
caption: string;
|
|
403
|
+
credit: string;
|
|
404
|
+
detailUrl: string;
|
|
405
|
+
original: string;
|
|
406
|
+
src: {
|
|
407
|
+
height: number;
|
|
408
|
+
url: string;
|
|
409
|
+
width: number;
|
|
410
|
+
};
|
|
411
|
+
srcSet: string;
|
|
412
|
+
};
|
|
413
|
+
imageFullBleed: {
|
|
414
|
+
alt: string;
|
|
415
|
+
caption: string;
|
|
416
|
+
credit: string;
|
|
417
|
+
detailUrl: string;
|
|
418
|
+
original: string;
|
|
419
|
+
src: {
|
|
420
|
+
width: number;
|
|
421
|
+
height: number;
|
|
422
|
+
url: string;
|
|
423
|
+
};
|
|
424
|
+
srcCropped: {
|
|
425
|
+
width: number;
|
|
426
|
+
height: number;
|
|
427
|
+
url: string;
|
|
428
|
+
};
|
|
429
|
+
screenXs: {
|
|
430
|
+
url: string;
|
|
431
|
+
width: number;
|
|
432
|
+
};
|
|
433
|
+
screenLg: {
|
|
434
|
+
url: string;
|
|
435
|
+
width: number;
|
|
436
|
+
};
|
|
437
|
+
screenXl: {
|
|
438
|
+
url: string;
|
|
439
|
+
width: number;
|
|
440
|
+
};
|
|
441
|
+
screenThreexl: {
|
|
442
|
+
url: string;
|
|
443
|
+
width: number;
|
|
444
|
+
};
|
|
445
|
+
};
|
|
446
|
+
} | {
|
|
447
|
+
blockType: string;
|
|
448
|
+
text: string;
|
|
449
|
+
alignTo: string;
|
|
450
|
+
image: {
|
|
451
|
+
alt: string;
|
|
452
|
+
src: {
|
|
453
|
+
height: number;
|
|
454
|
+
url: string;
|
|
455
|
+
width: number;
|
|
456
|
+
};
|
|
457
|
+
original: string;
|
|
458
|
+
caption: string;
|
|
459
|
+
credit: string;
|
|
460
|
+
detailUrl: string;
|
|
461
|
+
};
|
|
462
|
+
displayCaption: boolean;
|
|
463
|
+
} | {
|
|
464
|
+
blockType: string;
|
|
465
|
+
heading: string;
|
|
466
|
+
listItem: {
|
|
467
|
+
text: string;
|
|
468
|
+
}[];
|
|
469
|
+
} | {
|
|
284
470
|
blockType: string;
|
|
285
471
|
value: string;
|
|
286
|
-
}
|
|
472
|
+
} | {
|
|
473
|
+
blockId: string;
|
|
474
|
+
blockType: string;
|
|
475
|
+
heading: string;
|
|
476
|
+
level: string;
|
|
477
|
+
size: string;
|
|
478
|
+
value?: undefined;
|
|
479
|
+
})[];
|
|
287
480
|
})[];
|
|
288
481
|
export let customSections: {
|
|
289
482
|
blockType: string;
|
|
@@ -324,7 +324,118 @@ export namespace BaseStory {
|
|
|
324
324
|
})[];
|
|
325
325
|
} | {
|
|
326
326
|
blockType: string;
|
|
327
|
-
|
|
327
|
+
tableCaption: string;
|
|
328
|
+
tableContent: {
|
|
329
|
+
tableHead: {
|
|
330
|
+
text: string;
|
|
331
|
+
}[][];
|
|
332
|
+
tableBody: ({
|
|
333
|
+
caption: string;
|
|
334
|
+
displayCaption: boolean;
|
|
335
|
+
blockType: string;
|
|
336
|
+
fullBleed: boolean;
|
|
337
|
+
image: {
|
|
338
|
+
alt: string;
|
|
339
|
+
caption: string;
|
|
340
|
+
credit: string;
|
|
341
|
+
detailUrl: string;
|
|
342
|
+
original: string;
|
|
343
|
+
src: {
|
|
344
|
+
height: number;
|
|
345
|
+
url: string;
|
|
346
|
+
width: number;
|
|
347
|
+
};
|
|
348
|
+
srcSet: string;
|
|
349
|
+
};
|
|
350
|
+
imageFullBleed: {
|
|
351
|
+
alt: string;
|
|
352
|
+
caption: string;
|
|
353
|
+
credit: string;
|
|
354
|
+
detailUrl: string;
|
|
355
|
+
original: string;
|
|
356
|
+
src: {
|
|
357
|
+
width: number;
|
|
358
|
+
height: number;
|
|
359
|
+
url: string;
|
|
360
|
+
};
|
|
361
|
+
srcCropped: {
|
|
362
|
+
width: number;
|
|
363
|
+
height: number;
|
|
364
|
+
url: string;
|
|
365
|
+
};
|
|
366
|
+
screenXs: {
|
|
367
|
+
url: string;
|
|
368
|
+
width: number;
|
|
369
|
+
};
|
|
370
|
+
screenLg: {
|
|
371
|
+
url: string;
|
|
372
|
+
width: number;
|
|
373
|
+
};
|
|
374
|
+
screenXl: {
|
|
375
|
+
url: string;
|
|
376
|
+
width: number;
|
|
377
|
+
};
|
|
378
|
+
screenThreexl: {
|
|
379
|
+
url: string;
|
|
380
|
+
width: number;
|
|
381
|
+
};
|
|
382
|
+
};
|
|
383
|
+
value?: undefined;
|
|
384
|
+
} | {
|
|
385
|
+
blockType: string;
|
|
386
|
+
fullBleed: boolean;
|
|
387
|
+
image: {
|
|
388
|
+
alt: string;
|
|
389
|
+
caption: string;
|
|
390
|
+
credit: string;
|
|
391
|
+
detailUrl: string;
|
|
392
|
+
original: string;
|
|
393
|
+
src: {
|
|
394
|
+
height: number;
|
|
395
|
+
url: string;
|
|
396
|
+
width: number;
|
|
397
|
+
};
|
|
398
|
+
srcSet: string;
|
|
399
|
+
};
|
|
400
|
+
imageFullBleed: {
|
|
401
|
+
alt: string;
|
|
402
|
+
caption: string;
|
|
403
|
+
credit: string;
|
|
404
|
+
detailUrl: string;
|
|
405
|
+
original: string;
|
|
406
|
+
src: {
|
|
407
|
+
width: number;
|
|
408
|
+
height: number;
|
|
409
|
+
url: string;
|
|
410
|
+
};
|
|
411
|
+
srcCropped: {
|
|
412
|
+
width: number;
|
|
413
|
+
height: number;
|
|
414
|
+
url: string;
|
|
415
|
+
};
|
|
416
|
+
screenXs: {
|
|
417
|
+
url: string;
|
|
418
|
+
width: number;
|
|
419
|
+
};
|
|
420
|
+
screenLg: {
|
|
421
|
+
url: string;
|
|
422
|
+
width: number;
|
|
423
|
+
};
|
|
424
|
+
screenXl: {
|
|
425
|
+
url: string;
|
|
426
|
+
width: number;
|
|
427
|
+
};
|
|
428
|
+
screenThreexl: {
|
|
429
|
+
url: string;
|
|
430
|
+
width: number;
|
|
431
|
+
};
|
|
432
|
+
};
|
|
433
|
+
value?: undefined;
|
|
434
|
+
} | {
|
|
435
|
+
blockType: string;
|
|
436
|
+
value: string;
|
|
437
|
+
})[][];
|
|
438
|
+
};
|
|
328
439
|
} | {
|
|
329
440
|
blockType: string;
|
|
330
441
|
title: string;
|