hr-design-system-handlebars 1.114.107 → 1.114.108
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 +13 -0
- package/dist/assets/index.css +3 -3
- package/dist/views/components/page/components/author.hbs +1 -1
- package/dist/views/components/page/components/metadatabox.hbs +1 -1
- package/dist/views_static/components/page/components/author.hbs +1 -1
- package/dist/views_static/components/page/components/metadatabox.hbs +1 -1
- package/package.json +1 -1
- package/src/stories/views/components/page/components/author.hbs +1 -1
- package/src/stories/views/components/page/components/metadatabox.hbs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# v1.114.108 (Mon Feb 24 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Dpe 3552 B - Pass _isTicker parameter to author component in metadata box [#1250](https://github.com/mumprod/hr-design-system-handlebars/pull/1250) ([@vascoeduardo](https://github.com/vascoeduardo) [@eduardo-hr](https://github.com/eduardo-hr))
|
|
6
|
+
|
|
7
|
+
#### Authors: 2
|
|
8
|
+
|
|
9
|
+
- [@eduardo-hr](https://github.com/eduardo-hr)
|
|
10
|
+
- Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
1
14
|
# v1.114.107 (Fri Feb 21 2025)
|
|
2
15
|
|
|
3
16
|
#### ⚠️ Pushed to `main`
|
package/dist/assets/index.css
CHANGED
|
@@ -3849,7 +3849,7 @@ article #commentList {
|
|
|
3849
3849
|
border-bottom-color: var(--color-secondary-ds);
|
|
3850
3850
|
}
|
|
3851
3851
|
.counter-reset {
|
|
3852
|
-
counter-reset:
|
|
3852
|
+
counter-reset: cnt1740392644163;
|
|
3853
3853
|
}
|
|
3854
3854
|
.animate-delay-100 {
|
|
3855
3855
|
--tw-animate-delay: 100ms;
|
|
@@ -4294,7 +4294,7 @@ html { scroll-behavior: smooth; }
|
|
|
4294
4294
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
4295
4295
|
}
|
|
4296
4296
|
.-ordered {
|
|
4297
|
-
counter-increment:
|
|
4297
|
+
counter-increment: cnt1740392644163 1;
|
|
4298
4298
|
}
|
|
4299
4299
|
.-ordered::before {
|
|
4300
4300
|
position: absolute;
|
|
@@ -4312,7 +4312,7 @@ html { scroll-behavior: smooth; }
|
|
|
4312
4312
|
--tw-text-opacity: 1;
|
|
4313
4313
|
color: rgba(0, 0, 0, 1);
|
|
4314
4314
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
4315
|
-
content: counter(
|
|
4315
|
+
content: counter(cnt1740392644163);
|
|
4316
4316
|
}
|
|
4317
4317
|
/*! ****************************/
|
|
4318
4318
|
/*! DataPolicy stuff */
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<aside class="clear-both mt-4 border-y border-gray-scorpion dark:border-text-dark sm:mt-5">
|
|
3
3
|
<div class="flex clear-both w-full my-4 sm:my-4">
|
|
4
4
|
<div class="self-center">
|
|
5
|
-
{{> components/page/components/author _hideFrom=false }}
|
|
5
|
+
{{> components/page/components/author _hideFrom=false _isTicker=_isTicker }}
|
|
6
6
|
|
|
7
7
|
{{#if _showDate }}
|
|
8
8
|
{{#if this.hasMoreThanOneAuthor}}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<aside class="clear-both mt-4 border-y border-gray-scorpion dark:border-text-dark sm:mt-5">
|
|
3
3
|
<div class="flex clear-both w-full my-4 sm:my-4">
|
|
4
4
|
<div class="self-center">
|
|
5
|
-
{{> components/page/components/author _hideFrom=false }}
|
|
5
|
+
{{> components/page/components/author _hideFrom=false _isTicker=_isTicker }}
|
|
6
6
|
|
|
7
7
|
{{#if _showDate }}
|
|
8
8
|
{{#if this.hasMoreThanOneAuthor}}
|
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.108",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<aside class="clear-both mt-4 border-y border-gray-scorpion dark:border-text-dark sm:mt-5">
|
|
3
3
|
<div class="flex clear-both w-full my-4 sm:my-4">
|
|
4
4
|
<div class="self-center">
|
|
5
|
-
{{> components/page/components/author _hideFrom=false }}
|
|
5
|
+
{{> components/page/components/author _hideFrom=false _isTicker=_isTicker }}
|
|
6
6
|
|
|
7
7
|
{{#if _showDate }}
|
|
8
8
|
{{#if this.hasMoreThanOneAuthor}}
|