hr-design-system-handlebars 1.11.11 → 1.12.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.
Files changed (126) hide show
  1. package/.storybook/main.js +9 -0
  2. package/.storybook/manager.js +18 -18
  3. package/.storybook/preview.js +9 -1
  4. package/CHANGELOG.md +24 -0
  5. package/README.md +13 -2
  6. package/build/handlebars/handlebars.js +1 -1
  7. package/build/scripts/build.js +1 -1
  8. package/config.js +1 -0
  9. package/dist/assets/index.css +223 -190
  10. package/dist/views/components/base/image/icon.hbs +1 -1
  11. package/dist/views/components/base/link.hbs +11 -1
  12. package/dist/views/components/base/link_open.hbs +12 -13
  13. package/dist/views/components/base/link_v2.hbs +14 -0
  14. package/dist/views/components/button/button.hbs +9 -24
  15. package/dist/views/components/button/components/button_icon.hbs +2 -1
  16. package/dist/views/components/button/components/button_label.hbs +1 -1
  17. package/dist/views/components/button/link_button.hbs +6 -0
  18. package/dist/views/components/button/utilities/button_base_classes.hbs +1 -0
  19. package/dist/views/components/button/utilities/button_dimension_classes.hbs +1 -0
  20. package/dist/views/components/button/utilities/button_on_image_classes.hbs +39 -0
  21. package/dist/views/components/button/utilities/button_variation_classes.hbs +14 -0
  22. package/dist/views/components/content_nav/content_nav_container.hbs +1 -1
  23. package/dist/views/components/content_nav/content_nav_item.hbs +1 -1
  24. package/dist/views/components/event/calendar/event_calendar_footer.hbs +1 -1
  25. package/dist/views/components/event/event_ticket_button.hbs +11 -9
  26. package/dist/views/components/grid/grid_group_highlight.hbs +1 -1
  27. package/dist/views/components/label/label_old.hbs +1 -1
  28. package/dist/views/components/mediaplayer/media_player.hbs +4 -22
  29. package/dist/views/components/mediaplayer/mediaplayer_button.hbs +9 -0
  30. package/dist/views/components/modal/modal.hbs +2 -2
  31. package/dist/views/components/page/page_pagination.hbs +1 -1
  32. package/dist/views/components/pagination/pagination.hbs +15 -14
  33. package/dist/views/components/pagination/pagination_current_page_invalid.hbs +1 -1
  34. package/dist/views/components/pagination/pagination_current_page_valid.hbs +2 -1
  35. package/dist/views/components/pagination/pagination_more_than_three_pages.hbs +3 -3
  36. package/dist/views/components/pagination/pagination_only_three_pages.hbs +7 -7
  37. package/dist/views/components/pagination/pagination_only_two_pages.hbs +2 -2
  38. package/dist/views/components/site_header/brand_navigation/brand_navigation.hbs +1 -1
  39. package/dist/views/components/teaser/cluster/teaser_cluster.hbs +4 -1
  40. package/dist/views/components/teaser/cluster/teaser_cluster_byline.hbs +1 -1
  41. package/dist/views/components/teaser/cluster/teaser_cluster_item.hbs +1 -1
  42. package/dist/views/components/teaser/components/teaser_av_consumption_close_button.hbs +6 -20
  43. package/dist/views/components/teaser/components/teaser_byline.hbs +1 -1
  44. package/dist/views/components/teaser/components/teaser_image.hbs +6 -14
  45. package/dist/views/components/teaser/podcast/podcast_subscribe_button.hbs +18 -15
  46. package/dist/views/components/teaser/podcast/podcast_title.hbs +2 -2
  47. package/dist/views/components/teaser/tabbox/group_tabbox.hbs +4 -1
  48. package/dist/views/components/teaser/tabbox/teaser_tabbox.hbs +10 -11
  49. package/dist/views/components/teaser/teaser_poster.hbs +5 -1
  50. package/gulpfile.js +9 -0
  51. package/package.json +4 -2
  52. package/src/assets/css/custom-components.css +37 -38
  53. package/src/assets/css/custom-utilities.css +2 -2
  54. package/src/assets/fixtures/event/calendar/event_calendar_months.inc.json +5 -1
  55. package/src/assets/fixtures/page/page_pagination.json +15 -14
  56. package/src/assets/tailwind.css +54 -22
  57. package/src/stories/conventions-and-datastructure.mdx +217 -4
  58. package/src/stories/views/components/base/image/icon.hbs +1 -1
  59. package/src/stories/views/components/base/link.hbs +11 -1
  60. package/src/stories/views/components/base/link_open.hbs +12 -13
  61. package/src/stories/views/components/base/link_v2.hbs +14 -0
  62. package/src/stories/views/components/button/button.hbs +9 -24
  63. package/src/stories/views/components/button/button.mdx +186 -0
  64. package/src/stories/views/components/button/button.stories.js +508 -0
  65. package/src/stories/views/components/button/components/button_icon.hbs +2 -1
  66. package/src/stories/views/components/button/components/button_icon.mdx +25 -0
  67. package/src/stories/views/components/button/components/button_icon.stories.js +44 -0
  68. package/src/stories/views/components/button/components/button_label.hbs +1 -1
  69. package/src/stories/views/components/button/components/button_label.mdx +25 -0
  70. package/src/stories/views/components/button/components/button_label.stories.js +33 -0
  71. package/src/stories/views/components/button/link_button.hbs +6 -0
  72. package/src/stories/views/components/button/link_button.mdx +137 -0
  73. package/src/stories/views/components/button/link_button.stories.js +420 -0
  74. package/src/stories/views/components/button/utilities/button_base_classes.hbs +1 -0
  75. package/src/stories/views/components/button/utilities/button_dimension_classes.hbs +1 -0
  76. package/src/stories/views/components/button/utilities/button_on_image_classes.hbs +39 -0
  77. package/src/stories/views/components/button/utilities/button_variation_classes.hbs +14 -0
  78. package/src/stories/views/components/content_nav/content_nav_container.hbs +1 -1
  79. package/src/stories/views/components/content_nav/content_nav_item.hbs +1 -1
  80. package/src/stories/views/components/event/calendar/event_calendar_footer.hbs +1 -1
  81. package/src/stories/views/components/event/event_ticket_button.hbs +11 -9
  82. package/src/stories/views/components/grid/grid_group_highlight.hbs +1 -1
  83. package/src/stories/views/components/label/label_old.hbs +1 -1
  84. package/src/stories/views/components/mediaplayer/media_player.hbs +4 -22
  85. package/src/stories/views/components/mediaplayer/mediaplayer_button.hbs +9 -0
  86. package/src/stories/views/components/mediaplayer/mediaplayer_button.mdx +82 -0
  87. package/src/stories/views/components/mediaplayer/mediaplayer_button.stories.js +178 -0
  88. package/src/stories/views/components/modal/modal.hbs +2 -2
  89. package/src/stories/views/components/page/fixtures/page_pagination.json +1 -1
  90. package/src/stories/views/components/page/page_pagination.hbs +1 -1
  91. package/src/stories/views/components/pagination/pagination.hbs +15 -14
  92. package/src/stories/views/components/pagination/pagination_current_page_invalid.hbs +1 -1
  93. package/src/stories/views/components/pagination/pagination_current_page_valid.hbs +2 -1
  94. package/src/stories/views/components/pagination/pagination_more_than_three_pages.hbs +3 -3
  95. package/src/stories/views/components/pagination/pagination_only_three_pages.hbs +7 -7
  96. package/src/stories/views/components/pagination/pagination_only_two_pages.hbs +2 -2
  97. package/src/stories/views/components/site_header/brand_navigation/brand_navigation.hbs +1 -1
  98. package/src/stories/views/components/teaser/cluster/teaser_cluster.hbs +4 -1
  99. package/src/stories/views/components/teaser/cluster/teaser_cluster_byline.hbs +1 -1
  100. package/src/stories/views/components/teaser/cluster/teaser_cluster_item.hbs +1 -1
  101. package/src/stories/views/components/teaser/components/teaser_av_consumption_close_button.hbs +6 -20
  102. package/src/stories/views/components/teaser/components/teaser_byline.hbs +1 -1
  103. package/src/stories/views/components/teaser/components/teaser_image.hbs +6 -14
  104. package/src/stories/views/components/teaser/fixtures/teaser_event_calendar_100_serif.json +1 -1
  105. package/src/stories/views/components/teaser/podcast/podcast_subscribe_button.hbs +18 -15
  106. package/src/stories/views/components/teaser/podcast/podcast_title.hbs +2 -2
  107. package/src/stories/views/components/teaser/tabbox/group_tabbox.hbs +4 -1
  108. package/src/stories/views/components/teaser/tabbox/teaser_tabbox.hbs +10 -11
  109. package/src/stories/views/components/teaser/teaser_poster.hbs +5 -1
  110. package/tailwind.config.js +8 -1
  111. package/dist/views/components/button/button_pseudo.hbs +0 -8
  112. package/dist/views/components/button/button_pseudo.inc.hbs +0 -18
  113. package/dist/views/components/button/button_pseudo_v2.hbs +0 -12
  114. package/dist/views/components/button/button_round.hbs +0 -23
  115. package/dist/views/components/button/button_round_classes.hbs +0 -46
  116. package/dist/views/components/button/button_transparent.hbs +0 -17
  117. package/dist/views/components/button/button_v2.hbs +0 -7
  118. package/dist/views/components/button/components/button_pseudo_link.hbs +0 -3
  119. package/src/stories/views/components/button/button_pseudo.hbs +0 -8
  120. package/src/stories/views/components/button/button_pseudo.inc.hbs +0 -18
  121. package/src/stories/views/components/button/button_pseudo_v2.hbs +0 -12
  122. package/src/stories/views/components/button/button_round.hbs +0 -23
  123. package/src/stories/views/components/button/button_round_classes.hbs +0 -46
  124. package/src/stories/views/components/button/button_transparent.hbs +0 -17
  125. package/src/stories/views/components/button/button_v2.hbs +0 -7
  126. package/src/stories/views/components/button/components/button_pseudo_link.hbs +0 -3
