hr-design-system-handlebars 0.121.4 → 0.121.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 +7 -3
- package/dist/views/components/teaser/group_teaser/group_teaser_accented.hbs +2 -2
- package/dist/views/components/teaser/teaser_indextext.hbs +1 -1
- package/package.json +1 -1
- package/src/stories/views/components/teaser/group_teaser/group_teaser_accented.hbs +2 -2
- package/src/stories/views/components/teaser/teaser_indextext.hbs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v0.121.5 (Mon Jan 23 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- fixed margins and paddings for indextext and accented group [#497](https://github.com/mumprod/hr-design-system-handlebars/pull/497) ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v0.121.4 (Mon Jan 23 2023)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -2477,7 +2477,7 @@ video {
|
|
|
2477
2477
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
2478
2478
|
}
|
|
2479
2479
|
.counter-reset {
|
|
2480
|
-
counter-reset:
|
|
2480
|
+
counter-reset: cnt1674488428395;
|
|
2481
2481
|
}
|
|
2482
2482
|
.line-clamp-4 {
|
|
2483
2483
|
overflow: hidden;
|
|
@@ -2695,7 +2695,7 @@ video {
|
|
|
2695
2695
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
2696
2696
|
}
|
|
2697
2697
|
.-ordered {
|
|
2698
|
-
counter-increment:
|
|
2698
|
+
counter-increment: cnt1674488428395 1;
|
|
2699
2699
|
}
|
|
2700
2700
|
.-ordered::before {
|
|
2701
2701
|
position: absolute;
|
|
@@ -2711,7 +2711,7 @@ video {
|
|
|
2711
2711
|
letter-spacing: .0125em;
|
|
2712
2712
|
--tw-text-opacity: 1;
|
|
2713
2713
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
2714
|
-
content: counter(
|
|
2714
|
+
content: counter(cnt1674488428395);
|
|
2715
2715
|
}
|
|
2716
2716
|
/*! ****************************/
|
|
2717
2717
|
/*! text-shadow */
|
|
@@ -3743,6 +3743,10 @@ video {
|
|
|
3743
3743
|
width: fit-content;
|
|
3744
3744
|
}
|
|
3745
3745
|
|
|
3746
|
+
.sm\:p-5 {
|
|
3747
|
+
padding: 1.25rem;
|
|
3748
|
+
}
|
|
3749
|
+
|
|
3746
3750
|
.sm\:px-0 {
|
|
3747
3751
|
padding-left: 0px;
|
|
3748
3752
|
padding-right: 0px;
|
|
@@ -1,8 +1,8 @@
|
|
|
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-
|
|
3
|
+
<div class="grid items-start content-start h-auto grid-cols-12 col-span-12 py-5 mx-5 sm:p-5 sm:mx-0 rounded-tl-hr rounded-br-hr bg-highlight-1 gap-x-6 gap-y-5">
|
|
4
4
|
{{~#if this.hasGroupTitle}}
|
|
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}}">
|
|
5
|
+
<h2 class="text-2xl px-5 sm:px-0 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~}}
|
|
7
7
|
{{this.groupTitle}}
|
|
8
8
|
{{~#if this.hasLink}}</a>{{/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.
|
|
9
|
+
"version": "0.121.5",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "start-storybook -p 6006 public",
|
|
@@ -1,8 +1,8 @@
|
|
|
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-
|
|
3
|
+
<div class="grid items-start content-start h-auto grid-cols-12 col-span-12 py-5 mx-5 sm:p-5 sm:mx-0 rounded-tl-hr rounded-br-hr bg-highlight-1 gap-x-6 gap-y-5">
|
|
4
4
|
{{~#if this.hasGroupTitle}}
|
|
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}}">
|
|
5
|
+
<h2 class="text-2xl px-5 sm:px-0 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~}}
|
|
7
7
|
{{this.groupTitle}}
|
|
8
8
|
{{~#if this.hasLink}}</a>{{/if~}}
|