hr-design-system-handlebars 1.114.120 → 1.114.121

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 CHANGED
@@ -1,3 +1,15 @@
1
+ # v1.114.121 (Fri Mar 07 2025)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - fix padding-bug [#1262](https://github.com/mumprod/hr-design-system-handlebars/pull/1262) ([@hanswurstsalat](https://github.com/hanswurstsalat))
6
+
7
+ #### Authors: 1
8
+
9
+ - Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
10
+
11
+ ---
12
+
1
13
  # v1.114.120 (Fri Mar 07 2025)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -3863,7 +3863,7 @@ article #commentList {
3863
3863
  border-bottom-color: var(--color-secondary-ds);
3864
3864
  }
3865
3865
  .counter-reset {
3866
- counter-reset: cnt1741368990511;
3866
+ counter-reset: cnt1741370712695;
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: cnt1741368990511 1;
4311
+ counter-increment: cnt1741370712695 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(cnt1741368990511);
4329
+ content: counter(cnt1741370712695);
4330
4330
  }
4331
4331
  /*! ****************************/
4332
4332
  /*! DataPolicy stuff */
@@ -9097,6 +9097,12 @@ ul.restrictedToTwo li:nth-of-type(1n + 2) .timelineBorder {
9097
9097
  .\[\&\:has\(\+\.-hideOnMobile\)\]\:order-1:has(+.-hideOnMobile) {
9098
9098
  order: 1;
9099
9099
  }
9100
+ .\[\&\:not\(\:last-child\)\]\:pb-2:not(:last-child) {
9101
+ padding-bottom: 0.5rem;
9102
+ }
9103
+ .\[\&\:not\(\:last-child\)\]\:pb-5:not(:last-child) {
9104
+ padding-bottom: 1.25rem;
9105
+ }
9100
9106
  @media(min-width:1170px) {
9101
9107
 
9102
9108
  .\[\@media\(min-width\:1170px\)\]\:-mr-14 {
@@ -1,7 +1,11 @@
1
1
  {{~#with this.tickerItemResults ~}}
2
2
  <ul class="{{#if ../_css}} {{../_css}}{{/if}} {{if ../this.isStandardTeaser ' pl-10 pr-5' ' pl-10 md:pl-5 pr-5 md:pr-0'}}">
3
3
  {{~#each this~}}
4
- <li class="relative h-auto {{#if ../../_isTickerpage}}[&:not(:last-child)]:pb-2{{else}}[&:not(:last-child)]:pb-5{{/if}}">
4
+ {{#if ../../_isTickerpage}}
5
+ <li class="relative h-auto [&:not(:last-child)]:pb-2">
6
+ {{else}}
7
+ <li class="relative h-auto [&:not(:last-child)]:pb-5">
8
+ {{/if}}
5
9
  <div class="absolute h-full">
6
10
  <div class="relative w-[9px] h-[9px] rounded-full top-0.5 bg-tickerTeaserTimelineScore -left-5"></div>
7
11
  {{#unless @last}}
@@ -1,7 +1,11 @@
1
1
  {{~#with this.tickerItemResults ~}}
2
2
  <ul class="{{#if ../_css}} {{../_css}}{{/if}} {{if ../this.isStandardTeaser ' pl-10 pr-5' ' pl-10 md:pl-5 pr-5 md:pr-0'}}">
3
3
  {{~#each this~}}
4
- <li class="relative h-auto {{#if ../../_isTickerpage}}[&:not(:last-child)]:pb-2{{else}}[&:not(:last-child)]:pb-5{{/if}}">
4
+ {{#if ../../_isTickerpage}}
5
+ <li class="relative h-auto [&:not(:last-child)]:pb-2">
6
+ {{else}}
7
+ <li class="relative h-auto [&:not(:last-child)]:pb-5">
8
+ {{/if}}
5
9
  <div class="absolute h-full">
6
10
  <div class="relative w-[9px] h-[9px] rounded-full top-0.5 bg-tickerTeaserTimelineScore -left-5"></div>
7
11
  {{#unless @last}}
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.120",
9
+ "version": "1.114.121",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -1,7 +1,11 @@
1
1
  {{~#with this.tickerItemResults ~}}
2
2
  <ul class="{{#if ../_css}} {{../_css}}{{/if}} {{if ../this.isStandardTeaser ' pl-10 pr-5' ' pl-10 md:pl-5 pr-5 md:pr-0'}}">
3
3
  {{~#each this~}}
4
- <li class="relative h-auto {{#if ../../_isTickerpage}}[&:not(:last-child)]:pb-2{{else}}[&:not(:last-child)]:pb-5{{/if}}">
4
+ {{#if ../../_isTickerpage}}
5
+ <li class="relative h-auto [&:not(:last-child)]:pb-2">
6
+ {{else}}
7
+ <li class="relative h-auto [&:not(:last-child)]:pb-5">
8
+ {{/if}}
5
9
  <div class="absolute h-full">
6
10
  <div class="relative w-[9px] h-[9px] rounded-full top-0.5 bg-tickerTeaserTimelineScore -left-5"></div>
7
11
  {{#unless @last}}