hr-design-system-handlebars 0.121.3 → 0.121.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 CHANGED
@@ -1,3 +1,15 @@
1
+ # v0.121.4 (Mon Jan 23 2023)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - :art: Correct rounded corner for group teaser [#496](https://github.com/mumprod/hr-design-system-handlebars/pull/496) ([@Sunny1112358](https://github.com/Sunny1112358))
6
+
7
+ #### Authors: 1
8
+
9
+ - [@Sunny1112358](https://github.com/Sunny1112358)
10
+
11
+ ---
12
+
1
13
  # v0.121.3 (Fri Jan 20 2023)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -1618,9 +1618,6 @@ video {
1618
1618
  .rounded-full {
1619
1619
  border-radius: 9999px;
1620
1620
  }
1621
- .rounded-3xl {
1622
- border-radius: 1.5rem;
1623
- }
1624
1621
  .rounded-lg {
1625
1622
  border-radius: 0.5rem;
1626
1623
  }
@@ -1655,12 +1652,6 @@ video {
1655
1652
  border-bottom-right-radius: 0px;
1656
1653
  border-bottom-right-radius: var(--border-radius-hr);
1657
1654
  }
1658
- .rounded-tr-none {
1659
- border-top-right-radius: 0px;
1660
- }
1661
- .rounded-bl-none {
1662
- border-bottom-left-radius: 0px;
1663
- }
1664
1655
  .border {
1665
1656
  border-width: 1px;
1666
1657
  }
@@ -2486,7 +2477,7 @@ video {
2486
2477
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
2487
2478
  }
2488
2479
  .counter-reset {
2489
- counter-reset: cnt1674233895565;
2480
+ counter-reset: cnt1674468048062;
2490
2481
  }
2491
2482
  .line-clamp-4 {
2492
2483
  overflow: hidden;
@@ -2704,7 +2695,7 @@ video {
2704
2695
  --tw-ring-color: rgba(255, 255, 255, 0.5);
2705
2696
  }
2706
2697
  .-ordered {
2707
- counter-increment: cnt1674233895565 1;
2698
+ counter-increment: cnt1674468048062 1;
2708
2699
  }
2709
2700
  .-ordered::before {
2710
2701
  position: absolute;
@@ -2720,7 +2711,7 @@ video {
2720
2711
  letter-spacing: .0125em;
2721
2712
  --tw-text-opacity: 1;
2722
2713
  color: rgba(0, 0, 0, var(--tw-text-opacity));
2723
- content: counter(cnt1674233895565);
2714
+ content: counter(cnt1674468048062);
2724
2715
  }
2725
2716
  /*! ****************************/
2726
2717
  /*! text-shadow */
@@ -1,6 +1,6 @@
1
1
  {{#if this.hasGroupItems}}
2
2
  {{#>components/grid/grid_group size=this.teaserSize }}
3
- <div class="grid items-start content-start h-auto grid-cols-12 col-span-12 p-8 rounded-tr-none rounded-bl-none bg-highlight-1 rounded-3xl gap-x-6 gap-y-5">
3
+ <div class="grid items-start content-start h-auto grid-cols-12 col-span-12 p-8 rounded-tl-hr rounded-br-hr bg-highlight-1 gap-x-6 gap-y-5">
4
4
  {{~#if this.hasGroupTitle}}
5
5
  <h2 class="text-2xl md:text-4xl col-span-full pt-0 pb-4 font-title {{#if this.backgroundColor}} text-center{{else}} headline-barrier{{/if}}">
6
6
  {{~#if this.hasLink}}<a class="no-underline hover:underline decoration-1 md:decoration-2 text-blue-science" href="{{this.link.url}}">{{/if~}}
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": "0.121.3",
9
+ "version": "0.121.4",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "start-storybook -p 6006 public",
@@ -1,6 +1,6 @@
1
1
  {{#if this.hasGroupItems}}
2
2
  {{#>components/grid/grid_group size=this.teaserSize }}
3
- <div class="grid items-start content-start h-auto grid-cols-12 col-span-12 p-8 rounded-tr-none rounded-bl-none bg-highlight-1 rounded-3xl gap-x-6 gap-y-5">
3
+ <div class="grid items-start content-start h-auto grid-cols-12 col-span-12 p-8 rounded-tl-hr rounded-br-hr bg-highlight-1 gap-x-6 gap-y-5">
4
4
  {{~#if this.hasGroupTitle}}
5
5
  <h2 class="text-2xl md:text-4xl col-span-full pt-0 pb-4 font-title {{#if this.backgroundColor}} text-center{{else}} headline-barrier{{/if}}">
6
6
  {{~#if this.hasLink}}<a class="no-underline hover:underline decoration-1 md:decoration-2 text-blue-science" href="{{this.link.url}}">{{/if~}}