hr-design-system-handlebars 1.50.18 → 1.50.19

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.50.19 (Wed Nov 29 2023)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - DPE-2673-1 [#767](https://github.com/mumprod/hr-design-system-handlebars/pull/767) ([@vascoeduardo](https://github.com/vascoeduardo))
6
+
7
+ #### Authors: 1
8
+
9
+ - Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
10
+
11
+ ---
12
+
1
13
  # v1.50.18 (Mon Nov 27 2023)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -3191,7 +3191,7 @@ article.indexText ul {
3191
3191
  border-bottom-color: var(--color-secondary-ds);
3192
3192
  }
3193
3193
  .counter-reset {
3194
- counter-reset: cnt1701102793304;
3194
+ counter-reset: cnt1701247788210;
3195
3195
  }
3196
3196
  .hyphens-auto {
3197
3197
  -webkit-hyphens: auto;
@@ -3452,7 +3452,7 @@ article.indexText ul {
3452
3452
  --tw-ring-color: rgba(255, 255, 255, 0.5);
3453
3453
  }
3454
3454
  .-ordered {
3455
- counter-increment: cnt1701102793304 1;
3455
+ counter-increment: cnt1701247788210 1;
3456
3456
  }
3457
3457
  .-ordered::before {
3458
3458
  position: absolute;
@@ -3468,7 +3468,7 @@ article.indexText ul {
3468
3468
  letter-spacing: .0125em;
3469
3469
  --tw-text-opacity: 1;
3470
3470
  color: rgba(0, 0, 0, var(--tw-text-opacity));
3471
- content: counter(cnt1701102793304);
3471
+ content: counter(cnt1701247788210);
3472
3472
  }
3473
3473
  /*! ****************************/
3474
3474
  /*! DataPolicy stuff */
@@ -1,5 +1,5 @@
1
1
  <div class="flex flex-col py-6 bg-slate-500">
2
- <div class="grid grid-page">
2
+ <div class="grid mb-4 grid-page">
3
3
  <h1 class="text-3xl font-title col-full sm:col-main">Maximalausprägung mit Struktur Navigation</h1>
4
4
  </div>
5
5
  {{#> components/banner/header/breadcrumb_wrapper _hasContentNav=true }}
@@ -33,7 +33,7 @@
33
33
  {{/with}}
34
34
  </div>
35
35
  <div class="flex flex-col py-6 bg-orange-500">
36
- <div class="grid grid-page">
36
+ <div class="grid mb-4 grid-page">
37
37
  <h1 class="text-3xl font-title col-full sm:col-main">Maximalausprägung ohne Struktur Navigation</h1>
38
38
  </div>
39
39
  {{#> components/banner/header/breadcrumb_wrapper _hasContentNav=false }}
@@ -65,7 +65,7 @@
65
65
  {{/components/banner/header/banner_wrapper }}
66
66
  </div>
67
67
  <div class="flex flex-col py-6 bg-green-800">
68
- <div class="grid grid-page">
68
+ <div class="grid mb-4 grid-page">
69
69
  <h1 class="text-3xl font-title col-full sm:col-main">Maximalausprägung Mobil kein Bild</h1>
70
70
  </div>
71
71
  {{#> components/banner/header/breadcrumb_wrapper _hasContentNav=false}}
@@ -94,7 +94,7 @@
94
94
  {{/components/banner/header/banner_wrapper }}
95
95
  </div>
96
96
  <div class="flex flex-col py-6 bg-white dark:bg-black ">
97
- <div class="grid grid-page">
97
+ <div class="grid mb-4 grid-page">
98
98
  <h1 class="text-3xl font-title col-full sm:col-main">Maximalausprägung kein Bild</h1>
99
99
  </div>
100
100
  {{#> components/banner/header/breadcrumb_wrapper _hasContentNav=false }}
@@ -121,6 +121,4 @@
121
121
  {{/components/banner/header/title_background }}
122
122
  {{/components/banner/header/banner_overlay }}
123
123
  {{/components/banner/header/banner_wrapper }}
124
- </div>
125
- {{> components/top_button/top_button }}
126
- {{> components/footer/page_footer }}
124
+ </div>
@@ -65,7 +65,8 @@
65
65
  </div>
66
66
  </div>
67
67
  </main>
68
- {{!-- {{> components/footer/page_footer }} --}}
68
+ {{> components/top_button/top_button }}
69
+ {{> components/footer/page_footer }}
69
70
  </div>
70
71
  </body>
71
72
  </html>
@@ -4,7 +4,7 @@
4
4
  :class="{ 'bg-white': $store.footerIsVisible }">
5
5
  <button
6
6
  @scroll.window="isVisible = (window.pageYOffset > (window.innerHeight || (document.documentElement || document.body).clientHeight))"
7
- @click.window="window.scrollTo({top: 0, behavior: 'smooth'})"
7
+ @click="window.scrollTo({top: 0, behavior: 'smooth'})"
8
8
  x-show="isVisible"
9
9
  x-transition:enter="transition ease-[cubic-bezier(0.68,-0.3,0.32,1)] duration-500 transform order-first"
10
10
  x-transition:enter-start="opacity-0 -translate-y-8"
@@ -1,5 +1,5 @@
1
1
  <div class="flex flex-col py-6 bg-slate-500">
2
- <div class="grid grid-page">
2
+ <div class="grid mb-4 grid-page">
3
3
  <h1 class="text-3xl font-title col-full sm:col-main">Maximalausprägung mit Struktur Navigation</h1>
4
4
  </div>
5
5
  {{#> components/banner/header/breadcrumb_wrapper _hasContentNav=true }}
@@ -33,7 +33,7 @@
33
33
  {{/with}}
34
34
  </div>
35
35
  <div class="flex flex-col py-6 bg-orange-500">
36
- <div class="grid grid-page">
36
+ <div class="grid mb-4 grid-page">
37
37
  <h1 class="text-3xl font-title col-full sm:col-main">Maximalausprägung ohne Struktur Navigation</h1>
38
38
  </div>
39
39
  {{#> components/banner/header/breadcrumb_wrapper _hasContentNav=false }}
@@ -65,7 +65,7 @@
65
65
  {{/components/banner/header/banner_wrapper }}
66
66
  </div>
67
67
  <div class="flex flex-col py-6 bg-green-800">
68
- <div class="grid grid-page">
68
+ <div class="grid mb-4 grid-page">
69
69
  <h1 class="text-3xl font-title col-full sm:col-main">Maximalausprägung Mobil kein Bild</h1>
70
70
  </div>
71
71
  {{#> components/banner/header/breadcrumb_wrapper _hasContentNav=false}}
@@ -94,7 +94,7 @@
94
94
  {{/components/banner/header/banner_wrapper }}
95
95
  </div>
96
96
  <div class="flex flex-col py-6 bg-white dark:bg-black ">
97
- <div class="grid grid-page">
97
+ <div class="grid mb-4 grid-page">
98
98
  <h1 class="text-3xl font-title col-full sm:col-main">Maximalausprägung kein Bild</h1>
99
99
  </div>
100
100
  {{#> components/banner/header/breadcrumb_wrapper _hasContentNav=false }}
@@ -121,6 +121,4 @@
121
121
  {{/components/banner/header/title_background }}
122
122
  {{/components/banner/header/banner_overlay }}
123
123
  {{/components/banner/header/banner_wrapper }}
124
- </div>
125
- {{> components/top_button/top_button }}
126
- {{> components/footer/page_footer }}
124
+ </div>
@@ -65,7 +65,8 @@
65
65
  </div>
66
66
  </div>
67
67
  </main>
68
- {{!-- {{> components/footer/page_footer }} --}}
68
+ {{> components/top_button/top_button }}
69
+ {{> components/footer/page_footer }}
69
70
  </div>
70
71
  </body>
71
72
  </html>
@@ -4,7 +4,7 @@
4
4
  :class="{ 'bg-white': $store.footerIsVisible }">
5
5
  <button
6
6
  @scroll.window="isVisible = (window.pageYOffset > (window.innerHeight || (document.documentElement || document.body).clientHeight))"
7
- @click.window="window.scrollTo({top: 0, behavior: 'smooth'})"
7
+ @click="window.scrollTo({top: 0, behavior: 'smooth'})"
8
8
  x-show="isVisible"
9
9
  x-transition:enter="transition ease-[cubic-bezier(0.68,-0.3,0.32,1)] duration-500 transform order-first"
10
10
  x-transition:enter-start="opacity-0 -translate-y-8"
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.50.18",
9
+ "version": "1.50.19",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -1,5 +1,5 @@
1
1
  <div class="flex flex-col py-6 bg-slate-500">
2
- <div class="grid grid-page">
2
+ <div class="grid mb-4 grid-page">
3
3
  <h1 class="text-3xl font-title col-full sm:col-main">Maximalausprägung mit Struktur Navigation</h1>
4
4
  </div>
5
5
  {{#> components/banner/header/breadcrumb_wrapper _hasContentNav=true }}
@@ -33,7 +33,7 @@
33
33
  {{/with}}
34
34
  </div>
35
35
  <div class="flex flex-col py-6 bg-orange-500">
36
- <div class="grid grid-page">
36
+ <div class="grid mb-4 grid-page">
37
37
  <h1 class="text-3xl font-title col-full sm:col-main">Maximalausprägung ohne Struktur Navigation</h1>
38
38
  </div>
39
39
  {{#> components/banner/header/breadcrumb_wrapper _hasContentNav=false }}
@@ -65,7 +65,7 @@
65
65
  {{/components/banner/header/banner_wrapper }}
66
66
  </div>
67
67
  <div class="flex flex-col py-6 bg-green-800">
68
- <div class="grid grid-page">
68
+ <div class="grid mb-4 grid-page">
69
69
  <h1 class="text-3xl font-title col-full sm:col-main">Maximalausprägung Mobil kein Bild</h1>
70
70
  </div>
71
71
  {{#> components/banner/header/breadcrumb_wrapper _hasContentNav=false}}
@@ -94,7 +94,7 @@
94
94
  {{/components/banner/header/banner_wrapper }}
95
95
  </div>
96
96
  <div class="flex flex-col py-6 bg-white dark:bg-black ">
97
- <div class="grid grid-page">
97
+ <div class="grid mb-4 grid-page">
98
98
  <h1 class="text-3xl font-title col-full sm:col-main">Maximalausprägung kein Bild</h1>
99
99
  </div>
100
100
  {{#> components/banner/header/breadcrumb_wrapper _hasContentNav=false }}
@@ -121,6 +121,4 @@
121
121
  {{/components/banner/header/title_background }}
122
122
  {{/components/banner/header/banner_overlay }}
123
123
  {{/components/banner/header/banner_wrapper }}
124
- </div>
125
- {{> components/top_button/top_button }}
126
- {{> components/footer/page_footer }}
124
+ </div>
@@ -65,7 +65,8 @@
65
65
  </div>
66
66
  </div>
67
67
  </main>
68
- {{!-- {{> components/footer/page_footer }} --}}
68
+ {{> components/top_button/top_button }}
69
+ {{> components/footer/page_footer }}
69
70
  </div>
70
71
  </body>
71
72
  </html>
@@ -4,7 +4,7 @@
4
4
  :class="{ 'bg-white': $store.footerIsVisible }">
5
5
  <button
6
6
  @scroll.window="isVisible = (window.pageYOffset > (window.innerHeight || (document.documentElement || document.body).clientHeight))"
7
- @click.window="window.scrollTo({top: 0, behavior: 'smooth'})"
7
+ @click="window.scrollTo({top: 0, behavior: 'smooth'})"
8
8
  x-show="isVisible"
9
9
  x-transition:enter="transition ease-[cubic-bezier(0.68,-0.3,0.32,1)] duration-500 transform order-first"
10
10
  x-transition:enter-start="opacity-0 -translate-y-8"