hr-design-system-handlebars 0.123.6 → 0.123.7
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 +12 -0
- package/dist/assets/index.css +12 -6
- package/dist/views/components/content_nav/content_nav_dropdown.hbs +1 -1
- package/dist/views/components/content_nav/content_nav_item.hbs +1 -1
- package/package.json +1 -1
- package/src/stories/views/components/content_nav/content_nav_dropdown.hbs +1 -1
- package/src/stories/views/components/content_nav/content_nav_item.hbs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v0.123.7 (Wed Feb 08 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- oh mann ey [#527](https://github.com/mumprod/hr-design-system-handlebars/pull/527) ([@StefanVesper](https://github.com/StefanVesper))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v0.123.6 (Wed Feb 08 2023)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -2036,12 +2036,21 @@ video {
|
|
|
2036
2036
|
.pl-2 {
|
|
2037
2037
|
padding-left: 0.5rem;
|
|
2038
2038
|
}
|
|
2039
|
+
.pt-1 {
|
|
2040
|
+
padding-top: 0.25rem;
|
|
2041
|
+
}
|
|
2039
2042
|
.pt-2\.5 {
|
|
2040
2043
|
padding-top: 0.625rem;
|
|
2041
2044
|
}
|
|
2042
2045
|
.pt-2 {
|
|
2043
2046
|
padding-top: 0.5rem;
|
|
2044
2047
|
}
|
|
2048
|
+
.pb-0\.5 {
|
|
2049
|
+
padding-bottom: 0.125rem;
|
|
2050
|
+
}
|
|
2051
|
+
.pb-0 {
|
|
2052
|
+
padding-bottom: 0px;
|
|
2053
|
+
}
|
|
2045
2054
|
.pt-px {
|
|
2046
2055
|
padding-top: 1px;
|
|
2047
2056
|
}
|
|
@@ -2051,9 +2060,6 @@ video {
|
|
|
2051
2060
|
.pr-2 {
|
|
2052
2061
|
padding-right: 0.5rem;
|
|
2053
2062
|
}
|
|
2054
|
-
.pt-1 {
|
|
2055
|
-
padding-top: 0.25rem;
|
|
2056
|
-
}
|
|
2057
2063
|
.pb-1 {
|
|
2058
2064
|
padding-bottom: 0.25rem;
|
|
2059
2065
|
}
|
|
@@ -2512,7 +2518,7 @@ video {
|
|
|
2512
2518
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
2513
2519
|
}
|
|
2514
2520
|
.counter-reset {
|
|
2515
|
-
counter-reset:
|
|
2521
|
+
counter-reset: cnt1675874379969;
|
|
2516
2522
|
}
|
|
2517
2523
|
.line-clamp-4 {
|
|
2518
2524
|
overflow: hidden;
|
|
@@ -2730,7 +2736,7 @@ video {
|
|
|
2730
2736
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
2731
2737
|
}
|
|
2732
2738
|
.-ordered {
|
|
2733
|
-
counter-increment:
|
|
2739
|
+
counter-increment: cnt1675874379969 1;
|
|
2734
2740
|
}
|
|
2735
2741
|
.-ordered::before {
|
|
2736
2742
|
position: absolute;
|
|
@@ -2746,7 +2752,7 @@ video {
|
|
|
2746
2752
|
letter-spacing: .0125em;
|
|
2747
2753
|
--tw-text-opacity: 1;
|
|
2748
2754
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
2749
|
-
content: counter(
|
|
2755
|
+
content: counter(cnt1675874379969);
|
|
2750
2756
|
}
|
|
2751
2757
|
/*! ****************************/
|
|
2752
2758
|
/*! text-shadow */
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
@resize.window="if(window.innerWidth > 767){contentNavDropdownIsOpen = false}; $dispatch('hr:global:resetinputAutoSuggest')"
|
|
15
15
|
{{/if}}
|
|
16
16
|
>
|
|
17
|
-
<span class="self-center w-full
|
|
17
|
+
<span class="self-center w-full px-2 pt-1 text-base leading-4 text-left">{{_buttonText}}</span>
|
|
18
18
|
<div class="flex self-center w-auto h-full border-l border-content-nav">
|
|
19
19
|
<span :class="{'hidden' : contentNavDropdownIsOpen}"
|
|
20
20
|
class="flex self-center px-3 py-3"
|
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": "0.123.
|
|
9
|
+
"version": "0.123.7",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "start-storybook -p 6006 public",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
@resize.window="if(window.innerWidth > 767){contentNavDropdownIsOpen = false}; $dispatch('hr:global:resetinputAutoSuggest')"
|
|
15
15
|
{{/if}}
|
|
16
16
|
>
|
|
17
|
-
<span class="self-center w-full
|
|
17
|
+
<span class="self-center w-full px-2 pt-1 text-base leading-4 text-left">{{_buttonText}}</span>
|
|
18
18
|
<div class="flex self-center w-auto h-full border-l border-content-nav">
|
|
19
19
|
<span :class="{'hidden' : contentNavDropdownIsOpen}"
|
|
20
20
|
class="flex self-center px-3 py-3"
|