hr-design-system-handlebars 1.24.2 → 1.24.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.24.3 (Tue May 16 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- checked if is Cluster [#641](https://github.com/mumprod/hr-design-system-handlebars/pull/641) ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.24.2 (Tue May 16 2023)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -2720,7 +2720,7 @@ video {
|
|
|
2720
2720
|
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
2721
2721
|
}
|
|
2722
2722
|
.counter-reset {
|
|
2723
|
-
counter-reset:
|
|
2723
|
+
counter-reset: cnt1684243447774;
|
|
2724
2724
|
}
|
|
2725
2725
|
.hyphens-auto {
|
|
2726
2726
|
-webkit-hyphens: auto;
|
|
@@ -2962,7 +2962,7 @@ video {
|
|
|
2962
2962
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
2963
2963
|
}
|
|
2964
2964
|
.-ordered {
|
|
2965
|
-
counter-increment:
|
|
2965
|
+
counter-increment: cnt1684243447774 1;
|
|
2966
2966
|
}
|
|
2967
2967
|
.-ordered::before {
|
|
2968
2968
|
position: absolute;
|
|
@@ -2978,7 +2978,7 @@ video {
|
|
|
2978
2978
|
letter-spacing: .0125em;
|
|
2979
2979
|
--tw-text-opacity: 1;
|
|
2980
2980
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
2981
|
-
content: counter(
|
|
2981
|
+
content: counter(cnt1684243447774);
|
|
2982
2982
|
}
|
|
2983
2983
|
/*! ****************************/
|
|
2984
2984
|
/*! text-shadow */
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
{{~this.text~}}
|
|
72
72
|
|
|
73
73
|
{{#if this.subNavigation.showAsFlyout ~}}
|
|
74
|
-
<div class="items-center justify-center hidden w-10 h-10 leading-4 lg:w-auto lg:border-0 lg:pl-1 lg:flex">
|
|
74
|
+
<div class="items-center justify-center{{#if this.isCluster}} flex{{else}} hidden{{~/if}} w-10 h-10 leading-4 lg:w-auto lg:border-0 lg:pl-1 lg:flex">
|
|
75
75
|
<div class="flex items-center justify-center" :class="dropped ? 'transform rotate-180':''">
|
|
76
76
|
{{> components/base/image/icon _icon="arrow-down" _iconmap="icons" _addClass="w-3 h-2 fill-current"}}
|
|
77
77
|
</div>
|
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.24.
|
|
9
|
+
"version": "1.24.3",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
package/src/stories/views/components/site_header/section_navigation/section_navigation_item.hbs
CHANGED
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
{{~this.text~}}
|
|
72
72
|
|
|
73
73
|
{{#if this.subNavigation.showAsFlyout ~}}
|
|
74
|
-
<div class="items-center justify-center hidden w-10 h-10 leading-4 lg:w-auto lg:border-0 lg:pl-1 lg:flex">
|
|
74
|
+
<div class="items-center justify-center{{#if this.isCluster}} flex{{else}} hidden{{~/if}} w-10 h-10 leading-4 lg:w-auto lg:border-0 lg:pl-1 lg:flex">
|
|
75
75
|
<div class="flex items-center justify-center" :class="dropped ? 'transform rotate-180':''">
|
|
76
76
|
{{> components/base/image/icon _icon="arrow-down" _iconmap="icons" _addClass="w-3 h-2 fill-current"}}
|
|
77
77
|
</div>
|