hr-design-system-handlebars 1.1.5 → 1.1.7
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/.github/workflows/chromatic.yml +2 -2
- package/CHANGELOG.md +24 -0
- package/dist/assets/index.css +17 -11
- package/dist/views/components/teaser/tabbox/group_tabbox.hbs +1 -1
- package/dist/views/components/teaser/tabbox/teaser_tabbox.hbs +1 -1
- package/dist/views/components/teaser/teaser_standard.hbs +2 -2
- package/package.json +1 -1
- package/src/stories/views/components/teaser/tabbox/group_tabbox.hbs +1 -1
- package/src/stories/views/components/teaser/tabbox/teaser_tabbox.hbs +1 -1
- package/src/stories/views/components/teaser/teaser_standard.hbs +2 -2
|
@@ -26,8 +26,8 @@ jobs:
|
|
|
26
26
|
# 👇 Chromatic projectToken, refer to the manage page to obtain it.
|
|
27
27
|
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
|
|
28
28
|
exitOnceUploaded: true
|
|
29
|
-
onlyChanged:
|
|
30
|
-
traceChanged:
|
|
29
|
+
onlyChanged: false
|
|
30
|
+
traceChanged: false
|
|
31
31
|
diagnostics: true
|
|
32
32
|
skip: ${{ github.event.pull_request.draft == true }}
|
|
33
33
|
- uses: actions/upload-artifact@v2
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v1.1.7 (Wed Feb 15 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- DPE-2095: padding for tabteaser needs tobe 9.5 so sm:px-9.5 is used [#544](https://github.com/mumprod/hr-design-system-handlebars/pull/544) ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v1.1.6 (Mon Feb 13 2023)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- BUGFIX: Fixes the layout of standard 100% [#543](https://github.com/mumprod/hr-design-system-handlebars/pull/543) ([@szuelch](https://github.com/szuelch))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- [@szuelch](https://github.com/szuelch)
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v1.1.5 (Fri Feb 10 2023)
|
|
2
26
|
|
|
3
27
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -1486,6 +1486,12 @@ video {
|
|
|
1486
1486
|
.basis-3\/5 {
|
|
1487
1487
|
flex-basis: 60%;
|
|
1488
1488
|
}
|
|
1489
|
+
.basis-1\/12 {
|
|
1490
|
+
flex-basis: 8.333333%;
|
|
1491
|
+
}
|
|
1492
|
+
.basis-11\/12 {
|
|
1493
|
+
flex-basis: 91.666667%;
|
|
1494
|
+
}
|
|
1489
1495
|
.basis-2\/12 {
|
|
1490
1496
|
flex-basis: 16.666667%;
|
|
1491
1497
|
}
|
|
@@ -2650,7 +2656,7 @@ video {
|
|
|
2650
2656
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
2651
2657
|
}
|
|
2652
2658
|
.counter-reset {
|
|
2653
|
-
counter-reset:
|
|
2659
|
+
counter-reset: cnt1676457656030;
|
|
2654
2660
|
}
|
|
2655
2661
|
.line-clamp-4 {
|
|
2656
2662
|
overflow: hidden;
|
|
@@ -2884,7 +2890,7 @@ video {
|
|
|
2884
2890
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
2885
2891
|
}
|
|
2886
2892
|
.-ordered {
|
|
2887
|
-
counter-increment:
|
|
2893
|
+
counter-increment: cnt1676457656030 1;
|
|
2888
2894
|
}
|
|
2889
2895
|
.-ordered::before {
|
|
2890
2896
|
position: absolute;
|
|
@@ -2900,7 +2906,7 @@ video {
|
|
|
2900
2906
|
letter-spacing: .0125em;
|
|
2901
2907
|
--tw-text-opacity: 1;
|
|
2902
2908
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
2903
|
-
content: counter(
|
|
2909
|
+
content: counter(cnt1676457656030);
|
|
2904
2910
|
}
|
|
2905
2911
|
/*! ****************************/
|
|
2906
2912
|
/*! text-shadow */
|
|
@@ -4135,6 +4141,11 @@ video {
|
|
|
4135
4141
|
padding-right: 2.25rem;
|
|
4136
4142
|
}
|
|
4137
4143
|
|
|
4144
|
+
.sm\:px-4 {
|
|
4145
|
+
padding-left: 1rem;
|
|
4146
|
+
padding-right: 1rem;
|
|
4147
|
+
}
|
|
4148
|
+
|
|
4138
4149
|
.sm\:px-11\.5 {
|
|
4139
4150
|
padding-left: 2.875rem;
|
|
4140
4151
|
padding-right: 2.875rem;
|
|
@@ -4521,19 +4532,14 @@ video {
|
|
|
4521
4532
|
padding-right: 0px;
|
|
4522
4533
|
}
|
|
4523
4534
|
|
|
4524
|
-
.md\:px-4 {
|
|
4525
|
-
padding-left: 1rem;
|
|
4526
|
-
padding-right: 1rem;
|
|
4527
|
-
}
|
|
4528
|
-
|
|
4529
4535
|
.md\:px-5 {
|
|
4530
4536
|
padding-left: 1.25rem;
|
|
4531
4537
|
padding-right: 1.25rem;
|
|
4532
4538
|
}
|
|
4533
4539
|
|
|
4534
|
-
.md\:px-
|
|
4535
|
-
padding-left:
|
|
4536
|
-
padding-right:
|
|
4540
|
+
.md\:px-4 {
|
|
4541
|
+
padding-left: 1rem;
|
|
4542
|
+
padding-right: 1rem;
|
|
4537
4543
|
}
|
|
4538
4544
|
|
|
4539
4545
|
.md\:pt-4 {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
x-show="tab === '{{this.groupTitle}}'"
|
|
3
3
|
class="pb-10"
|
|
4
4
|
>
|
|
5
|
-
<div class="grid items-start content-start grid-cols-12 px-0
|
|
5
|
+
<div class="grid items-start content-start grid-cols-12 px-0 sm:px-9.5 colspan-12 gap-x-6 gap-y-6">
|
|
6
6
|
{{~> components/teaser/teaser_logic/teaser_logic ~}}
|
|
7
7
|
</div>
|
|
8
8
|
{{~#if this.link~}}
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
</figure>
|
|
16
16
|
{{#if this.displayTeaserBodyAsImageOverlay}}
|
|
17
17
|
{{#decorator 'components/teaser/components/teaser_image_overlay' _noOverlayInMobileViewports=true _cssClasses=" relative md:absolute w-full bottom-0"}}
|
|
18
|
-
<div class="flex flex-col items-center justify-center p-4 border-r border-gray-400 border-dashed">
|
|
18
|
+
<div class="basis-1/12 flex flex-col items-center justify-center p-4 border-r border-gray-400 border-dashed">
|
|
19
19
|
{{> components/event/instant_dates}}
|
|
20
20
|
</div>
|
|
21
|
-
{{> components/teaser/components/teaser_body _outerCssClasses=(if this.isMobile1to1 'py-4
|
|
21
|
+
{{> components/teaser/components/teaser_body _outerCssClasses=(if this.isMobile1to1 'basis-11/12 py-4 sm:px-4 basis-3/5 w-3/5 md:basis-full md:w-full' 'basis-11/12 py-4 sm:px-4')}}
|
|
22
22
|
{{/decorator}}
|
|
23
23
|
{{else}}
|
|
24
24
|
{{> components/teaser/components/teaser_body _outerCssClasses=(if this.isMobile1to1 'basis-3/5 w-3/5 md:basis-full md:w-full')}}
|
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.1.
|
|
9
|
+
"version": "1.1.7",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "start-storybook -p 6006 public",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
x-show="tab === '{{this.groupTitle}}'"
|
|
3
3
|
class="pb-10"
|
|
4
4
|
>
|
|
5
|
-
<div class="grid items-start content-start grid-cols-12 px-0
|
|
5
|
+
<div class="grid items-start content-start grid-cols-12 px-0 sm:px-9.5 colspan-12 gap-x-6 gap-y-6">
|
|
6
6
|
{{~> components/teaser/teaser_logic/teaser_logic ~}}
|
|
7
7
|
</div>
|
|
8
8
|
{{~#if this.link~}}
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
</figure>
|
|
16
16
|
{{#if this.displayTeaserBodyAsImageOverlay}}
|
|
17
17
|
{{#decorator 'components/teaser/components/teaser_image_overlay' _noOverlayInMobileViewports=true _cssClasses=" relative md:absolute w-full bottom-0"}}
|
|
18
|
-
<div class="flex flex-col items-center justify-center p-4 border-r border-gray-400 border-dashed">
|
|
18
|
+
<div class="basis-1/12 flex flex-col items-center justify-center p-4 border-r border-gray-400 border-dashed">
|
|
19
19
|
{{> components/event/instant_dates}}
|
|
20
20
|
</div>
|
|
21
|
-
{{> components/teaser/components/teaser_body _outerCssClasses=(if this.isMobile1to1 'py-4
|
|
21
|
+
{{> components/teaser/components/teaser_body _outerCssClasses=(if this.isMobile1to1 'basis-11/12 py-4 sm:px-4 basis-3/5 w-3/5 md:basis-full md:w-full' 'basis-11/12 py-4 sm:px-4')}}
|
|
22
22
|
{{/decorator}}
|
|
23
23
|
{{else}}
|
|
24
24
|
{{> components/teaser/components/teaser_body _outerCssClasses=(if this.isMobile1to1 'basis-3/5 w-3/5 md:basis-full md:w-full')}}
|