hr-design-system-handlebars 1.51.9 → 1.51.11
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/CHANGELOG.md +24 -0
- package/dist/assets/icons/icons/svgmap/quotation.svg +10 -0
- package/dist/assets/icons/icons/svgmap.min.svg +1 -1
- package/dist/assets/index.css +231 -15
- package/dist/views/components/banner/header/banner_wrapper.hbs +1 -1
- package/dist/views/components/content/copytext/components/cite.hbs +7 -5
- package/dist/views/components/content/copytext/components/paragraph.hbs +4 -4
- package/dist/views_static/components/banner/header/banner_wrapper.hbs +1 -1
- package/dist/views_static/components/content/copytext/components/cite.hbs +7 -5
- package/dist/views_static/components/content/copytext/components/paragraph.hbs +4 -4
- package/package.json +1 -1
- package/src/assets/fixtures/content/copytext/copytext.inc.json +73 -6
- package/src/assets/fixtures/content/copytext/copytext_cite.json +4 -0
- package/src/assets/icons/icons/svgmap/quotation.svg +10 -0
- package/src/assets/icons/icons/svgmap.min.svg +1 -1
- package/src/stories/views/components/banner/header/banner_wrapper.hbs +1 -1
- package/src/stories/views/components/content/copytext/components/cite.hbs +7 -5
- package/src/stories/views/components/content/copytext/components/paragraph.hbs +4 -4
- package/src/stories/views/components/content/copytext/copytext.stories.js +7 -0
- package/src/stories/views/components/content/copytext/fixtures/copytext.json +1 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_cite.json +1 -0
package/dist/assets/index.css
CHANGED
|
@@ -1229,6 +1229,10 @@ article.indexText ul {
|
|
|
1229
1229
|
margin-left: 1.25rem;
|
|
1230
1230
|
margin-right: 1.25rem;
|
|
1231
1231
|
}
|
|
1232
|
+
.mx-8 {
|
|
1233
|
+
margin-left: 2rem;
|
|
1234
|
+
margin-right: 2rem;
|
|
1235
|
+
}
|
|
1232
1236
|
.mx-auto {
|
|
1233
1237
|
margin-left: auto;
|
|
1234
1238
|
margin-right: auto;
|
|
@@ -1430,6 +1434,9 @@ article.indexText ul {
|
|
|
1430
1434
|
.mt-\[1px\] {
|
|
1431
1435
|
margin-top: 1px;
|
|
1432
1436
|
}
|
|
1437
|
+
.mt-px {
|
|
1438
|
+
margin-top: 1px;
|
|
1439
|
+
}
|
|
1433
1440
|
.box-border {
|
|
1434
1441
|
box-sizing: border-box;
|
|
1435
1442
|
}
|
|
@@ -2817,6 +2824,9 @@ article.indexText ul {
|
|
|
2817
2824
|
.italic {
|
|
2818
2825
|
font-style: italic;
|
|
2819
2826
|
}
|
|
2827
|
+
.not-italic {
|
|
2828
|
+
font-style: normal;
|
|
2829
|
+
}
|
|
2820
2830
|
.\!leading-6 {
|
|
2821
2831
|
line-height: 1.5rem !important;
|
|
2822
2832
|
}
|
|
@@ -3208,7 +3218,7 @@ article.indexText ul {
|
|
|
3208
3218
|
border-bottom-color: var(--color-secondary-ds);
|
|
3209
3219
|
}
|
|
3210
3220
|
.counter-reset {
|
|
3211
|
-
counter-reset:
|
|
3221
|
+
counter-reset: cnt1703256994857;
|
|
3212
3222
|
}
|
|
3213
3223
|
.hyphens-auto {
|
|
3214
3224
|
-webkit-hyphens: auto;
|
|
@@ -3510,7 +3520,7 @@ article.indexText ul {
|
|
|
3510
3520
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3511
3521
|
}
|
|
3512
3522
|
.-ordered {
|
|
3513
|
-
counter-increment:
|
|
3523
|
+
counter-increment: cnt1703256994857 1;
|
|
3514
3524
|
}
|
|
3515
3525
|
.-ordered::before {
|
|
3516
3526
|
position: absolute;
|
|
@@ -3526,7 +3536,7 @@ article.indexText ul {
|
|
|
3526
3536
|
letter-spacing: .0125em;
|
|
3527
3537
|
--tw-text-opacity: 1;
|
|
3528
3538
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3529
|
-
content: counter(
|
|
3539
|
+
content: counter(cnt1703256994857);
|
|
3530
3540
|
}
|
|
3531
3541
|
/*! ****************************/
|
|
3532
3542
|
/*! DataPolicy stuff */
|
|
@@ -5262,6 +5272,64 @@ article.indexText ul {
|
|
|
5262
5272
|
.print\:overflow-auto {
|
|
5263
5273
|
overflow: auto;
|
|
5264
5274
|
}
|
|
5275
|
+
.print\:ar-auto {
|
|
5276
|
+
aspect-ratio: auto;
|
|
5277
|
+
}
|
|
5278
|
+
|
|
5279
|
+
@supports not (aspect-ratio: auto) {
|
|
5280
|
+
.print\:ar-auto::before {
|
|
5281
|
+
float: left;
|
|
5282
|
+
padding-top: 0;
|
|
5283
|
+
content: '';
|
|
5284
|
+
}
|
|
5285
|
+
|
|
5286
|
+
.print\:ar-auto::after {
|
|
5287
|
+
display: block;
|
|
5288
|
+
content: '';
|
|
5289
|
+
clear: both;
|
|
5290
|
+
}
|
|
5291
|
+
.print\:ar-auto::before {
|
|
5292
|
+
float: left;
|
|
5293
|
+
padding-top: 0;
|
|
5294
|
+
content: '';
|
|
5295
|
+
}
|
|
5296
|
+
|
|
5297
|
+
.print\:ar-auto::after {
|
|
5298
|
+
display: block;
|
|
5299
|
+
content: '';
|
|
5300
|
+
clear: both;
|
|
5301
|
+
}
|
|
5302
|
+
}
|
|
5303
|
+
.print\:ar-auto {
|
|
5304
|
+
aspect-ratio: auto;
|
|
5305
|
+
}
|
|
5306
|
+
|
|
5307
|
+
@supports not (aspect-ratio: auto) {
|
|
5308
|
+
.print\:ar-auto::before {
|
|
5309
|
+
float: none;
|
|
5310
|
+
float: initial;
|
|
5311
|
+
padding-top: 0;
|
|
5312
|
+
content: '';
|
|
5313
|
+
}
|
|
5314
|
+
|
|
5315
|
+
.print\:ar-auto::after {
|
|
5316
|
+
display: inline;
|
|
5317
|
+
content: '';
|
|
5318
|
+
clear: none;
|
|
5319
|
+
}
|
|
5320
|
+
.print\:ar-auto::before {
|
|
5321
|
+
float: none;
|
|
5322
|
+
float: initial;
|
|
5323
|
+
padding-top: 0;
|
|
5324
|
+
content: '';
|
|
5325
|
+
}
|
|
5326
|
+
|
|
5327
|
+
.print\:ar-auto::after {
|
|
5328
|
+
display: inline;
|
|
5329
|
+
content: '';
|
|
5330
|
+
clear: none;
|
|
5331
|
+
}
|
|
5332
|
+
}
|
|
5265
5333
|
}
|
|
5266
5334
|
@media (min-width: 360px) {
|
|
5267
5335
|
|
|
@@ -5279,6 +5347,11 @@ article.indexText ul {
|
|
|
5279
5347
|
}
|
|
5280
5348
|
@media (min-width: 480px) {
|
|
5281
5349
|
|
|
5350
|
+
.sm480\:mx-10 {
|
|
5351
|
+
margin-left: 2.5rem;
|
|
5352
|
+
margin-right: 2.5rem;
|
|
5353
|
+
}
|
|
5354
|
+
|
|
5282
5355
|
.sm480\:mx-auto {
|
|
5283
5356
|
margin-left: auto;
|
|
5284
5357
|
margin-right: auto;
|
|
@@ -5305,10 +5378,18 @@ article.indexText ul {
|
|
|
5305
5378
|
margin-top: 1.25rem;
|
|
5306
5379
|
}
|
|
5307
5380
|
|
|
5381
|
+
.sm480\:h-8 {
|
|
5382
|
+
height: 2rem;
|
|
5383
|
+
}
|
|
5384
|
+
|
|
5308
5385
|
.sm480\:w-2\/3 {
|
|
5309
5386
|
width: 66.666667%;
|
|
5310
5387
|
}
|
|
5311
5388
|
|
|
5389
|
+
.sm480\:w-8 {
|
|
5390
|
+
width: 2rem;
|
|
5391
|
+
}
|
|
5392
|
+
|
|
5312
5393
|
.sm480\:pb-7 {
|
|
5313
5394
|
padding-bottom: 1.75rem;
|
|
5314
5395
|
}
|
|
@@ -5429,6 +5510,69 @@ article.indexText ul {
|
|
|
5429
5510
|
}
|
|
5430
5511
|
}
|
|
5431
5512
|
}
|
|
5513
|
+
@media print {
|
|
5514
|
+
|
|
5515
|
+
@media (min-width: 480px) {
|
|
5516
|
+
.print\:sm480\:ar-auto {
|
|
5517
|
+
aspect-ratio: auto;
|
|
5518
|
+
}
|
|
5519
|
+
|
|
5520
|
+
@supports not (aspect-ratio: auto) {
|
|
5521
|
+
.print\:sm480\:ar-auto::before {
|
|
5522
|
+
float: left;
|
|
5523
|
+
padding-top: 0;
|
|
5524
|
+
content: '';
|
|
5525
|
+
}
|
|
5526
|
+
|
|
5527
|
+
.print\:sm480\:ar-auto::after {
|
|
5528
|
+
display: block;
|
|
5529
|
+
content: '';
|
|
5530
|
+
clear: both;
|
|
5531
|
+
}
|
|
5532
|
+
.print\:sm480\:ar-auto::before {
|
|
5533
|
+
float: left;
|
|
5534
|
+
padding-top: 0;
|
|
5535
|
+
content: '';
|
|
5536
|
+
}
|
|
5537
|
+
|
|
5538
|
+
.print\:sm480\:ar-auto::after {
|
|
5539
|
+
display: block;
|
|
5540
|
+
content: '';
|
|
5541
|
+
clear: both;
|
|
5542
|
+
}
|
|
5543
|
+
}
|
|
5544
|
+
.print\:sm480\:ar-auto {
|
|
5545
|
+
aspect-ratio: auto;
|
|
5546
|
+
}
|
|
5547
|
+
|
|
5548
|
+
@supports not (aspect-ratio: auto) {
|
|
5549
|
+
.print\:sm480\:ar-auto::before {
|
|
5550
|
+
float: none;
|
|
5551
|
+
float: initial;
|
|
5552
|
+
padding-top: 0;
|
|
5553
|
+
content: '';
|
|
5554
|
+
}
|
|
5555
|
+
|
|
5556
|
+
.print\:sm480\:ar-auto::after {
|
|
5557
|
+
display: inline;
|
|
5558
|
+
content: '';
|
|
5559
|
+
clear: none;
|
|
5560
|
+
}
|
|
5561
|
+
.print\:sm480\:ar-auto::before {
|
|
5562
|
+
float: none;
|
|
5563
|
+
float: initial;
|
|
5564
|
+
padding-top: 0;
|
|
5565
|
+
content: '';
|
|
5566
|
+
}
|
|
5567
|
+
|
|
5568
|
+
.print\:sm480\:ar-auto::after {
|
|
5569
|
+
display: inline;
|
|
5570
|
+
content: '';
|
|
5571
|
+
clear: none;
|
|
5572
|
+
}
|
|
5573
|
+
}
|
|
5574
|
+
}
|
|
5575
|
+
}
|
|
5432
5576
|
@media (min-width: 640px) {
|
|
5433
5577
|
|
|
5434
5578
|
.sm\:not-sr-only {
|
|
@@ -5466,11 +5610,20 @@ article.indexText ul {
|
|
|
5466
5610
|
order: 2;
|
|
5467
5611
|
}
|
|
5468
5612
|
|
|
5613
|
+
.sm\:float-left {
|
|
5614
|
+
float: left;
|
|
5615
|
+
}
|
|
5616
|
+
|
|
5469
5617
|
.sm\:mx-0 {
|
|
5470
5618
|
margin-left: 0px;
|
|
5471
5619
|
margin-right: 0px;
|
|
5472
5620
|
}
|
|
5473
5621
|
|
|
5622
|
+
.sm\:mx-14 {
|
|
5623
|
+
margin-left: 3.5rem;
|
|
5624
|
+
margin-right: 3.5rem;
|
|
5625
|
+
}
|
|
5626
|
+
|
|
5474
5627
|
.sm\:mx-8 {
|
|
5475
5628
|
margin-left: 2rem;
|
|
5476
5629
|
margin-right: 2rem;
|
|
@@ -5480,10 +5633,18 @@ article.indexText ul {
|
|
|
5480
5633
|
margin-bottom: 1.75rem;
|
|
5481
5634
|
}
|
|
5482
5635
|
|
|
5636
|
+
.sm\:ml-4 {
|
|
5637
|
+
margin-left: 1rem;
|
|
5638
|
+
}
|
|
5639
|
+
|
|
5483
5640
|
.sm\:ml-8 {
|
|
5484
5641
|
margin-left: 2rem;
|
|
5485
5642
|
}
|
|
5486
5643
|
|
|
5644
|
+
.sm\:mr-5 {
|
|
5645
|
+
margin-right: 1.25rem;
|
|
5646
|
+
}
|
|
5647
|
+
|
|
5487
5648
|
.sm\:mr-6 {
|
|
5488
5649
|
margin-right: 1.5rem;
|
|
5489
5650
|
}
|
|
@@ -5500,6 +5661,10 @@ article.indexText ul {
|
|
|
5500
5661
|
display: block;
|
|
5501
5662
|
}
|
|
5502
5663
|
|
|
5664
|
+
.sm\:w-1\/2 {
|
|
5665
|
+
width: 50%;
|
|
5666
|
+
}
|
|
5667
|
+
|
|
5503
5668
|
.sm\:w-5\/12 {
|
|
5504
5669
|
width: 41.666667%;
|
|
5505
5670
|
}
|
|
@@ -5774,10 +5939,6 @@ article.indexText ul {
|
|
|
5774
5939
|
grid-column: span 9 / span 9;
|
|
5775
5940
|
}
|
|
5776
5941
|
|
|
5777
|
-
.md\:float-left {
|
|
5778
|
-
float: left;
|
|
5779
|
-
}
|
|
5780
|
-
|
|
5781
5942
|
.md\:m-3 {
|
|
5782
5943
|
margin: 0.75rem;
|
|
5783
5944
|
}
|
|
@@ -5816,10 +5977,6 @@ article.indexText ul {
|
|
|
5816
5977
|
margin-bottom: 0.75rem;
|
|
5817
5978
|
}
|
|
5818
5979
|
|
|
5819
|
-
.md\:mb-7 {
|
|
5820
|
-
margin-bottom: 1.75rem;
|
|
5821
|
-
}
|
|
5822
|
-
|
|
5823
5980
|
.md\:mb-8 {
|
|
5824
5981
|
margin-bottom: 2rem;
|
|
5825
5982
|
}
|
|
@@ -5832,10 +5989,6 @@ article.indexText ul {
|
|
|
5832
5989
|
margin-left: 1rem;
|
|
5833
5990
|
}
|
|
5834
5991
|
|
|
5835
|
-
.md\:ml-6 {
|
|
5836
|
-
margin-left: 1.5rem;
|
|
5837
|
-
}
|
|
5838
|
-
|
|
5839
5992
|
.md\:mr-5 {
|
|
5840
5993
|
margin-right: 1.25rem;
|
|
5841
5994
|
}
|
|
@@ -6358,6 +6511,69 @@ article.indexText ul {
|
|
|
6358
6511
|
padding-top: 0px;
|
|
6359
6512
|
}
|
|
6360
6513
|
}
|
|
6514
|
+
@media print {
|
|
6515
|
+
|
|
6516
|
+
@media (min-width: 768px) {
|
|
6517
|
+
.print\:md\:ar-auto {
|
|
6518
|
+
aspect-ratio: auto;
|
|
6519
|
+
}
|
|
6520
|
+
|
|
6521
|
+
@supports not (aspect-ratio: auto) {
|
|
6522
|
+
.print\:md\:ar-auto::before {
|
|
6523
|
+
float: left;
|
|
6524
|
+
padding-top: 0;
|
|
6525
|
+
content: '';
|
|
6526
|
+
}
|
|
6527
|
+
|
|
6528
|
+
.print\:md\:ar-auto::after {
|
|
6529
|
+
display: block;
|
|
6530
|
+
content: '';
|
|
6531
|
+
clear: both;
|
|
6532
|
+
}
|
|
6533
|
+
.print\:md\:ar-auto::before {
|
|
6534
|
+
float: left;
|
|
6535
|
+
padding-top: 0;
|
|
6536
|
+
content: '';
|
|
6537
|
+
}
|
|
6538
|
+
|
|
6539
|
+
.print\:md\:ar-auto::after {
|
|
6540
|
+
display: block;
|
|
6541
|
+
content: '';
|
|
6542
|
+
clear: both;
|
|
6543
|
+
}
|
|
6544
|
+
}
|
|
6545
|
+
.print\:md\:ar-auto {
|
|
6546
|
+
aspect-ratio: auto;
|
|
6547
|
+
}
|
|
6548
|
+
|
|
6549
|
+
@supports not (aspect-ratio: auto) {
|
|
6550
|
+
.print\:md\:ar-auto::before {
|
|
6551
|
+
float: none;
|
|
6552
|
+
float: initial;
|
|
6553
|
+
padding-top: 0;
|
|
6554
|
+
content: '';
|
|
6555
|
+
}
|
|
6556
|
+
|
|
6557
|
+
.print\:md\:ar-auto::after {
|
|
6558
|
+
display: inline;
|
|
6559
|
+
content: '';
|
|
6560
|
+
clear: none;
|
|
6561
|
+
}
|
|
6562
|
+
.print\:md\:ar-auto::before {
|
|
6563
|
+
float: none;
|
|
6564
|
+
float: initial;
|
|
6565
|
+
padding-top: 0;
|
|
6566
|
+
content: '';
|
|
6567
|
+
}
|
|
6568
|
+
|
|
6569
|
+
.print\:md\:ar-auto::after {
|
|
6570
|
+
display: inline;
|
|
6571
|
+
content: '';
|
|
6572
|
+
clear: none;
|
|
6573
|
+
}
|
|
6574
|
+
}
|
|
6575
|
+
}
|
|
6576
|
+
}
|
|
6361
6577
|
@media (min-width: 1024px) {
|
|
6362
6578
|
|
|
6363
6579
|
.lg\:fixed {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div class="grid grid-page w-full order-2{{#if _hasBannerImage}} overflow-hidden print:overflow-auto -image{{else}} -text{{/if}}{{~#if _hideOnMobile}} -hideOnMobile{{/if}}">
|
|
2
2
|
<div role="banner" class="grid col-full sm:col-main relative{{#unless _hasBannerImage}} px-4 md:px-5 lg:px-10 bg-white dark:bg-black{{/unless}}">
|
|
3
|
-
<div class="relative {{#if _hasBannerImage}}-hasImage{{~#if _hideOnMobile}} ar-auto lg:ar-100-27 print:lg:ar-auto bg-white dark:bg-black{{else}} ar-16-9 sm480:ar-16-7 md:ar-100-27{{/if}}{{else}}pb-4 border-b border-gray-boulder{{/if}}">
|
|
3
|
+
<div class="relative {{#if _hasBannerImage}}-hasImage{{~#if _hideOnMobile}} ar-auto lg:ar-100-27 print:lg:ar-auto bg-white dark:bg-black{{else}} ar-16-9 sm480:ar-16-7 md:ar-100-27 print:ar-auto print:sm480:ar-auto print:md:ar-auto{{/if}}{{else}}pb-4 border-b border-gray-boulder{{/if}}">
|
|
4
4
|
{{> @partial-block }}
|
|
5
5
|
</div>
|
|
6
6
|
</div>
|
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
<div class="{{#if this.paragraphProperties.[0].showFullSize }}
|
|
1
|
+
<div class="{{#if this.paragraphProperties.[0].showFullSize }}mt-7{{else}}mr-0 sm:mr-5 mb-0 sm:mb-7 mt-7 w-full sm:w-1/2 sm:float-left{{/if}}">
|
|
2
|
+
{{> components/base/image/icon _icon="quotation" _addClass="sm:ml-4 mr-2 mt-px float-left text-gray-scorpion w-6 h-6 sm480:w-8 sm480:h-8 fill-current dark:fill-link-dark"}}
|
|
2
3
|
<span class="sr-only">{{loca "story_cite_intro_sr" }}</span>
|
|
3
|
-
<blockquote
|
|
4
|
-
<cite class="block text-base italic
|
|
4
|
+
<blockquote>
|
|
5
|
+
<cite class="block mx-8 text-base not-italic sm480:mx-10 font-headingSerif sm:mx-14 sm480:text-xl dark:text-text-dark">{{{this.text}}}</cite>
|
|
5
6
|
{{#with this.paragraphProperties}}
|
|
6
7
|
{{#with this.[0]}}
|
|
7
8
|
{{#with this.citeAuthor}}
|
|
8
|
-
<span class="block
|
|
9
|
+
<span class="block mx-8 mt-3 text-xs sm480:mx-10 sm480:text-sm sm:mx-14 font-headingSerif text-gray-scorpion dark:text-text-dark">
|
|
9
10
|
<span class="sr-only">{{loca "story_cite_author_sr" }}</span>
|
|
10
|
-
{{this}}
|
|
11
|
+
{{this}}
|
|
12
|
+
</span>
|
|
11
13
|
{{/with}}
|
|
12
14
|
{{/with}}
|
|
13
15
|
{{/with}}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{{#each this.text.split}}
|
|
2
2
|
{{#if this.isText}}
|
|
3
|
-
<p class="mt-6 text-base sm480:text-
|
|
3
|
+
<p class="mt-6 text-base sm480:text-xl dark:text-text-dark">{{{this.text}}}</p>
|
|
4
4
|
{{/if}}
|
|
5
5
|
{{#if this.isUl}}
|
|
6
|
-
<ul class="mt-6 ml-5 text-base list-disc sm480:text-
|
|
6
|
+
<ul class="mt-6 ml-5 text-base list-disc sm480:text-xl dark:text-text-dark">{{{this.text}}}</ul>
|
|
7
7
|
{{/if}}
|
|
8
8
|
{{#if this.isOl}}
|
|
9
|
-
<ol class="mt-6 ml-5 text-base list-decimal sm480:text-
|
|
9
|
+
<ol class="mt-6 ml-5 text-base list-decimal sm480:text-xl dark:text-text-dark">{{{this.text}}}</ol>
|
|
10
10
|
{{/if}}
|
|
11
|
-
{{/each}}
|
|
11
|
+
{{/each}}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div class="grid grid-page w-full order-2{{#if _hasBannerImage}} overflow-hidden print:overflow-auto -image{{else}} -text{{/if}}{{~#if _hideOnMobile}} -hideOnMobile{{/if}}">
|
|
2
2
|
<div role="banner" class="grid col-full sm:col-main relative{{#unless _hasBannerImage}} px-4 md:px-5 lg:px-10 bg-white dark:bg-black{{/unless}}">
|
|
3
|
-
<div class="relative {{#if _hasBannerImage}}-hasImage{{~#if _hideOnMobile}} ar-auto lg:ar-100-27 print:lg:ar-auto bg-white dark:bg-black{{else}} ar-16-9 sm480:ar-16-7 md:ar-100-27{{/if}}{{else}}pb-4 border-b border-gray-boulder{{/if}}">
|
|
3
|
+
<div class="relative {{#if _hasBannerImage}}-hasImage{{~#if _hideOnMobile}} ar-auto lg:ar-100-27 print:lg:ar-auto bg-white dark:bg-black{{else}} ar-16-9 sm480:ar-16-7 md:ar-100-27 print:ar-auto print:sm480:ar-auto print:md:ar-auto{{/if}}{{else}}pb-4 border-b border-gray-boulder{{/if}}">
|
|
4
4
|
{{> @partial-block }}
|
|
5
5
|
</div>
|
|
6
6
|
</div>
|
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
<div class="{{#if this.paragraphProperties.[0].showFullSize }}
|
|
1
|
+
<div class="{{#if this.paragraphProperties.[0].showFullSize }}mt-7{{else}}mr-0 sm:mr-5 mb-0 sm:mb-7 mt-7 w-full sm:w-1/2 sm:float-left{{/if}}">
|
|
2
|
+
{{> components/base/image/icon _icon="quotation" _addClass="sm:ml-4 mr-2 mt-px float-left text-gray-scorpion w-6 h-6 sm480:w-8 sm480:h-8 fill-current dark:fill-link-dark"}}
|
|
2
3
|
<span class="sr-only">{{loca "story_cite_intro_sr" }}</span>
|
|
3
|
-
<blockquote
|
|
4
|
-
<cite class="block text-base italic
|
|
4
|
+
<blockquote>
|
|
5
|
+
<cite class="block mx-8 text-base not-italic sm480:mx-10 font-headingSerif sm:mx-14 sm480:text-xl dark:text-text-dark">{{{this.text}}}</cite>
|
|
5
6
|
{{#with this.paragraphProperties}}
|
|
6
7
|
{{#with this.[0]}}
|
|
7
8
|
{{#with this.citeAuthor}}
|
|
8
|
-
<span class="block
|
|
9
|
+
<span class="block mx-8 mt-3 text-xs sm480:mx-10 sm480:text-sm sm:mx-14 font-headingSerif text-gray-scorpion dark:text-text-dark">
|
|
9
10
|
<span class="sr-only">{{loca "story_cite_author_sr" }}</span>
|
|
10
|
-
{{this}}
|
|
11
|
+
{{this}}
|
|
12
|
+
</span>
|
|
11
13
|
{{/with}}
|
|
12
14
|
{{/with}}
|
|
13
15
|
{{/with}}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{{#each this.text.split}}
|
|
2
2
|
{{#if this.isText}}
|
|
3
|
-
<p class="mt-6 text-base sm480:text-
|
|
3
|
+
<p class="mt-6 text-base sm480:text-xl dark:text-text-dark">{{{this.text}}}</p>
|
|
4
4
|
{{/if}}
|
|
5
5
|
{{#if this.isUl}}
|
|
6
|
-
<ul class="mt-6 ml-5 text-base list-disc sm480:text-
|
|
6
|
+
<ul class="mt-6 ml-5 text-base list-disc sm480:text-xl dark:text-text-dark">{{{this.text}}}</ul>
|
|
7
7
|
{{/if}}
|
|
8
8
|
{{#if this.isOl}}
|
|
9
|
-
<ol class="mt-6 ml-5 text-base list-decimal sm480:text-
|
|
9
|
+
<ol class="mt-6 ml-5 text-base list-decimal sm480:text-xl dark:text-text-dark">{{{this.text}}}</ol>
|
|
10
10
|
{{/if}}
|
|
11
|
-
{{/each}}
|
|
11
|
+
{{/each}}
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"repository": "https://github.com/szuelch/hr-design-system-handlebars",
|
|
9
|
-
"version": "1.51.
|
|
9
|
+
"version": "1.51.11",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -62,22 +62,22 @@
|
|
|
62
62
|
{
|
|
63
63
|
"structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
|
|
64
64
|
"isCite": true,
|
|
65
|
-
"text":"
|
|
65
|
+
"text":"Wenn ich mein Leben noch einmal leben könnte, würde ich die gleichen Fehler machen. Aber ein bisschen früher damit ich mehr davon habe.",
|
|
66
66
|
"paragraphProperties": [
|
|
67
67
|
{
|
|
68
68
|
"showFullSize":true,
|
|
69
|
-
"citeAuthor":"
|
|
69
|
+
"citeAuthor":"Marlene Dietrich"
|
|
70
70
|
}
|
|
71
71
|
]
|
|
72
72
|
},
|
|
73
73
|
{
|
|
74
74
|
"structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
|
|
75
75
|
"isCite": true,
|
|
76
|
-
"text":"
|
|
76
|
+
"text":"Wenn ich mein Leben noch einmal leben könnte, würde ich die gleichen Fehler machen. Aber ein bisschen früher damit ich mehr davon habe.",
|
|
77
77
|
"paragraphProperties": [
|
|
78
78
|
{
|
|
79
79
|
"showFullSize":false,
|
|
80
|
-
"citeAuthor":"
|
|
80
|
+
"citeAuthor":"Marlene Dietrich"
|
|
81
81
|
}
|
|
82
82
|
]
|
|
83
83
|
},
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"split": [
|
|
89
89
|
{
|
|
90
90
|
"isText": true,
|
|
91
|
-
"text": "Der Mitschüler erlitt dem Bericht zufolge eine Schienbeinprellung und eine kleine Schnittwunde. Die Eltern hätten daraufhin Anzeige erstattet – eine hr-Anfrage an die zuständige Polizei blieb bislang unbeantwortet. Der Mitschüler erlitt dem Bericht zufolge eine Schienbeinprellung und eine kleine Schnittwunde."
|
|
91
|
+
"text": "Der Mitschüler erlitt dem Bericht zufolge eine Schienbeinprellung und eine kleine Schnittwunde. Die Eltern hätten daraufhin Anzeige erstattet – eine hr-Anfrage an die zuständige Polizei blieb bislang unbeantwortet. Der Mitschüler erlitt dem Bericht zufolge eine Schienbeinprellung und eine kleine Schnittwunde. Die Eltern hätten daraufhin Anzeige erstattet – eine hr-Anfrage an die zuständige Polizei blieb bislang unbeantwortet."
|
|
92
92
|
}
|
|
93
93
|
]
|
|
94
94
|
}
|
|
@@ -441,5 +441,72 @@
|
|
|
441
441
|
}
|
|
442
442
|
|
|
443
443
|
]
|
|
444
|
-
}
|
|
444
|
+
},
|
|
445
|
+
"copytext_cite": {
|
|
446
|
+
"copytextParagraph": [
|
|
447
|
+
{
|
|
448
|
+
"structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
|
|
449
|
+
"isHeadline": true,
|
|
450
|
+
"text": "Medienbericht: Flaschenangriff auf Mitschüler"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
|
|
454
|
+
"isParagraph": true,
|
|
455
|
+
"text": {
|
|
456
|
+
"split": [
|
|
457
|
+
{
|
|
458
|
+
"isText": true,
|
|
459
|
+
"text": "Der Mitschüler erlitt dem Bericht zufolge eine Schienbeinprellung und eine kleine Schnittwunde. Die Eltern hätten daraufhin Anzeige erstattet – eine hr-Anfrage an die zuständige Polizei blieb bislang unbeantwortet."
|
|
460
|
+
}
|
|
461
|
+
]
|
|
462
|
+
}
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
|
|
466
|
+
"isCite": true,
|
|
467
|
+
"text":"Wenn ich mein Leben noch einmal leben könnte, würde ich die gleichen Fehler machen. Aber ein bisschen früher damit ich mehr davon habe.",
|
|
468
|
+
"paragraphProperties": [
|
|
469
|
+
{
|
|
470
|
+
"showFullSize":true,
|
|
471
|
+
"citeAuthor":"Marlene Dietrich"
|
|
472
|
+
}
|
|
473
|
+
]
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
|
|
477
|
+
"isParagraph": true,
|
|
478
|
+
"text": {
|
|
479
|
+
"split": [
|
|
480
|
+
{
|
|
481
|
+
"isText": true,
|
|
482
|
+
"text": "Der Mitschüler erlitt dem Bericht zufolge eine Schienbeinprellung und eine kleine Schnittwunde. Die Eltern hätten daraufhin Anzeige erstattet – eine hr-Anfrage an die zuständige Polizei blieb bislang unbeantwortet."
|
|
483
|
+
}
|
|
484
|
+
]
|
|
485
|
+
}
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
|
|
489
|
+
"isCite": true,
|
|
490
|
+
"text":"Wenn ich mein Leben noch einmal leben könnte, würde ich die gleichen Fehler machen. Aber ein bisschen früher damit ich mehr davon habe.",
|
|
491
|
+
"paragraphProperties": [
|
|
492
|
+
{
|
|
493
|
+
"showFullSize":false,
|
|
494
|
+
"citeAuthor":"Marlene Dietrich"
|
|
495
|
+
}
|
|
496
|
+
]
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
|
|
500
|
+
"isParagraph": true,
|
|
501
|
+
"text": {
|
|
502
|
+
"split": [
|
|
503
|
+
{
|
|
504
|
+
"isText": true,
|
|
505
|
+
"text": "Der Mitschüler erlitt dem Bericht zufolge eine Schienbeinprellung und eine kleine Schnittwunde. Die Eltern hätten daraufhin Anzeige erstattet – eine hr-Anfrage an die zuständige Polizei blieb bislang unbeantwortet. Der Mitschüler erlitt dem Bericht zufolge eine Schienbeinprellung und eine kleine Schnittwunde. Die Eltern hätten daraufhin Anzeige erstattet – eine hr-Anfrage an die zuständige Polizei blieb bislang unbeantwortet."
|
|
506
|
+
}
|
|
507
|
+
]
|
|
508
|
+
}
|
|
509
|
+
}
|
|
510
|
+
]
|
|
511
|
+
}
|
|
445
512
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 80 66" style="enable-background:new 0 0 80 66;" xml:space="preserve">
|
|
5
|
+
<g>
|
|
6
|
+
<path d="M14.85,66L0,56.82c4.19-5.95,7.36-12.03,9.5-18.24s3.21-12.78,3.21-19.73V0h26.35v18.48c0,8.11-2.19,16.58-6.56,25.43
|
|
7
|
+
C28.14,52.77,22.25,60.13,14.85,66z M55.79,66l-14.85-9.18c4.19-5.95,7.36-12.03,9.5-18.24s3.21-12.78,3.21-19.73V0H80v18.48
|
|
8
|
+
c0,8.11-2.19,16.58-6.56,25.43C69.07,52.77,63.19,60.13,55.79,66z"/>
|
|
9
|
+
</g>
|
|
10
|
+
</svg>
|