hr-design-system-handlebars 1.114.35 → 1.114.36
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.114.36 (Tue Dec 10 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- - added classes to the safelist [#1186](https://github.com/mumprod/hr-design-system-handlebars/pull/1186) ([@StefanVesper](https://github.com/StefanVesper))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.114.35 (Tue Dec 10 2024)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -2086,6 +2086,12 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
2086
2086
|
.scroll-mt-12 {
|
|
2087
2087
|
scroll-margin-top: 3rem;
|
|
2088
2088
|
}
|
|
2089
|
+
.scroll-mt-\[117px\] {
|
|
2090
|
+
scroll-margin-top: 117px;
|
|
2091
|
+
}
|
|
2092
|
+
.scroll-mt-\[128px\] {
|
|
2093
|
+
scroll-margin-top: 128px;
|
|
2094
|
+
}
|
|
2089
2095
|
.list-decimal {
|
|
2090
2096
|
list-style-type: decimal;
|
|
2091
2097
|
}
|
|
@@ -3689,7 +3695,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3689
3695
|
border-bottom-color: var(--color-secondary-ds);
|
|
3690
3696
|
}
|
|
3691
3697
|
.counter-reset {
|
|
3692
|
-
counter-reset:
|
|
3698
|
+
counter-reset: cnt1733846935826;
|
|
3693
3699
|
}
|
|
3694
3700
|
.placeholder-text-xs::-webkit-input-placeholder {
|
|
3695
3701
|
font-size: 0.75rem;
|
|
@@ -4103,7 +4109,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
4103
4109
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
4104
4110
|
}
|
|
4105
4111
|
.-ordered {
|
|
4106
|
-
counter-increment:
|
|
4112
|
+
counter-increment: cnt1733846935826 1;
|
|
4107
4113
|
}
|
|
4108
4114
|
.-ordered::before {
|
|
4109
4115
|
position: absolute;
|
|
@@ -4121,7 +4127,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
4121
4127
|
--tw-text-opacity: 1;
|
|
4122
4128
|
color: rgba(0, 0, 0, 1);
|
|
4123
4129
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
4124
|
-
content: counter(
|
|
4130
|
+
content: counter(cnt1733846935826);
|
|
4125
4131
|
}
|
|
4126
4132
|
/*! ****************************/
|
|
4127
4133
|
/*! DataPolicy stuff */
|
|
@@ -90,7 +90,7 @@ export default () => ({
|
|
|
90
90
|
|
|
91
91
|
// returns true if user scrolled >50% and scrolls down, no burger menu is open and the screen size is desktop. If scroll was initiated by script, ignore scroll direction.
|
|
92
92
|
shouldSectionNavBeHidden() {
|
|
93
|
-
if (window.userScroll
|
|
93
|
+
if (window.userScroll === true) {
|
|
94
94
|
return (
|
|
95
95
|
this.percent > 50 &&
|
|
96
96
|
this.scrollingDown &&
|
|
@@ -98,7 +98,7 @@ export default () => ({
|
|
|
98
98
|
this.$screen('lg')
|
|
99
99
|
)
|
|
100
100
|
} else {
|
|
101
|
-
return this.percent > 50 && this.$store.burgeropen == false && this.$screen('lg')
|
|
101
|
+
return this.percent > 50 && this.$store.burgeropen == false && this.$screen('lg') && this.scrollingDown
|
|
102
102
|
}
|
|
103
103
|
},
|
|
104
104
|
|
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.114.
|
|
9
|
+
"version": "1.114.36",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -90,7 +90,7 @@ export default () => ({
|
|
|
90
90
|
|
|
91
91
|
// returns true if user scrolled >50% and scrolls down, no burger menu is open and the screen size is desktop. If scroll was initiated by script, ignore scroll direction.
|
|
92
92
|
shouldSectionNavBeHidden() {
|
|
93
|
-
if (window.userScroll
|
|
93
|
+
if (window.userScroll === true) {
|
|
94
94
|
return (
|
|
95
95
|
this.percent > 50 &&
|
|
96
96
|
this.scrollingDown &&
|
|
@@ -98,7 +98,7 @@ export default () => ({
|
|
|
98
98
|
this.$screen('lg')
|
|
99
99
|
)
|
|
100
100
|
} else {
|
|
101
|
-
return this.percent > 50 && this.$store.burgeropen == false && this.$screen('lg')
|
|
101
|
+
return this.percent > 50 && this.$store.burgeropen == false && this.$screen('lg') && this.scrollingDown
|
|
102
102
|
}
|
|
103
103
|
},
|
|
104
104
|
|
package/tailwind.config.js
CHANGED
|
@@ -8,7 +8,7 @@ module.exports = {
|
|
|
8
8
|
experimental: {
|
|
9
9
|
optimizeUniversalDefaults: true,
|
|
10
10
|
},
|
|
11
|
-
safelist: ['mt-12', 'bg-gray-100', '-weather_warning'],
|
|
11
|
+
safelist: ['mt-12', 'bg-gray-100', '-weather_warning', 'scroll-smooth', 'scroll-mt-[128px]', 'scroll-mt-[117px]'],
|
|
12
12
|
content: [
|
|
13
13
|
'./src/stories/*.mdx',
|
|
14
14
|
'./src/stories/views/**/*.{mdx,hbs,js,json}',
|