hr-design-system-handlebars 0.124.0 → 0.124.2
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 +24 -0
- package/dist/assets/index.css +11 -3
- package/dist/views/components/teaser/group_teaser/group_teaser_accented.hbs +1 -1
- package/package.json +1 -1
- package/src/assets/css/custom-components.css +8 -0
- package/src/stories/views/components/teaser/group_teaser/group_teaser_accented.hbs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v0.124.2 (Thu Feb 09 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- adds class to grp-ts-accented [#530](https://github.com/mumprod/hr-design-system-handlebars/pull/530) ([@StefanVesper](https://github.com/StefanVesper))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v0.124.1 (Thu Feb 09 2023)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- better css for search input with accented grp [#529](https://github.com/mumprod/hr-design-system-handlebars/pull/529) ([@StefanVesper](https://github.com/StefanVesper))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v0.124.0 (Thu Feb 09 2023)
|
|
2
26
|
|
|
3
27
|
#### 🚀 Enhancement
|
package/dist/assets/index.css
CHANGED
|
@@ -577,6 +577,14 @@ video {
|
|
|
577
577
|
cursor: pointer;
|
|
578
578
|
border-radius: 50%;
|
|
579
579
|
}
|
|
580
|
+
/* CONTENT NAV ACCENTED GROUP MIXED*/
|
|
581
|
+
.group-accented .autoSuggest input {
|
|
582
|
+
border-color: transparent!important;
|
|
583
|
+
}
|
|
584
|
+
.group-accented .autoSuggest input {
|
|
585
|
+
height: 32px;
|
|
586
|
+
border-bottom: none;
|
|
587
|
+
}
|
|
580
588
|
.ds-focus {
|
|
581
589
|
z-index: 20;
|
|
582
590
|
}
|
|
@@ -2634,7 +2642,7 @@ video {
|
|
|
2634
2642
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
2635
2643
|
}
|
|
2636
2644
|
.counter-reset {
|
|
2637
|
-
counter-reset:
|
|
2645
|
+
counter-reset: cnt1675936453596;
|
|
2638
2646
|
}
|
|
2639
2647
|
.line-clamp-4 {
|
|
2640
2648
|
overflow: hidden;
|
|
@@ -2868,7 +2876,7 @@ video {
|
|
|
2868
2876
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
2869
2877
|
}
|
|
2870
2878
|
.-ordered {
|
|
2871
|
-
counter-increment:
|
|
2879
|
+
counter-increment: cnt1675936453596 1;
|
|
2872
2880
|
}
|
|
2873
2881
|
.-ordered::before {
|
|
2874
2882
|
position: absolute;
|
|
@@ -2884,7 +2892,7 @@ video {
|
|
|
2884
2892
|
letter-spacing: .0125em;
|
|
2885
2893
|
--tw-text-opacity: 1;
|
|
2886
2894
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
2887
|
-
content: counter(
|
|
2895
|
+
content: counter(cnt1675936453596);
|
|
2888
2896
|
}
|
|
2889
2897
|
/*! ****************************/
|
|
2890
2898
|
/*! 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 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">
|
|
3
|
+
<div class="grid items-start content-start h-auto grid-cols-12 col-span-12 py-5 mx-5 group-accented 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
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~}}
|
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.124.
|
|
9
|
+
"version": "0.124.2",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "start-storybook -p 6006 public",
|
|
@@ -70,6 +70,14 @@
|
|
|
70
70
|
border-radius: 50%;
|
|
71
71
|
}
|
|
72
72
|
|
|
73
|
+
/* CONTENT NAV ACCENTED GROUP MIXED*/
|
|
74
|
+
|
|
75
|
+
.group-accented .autoSuggest input {
|
|
76
|
+
border-color: transparent!important;
|
|
77
|
+
height: 32px;
|
|
78
|
+
border-bottom: none;
|
|
79
|
+
}
|
|
80
|
+
|
|
73
81
|
.ds-focus {
|
|
74
82
|
@apply z-20;
|
|
75
83
|
@apply focus:shadow-teaser-focus focus:shadow-focus-state focus:outline-none;
|
|
@@ -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 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">
|
|
3
|
+
<div class="grid items-start content-start h-auto grid-cols-12 col-span-12 py-5 mx-5 group-accented 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
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~}}
|