hr-design-system-handlebars 1.72.0 → 1.73.0
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/content/copytext/components/media/media_figure.hbs +7 -5
- package/dist/views_static/components/content/copytext/components/media/media_figure.hbs +7 -5
- package/package.json +1 -1
- package/src/stories/views/components/content/copytext/components/media/media_figure.hbs +7 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v1.73.0 (Tue Jun 18 2024)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- :bug: Fix a bug that caused the airdate not being displayed in the delivery [#952](https://github.com/mumprod/hr-design-system-handlebars/pull/952) ([@szuelch](https://github.com/szuelch))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- [@szuelch](https://github.com/szuelch)
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.72.0 (Tue Jun 18 2024)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
package/dist/assets/index.css
CHANGED
|
@@ -3365,7 +3365,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3365
3365
|
border-bottom-color: var(--color-secondary-ds);
|
|
3366
3366
|
}
|
|
3367
3367
|
.counter-reset {
|
|
3368
|
-
counter-reset:
|
|
3368
|
+
counter-reset: cnt1718712643358;
|
|
3369
3369
|
}
|
|
3370
3370
|
.hyphens-auto {
|
|
3371
3371
|
-webkit-hyphens: auto;
|
|
@@ -3744,7 +3744,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3744
3744
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3745
3745
|
}
|
|
3746
3746
|
.-ordered {
|
|
3747
|
-
counter-increment:
|
|
3747
|
+
counter-increment: cnt1718712643358 1;
|
|
3748
3748
|
}
|
|
3749
3749
|
.-ordered::before {
|
|
3750
3750
|
position: absolute;
|
|
@@ -3760,7 +3760,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3760
3760
|
letter-spacing: .0125em;
|
|
3761
3761
|
--tw-text-opacity: 1;
|
|
3762
3762
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3763
|
-
content: counter(
|
|
3763
|
+
content: counter(cnt1718712643358);
|
|
3764
3764
|
}
|
|
3765
3765
|
/*! ****************************/
|
|
3766
3766
|
/*! DataPolicy stuff */
|
|
@@ -2,13 +2,15 @@
|
|
|
2
2
|
{{~> components/base/a11y/hiddenText _locaTag=_a11yIntro-loca ~}}
|
|
3
3
|
{{#unless _voting-option}}
|
|
4
4
|
<figcaption class="py-3 mx-5 sm:mx-0 sm:py-4 border-t-[3px] border-gray-boulder">
|
|
5
|
-
{{#
|
|
5
|
+
{{#if this.label}}
|
|
6
6
|
{{#> components/label/label_group}}
|
|
7
|
-
{{
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
{{#with this.label}}
|
|
8
|
+
{{> components/label/label _type=this.type _text=(loca this.loca) }}
|
|
9
|
+
{{> components/label/label_byline _css="ml-2"}}
|
|
10
|
+
{{/with}}
|
|
11
|
+
{{> components/content/copytext/components/media/media_figure_byline this}}
|
|
10
12
|
{{/components/label/label_group}}
|
|
11
|
-
{{/
|
|
13
|
+
{{/if~}}
|
|
12
14
|
{{#with this.toModel.mediaBacklinkToStoryTeaser}}
|
|
13
15
|
{{#>components/base/link _link=this.link _css="hover:underline hover:!decoration-1 text-link dark:text-link-dark"}}
|
|
14
16
|
{{> components/content/copytext/components/media/media_figure_headline}}
|
|
@@ -2,13 +2,15 @@
|
|
|
2
2
|
{{~> components/base/a11y/hiddenText _locaTag=_a11yIntro-loca ~}}
|
|
3
3
|
{{#unless _voting-option}}
|
|
4
4
|
<figcaption class="py-3 mx-5 sm:mx-0 sm:py-4 border-t-[3px] border-gray-boulder">
|
|
5
|
-
{{#
|
|
5
|
+
{{#if this.label}}
|
|
6
6
|
{{#> components/label/label_group}}
|
|
7
|
-
{{
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
{{#with this.label}}
|
|
8
|
+
{{> components/label/label _type=this.type _text=(loca this.loca) }}
|
|
9
|
+
{{> components/label/label_byline _css="ml-2"}}
|
|
10
|
+
{{/with}}
|
|
11
|
+
{{> components/content/copytext/components/media/media_figure_byline this}}
|
|
10
12
|
{{/components/label/label_group}}
|
|
11
|
-
{{/
|
|
13
|
+
{{/if~}}
|
|
12
14
|
{{#with this.toModel.mediaBacklinkToStoryTeaser}}
|
|
13
15
|
{{#>components/base/link _link=this.link _css="hover:underline hover:!decoration-1 text-link dark:text-link-dark"}}
|
|
14
16
|
{{> components/content/copytext/components/media/media_figure_headline}}
|
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.73.0",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -2,13 +2,15 @@
|
|
|
2
2
|
{{~> components/base/a11y/hiddenText _locaTag=_a11yIntro-loca ~}}
|
|
3
3
|
{{#unless _voting-option}}
|
|
4
4
|
<figcaption class="py-3 mx-5 sm:mx-0 sm:py-4 border-t-[3px] border-gray-boulder">
|
|
5
|
-
{{#
|
|
5
|
+
{{#if this.label}}
|
|
6
6
|
{{#> components/label/label_group}}
|
|
7
|
-
{{
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
{{#with this.label}}
|
|
8
|
+
{{> components/label/label _type=this.type _text=(loca this.loca) }}
|
|
9
|
+
{{> components/label/label_byline _css="ml-2"}}
|
|
10
|
+
{{/with}}
|
|
11
|
+
{{> components/content/copytext/components/media/media_figure_byline this}}
|
|
10
12
|
{{/components/label/label_group}}
|
|
11
|
-
{{/
|
|
13
|
+
{{/if~}}
|
|
12
14
|
{{#with this.toModel.mediaBacklinkToStoryTeaser}}
|
|
13
15
|
{{#>components/base/link _link=this.link _css="hover:underline hover:!decoration-1 text-link dark:text-link-dark"}}
|
|
14
16
|
{{> components/content/copytext/components/media/media_figure_headline}}
|