hr-design-system-handlebars 1.92.0 → 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
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
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
|
+
|
|
1
13
|
# v1.92.0 (Wed Aug 14 2024)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
package/dist/assets/index.css
CHANGED
|
@@ -3332,7 +3332,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3332
3332
|
border-bottom-color: var(--color-secondary-ds);
|
|
3333
3333
|
}
|
|
3334
3334
|
.counter-reset {
|
|
3335
|
-
counter-reset:
|
|
3335
|
+
counter-reset: cnt1723709092481;
|
|
3336
3336
|
}
|
|
3337
3337
|
.hyphens-auto {
|
|
3338
3338
|
-webkit-hyphens: auto;
|
|
@@ -3740,7 +3740,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3740
3740
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3741
3741
|
}
|
|
3742
3742
|
.-ordered {
|
|
3743
|
-
counter-increment:
|
|
3743
|
+
counter-increment: cnt1723709092481 1;
|
|
3744
3744
|
}
|
|
3745
3745
|
.-ordered::before {
|
|
3746
3746
|
position: absolute;
|
|
@@ -3756,7 +3756,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3756
3756
|
letter-spacing: .0125em;
|
|
3757
3757
|
--tw-text-opacity: 1;
|
|
3758
3758
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3759
|
-
content: counter(
|
|
3759
|
+
content: counter(cnt1723709092481);
|
|
3760
3760
|
}
|
|
3761
3761
|
/*! ****************************/
|
|
3762
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",
|
|
@@ -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;
|