hr-design-system-handlebars 1.114.68 → 1.114.69
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 +13 -0
- package/dist/assets/index.css +13 -3
- package/dist/views/components/mediaplayer/mediaPlayer_stickyWrapper.hbs +3 -2
- package/dist/views_static/components/mediaplayer/mediaPlayer_stickyWrapper.hbs +3 -2
- package/package.json +1 -1
- package/src/stories/views/components/mediaplayer/mediaPlayer_stickyWrapper.hbs +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# v1.114.69 (Tue Jan 21 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Enhance media player sticky wrapper positioning based on subnavigation visibility [#1218](https://github.com/mumprod/hr-design-system-handlebars/pull/1218) ([@vascoeduardo](https://github.com/vascoeduardo) [@eduardo-hr](https://github.com/eduardo-hr))
|
|
6
|
+
|
|
7
|
+
#### Authors: 2
|
|
8
|
+
|
|
9
|
+
- [@eduardo-hr](https://github.com/eduardo-hr)
|
|
10
|
+
- Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
1
14
|
# v1.114.68 (Tue Jan 21 2025)
|
|
2
15
|
|
|
3
16
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -1209,6 +1209,9 @@ article #commentList {
|
|
|
1209
1209
|
.top-14 {
|
|
1210
1210
|
top: 3.5rem;
|
|
1211
1211
|
}
|
|
1212
|
+
.top-16 {
|
|
1213
|
+
top: 4rem;
|
|
1214
|
+
}
|
|
1212
1215
|
.top-20 {
|
|
1213
1216
|
top: 5rem;
|
|
1214
1217
|
}
|
|
@@ -1218,6 +1221,9 @@ article #commentList {
|
|
|
1218
1221
|
.top-4 {
|
|
1219
1222
|
top: 1rem;
|
|
1220
1223
|
}
|
|
1224
|
+
.top-40 {
|
|
1225
|
+
top: 10rem;
|
|
1226
|
+
}
|
|
1221
1227
|
.top-8 {
|
|
1222
1228
|
top: 2rem;
|
|
1223
1229
|
}
|
|
@@ -3771,7 +3777,7 @@ article #commentList {
|
|
|
3771
3777
|
border-bottom-color: var(--color-secondary-ds);
|
|
3772
3778
|
}
|
|
3773
3779
|
.counter-reset {
|
|
3774
|
-
counter-reset:
|
|
3780
|
+
counter-reset: cnt1737474959465;
|
|
3775
3781
|
}
|
|
3776
3782
|
.animate-duration-1000 {
|
|
3777
3783
|
--tw-animate-duration: 1000ms;
|
|
@@ -4201,7 +4207,7 @@ html { scroll-behavior: smooth; }
|
|
|
4201
4207
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
4202
4208
|
}
|
|
4203
4209
|
.-ordered {
|
|
4204
|
-
counter-increment:
|
|
4210
|
+
counter-increment: cnt1737474959465 1;
|
|
4205
4211
|
}
|
|
4206
4212
|
.-ordered::before {
|
|
4207
4213
|
position: absolute;
|
|
@@ -4219,7 +4225,7 @@ html { scroll-behavior: smooth; }
|
|
|
4219
4225
|
--tw-text-opacity: 1;
|
|
4220
4226
|
color: rgba(0, 0, 0, 1);
|
|
4221
4227
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
4222
|
-
content: counter(
|
|
4228
|
+
content: counter(cnt1737474959465);
|
|
4223
4229
|
}
|
|
4224
4230
|
/*! ****************************/
|
|
4225
4231
|
/*! DataPolicy stuff */
|
|
@@ -8047,6 +8053,10 @@ ul.restrictedToTwo li:nth-of-type(1n + 2) .timelineBorder {
|
|
|
8047
8053
|
top: 7.75rem;
|
|
8048
8054
|
}
|
|
8049
8055
|
|
|
8056
|
+
.lg\:top-40 {
|
|
8057
|
+
top: 10rem;
|
|
8058
|
+
}
|
|
8059
|
+
|
|
8050
8060
|
.lg\:z-50 {
|
|
8051
8061
|
z-index: 50;
|
|
8052
8062
|
}
|
|
@@ -4,7 +4,9 @@
|
|
|
4
4
|
class="transition-all lg:transition-none right-4"
|
|
5
5
|
:class="{ 'ar-16-9 w-1/2 max-w-70 sm:w-70 fixed z-300 animate-fade-right animate-once animate-duration-1000': shouldVideoBeFixed(),
|
|
6
6
|
'animate-fade animate-duration-1000 animate-ease-in-out': !shouldVideoBeFixed(),
|
|
7
|
-
'top-14 md:top-16
|
|
7
|
+
'top-14 md:top-16': $store.navIsVisible,
|
|
8
|
+
'lg:top-31': $store.navIsVisible && !$store.subNavIsVisible,
|
|
9
|
+
'lg:top-40': $store.navIsVisible && $store.subNavIsVisible,
|
|
8
10
|
'top-4 lg:top-20': !$store.navIsVisible}">
|
|
9
11
|
{{> @partial-block }}
|
|
10
12
|
<button @click="closeVideo()" class="absolute top-0 right-0 flex items-center justify-center w-12 h-12 z-300 hover:scale-105"
|
|
@@ -15,7 +17,6 @@
|
|
|
15
17
|
</div>
|
|
16
18
|
</button>
|
|
17
19
|
</div>
|
|
18
|
-
|
|
19
20
|
<script>
|
|
20
21
|
var stickyPlayer = () => {
|
|
21
22
|
return {
|
|
@@ -4,7 +4,9 @@
|
|
|
4
4
|
class="transition-all lg:transition-none right-4"
|
|
5
5
|
:class="{ 'ar-16-9 w-1/2 max-w-70 sm:w-70 fixed z-300 animate-fade-right animate-once animate-duration-1000': shouldVideoBeFixed(),
|
|
6
6
|
'animate-fade animate-duration-1000 animate-ease-in-out': !shouldVideoBeFixed(),
|
|
7
|
-
'top-14 md:top-16
|
|
7
|
+
'top-14 md:top-16': $store.navIsVisible,
|
|
8
|
+
'lg:top-31': $store.navIsVisible && !$store.subNavIsVisible,
|
|
9
|
+
'lg:top-40': $store.navIsVisible && $store.subNavIsVisible,
|
|
8
10
|
'top-4 lg:top-20': !$store.navIsVisible}">
|
|
9
11
|
{{> @partial-block }}
|
|
10
12
|
<button @click="closeVideo()" class="absolute top-0 right-0 flex items-center justify-center w-12 h-12 z-300 hover:scale-105"
|
|
@@ -15,7 +17,6 @@
|
|
|
15
17
|
</div>
|
|
16
18
|
</button>
|
|
17
19
|
</div>
|
|
18
|
-
|
|
19
20
|
<script>
|
|
20
21
|
var stickyPlayer = () => {
|
|
21
22
|
return {
|
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.69",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -4,7 +4,9 @@
|
|
|
4
4
|
class="transition-all lg:transition-none right-4"
|
|
5
5
|
:class="{ 'ar-16-9 w-1/2 max-w-70 sm:w-70 fixed z-300 animate-fade-right animate-once animate-duration-1000': shouldVideoBeFixed(),
|
|
6
6
|
'animate-fade animate-duration-1000 animate-ease-in-out': !shouldVideoBeFixed(),
|
|
7
|
-
'top-14 md:top-16
|
|
7
|
+
'top-14 md:top-16': $store.navIsVisible,
|
|
8
|
+
'lg:top-31': $store.navIsVisible && !$store.subNavIsVisible,
|
|
9
|
+
'lg:top-40': $store.navIsVisible && $store.subNavIsVisible,
|
|
8
10
|
'top-4 lg:top-20': !$store.navIsVisible}">
|
|
9
11
|
{{> @partial-block }}
|
|
10
12
|
<button @click="closeVideo()" class="absolute top-0 right-0 flex items-center justify-center w-12 h-12 z-300 hover:scale-105"
|
|
@@ -15,7 +17,6 @@
|
|
|
15
17
|
</div>
|
|
16
18
|
</button>
|
|
17
19
|
</div>
|
|
18
|
-
|
|
19
20
|
<script>
|
|
20
21
|
var stickyPlayer = () => {
|
|
21
22
|
return {
|