hr-design-system-handlebars 1.77.2 → 1.77.3

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.77.3 (Thu Jul 04 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Kein Abstand zum Footer - DPE-3207 [#981](https://github.com/mumprod/hr-design-system-handlebars/pull/981) ([@vascoeduardo](https://github.com/vascoeduardo))
6
+
7
+ #### Authors: 1
8
+
9
+ - Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
10
+
11
+ ---
12
+
1
13
  # v1.77.2 (Thu Jul 04 2024)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -3377,7 +3377,7 @@ article.indexTextDS .indexTextHighlighted .link {
3377
3377
  border-bottom-color: var(--color-secondary-ds);
3378
3378
  }
3379
3379
  .counter-reset {
3380
- counter-reset: cnt1720096846570;
3380
+ counter-reset: cnt1720101648014;
3381
3381
  }
3382
3382
  .hyphens-auto {
3383
3383
  -webkit-hyphens: auto;
@@ -3775,7 +3775,7 @@ article.indexTextDS .indexTextHighlighted .link {
3775
3775
  --tw-ring-color: rgba(255, 255, 255, 0.5);
3776
3776
  }
3777
3777
  .-ordered {
3778
- counter-increment: cnt1720096846570 1;
3778
+ counter-increment: cnt1720101648014 1;
3779
3779
  }
3780
3780
  .-ordered::before {
3781
3781
  position: absolute;
@@ -3791,7 +3791,7 @@ article.indexTextDS .indexTextHighlighted .link {
3791
3791
  letter-spacing: .0125em;
3792
3792
  --tw-text-opacity: 1;
3793
3793
  color: rgba(0, 0, 0, var(--tw-text-opacity));
3794
- content: counter(cnt1720096846570);
3794
+ content: counter(cnt1720101648014);
3795
3795
  }
3796
3796
  /*! ****************************/
3797
3797
  /*! DataPolicy stuff */
@@ -1,4 +1,4 @@
1
- <div class="" x-data="{ isVisible: false }">
1
+ <div class="h-8" x-data="{ isVisible: false }">
2
2
  <div class="grid grid-page z-100" :class="{ 'fixed bottom-feature-box-height left-0 w-full': !$store.footerIsVisible }">
3
3
  <div class="flex justify-between h-0 col-full sm:col-main"
4
4
  :class="{ 'bg-white h-8': $store.footerIsVisible }"
@@ -9,7 +9,7 @@
9
9
  x-transition:leave="transition ease-[cubic-bezier(0.68,-0.3,0.32,1)] duration-300"
10
10
  x-transition:leave-start="opacity-100 translate-y-0"
11
11
  x-transition:leave-end="opacity-0 translate-y-12"
12
- @scroll.window="isVisible = ((window.pageYOffset * 2) > (window.innerHeight || (document.documentElement || document.body).clientHeight))"
12
+ @scroll.window="isVisible = (((window.pageYOffset * 2) > (window.innerHeight || (document.documentElement || document.body).clientHeight)) || $store.footerIsVisible )"
13
13
  >
14
14
  {{> components/social_sharing/social_sharing_mobile }}
15
15
 
@@ -1,4 +1,4 @@
1
- <div class="" x-data="{ isVisible: false }">
1
+ <div class="h-8" x-data="{ isVisible: false }">
2
2
  <div class="grid grid-page z-100" :class="{ 'fixed bottom-feature-box-height left-0 w-full': !$store.footerIsVisible }">
3
3
  <div class="flex justify-between h-0 col-full sm:col-main"
4
4
  :class="{ 'bg-white h-8': $store.footerIsVisible }"
@@ -9,7 +9,7 @@
9
9
  x-transition:leave="transition ease-[cubic-bezier(0.68,-0.3,0.32,1)] duration-300"
10
10
  x-transition:leave-start="opacity-100 translate-y-0"
11
11
  x-transition:leave-end="opacity-0 translate-y-12"
12
- @scroll.window="isVisible = ((window.pageYOffset * 2) > (window.innerHeight || (document.documentElement || document.body).clientHeight))"
12
+ @scroll.window="isVisible = (((window.pageYOffset * 2) > (window.innerHeight || (document.documentElement || document.body).clientHeight)) || $store.footerIsVisible )"
13
13
  >
14
14
  {{> components/social_sharing/social_sharing_mobile }}
15
15
 
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.77.2",
9
+ "version": "1.77.3",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -1,4 +1,4 @@
1
- <div class="" x-data="{ isVisible: false }">
1
+ <div class="h-8" x-data="{ isVisible: false }">
2
2
  <div class="grid grid-page z-100" :class="{ 'fixed bottom-feature-box-height left-0 w-full': !$store.footerIsVisible }">
3
3
  <div class="flex justify-between h-0 col-full sm:col-main"
4
4
  :class="{ 'bg-white h-8': $store.footerIsVisible }"
@@ -9,7 +9,7 @@
9
9
  x-transition:leave="transition ease-[cubic-bezier(0.68,-0.3,0.32,1)] duration-300"
10
10
  x-transition:leave-start="opacity-100 translate-y-0"
11
11
  x-transition:leave-end="opacity-0 translate-y-12"
12
- @scroll.window="isVisible = ((window.pageYOffset * 2) > (window.innerHeight || (document.documentElement || document.body).clientHeight))"
12
+ @scroll.window="isVisible = (((window.pageYOffset * 2) > (window.innerHeight || (document.documentElement || document.body).clientHeight)) || $store.footerIsVisible )"
13
13
  >
14
14
  {{> components/social_sharing/social_sharing_mobile }}
15
15