hr-design-system-handlebars 1.67.2 → 1.67.4

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 (22) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/dist/assets/icons/icons/svgmap/print.svg +16 -16
  3. package/dist/assets/icons/icons/svgmap.min.svg +1 -1
  4. package/dist/assets/index.css +3 -9
  5. package/dist/assets/js/components/site_header/mainNavigationHandler.alpine.js +1 -1
  6. package/dist/views/components/page/index/page_test_story.hbs +14 -19
  7. package/dist/views/components/page/story/story_article.hbs +6 -3
  8. package/dist/views/components/social_sharing/social_sharing_compact.hbs +42 -44
  9. package/dist/views/components/social_sharing/social_sharing_compact_icons.hbs +10 -1
  10. package/dist/views_static/components/page/index/page_test_story.hbs +14 -19
  11. package/dist/views_static/components/page/story/story_article.hbs +6 -3
  12. package/dist/views_static/components/social_sharing/social_sharing_compact.hbs +42 -44
  13. package/dist/views_static/components/social_sharing/social_sharing_compact_icons.hbs +10 -1
  14. package/package.json +1 -1
  15. package/src/assets/icons/icons/svgmap/print.svg +16 -16
  16. package/src/assets/icons/icons/svgmap.min.svg +1 -1
  17. package/src/stories/views/components/page/index/page_test_story.hbs +14 -19
  18. package/src/stories/views/components/page/story/story_article.hbs +6 -3
  19. package/src/stories/views/components/site_header/mainNavigationHandler.alpine.js +1 -1
  20. package/src/stories/views/components/social_sharing/social_sharing_compact.hbs +42 -44
  21. package/src/stories/views/components/social_sharing/social_sharing_compact.stories.js +5 -12
  22. package/src/stories/views/components/social_sharing/social_sharing_compact_icons.hbs +10 -1
@@ -5,7 +5,6 @@
5
5
  lang="de"
6
6
  >
7
7
  <head>
8
-
9
8
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
10
9
  <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
11
10
  <title>hessenschau.de | Nachrichten aus Hessen</title>
@@ -14,33 +13,29 @@
14
13
  <meta name="author" content="hessenschau.de, Frankfurt, Germany" />
15
14
  <meta name="publisher" content="hessenschau.de" />
16
15
  <meta name="language" content="Deutsch" />
17
-
18
16
  </head>
19
17
 
20
18
  <body itemscope itemtype="http://schema.org/WebPage">
19
+
21
20
  {{> components/site_header/header }}
