hr-design-system-handlebars 1.67.4 → 1.67.5
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/page/components/commentinfo.hbs +11 -0
- package/dist/views/components/page/components/commentlink.ssi.hbs +11 -0
- package/dist/views/components/page/components/metadatabox.hbs +1 -1
- package/dist/views_static/components/page/components/commentinfo.hbs +11 -0
- package/dist/views_static/components/page/components/commentlink.ssi.hbs +11 -0
- package/dist/views_static/components/page/components/metadatabox.hbs +1 -1
- package/package.json +1 -1
- package/src/stories/views/components/page/components/commentinfo.hbs +11 -0
- package/src/stories/views/components/page/components/commentlink.ssi.hbs +11 -0
- package/src/stories/views/components/page/components/metadatabox.hbs +1 -1
- package/dist/views/components/page/components/commentlink.hbs +0 -17
- package/dist/views_static/components/page/components/commentlink.hbs +0 -17
- package/src/stories/views/components/page/components/commentlink.hbs +0 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v1.67.5 (Tue May 07 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- commentlink as ssi [#922](https://github.com/mumprod/hr-design-system-handlebars/pull/922) ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.67.4 (Tue May 07 2024)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -3347,7 +3347,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3347
3347
|
border-bottom-color: var(--color-secondary-ds);
|
|
3348
3348
|
}
|
|
3349
3349
|
.counter-reset {
|
|
3350
|
-
counter-reset:
|
|
3350
|
+
counter-reset: cnt1715106095673;
|
|
3351
3351
|
}
|
|
3352
3352
|
.hyphens-auto {
|
|
3353
3353
|
-webkit-hyphens: auto;
|
|
@@ -3726,7 +3726,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3726
3726
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3727
3727
|
}
|
|
3728
3728
|
.-ordered {
|
|
3729
|
-
counter-increment:
|
|
3729
|
+
counter-increment: cnt1715106095673 1;
|
|
3730
3730
|
}
|
|
3731
3731
|
.-ordered::before {
|
|
3732
3732
|
position: absolute;
|
|
@@ -3742,7 +3742,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3742
3742
|
letter-spacing: .0125em;
|
|
3743
3743
|
--tw-text-opacity: 1;
|
|
3744
3744
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3745
|
-
content: counter(
|
|
3745
|
+
content: counter(cnt1715106095673);
|
|
3746
3746
|
}
|
|
3747
3747
|
/*! ****************************/
|
|
3748
3748
|
/*! DataPolicy stuff */
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{{#with this.userComments ~}}
|
|
2
|
+
<div class="{{#unless ../this.hasMoreThanOneAuthor}}{{#if ../this.authorImage.isImage}}ml-14 {{/if}}{{/unless}}mt-0.5 -mb-1">
|
|
3
|
+
<span class="relative z-30 whitespace-nowrap">
|
|
4
|
+
{{~#if (isStorybook)~}}
|
|
5
|
+
{{> components/page/components/commentlink.ssi }}
|
|
6
|
+
{{else}}
|
|
7
|
+
{{{this.ssi.comments-pageheaderDS}}}
|
|
8
|
+
{{~/if~}}
|
|
9
|
+
</span>
|
|
10
|
+
</div>
|
|
11
|
+
{{/with}}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<a class="text-xs sm480:text-sm font-headingSerif text-link hover:underline dark:text-link-dark" href="#commentList">
|
|
2
|
+
{{> components/base/image/icon _icon="kommentar" _iconmap="icons" _addClass="mr-0.5 inline w-5 h-5 text-link dark:text-link-dark fill-current"}}
|
|
3
|
+
<span class="sr-only">{{loca "comment_anchor_1"}}</span>
|
|
4
|
+
<span class="text-link">{{this.quantity}}</span>
|
|
5
|
+
{{#if this.hasOneComment}}
|
|
6
|
+
<span class="text-link">{{loca "comment_label_text"}}</span>
|
|
7
|
+
{{else}}
|
|
8
|
+
<span class="text-link">{{loca "comment_label_text_many"}}</span>
|
|
9
|
+
{{/if}}
|
|
10
|
+
<span class="sr-only">{{loca "comment_anchor_2"}}</span>
|
|
11
|
+
</a>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{{#with this.userComments ~}}
|
|
2
|
+
<div class="{{#unless ../this.hasMoreThanOneAuthor}}{{#if ../this.authorImage.isImage}}ml-14 {{/if}}{{/unless}}mt-0.5 -mb-1">
|
|
3
|
+
<span class="relative z-30 whitespace-nowrap">
|
|
4
|
+
{{~#if (isStorybook)~}}
|
|
5
|
+
{{> components/page/components/commentlink.ssi }}
|
|
6
|
+
{{else}}
|
|
7
|
+
{{{this.ssi.comments-pageheaderDS}}}
|
|
8
|
+
{{~/if~}}
|
|
9
|
+
</span>
|
|
10
|
+
</div>
|
|
11
|
+
{{/with}}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<a class="text-xs sm480:text-sm font-headingSerif text-link hover:underline dark:text-link-dark" href="#commentList">
|
|
2
|
+
{{> components/base/image/icon _icon="kommentar" _iconmap="icons" _addClass="mr-0.5 inline w-5 h-5 text-link dark:text-link-dark fill-current"}}
|
|
3
|
+
<span class="sr-only">{{loca "comment_anchor_1"}}</span>
|
|
4
|
+
<span class="text-link">{{this.quantity}}</span>
|
|
5
|
+
{{#if this.hasOneComment}}
|
|
6
|
+
<span class="text-link">{{loca "comment_label_text"}}</span>
|
|
7
|
+
{{else}}
|
|
8
|
+
<span class="text-link">{{loca "comment_label_text_many"}}</span>
|
|
9
|
+
{{/if}}
|
|
10
|
+
<span class="sr-only">{{loca "comment_anchor_2"}}</span>
|
|
11
|
+
</a>
|
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.
|
|
9
|
+
"version": "1.67.5",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{{#with this.userComments ~}}
|
|
2
|
+
<div class="{{#unless ../this.hasMoreThanOneAuthor}}{{#if ../this.authorImage.isImage}}ml-14 {{/if}}{{/unless}}mt-0.5 -mb-1">
|
|
3
|
+
<span class="relative z-30 whitespace-nowrap">
|
|
4
|
+
{{~#if (isStorybook)~}}
|
|
5
|
+
{{> components/page/components/commentlink.ssi }}
|
|
6
|
+
{{else}}
|
|
7
|
+
{{{this.ssi.comments-pageheaderDS}}}
|
|
8
|
+
{{~/if~}}
|
|
9
|
+
</span>
|
|
10
|
+
</div>
|
|
11
|
+
{{/with}}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<a class="text-xs sm480:text-sm font-headingSerif text-link hover:underline dark:text-link-dark" href="#commentList">
|
|
2
|
+
{{> components/base/image/icon _icon="kommentar" _iconmap="icons" _addClass="mr-0.5 inline w-5 h-5 text-link dark:text-link-dark fill-current"}}
|
|
3
|
+
<span class="sr-only">{{loca "comment_anchor_1"}}</span>
|
|
4
|
+
<span class="text-link">{{this.quantity}}</span>
|
|
5
|
+
{{#if this.hasOneComment}}
|
|
6
|
+
<span class="text-link">{{loca "comment_label_text"}}</span>
|
|
7
|
+
{{else}}
|
|
8
|
+
<span class="text-link">{{loca "comment_label_text_many"}}</span>
|
|
9
|
+
{{/if}}
|
|
10
|
+
<span class="sr-only">{{loca "comment_anchor_2"}}</span>
|
|
11
|
+
</a>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{{#with this.userComments ~}}
|
|
2
|
-
<div class="{{#unless ../this.hasMoreThanOneAuthor}}{{#if ../this.authorImage.isImage}}ml-14 {{/if}}{{/unless}}mt-0.5 -mb-1">
|
|
3
|
-
<span class="relative z-30 whitespace-nowrap">
|
|
4
|
-
<a class="text-xs sm480:text-sm font-headingSerif text-link hover:underline dark:text-link-dark" href="#commentList">
|
|
5
|
-
{{> components/base/image/icon _icon="kommentar" _iconmap="icons" _addClass="mr-0.5 inline w-5 h-5 text-link dark:text-link-dark fill-current"}}
|
|
6
|
-
<span class="sr-only">{{loca "comment_anchor_1"}}</span>
|
|
7
|
-
<span class="text-link">{{this.quantity}}</span>
|
|
8
|
-
{{#if this.hasOneComment}}
|
|
9
|
-
<span class="text-link">{{loca "comment_label_text"}}</span>
|
|
10
|
-
{{else}}
|
|
11
|
-
<span class="text-link">{{loca "comment_label_text_many"}}</span>
|
|
12
|
-
{{/if}}
|
|
13
|
-
<span class="sr-only">{{loca "comment_anchor_2"}}</span>
|
|
14
|
-
</a>
|
|
15
|
-
</span>
|
|
16
|
-
</div>
|
|
17
|
-
{{/with}}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{{#with this.userComments ~}}
|
|
2
|
-
<div class="{{#unless ../this.hasMoreThanOneAuthor}}{{#if ../this.authorImage.isImage}}ml-14 {{/if}}{{/unless}}mt-0.5 -mb-1">
|
|
3
|
-
<span class="relative z-30 whitespace-nowrap">
|
|
4
|
-
<a class="text-xs sm480:text-sm font-headingSerif text-link hover:underline dark:text-link-dark" href="#commentList">
|
|
5
|
-
{{> components/base/image/icon _icon="kommentar" _iconmap="icons" _addClass="mr-0.5 inline w-5 h-5 text-link dark:text-link-dark fill-current"}}
|
|
6
|
-
<span class="sr-only">{{loca "comment_anchor_1"}}</span>
|
|
7
|
-
<span class="text-link">{{this.quantity}}</span>
|
|
8
|
-
{{#if this.hasOneComment}}
|
|
9
|
-
<span class="text-link">{{loca "comment_label_text"}}</span>
|
|
10
|
-
{{else}}
|
|
11
|
-
<span class="text-link">{{loca "comment_label_text_many"}}</span>
|
|
12
|
-
{{/if}}
|
|
13
|
-
<span class="sr-only">{{loca "comment_anchor_2"}}</span>
|
|
14
|
-
</a>
|
|
15
|
-
</span>
|
|
16
|
-
</div>
|
|
17
|
-
{{/with}}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{{#with this.userComments ~}}
|
|
2
|
-
<div class="{{#unless ../this.hasMoreThanOneAuthor}}{{#if ../this.authorImage.isImage}}ml-14 {{/if}}{{/unless}}mt-0.5 -mb-1">
|
|
3
|
-
<span class="relative z-30 whitespace-nowrap">
|
|
4
|
-
<a class="text-xs sm480:text-sm font-headingSerif text-link hover:underline dark:text-link-dark" href="#commentList">
|
|
5
|
-
{{> components/base/image/icon _icon="kommentar" _iconmap="icons" _addClass="mr-0.5 inline w-5 h-5 text-link dark:text-link-dark fill-current"}}
|
|
6
|
-
<span class="sr-only">{{loca "comment_anchor_1"}}</span>
|
|
7
|
-
<span class="text-link">{{this.quantity}}</span>
|
|
8
|
-
{{#if this.hasOneComment}}
|
|
9
|
-
<span class="text-link">{{loca "comment_label_text"}}</span>
|
|
10
|
-
{{else}}
|
|
11
|
-
<span class="text-link">{{loca "comment_label_text_many"}}</span>
|
|
12
|
-
{{/if}}
|
|
13
|
-
<span class="sr-only">{{loca "comment_anchor_2"}}</span>
|
|
14
|
-
</a>
|
|
15
|
-
</span>
|
|
16
|
-
</div>
|
|
17
|
-
{{/with}}
|