hr-design-system-handlebars 1.83.1 → 1.83.2

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.83.2 (Thu Jul 18 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - social sharing icons are hidden on mobile load [#1019](https://github.com/mumprod/hr-design-system-handlebars/pull/1019) ([@vascoeduardo](https://github.com/vascoeduardo))
6
+
7
+ #### Authors: 1
8
+
9
+ - Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
10
+
11
+ ---
12
+
1
13
  # v1.83.1 (Thu Jul 18 2024)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -3330,7 +3330,7 @@ article.indexTextDS .indexTextHighlighted .link {
3330
3330
  border-bottom-color: var(--color-secondary-ds);
3331
3331
  }
3332
3332
  .counter-reset {
3333
- counter-reset: cnt1721312162988;
3333
+ counter-reset: cnt1721318331671;
3334
3334
  }
3335
3335
  .hyphens-auto {
3336
3336
  -webkit-hyphens: auto;
@@ -3738,7 +3738,7 @@ article.indexTextDS .indexTextHighlighted .link {
3738
3738
  --tw-ring-color: rgba(255, 255, 255, 0.5);
3739
3739
  }
3740
3740
  .-ordered {
3741
- counter-increment: cnt1721312162988 1;
3741
+ counter-increment: cnt1721318331671 1;
3742
3742
  }
3743
3743
  .-ordered::before {
3744
3744
  position: absolute;
@@ -3754,7 +3754,7 @@ article.indexTextDS .indexTextHighlighted .link {
3754
3754
  letter-spacing: .0125em;
3755
3755
  --tw-text-opacity: 1;
3756
3756
  color: rgba(0, 0, 0, var(--tw-text-opacity));
3757
- content: counter(cnt1721312162988);
3757
+ content: counter(cnt1721318331671);
3758
3758
  }
3759
3759
  /*! ****************************/
3760
3760
  /*! DataPolicy stuff */
@@ -24,11 +24,11 @@
24
24
  >
25
25
  {{> components/base/image/icon _addClass="w-5 h-5 fill-current group-hover:fill-link--dark" _icon="sharing" _iconmap="icons" }}
26
26
  </button>
27
- <div
28
- x-ref="panel"
29
- :class="$store.sharingIsOpenHorizontal ? 'flex' : 'hidden '"
27
+ <div
28
+ x-ref="panel"
29
+ :class="{ 'hidden': !$store.sharingIsOpenHorizontal,'flex': $store.sharingIsOpenHorizontal }"
30
30
  :id="$id('dropdown-button')"
31
- class="self-center bg-white h-8 absolute right-[50px] md:relative md:right-0 md:h-auto lg:flex"
31
+ class="self-center bg-white h-8 absolute right-[50px] md:relative md:right-0 md:h-auto hidden lg:flex"
32
32
  >
33
33
  <ul class="flex gap-3">
34
34
  {{> components/social_sharing/social_sharing_icons _socialSharingType="metadatabox"}}
@@ -24,11 +24,11 @@
24
24
  >
25
25
  {{> components/base/image/icon _addClass="w-5 h-5 fill-current group-hover:fill-link--dark" _icon="sharing" _iconmap="icons" }}
26
26
  </button>
27
- <div
28
- x-ref="panel"
29
- :class="$store.sharingIsOpenHorizontal ? 'flex' : 'hidden '"
27
+ <div
28
+ x-ref="panel"
29
+ :class="{ 'hidden': !$store.sharingIsOpenHorizontal,'flex': $store.sharingIsOpenHorizontal }"
30
30
  :id="$id('dropdown-button')"
31
- class="self-center bg-white h-8 absolute right-[50px] md:relative md:right-0 md:h-auto lg:flex"
31
+ class="self-center bg-white h-8 absolute right-[50px] md:relative md:right-0 md:h-auto hidden lg:flex"
32
32
  >
33
33
  <ul class="flex gap-3">
34
34
  {{> components/social_sharing/social_sharing_icons _socialSharingType="metadatabox"}}
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.83.1",
9
+ "version": "1.83.2",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -24,11 +24,11 @@
24
24
  >
25
25
  {{> components/base/image/icon _addClass="w-5 h-5 fill-current group-hover:fill-link--dark" _icon="sharing" _iconmap="icons" }}
26
26
  </button>
27
- <div
28
- x-ref="panel"
29
- :class="$store.sharingIsOpenHorizontal ? 'flex' : 'hidden '"
27
+ <div
28
+ x-ref="panel"
29
+ :class="{ 'hidden': !$store.sharingIsOpenHorizontal,'flex': $store.sharingIsOpenHorizontal }"
30
30
  :id="$id('dropdown-button')"
31
- class="self-center bg-white h-8 absolute right-[50px] md:relative md:right-0 md:h-auto lg:flex"
31
+ class="self-center bg-white h-8 absolute right-[50px] md:relative md:right-0 md:h-auto hidden lg:flex"
32
32
  >
33
33
  <ul class="flex gap-3">
34
34
  {{> components/social_sharing/social_sharing_icons _socialSharingType="metadatabox"}}