hr-design-system-handlebars 1.54.2 → 1.55.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.
- package/CHANGELOG.md +24 -0
- package/dist/assets/index.css +3 -3
- package/dist/assets/js/base/tracking/pianoHelper.subfeature.js +3 -3
- package/dist/views/components/base/link.hbs +1 -1
- package/dist/views/components/footer/page_footer_metadata.hbs +9 -1
- package/dist/views_static/components/base/link.hbs +1 -1
- package/dist/views_static/components/footer/page_footer_metadata.hbs +9 -1
- package/package.json +1 -1
- package/src/stories/views/base/tracking/pianoHelper.subfeature.js +3 -3
- package/src/stories/views/components/base/link.hbs +1 -1
- package/src/stories/views/components/footer/page_footer_metadata.hbs +9 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v1.55.1 (Tue Feb 06 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- -wrap links in with-block for hbs-compatibility [#833](https://github.com/mumprod/hr-design-system-handlebars/pull/833) ([@StefanVesper](https://github.com/StefanVesper))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v1.55.0 (Tue Feb 06 2024)
|
|
14
|
+
|
|
15
|
+
#### 🚀 Enhancement
|
|
16
|
+
|
|
17
|
+
- Bugfix/2829 [#832](https://github.com/mumprod/hr-design-system-handlebars/pull/832) ([@szuelch](https://github.com/szuelch))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- [@szuelch](https://github.com/szuelch)
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v1.54.2 (Tue Feb 06 2024)
|
|
2
26
|
|
|
3
27
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -3305,7 +3305,7 @@ a.link:hover {
|
|
|
3305
3305
|
border-bottom-color: var(--color-secondary-ds);
|
|
3306
3306
|
}
|
|
3307
3307
|
.counter-reset {
|
|
3308
|
-
counter-reset:
|
|
3308
|
+
counter-reset: cnt1707228712155;
|
|
3309
3309
|
}
|
|
3310
3310
|
.hyphens-auto {
|
|
3311
3311
|
-webkit-hyphens: auto;
|
|
@@ -3607,7 +3607,7 @@ a.link:hover {
|
|
|
3607
3607
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3608
3608
|
}
|
|
3609
3609
|
.-ordered {
|
|
3610
|
-
counter-increment:
|
|
3610
|
+
counter-increment: cnt1707228712155 1;
|
|
3611
3611
|
}
|
|
3612
3612
|
.-ordered::before {
|
|
3613
3613
|
position: absolute;
|
|
@@ -3623,7 +3623,7 @@ a.link:hover {
|
|
|
3623
3623
|
letter-spacing: .0125em;
|
|
3624
3624
|
--tw-text-opacity: 1;
|
|
3625
3625
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3626
|
-
content: counter(
|
|
3626
|
+
content: counter(cnt1707228712155);
|
|
3627
3627
|
}
|
|
3628
3628
|
/*! ****************************/
|
|
3629
3629
|
/*! DataPolicy stuff */
|
|
@@ -6,7 +6,7 @@ const isTrackingAllowed = () => {
|
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
const uxAction = (label, secondLevelId) => {
|
|
9
|
-
secondLevelId = secondLevelId || pageDisplayConfig.
|
|
9
|
+
secondLevelId = secondLevelId || typeof pageDisplayConfig != "undefined" && pageDisplayConfig != undefined ? pageDisplayConfig.site_level2_id:99
|
|
10
10
|
if (typeof pa != "undefined" && pa != undefined && isTrackingAllowed()) {
|
|
11
11
|
pa.sendEvent('click.action', {
|
|
12
12
|
click: label,
|
|
@@ -16,7 +16,7 @@ const uxAction = (label, secondLevelId) => {
|
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
const uxNavigation = (label, secondLevelId) => {
|
|
19
|
-
secondLevelId = secondLevelId || pageDisplayConfig.
|
|
19
|
+
secondLevelId = secondLevelId || typeof pageDisplayConfig != "undefined" && pageDisplayConfig != undefined ? pageDisplayConfig.site_level2_id:99
|
|
20
20
|
if (typeof pa != "undefined" && pa != undefined && isTrackingAllowed()) {
|
|
21
21
|
pa.sendEvent('click.navigation', {
|
|
22
22
|
click: label,
|
|
@@ -32,7 +32,7 @@ const pi = () => {
|
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
const download = (label, secondLevelId) => {
|
|
35
|
-
secondLevelId = secondLevelId || pageDisplayConfig.
|
|
35
|
+
secondLevelId = secondLevelId || typeof pageDisplayConfig != "undefined" && pageDisplayConfig != undefined ? pageDisplayConfig.site_level2_id:99
|
|
36
36
|
if (typeof pa != "undefined" && pa != undefined && isTrackingAllowed()) {
|
|
37
37
|
pa.sendEvent('click.download', {
|
|
38
38
|
click: label,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<a {{#with _link.webviewUrl}}data-webviewurl="{{this}}"{{/with}} {{#if _link.isStaticUrl}}href="{{resourceUrl _link.url}}{{else}}href="{{_link.url}}{{/if}}{{#if this.hasComments}}#commentList{{/if}}"
|
|
1
|
+
<a {{#with _link.webviewUrl}}data-webviewurl="{{this}}"{{/with}} {{#if _link.isStaticUrl}}href="{{#if _link.site}}{{resourceUrl _link.url _site=_link.site}}{{else}}{{resourceUrl _link.url}}{{/if}}{{else}}href="{{_link.url}}{{/if}}{{#if this.hasComments}}#commentList{{/if}}"
|
|
2
2
|
class="sb-link ds-link js-load {{#if _isSelected}} {{defaultIfEmpty _selectedCssClass "-current"}}{{/if}}{{#if _css}} {{_css}}{{/if}} {{#> css}}{{/css}}"
|
|
3
3
|
{{#if _link.isTargetBlank}} target="_blank" rel="noopener{{#if _link.hasNoReferrerFlag}} noreferrer{{/if}}"{{/if}}
|
|
4
4
|
{{#if _isAriaHidden}} aria-hidden="true" tabindex="-1"{{/if}}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
<div class="flex flex-col self-center text-sm md:self-end w-fit md:flex-row">
|
|
2
2
|
<div class="flex justify-center w-auto md:justify-start">
|
|
3
|
+
{{#with this}}
|
|
3
4
|
{{#> components/base/link _link=_hrDeLink _css="flex whitespace-nowrap hover:underline"}}
|
|
4
5
|
© {{{../../_hrDeLink-adjust_context.text}}} {{{../../_hrDeLink-adjust_context.currentTime.year}}}
|
|
5
6
|
{{~#if ../../_hrDeLink-adjust_context.hiddenText~}}
|
|
@@ -15,13 +16,15 @@
|
|
|
15
16
|
{{/components/base/link}}
|
|
16
17
|
{{#*inline "htmlProperties"}}
|
|
17
18
|
{{#if ../../_hrDeLink-adjust_context.labelText}} aria-label="{{../../_hrDeLink-adjust_context.labelText}}"{{/if}}
|
|
18
|
-
{{#if ../../_hrDeLink-
|
|
19
|
+
{{#if ../../_hrDeLink-adjust_context.title}} title="{{../../_hrDeLink-adjust_context.title}}"{{/if}}
|
|
19
20
|
{{/inline}}
|
|
21
|
+
{{/with}}
|
|
20
22
|
</div>
|
|
21
23
|
|
|
22
24
|
<span class="hidden px-2 md:flex ">|</span>
|
|
23
25
|
|
|
24
26
|
<div class="flex justify-center w-auto md:justify-start">
|
|
27
|
+
{{#with this}}
|
|
25
28
|
{{#> components/base/link _link=_ardDeLink _css="flex whitespace-nowrap hover:underline"}}
|
|
26
29
|
{{{../../_ardDeLink-adjust_context.text}}}
|
|
27
30
|
{{~#if ../../_ardDeLink-adjust_context.hiddenText~}}
|
|
@@ -39,11 +42,13 @@
|
|
|
39
42
|
{{#if ../../_ardDeLink-adjust_context.labelText}} aria-label="{{../../_ardDeLink-adjust_context.labelText}}"{{/if}}
|
|
40
43
|
{{#if ../../_ardDeLink-adjust_context.title}} title="{{../../_ardDeLink-adjust_context.title}}"{{/if}}
|
|
41
44
|
{{/inline}}
|
|
45
|
+
{{/with}}
|
|
42
46
|
</div>
|
|
43
47
|
|
|
44
48
|
<span class="hidden px-2 md:flex ">|</span>
|
|
45
49
|
|
|
46
50
|
<div class="flex justify-center w-auto md:justify-start">
|
|
51
|
+
{{#with this}}
|
|
47
52
|
{{#> components/base/link _link=_dataProtectionLink _css="flex whitespace-nowrap hover:underline"}}
|
|
48
53
|
{{{../../_dataProtectionLink-adjust_context.text}}}
|
|
49
54
|
{{~#if ../../_dataProtectionLink-adjust_context.hiddenText~}}
|
|
@@ -61,11 +66,13 @@
|
|
|
61
66
|
{{#if ../../_dataProtectionLink-adjust_context.labelText}} aria-label="{{../../_dataProtectionLink-adjust_context.labelText}}"{{/if}}
|
|
62
67
|
{{#if ../../_dataProtectionLink-adjust_context.title}} title="{{../../_dataProtectionLink-adjust_context.title}}"{{/if}}
|
|
63
68
|
{{/inline}}
|
|
69
|
+
{{/with}}
|
|
64
70
|
</div>
|
|
65
71
|
|
|
66
72
|
<span class="hidden px-2 md:flex ">|</span>
|
|
67
73
|
|
|
68
74
|
<div class="flex justify-center w-auto md:justify-start">
|
|
75
|
+
{{#with this}}
|
|
69
76
|
{{#> components/base/link _link=_imprintLink _css="flex whitespace-nowrap hover:underline"}}
|
|
70
77
|
{{{../../_imprintLink-adjust_context.text}}}
|
|
71
78
|
{{~#if ../../_imprintLink-adjust_context.hiddenText~}}
|
|
@@ -83,5 +90,6 @@
|
|
|
83
90
|
{{#if ../../_imprintLink-adjust_context.labelText}} aria-label="{{../../_imprintLink-adjust_context.labelText}}"{{/if}}
|
|
84
91
|
{{#if ../../_imprintLink-adjust_context.title}} title="{{../../_imprintLink-adjust_context.title}}"{{/if}}
|
|
85
92
|
{{/inline}}
|
|
93
|
+
{{/with}}
|
|
86
94
|
</div>
|
|
87
95
|
</div>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<a {{#with _link.webviewUrl}}data-webviewurl="{{this}}"{{/with}} {{#if _link.isStaticUrl}}href="{{resourceUrl _link.url}}{{else}}href="{{_link.url}}{{/if}}{{#if this.hasComments}}#commentList{{/if}}"
|
|
1
|
+
<a {{#with _link.webviewUrl}}data-webviewurl="{{this}}"{{/with}} {{#if _link.isStaticUrl}}href="{{#if _link.site}}{{resourceUrl _link.url _site=_link.site}}{{else}}{{resourceUrl _link.url}}{{/if}}{{else}}href="{{_link.url}}{{/if}}{{#if this.hasComments}}#commentList{{/if}}"
|
|
2
2
|
class="sb-link ds-link js-load {{#if _isSelected}} {{defaultIfEmpty _selectedCssClass "-current"}}{{/if}}{{#if _css}} {{_css}}{{/if}} {{#> css}}{{/css}}"
|
|
3
3
|
{{#if _link.isTargetBlank}} target="_blank" rel="noopener{{#if _link.hasNoReferrerFlag}} noreferrer{{/if}}"{{/if}}
|
|
4
4
|
{{#if _isAriaHidden}} aria-hidden="true" tabindex="-1"{{/if}}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
<div class="flex flex-col self-center text-sm md:self-end w-fit md:flex-row">
|
|
2
2
|
<div class="flex justify-center w-auto md:justify-start">
|
|
3
|
+
{{#with this}}
|
|
3
4
|
{{#> components/base/link _link=_hrDeLink _css="flex whitespace-nowrap hover:underline"}}
|
|
4
5
|
© {{{_hrDeLink.text}}} {{{_hrDeLink.currentTime.year}}}
|
|
5
6
|
{{~#if _hrDeLink.hiddenText~}}
|
|
@@ -15,13 +16,15 @@
|
|
|
15
16
|
{{/components/base/link}}
|
|
16
17
|
{{#*inline "htmlProperties"}}
|
|
17
18
|
{{#if _hrDeLink.labelText}} aria-label="{{_hrDeLink.labelText}}"{{/if}}
|
|
18
|
-
{{#if
|
|
19
|
+
{{#if _hrDeLink.title}} title="{{_hrDeLink.title}}"{{/if}}
|
|
19
20
|
{{/inline}}
|
|
21
|
+
{{/with}}
|
|
20
22
|
</div>
|
|
21
23
|
|
|
22
24
|
<span class="hidden px-2 md:flex ">|</span>
|
|
23
25
|
|
|
24
26
|
<div class="flex justify-center w-auto md:justify-start">
|
|
27
|
+
{{#with this}}
|
|
25
28
|
{{#> components/base/link _link=_ardDeLink _css="flex whitespace-nowrap hover:underline"}}
|
|
26
29
|
{{{_ardDeLink.text}}}
|
|
27
30
|
{{~#if _ardDeLink.hiddenText~}}
|
|
@@ -39,11 +42,13 @@
|
|
|
39
42
|
{{#if _ardDeLink.labelText}} aria-label="{{_ardDeLink.labelText}}"{{/if}}
|
|
40
43
|
{{#if _ardDeLink.title}} title="{{_ardDeLink.title}}"{{/if}}
|
|
41
44
|
{{/inline}}
|
|
45
|
+
{{/with}}
|
|
42
46
|
</div>
|
|
43
47
|
|
|
44
48
|
<span class="hidden px-2 md:flex ">|</span>
|
|
45
49
|
|
|
46
50
|
<div class="flex justify-center w-auto md:justify-start">
|
|
51
|
+
{{#with this}}
|
|
47
52
|
{{#> components/base/link _link=_dataProtectionLink _css="flex whitespace-nowrap hover:underline"}}
|
|
48
53
|
{{{_dataProtectionLink.text}}}
|
|
49
54
|
{{~#if _dataProtectionLink.hiddenText~}}
|
|
@@ -61,11 +66,13 @@
|
|
|
61
66
|
{{#if _dataProtectionLink.labelText}} aria-label="{{_dataProtectionLink.labelText}}"{{/if}}
|
|
62
67
|
{{#if _dataProtectionLink.title}} title="{{_dataProtectionLink.title}}"{{/if}}
|
|
63
68
|
{{/inline}}
|
|
69
|
+
{{/with}}
|
|
64
70
|
</div>
|
|
65
71
|
|
|
66
72
|
<span class="hidden px-2 md:flex ">|</span>
|
|
67
73
|
|
|
68
74
|
<div class="flex justify-center w-auto md:justify-start">
|
|
75
|
+
{{#with this}}
|
|
69
76
|
{{#> components/base/link _link=_imprintLink _css="flex whitespace-nowrap hover:underline"}}
|
|
70
77
|
{{{_imprintLink.text}}}
|
|
71
78
|
{{~#if _imprintLink.hiddenText~}}
|
|
@@ -83,5 +90,6 @@
|
|
|
83
90
|
{{#if _imprintLink.labelText}} aria-label="{{_imprintLink.labelText}}"{{/if}}
|
|
84
91
|
{{#if _imprintLink.title}} title="{{_imprintLink.title}}"{{/if}}
|
|
85
92
|
{{/inline}}
|
|
93
|
+
{{/with}}
|
|
86
94
|
</div>
|
|
87
95
|
</div>
|
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.
|
|
9
|
+
"version": "1.55.1",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -6,7 +6,7 @@ const isTrackingAllowed = () => {
|
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
const uxAction = (label, secondLevelId) => {
|
|
9
|
-
secondLevelId = secondLevelId || pageDisplayConfig.
|
|
9
|
+
secondLevelId = secondLevelId || typeof pageDisplayConfig != "undefined" && pageDisplayConfig != undefined ? pageDisplayConfig.site_level2_id:99
|
|
10
10
|
if (typeof pa != "undefined" && pa != undefined && isTrackingAllowed()) {
|
|
11
11
|
pa.sendEvent('click.action', {
|
|
12
12
|
click: label,
|
|
@@ -16,7 +16,7 @@ const uxAction = (label, secondLevelId) => {
|
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
const uxNavigation = (label, secondLevelId) => {
|
|
19
|
-
secondLevelId = secondLevelId || pageDisplayConfig.
|
|
19
|
+
secondLevelId = secondLevelId || typeof pageDisplayConfig != "undefined" && pageDisplayConfig != undefined ? pageDisplayConfig.site_level2_id:99
|
|
20
20
|
if (typeof pa != "undefined" && pa != undefined && isTrackingAllowed()) {
|
|
21
21
|
pa.sendEvent('click.navigation', {
|
|
22
22
|
click: label,
|
|
@@ -32,7 +32,7 @@ const pi = () => {
|
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
const download = (label, secondLevelId) => {
|
|
35
|
-
secondLevelId = secondLevelId || pageDisplayConfig.
|
|
35
|
+
secondLevelId = secondLevelId || typeof pageDisplayConfig != "undefined" && pageDisplayConfig != undefined ? pageDisplayConfig.site_level2_id:99
|
|
36
36
|
if (typeof pa != "undefined" && pa != undefined && isTrackingAllowed()) {
|
|
37
37
|
pa.sendEvent('click.download', {
|
|
38
38
|
click: label,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<a {{#with _link.webviewUrl}}data-webviewurl="{{this}}"{{/with}} {{#if _link.isStaticUrl}}href="{{resourceUrl _link.url}}{{else}}href="{{_link.url}}{{/if}}{{#if this.hasComments}}#commentList{{/if}}"
|
|
1
|
+
<a {{#with _link.webviewUrl}}data-webviewurl="{{this}}"{{/with}} {{#if _link.isStaticUrl}}href="{{#if _link.site}}{{resourceUrl _link.url _site=_link.site}}{{else}}{{resourceUrl _link.url}}{{/if}}{{else}}href="{{_link.url}}{{/if}}{{#if this.hasComments}}#commentList{{/if}}"
|
|
2
2
|
class="sb-link ds-link js-load {{#if _isSelected}} {{defaultIfEmpty _selectedCssClass "-current"}}{{/if}}{{#if _css}} {{_css}}{{/if}} {{#> css}}{{/css}}"
|
|
3
3
|
{{#if _link.isTargetBlank}} target="_blank" rel="noopener{{#if _link.hasNoReferrerFlag}} noreferrer{{/if}}"{{/if}}
|
|
4
4
|
{{#if _isAriaHidden}} aria-hidden="true" tabindex="-1"{{/if}}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
<div class="flex flex-col self-center text-sm md:self-end w-fit md:flex-row">
|
|
2
2
|
<div class="flex justify-center w-auto md:justify-start">
|
|
3
|
+
{{#with this}}
|
|
3
4
|
{{#> components/base/link _link=_hrDeLink _css="flex whitespace-nowrap hover:underline"}}
|
|
4
5
|
© {{{_hrDeLink-adjust_context.text}}} {{{_hrDeLink-adjust_context.currentTime.year}}}
|
|
5
6
|
{{~#if _hrDeLink-adjust_context.hiddenText~}}
|
|
@@ -15,13 +16,15 @@
|
|
|
15
16
|
{{/components/base/link}}
|
|
16
17
|
{{#*inline "htmlProperties"}}
|
|
17
18
|
{{#if _hrDeLink-adjust_context.labelText}} aria-label="{{_hrDeLink-adjust_context.labelText}}"{{/if}}
|
|
18
|
-
{{#if _hrDeLink-
|
|
19
|
+
{{#if _hrDeLink-adjust_context.title}} title="{{_hrDeLink-adjust_context.title}}"{{/if}}
|
|
19
20
|
{{/inline}}
|
|
21
|
+
{{/with}}
|
|
20
22
|
</div>
|
|
21
23
|
|
|
22
24
|
<span class="hidden px-2 md:flex ">|</span>
|
|
23
25
|
|
|
24
26
|
<div class="flex justify-center w-auto md:justify-start">
|
|
27
|
+
{{#with this}}
|
|
25
28
|
{{#> components/base/link _link=_ardDeLink _css="flex whitespace-nowrap hover:underline"}}
|
|
26
29
|
{{{_ardDeLink-adjust_context.text}}}
|
|
27
30
|
{{~#if _ardDeLink-adjust_context.hiddenText~}}
|
|
@@ -39,11 +42,13 @@
|
|
|
39
42
|
{{#if _ardDeLink-adjust_context.labelText}} aria-label="{{_ardDeLink-adjust_context.labelText}}"{{/if}}
|
|
40
43
|
{{#if _ardDeLink-adjust_context.title}} title="{{_ardDeLink-adjust_context.title}}"{{/if}}
|
|
41
44
|
{{/inline}}
|
|
45
|
+
{{/with}}
|
|
42
46
|
</div>
|
|
43
47
|
|
|
44
48
|
<span class="hidden px-2 md:flex ">|</span>
|
|
45
49
|
|
|
46
50
|
<div class="flex justify-center w-auto md:justify-start">
|
|
51
|
+
{{#with this}}
|
|
47
52
|
{{#> components/base/link _link=_dataProtectionLink _css="flex whitespace-nowrap hover:underline"}}
|
|
48
53
|
{{{_dataProtectionLink-adjust_context.text}}}
|
|
49
54
|
{{~#if _dataProtectionLink-adjust_context.hiddenText~}}
|
|
@@ -61,11 +66,13 @@
|
|
|
61
66
|
{{#if _dataProtectionLink-adjust_context.labelText}} aria-label="{{_dataProtectionLink-adjust_context.labelText}}"{{/if}}
|
|
62
67
|
{{#if _dataProtectionLink-adjust_context.title}} title="{{_dataProtectionLink-adjust_context.title}}"{{/if}}
|
|
63
68
|
{{/inline}}
|
|
69
|
+
{{/with}}
|
|
64
70
|
</div>
|
|
65
71
|
|
|
66
72
|
<span class="hidden px-2 md:flex ">|</span>
|
|
67
73
|
|
|
68
74
|
<div class="flex justify-center w-auto md:justify-start">
|
|
75
|
+
{{#with this}}
|
|
69
76
|
{{#> components/base/link _link=_imprintLink _css="flex whitespace-nowrap hover:underline"}}
|
|
70
77
|
{{{_imprintLink-adjust_context.text}}}
|
|
71
78
|
{{~#if _imprintLink-adjust_context.hiddenText~}}
|
|
@@ -83,5 +90,6 @@
|
|
|
83
90
|
{{#if _imprintLink-adjust_context.labelText}} aria-label="{{_imprintLink-adjust_context.labelText}}"{{/if}}
|
|
84
91
|
{{#if _imprintLink-adjust_context.title}} title="{{_imprintLink-adjust_context.title}}"{{/if}}
|
|
85
92
|
{{/inline}}
|
|
93
|
+
{{/with}}
|
|
86
94
|
</div>
|
|
87
95
|
</div>
|