hr-design-system-handlebars 1.51.3 → 1.51.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.
- package/CHANGELOG.md +12 -0
- package/dist/assets/index.css +3 -3
- package/dist/views/components/teaser/components/teaser_featured_content.hbs +2 -2
- package/dist/views_static/components/teaser/components/teaser_featured_content.hbs +2 -2
- package/package.json +1 -1
- package/src/stories/views/components/teaser/components/teaser_featured_content.hbs +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v1.51.4 (Fri Dec 08 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- add decoration-1 [#789](https://github.com/mumprod/hr-design-system-handlebars/pull/789) ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.51.3 (Fri Dec 08 2023)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -3211,7 +3211,7 @@ article.indexText ul {
|
|
|
3211
3211
|
border-bottom-color: var(--color-secondary-ds);
|
|
3212
3212
|
}
|
|
3213
3213
|
.counter-reset {
|
|
3214
|
-
counter-reset:
|
|
3214
|
+
counter-reset: cnt1702044355343;
|
|
3215
3215
|
}
|
|
3216
3216
|
.hyphens-auto {
|
|
3217
3217
|
-webkit-hyphens: auto;
|
|
@@ -3472,7 +3472,7 @@ article.indexText ul {
|
|
|
3472
3472
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3473
3473
|
}
|
|
3474
3474
|
.-ordered {
|
|
3475
|
-
counter-increment:
|
|
3475
|
+
counter-increment: cnt1702044355343 1;
|
|
3476
3476
|
}
|
|
3477
3477
|
.-ordered::before {
|
|
3478
3478
|
position: absolute;
|
|
@@ -3488,7 +3488,7 @@ article.indexText ul {
|
|
|
3488
3488
|
letter-spacing: .0125em;
|
|
3489
3489
|
--tw-text-opacity: 1;
|
|
3490
3490
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3491
|
-
content: counter(
|
|
3491
|
+
content: counter(cnt1702044355343);
|
|
3492
3492
|
}
|
|
3493
3493
|
/*! ****************************/
|
|
3494
3494
|
/*! DataPolicy stuff */
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
<span class="block mt-4 text-base font-heading">{{loca "featured_content_headline"}}</span>
|
|
5
5
|
<ul class="list-disc">
|
|
6
6
|
{{#each this.featuredContentItems}}
|
|
7
|
-
<li class="{{#if @first}}mt-3{{else}}mt-1.5{{/if}} ml-4">
|
|
8
|
-
{{#> components/base/link _link=this.link _css="hover:underline relative inline text-link ds-focus" }}
|
|
7
|
+
<li class="{{#if @first}}mt-3{{else}}mt-1.5{{/if}} ml-4 mr-1">
|
|
8
|
+
{{#> components/base/link _link=this.link _css="hover:underline decoration-1 relative inline text-link ds-focus" }}
|
|
9
9
|
<h3 class="inline text-sm"><span class="group-hover:underline">{{this.title}}</span></h3>
|
|
10
10
|
{{/components/base/link}}
|
|
11
11
|
</li>
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
<span class="block mt-4 text-base font-heading">{{loca "featured_content_headline"}}</span>
|
|
5
5
|
<ul class="list-disc">
|
|
6
6
|
{{#each this.featuredContentItems}}
|
|
7
|
-
<li class="{{#if @first}}mt-3{{else}}mt-1.5{{/if}} ml-4">
|
|
8
|
-
{{#> components/base/link _link=this.link _css="hover:underline relative inline text-link ds-focus" }}
|
|
7
|
+
<li class="{{#if @first}}mt-3{{else}}mt-1.5{{/if}} ml-4 mr-1">
|
|
8
|
+
{{#> components/base/link _link=this.link _css="hover:underline decoration-1 relative inline text-link ds-focus" }}
|
|
9
9
|
<h3 class="inline text-sm"><span class="group-hover:underline">{{this.title}}</span></h3>
|
|
10
10
|
{{/components/base/link}}
|
|
11
11
|
</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.51.
|
|
9
|
+
"version": "1.51.4",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
<span class="block mt-4 text-base font-heading">{{loca "featured_content_headline"}}</span>
|
|
5
5
|
<ul class="list-disc">
|
|
6
6
|
{{#each this.featuredContentItems}}
|
|
7
|
-
<li class="{{#if @first}}mt-3{{else}}mt-1.5{{/if}} ml-4">
|
|
8
|
-
{{#> components/base/link _link=this.link _css="hover:underline relative inline text-link ds-focus" }}
|
|
7
|
+
<li class="{{#if @first}}mt-3{{else}}mt-1.5{{/if}} ml-4 mr-1">
|
|
8
|
+
{{#> components/base/link _link=this.link _css="hover:underline decoration-1 relative inline text-link ds-focus" }}
|
|
9
9
|
<h3 class="inline text-sm"><span class="group-hover:underline">{{this.title}}</span></h3>
|
|
10
10
|
{{/components/base/link}}
|
|
11
11
|
</li>
|