hr-design-system-handlebars 1.91.1 → 1.93.0
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 +4 -6
- package/dist/views/components/site_header/burger.hbs +3 -3
- package/dist/views_static/components/site_header/burger.hbs +3 -3
- package/package.json +2 -2
- package/src/assets/css/custom-components.css +1 -7
- package/src/stories/views/components/site_header/burger.hbs +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v1.93.0 (Thu Aug 15 2024)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Bug/dpe 3310 [#1049](https://github.com/mumprod/hr-design-system-handlebars/pull/1049) ([@szuelch](https://github.com/szuelch))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- [@szuelch](https://github.com/szuelch)
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v1.92.0 (Wed Aug 14 2024)
|
|
14
|
+
|
|
15
|
+
#### 🚀 Enhancement
|
|
16
|
+
|
|
17
|
+
- :bug: Set an initial height in copytext-ds__icon class so that [#1048](https://github.com/mumprod/hr-design-system-handlebars/pull/1048) ([@szuelch](https://github.com/szuelch))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- [@szuelch](https://github.com/szuelch)
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v1.91.1 (Tue Aug 13 2024)
|
|
2
26
|
|
|
3
27
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -1027,11 +1027,9 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
1027
1027
|
margin-top: -0.125rem;
|
|
1028
1028
|
margin-left: 0.25rem;
|
|
1029
1029
|
display: inline;
|
|
1030
|
-
fill: currentColor;
|
|
1031
|
-
}
|
|
1032
|
-
.copytext-ds__box .copytext-ds__icon {
|
|
1033
1030
|
height: 1.25rem;
|
|
1034
1031
|
width: 1.25rem;
|
|
1032
|
+
fill: currentColor;
|
|
1035
1033
|
}
|
|
1036
1034
|
.copytext-ds__paragraph .copytext-ds__icon {
|
|
1037
1035
|
height: 1.5rem;
|
|
@@ -3334,7 +3332,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3334
3332
|
border-bottom-color: var(--color-secondary-ds);
|
|
3335
3333
|
}
|
|
3336
3334
|
.counter-reset {
|
|
3337
|
-
counter-reset:
|
|
3335
|
+
counter-reset: cnt1723709092481;
|
|
3338
3336
|
}
|
|
3339
3337
|
.hyphens-auto {
|
|
3340
3338
|
-webkit-hyphens: auto;
|
|
@@ -3742,7 +3740,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3742
3740
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3743
3741
|
}
|
|
3744
3742
|
.-ordered {
|
|
3745
|
-
counter-increment:
|
|
3743
|
+
counter-increment: cnt1723709092481 1;
|
|
3746
3744
|
}
|
|
3747
3745
|
.-ordered::before {
|
|
3748
3746
|
position: absolute;
|
|
@@ -3758,7 +3756,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3758
3756
|
letter-spacing: .0125em;
|
|
3759
3757
|
--tw-text-opacity: 1;
|
|
3760
3758
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3761
|
-
content: counter(
|
|
3759
|
+
content: counter(cnt1723709092481);
|
|
3762
3760
|
}
|
|
3763
3761
|
/*! ****************************/
|
|
3764
3762
|
/*! DataPolicy stuff */
|
|
@@ -3,8 +3,7 @@
|
|
|
3
3
|
<button {{!-- :class="$store.burgeropen ? 'text-primary' : 'text-white'" --}}
|
|
4
4
|
class="relative w-10 h-10 text-navigation-text tablet:w-18 tablet:h-12 focus:outline-none bg-brand"
|
|
5
5
|
@burger-close.window="burgerClose()"
|
|
6
|
-
@click="
|
|
7
|
-
@click.nextTick="burgerClick()"
|
|
6
|
+
@click="burgerClick()"
|
|
8
7
|
aria-owns="sectionNav"
|
|
9
8
|
aria-controls="sectionNav"
|
|
10
9
|
x-effect="$el.setAttribute('aria-expanded', $store.burgeropen);$el.setAttribute('aria-label', $store.burgeropen ? 'Navigation schließen' : 'Navigation öffnen')"
|
|
@@ -26,8 +25,9 @@
|
|
|
26
25
|
this.$store.burgeropen = false
|
|
27
26
|
this.$dispatch('toggle-sectionnav', false);
|
|
28
27
|
},
|
|
29
|
-
burgerClick(){
|
|
28
|
+
burgerClick(){
|
|
30
29
|
this.$store.serviceNavIsOpen = false
|
|
30
|
+
this.$store.burgeropen = !this.$store.burgeropen
|
|
31
31
|
this.$dispatch('toggle-sectionnav', this.$store.burgeropen);
|
|
32
32
|
// Todo: not doing anything! can be removed?
|
|
33
33
|
// this.percent > 50 ? this.removeYtranslate() : null;
|
|
@@ -3,8 +3,7 @@
|
|
|
3
3
|
<button {{!-- :class="$store.burgeropen ? 'text-primary' : 'text-white'" --}}
|
|
4
4
|
class="relative w-10 h-10 text-navigation-text tablet:w-18 tablet:h-12 focus:outline-none bg-brand"
|
|
5
5
|
@burger-close.window="burgerClose()"
|
|
6
|
-
@click="
|
|
7
|
-
@click.nextTick="burgerClick()"
|
|
6
|
+
@click="burgerClick()"
|
|
8
7
|
aria-owns="sectionNav"
|
|
9
8
|
aria-controls="sectionNav"
|
|
10
9
|
x-effect="$el.setAttribute('aria-expanded', $store.burgeropen);$el.setAttribute('aria-label', $store.burgeropen ? 'Navigation schließen' : 'Navigation öffnen')"
|
|
@@ -26,8 +25,9 @@
|
|
|
26
25
|
this.$store.burgeropen = false
|
|
27
26
|
this.$dispatch('toggle-sectionnav', false);
|
|
28
27
|
},
|
|
29
|
-
burgerClick(){
|
|
28
|
+
burgerClick(){
|
|
30
29
|
this.$store.serviceNavIsOpen = false
|
|
30
|
+
this.$store.burgeropen = !this.$store.burgeropen
|
|
31
31
|
this.$dispatch('toggle-sectionnav', this.$store.burgeropen);
|
|
32
32
|
// Todo: not doing anything! can be removed?
|
|
33
33
|
// this.percent > 50 ? this.removeYtranslate() : null;
|
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.
|
|
9
|
+
"version": "1.93.0",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
"@alpinejs/intersect": "^3.13.3",
|
|
119
119
|
"@tailwindcss/line-clamp": "^0.4.2",
|
|
120
120
|
"a11y-dialog": "^8.0.4",
|
|
121
|
-
"alpinejs": "^3.
|
|
121
|
+
"alpinejs": "^3.14.1",
|
|
122
122
|
"async-alpine": "^1.0.0",
|
|
123
123
|
"checkcss": "^2.0.9",
|
|
124
124
|
"dialog-polyfill": "^0.5.6",
|
|
@@ -316,13 +316,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
316
316
|
}
|
|
317
317
|
|
|
318
318
|
&__icon {
|
|
319
|
-
@apply inline -mt-0.5 fill-current ml-1;
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
&__box {
|
|
323
|
-
.copytext-ds__icon {
|
|
324
|
-
@apply w-5 h-5;
|
|
325
|
-
}
|
|
319
|
+
@apply inline w-5 h-5 -mt-0.5 fill-current ml-1;
|
|
326
320
|
}
|
|
327
321
|
|
|
328
322
|
&__paragraph {
|
|
@@ -3,8 +3,7 @@
|
|
|
3
3
|
<button {{!-- :class="$store.burgeropen ? 'text-primary' : 'text-white'" --}}
|
|
4
4
|
class="relative w-10 h-10 text-navigation-text tablet:w-18 tablet:h-12 focus:outline-none bg-brand"
|
|
5
5
|
@burger-close.window="burgerClose()"
|
|
6
|
-
@click="
|
|
7
|
-
@click.nextTick="burgerClick()"
|
|
6
|
+
@click="burgerClick()"
|
|
8
7
|
aria-owns="sectionNav"
|
|
9
8
|
aria-controls="sectionNav"
|
|
10
9
|
x-effect="$el.setAttribute('aria-expanded', $store.burgeropen);$el.setAttribute('aria-label', $store.burgeropen ? 'Navigation schließen' : 'Navigation öffnen')"
|
|
@@ -26,8 +25,9 @@
|
|
|
26
25
|
this.$store.burgeropen = false
|
|
27
26
|
this.$dispatch('toggle-sectionnav', false);
|
|
28
27
|
},
|
|
29
|
-
burgerClick(){
|
|
28
|
+
burgerClick(){
|
|
30
29
|
this.$store.serviceNavIsOpen = false
|
|
30
|
+
this.$store.burgeropen = !this.$store.burgeropen
|
|
31
31
|
this.$dispatch('toggle-sectionnav', this.$store.burgeropen);
|
|
32
32
|
// Todo: not doing anything! can be removed?
|
|
33
33
|
// this.percent > 50 ? this.removeYtranslate() : null;
|