hr-design-system-handlebars 1.77.10 → 1.77.11

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.11 (Mon Jul 08 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - DPE-3219 - Sharing aus Nicht-Artikeln raus [#989](https://github.com/mumprod/hr-design-system-handlebars/pull/989) ([@vascoeduardo](https://github.com/vascoeduardo))
6
+
7
+ #### Authors: 1
8
+
9
+ - Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
10
+
11
+ ---
12
+
1
13
  # v1.77.10 (Mon Jul 08 2024)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -3392,7 +3392,7 @@ article.indexTextDS .indexTextHighlighted .link {
3392
3392
  border-bottom-color: var(--color-secondary-ds);
3393
3393
  }
3394
3394
  .counter-reset {
3395
- counter-reset: cnt1720445581084;
3395
+ counter-reset: cnt1720452958780;
3396
3396
  }
3397
3397
  .hyphens-auto {
3398
3398
  -webkit-hyphens: auto;
@@ -3790,7 +3790,7 @@ article.indexTextDS .indexTextHighlighted .link {
3790
3790
  --tw-ring-color: rgba(255, 255, 255, 0.5);
3791
3791
  }
3792
3792
  .-ordered {
3793
- counter-increment: cnt1720445581084 1;
3793
+ counter-increment: cnt1720452958780 1;
3794
3794
  }
3795
3795
  .-ordered::before {
3796
3796
  position: absolute;
@@ -3806,7 +3806,7 @@ article.indexTextDS .indexTextHighlighted .link {
3806
3806
  letter-spacing: .0125em;
3807
3807
  --tw-text-opacity: 1;
3808
3808
  color: rgba(0, 0, 0, var(--tw-text-opacity));
3809
- content: counter(cnt1720445581084);
3809
+ content: counter(cnt1720452958780);
3810
3810
  }
3811
3811
  /*! ****************************/
3812
3812
  /*! DataPolicy stuff */
@@ -65,7 +65,7 @@
65
65
  </div>
66
66
  </div>
67
67
  </main>
68
- {{> components/top_button/top_button }}
68
+ {{> components/top_button/top_button _loadSharing=false}}
69
69
  {{> components/footer/page_footer }}
70
70
  </div>
71
71
  </body>
@@ -33,7 +33,7 @@
33
33
  class="flex flex-col items-center justify-center"
34
34
  >
35
35
  {{> components/page/story/story_article }}
36
- {{> components/top_button/top_button }}
36
+ {{> components/top_button/top_button _loadSharing=true}}
37
37
  {{> components/footer/page_footer }}
38
38
  </main>
39
39
  </div>
@@ -2,4 +2,4 @@
2
2
  {{~>components/page/story/story_article}}
3
3
 
4
4
  {{/partial}}
5
- {{> "modules/page/base" }}
5
+ {{> "modules/page/base" _isStory=this.isStory}}
@@ -11,8 +11,9 @@
11
11
  x-transition:leave-end="opacity-0 translate-y-12"
12
12
  @scroll.window="isVisible = (((window.pageYOffset * 2) > (window.innerHeight || (document.documentElement || document.body).clientHeight)) || $store.footerIsVisible )"
13
13
  >
14
- {{> components/social_sharing/social_sharing_mobile }}
15
-
14
+ {{#if _loadSharing}}
15
+ {{> components/social_sharing/social_sharing_mobile }}
16
+ {{/if}}
16
17
  <button
17
18
 
18
19
  @click="window.scrollTo({top: 0, behavior: 'smooth'})"
@@ -65,7 +65,7 @@
65
65
  </div>
66
66
  </div>
67
67
  </main>
68
- {{> components/top_button/top_button }}
68
+ {{> components/top_button/top_button _loadSharing=false}}
69
69
  {{> components/footer/page_footer }}
70
70
  </div>
71
71
  </body>
@@ -33,7 +33,7 @@
33
33
  class="flex flex-col items-center justify-center"
34
34
  >
35
35
  {{> components/page/story/story_article }}
36
- {{> components/top_button/top_button }}
36
+ {{> components/top_button/top_button _loadSharing=true}}
37
37
  {{> components/footer/page_footer }}
38
38
  </main>
39
39
  </div>
@@ -2,4 +2,4 @@
2
2
  {{~>components/page/story/story_article}}
3
3
 
4
4
  {{/partial}}
5
- {{> "modules/page/base" }}
5
+ {{> "modules/page/base" _isStory=this.isStory}}
@@ -11,8 +11,9 @@
11
11
  x-transition:leave-end="opacity-0 translate-y-12"
12
12
  @scroll.window="isVisible = (((window.pageYOffset * 2) > (window.innerHeight || (document.documentElement || document.body).clientHeight)) || $store.footerIsVisible )"
13
13
  >
14
- {{> components/social_sharing/social_sharing_mobile }}
15
-
14
+ {{#if _loadSharing}}
15
+ {{> components/social_sharing/social_sharing_mobile }}
16
+ {{/if}}
16
17
  <button
17
18
 
18
19
  @click="window.scrollTo({top: 0, behavior: 'smooth'})"
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.10",
9
+ "version": "1.77.11",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -65,7 +65,7 @@
65
65
  </div>
66
66
  </div>
67
67
  </main>
68
- {{> components/top_button/top_button }}
68
+ {{> components/top_button/top_button _loadSharing=false}}
69
69
  {{> components/footer/page_footer }}
70
70
  </div>
71
71
  </body>
@@ -33,7 +33,7 @@
33
33
  class="flex flex-col items-center justify-center"
34
34
  >
35
35
  {{> components/page/story/story_article }}
36
- {{> components/top_button/top_button }}
36
+ {{> components/top_button/top_button _loadSharing=true}}
37
37
  {{> components/footer/page_footer }}
38
38
  </main>
39
39
  </div>
@@ -2,4 +2,4 @@
2
2
  {{~>components/page/story/story_article}}
3
3
 
4
4
  {{/partial}}
5
- {{> "modules/page/base" }}
5
+ {{> "modules/page/base" _isStory=this.isStory}}
@@ -11,8 +11,9 @@
11
11
  x-transition:leave-end="opacity-0 translate-y-12"
12
12
  @scroll.window="isVisible = (((window.pageYOffset * 2) > (window.innerHeight || (document.documentElement || document.body).clientHeight)) || $store.footerIsVisible )"
13
13
  >
14
- {{> components/social_sharing/social_sharing_mobile }}
15
-
14
+ {{#if _loadSharing}}
15
+ {{> components/social_sharing/social_sharing_mobile }}
16
+ {{/if}}
16
17
  <button
17
18
 
18
19
  @click="window.scrollTo({top: 0, behavior: 'smooth'})"