hr-design-system-handlebars 0.47.17 → 0.48.0
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/.storybook/main.js +0 -1
- package/CHANGELOG.md +38 -0
- package/build/helpers/resourceUrl.js +14 -1
- package/dist/assets/index.css +67 -168
- package/dist/views/base/tracking/atiHelperNew.js +37 -0
- package/dist/views/base/tracking/atiMediaHelperNew.js +193 -0
- package/dist/views/components/audio/audioElement.subfeature.js +118 -0
- package/dist/views/components/button/button.hbs +16 -0
- package/dist/views/components/button/button_round.hbs +16 -0
- package/dist/views/components/externalService/trackingCookie.subfeature.js +37 -0
- package/dist/views/components/mediaplayer/mediaplayerLoader.feature.js +81 -0
- package/dist/views/components/site_header/header.hbs +7 -7
- package/dist/views/components/site_header/navigation_flyout/navigation_flyout.hbs +4 -4
- package/dist/views/components/site_header/navigation_search/quick_search_form.hbs +2 -2
- package/dist/views/components/site_header/service_navigation/service_list.hbs +1 -1
- package/dist/views/components/site_header/service_navigation/service_navigation_item.hbs +1 -1
- package/dist/views/components/teaser/components/teaser_av_consumption.hbs +8 -0
- package/dist/views/components/teaser/components/teaser_image.hbs +3 -0
- package/dist/views/components/teaser/components/teaser_lead.hbs +5 -0
- package/dist/views/components/teaser/components/teaser_title_classes.hbs +6 -10
- package/dist/views/components/teaser/components/teaser_topline.hbs +5 -3
- package/dist/views/components/teaser/teaser_alternativ.hbs +1 -3
- package/dist/views/components/teaser/teaser_standard.hbs +2 -4
- package/dist/views/components/video/livestream/videoLivestream.subfeature.js +254 -0
- package/dist/views/components/video/videoOnDemandPlayer.subfeature.js +356 -0
- package/dist/views/components/video/video_element.hbs +77 -0
- package/package.json +9 -9
- package/src/assets/fixtures/teaser/teaser_alternative_100_serif.json +1 -1
- package/src/assets/fixtures/teaser/teaser_alternative_25_serif.json +1 -1
- package/src/assets/fixtures/teaser/teaser_alternative_33_serif.json +1 -1
- package/src/assets/fixtures/teaser/teaser_alternative_50_serif.json +1 -1
- package/src/assets/fixtures/teaser/teaser_alternative_hero_serif.json +1 -1
- package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_comments.json +1 -1
- package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_label.json +1 -1
- package/src/assets/fixtures/teaser/teaser_lead.inc.json +53 -0
- package/src/assets/fixtures/teaser/teaser_poster_lg.json +6 -7
- package/src/assets/fixtures/teaser/teaser_poster_md.json +6 -6
- package/src/assets/fixtures/teaser/teaser_poster_md_label.json +9 -9
- package/src/assets/fixtures/teaser/teaser_standard_50_serif_av_consumption.json +21 -0
- package/src/assets/fixtures/teaser/teasers.inc.json +4 -4
- package/src/assets/tailwind.css +7 -0
- package/src/assets/vendor/ardplayer/ardplayer-hr-6.3.4.055f7511.css +3 -0
- package/src/assets/vendor/ardplayer/ardplayer-hr-6.3.4.d39f03b6.js +6 -0
- package/src/assets/vendor/ardplayer/ardplayer-libimsc.9e067311.chunk.js +13 -0
- package/src/assets/vendor/ardplayer/ardplayer-pluginchromecast.8ad4db4d.chunk.js +1 -0
- package/src/assets/vendor/ardplayer/ardplayer-pluginhtmla.77bf082c.chunk.js +1 -0
- package/src/assets/vendor/ardplayer/ardplayer-pluginhtmlv.8be44713.chunk.js +1 -0
- package/src/assets/vendor/ardplayer/ardplayer-vendors~pluginchromecast~plugindash~pluginhls~pluginhtmla~pluginhtmlv.9fbaccf5.chunk.js +1 -0
- package/src/assets/vendor/ardplayer/ardplayer-vendors~plugindash.32239ff8.chunk.js +1066 -0
- package/src/assets/vendor/ardplayer/ardplayer-vendors~pluginhls.f21f56cc.chunk.js +365 -0
- package/src/assets/vendor/js/ardplayer-hr-6.3.4.d39f03b6.js +6 -0
- package/src/assets/vendor/js/smarttagProd.js +101 -0
- package/src/stories/views/base/tracking/atiHelperNew.js +37 -0
- package/src/stories/views/base/tracking/atiMediaHelperNew.js +193 -0
- package/src/stories/views/components/audio/audioElement.subfeature.js +118 -0
- package/src/stories/views/components/button/button.hbs +16 -0
- package/src/stories/views/components/button/button_round.hbs +16 -0
- package/src/stories/views/components/externalService/trackingCookie.subfeature.js +37 -0
- package/src/stories/views/components/mediaplayer/mediaplayerLoader.feature.js +81 -0
- package/src/stories/views/components/site_header/header.hbs +7 -7
- package/src/stories/views/components/site_header/navigation_flyout/navigation_flyout.hbs +4 -4
- package/src/stories/views/components/site_header/navigation_search/quick_search_form.hbs +2 -2
- package/src/stories/views/components/site_header/service_navigation/service_list.hbs +1 -1
- package/src/stories/views/components/site_header/service_navigation/service_navigation_item.hbs +1 -1
- package/src/stories/views/components/teaser/components/teaser_av_consumption.hbs +8 -0
- package/src/stories/views/components/teaser/components/teaser_heading.stories.mdx +3 -3
- package/src/stories/views/components/teaser/components/teaser_image.hbs +3 -0
- package/src/stories/views/components/teaser/components/teaser_lead.hbs +5 -0
- package/src/stories/views/components/teaser/components/teaser_title.stories.mdx +21 -12
- package/src/stories/views/components/teaser/components/teaser_title_classes.hbs +6 -10
- package/src/stories/views/components/teaser/components/teaser_topline.hbs +5 -3
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_25_serif.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_33_serif.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_comments.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_label.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_comments_without_teaserinfo.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_index.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_poster_lg.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_poster_md.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_poster_md_label.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif_av_consumption.json +1 -0
- package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_av_consumption.json +1 -0
- package/src/stories/views/components/teaser/fixtures/teaser_standard_hero_serif.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_hero_serif_comments.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_hero_serif_label.json +1 -1
- package/src/stories/views/components/teaser/teaser_alternativ.hbs +1 -3
- package/src/stories/views/components/teaser/teaser_standard.hbs +2 -4
- package/src/stories/views/components/teaser/teaser_standard_av.stories.mdx +50 -0
- package/src/stories/views/components/video/livestream/videoLivestream.subfeature.js +254 -0
- package/src/stories/views/components/video/videoOnDemandPlayer.subfeature.js +356 -0
- package/src/stories/views/components/video/video_element.hbs +77 -0
- package/tailwind.config.js +3 -0
package/.storybook/main.js
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,41 @@
|
|
|
1
|
+
# v0.48.0 (Wed Jun 29 2022)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Feature/dpe 1567 [#255](https://github.com/mumprod/hr-design-system-handlebars/pull/255) ([@szuelch](https://github.com/szuelch))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- [@szuelch](https://github.com/szuelch)
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v0.47.19 (Wed Jun 29 2022)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- changes z-indexes to 10000 and above [#254](https://github.com/mumprod/hr-design-system-handlebars/pull/254) ([@StefanVesper](https://github.com/StefanVesper))
|
|
18
|
+
- Feature/dpe 1651 [#253](https://github.com/mumprod/hr-design-system-handlebars/pull/253) ([@szuelch](https://github.com/szuelch))
|
|
19
|
+
|
|
20
|
+
#### Authors: 2
|
|
21
|
+
|
|
22
|
+
- [@szuelch](https://github.com/szuelch)
|
|
23
|
+
- SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
# v0.47.18 (Tue Jun 28 2022)
|
|
28
|
+
|
|
29
|
+
#### 🐛 Bug Fix
|
|
30
|
+
|
|
31
|
+
- DPE-1572 kick off [#246](https://github.com/mumprod/hr-design-system-handlebars/pull/246) ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
32
|
+
|
|
33
|
+
#### Authors: 1
|
|
34
|
+
|
|
35
|
+
- Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
1
39
|
# v0.47.17 (Mon Jun 27 2022)
|
|
2
40
|
|
|
3
41
|
#### 🐛 Bug Fix
|
|
@@ -1,6 +1,19 @@
|
|
|
1
1
|
module.exports = function (text, options) {
|
|
2
2
|
var resourceUrl
|
|
3
|
-
|
|
3
|
+
// ARD PLAYER Folder
|
|
4
|
+
if (text.includes('assets/vendor/ardplayer/')){
|
|
5
|
+
resourceUrl = text.replace(
|
|
6
|
+
'assets/',
|
|
7
|
+
'./'
|
|
8
|
+
)
|
|
9
|
+
}
|
|
10
|
+
// VENDOR Folder
|
|
11
|
+
if (text.includes('assets/js/vendor/')){
|
|
12
|
+
resourceUrl = text.replace(
|
|
13
|
+
'assets/js/vendor',
|
|
14
|
+
'./vendor/js'
|
|
15
|
+
)
|
|
16
|
+
}
|
|
4
17
|
if (text.includes('assets/base/')) {
|
|
5
18
|
if (text.includes('assets/base/icons/logo/') && options.hash['_brand']) {
|
|
6
19
|
resourceUrl = text.replace(
|
package/dist/assets/index.css
CHANGED
|
@@ -346,7 +346,7 @@
|
|
|
346
346
|
|
|
347
347
|
/*! purgecss end ignore */
|
|
348
348
|
|
|
349
|
-
/*! tailwindcss v3.
|
|
349
|
+
/*! tailwindcss v3.1.4 | MIT License | https://tailwindcss.com */
|
|
350
350
|
|
|
351
351
|
/*
|
|
352
352
|
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
@@ -513,6 +513,7 @@ select,
|
|
|
513
513
|
textarea {
|
|
514
514
|
font-family: inherit; /* 1 */
|
|
515
515
|
font-size: 100%; /* 1 */
|
|
516
|
+
font-weight: inherit; /* 1 */
|
|
516
517
|
line-height: inherit; /* 1 */
|
|
517
518
|
color: inherit; /* 1 */
|
|
518
519
|
margin: 0; /* 2 */
|
|
@@ -732,14 +733,6 @@ video {
|
|
|
732
733
|
height: auto;
|
|
733
734
|
}
|
|
734
735
|
|
|
735
|
-
/*
|
|
736
|
-
Ensure the default browser behavior of the `hidden` attribute.
|
|
737
|
-
*/
|
|
738
|
-
|
|
739
|
-
[hidden] {
|
|
740
|
-
display: none;
|
|
741
|
-
}
|
|
742
|
-
|
|
743
736
|
@font-face {
|
|
744
737
|
font-family: 'DIN';
|
|
745
738
|
font-display: auto;
|
|
@@ -874,56 +867,18 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
874
867
|
|
|
875
868
|
@media (min-width: 1024px) {
|
|
876
869
|
.-currentBrand::before {
|
|
877
|
-
content: var(--tw-content);
|
|
878
870
|
position: absolute;
|
|
879
|
-
}
|
|
880
|
-
.-currentBrand::before {
|
|
881
|
-
content: var(--tw-content);
|
|
882
871
|
margin-top: 1.5rem;
|
|
883
|
-
}
|
|
884
|
-
.-currentBrand::before {
|
|
885
|
-
content: var(--tw-content);
|
|
886
872
|
height: 0px;
|
|
887
|
-
}
|
|
888
|
-
.-currentBrand::before {
|
|
889
|
-
content: var(--tw-content);
|
|
890
873
|
width: 0px;
|
|
891
|
-
}
|
|
892
|
-
.-currentBrand::before {
|
|
893
|
-
content: var(--tw-content);
|
|
894
874
|
border-top-width: 0px;
|
|
895
|
-
}
|
|
896
|
-
.-currentBrand::before {
|
|
897
|
-
content: var(--tw-content);
|
|
898
875
|
border-right-width: 8px;
|
|
899
|
-
}
|
|
900
|
-
.-currentBrand::before {
|
|
901
|
-
content: var(--tw-content);
|
|
902
876
|
border-left-width: 8px;
|
|
903
|
-
}
|
|
904
|
-
.-currentBrand::before {
|
|
905
|
-
content: var(--tw-content);
|
|
906
877
|
border-bottom-width: 8px;
|
|
907
|
-
}
|
|
908
|
-
.-currentBrand::before {
|
|
909
|
-
content: var(--tw-content);
|
|
910
|
-
--tw-border-opacity: 1;
|
|
911
878
|
border-color: rgba(0, 82, 147, var(--tw-border-opacity));
|
|
912
|
-
}
|
|
913
|
-
.-currentBrand::before {
|
|
914
|
-
content: var(--tw-content);
|
|
915
|
-
border-right-color: transparent;
|
|
916
|
-
}
|
|
917
|
-
.-currentBrand::before {
|
|
918
|
-
content: var(--tw-content);
|
|
919
879
|
--tw-border-opacity: 1;
|
|
920
880
|
border-left-color: rgba(255, 255, 255, var(--tw-border-opacity));
|
|
921
|
-
}
|
|
922
|
-
.-currentBrand::before {
|
|
923
|
-
content: var(--tw-content);
|
|
924
881
|
border-right-color: transparent;
|
|
925
|
-
}
|
|
926
|
-
.-currentBrand::before {
|
|
927
882
|
content: var(--tw-content);
|
|
928
883
|
border-left-color: #fff;
|
|
929
884
|
}
|
|
@@ -950,69 +905,22 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
950
905
|
|
|
951
906
|
@media (min-width: 1024px) {
|
|
952
907
|
.-currentService::before {
|
|
953
|
-
content: var(--tw-content);
|
|
954
908
|
position: absolute;
|
|
955
|
-
}
|
|
956
|
-
.-currentService::before {
|
|
957
|
-
content: var(--tw-content);
|
|
958
909
|
margin-right: 0px;
|
|
959
|
-
}
|
|
960
|
-
.-currentService::before {
|
|
961
|
-
content: var(--tw-content);
|
|
962
910
|
margin-top: 3rem;
|
|
963
|
-
}
|
|
964
|
-
.-currentService::before {
|
|
965
|
-
content: var(--tw-content);
|
|
966
911
|
display: -webkit-box;
|
|
967
912
|
display: -ms-flexbox;
|
|
968
913
|
display: flex;
|
|
969
|
-
}
|
|
970
|
-
.-currentService::before {
|
|
971
|
-
content: var(--tw-content);
|
|
972
914
|
height: 0px;
|
|
973
|
-
}
|
|
974
|
-
.-currentService::before {
|
|
975
|
-
content: var(--tw-content);
|
|
976
915
|
width: 0px;
|
|
977
|
-
}
|
|
978
|
-
.-currentService::before {
|
|
979
|
-
content: var(--tw-content);
|
|
980
916
|
border-top-width: 0px;
|
|
981
|
-
}
|
|
982
|
-
.-currentService::before {
|
|
983
|
-
content: var(--tw-content);
|
|
984
917
|
border-right-width: 8px;
|
|
985
|
-
}
|
|
986
|
-
.-currentService::before {
|
|
987
|
-
content: var(--tw-content);
|
|
988
918
|
border-left-width: 8px;
|
|
989
|
-
}
|
|
990
|
-
.-currentService::before {
|
|
991
|
-
content: var(--tw-content);
|
|
992
919
|
border-bottom-width: 8px;
|
|
993
|
-
}
|
|
994
|
-
.-currentService::before {
|
|
995
|
-
content: var(--tw-content);
|
|
996
|
-
border-right-color: transparent;
|
|
997
|
-
}
|
|
998
|
-
.-currentService::before {
|
|
999
|
-
content: var(--tw-content);
|
|
1000
|
-
border-left-color: transparent;
|
|
1001
|
-
}
|
|
1002
|
-
.-currentService::before {
|
|
1003
|
-
content: var(--tw-content);
|
|
1004
920
|
--tw-border-opacity: 1;
|
|
1005
921
|
border-bottom-color: rgba(255, 255, 255, var(--tw-border-opacity));
|
|
1006
|
-
}
|
|
1007
|
-
.-currentService::before {
|
|
1008
|
-
content: var(--tw-content);
|
|
1009
922
|
border-right-color: transparent;
|
|
1010
|
-
}
|
|
1011
|
-
.-currentService::before {
|
|
1012
|
-
content: var(--tw-content);
|
|
1013
923
|
border-left-color: transparent;
|
|
1014
|
-
}
|
|
1015
|
-
.-currentService::before {
|
|
1016
924
|
content: var(--tw-content);
|
|
1017
925
|
border-bottom-color: #fff;
|
|
1018
926
|
}
|
|
@@ -1038,71 +946,21 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
1038
946
|
|
|
1039
947
|
@media (min-width: 1024px) {
|
|
1040
948
|
.-currentSection::before {
|
|
1041
|
-
content: var(--tw-content);
|
|
1042
949
|
position: absolute;
|
|
1043
|
-
}
|
|
1044
|
-
.-currentSection::before {
|
|
1045
|
-
content: var(--tw-content);
|
|
1046
950
|
margin-bottom: 0px;
|
|
1047
|
-
}
|
|
1048
|
-
.-currentSection::before {
|
|
1049
|
-
content: var(--tw-content);
|
|
1050
951
|
margin-right: 0px;
|
|
1051
|
-
}
|
|
1052
|
-
.-currentSection::before {
|
|
1053
|
-
content: var(--tw-content);
|
|
1054
952
|
margin-left: 0px;
|
|
1055
|
-
}
|
|
1056
|
-
.-currentSection::before {
|
|
1057
|
-
content: var(--tw-content);
|
|
1058
953
|
margin-top: 2rem;
|
|
1059
|
-
}
|
|
1060
|
-
.-currentSection::before {
|
|
1061
|
-
content: var(--tw-content);
|
|
1062
954
|
height: 0px;
|
|
1063
|
-
}
|
|
1064
|
-
.-currentSection::before {
|
|
1065
|
-
content: var(--tw-content);
|
|
1066
955
|
width: 0px;
|
|
1067
|
-
}
|
|
1068
|
-
.-currentSection::before {
|
|
1069
|
-
content: var(--tw-content);
|
|
1070
956
|
border-top-width: 0px;
|
|
1071
|
-
}
|
|
1072
|
-
.-currentSection::before {
|
|
1073
|
-
content: var(--tw-content);
|
|
1074
957
|
border-right-width: 8px;
|
|
1075
|
-
}
|
|
1076
|
-
.-currentSection::before {
|
|
1077
|
-
content: var(--tw-content);
|
|
1078
958
|
border-left-width: 8px;
|
|
1079
|
-
}
|
|
1080
|
-
.-currentSection::before {
|
|
1081
|
-
content: var(--tw-content);
|
|
1082
959
|
border-bottom-width: 8px;
|
|
1083
|
-
}
|
|
1084
|
-
.-currentSection::before {
|
|
1085
|
-
content: var(--tw-content);
|
|
1086
|
-
border-right-color: transparent;
|
|
1087
|
-
}
|
|
1088
|
-
.-currentSection::before {
|
|
1089
|
-
content: var(--tw-content);
|
|
1090
|
-
border-left-color: transparent;
|
|
1091
|
-
}
|
|
1092
|
-
.-currentSection::before {
|
|
1093
|
-
content: var(--tw-content);
|
|
1094
960
|
--tw-border-opacity: 1;
|
|
1095
961
|
border-bottom-color: rgba(255, 255, 255, var(--tw-border-opacity));
|
|
1096
|
-
}
|
|
1097
|
-
.-currentSection::before {
|
|
1098
|
-
content: var(--tw-content);
|
|
1099
962
|
border-right-color: transparent;
|
|
1100
|
-
}
|
|
1101
|
-
.-currentSection::before {
|
|
1102
|
-
content: var(--tw-content);
|
|
1103
963
|
border-left-color: transparent;
|
|
1104
|
-
}
|
|
1105
|
-
.-currentSection::before {
|
|
1106
964
|
content: var(--tw-content);
|
|
1107
965
|
border-bottom-color: #fff;
|
|
1108
966
|
}
|
|
@@ -1111,10 +969,15 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
1111
969
|
.-warnung {
|
|
1112
970
|
--tw-text-opacity: 1 !important;
|
|
1113
971
|
color: rgba(220, 38, 38, var(--tw-text-opacity)) !important;
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
.-warnung {
|
|
1114
975
|
fill: #000000;
|
|
1115
976
|
}
|
|
1116
977
|
|
|
1117
|
-
.-video-podcast,
|
|
978
|
+
.-video-podcast,
|
|
979
|
+
.-weather,
|
|
980
|
+
.-traffic {
|
|
1118
981
|
fill: #ffffff;
|
|
1119
982
|
}
|
|
1120
983
|
|
|
@@ -1493,20 +1356,23 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
1493
1356
|
.left-0 {
|
|
1494
1357
|
left: 0px;
|
|
1495
1358
|
}
|
|
1359
|
+
.bottom-0 {
|
|
1360
|
+
bottom: 0px;
|
|
1361
|
+
}
|
|
1496
1362
|
.right-0 {
|
|
1497
1363
|
right: 0px;
|
|
1498
1364
|
}
|
|
1499
1365
|
.top-10 {
|
|
1500
1366
|
top: 2.5rem;
|
|
1501
1367
|
}
|
|
1502
|
-
.z-
|
|
1503
|
-
z-index:
|
|
1368
|
+
.z-10000 {
|
|
1369
|
+
z-index: 10000;
|
|
1504
1370
|
}
|
|
1505
|
-
.z-
|
|
1506
|
-
z-index:
|
|
1371
|
+
.z-10002 {
|
|
1372
|
+
z-index: 10002;
|
|
1507
1373
|
}
|
|
1508
|
-
.z-
|
|
1509
|
-
z-index:
|
|
1374
|
+
.z-10001 {
|
|
1375
|
+
z-index: 10001;
|
|
1510
1376
|
}
|
|
1511
1377
|
.-z-1000 {
|
|
1512
1378
|
z-index: -1000;
|
|
@@ -1552,6 +1418,10 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
1552
1418
|
margin-left: 2rem;
|
|
1553
1419
|
margin-right: 2rem;
|
|
1554
1420
|
}
|
|
1421
|
+
.my-4 {
|
|
1422
|
+
margin-top: 1rem;
|
|
1423
|
+
margin-bottom: 1rem;
|
|
1424
|
+
}
|
|
1555
1425
|
.mx-px {
|
|
1556
1426
|
margin-left: 1px;
|
|
1557
1427
|
margin-right: 1px;
|
|
@@ -1665,6 +1535,9 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
1665
1535
|
.h-5 {
|
|
1666
1536
|
height: 1.25rem;
|
|
1667
1537
|
}
|
|
1538
|
+
.h-6 {
|
|
1539
|
+
height: 1.5rem;
|
|
1540
|
+
}
|
|
1668
1541
|
.h-3\.5 {
|
|
1669
1542
|
height: 0.875rem;
|
|
1670
1543
|
}
|
|
@@ -1680,9 +1553,6 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
1680
1553
|
.h-8 {
|
|
1681
1554
|
height: 2rem;
|
|
1682
1555
|
}
|
|
1683
|
-
.h-6 {
|
|
1684
|
-
height: 1.5rem;
|
|
1685
|
-
}
|
|
1686
1556
|
.h-2 {
|
|
1687
1557
|
height: 0.5rem;
|
|
1688
1558
|
}
|
|
@@ -1816,6 +1686,9 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
1816
1686
|
.cursor-pointer {
|
|
1817
1687
|
cursor: pointer;
|
|
1818
1688
|
}
|
|
1689
|
+
.resize {
|
|
1690
|
+
resize: both;
|
|
1691
|
+
}
|
|
1819
1692
|
.list-none {
|
|
1820
1693
|
list-style-type: none;
|
|
1821
1694
|
}
|
|
@@ -1947,6 +1820,9 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
1947
1820
|
.rounded {
|
|
1948
1821
|
border-radius: 0.25rem;
|
|
1949
1822
|
}
|
|
1823
|
+
.rounded-full {
|
|
1824
|
+
border-radius: 9999px;
|
|
1825
|
+
}
|
|
1950
1826
|
.rounded-t-xl {
|
|
1951
1827
|
border-top-left-radius: 0.75rem;
|
|
1952
1828
|
border-top-right-radius: 0.75rem;
|
|
@@ -1976,6 +1852,9 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
1976
1852
|
.border {
|
|
1977
1853
|
border-width: 1px;
|
|
1978
1854
|
}
|
|
1855
|
+
.border-4 {
|
|
1856
|
+
border-width: 4px;
|
|
1857
|
+
}
|
|
1979
1858
|
.border-0 {
|
|
1980
1859
|
border-width: 0px;
|
|
1981
1860
|
}
|
|
@@ -2018,6 +1897,10 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
2018
1897
|
--tw-bg-opacity: 1;
|
|
2019
1898
|
background-color: rgba(187, 247, 208, var(--tw-bg-opacity));
|
|
2020
1899
|
}
|
|
1900
|
+
.bg-blue-500 {
|
|
1901
|
+
--tw-bg-opacity: 1;
|
|
1902
|
+
background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
|
|
1903
|
+
}
|
|
2021
1904
|
.bg-gray-100 {
|
|
2022
1905
|
--tw-bg-opacity: 1;
|
|
2023
1906
|
background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
|
|
@@ -2103,11 +1986,13 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
2103
1986
|
}
|
|
2104
1987
|
.from-purple-50 {
|
|
2105
1988
|
--tw-gradient-from: #faf5ff;
|
|
2106
|
-
--tw-gradient-
|
|
1989
|
+
--tw-gradient-to: rgba(250, 245, 255, 0);
|
|
1990
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2107
1991
|
}
|
|
2108
1992
|
.from-black {
|
|
2109
1993
|
--tw-gradient-from: #000000;
|
|
2110
|
-
--tw-gradient-
|
|
1994
|
+
--tw-gradient-to: rgba(0, 0, 0, 0);
|
|
1995
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2111
1996
|
}
|
|
2112
1997
|
.to-purple-100 {
|
|
2113
1998
|
--tw-gradient-to: #f3e8ff;
|
|
@@ -2127,9 +2012,20 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
2127
2012
|
.\!p-4 {
|
|
2128
2013
|
padding: 1rem !important;
|
|
2129
2014
|
}
|
|
2015
|
+
.p-1 {
|
|
2016
|
+
padding: 0.25rem;
|
|
2017
|
+
}
|
|
2130
2018
|
.p-2 {
|
|
2131
2019
|
padding: 0.5rem;
|
|
2132
2020
|
}
|
|
2021
|
+
.py-2 {
|
|
2022
|
+
padding-top: 0.5rem;
|
|
2023
|
+
padding-bottom: 0.5rem;
|
|
2024
|
+
}
|
|
2025
|
+
.px-4 {
|
|
2026
|
+
padding-left: 1rem;
|
|
2027
|
+
padding-right: 1rem;
|
|
2028
|
+
}
|
|
2133
2029
|
.py-6 {
|
|
2134
2030
|
padding-top: 1.5rem;
|
|
2135
2031
|
padding-bottom: 1.5rem;
|
|
@@ -2174,10 +2070,6 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
2174
2070
|
padding-left: 0.75rem;
|
|
2175
2071
|
padding-right: 0.75rem;
|
|
2176
2072
|
}
|
|
2177
|
-
.py-2 {
|
|
2178
|
-
padding-top: 0.5rem;
|
|
2179
|
-
padding-bottom: 0.5rem;
|
|
2180
|
-
}
|
|
2181
2073
|
.py-1\.5 {
|
|
2182
2074
|
padding-top: 0.375rem;
|
|
2183
2075
|
padding-bottom: 0.375rem;
|
|
@@ -2190,10 +2082,6 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
2190
2082
|
padding-left: 0px;
|
|
2191
2083
|
padding-right: 0px;
|
|
2192
2084
|
}
|
|
2193
|
-
.px-4 {
|
|
2194
|
-
padding-left: 1rem;
|
|
2195
|
-
padding-right: 1rem;
|
|
2196
|
-
}
|
|
2197
2085
|
.pt-px {
|
|
2198
2086
|
padding-top: 1px;
|
|
2199
2087
|
}
|
|
@@ -2551,6 +2439,13 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
2551
2439
|
transition: transform 150ms ease-in-out 0s;
|
|
2552
2440
|
transition: transform 150ms ease-in-out 0s, -webkit-transform 150ms ease-in-out 0s;
|
|
2553
2441
|
}
|
|
2442
|
+
.c-videoplayer .ardplayer {
|
|
2443
|
+
position: absolute;
|
|
2444
|
+
top: 0;
|
|
2445
|
+
left: 0;
|
|
2446
|
+
right: 0;
|
|
2447
|
+
bottom: 0;
|
|
2448
|
+
}
|
|
2554
2449
|
.first\:border-t:first-child {
|
|
2555
2450
|
border-top-width: 1px;
|
|
2556
2451
|
}
|
|
@@ -2572,6 +2467,10 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
2572
2467
|
.last-of-type\:hidden:last-of-type {
|
|
2573
2468
|
display: none;
|
|
2574
2469
|
}
|
|
2470
|
+
.hover\:bg-blue-700:hover {
|
|
2471
|
+
--tw-bg-opacity: 1;
|
|
2472
|
+
background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
|
|
2473
|
+
}
|
|
2575
2474
|
.hover\:bg-blue-congress:hover {
|
|
2576
2475
|
--tw-bg-opacity: 1;
|
|
2577
2476
|
background-color: rgba(0, 82, 147, var(--tw-bg-opacity));
|
|
@@ -2638,7 +2537,7 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
2638
2537
|
content: '';
|
|
2639
2538
|
}
|
|
2640
2539
|
|
|
2641
|
-
|
|
2540
|
+
{
|
|
2642
2541
|
display: block;
|
|
2643
2542
|
content: '';
|
|
2644
2543
|
clear: both;
|
|
@@ -2665,8 +2564,8 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
2665
2564
|
left: 0px;
|
|
2666
2565
|
}
|
|
2667
2566
|
|
|
2668
|
-
.md\:z-
|
|
2669
|
-
z-index:
|
|
2567
|
+
.md\:z-10000 {
|
|
2568
|
+
z-index: 10000;
|
|
2670
2569
|
}
|
|
2671
2570
|
|
|
2672
2571
|
.md\:order-2 {
|
|
@@ -3238,4 +3137,4 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
3238
3137
|
.tablet\:first\:border-l:first-child {
|
|
3239
3138
|
border-left-width: 1px;
|
|
3240
3139
|
}
|
|
3241
|
-
}
|
|
3140
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
|
|
2
|
+
import TrackingCookie from '../../components/externalService/trackingCookie.subfeature'
|
|
3
|
+
|
|
4
|
+
const isTrackingAllowed = () => {
|
|
5
|
+
const trackingCookie = new TrackingCookie()
|
|
6
|
+
return trackingCookie.isTrackingAccepted('ati')
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const uxAction = (label, secondLevelId) => {
|
|
10
|
+
secondLevelId = secondLevelId || window.xtn2
|
|
11
|
+
if (window.xt_click && isTrackingAllowed()) {
|
|
12
|
+
window.xt_click('this', 'C', secondLevelId, label, 'A')
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
const uxNavigation = (label, secondLevelId) => {
|
|
17
|
+
secondLevelId = secondLevelId || window.xtn2
|
|
18
|
+
if (window.xt_click && isTrackingAllowed()) {
|
|
19
|
+
window.xt_click('this', 'C', secondLevelId, label, 'N')
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
const pi = (label, secondLevelId) => {
|
|
24
|
+
secondLevelId = secondLevelId || window.xtn2
|
|
25
|
+
if (window.xt_click && isTrackingAllowed()) {
|
|
26
|
+
window.xt_click('this', 'F', secondLevelId, label)
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
const download = (label, secondLevelId) => {
|
|
31
|
+
secondLevelId = secondLevelId || window.xtn2
|
|
32
|
+
if (window.xt_click && isTrackingAllowed()) {
|
|
33
|
+
window.xt_click('this', 'C', secondLevelId, label, 'T')
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export { isTrackingAllowed, uxAction, uxNavigation, pi, download }
|