hr-design-system-handlebars 1.1.6 → 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 +12 -0
- package/dist/assets/index.css +3 -8
- package/dist/views/components/teaser/tabbox/group_tabbox.hbs +1 -1
- package/dist/views/components/teaser/tabbox/teaser_tabbox.hbs +1 -1
- 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
|
@@ -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,15 @@
|
|
|
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
|
+
|
|
1
13
|
# v1.1.6 (Mon Feb 13 2023)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -2656,7 +2656,7 @@ video {
|
|
|
2656
2656
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
2657
2657
|
}
|
|
2658
2658
|
.counter-reset {
|
|
2659
|
-
counter-reset:
|
|
2659
|
+
counter-reset: cnt1676457656030;
|
|
2660
2660
|
}
|
|
2661
2661
|
.line-clamp-4 {
|
|
2662
2662
|
overflow: hidden;
|
|
@@ -2890,7 +2890,7 @@ video {
|
|
|
2890
2890
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
2891
2891
|
}
|
|
2892
2892
|
.-ordered {
|
|
2893
|
-
counter-increment:
|
|
2893
|
+
counter-increment: cnt1676457656030 1;
|
|
2894
2894
|
}
|
|
2895
2895
|
.-ordered::before {
|
|
2896
2896
|
position: absolute;
|
|
@@ -2906,7 +2906,7 @@ video {
|
|
|
2906
2906
|
letter-spacing: .0125em;
|
|
2907
2907
|
--tw-text-opacity: 1;
|
|
2908
2908
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
2909
|
-
content: counter(
|
|
2909
|
+
content: counter(cnt1676457656030);
|
|
2910
2910
|
}
|
|
2911
2911
|
/*! ****************************/
|
|
2912
2912
|
/*! text-shadow */
|
|
@@ -4542,11 +4542,6 @@ video {
|
|
|
4542
4542
|
padding-right: 1rem;
|
|
4543
4543
|
}
|
|
4544
4544
|
|
|
4545
|
-
.md\:px-8 {
|
|
4546
|
-
padding-left: 2rem;
|
|
4547
|
-
padding-right: 2rem;
|
|
4548
|
-
}
|
|
4549
|
-
|
|
4550
4545
|
.md\:pt-4 {
|
|
4551
4546
|
padding-top: 1rem;
|
|
4552
4547
|
}
|
|
@@ -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~}}
|
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~}}
|