hr-design-system-handlebars 1.114.122 → 1.114.124
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 +25 -0
- package/dist/assets/index.css +3 -3
- package/dist/views/components/content/copytext/copytext_body.hbs +5 -9
- package/dist/views/components/social_sharing/social_sharing_icons.hbs +0 -16
- package/dist/views_static/components/content/copytext/copytext_body.hbs +5 -9
- package/dist/views_static/components/social_sharing/social_sharing_icons.hbs +0 -16
- package/package.json +1 -1
- package/src/stories/views/components/content/copytext/copytext_body.hbs +5 -9
- package/src/stories/views/components/social_sharing/social_sharing_icons.hbs +0 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
# v1.114.124 (Fri Mar 14 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- removes twitterLink from Social Sharing Icons template [#1265](https://github.com/mumprod/hr-design-system-handlebars/pull/1265) ([@StefanVesper](https://github.com/StefanVesper))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v1.114.123 (Tue Mar 11 2025)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- Refactor external service loading logic in copytext_body.hbs [#1264](https://github.com/mumprod/hr-design-system-handlebars/pull/1264) (saad.elbaciri@hr.de [@selbaciri](https://github.com/selbaciri))
|
|
18
|
+
|
|
19
|
+
#### Authors: 2
|
|
20
|
+
|
|
21
|
+
- Saad El Baciri ([@selbaciri](https://github.com/selbaciri))
|
|
22
|
+
- selbaciri (saad.elbaciri@hr.de)
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
1
26
|
# v1.114.122 (Mon Mar 10 2025)
|
|
2
27
|
|
|
3
28
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -3863,7 +3863,7 @@ article #commentList {
|
|
|
3863
3863
|
border-bottom-color: var(--color-secondary-ds);
|
|
3864
3864
|
}
|
|
3865
3865
|
.counter-reset {
|
|
3866
|
-
counter-reset:
|
|
3866
|
+
counter-reset: cnt1741961296037;
|
|
3867
3867
|
}
|
|
3868
3868
|
.animate-delay-100 {
|
|
3869
3869
|
--tw-animate-delay: 100ms;
|
|
@@ -4308,7 +4308,7 @@ html { scroll-behavior: smooth; }
|
|
|
4308
4308
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
4309
4309
|
}
|
|
4310
4310
|
.-ordered {
|
|
4311
|
-
counter-increment:
|
|
4311
|
+
counter-increment: cnt1741961296037 1;
|
|
4312
4312
|
}
|
|
4313
4313
|
.-ordered::before {
|
|
4314
4314
|
position: absolute;
|
|
@@ -4326,7 +4326,7 @@ html { scroll-behavior: smooth; }
|
|
|
4326
4326
|
--tw-text-opacity: 1;
|
|
4327
4327
|
color: rgba(0, 0, 0, 1);
|
|
4328
4328
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
4329
|
-
content: counter(
|
|
4329
|
+
content: counter(cnt1741961296037);
|
|
4330
4330
|
}
|
|
4331
4331
|
/*! ****************************/
|
|
4332
4332
|
/*! DataPolicy stuff */
|
|
@@ -2,13 +2,6 @@
|
|
|
2
2
|
{{> components/content/copytext/components/headline }}
|
|
3
3
|
{{/if}}
|
|
4
4
|
{{#unless this.isInfoBox}}
|
|
5
|
-
{{~#if @first~}}
|
|
6
|
-
{{~#with this.paragraphBoxItem }}
|
|
7
|
-
{{~#if this.isExternalService}}
|
|
8
|
-
{{> components/content/copytext/components/externalservice _lazyLoad=false }}
|
|
9
|
-
{{/if~}}
|
|
10
|
-
{{~/with}}
|
|
11
|
-
{{else}}
|
|
12
5
|
{{~#with this.paragraphBoxItem }}
|
|
13
6
|
{{~#if this.isImage}}
|
|
14
7
|
{{~> components/content/copytext/components/image/image _isWebview=../_isWebview _isTickerCopytext=../_isTickerCopytext}}
|
|
@@ -59,7 +52,11 @@
|
|
|
59
52
|
{{> components/content/copytext/components/voting }}
|
|
60
53
|
{{/if~}}
|
|
61
54
|
{{~#if this.isExternalService}}
|
|
62
|
-
{{
|
|
55
|
+
{{~#if @../first}}
|
|
56
|
+
{{> components/content/copytext/components/externalservice _lazyLoad=false }}
|
|
57
|
+
{{else}}
|
|
58
|
+
{{> components/content/copytext/components/externalservice _lazyLoad=true }}
|
|
59
|
+
{{/if~}}
|
|
63
60
|
{{/if~}}
|
|
64
61
|
{{~#if this.isContentNav}}
|
|
65
62
|
{{#with this.toModel.contentNavigationTeaser}}
|
|
@@ -67,7 +64,6 @@
|
|
|
67
64
|
{{/with}}
|
|
68
65
|
{{/if~}}
|
|
69
66
|
{{~/with}}
|
|
70
|
-
{{/if}}
|
|
71
67
|
{{/unless}}
|
|
72
68
|
|
|
73
69
|
{{~#with this.paragraphTeaserItem }}
|
|
@@ -17,22 +17,6 @@
|
|
|
17
17
|
</div>
|
|
18
18
|
</li>
|
|
19
19
|
{{/with}}
|
|
20
|
-
{{~#with this.twitterLink ~}}
|
|
21
|
-
<li>
|
|
22
|
-
<a class="{{if (isUserConsentNeeded this) 'js-user-consent-needed ' ''}}{{#with ../_trackingData}} js-load{{/with}} flex order-2 ds-button font-heading active:scale-95 w-8 h-8"
|
|
23
|
-
|
|
24
|
-
href="{{this}}"
|
|
25
|
-
target="_blank"
|
|
26
|
-
rel="noopener noreferrer"
|
|
27
|
-
title="{{loca "share_x_linktitle" }}"
|
|
28
|
-
{{#with ../_trackingData}}
|
|
29
|
-
data-hr-click-tracking='{"settings": [{"type":"uxAction","secondLevelId": "{{this.secondLevelId}}","clickLabel": "socialShareClick::{{if ../../_socialSharingType ../../_socialSharingType "default" }}::X"}]}'
|
|
30
|
-
{{/with}}
|
|
31
|
-
>
|
|
32
|
-
{{~> components/base/image/icon _addClass="w-full h-full fill-link hover:scale-105 " _icon="x-ds" _iconmap="icons" ~}}
|
|
33
|
-
</a>
|
|
34
|
-
</li>
|
|
35
|
-
{{/with}}
|
|
36
20
|
{{~#with this.facebookLink}}
|
|
37
21
|
<li class="">
|
|
38
22
|
<a class="{{if (isUserConsentNeeded this) 'js-user-consent-needed ' ''}}{{#with ../_trackingData}} js-load{{/with}} flex order-2 ds-button font-heading active:scale-95 w-8 h-8"
|
|
@@ -2,13 +2,6 @@
|
|
|
2
2
|
{{> components/content/copytext/components/headline }}
|
|
3
3
|
{{/if}}
|
|
4
4
|
{{#unless this.isInfoBox}}
|
|
5
|
-
{{~#if @first~}}
|
|
6
|
-
{{~#with this.paragraphBoxItem }}
|
|
7
|
-
{{~#if this.isExternalService}}
|
|
8
|
-
{{> components/content/copytext/components/externalservice _lazyLoad=false }}
|
|
9
|
-
{{/if~}}
|
|
10
|
-
{{~/with}}
|
|
11
|
-
{{else}}
|
|
12
5
|
{{~#with this.paragraphBoxItem }}
|
|
13
6
|
{{~#if this.isImage}}
|
|
14
7
|
{{~> components/content/copytext/components/image/image _isWebview=../_isWebview _isTickerCopytext=../_isTickerCopytext}}
|
|
@@ -59,7 +52,11 @@
|
|
|
59
52
|
{{> components/content/copytext/components/voting }}
|
|
60
53
|
{{/if~}}
|
|
61
54
|
{{~#if this.isExternalService}}
|
|
62
|
-
{{
|
|
55
|
+
{{~#if @../first}}
|
|
56
|
+
{{> components/content/copytext/components/externalservice _lazyLoad=false }}
|
|
57
|
+
{{else}}
|
|
58
|
+
{{> components/content/copytext/components/externalservice _lazyLoad=true }}
|
|
59
|
+
{{/if~}}
|
|
63
60
|
{{/if~}}
|
|
64
61
|
{{~#if this.isContentNav}}
|
|
65
62
|
{{#with this.toModel.contentNavigationTeaser}}
|
|
@@ -67,7 +64,6 @@
|
|
|
67
64
|
{{/with}}
|
|
68
65
|
{{/if~}}
|
|
69
66
|
{{~/with}}
|
|
70
|
-
{{/if}}
|
|
71
67
|
{{/unless}}
|
|
72
68
|
|
|
73
69
|
{{~#with this.paragraphTeaserItem }}
|
|
@@ -17,22 +17,6 @@
|
|
|
17
17
|
</div>
|
|
18
18
|
</li>
|
|
19
19
|
{{/with}}
|
|
20
|
-
{{~#with this.twitterLink ~}}
|
|
21
|
-
<li>
|
|
22
|
-
<a class="{{if (isUserConsentNeeded this) 'js-user-consent-needed ' ''}}{{#with ../_trackingData}} js-load{{/with}} flex order-2 ds-button font-heading active:scale-95 w-8 h-8"
|
|
23
|
-
|
|
24
|
-
href="{{this}}"
|
|
25
|
-
target="_blank"
|
|
26
|
-
rel="noopener noreferrer"
|
|
27
|
-
title="{{loca "share_x_linktitle" }}"
|
|
28
|
-
{{#with ../_trackingData}}
|
|
29
|
-
data-hr-click-tracking='{"settings": [{"type":"uxAction","secondLevelId": "{{this.secondLevelId}}","clickLabel": "socialShareClick::{{if ../../_socialSharingType ../../_socialSharingType "default" }}::X"}]}'
|
|
30
|
-
{{/with}}
|
|
31
|
-
>
|
|
32
|
-
{{~> components/base/image/icon _addClass="w-full h-full fill-link hover:scale-105 " _icon="x-ds" _iconmap="icons" ~}}
|
|
33
|
-
</a>
|
|
34
|
-
</li>
|
|
35
|
-
{{/with}}
|
|
36
20
|
{{~#with this.facebookLink}}
|
|
37
21
|
<li class="">
|
|
38
22
|
<a class="{{if (isUserConsentNeeded this) 'js-user-consent-needed ' ''}}{{#with ../_trackingData}} js-load{{/with}} flex order-2 ds-button font-heading active:scale-95 w-8 h-8"
|
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.114.
|
|
9
|
+
"version": "1.114.124",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -2,13 +2,6 @@
|
|
|
2
2
|
{{> components/content/copytext/components/headline }}
|
|
3
3
|
{{/if}}
|
|
4
4
|
{{#unless this.isInfoBox}}
|
|
5
|
-
{{~#if @first~}}
|
|
6
|
-
{{~#with this.paragraphBoxItem }}
|
|
7
|
-
{{~#if this.isExternalService}}
|
|
8
|
-
{{> components/content/copytext/components/externalservice _lazyLoad=false }}
|
|
9
|
-
{{/if~}}
|
|
10
|
-
{{~/with}}
|
|
11
|
-
{{else}}
|
|
12
5
|
{{~#with this.paragraphBoxItem }}
|
|
13
6
|
{{~#if this.isImage}}
|
|
14
7
|
{{~> components/content/copytext/components/image/image _isWebview=../_isWebview _isTickerCopytext=../_isTickerCopytext}}
|
|
@@ -59,7 +52,11 @@
|
|
|
59
52
|
{{> components/content/copytext/components/voting }}
|
|
60
53
|
{{/if~}}
|
|
61
54
|
{{~#if this.isExternalService}}
|
|
62
|
-
{{
|
|
55
|
+
{{~#if @../first}}
|
|
56
|
+
{{> components/content/copytext/components/externalservice _lazyLoad=false }}
|
|
57
|
+
{{else}}
|
|
58
|
+
{{> components/content/copytext/components/externalservice _lazyLoad=true }}
|
|
59
|
+
{{/if~}}
|
|
63
60
|
{{/if~}}
|
|
64
61
|
{{~#if this.isContentNav}}
|
|
65
62
|
{{#with this.toModel.contentNavigationTeaser}}
|
|
@@ -67,7 +64,6 @@
|
|
|
67
64
|
{{/with}}
|
|
68
65
|
{{/if~}}
|
|
69
66
|
{{~/with}}
|
|
70
|
-
{{/if}}
|
|
71
67
|
{{/unless}}
|
|
72
68
|
|
|
73
69
|
{{~#with this.paragraphTeaserItem }}
|
|
@@ -17,22 +17,6 @@
|
|
|
17
17
|
</div>
|
|
18
18
|
</li>
|
|
19
19
|
{{/with}}
|
|
20
|
-
{{~#with this.twitterLink ~}}
|
|
21
|
-
<li>
|
|
22
|
-
<a class="{{if (isUserConsentNeeded this) 'js-user-consent-needed ' ''}}{{#with ../_trackingData}} js-load{{/with}} flex order-2 ds-button font-heading active:scale-95 w-8 h-8"
|
|
23
|
-
|
|
24
|
-
href="{{this}}"
|
|
25
|
-
target="_blank"
|
|
26
|
-
rel="noopener noreferrer"
|
|
27
|
-
title="{{loca "share_x_linktitle" }}"
|
|
28
|
-
{{#with ../_trackingData}}
|
|
29
|
-
data-hr-click-tracking='{"settings": [{"type":"uxAction","secondLevelId": "{{this.secondLevelId}}","clickLabel": "socialShareClick::{{if ../../_socialSharingType ../../_socialSharingType "default" }}::X"}]}'
|
|
30
|
-
{{/with}}
|
|
31
|
-
>
|
|
32
|
-
{{~> components/base/image/icon _addClass="w-full h-full fill-link hover:scale-105 " _icon="x-ds" _iconmap="icons" ~}}
|
|
33
|
-
</a>
|
|
34
|
-
</li>
|
|
35
|
-
{{/with}}
|
|
36
20
|
{{~#with this.facebookLink}}
|
|
37
21
|
<li class="">
|
|
38
22
|
<a class="{{if (isUserConsentNeeded this) 'js-user-consent-needed ' ''}}{{#with ../_trackingData}} js-load{{/with}} flex order-2 ds-button font-heading active:scale-95 w-8 h-8"
|