@@ -40,7 +40,7 @@ Erklärung / Hinweise / Best Practices für "Accessible SVG":
40
40
 
41
41
  --}}
42
42
  {{#if _icon}}
43
- <svg class="sb-icon {{~#if _addClass }} {{_addClass}}{{/if}} {{#if _webview}} -webview{{/if}}" role="presentation" aria-hidden="{{defaultIfEmpty _ariaHidden true}}"
43
+ <svg class="sb-icon {{~#if _addClass }} {{_addClass}}{{/if}} {{#if _webview}} -webview{{/if}} {{#>css}}{{/css}}" role="presentation" aria-hidden="{{defaultIfEmpty _ariaHidden true}}"
44
44
  {{# if brand}} data-brand="{{brand}}"{{/if}}
45
45
  {{~#if _iconTitle }} {{changeRandom~}}
46
46
  aria-labelledby="iconTitle--{{getRandom}}"
@@ -1,3 +1,13 @@
1
- {{> components/base/link_open _clickLabelPrefix1=_clickLabelPrefix1 _clickLabelPrefix2=_clickLabelPrefix2 _clickLabelType=_clickLabelType _css=_css _doNavigationTracking=_doNavigationTracking _isAriaHidden=_isAriaHidden _isSelected=_isSelected _selectedCssClass=_selectedCssClass}}
1
+ <a {{#with this.link.webviewUrl}}data-webviewurl="{{this}}"{{/with}} href="{{this.link.url}}{{#if this.hasComments}}#commentList{{/if}}"
2
+ class="sb-link ds-link js-load{{#if _css}} {{_css}}{{/if}} {{#if _isSelected}} {{defaultIfEmpty _selectedCssClass "-current"}}{{/if}}"
3
+ {{#if _doNavigationTracking}}
4
+ data-hr-click-tracking='{"settings": [{"type":"uxAction","secondLevelId": "1","clickLabel":"{{_clickLabelType}}{{#if _clickLabelPrefix1}}::{{_clickLabelPrefix1}}{{/if}}::{{_clickLabelPrefix2}}-Link geklickt"}]}'
5
+ {{/if}}
6
+ {{#if this.isFileDownload}}
7
+ {{#with this.trackingData}}data-hr-click-tracking='{"settings": [{"type":"download","secondLevelId": "{{this.link.secondLevelId}}","clickLabel": "{{this.link.pageName}}"}]}'{{/with}}
8
+ {{/if}}
9
+ {{#if this.link.isTargetBlank}} target="_blank" rel="noopener{{#if this.link.hasNoReferrerFlag}} noreferrer{{/if}}"{{/if}}
10
+ {{#if _isAriaHidden}} aria-hidden="true" tabindex="-1"{{/if}}
11
+ >
2
12
  {{~ decorator_body ~}}
3
13
  </a>
@@ -1,13 +1,12 @@
1
- {{#with this.link}}
2
- <a {{#with this.webviewUrl}}data-webviewurl="{{this}}"{{/with}} href="{{this.url}}{{#if ../this.hasComments}}#commentList{{/if}}"
3
- class="sb-link js-load{{#if ../_css}} {{../_css}}{{/if}} {{#if ../_isSelected}} {{defaultIfEmpty ../_selectedCssClass "-current"}}{{/if}}"
4
- {{#if ../_doNavigationTracking}}
5
- data-hr-click-tracking='{"settings": [{"type":"uxAction","secondLevelId": "1","clickLabel":"{{../_clickLabelType}}{{#if ../_clickLabelPrefix1}}::{{../_clickLabelPrefix1}}{{/if}}::{{../_clickLabelPrefix2}}-Link geklickt"}]}'
6
- {{/if}}
7
- {{#if ../this.isFileDownload}}
8
- {{#with ../this.trackingData}}data-hr-click-tracking='{"settings": [{"type":"download","secondLevelId": "{{this.secondLevelId}}","clickLabel": "{{this.pageName}}"}]}'{{/with}}
9
- {{/if}}
10
- {{#if this.isTargetBlank}} target="_blank" rel="noopener{{#if this.hasNoReferrerFlag}} noreferrer{{/if}}"{{/if}}
11
- {{#if ../_isAriaHidden}} aria-hidden="true" tabindex="-1"{{/if}}
12
- >
13
- {{/with}}
1
+ <a {{#with this.link.webviewUrl}}data-webviewurl="{{this}}"{{/with}} href="{{this.link.url}}{{#if this.hasComments}}#commentList{{/if}}"
2
+ class="sb-link ds-link js-load {{#if _isSelected}} {{defaultIfEmpty _selectedCssClass "-current"}}{{/if}}{{#if _css}} {{_css}}{{/if}} {{#> css}}{{/css}}"
3
+ {{#if _doNavigationTracking}}
4
+ data-hr-click-tracking='{"settings": [{"type":"uxAction","secondLevelId": "1","clickLabel":"{{_clickLabelType}}{{#if _clickLabelPrefix1}}::{{_clickLabelPrefix1}}{{/if}}::{{_clickLabelPrefix2}}-Link geklickt"}]}'
5
+ {{/if}}
6
+ {{#if this.isFileDownload}}
7
+ {{#with this.trackingData}}data-hr-click-tracking='{"settings": [{"type":"download","secondLevelId": "{{this.link.secondLevelId}}","clickLabel": "{{this.link.pageName}}"}]}'{{/with}}
8
+ {{/if}}
9
+ {{#if this.link.isTargetBlank}} target="_blank" rel="noopener{{#if this.link.hasNoReferrerFlag}} noreferrer{{/if}}"{{/if}}
10
+ {{#if _isAriaHidden}} aria-hidden="true" tabindex="-1"{{/if}}
11
+ >
12
+
@@ -0,0 +1,14 @@
1
+ <a {{#with this.link.webviewUrl}}data-webviewurl="{{this}}"{{/with}} href="{{this.link.url}}{{#if this.hasComments}}#commentList{{/if}}"
2
+ class="sb-link ds-link js-load {{#if _isSelected}} {{defaultIfEmpty _selectedCssClass "-current"}}{{/if}}{{#if _css}} {{_css}}{{/if}} {{#> css}}{{/css}}"
3
+ {{#if _doNavigationTracking}}
4
+ data-hr-click-tracking='{"settings": [{"type":"uxAction","secondLevelId": "1","clickLabel":"{{_clickLabelType}}{{#if _clickLabelPrefix1}}::{{_clickLabelPrefix1}}{{/if}}::{{_clickLabelPrefix2}}-Link geklickt"}]}'
5
+ {{/if}}
6
+ {{#if this.isFileDownload}}
7
+ {{#with this.trackingData}}data-hr-click-tracking='{"settings": [{"type":"download","secondLevelId": "{{this.link.secondLevelId}}","clickLabel": "{{this.link.pageName}}"}]}'{{/with}}
8
+ {{/if}}
9
+ {{#if this.link.isTargetBlank}} target="_blank" rel="noopener{{#if this.link.hasNoReferrerFlag}} noreferrer{{/if}}"{{/if}}
10
+ {{#if _isAriaHidden}} aria-hidden="true" tabindex="-1"{{/if}}
11
+ >
12
+
13
+ {{> @partial-block }}
14
+ </a>
@@ -1,30 +1,15 @@
1
- <button
2
- {{~#if _aria}} aria-label="{{_aria}}"{{/if}}
3
- {{~#if _isButton}} type="button"{{else}} type="submit"{{/if~}}
1
+ <button
2
+ {{#if _id}} id="{{_id}}"{{/if}}
3
+ class="ds-button {{> components/button/utilities/button_base_classes}} {{> components/button/utilities/button_variation_classes _variant=_variant _onBackground=_onBackground _disableButtonPress=_disableButtonPress}} {{> components/button/utilities/button_dimension_classes _size=_size}}{{#if _css}} {{_css}}{{/if}} {{#> css}}{{/css}}{{#if _openModal}} js-modalButton{{/if}}"
4
+ {{#if _openModal}} aria-haspopup="true"{{/if}}
5
+ {{~#if _ariaLabel}} aria-label="{{_ariaLabel}}"{{/if}}
6
+ type="{{defaultIfEmpty _type "submit"}}"
4
7
  {{~#if _name}} name="{{_name}}"{{/if}}
5
- {{~#if _title}} title="{{_title}}"{{/if}}
6
- class="{{_addClass}}{{#if _addClass2}} {{_addClass2}}{{/if}}{{#if _buttonColor}} {{_buttonColor}}{{/if}}{{#if _buttonSpace}} {{> components/button/button_round_classes _teaserSize=_teaserSize _teaserType=_teaserType _isMobile1to1=_isMobile1to1}}{{/if}}{{#if _webview}} -webview{{/if}}"
8
+ {{~#if _title}} title="{{_title}}"{{/if}}
7
9
  {{~#if _value}} value="{{_value}}"{{/if}}
8
10
  {{~#if _alpineClick}} @click="{{_alpineClick}}"{{/if}}
9
11
  {{~#if _x-show}} x-show="{{_x-show}}"{{/if}}
10
12
  {{~#if _noFocus}} tabindex="-1"{{/if}}
11
- >
12
- {{~#if _showIcon~}}
13
- {{> components/base/image/icon
14
- _icon=_icon
15
- _iconmap=_iconmap
16
- _addClass=_addIconClass
17
- _webview=_webview
18
- _ariaHidden=false
19
- _iconTitle=false
20
- _iconDesc=false
21
- _iconText=false
22
- _overlayIcon=false
23
- }}
24
- {{/if~}}
25
- {{~#if _label~}}
26
- <span {{#if _srOnly}}class="sr-only"{{/if}}>
27
- {{~_label~}}
28
- </span>
29
- {{/if~}}
13
+ {{#> html_properties}}{{/html_properties}}>
14
+ {{> @partial-block }}
30
15
  </button>
@@ -1 +1,2 @@
1
- {{> components/base/image/icon _addClass=(appendToDefault _css "w-4 h-4 fill-inherit") _icon=_icon _iconmap=_iconmap}}
1
+ {{> components/base/image/icon _addClass=(appendToDefault _css "ds-button-icon w-4 h-4 fill-current") _icon=_icon _iconmap=_iconmap}}
2
+ {{#*inline "css"}}{{/inline}}
@@ -1 +1 @@
1
- <span class="{{#if _css}} {{_css}}{{/if}}">{{_label}}</span>
1
+ <span class='ds-button-label {{defaultIfEmpty _css "hallo"}}'>{{_label}}</span>
@@ -0,0 +1,6 @@
1
+ {{#> components/base/link_v2 _css=_css _isAriaHidden=_isAriaHidden}}
2
+ {{> @partial-block }}
3
+ {{/components/base/link_v2}}
4
+ {{#*inline "css"~}}
5
+ {{> components/button/utilities/button_base_classes}} {{> components/button/utilities/button_variation_classes _variant=../../_variant _onBackground=../../_onBackground}} {{> components/button/utilities/button_dimension_classes _size=../../_size~}}
6
+ {{~/inline}}
@@ -0,0 +1 @@
1
+ inline-flex items-center font-heading
@@ -0,0 +1 @@
1
+ {{~inline-switch _size '["sm","md","lg"]' '[" px-2 py-0.5"," p-2"," px-4 py-2.5",""]'~}}
@@ -0,0 +1,39 @@
1
+ absolute bottom-0 right-0
2
+ {{~#switch _teaserType~}}
3
+ {{~#case 'standard'~}}
4
+ {{~#if _isMobile1to1~}}
5
+ {{~inline-switch _teaserSize '["25","33"]' '[" m-2"," m-2 md:m-3"," m-2 md:m-4"]'~}}
6
+ {{~else~}}
7
+ {{~inline-switch _teaserSize '["25","33"]' '[" m-2"," m-4 md:m-3"," m-4"]'~}}
8
+ {{~/if~}}
9
+ {{~/case~}}
10
+ {{~#case 'alternative'~}}
11
+ {{~#if _isMobile1to1~}}
12
+ {{~inline-switch
13
+ _teaserSize
14
+ '["hero","100","50"]'
15
+ '[" m-2 md:m-4"," m-2 md:m-3"," m-2"]'
16
+ ~}}
17
+ {{~else~}}
18
+ {{~inline-switch _teaserSize '["hero","100","50"]' '[" m-4"," m-2 md:m-3"," m-2"]'~}}
19
+ {{~/if~}}
20
+ {{~/case~}}
21
+ {{~#case 'tabbox-standard'~}}
22
+ {{~#if _isMobile1to1~}}
23
+ {{~inline-switch _teaserSize '["25","33"]' '[" m-2"," m-2 md:m-3"," m-2 md:m-4 "]'~}}
24
+ {{~else~}}
25
+ {{~inline-switch _teaserSize '["25","33"]' '[" m-2"," m-4 md:m-3"," m-4"]'~}}
26
+ {{~/if~}}
27
+ {{~/case~}}
28
+ {{~#case 'tabbox-alternative'~}}
29
+ {{~#if _isMobile1to1~}}
30
+ {{~inline-switch
31
+ _teaserSize
32
+ '["hero","100","50"]'
33
+ '[" m-2 md:m-4"," m-2 md:m-3"," m-2"]'
34
+ ~}}
35
+ {{~else~}}
36
+ {{~inline-switch _teaserSize '["hero","100","50"]' '[" m-4"," m-2 md:m-3"," m-2"]'~}}
37
+ {{~/if~}}
38
+ {{~/case~}}
39
+ {{~/switch~}}
@@ -0,0 +1,14 @@
1
+ {{#if _onBackground~}}
2
+ {{inline-switch
3
+ _variant
4
+ '["primary","secondary","tertiary"]'
5
+ '[" border text-button-primary bg-button-primary--inverted border-button-primary--inverted hover:bg-button-primary--inverted-dark active:bg-button-primary--inverted-dark"," border text-button-primary--inverted border-button-primary--inverted hover:bg-button-primary--inverted-dark hover:text-button-primary active:text-button-primary active:bg-button-primary--inverted-dark"," bg-transparent border-transparent text-button-inverted hover:bg-button-primary--inverted-dark hover:text-button-primary hover:border-button-primary--inverted-dark active:text-button-primary active:bg-button-primary--inverted-dark"," border text-button-primary bg-button-primary--inverted border-button-primary--inverted hover:bg-button-primary--inverted-dark active:bg-button-primary--inverted-dark"]'
6
+ ~}}
7
+ {{else}}
8
+ {{~inline-switch
9
+ _variant
10
+ '["primary","secondary","tertiary"]'
11
+ '[" border text-button-primary--inverted bg-button-primary border-button-primary hover:bg-button-primary--dark hover:border-button-primary--dark active:bg-button-primary--dark"," border text-button-secondary border-button-primary hover:bg-button-primary--inverted active:bg-button-primary--inverted"," border bg-transparent border-transparent text-button-primary hover:bg-button-primary--inverted hover:border-button-primary active:bg-button-primary--inverted"," border text-button-primary--inverted bg-button-primary border-button-primary hover:bg-button-primary--dark hover:border-button-primary--dark active:bg-button-primary--dark"]'
12
+ ~}}
13
+ {{/if}}
14
+ {{~#unless _disableButtonPress}} active:scale-95{{/unless}}
@@ -6,7 +6,7 @@
6
6
  {{#if this.isAutosuggest}}
7
7
  <div class="flex mx-0 w-full h-10 border-blue-congress align-center{{#if _autoSuggestContainerCss}} {{_autoSuggestContainerCss}}{{/if}}">
8
8
  <input x-ref="autosuggestInput"
9
- class="{{#if _inputclass }}{{_inputclass}}{{/if}} w-full h-10 pl-2 border-b-8 border-white bg-grey-alabaster text-grey-dark placeholder:text-grey-dark focus:outline-none js-autosuggest-input"
9
+ class="{{#if _inputclass }}{{_inputclass}}{{/if}} w-full h-10 pl-2 border-b-8 border-white bg-gray-alabaster text-gray-dark placeholder:text-gray-dark focus:outline-none js-autosuggest-input"
10
10
  type="text"
11
11
  placeholder="Eintrag filtern"/>
12
12
  </div>
@@ -10,7 +10,7 @@
10
10
  _doNavigationTracking="true"
11
11
  _clickLabelType="Contentnavigation"
12
12
  _clickLabelPrefix1=this.title
13
- _css="flex ds-link-inset items-center pt-2.5 px-2 whitespace-nowrap overflow-hidden"
13
+ _css="flex items-center pt-2.5 px-2 whitespace-nowrap overflow-hidden"
14
14
  _isSelected=this.isSelected
15
15
  _selectedCssClass="is-selected"
16
16
  }}
@@ -1,7 +1,7 @@
1
1
  <footer class='bg-event-calendar-primary text-center'>
2
2
  {{#decorator
3
3
  'components/base/link'
4
- _css='block p-2 text-white text-sm font-serif hover:underline underline-offset-3 ds-link'
4
+ _css='block p-2 text-white text-sm font-serif hover:underline underline-offset-3'
5
5
  }}
6
6
  {{loca 'event_calendar_monthly_overview_link'}}
7
7
  {{/decorator}}
@@ -1,8 +1,8 @@
1
1
  <div class="static pl-4 pt-1 pb-3 sm:absolute sm:pl-0 sm:pt-0 sm:pb-0 sm:right-4 sm:bottom-4">
2
- {{#> components/button/button_v2 _id=(nextRandom) _type="inverted"}}
2
+ {{#> components/button/button _id=(nextRandom) _size="lg"}}
3
3
  {{> components/button/components/button_icon _icon="ticket" _iconmap="icons" _css="mr-2"}}
4
4
  {{>components/button/components/button_label _label="Tickets"}}
5
- {{/components/button/button_v2}}
5
+ {{/components/button/button}}
6
6
  {{#> components/modal/modal _trigger=(getRandom)}}
7
7
  {{#> components/teaser/components/teaser_headline}}
8
8
  {{> components/teaser/components/teaser_title _text=(loca 'ticket_modal_headline') _css="text-2xl"}}
@@ -10,8 +10,12 @@
10
10
  <p class="text-base font-copy mt-2">{{loca "ticket_modal_text"}}</p>
11
11
 
12
12
  <div class="flex flex-wrap mt-4">
13
- {{> components/button/button_pseudo _linkCss="js-ticket-ok-button mr-4 mt-4 ds-button js-modal-close" _buttonText="Zum Ticketshop" _withLink="true"}}
14
- <button class="mt-4 ds-button" value="cancel">Abbrechen</button>
13
+ {{#> components/button/link_button _size="lg" _css="js-ticket-ok-button js-modal-close mr-4 mt-4"}}
14
+ {{>components/button/components/button_label _label="Zum Ticketshop" _css=""}}
15
+ {{/components/button/link_button}}
16
+ {{#> components/button/button _size="lg" _variant="tertiary" _value="cancel" _css="mt-4"}}
17
+ {{>components/button/components/button_label _label="Abbrechen" _css=""}}
18
+ {{/components/button/button}}
15
19
  </div>
16
20
  {{/components/modal/modal}}
17
21
  <noscript>
@@ -20,11 +24,9 @@
20
24
  display:none;
21
25
  }
22
26
  </style>
23
- {{#> components/button/components/button_pseudo_link}}
24
- {{#> components/button/button_pseudo_v2 _type="inverted"}}
25
- {{> components/button/components/button_icon _icon="ticket" _iconmap="icons" _css="mr-2"}}
27
+ {{#> components/button/link_button _size="lg"}}
28
+ {{> components/button/components/button_icon _icon="ticket" _iconmap="icons"}}
26
29
  {{>components/button/components/button_label _label="Tickets"}}
27
- {{/components/button/button_pseudo_v2}}
28
- {{/components/button/components/button_pseudo_link}}
30
+ {{/components/button/link_button}}
29
31
  </noscript>
30
32
  </div>
@@ -1,5 +1,5 @@
1
1
  </div>
2
- <div class="grid col-full grid-page my-6{{inline-switch _backgroundColor '["1","2"]' '[" bg-grey-concrete"," bg-orange-bridesmaid"]'}}">
2
+ <div class="grid col-full grid-page my-6{{inline-switch _backgroundColor '["1","2"]' '[" bg-gray-concrete"," bg-orange-bridesmaid"]'}}">
3
3
  <section class="grid grid-cols-12 py-6 sm:px-9.5 col-full sm:col-main gap-x-6 gap-y-9">
4
4
  <div class="grid content-start grid-cols-12 col-span-12 gap-x-6 gap-y-6">
5
5
  {{> @partial-block }}
@@ -10,7 +10,7 @@
10
10
 
11
11
  </span>
12
12
  {{~#with this.byline~}}
13
- <span class='ml-2 text-xs font-headingSerif {{#if ../_bylineCss}}{{../_bylineCss}}{{else}}text-grey-scorpion{{/if}}'>
13
+ <span class='ml-2 text-xs font-headingSerif {{#if ../_bylineCss}}{{../_bylineCss}}{{else}}text-gray-scorpion{{/if}}'>
14
14
  {{~#if this.bylineSsi~}}
15
15
  {{> components/base/loadSSI _context=this.context _templatePath=this.bylineSsi}}
16
16
  {{~else~}}
@@ -10,27 +10,9 @@
10
10
  {{#with _teaser}}
11
11
  {{~> components/base/image/responsive_image this.teaserImage _type=(if this.teaserType this.teaserType 'story') _variant=(if this.content.imageVariant this.content.imageVariant '100-copytext') _addClassImg="ar__content" _noDelay=this.dontLazyload ~}}
12
12
  {{/with}}
13
- {{> components/button/button_round
14
- _isButton="true"
15
- _addClass='absolute bottom-0 right-0 fill-white hover:text-white ds-focus rounded-full js-mediaplayer__button cy-mediaplayer-trigger'
16
- _buttonColor=(if _isLivestream ' text-orange-spicyCarrot hover:fill-orange-spicyCarrot' ' text-media-button hover:fill-media-button')
17
- _teaserType=_teaserType
18
- _teaserSize=_teaserSize
19
- _isMobile1to1=_isMobile1to1
20
- _showIcon=true
21
- _icon=_mediaButtonIcon
22
- _label=_mediaButtonLabel
23
- _srOnly="true"
24
- _alpineClick="avStart = !avStart; $dispatch('player_start')"
25
- _aria=""
26
- _title=""
27
- _name=""
28
- _value=""
29
- _iconmap="icons"
30
- _addIconClass=""
31
- _webview=""
32
- _x-show=""
33
- _noFocus=""
34
- }}
13
+
14
+ {{#with this}}
15
+ {{> components/mediaplayer/mediaplayer_button _isLivestream=_isLivestream _icon=_mediaButtonIcon _label=_mediaButtonLabel _teaserSize=_teaserSize _teaserType=_teaserType _isMobile1to1=_isMobile1to1}}
16
+ {{/with}}
35
17
  </div>
36
18
  {{/if}}
@@ -0,0 +1,9 @@
1
+ {{#with this}}
2
+ {{#> components/button/button _variant="tertiary" _type="button" _css=_css _alpineClick="avStart = !avStart; $dispatch('player_start')"}}
3
+ {{#> components/base/image/icon _addClass=(appendToDefault (if ../../_isLivestream "text-orange-spicyCarrot group-hover:fill-orange-spicyCarrot" "text-media-button group-hover:fill-media-button") "w-10 h-10 fill-white group-hover:text-white inline") _icon=../../_icon}}
4
+ {{#*inline "css"}}{{/inline}}
5
+ {{/components/base/image/icon}}
6
+ {{>components/button/components/button_label _css="sr-only" _label=../../_label}}
7
+ {{/components/button/button}}
8
+ {{#*inline "css"}}js-mediaplayer__button cy-mediaplayer-trigger group rounded-full {{> components/button/utilities/button_on_image_classes _teaserSize=../../_teaserSize _teaserType=../../_teaserType _isMobile1to1=../../_isMobile1to1}}{{/inline}}
9
+ {{/with}}
@@ -1,5 +1,5 @@
1
- <div class="js-load" data-hr-modal='{"modalTriggerId":"{{defaultIfEmpty _trigger ""}}", "trackingInformations": "\" {{this.link.cmsDocument.title}} \" Ticketlink-Overlay ok geklickt - Dokumenten-Id: {{this.link.cmsDocument.sophoraId}}","dialogPolyfillBaseUrl":"{{resourceUrl (configProperty 'dialogPolyfill.baseUrl')}}"}'>
2
- <dialog class='js-modal p-0 backdrop:bg-grey-scorpion/90 shadow-md {{defaultIfEmpty _css "sm:max-w-xl"}}'>
1
+ <div class="js-load" data-hr-modal='{"modalTriggerId":"{{defaultIfEmpty _trigger ""}}", "trackingInformations": "\\" {{this.link.cmsDocument.title}} \\" Ticketlink-Overlay ok geklickt - Dokumenten-Id: {{this.link.cmsDocument.sophoraId}}","dialogPolyfillBaseUrl":"{{resourceUrl (configProperty 'dialogPolyfill.baseUrl')}}"}'>
2
+ <dialog class='js-modal p-0 backdrop:bg-gray-scorpion/90 shadow-md {{defaultIfEmpty _css "sm:max-w-xl"}}'>
3
3
  <form method="dialog" class="js-dialog-content p-4">
4
4
  {{> @partial-block }}
5
5
  </form>
@@ -54,7 +54,7 @@
54
54
  </main>
55
55
 
56
56
  <div class="flex flex-wrap justify-center w-full max-w-full">
57
- {{> components/pagination/pagination }}
57
+ {{> components/pagination/pagination this }}
58
58
  </div>
59
59
  </div>
60
60
  </body>
@@ -1,18 +1,19 @@
1
- {{~#if this.isCurrentPageValid ~}}
1
+ {{~#if currentPageValid ~}}
2
2
  {{> components/pagination/pagination_current_page_valid
3
- _moreThanOnePage=this.isMoreThanOnePage
4
- _firstPage=this.isFirstPage
5
- _secondPage=this.isSecondPage
6
- _notLastPage=this.isNotLastPage
7
- _onlyTwoPages=this.isOnlyTwoPages
8
- _onlyThreePages=this.isOnlyThreePages
9
- _totalPages=this.totalPages
10
- _currentPage=this.currentPage}}
3
+ _moreThanOnePage=moreThanOnePage
4
+ _firstPage=firstPage
5
+ _secondPage=secondPage
6
+ _notLastPage=notLastPage
7
+ _notLastButOnePage=notLastButOnePage
8
+ _onlyTwoPages=onlyTwoPages
9
+ _onlyThreePages=onlyThreePages
10
+ _totalPages=totalPages
11
+ _currentPage=currentPage}}
11
12
  {{else}}
12
13
  {{> components/pagination/pagination_current_page_invalid
13
- _moreThanOnePage=this.isMoreThanOnePage
14
- _onlyTwoPages=this.isOnlyTwoPages
15
- _onlyThreePages=this.isOnlyThreePages
16
- _totalPages=this.totalPages
17
- _currentPage=this.currentPages}}
14
+ _moreThanOnePage=moreThanOnePage
15
+ _onlyTwoPages=onlyTwoPages
16
+ _onlyThreePages=onlyThreePages
17
+ _totalPages=totalPages
18
+ _currentPage=currentPages}}
18
19
  {{~/if~}}
@@ -1,4 +1,4 @@
1
- <nav class="flex content-center py-10" role="navigation" aria-label="Paginierung">
1
+ <nav class="flex content-center justify-center py-10" role="navigation" aria-label="Paginierung">
2
2
  {{> components/pagination/pagination_button_left }}
3
3
  <div class="px-20 py-10">
4
4
  <a href="{{firstPageItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>1</a>
@@ -1,5 +1,5 @@
1
1
  {{~#if _moreThanOnePage~}}
2
- <nav class="flex content-center py-10" role="navigation" aria-label="Paginierung">
2
+ <nav class="flex content-center justify-center py-10" role="navigation" aria-label="Paginierung">
3
3
  {{~#if _onlyTwoPages~}}
4
4
  {{> components/pagination/pagination_only_two_pages
5
5
  _firstPage=_firstPage
@@ -17,6 +17,7 @@
17
17
  _firstPage=_firstPage
18
18
  _secondPage=_secondPage
19
19
  _notLastPage=_notLastPage
20
+ _notLastButOnePage=_notLastButOnePage
20
21
  _totalPages=_totalPages
21
22
  _currentPage=_currentPage}}
22
23
  {{~/if~}}
@@ -11,7 +11,7 @@
11
11
  {{> components/pagination/pagination_button_left_linked }}
12
12
  <div class="px-20 py-10">
13
13
  <a href="{{this.firstPageItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>1</a>
14
- <span class="font-title">2</span>
14
+ <span class="pl-5 font-title">2</span>
15
15
  <span class="px-5 py-10 font-title">&hellip;</span>
16
16
  <a href="{{this.lastPageItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>{{_totalPages}}</a>
17
17
  </div>
@@ -23,8 +23,8 @@
23
23
  <span class="py-10 pl-5 font-title">&hellip;</span>
24
24
  <span class="px-5 py-10 font-bold font-title">{{_currentPage}}</span>
25
25
  {{~#if _notLastPage~}}
26
- {{~#if notLastButOnePage~}}
27
- <span class="font-title">&hellip;</span>
26
+ {{~#if _notLastButOnePage~}}
27
+ <span class="py-10 pr-5 font-title">&hellip;</span>
28
28
  {{~/if~}}
29
29
  <a href="{{this.lastPageItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>{{_totalPages}}</a>
30
30
  {{~/if~}}
@@ -1,26 +1,26 @@
1
1
  {{~#if _firstPage~}}
2
2
  {{> components/pagination/pagination_button_left }}
3
3
  <div class="px-20 py-10">
4
- <span class="font-title">1</span>
5
- <a href="{{nextItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>2</a>
6
- <a href="{{lastPageItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>3</a>
4
+ <span class="py-10 pr-5 font-title">1</span>
5
+ <a href="{{nextItemUrl}}" class="py-10 pr-5 font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>2</a>
6
+ <a href="{{lastPageItemUrl}}" class="py-10 font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>3</a>
7
7
  </div>
8
8
  {{> components/pagination/pagination_button_right_linked }}
9
9
  {{else}}
10
10
  {{~#if _secondPage~}}
11
11
  {{> components/pagination/pagination_button_left_linked }}
12
12
  <div class="px-20 py-10">
13
- <a href="{{firstPageItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>1</a>
14
- <span class="font-title">2</span>
13
+ <a href="{{firstPageItemUrl}}" class="py-10 pr-5 font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>1</a>
14
+ <span class="py-10 pr-5 font-title">2</span>
15
15
  <a href="{{lastPageItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>3</a>
16
16
  </div>
17
17
  {{> components/pagination/pagination_button_right_linked }}
18
18
  {{else}}
19
19
  {{> components/pagination/pagination_button_left_linked }}
20
20
  <div class="px-20 py-10">
21
- <a href="{{firstPageItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>1</a>
21
+ <a href="{{firstPageItemUrl}}" class="py-10 pr-5 font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>1</a>
22
22
  <a href="{{lastButOnePageItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>2</a>
23
- <span class="font-bold font-title">3</span>
23
+ <span class="py-10 pl-5 font-bold font-title">3</span>
24
24
  </div>
25
25
  {{> components/pagination/pagination_button_right }}
26
26
  {{~/if~}}
@@ -1,7 +1,7 @@
1
1
  {{~#if _firstPage~}}
2
2
  {{> components/pagination/pagination_button_left }}
3
3
  <div class="px-20 py-10">
4
- <span class="font-title">1</span>
4
+ <span class="py-10 pr-5 font-title">1</span>
5
5
  <a href="{{lastPageItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>2</a>
6
6
  </div>
7
7
  {{> components/pagination/pagination_button_right_linked }}
@@ -9,7 +9,7 @@
9
9
  {{> components/pagination/pagination_button_left_linked }}
10
10
  <div class="px-20 py-10">
11
11
  <a href="{{firstPageItemUrl}}" class="font-bold sb-link js-load hover:underline text-toplineColor font-title"><span class="hidden">Zur Seite </span>1</a>
12
- <span class="font-title">2</span>
12
+ <span class="py-10 pl-5 font-title">2</span>
13
13
  </div>
14
14
  {{> components/pagination/pagination_button_right }}
15
15
  {{~/if~}}
@@ -3,7 +3,7 @@
3
3
  @resize.window="checkIfScrollable($refs.container)"
4
4
  class="sb-brand-navigation lg:container w-full md:px-5 lg:px-10 px-3.5 h-10 lg:h-8">
5
5
 
6
- <div class="flex justify-center text-xs list-none text-grey-scorpion ">
6
+ <div class="flex justify-center text-xs list-none text-gray-scorpion ">
7
7
 
8
8
  <template x-if="isScrollable">
9
9
  <div>
@@ -16,7 +16,10 @@
16
16
  {{~#with this.overviewLink}}
17
17
  {{~#if this.link~}}
18
18
  <div class="flex mx-5 pb-9 pt-6 min-w-0 {{~inline-switch ../this.realTeaserSize '["100"]' '[" justify-center md:justify-end"," justify-center"]'}}">
19
- {{~> components/button/button_pseudo _type="hollow" _addClass="h-4 w-4 ml-2 fill-current" _showIcon="true" _icon="arrow-right" _withLink=true _buttonText=this.title _buttonCss="truncate" _linkCss="flex min-w-0"~}}
19
+ {{~#> components/button/link_button _variant="secondary" _size="lg" _css="overflow-hidden"}}
20
+ {{>components/button/components/button_label _label=this.title _css="flex-1 truncate"}}
21
+ {{> components/button/components/button_icon _icon="arrow-right" _iconmap="icons" _css=""}}
22
+ {{/components/button/link_button}}
20
23
  </div>
21
24
  {{~/if~}}
22
25
  {{/with~}}
@@ -2,7 +2,7 @@
2
2
  {{#with this.teaserInfo}}
3
3
  {{!--Teaser-Info--}}
4
4
  {{#if this.showTeaserInfo~}}
5
- <p class="mt-1 text-xs text-grey-scorpion font-headingSerif {{#if ../_ordered}} pl-8 {{/if}}">
5
+ <p class="mt-1 text-xs text-gray-scorpion font-headingSerif {{#if ../_ordered}} pl-8 {{/if}}">
6
6
  {{~#if this.showTeaserInfoSection}}
7
7
  <span>
8
8
  {{../this.documentSection~}}
@@ -1,4 +1,4 @@
1
- {{#decorator 'components/base/link' _css=(appendToDefault (if _firstItem "ds-teaser-focus" "ds-link-clusterTeaser") "group") }}
1
+ {{#decorator 'components/base/link' _css=(appendToDefault (if _firstItem "ds-teaser-focus") "block group") }}
2
2
  {{#with this.label}}
3
3
  {{#> components/label/label_group _css=(if ../_ordered "pl-8")}}
4
4
  {{> components/label/label _type=this.type _text=(loca this.loca) _css=""}}
@@ -1,20 +1,6 @@
1
- {{> components/button/button_transparent
2
- _showIcon="true"
3
- _title="Mediaplayer schließen"
4
- _icon="arrow-up"
5
- _iconmap="icons"
6
- _addIconClass="w-3 h-3 fill-current"
7
- _addClass="md:hidden absolute top-full right-0 z-20"
8
- _x-show="avStart"
9
- _alpineClick=(loca "close_button_alpine_click" _playerId)
10
-
11
- _isButton="true"
12
- _buttonColor=""
13
- _label=""
14
- _srOnly=true
15
- _aria=""
16
- _name=""
17
- _value=""
18
- _webview=""
19
- _noFocus=""
20
- }}
1
+ {{#with this}}
2
+ {{#> components/button/button _css="absolute top-full right-0 py-3.5 px-3.5 text-blue-700 font-semibold z-20 md:hidden hover:bg-slate-300" _title="Mediaplayer schließen" _variant="tertiary" _x-show="avStart" _alpineClick=(loca "close_button_alpine_click" _playerId)}}
3
+ {{> components/base/image/icon _icon="arrow-up" _addClass="w-3 h-3 fill-current"}}
4
+ {{/components/button/button}}
5
+ {{#*inline "css"}}{{/inline}}
6
+ {{/with}}
@@ -1,5 +1,5 @@
1
1
  {{#if this.hasByline}}
2
- <p class="mt-2 text-xs text-grey-scorpion font-headingSerif empty:hidden overflow-anywhere hyphens-auto">
2
+ <p class="mt-2 text-xs text-gray-scorpion font-headingSerif empty:hidden overflow-anywhere hyphens-auto">
3
3
  {{!--Teaser-Info--}}
4
4
  {{~#with this.teaserInfo~}}
5
5
  {{~#if this.showTeaserInfo~}}
@@ -6,20 +6,12 @@
6
6
  {{~> components/base/image/responsive_image this.teaserImage _type=this.teaserType _variant=this.imageVariant _noDelay=this.dontLazyload _addClassImg="" ~}}
7
7
  {{#if this.isProgram}}
8
8
  {{#if this.showMediatheksLink}}
9
- {{#decorator 'components/base/link' _isAriaHidden=true}}
10
- {{> components/button/button_round
11
- _isButton="true"
12
- _addClass='absolute bottom-0 right-0 fill-white hover:text-white js-mediaplayer__button'
13
- _buttonColor='text-media-button hover:fill-media-button'
14
- _buttonSpace=(inline-switch this.teaserSize '["25","33"]' '[" my-2 mx-2"," my-5 mx-5 md:my-3 md:mx-3"," my-5 mx-5"]')
15
- _showIcon=true
16
- _icon='play_button'
17
- _label='Sendung'
18
- _srOnly="true"
19
- _alpineClick=""
20
- _noFocus="true"
21
- }}
22
- {{/decorator}}
9
+ {{#with this}}
10
+ {{> components/base/image/icon _icon="play_button" _addClass="text-media-button fill-white hover:fill-media-button w-10 h-10 inline"}}
11
+ {{#*inline "css"~}}
12
+ {{~> components/button/utilities/button_on_image_classes _teaserSize=this.teaserSize _teaserType=this.teaserType _isMobile1to1=../../_isMobile1to1}}
13
+ {{/inline}}
14
+ {{/with}}
23
15
  {{/if}}
24
16
  {{/if}}
25
17