hr-design-system-handlebars 1.43.1 → 1.45.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/CHANGELOG.md +24 -0
- package/dist/assets/brand/_default/conf/locatags.json +14 -0
- package/dist/assets/index.css +20 -3
- package/dist/views/components/article/components/podcast/podcast_episode_article.hbs +5 -5
- package/dist/views/components/geoTag/geoTag_list.hbs +18 -0
- package/dist/views/components/socialmedia/socialmedia.hbs +70 -70
- package/dist/views/components/topictag/topictag_list.hbs +18 -0
- package/dist/views_static/components/article/components/podcast/podcast_episode_article.hbs +5 -5
- package/dist/views_static/components/geoTag/geoTag_list.hbs +18 -0
- package/dist/views_static/components/socialmedia/socialmedia.hbs +70 -70
- package/dist/views_static/components/topictag/topictag_list.hbs +18 -0
- package/package.json +1 -1
- package/src/assets/brand/_default/conf/locatags.json +14 -0
- package/src/assets/brand/hessenschau/conf/locatags.merged.json +14 -0
- package/src/assets/brand/hr/conf/locatags.merged.json +14 -0
- package/src/assets/brand/hr-bigband/conf/locatags.merged.json +14 -0
- package/src/assets/brand/hr-fernsehen/conf/locatags.merged.json +14 -0
- package/src/assets/brand/hr-inforadio/conf/locatags.merged.json +14 -0
- package/src/assets/brand/hr-rundfunkrat/conf/locatags.merged.json +14 -0
- package/src/assets/brand/hr-sinfonieorchester/conf/locatags.merged.json +14 -0
- package/src/assets/brand/hr-werbung/conf/locatags.merged.json +14 -0
- package/src/assets/brand/hr1/conf/locatags.merged.json +14 -0
- package/src/assets/brand/hr2/conf/locatags.merged.json +14 -0
- package/src/assets/brand/hr3/conf/locatags.merged.json +14 -0
- package/src/assets/brand/hr4/conf/locatags.merged.json +14 -0
- package/src/assets/brand/you-fm/conf/locatags.merged.json +14 -0
- package/src/assets/fixtures/article/components/podcast/podcast_player_episode.json +44 -0
- package/src/stories/views/components/article/components/podcast/fixtures/podcast_player_episode.json +1 -1
- package/src/stories/views/components/article/components/podcast/podcast_episode_article.hbs +5 -5
- package/src/stories/views/components/geoTag/geoTag_list.hbs +18 -0
- package/src/stories/views/components/socialmedia/socialmedia.hbs +70 -70
- package/src/stories/views/components/topictag/topictag_list.hbs +18 -0
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
<div class="
|
|
2
|
-
<div class="
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
<ul class="flex flex-wrap w-full pt-2 gap-x-2 gap-y-2 -socialsharing">
|
|
6
|
-
{{~#with this.twitterLink ~}}
|
|
7
|
-
<li>
|
|
8
|
-
<a class="{{#with ../../this.content.trackingData}} js-load{{/with}}"
|
|
9
|
-
href="{{this}}"
|
|
10
|
-
target="_blank"
|
|
11
|
-
rel="noopener noreferrer"
|
|
12
|
-
title="{{loca "share_twitter_linktitle" }}"
|
|
13
|
-
{{#with ../../this.content.trackingData}}
|
|
14
|
-
data-hr-click-tracking='{"settings": [{"type":"uxAction","secondLevelId": "{{this.secondLevelId}}","clickLabel": "socialShareClick::twitter"}]}'
|
|
15
|
-
{{/with}}
|
|
16
|
-
>
|
|
17
|
-
{{~> components/base/image/icon _addClass="w-8 h-8 rounded-lg fill-[#55acee]" _icon="twitter" _iconmap="icons" ~}}
|
|
18
|
-
</a>
|
|
19
|
-
</li>
|
|
20
|
-
{{~/with~}}
|
|
21
|
-
{{~#with this.facebookLink ~}}
|
|
22
|
-
<li>
|
|
23
|
-
<a class="{{#with ../../this.content.trackingData}} js-load{{/with}}"
|
|
24
|
-
href="{{this}}"
|
|
25
|
-
target="_blank"
|
|
26
|
-
rel="noopener noreferrer"
|
|
27
|
-
title="{{loca "share_facebook_linktitle" }}"
|
|
28
|
-
{{#with ../../this.content.trackingData}}
|
|
29
|
-
data-hr-click-tracking='{"settings": [{"type":"uxAction","secondLevelId": "{{this.secondLevelId}}","clickLabel": "socialShareClick::facebook"}]}'
|
|
30
|
-
{{/with}}
|
|
31
|
-
>
|
|
32
|
-
{{~> components/base/image/icon _addClass="w-8 h-8 rounded-lg fill-[#3b5999]" _icon="facebook" _iconmap="icons" ~}}
|
|
33
|
-
</a>
|
|
34
|
-
</li>
|
|
35
|
-
{{~/with~}}
|
|
36
|
-
{{~#with this.whatsappLink ~}}
|
|
37
|
-
<li>
|
|
38
|
-
<a class="{{#with ../../this.content.trackingData}} js-load{{/with}}"
|
|
39
|
-
href="{{this}}"
|
|
40
|
-
target="_blank"
|
|
41
|
-
rel="noopener noreferrer"
|
|
42
|
-
title="{{loca "share_whatsapp_linktitle" }}"
|
|
43
|
-
{{#with ../../this.content.trackingData}}
|
|
44
|
-
data-hr-click-tracking='{"settings": [{"type":"uxAction","secondLevelId": "{{this.secondLevelId}}","clickLabel": "socialShareClick::whatsapp"}]}'
|
|
45
|
-
{{/with}}
|
|
46
|
-
>
|
|
47
|
-
{{~> components/base/image/icon _addClass="w-8 h-8 rounded-lg fill-[#4dc247]" _icon="whatsapp" _iconmap="icons" ~}}
|
|
48
|
-
</a>
|
|
49
|
-
</li>
|
|
50
|
-
{{~/with~}}
|
|
51
|
-
{{~#with this.mailtoLink ~}}
|
|
52
|
-
<li>
|
|
53
|
-
<a class="{{#with ../../this.content.trackingData}} js-load{{/with}}"
|
|
54
|
-
href="{{this}}"
|
|
55
|
-
title="{{loca "share_mail_linktitle" }}"
|
|
56
|
-
{{#with ../../this.content.trackingData}}
|
|
57
|
-
data-hr-click-tracking='{"settings": [{"type":"uxAction","secondLevelId": "{{this.secondLevelId}}","clickLabel": "socialShareClick::mailto"}]}'
|
|
58
|
-
{{/with}}
|
|
59
|
-
>
|
|
60
|
-
{{~> components/base/image/icon _addClass="w-8 h-8 rounded-lg fill-[#006dc1]" _icon="mail" _iconmap="icons" ~}}
|
|
61
|
-
</a>
|
|
62
|
-
</li>
|
|
63
|
-
{{~/with~}}
|
|
1
|
+
<div class="-socialsharing">
|
|
2
|
+
<div class="block">
|
|
3
|
+
<span class="text-sm uppercase font-headingSerif w-fit sm:w-full">{{loca "share_headline" }}</span>
|
|
64
4
|
|
|
5
|
+
<ul class="flex flex-wrap pt-2 w-fit sm:w-full gap-x-6 sm:gap-x-2 gap-y-2">
|
|
6
|
+
{{~#with this.twitterLink ~}}
|
|
65
7
|
<li>
|
|
66
|
-
<a class="{{#with
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
8
|
+
<a class="{{#with ../../this.content.trackingData}} js-load{{/with}}"
|
|
9
|
+
href="{{this}}"
|
|
10
|
+
target="_blank"
|
|
11
|
+
rel="noopener noreferrer"
|
|
12
|
+
title="{{loca "share_twitter_linktitle" }}"
|
|
13
|
+
{{#with ../../this.content.trackingData}}
|
|
14
|
+
data-hr-click-tracking='{"settings": [{"type":"uxAction","secondLevelId": "{{this.secondLevelId}}","clickLabel": "socialShareClick::twitter"}]}'
|
|
71
15
|
{{/with}}
|
|
72
16
|
>
|
|
73
|
-
{{~> components/base/image/icon _addClass="w-8 h-8 rounded-lg fill-[#
|
|
17
|
+
{{~> components/base/image/icon _addClass="w-8 h-8 rounded-lg fill-[#55acee]" _icon="twitter" _iconmap="icons" ~}}
|
|
74
18
|
</a>
|
|
75
19
|
</li>
|
|
76
|
-
|
|
20
|
+
{{~/with~}}
|
|
21
|
+
{{~#with this.facebookLink ~}}
|
|
22
|
+
<li>
|
|
23
|
+
<a class="{{#with ../../this.content.trackingData}} js-load{{/with}}"
|
|
24
|
+
href="{{this}}"
|
|
25
|
+
target="_blank"
|
|
26
|
+
rel="noopener noreferrer"
|
|
27
|
+
title="{{loca "share_facebook_linktitle" }}"
|
|
28
|
+
{{#with ../../this.content.trackingData}}
|
|
29
|
+
data-hr-click-tracking='{"settings": [{"type":"uxAction","secondLevelId": "{{this.secondLevelId}}","clickLabel": "socialShareClick::facebook"}]}'
|
|
30
|
+
{{/with}}
|
|
31
|
+
>
|
|
32
|
+
{{~> components/base/image/icon _addClass="w-8 h-8 rounded-lg fill-[#3b5999]" _icon="facebook" _iconmap="icons" ~}}
|
|
33
|
+
</a>
|
|
34
|
+
</li>
|
|
35
|
+
{{~/with~}}
|
|
36
|
+
{{~#with this.whatsappLink ~}}
|
|
37
|
+
<li>
|
|
38
|
+
<a class="{{#with ../../this.content.trackingData}} js-load{{/with}}"
|
|
39
|
+
href="{{this}}"
|
|
40
|
+
target="_blank"
|
|
41
|
+
rel="noopener noreferrer"
|
|
42
|
+
title="{{loca "share_whatsapp_linktitle" }}"
|
|
43
|
+
{{#with ../../this.content.trackingData}}
|
|
44
|
+
data-hr-click-tracking='{"settings": [{"type":"uxAction","secondLevelId": "{{this.secondLevelId}}","clickLabel": "socialShareClick::whatsapp"}]}'
|
|
45
|
+
{{/with}}
|
|
46
|
+
>
|
|
47
|
+
{{~> components/base/image/icon _addClass="w-8 h-8 rounded-lg fill-[#4dc247]" _icon="whatsapp" _iconmap="icons" ~}}
|
|
48
|
+
</a>
|
|
49
|
+
</li>
|
|
50
|
+
{{~/with~}}
|
|
51
|
+
{{~#with this.mailtoLink ~}}
|
|
52
|
+
<li>
|
|
53
|
+
<a class="{{#with ../../this.content.trackingData}} js-load{{/with}}"
|
|
54
|
+
href="{{this}}"
|
|
55
|
+
title="{{loca "share_mail_linktitle" }}"
|
|
56
|
+
{{#with ../../this.content.trackingData}}
|
|
57
|
+
data-hr-click-tracking='{"settings": [{"type":"uxAction","secondLevelId": "{{this.secondLevelId}}","clickLabel": "socialShareClick::mailto"}]}'
|
|
58
|
+
{{/with}}
|
|
59
|
+
>
|
|
60
|
+
{{~> components/base/image/icon _addClass="w-8 h-8 rounded-lg fill-[#006dc1]" _icon="mail" _iconmap="icons" ~}}
|
|
61
|
+
</a>
|
|
62
|
+
</li>
|
|
63
|
+
{{~/with~}}
|
|
64
|
+
|
|
65
|
+
<li>
|
|
66
|
+
<a class="{{#with ../this.content.trackingData}} js-load{{/with}}"
|
|
67
|
+
href="javascript:window.print()"
|
|
68
|
+
title="{{loca "share_print_linktitle" }}"
|
|
69
|
+
{{#with ../this.content.trackingData}}
|
|
70
|
+
data-hr-click-tracking='{"settings": [{"type":"uxAction","secondLevelId": "{{this.secondLevelId}}","clickLabel": "socialShareClick::printbutton"}]}'
|
|
71
|
+
{{/with}}
|
|
72
|
+
>
|
|
73
|
+
{{~> components/base/image/icon _addClass="w-8 h-8 rounded-lg fill-[#606060]" _icon="print" _iconmap="icons" ~}}
|
|
74
|
+
</a>
|
|
75
|
+
</li>
|
|
76
|
+
</ul>
|
|
77
77
|
</div>
|
|
78
78
|
</div>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<div class="appendix__entry">
|
|
2
|
+
<nav class="block" role="navigation" aria-label="{{loca "topictag_related_content_headline"}}">
|
|
3
|
+
<span class="text-sm uppercase font-headingSerif w-fit sm:w-full">{{loca "topictag_related_content_headline"}}</span><!--
|
|
4
|
+
-->
|
|
5
|
+
<ul class="flex flex-wrap sm:block gap-x-4 w-fit sm:w-full sm:pt-2 ">
|
|
6
|
+
{{~#each this~}}
|
|
7
|
+
<li class="text-primary">
|
|
8
|
+
<a class="flex items-center gap-x-1" href="{{this.url}}">
|
|
9
|
+
{{~> components/base/image/icon _icon="taglabel" _addClass="w-5 h-5 fill-current"~}}
|
|
10
|
+
|
|
11
|
+
{{~this.title~}}
|
|
12
|
+
|
|
13
|
+
</a>
|
|
14
|
+
</li>
|
|
15
|
+
{{~/each~}}
|
|
16
|
+
</ul>
|
|
17
|
+
</nav>
|
|
18
|
+
</div>
|