21
+
22
22
  {{#unless _webview}}
23
-
24
- {{#> components/banner/header/breadcrumb_wrapper _hasContentNav=this.structureNav.contentNav
25
- _hasBannerImage=this.hasBannerImage}}
26
- {{> components/navigation/breadcrumb/breadcrumb this.breadcrumb _currentPageUrl=this.url _currentPageTitle=this.breadcrumbTitle }}
27
- {{/components/banner/header/breadcrumb_wrapper }}
28
-
23
+ {{#> components/banner/header/breadcrumb_wrapper _hasContentNav=this.structureNav.contentNav _hasBannerImage=this.hasBannerImage}}
24
+ {{> components/navigation/breadcrumb/breadcrumb this.breadcrumb _currentPageUrl=this.url _currentPageTitle=this.breadcrumbTitle }}
25
+ {{/components/banner/header/breadcrumb_wrapper }}
29
26
  {{/unless}}
30
27
 
31
- <div class="js-pageSwap">
32
- <main
33
- onclick="void(0)"
34
- role="main"
35
- id="content"
36
- class="flex flex-col items-center justify-center"
37
- >
38
-
28
+ <div class="js-pageSwap">
29
+ <main
30
+ onclick="void(0)"
31
+ role="main"
32
+ id="content"
33
+ class="flex flex-col items-center justify-center"
34
+ >
39
35
  {{> components/page/story/story_article }}
40
36
  {{> components/top_button/top_button }}
41
37
  {{> components/footer/page_footer }}
42
- </main>
43
-
44
- </div>
38
+ </main>
39
+ </div>
45
40
  </body>
46
41
  </html>
@@ -20,9 +20,12 @@
20
20
  {{/if}}
21
21
  {{/with}}
22
22
  {{/unless}}
23
-
24
- {{> components/social_sharing/social_sharing_copytext}}
25
-
23
+
24
+ {{#unless _webview}}
25
+ {{~#with this.socialSharing ~}}
26
+ {{> components/social_sharing/social_sharing_copytext}}
27
+ {{~/with~}}
28
+ {{/unless}}
26
29
  {{~> components/content/copytext/copytext _isWebview=_webview ~}}
27
30
 
28
31
  {{> components/page/components/comments }}
@@ -1,48 +1,47 @@
1
- <div x-data="stickySharingHandler"
2
- x-on:keydown.escape.prevent.stop="close($refs.button)"
3
- x-on:focusin.window="! $refs.panel.contains($event.target) && close()"
4
- x-id="['dropdown-button']"
5
- class="flex self-center justify-end ml-3 grow"
6
- x-intersect:leave="$store.sharingIsVisible=false"
7
- x-intersect:enter="$store.sharingIsVisible=true"
8
- >
9
- <div :class="{ 'grid grid-page z-110 fixed bottom-feature-box-height left-0 w-full': $store.sharingIsVisible == false}">
10
- <div :class="{ 'flex justify-start col-full sm:col-main relative': $store.sharingIsVisible == false }">
11
- <div :style="($store.footerIsVisible && !$screen('lg')) && {bottom:$store.sharingBottomPos.current}"
12
- :class="{ 'bottom-5 flex-col absolute mt-3 rounded-md': $store.sharingIsVisible == false && $store.footerIsVisible == false,
13
- 'flex-col absolute mt-3' : $store.footerIsVisible == true
14
- }"
15
- class="flex self-center gap-3 bg-white left-5"
16
- >
17
- <button
18
- class="order-2 p-2 text-white border border-button bg-button ds-button font-heading hover:bg-button--dark hover:border-button--dark active:bg-button--dark group"
19
- x-show="!$screen('lg')"
20
- x-ref="button"
21
- x-on:click="toggle()"
22
- :aria-expanded="open"
23
- :aria-controls="$id('dropdown-button')">
24
- {{> components/base/image/icon _addClass="w-5 h-5 fill-current group-hover:fill-link--dark" _icon="sharing" _iconmap="icons" }}
25
- </button>
1
+ {{~#with this.socialSharing ~}}
2
+ <div x-data="stickySharingHandler"
3
+ x-on:keydown.escape.prevent.stop="close($refs.button)"
4
+ x-on:focusin.window="! $refs.panel.contains($event.target) && close()"
5
+ x-id="['dropdown-button']"
6
+ class="flex self-center justify-end ml-3 grow"
7
+ x-intersect:leave="$store.sharingIsVisible=false"
8
+ x-intersect:enter="$store.sharingIsVisible=true"
9
+ >
10
+ <div :class="{ 'grid grid-page z-110 fixed bottom-feature-box-height left-0 w-full': $store.sharingIsVisible == false}">
11
+ <div :class="{ 'flex justify-start col-full sm:col-main relative': $store.sharingIsVisible == false }">
12
+ <div :style="($store.footerIsVisible && !$screen('lg')) && {bottom:$store.sharingBottomPos.current}"
13
+ :class="{ 'bottom-5 flex-col absolute mt-3 rounded-md': $store.sharingIsVisible == false && $store.footerIsVisible == false,
14
+ 'flex-col absolute mt-3' : $store.footerIsVisible == true }"
15
+ class="flex self-center gap-3 bg-white left-5">
16
+ <button
17
+ class="order-2 p-2 text-white border border-button bg-button ds-button font-heading hover:bg-button--dark hover:border-button--dark active:bg-button--dark group"
18
+ x-show="!$screen('lg')"
19
+ x-ref="button"
20
+ x-on:click="toggle()"
21
+ :aria-expanded="open"
22
+ :aria-controls="$id('dropdown-button')">
23
+ {{> components/base/image/icon _addClass="w-5 h-5 fill-current group-hover:fill-link--dark" _icon="sharing" _iconmap="icons" }}
24
+ </button>
26
25
 
27
- <!-- Panel -->
28
- <div
29
- x-ref="panel"
30
- x-show="open || $screen('lg') && $store.sharingIsOpen == true || $screen('lg') && $store.sharingIsVisible == true"
31
- x-transition.origin.bottom.right
32
- x-on:click.outside="close($refs.button)"
33
- :id="$id('dropdown-button')"
34
- class="self-center bg-white"
35
- :class="$store.sharingIsVisible == true ? 'h-8 absolute right-[68px] md:relative md:right-0 md:h-auto' : 'relative right-0 md:h-auto lg:hidden '"
36
- >
37
- <ul class="flex gap-3" :class="{ 'flex-col': $store.sharingIsVisible == false }">
38
-
39
- {{> components/social_sharing/social_sharing_compact_icons }}
40
- </ul>
26
+ <!-- Panel -->
27
+ <div
28
+ x-ref="panel"
29
+ x-show="open || $screen('lg') && $store.sharingIsOpen == true || $screen('lg') && $store.sharingIsVisible == true"
30
+ x-transition.origin.bottom.right
31
+ x-on:click.outside="close($refs.button)"
32
+ :id="$id('dropdown-button')"
33
+ class="self-center bg-white"
34
+ :class="$store.sharingIsVisible == true ? 'h-8 absolute right-[68px] md:relative md:right-0 md:h-auto' : 'relative right-0 md:h-auto lg:hidden '"
35
+ >
36
+ <ul class="flex gap-3" :class="{ 'flex-col': $store.sharingIsVisible == false }">
37
+ {{> components/social_sharing/social_sharing_compact_icons }}
38
+ </ul>
39
+ </div>
41
40
  </div>
42
41
  </div>
43
42
  </div>
44
43
  </div>
45
- </div>
44
+ {{/with}}
46
45
  <script>
47
46
  function stickySharingHandler(){
48
47
  return {
@@ -55,9 +54,9 @@
55
54
  var isMobile= isMobileApple || isMobileOther;
56
55
  if (navigator.share && isMobile) {
57
56
  navigator.share({
58
- title: 'Awesome Content',
59
- text: 'Check out this awesome content!',
60
- url: 'https://example.com',
57
+ title: document.title,
58
+ text: 'Schau mal was ich auf hessenschau.de gefunden habe!',
59
+ url: window.location.href,
61
60
  })
62
61
  .then(() => console.log('Shared successfully'))
63
62
  .catch((error) => console.error('Sharing failed:', error));
@@ -73,7 +72,6 @@
73
72
  },
74
73
  close(focusAfter) {
75
74
  if (! this.open) return
76
-
77
75
  this.open = false
78
76
  this.$store.sharingIsOpen = false
79
77
  focusAfter && focusAfter.focus()
@@ -1,3 +1,4 @@
1
+ {{~#with this.twitterLink ~}}
1
2
  <li>
2
3
  <a class="{{if (isUserConsentNeeded this) 'js-user-consent-needed ' ''}}{{#with ../../this.content.trackingData}} js-load{{/with}} flex order-2 ds-button font-heading active:scale-95 w-8 h-8"
3
4
 
@@ -12,6 +13,8 @@
12
13
  {{~> components/base/image/icon _addClass="w-full h-full fill-link hover:scale-105 " _icon="x-ds" _iconmap="icons" ~}}
13
14
  </a>
14
15
  </li>
16
+ {{/with}}
17
+ {{~#with this.facebookLink}}
15
18
  <li class="">
16
19
  <a class="{{if (isUserConsentNeeded this) 'js-user-consent-needed ' ''}}{{#with ../../this.content.trackingData}} js-load{{/with}} flex order-2 ds-button font-heading active:scale-95 w-8 h-8"
17
20
 
@@ -26,6 +29,8 @@
26
29
  {{~> components/base/image/icon _addClass="w-full h-full fill-link hover:scale-105" _icon="facebook-ds" _iconmap="icons" ~}}
27
30
  </a>
28
31
  </li>
32
+ {{/with}}
33
+ {{~#with this.whatsappLink}}
29
34
  <li class="">
30
35
  <a class="{{if (isUserConsentNeeded this) 'js-user-consent-needed ' ''}}{{#with ../../this.content.trackingData}} js-load{{/with}} flex order-2 ds-button font-heading active:scale-95 w-8 h-8"
31
36
 
@@ -40,6 +45,8 @@
40
45
  {{~> components/base/image/icon _addClass="w-full h-full fill-link hover:scale-105" _icon="whatsapp-ds" _iconmap="icons" ~}}
41
46
  </a>
42
47
  </li>
48
+ {{/with}}
49
+ {{~#with this.mailtoLink}}
43
50
  <li class="">
44
51
  <a class="{{if (isUserConsentNeeded this) 'js-user-consent-needed ' ''}}{{#with ../../this.content.trackingData}} js-load{{/with}} flex order-2 ds-button font-heading active:scale-95 w-8 h-8"
45
52
 
@@ -52,6 +59,8 @@
52
59
  {{~> components/base/image/icon _addClass="w-full h-full fill-link hover:scale-105" _icon="kontakt-ds" _iconmap="icons" ~}}
53
60
  </a>
54
61
  </li>
62
+ {{/with}}
63
+
55
64
  <li class="">
56
65
  <a class="{{#with ../this.content.trackingData}} js-load{{/with}} flex order-2 ds-button font-heading active:scale-95 w-8 h-8"
57
66
 
@@ -63,4 +72,4 @@
63
72
  >
64
73
  {{~> components/base/image/icon _addClass="w-full h-full fill-link hover:scale-105" _icon="copy-ds" _iconmap="icons" ~}}
65
74
  </a>
66
- </li>
75
+ </li>
@@ -5,7 +5,6 @@
5
5
  lang="de"
6
6
  >
7
7
  <head>
8
-
9
8
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
10
9
  <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
11
10
  <title>hessenschau.de | Nachrichten aus Hessen</title>
@@ -14,33 +13,29 @@
14
13
  <meta name="author" content="hessenschau.de, Frankfurt, Germany" />
15
14
  <meta name="publisher" content="hessenschau.de" />
16
15
  <meta name="language" content="Deutsch" />
17
-
18
16
  </head>
19
17
 
20
18
  <body itemscope itemtype="http://schema.org/WebPage">
19
+
21
20
  {{> components/site_header/header }}
21
+
22
22
  {{#unless _webview}}
23
-
24
- {{#> components/banner/header/breadcrumb_wrapper _hasContentNav=this.structureNav.contentNav
25
- _hasBannerImage=this.hasBannerImage}}
26
- {{> components/navigation/breadcrumb/breadcrumb this.breadcrumb _currentPageUrl=this.url _currentPageTitle=this.breadcrumbTitle }}
27
- {{/components/banner/header/breadcrumb_wrapper }}
28
-
23
+ {{#> components/banner/header/breadcrumb_wrapper _hasContentNav=this.structureNav.contentNav _hasBannerImage=this.hasBannerImage}}
24
+ {{> components/navigation/breadcrumb/breadcrumb this.breadcrumb _currentPageUrl=this.url _currentPageTitle=this.breadcrumbTitle }}
25
+ {{/components/banner/header/breadcrumb_wrapper }}
29
26
  {{/unless}}
30
27
 
31
- <div class="js-pageSwap">
32
- <main
33
- onclick="void(0)"
34
- role="main"
35
- id="content"
36
- class="flex flex-col items-center justify-center"
37
- >
38
-
28
+ <div class="js-pageSwap">
29
+ <main
30
+ onclick="void(0)"
31
+ role="main"
32
+ id="content"
33
+ class="flex flex-col items-center justify-center"
34
+ >
39
35
  {{> components/page/story/story_article }}
40
36
  {{> components/top_button/top_button }}
41
37
  {{> components/footer/page_footer }}
42
- </main>
43
-
44
- </div>
38
+ </main>
39
+ </div>
45
40
  </body>
46
41
  </html>
@@ -20,9 +20,12 @@
20
20
  {{/if}}
21
21
  {{/with}}
22
22
  {{/unless}}
23
-
24
- {{> components/social_sharing/social_sharing_copytext}}
25
-
23
+
24
+ {{#unless _webview}}
25
+ {{~#with this.socialSharing ~}}
26
+ {{> components/social_sharing/social_sharing_copytext}}
27
+ {{~/with~}}
28
+ {{/unless}}
26
29
  {{~> components/content/copytext/copytext _isWebview=_webview ~}}
27
30
 
28
31
  {{> components/page/components/comments }}
@@ -1,48 +1,47 @@
1
- <div x-data="stickySharingHandler"
2
- x-on:keydown.escape.prevent.stop="close($refs.button)"
3
- x-on:focusin.window="! $refs.panel.contains($event.target) && close()"
4
- x-id="['dropdown-button']"
5
- class="flex self-center justify-end ml-3 grow"
6
- x-intersect:leave="$store.sharingIsVisible=false"
7
- x-intersect:enter="$store.sharingIsVisible=true"
8
- >
9
- <div :class="{ 'grid grid-page z-110 fixed bottom-feature-box-height left-0 w-full': $store.sharingIsVisible == false}">
10
- <div :class="{ 'flex justify-start col-full sm:col-main relative': $store.sharingIsVisible == false }">
11
- <div :style="($store.footerIsVisible && !$screen('lg')) && {bottom:$store.sharingBottomPos.current}"
12
- :class="{ 'bottom-5 flex-col absolute mt-3 rounded-md': $store.sharingIsVisible == false && $store.footerIsVisible == false,
13
- 'flex-col absolute mt-3' : $store.footerIsVisible == true
14
- }"
15
- class="flex self-center gap-3 bg-white left-5"
16
- >
17
- <button
18
- class="order-2 p-2 text-white border border-button bg-button ds-button font-heading hover:bg-button--dark hover:border-button--dark active:bg-button--dark group"
19
- x-show="!$screen('lg')"
20
- x-ref="button"
21
- x-on:click="toggle()"
22
- :aria-expanded="open"
23
- :aria-controls="$id('dropdown-button')">
24
- {{> components/base/image/icon _addClass="w-5 h-5 fill-current group-hover:fill-link--dark" _icon="sharing" _iconmap="icons" }}
25
- </button>
1
+ {{~#with this.socialSharing ~}}
2
+ <div x-data="stickySharingHandler"
3
+ x-on:keydown.escape.prevent.stop="close($refs.button)"
4
+ x-on:focusin.window="! $refs.panel.contains($event.target) && close()"
5
+ x-id="['dropdown-button']"
6
+ class="flex self-center justify-end ml-3 grow"
7
+ x-intersect:leave="$store.sharingIsVisible=false"
8
+ x-intersect:enter="$store.sharingIsVisible=true"
9
+ >
10
+ <div :class="{ 'grid grid-page z-110 fixed bottom-feature-box-height left-0 w-full': $store.sharingIsVisible == false}">
11
+ <div :class="{ 'flex justify-start col-full sm:col-main relative': $store.sharingIsVisible == false }">
12
+ <div :style="($store.footerIsVisible && !$screen('lg')) && {bottom:$store.sharingBottomPos.current}"
13
+ :class="{ 'bottom-5 flex-col absolute mt-3 rounded-md': $store.sharingIsVisible == false && $store.footerIsVisible == false,
14
+ 'flex-col absolute mt-3' : $store.footerIsVisible == true }"
15
+ class="flex self-center gap-3 bg-white left-5">
16
+ <button
17
+ class="order-2 p-2 text-white border border-button bg-button ds-button font-heading hover:bg-button--dark hover:border-button--dark active:bg-button--dark group"
18
+ x-show="!$screen('lg')"
19
+ x-ref="button"
20
+ x-on:click="toggle()"
21
+ :aria-expanded="open"
22
+ :aria-controls="$id('dropdown-button')">
23
+ {{> components/base/image/icon _addClass="w-5 h-5 fill-current group-hover:fill-link--dark" _icon="sharing" _iconmap="icons" }}
24
+ </button>
26
25
 
27
- <!-- Panel -->
28
- <div
29
- x-ref="panel"
30
- x-show="open || $screen('lg') && $store.sharingIsOpen == true || $screen('lg') && $store.sharingIsVisible == true"
31
- x-transition.origin.bottom.right
32
- x-on:click.outside="close($refs.button)"
33
- :id="$id('dropdown-button')"
34
- class="self-center bg-white"
35
- :class="$store.sharingIsVisible == true ? 'h-8 absolute right-[68px] md:relative md:right-0 md:h-auto' : 'relative right-0 md:h-auto lg:hidden '"
36
- >
37
- <ul class="flex gap-3" :class="{ 'flex-col': $store.sharingIsVisible == false }">
38
-
39
- {{> components/social_sharing/social_sharing_compact_icons }}
40
- </ul>
26
+ <!-- Panel -->
27
+ <div
28
+ x-ref="panel"
29
+ x-show="open || $screen('lg') && $store.sharingIsOpen == true || $screen('lg') && $store.sharingIsVisible == true"
30
+ x-transition.origin.bottom.right
31
+ x-on:click.outside="close($refs.button)"
32
+ :id="$id('dropdown-button')"
33
+ class="self-center bg-white"
34
+ :class="$store.sharingIsVisible == true ? 'h-8 absolute right-[68px] md:relative md:right-0 md:h-auto' : 'relative right-0 md:h-auto lg:hidden '"
35
+ >
36
+ <ul class="flex gap-3" :class="{ 'flex-col': $store.sharingIsVisible == false }">
37
+ {{> components/social_sharing/social_sharing_compact_icons }}
38
+ </ul>
39
+ </div>
41
40
  </div>
42
41
  </div>
43
42
  </div>
44
43
  </div>
45
- </div>
44
+ {{/with}}
46
45
  <script>
47
46
  function stickySharingHandler(){
48
47
  return {
@@ -55,9 +54,9 @@
55
54
  var isMobile= isMobileApple || isMobileOther;
56
55
  if (navigator.share && isMobile) {
57
56
  navigator.share({
58
- title: 'Awesome Content',
59
- text: 'Check out this awesome content!',
60
- url: 'https://example.com',
57
+ title: document.title,
58
+ text: 'Schau mal was ich auf hessenschau.de gefunden habe!',
59
+ url: window.location.href,
61
60
  })
62
61
  .then(() => console.log('Shared successfully'))
63
62
  .catch((error) => console.error('Sharing failed:', error));
@@ -73,7 +72,6 @@
73
72
  },
74
73
  close(focusAfter) {
75
74
  if (! this.open) return
76
-
77
75
  this.open = false
78
76
  this.$store.sharingIsOpen = false
79
77
  focusAfter && focusAfter.focus()
@@ -1,3 +1,4 @@
1
+ {{~#with this.twitterLink ~}}
1
2
  <li>
2
3
  <a class="{{if (isUserConsentNeeded this) 'js-user-consent-needed ' ''}}{{#with ../../this.content.trackingData}} js-load{{/with}} flex order-2 ds-button font-heading active:scale-95 w-8 h-8"
3
4
 
@@ -12,6 +13,8 @@
12
13
  {{~> components/base/image/icon _addClass="w-full h-full fill-link hover:scale-105 " _icon="x-ds" _iconmap="icons" ~}}
13
14
  </a>
14
15
  </li>
16
+ {{/with}}
17
+ {{~#with this.facebookLink}}
15
18
  <li class="">
16
19
  <a class="{{if (isUserConsentNeeded this) 'js-user-consent-needed ' ''}}{{#with ../../this.content.trackingData}} js-load{{/with}} flex order-2 ds-button font-heading active:scale-95 w-8 h-8"
17
20
 
@@ -26,6 +29,8 @@
26
29
  {{~> components/base/image/icon _addClass="w-full h-full fill-link hover:scale-105" _icon="facebook-ds" _iconmap="icons" ~}}
27
30
  </a>
28
31
  </li>
32
+ {{/with}}
33
+ {{~#with this.whatsappLink}}
29
34
  <li class="">
30
35
  <a class="{{if (isUserConsentNeeded this) 'js-user-consent-needed ' ''}}{{#with ../../this.content.trackingData}} js-load{{/with}} flex order-2 ds-button font-heading active:scale-95 w-8 h-8"
31
36
 
@@ -40,6 +45,8 @@
40
45
  {{~> components/base/image/icon _addClass="w-full h-full fill-link hover:scale-105" _icon="whatsapp-ds" _iconmap="icons" ~}}
41
46
  </a>
42
47
  </li>
48
+ {{/with}}
49
+ {{~#with this.mailtoLink}}
43
50
  <li class="">
44
51
  <a class="{{if (isUserConsentNeeded this) 'js-user-consent-needed ' ''}}{{#with ../../this.content.trackingData}} js-load{{/with}} flex order-2 ds-button font-heading active:scale-95 w-8 h-8"
45
52
 
@@ -52,6 +59,8 @@
52
59
  {{~> components/base/image/icon _addClass="w-full h-full fill-link hover:scale-105" _icon="kontakt-ds" _iconmap="icons" ~}}
53
60
  </a>
54
61
  </li>
62
+ {{/with}}
63
+
55
64
  <li class="">
56
65
  <a class="{{#with ../this.content.trackingData}} js-load{{/with}} flex order-2 ds-button font-heading active:scale-95 w-8 h-8"
57
66
 
@@ -63,4 +72,4 @@
63
72
  >
64
73
  {{~> components/base/image/icon _addClass="w-full h-full fill-link hover:scale-105" _icon="copy-ds" _iconmap="icons" ~}}
65
74
  </a>
66
- </li>
75
+ </li>
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.67.2",
9
+ "version": "1.67.4",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -1,16 +1,16 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 16.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="88px"
5
- height="88px" viewBox="0 0 88 88" enable-background="new 0 0 88 88" xml:space="preserve">
6
- <g id="Ebene_1">
7
- </g>
8
- <g id="Ebene_2">
9
- <path d="M0,0v88h88V0H0z M27.644,23.183c0-1.487,1.189-2.378,2.379-2.378h27.954c1.488,0,2.379,1.189,2.379,2.378v1.785
10
- c0,1.487-1.19,2.378-2.379,2.378H30.022c-1.189,0-2.379-1.189-2.379-2.378V23.183z M53.814,67.195H34.483
11
- c-1.487,0-2.379-1.188-2.379-2.379V50.244c0-1.486,1.189-2.379,2.379-2.379h19.033c1.488,0,2.379,1.191,2.379,2.379l0.296,14.572
12
- C56.191,66.305,55.005,67.195,53.814,67.195z M71.359,58.572h-8.92c-1.488,0-2.379-1.189-2.379-2.381V43.404H28.536v12.49
13
- c0,1.488-1.189,2.379-2.38,2.379H16.64c-1.486,0-2.378-1.188-2.378-2.379V34.483c0-1.487,1.189-2.379,2.378-2.379h54.42
14
- c1.488,0,2.384,1.19,2.384,2.379l0.295,21.708C73.738,57.678,72.548,58.572,71.359,58.572z"/>
15
- </g>
16
- </svg>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="print" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 320">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #006dc1;
7
+ stroke-width: 0px;
8
+ }
9
+ </style>
10
+ </defs>
11
+ <path class="cls-1" d="M275.5,243.5h-24.08c-5.52,0-10-4.48-10-10s4.48-10,10-10h24.08c5.51,0,10-4.49,10-10v-102c0-5.51-4.49-10-10-10H44.5c-5.51,0-10,4.49-10,10v102c0,5.51,4.49,10,10,10h22.04c5.52,0,10,4.48,10,10s-4.48,10-10,10h-22.04c-16.54,0-30-13.46-30-30v-102c0-16.54,13.46-30,30-30h231c16.54,0,30,13.46,30,30v102c0,16.54-13.46,30-30,30Z"/>
12
+ <path class="cls-1" d="M209.96,217h-100c-5.52,0-10-4.48-10-10s4.48-10,10-10h100c5.52,0,10,4.48,10,10s-4.48,10-10,10Z"/>
13
+ <path class="cls-1" d="M209.96,256h-100c-5.52,0-10-4.48-10-10s4.48-10,10-10h100c5.52,0,10,4.48,10,10s-4.48,10-10,10Z"/>
14
+ <path class="cls-1" d="M232.5,101.5H86.5c-12.13,0-22-9.87-22-22v-42c0-12.13,9.87-22,22-22h146c12.13,0,22,9.87,22,22v42c0,12.13-9.87,22-22,22ZM86.5,35.5c-1.1,0-2,.9-2,2v42c0,1.1.9,2,2,2h146c1.1,0,2-.9,2-2v-42c0-1.1-.9-2-2-2H86.5Z"/>
15
+ <path class="cls-1" d="M232.5,304.5H86.5c-12.13,0-22-9.87-22-22v-98c0-12.13,9.87-22,22-22h146c12.13,0,22,9.87,22,22v98c0,12.13-9.87,22-22,22ZM86.5,182.5c-1.1,0-2,.9-2,2v98c0,1.1.9,2,2,2h146c1.1,0,2-.9,2-2v-98c0-1.1-.9-2-2-2H86.5Z"/>
16
+ </svg>