hr-design-system-handlebars 1.102.6 → 1.103.1

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 (371) hide show
  1. package/.storybook/main.js +3 -0
  2. package/.storybook/preview-head.html +3 -0
  3. package/CHANGELOG.md +24 -0
  4. package/dist/assets/icons/tagesschau/svgmap/pause.svg +4 -0
  5. package/dist/assets/icons/tagesschau/svgmap.min.svg +1 -1
  6. package/dist/assets/index.css +12 -3
  7. package/dist/assets/js/utils.js +73 -0
  8. package/dist/views/components/page/index/page_test_story.hbs +1 -1
  9. package/dist/views_static/components/page/index/page_test_story.hbs +1 -1
  10. package/package.json +2 -2
  11. package/src/assets/fixtures/banner/banner.json +7 -7
  12. package/src/assets/fixtures/button/button.json +142 -0
  13. package/src/assets/fixtures/button/link_button.json +153 -0
  14. package/src/assets/fixtures/label/label.json +65 -0
  15. package/src/assets/fixtures/mediaplayer/mediaplayer_button.json +40 -0
  16. package/src/assets/fixtures/mediaplayer/mediaplayer_snapshots.json +151 -0
  17. package/src/assets/fixtures/navigation/breadcrumb/breadcrumb.inc.json +8 -10
  18. package/src/assets/fixtures/navigation/breadcrumb/breadcrumb.json +113 -0
  19. package/src/assets/fixtures/page/metadatabox.inc.json +98 -0
  20. package/src/assets/fixtures/page/metadatabox.json +89 -16
  21. package/src/assets/fixtures/page/page.json +5 -4
  22. package/src/assets/fixtures/pagination/page_pagination.inc.json +157 -0
  23. package/src/assets/fixtures/pagination/page_pagination.json +251 -88
  24. package/src/assets/fixtures/site_header/site_header.inc.json +83 -0
  25. package/src/assets/fixtures/site_header/site_header.json +122 -0
  26. package/src/assets/fixtures/teaser/components/teaser_byline.json +35 -0
  27. package/src/assets/fixtures/teaser/components/teaser_headings.json +61 -0
  28. package/src/assets/fixtures/teaser/components/teaser_text.json +45 -0
  29. package/src/assets/fixtures/teaser/components/teaser_title.json +38 -0
  30. package/src/assets/fixtures/teaser/teaser_alternative.json +478 -0
  31. package/src/assets/fixtures/teaser/teaser_alternative_av.json +465 -0
  32. package/src/assets/fixtures/teaser/teaser_cluster.json +682 -0
  33. package/src/assets/fixtures/teaser/teaser_content_nav.json +532 -0
  34. package/src/assets/fixtures/teaser/teaser_event.json +284 -0
  35. package/src/assets/fixtures/teaser/teaser_indextext.json +180 -0
  36. package/src/assets/fixtures/teaser/teaser_podcast.json +75 -2
  37. package/src/assets/fixtures/teaser/teaser_poster.json +322 -0
  38. package/src/assets/fixtures/teaser/teaser_stage.json +145 -0
  39. package/src/assets/fixtures/teaser/teaser_standard.json +371 -0
  40. package/src/assets/fixtures/teaser/teaser_standard_av.json +285 -0
  41. package/src/assets/fixtures/teaser/teaser_ticker_alternative.json +156 -0
  42. package/src/assets/fixtures/teaser/teaser_ticker_standard.json +241 -0
  43. package/src/assets/fixtures/teaser/teaser_ticker_timeline.json +75 -28
  44. package/src/assets/icons/tagesschau/svgmap/pause.svg +4 -0
  45. package/src/assets/icons/tagesschau/svgmap.min.svg +1 -1
  46. package/src/assets/js/utils.js +73 -0
  47. package/src/stories/basics/SnapshotStories.mdx +353 -0
  48. package/src/stories/views/components/button/button.mdx +3 -5
  49. package/src/stories/views/components/button/button.stories.js +71 -93
  50. package/src/stories/views/components/button/fixtures/button.json +1 -0
  51. package/src/stories/views/components/button/fixtures/link_button.json +1 -0
  52. package/src/stories/views/components/button/link_button.mdx +3 -5
  53. package/src/stories/views/components/button/link_button.stories.js +67 -97
  54. package/src/stories/views/components/grid/grid.stories.js +3 -0
  55. package/src/stories/views/components/label/fixtures/label.json +1 -0
  56. package/src/stories/views/components/label/label.stories.js +31 -3
  57. package/src/stories/views/components/mediaplayer/fixtures/mediaplayer_button.json +1 -0
  58. package/src/stories/views/components/mediaplayer/fixtures/mediaplayer_snapshots.json +1 -0
  59. package/src/stories/views/components/mediaplayer/mediaplayer.stories.js +32 -12
  60. package/src/stories/views/components/mediaplayer/mediaplayer_button.stories.js +41 -34
  61. package/src/stories/views/components/navigation/breadcrumb/breadcrumb.stories.js +30 -29
  62. package/src/stories/views/components/navigation/breadcrumb/fixtures/breadcrumb.json +1 -0
  63. package/src/stories/views/components/page/components/metadatabox.stories.js +87 -23
  64. package/src/stories/views/components/page/fixtures/metadatabox.json +1 -1
  65. package/src/stories/views/components/page/index/page.data.js +10 -14
  66. package/src/stories/views/components/page/index/page.stories.js +3 -3
  67. package/src/stories/views/components/page/index/page_test_story.hbs +1 -1
  68. package/src/stories/views/components/pagination/fixtures/page_pagination.json +1 -1
  69. package/src/stories/views/components/pagination/page_pagination.data.js +2 -2
  70. package/src/stories/views/components/pagination/page_pagination.stories.js +45 -114
  71. package/src/stories/views/components/podcast/podcast_subscribe_button.stories.js +2 -2
  72. package/src/stories/views/components/site_header/fixtures/site_header.json +1 -0
  73. package/src/stories/views/components/site_header/header.stories.js +32 -17
  74. package/src/stories/views/components/teaser/cluster/teaser_cluster.stories.js +164 -44
  75. package/src/stories/views/components/teaser/components/fixtures/teaser_byline.json +1 -0
  76. package/src/stories/views/components/teaser/components/fixtures/teaser_headings.json +1 -0
  77. package/src/stories/views/components/teaser/components/fixtures/teaser_text.json +1 -0
  78. package/src/stories/views/components/teaser/components/fixtures/teaser_title.json +1 -0
  79. package/src/stories/views/components/teaser/components/teaser_byline.stories.js +32 -8
  80. package/src/stories/views/components/teaser/components/teaser_heading.stories.js +36 -38
  81. package/src/stories/views/components/teaser/components/teaser_text.stories.js +34 -23
  82. package/src/stories/views/components/teaser/components/teaser_title.stories.js +35 -23
  83. package/src/stories/views/components/teaser/content_nav/teaser_content_nav.stories.js +100 -33
  84. package/src/stories/views/components/teaser/fixtures/teaser_alternative.json +1 -0
  85. package/src/stories/views/components/teaser/fixtures/teaser_alternative_av.json +1 -0
  86. package/src/stories/views/components/teaser/fixtures/teaser_cluster.json +1 -0
  87. package/src/stories/views/components/teaser/fixtures/teaser_content_nav.json +1 -0
  88. package/src/stories/views/components/teaser/fixtures/teaser_event.json +1 -0
  89. package/src/stories/views/components/teaser/fixtures/teaser_indextext.json +1 -0
  90. package/src/stories/views/components/teaser/fixtures/teaser_podcast.json +1 -1
  91. package/src/stories/views/components/teaser/fixtures/teaser_poster.json +1 -0
  92. package/src/stories/views/components/teaser/fixtures/teaser_stage.json +1 -0
  93. package/src/stories/views/components/teaser/fixtures/teaser_standard.json +1 -0
  94. package/src/stories/views/components/teaser/fixtures/teaser_standard_av.json +1 -0
  95. package/src/stories/views/components/teaser/fixtures/teaser_ticker_alternative.json +1 -0
  96. package/src/stories/views/components/teaser/fixtures/teaser_ticker_standard.json +1 -0
  97. package/src/stories/views/components/teaser/fixtures/teaser_ticker_timeline.json +1 -1
  98. package/src/stories/views/components/teaser/podcast/podcast.stories.js +37 -25
  99. package/src/stories/views/components/teaser/teaser_alternativ.stories.js +124 -36
  100. package/src/stories/views/components/teaser/teaser_alternativ_av.stories.js +187 -36
  101. package/src/stories/views/components/teaser/teaser_indextext.stories.js +87 -18
  102. package/src/stories/views/components/teaser/teaser_poster.stories.js +87 -12
  103. package/src/stories/views/components/teaser/teaser_stage.stories.js +69 -12
  104. package/src/stories/views/components/teaser/teaser_standard.stories.js +182 -48
  105. package/src/stories/views/components/teaser/teaser_standard_av.stories.js +108 -31
  106. package/src/stories/views/components/teaser/teaser_standard_event.stories.js +122 -51
  107. package/src/stories/views/components/teaser/ticker/teaser_ticker_alternativ.stories.js +55 -11
  108. package/src/stories/views/components/teaser/ticker/teaser_ticker_standard.stories.js +77 -22
  109. package/src/stories/views/components/teaser/ticker/teaser_ticker_timeline.stories.js +35 -13
  110. package/tailwind.config.js +2 -1
  111. package/src/assets/fixtures/navigation/breadcrumb/breadcrumb_2_level.json +0 -15
  112. package/src/assets/fixtures/navigation/breadcrumb/breadcrumb_3_level.json +0 -19
  113. package/src/assets/fixtures/navigation/breadcrumb/breadcrumb_4_level.json +0 -23
  114. package/src/assets/fixtures/navigation/breadcrumb/breadcrumb_5_level.json +0 -27
  115. package/src/assets/fixtures/page/metadatabox_comments.json +0 -23
  116. package/src/assets/fixtures/page/metadatabox_more_authors.json +0 -43
  117. package/src/assets/fixtures/page/metadatabox_more_authors_comments.json +0 -47
  118. package/src/assets/fixtures/page/metadatabox_one_author.json +0 -34
  119. package/src/assets/fixtures/page/metadatabox_one_author_comments.json +0 -38
  120. package/src/assets/fixtures/page/metadatabox_one_author_without_picture.json +0 -24
  121. package/src/assets/fixtures/site_header/site_header_default.json +0 -26
  122. package/src/assets/fixtures/site_header/site_header_default_no_sticky.json +0 -9
  123. package/src/assets/fixtures/site_header/site_header_mit_submenu.json +0 -17
  124. package/src/assets/fixtures/site_header/site_header_mit_submenu_as_flyout.json +0 -17
  125. package/src/assets/fixtures/site_header/site_header_mit_submenu_as_flyout_no_sticky.json +0 -9
  126. package/src/assets/fixtures/site_header/site_header_mit_submenu_no_sticky.json +0 -9
  127. package/src/assets/fixtures/site_header/site_header_mit_top_topics.json +0 -20
  128. package/src/assets/fixtures/site_header/site_header_mit_top_topics_no_sticky.json +0 -9
  129. package/src/assets/fixtures/site_header/site_header_mit_warnung.json +0 -17
  130. package/src/assets/fixtures/site_header/site_header_mit_warnung_no_sticky.json +0 -9
  131. package/src/assets/fixtures/teaser/cluster_teaser_100.json +0 -21
  132. package/src/assets/fixtures/teaser/cluster_teaser_100_genre.json +0 -29
  133. package/src/assets/fixtures/teaser/cluster_teaser_100_image.json +0 -50
  134. package/src/assets/fixtures/teaser/cluster_teaser_33.json +0 -21
  135. package/src/assets/fixtures/teaser/cluster_teaser_33_genre.json +0 -42
  136. package/src/assets/fixtures/teaser/cluster_teaser_33_image.json +0 -69
  137. package/src/assets/fixtures/teaser/cluster_teaser_33_long_title.json +0 -29
  138. package/src/assets/fixtures/teaser/cluster_teaser_50.json +0 -21
  139. package/src/assets/fixtures/teaser/cluster_teaser_50_genre.json +0 -42
  140. package/src/assets/fixtures/teaser/cluster_teaser_50_image.json +0 -69
  141. package/src/assets/fixtures/teaser/cluster_teaser_Podcast_Channel.json +0 -67
  142. package/src/assets/fixtures/teaser/cluster_teaser_extern_100.json +0 -29
  143. package/src/assets/fixtures/teaser/cluster_teaser_extern_33.json +0 -29
  144. package/src/assets/fixtures/teaser/cluster_teaser_extern_50.json +0 -29
  145. package/src/assets/fixtures/teaser/cluster_teaser_ordered_100.json +0 -29
  146. package/src/assets/fixtures/teaser/cluster_teaser_ordered_33.json +0 -29
  147. package/src/assets/fixtures/teaser/cluster_teaser_ordered_50.json +0 -29
  148. package/src/assets/fixtures/teaser/stage_teaser.json +0 -4
  149. package/src/assets/fixtures/teaser/stage_teaser_eventtag.json +0 -48
  150. package/src/assets/fixtures/teaser/stage_teaser_program.json +0 -55
  151. package/src/assets/fixtures/teaser/stage_teaser_wide.json +0 -23
  152. package/src/assets/fixtures/teaser/teaser_alternative_100_serif.json +0 -39
  153. package/src/assets/fixtures/teaser/teaser_alternative_100_serif_audio.json +0 -39
  154. package/src/assets/fixtures/teaser/teaser_alternative_100_serif_download.json +0 -46
  155. package/src/assets/fixtures/teaser/teaser_alternative_100_serif_featured_content.json +0 -38
  156. package/src/assets/fixtures/teaser/teaser_alternative_100_serif_link.json +0 -39
  157. package/src/assets/fixtures/teaser/teaser_alternative_100_serif_live.json +0 -39
  158. package/src/assets/fixtures/teaser/teaser_alternative_100_serif_single_event.json +0 -39
  159. package/src/assets/fixtures/teaser/teaser_alternative_100_serif_two_events.json +0 -43
  160. package/src/assets/fixtures/teaser/teaser_alternative_100_serif_video.json +0 -39
  161. package/src/assets/fixtures/teaser/teaser_alternative_50_serif.json +0 -39
  162. package/src/assets/fixtures/teaser/teaser_alternative_50_serif_audio.json +0 -39
  163. package/src/assets/fixtures/teaser/teaser_alternative_50_serif_download.json +0 -46
  164. package/src/assets/fixtures/teaser/teaser_alternative_50_serif_link.json +0 -39
  165. package/src/assets/fixtures/teaser/teaser_alternative_50_serif_live.json +0 -39
  166. package/src/assets/fixtures/teaser/teaser_alternative_50_serif_video.json +0 -39
  167. package/src/assets/fixtures/teaser/teaser_alternative_hero_serif.json +0 -27
  168. package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_audio.json +0 -27
  169. package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_comments.json +0 -27
  170. package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_label.json +0 -38
  171. package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_link.json +0 -14
  172. package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_live.json +0 -14
  173. package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_program.json +0 -14
  174. package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_video.json +0 -14
  175. package/src/assets/fixtures/teaser/teaser_alternative_without_teaserimage_50_serif.json +0 -26
  176. package/src/assets/fixtures/teaser/teaser_comments_without_teaserinfo.json +0 -14
  177. package/src/assets/fixtures/teaser/teaser_content_nav_dropdown_100.json +0 -10
  178. package/src/assets/fixtures/teaser/teaser_content_nav_dropdown_autosuggest_100.json +0 -14
  179. package/src/assets/fixtures/teaser/teaser_content_nav_dropdown_subgroups.json +0 -215
  180. package/src/assets/fixtures/teaser/teaser_content_nav_flow_100.json +0 -14
  181. package/src/assets/fixtures/teaser/teaser_content_nav_flow_autosuggest.json +0 -18
  182. package/src/assets/fixtures/teaser/teaser_content_nav_list_100.json +0 -14
  183. package/src/assets/fixtures/teaser/teaser_content_nav_list_autosuggest.json +0 -18
  184. package/src/assets/fixtures/teaser/teaser_content_nav_mixed_100.json +0 -187
  185. package/src/assets/fixtures/teaser/teaser_content_nav_mixed_autosuggest.json +0 -14
  186. package/src/assets/fixtures/teaser/teaser_indextext_100_accented.json +0 -26
  187. package/src/assets/fixtures/teaser/teaser_indextext_100_boxed.json +0 -26
  188. package/src/assets/fixtures/teaser/teaser_indextext_100_highlighted.json +0 -26
  189. package/src/assets/fixtures/teaser/teaser_indextext_50_accented.json +0 -26
  190. package/src/assets/fixtures/teaser/teaser_poster_lg.json +0 -39
  191. package/src/assets/fixtures/teaser/teaser_poster_md.json +0 -39
  192. package/src/assets/fixtures/teaser/teaser_poster_md_label.json +0 -60
  193. package/src/assets/fixtures/teaser/teaser_poster_md_label_byline.json +0 -50
  194. package/src/assets/fixtures/teaser/teaser_standard_100_serif.json +0 -14
  195. package/src/assets/fixtures/teaser/teaser_standard_100_serif_download.json +0 -21
  196. package/src/assets/fixtures/teaser/teaser_standard_100_serif_link.json +0 -14
  197. package/src/assets/fixtures/teaser/teaser_standard_100_serif_program.json +0 -14
  198. package/src/assets/fixtures/teaser/teaser_standard_100_serif_single_event.json +0 -22
  199. package/src/assets/fixtures/teaser/teaser_standard_100_serif_two_events.json +0 -26
  200. package/src/assets/fixtures/teaser/teaser_standard_25_serif.json +0 -35
  201. package/src/assets/fixtures/teaser/teaser_standard_25_serif_audio.json +0 -35
  202. package/src/assets/fixtures/teaser/teaser_standard_25_serif_audio_livestream.json +0 -35
  203. package/src/assets/fixtures/teaser/teaser_standard_25_serif_link.json +0 -31
  204. package/src/assets/fixtures/teaser/teaser_standard_25_serif_live.json +0 -35
  205. package/src/assets/fixtures/teaser/teaser_standard_25_serif_podcast.json +0 -35
  206. package/src/assets/fixtures/teaser/teaser_standard_25_serif_video.json +0 -35
  207. package/src/assets/fixtures/teaser/teaser_standard_33_long_geotag.json +0 -22
  208. package/src/assets/fixtures/teaser/teaser_standard_33_serif.json +0 -14
  209. package/src/assets/fixtures/teaser/teaser_standard_33_serif_link.json +0 -14
  210. package/src/assets/fixtures/teaser/teaser_standard_33_serif_multiple_events.json +0 -36
  211. package/src/assets/fixtures/teaser/teaser_standard_33_serif_single_event.json +0 -18
  212. package/src/assets/fixtures/teaser/teaser_standard_33_serif_single_event_status.json +0 -22
  213. package/src/assets/fixtures/teaser/teaser_standard_33_serif_two_events.json +0 -22
  214. package/src/assets/fixtures/teaser/teaser_standard_50_serif.json +0 -14
  215. package/src/assets/fixtures/teaser/teaser_standard_50_serif_audio.json +0 -14
  216. package/src/assets/fixtures/teaser/teaser_standard_50_serif_audio_livestream.json +0 -14
  217. package/src/assets/fixtures/teaser/teaser_standard_50_serif_download.json +0 -21
  218. package/src/assets/fixtures/teaser/teaser_standard_50_serif_featured_content.json +0 -17
  219. package/src/assets/fixtures/teaser/teaser_standard_50_serif_link.json +0 -14
  220. package/src/assets/fixtures/teaser/teaser_standard_50_serif_link_two_click.json +0 -22
  221. package/src/assets/fixtures/teaser/teaser_standard_50_serif_live.json +0 -22
  222. package/src/assets/fixtures/teaser/teaser_standard_50_serif_podcast.json +0 -14
  223. package/src/assets/fixtures/teaser/teaser_standard_50_serif_single_event.json +0 -17
  224. package/src/assets/fixtures/teaser/teaser_standard_50_serif_video.json +0 -14
  225. package/src/assets/fixtures/teaser/teaser_standard_66_serif_single_event.json +0 -25
  226. package/src/assets/fixtures/teaser/teaser_standard_hero_serif.json +0 -4
  227. package/src/assets/fixtures/teaser/teaser_standard_hero_serif_comments.json +0 -4
  228. package/src/assets/fixtures/teaser/teaser_standard_hero_serif_label.json +0 -17
  229. package/src/assets/fixtures/teaser/teaser_standard_hero_serif_link.json +0 -4
  230. package/src/assets/fixtures/teaser/teaser_standard_without_teaserimage_25_serif.json +0 -22
  231. package/src/assets/fixtures/teaser/teaser_standard_without_teaserimage_50_serif.json +0 -14
  232. package/src/assets/fixtures/teaser/ticker_teaser_alternativ_100.json +0 -54
  233. package/src/assets/fixtures/teaser/ticker_teaser_alternativ_hero.json +0 -42
  234. package/src/assets/fixtures/teaser/ticker_teaser_alternativ_hero_audio.json +0 -42
  235. package/src/assets/fixtures/teaser/ticker_teaser_standard_100.json +0 -37
  236. package/src/assets/fixtures/teaser/ticker_teaser_standard_25.json +0 -50
  237. package/src/assets/fixtures/teaser/ticker_teaser_standard_33.json +0 -37
  238. package/src/assets/fixtures/teaser/ticker_teaser_standard_50.json +0 -37
  239. package/src/assets/fixtures/teaser/ticker_teaser_standard_hero.json +0 -25
  240. package/src/assets/fixtures/teaser/ticker_teaser_standard_hero_audio.json +0 -25
  241. package/src/stories/views/components/navigation/breadcrumb/fixtures/breadcrumb_2_level.json +0 -1
  242. package/src/stories/views/components/navigation/breadcrumb/fixtures/breadcrumb_3_level.json +0 -1
  243. package/src/stories/views/components/navigation/breadcrumb/fixtures/breadcrumb_4_level.json +0 -1
  244. package/src/stories/views/components/navigation/breadcrumb/fixtures/breadcrumb_5_level.json +0 -1
  245. package/src/stories/views/components/page/fixtures/metadatabox_comments.json +0 -1
  246. package/src/stories/views/components/page/fixtures/metadatabox_more_authors.json +0 -1
  247. package/src/stories/views/components/page/fixtures/metadatabox_more_authors_comments.json +0 -1
  248. package/src/stories/views/components/page/fixtures/metadatabox_one_author.json +0 -1
  249. package/src/stories/views/components/page/fixtures/metadatabox_one_author_comments.json +0 -1
  250. package/src/stories/views/components/page/fixtures/metadatabox_one_author_without_picture.json +0 -1
  251. package/src/stories/views/components/site_header/fixtures/site_header_default.json +0 -1
  252. package/src/stories/views/components/site_header/fixtures/site_header_default_no_sticky.json +0 -1
  253. package/src/stories/views/components/site_header/fixtures/site_header_mit_submenu.json +0 -1
  254. package/src/stories/views/components/site_header/fixtures/site_header_mit_submenu_asFlyout_no_sticky.json +0 -1
  255. package/src/stories/views/components/site_header/fixtures/site_header_mit_submenu_as_flyout.json +0 -1
  256. package/src/stories/views/components/site_header/fixtures/site_header_mit_submenu_as_flyout_no_sticky.json +0 -1
  257. package/src/stories/views/components/site_header/fixtures/site_header_mit_submenu_no_sticky.json +0 -1
  258. package/src/stories/views/components/site_header/fixtures/site_header_mit_top_topics.json +0 -1
  259. package/src/stories/views/components/site_header/fixtures/site_header_mit_top_topics_no_sticky.json +0 -1
  260. package/src/stories/views/components/site_header/fixtures/site_header_mit_warnung.json +0 -1
  261. package/src/stories/views/components/site_header/fixtures/site_header_mit_warnung_no_sticky.json +0 -1
  262. package/src/stories/views/components/teaser/fixtures/cluster_teaser_100.json +0 -1
  263. package/src/stories/views/components/teaser/fixtures/cluster_teaser_100_genre.json +0 -1
  264. package/src/stories/views/components/teaser/fixtures/cluster_teaser_100_image.json +0 -1
  265. package/src/stories/views/components/teaser/fixtures/cluster_teaser_33.json +0 -1
  266. package/src/stories/views/components/teaser/fixtures/cluster_teaser_33_genre.json +0 -1
  267. package/src/stories/views/components/teaser/fixtures/cluster_teaser_33_image.json +0 -1
  268. package/src/stories/views/components/teaser/fixtures/cluster_teaser_33_long_title.json +0 -1
  269. package/src/stories/views/components/teaser/fixtures/cluster_teaser_50.json +0 -1
  270. package/src/stories/views/components/teaser/fixtures/cluster_teaser_50_genre.json +0 -1
  271. package/src/stories/views/components/teaser/fixtures/cluster_teaser_50_image.json +0 -1
  272. package/src/stories/views/components/teaser/fixtures/cluster_teaser_Podcast_Channel.json +0 -1
  273. package/src/stories/views/components/teaser/fixtures/cluster_teaser_extern_100.json +0 -1
  274. package/src/stories/views/components/teaser/fixtures/cluster_teaser_extern_33.json +0 -1
  275. package/src/stories/views/components/teaser/fixtures/cluster_teaser_extern_50.json +0 -1
  276. package/src/stories/views/components/teaser/fixtures/cluster_teaser_ordered_100.json +0 -1
  277. package/src/stories/views/components/teaser/fixtures/cluster_teaser_ordered_33.json +0 -1
  278. package/src/stories/views/components/teaser/fixtures/cluster_teaser_ordered_50.json +0 -1
  279. package/src/stories/views/components/teaser/fixtures/stage_teaser.json +0 -1
  280. package/src/stories/views/components/teaser/fixtures/stage_teaser_eventtag.json +0 -1
  281. package/src/stories/views/components/teaser/fixtures/stage_teaser_program.json +0 -1
  282. package/src/stories/views/components/teaser/fixtures/stage_teaser_wide.json +0 -1
  283. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif.json +0 -1
  284. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_audio.json +0 -1
  285. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_download.json +0 -1
  286. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_featured_content.json +0 -1
  287. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_link.json +0 -1
  288. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_live.json +0 -1
  289. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_single_event.json +0 -1
  290. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_two_events.json +0 -1
  291. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_video.json +0 -1
  292. package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif.json +0 -1
  293. package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif_audio.json +0 -1
  294. package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif_download.json +0 -1
  295. package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif_link.json +0 -1
  296. package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif_live.json +0 -1
  297. package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif_video.json +0 -1
  298. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif.json +0 -1
  299. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_audio.json +0 -1
  300. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_comments.json +0 -1
  301. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_label.json +0 -1
  302. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_link.json +0 -1
  303. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_live.json +0 -1
  304. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_program.json +0 -1
  305. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_video.json +0 -1
  306. package/src/stories/views/components/teaser/fixtures/teaser_alternative_without_teaserimage_50_serif.json +0 -1
  307. package/src/stories/views/components/teaser/fixtures/teaser_comments_without_teaserinfo.json +0 -1
  308. package/src/stories/views/components/teaser/fixtures/teaser_content_nav_dropdown_100.json +0 -1
  309. package/src/stories/views/components/teaser/fixtures/teaser_content_nav_dropdown_autosuggest_100.json +0 -1
  310. package/src/stories/views/components/teaser/fixtures/teaser_content_nav_dropdown_subgroups.json +0 -1
  311. package/src/stories/views/components/teaser/fixtures/teaser_content_nav_flow_100.json +0 -1
  312. package/src/stories/views/components/teaser/fixtures/teaser_content_nav_flow_autosuggest.json +0 -1
  313. package/src/stories/views/components/teaser/fixtures/teaser_content_nav_list_100.json +0 -1
  314. package/src/stories/views/components/teaser/fixtures/teaser_content_nav_list_autosuggest.json +0 -1
  315. package/src/stories/views/components/teaser/fixtures/teaser_content_nav_mixed_100.json +0 -1
  316. package/src/stories/views/components/teaser/fixtures/teaser_content_nav_mixed_autosuggest.json +0 -1
  317. package/src/stories/views/components/teaser/fixtures/teaser_indextext_100_accented.json +0 -1
  318. package/src/stories/views/components/teaser/fixtures/teaser_indextext_100_boxed.json +0 -1
  319. package/src/stories/views/components/teaser/fixtures/teaser_indextext_100_highlighted.json +0 -1
  320. package/src/stories/views/components/teaser/fixtures/teaser_indextext_50_accented.json +0 -1
  321. package/src/stories/views/components/teaser/fixtures/teaser_poster_lg.json +0 -1
  322. package/src/stories/views/components/teaser/fixtures/teaser_poster_md.json +0 -1
  323. package/src/stories/views/components/teaser/fixtures/teaser_poster_md_label.json +0 -1
  324. package/src/stories/views/components/teaser/fixtures/teaser_poster_md_label_byline.json +0 -1
  325. package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif.json +0 -1
  326. package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif_download.json +0 -1
  327. package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif_link.json +0 -1
  328. package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif_program.json +0 -1
  329. package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif_single_event.json +0 -1
  330. package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif_two_events.json +0 -1
  331. package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif.json +0 -1
  332. package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif_audio.json +0 -1
  333. package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif_audio_livestream.json +0 -1
  334. package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif_link.json +0 -1
  335. package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif_live.json +0 -1
  336. package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif_podcast.json +0 -1
  337. package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif_video.json +0 -1
  338. package/src/stories/views/components/teaser/fixtures/teaser_standard_33_long_geotag.json +0 -1
  339. package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif.json +0 -1
  340. package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif_link.json +0 -1
  341. package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif_multiple_events.json +0 -1
  342. package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif_single_event.json +0 -1
  343. package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif_single_event_status.json +0 -1
  344. package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif_two_events.json +0 -1
  345. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif.json +0 -1
  346. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_audio.json +0 -1
  347. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_audio_livestream.json +0 -1
  348. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_download.json +0 -1
  349. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_featured_content.json +0 -1
  350. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_link.json +0 -1
  351. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_link_two_click.json +0 -1
  352. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_live.json +0 -1
  353. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_podcast.json +0 -1
  354. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_single_event.json +0 -1
  355. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_video.json +0 -1
  356. package/src/stories/views/components/teaser/fixtures/teaser_standard_66_serif_single_event.json +0 -1
  357. package/src/stories/views/components/teaser/fixtures/teaser_standard_hero_serif.json +0 -1
  358. package/src/stories/views/components/teaser/fixtures/teaser_standard_hero_serif_comments.json +0 -1
  359. package/src/stories/views/components/teaser/fixtures/teaser_standard_hero_serif_label.json +0 -1
  360. package/src/stories/views/components/teaser/fixtures/teaser_standard_hero_serif_link.json +0 -1
  361. package/src/stories/views/components/teaser/fixtures/teaser_standard_without_teaserimage_25_serif.json +0 -1
  362. package/src/stories/views/components/teaser/fixtures/teaser_standard_without_teaserimage_50_serif.json +0 -1
  363. package/src/stories/views/components/teaser/fixtures/ticker_teaser_alternativ_100.json +0 -1
  364. package/src/stories/views/components/teaser/fixtures/ticker_teaser_alternativ_hero.json +0 -1
  365. package/src/stories/views/components/teaser/fixtures/ticker_teaser_alternativ_hero_audio.json +0 -1
  366. package/src/stories/views/components/teaser/fixtures/ticker_teaser_standard_100.json +0 -1
  367. package/src/stories/views/components/teaser/fixtures/ticker_teaser_standard_25.json +0 -1
  368. package/src/stories/views/components/teaser/fixtures/ticker_teaser_standard_33.json +0 -1
  369. package/src/stories/views/components/teaser/fixtures/ticker_teaser_standard_50.json +0 -1
  370. package/src/stories/views/components/teaser/fixtures/ticker_teaser_standard_hero.json +0 -1
  371. package/src/stories/views/components/teaser/fixtures/ticker_teaser_standard_hero_audio.json +0 -1
@@ -1,39 +0,0 @@
1
- {
2
- "@->jsoninclude": "teaser/teasers.inc.json",
3
- "@->contentpath": "teaser",
4
- "@->overrides": [
5
- {
6
- "@->contentpath": "logicItem.includeModel.teaserType",
7
- "@->value": "poster"
8
- },
9
- {
10
- "@->contentpath": "logicItem.includeModel.teaserSize",
11
- "@->value": "50"
12
- },
13
- {
14
- "@->contentpath": "logicItem.includeModel.realTeaserSize",
15
- "@->value": "50"
16
- },
17
- {
18
- "@->contentpath": "logicItem.includeModel.title",
19
- "@->value": "Abgeschobene Geschwister aus Syrien zurück in Wolfhagen Abgeschobene Geschwister aus Syrien zurück in Wolfhagen"
20
- },
21
- {
22
- "@->contentpath": "logicItem.includeModel.link.readMoreText.readMoreLong",
23
- "@->value": "Zum Artikel"
24
- },
25
- {
26
- "@->contentpath": "logicItem.includeModel.teaserImage",
27
- "@->value": {
28
- "@->jsoninclude": "teaser/teaser_images.inc.json",
29
- "@->contentpath": "teaser_poster_50",
30
- "@->replaceToken": [
31
- {
32
- "@->token": "image",
33
- "@->value": "rueckkehr-nach-abschiebung-102"
34
- }
35
- ]
36
- }
37
- }
38
- ]
39
- }
@@ -1,39 +0,0 @@
1
- {
2
- "@->jsoninclude": "teaser/teasers.inc.json",
3
- "@->contentpath": "teaser",
4
- "@->overrides": [
5
- {
6
- "@->contentpath": "logicItem.includeModel.teaserType",
7
- "@->value": "poster"
8
- },
9
- {
10
- "@->contentpath": "logicItem.includeModel.teaserSize",
11
- "@->value": "33"
12
- },
13
- {
14
- "@->contentpath": "logicItem.includeModel.realTeaserSize",
15
- "@->value": "33"
16
- },
17
- {
18
- "@->contentpath": "logicItem.includeModel.title",
19
- "@->value": "Abgeschobene Geschwister aus Syrien zurück in Wolfhagen Abgeschobene Geschwister aus Syrien zurück in Wolfhagen"
20
- },
21
- {
22
- "@->contentpath": "logicItem.includeModel.link.readMoreText.readMoreLong",
23
- "@->value": "Zum Artikel"
24
- },
25
- {
26
- "@->contentpath": "logicItem.includeModel.teaserImage",
27
- "@->value": {
28
- "@->jsoninclude": "teaser/teaser_images.inc.json",
29
- "@->contentpath": "teaser_poster_33",
30
- "@->replaceToken": [
31
- {
32
- "@->token": "image",
33
- "@->value": "rueckkehr-nach-abschiebung-102"
34
- }
35
- ]
36
- }
37
- }
38
- ]
39
- }
@@ -1,60 +0,0 @@
1
- {
2
- "@->jsoninclude": "teaser/teasers.inc.json",
3
- "@->contentpath": "teaser",
4
- "@->overrides": [
5
- {
6
- "@->contentpath": "logicItem.includeModel.teaserType",
7
- "@->value": "poster"
8
- },
9
- {
10
- "@->contentpath": "logicItem.includeModel.teaserSize",
11
- "@->value": "33"
12
- },
13
- {
14
- "@->contentpath": "logicItem.includeModel.realTeaserSize",
15
- "@->value": "33"
16
- },
17
- {
18
- "@->contentpath": "logicItem.includeModel.title",
19
- "@->value": "Abgeschobene Geschwister aus Syrien zurück in Wolfhagen Abgeschobene Geschwister aus Syrien zurück in Wolfhagen"
20
- },
21
- {
22
- "@->contentpath": "logicItem.includeModel.link.readMoreText.readMoreLong",
23
- "@->value": "Zum Ticker"
24
- },
25
- {
26
- "@->contentpath": "logicItem.includeModel.teaserImage",
27
- "@->value": {
28
- "@->jsoninclude": "teaser/teaser_images.inc.json",
29
- "@->contentpath": "teaser_poster_33",
30
- "@->replaceToken": [
31
- {
32
- "@->token": "image",
33
- "@->value": "sonniger-herbst-100"
34
- }
35
- ]
36
- }
37
- },
38
- {
39
- "@->contentpath": "logicItem.includeModel.topline",
40
- "@->value": ""
41
- },
42
- {
43
- "@->contentpath": "logicItem.includeModel.label",
44
- "@->value": {
45
- "@->jsoninclude": "teaser/teaser_labels.inc.json",
46
- "@->contentpath": "ticker",
47
- "@->overrides": [
48
- {
49
- "@->contentpath": "byline.bylineSsi",
50
- "@->value": ""
51
- },
52
- {
53
- "@->contentpath": "byline.bylineText",
54
- "@->value": ""
55
- }
56
- ]
57
- }
58
- }
59
- ]
60
- }
@@ -1,50 +0,0 @@
1
- {
2
- "@->jsoninclude": "teaser/teasers.inc.json",
3
- "@->contentpath": "teaser",
4
- "@->overrides": [
5
- {
6
- "@->contentpath": "logicItem.includeModel.teaserType",
7
- "@->value": "poster"
8
- },
9
- {
10
- "@->contentpath": "logicItem.includeModel.teaserSize",
11
- "@->value": "33"
12
- },
13
- {
14
- "@->contentpath": "logicItem.includeModel.realTeaserSize",
15
- "@->value": "33"
16
- },
17
- {
18
- "@->contentpath": "logicItem.includeModel.title",
19
- "@->value": "hr-Bigband feat. Omer Klein und Becca Stevens +++ Jakob Bänsch Quartett +++ Emma Rawicz CHROMA"
20
- },
21
- {
22
- "@->contentpath": "logicItem.includeModel.link.readMoreText.readMoreLong",
23
- "@->value": "Zur Veranstaltung"
24
- },
25
- {
26
- "@->contentpath": "logicItem.includeModel.teaserImage",
27
- "@->value": {
28
- "@->jsoninclude": "teaser/teaser_images.inc.json",
29
- "@->contentpath": "teaser_poster_33",
30
- "@->replaceToken": [
31
- {
32
- "@->token": "image",
33
- "@->value": "sonniger-herbst-100"
34
- }
35
- ]
36
- }
37
- },
38
- {
39
- "@->contentpath": "logicItem.includeModel.topline",
40
- "@->value": ""
41
- },
42
- {
43
- "@->contentpath": "logicItem.includeModel.label",
44
- "@->value": {
45
- "@->jsoninclude": "teaser/teaser_labels.inc.json",
46
- "@->contentpath": "event"
47
- }
48
- }
49
- ]
50
- }
@@ -1,14 +0,0 @@
1
- {
2
- "@->jsoninclude": "teaser/teasers.inc.json",
3
- "@->contentpath": "teaser",
4
- "@->overrides": [
5
- {
6
- "@->contentpath": "logicItem.includeModel.teaserSize",
7
- "@->value": "100"
8
- },
9
- {
10
- "@->contentpath": "logicItem.includeModel.realTeaserSize",
11
- "@->value": "100"
12
- }
13
- ]
14
- }
@@ -1,21 +0,0 @@
1
- {
2
- "@->jsoninclude": "teaser/teasers.inc.json",
3
- "@->contentpath": "teaserDownload",
4
- "@->overrides": [
5
- {
6
- "@->contentpath": "logicItem.includeModel.teaserSize",
7
- "@->value": "100"
8
- },
9
- {
10
- "@->contentpath": "logicItem.includeModel.realTeaserSize",
11
- "@->value": "100"
12
- },
13
- {
14
- "@->contentpath": "logicItem.includeModel.label",
15
- "@->value": {
16
- "@->jsoninclude": "teaser/teaser_labels.inc.json",
17
- "@->contentpath": "download"
18
- }
19
- }
20
- ]
21
- }
@@ -1,14 +0,0 @@
1
- {
2
- "@->jsoninclude": "teaser/teasers.inc.json",
3
- "@->contentpath": "teaser_link",
4
- "@->overrides": [
5
- {
6
- "@->contentpath": "logicItem.includeModel.teaserSize",
7
- "@->value": "100"
8
- },
9
- {
10
- "@->contentpath": "logicItem.includeModel.realTeaserSize",
11
- "@->value": "100"
12
- }
13
- ]
14
- }
@@ -1,14 +0,0 @@
1
- {
2
- "@->jsoninclude": "teaser/teasers.inc.json",
3
- "@->contentpath": "teaserProgram",
4
- "@->overrides": [
5
- {
6
- "@->contentpath": "logicItem.includeModel.teaserSize",
7
- "@->value": "100"
8
- },
9
- {
10
- "@->contentpath": "logicItem.includeModel.realTeaserSize",
11
- "@->value": "100"
12
- }
13
- ]
14
- }
@@ -1,22 +0,0 @@
1
- {
2
- "@->jsoninclude": "teaser/teasers.inc.json",
3
- "@->contentpath": "teaserEvent",
4
- "@->overrides": [
5
- {
6
- "@->contentpath": "logicItem.includeModel.teaserSize",
7
- "@->value": "100"
8
- },
9
- {
10
- "@->contentpath": "logicItem.includeModel.realTeaserSize",
11
- "@->value": "100"
12
- },
13
- {
14
- "@->contentpath": "logicItem.includeModel.teaserType",
15
- "@->value": "event"
16
- },
17
- {
18
- "@->contentpath": "logicItem.includeModel.displayTeaserBodyAsImageOverlay",
19
- "@->value": true
20
- }
21
- ]
22
- }
@@ -1,26 +0,0 @@
1
- {
2
- "@->jsoninclude": "teaser/teasers.inc.json",
3
- "@->contentpath": "teaserEvent",
4
- "@->overrides": [
5
- {
6
- "@->contentpath": "logicItem.includeModel.teaserSize",
7
- "@->value": "100"
8
- },
9
- {
10
- "@->contentpath": "logicItem.includeModel.realTeaserSize",
11
- "@->value": "100"
12
- },
13
- {
14
- "@->contentpath": "logicItem.includeModel.teaserType",
15
- "@->value": "event"
16
- },
17
- {
18
- "@->contentpath": "logicItem.includeModel.displayTeaserBodyAsImageOverlay",
19
- "@->value": true
20
- },
21
- {
22
- "@->contentpath": "logicItem.includeModel.moreThenOneEvent",
23
- "@->value": "true"
24
- }
25
- ]
26
- }
@@ -1,35 +0,0 @@
1
- {
2
- "@->jsoninclude": "teaser/teasers.inc.json",
3
- "@->contentpath": "teaser",
4
- "@->overrides": [
5
- {
6
- "@->contentpath": "logicItem.includeModel.teaserSize",
7
- "@->value": "25"
8
- },
9
- {
10
- "@->contentpath": "logicItem.includeModel.realTeaserSize",
11
- "@->value": "25"
12
- },
13
- {
14
- "@->contentpath": "logicItem.includeModel.isMobile1to1",
15
- "@->value": "true"
16
- },
17
- {
18
- "@->contentpath": "logicItem.includeModel.shorttext",
19
- "@->value": ""
20
- },
21
- {
22
- "@->contentpath": "logicItem.includeModel.teaserImage",
23
- "@->value": {
24
- "@->jsoninclude": "teaser/teaser_images.inc.json",
25
- "@->contentpath": "teaser_25",
26
- "@->replaceToken": [
27
- {
28
- "@->token": "image",
29
- "@->value": "rueckkehr-nach-abschiebung-102"
30
- }
31
- ]
32
- }
33
- }
34
- ]
35
- }
@@ -1,35 +0,0 @@
1
- {
2
- "@->jsoninclude": "teaser/teasers.inc.json",
3
- "@->contentpath": "teaser_audio",
4
- "@->overrides": [
5
- {
6
- "@->contentpath": "logicItem.includeModel.teaserSize",
7
- "@->value": "25"
8
- },
9
- {
10
- "@->contentpath": "logicItem.includeModel.realTeaserSize",
11
- "@->value": "25"
12
- },
13
- {
14
- "@->contentpath": "logicItem.includeModel.isMobile1to1",
15
- "@->value": "true"
16
- },
17
- {
18
- "@->contentpath": "logicItem.includeModel.shorttext",
19
- "@->value": ""
20
- },
21
- {
22
- "@->contentpath": "logicItem.includeModel.teaserImage",
23
- "@->value": {
24
- "@->jsoninclude": "teaser/teaser_images.inc.json",
25
- "@->contentpath": "teaser_25",
26
- "@->replaceToken": [
27
- {
28
- "@->token": "image",
29
- "@->value": "hasebe-kane-102"
30
- }
31
- ]
32
- }
33
- }
34
- ]
35
- }
@@ -1,35 +0,0 @@
1
- {
2
- "@->jsoninclude": "teaser/teasers.inc.json",
3
- "@->contentpath": "teaser_audio_livestream",
4
- "@->overrides": [
5
- {
6
- "@->contentpath": "logicItem.includeModel.teaserSize",
7
- "@->value": "25"
8
- },
9
- {
10
- "@->contentpath": "logicItem.includeModel.realTeaserSize",
11
- "@->value": "25"
12
- },
13
- {
14
- "@->contentpath": "logicItem.includeModel.isMobile1to1",
15
- "@->value": "true"
16
- },
17
- {
18
- "@->contentpath": "logicItem.includeModel.shorttext",
19
- "@->value": ""
20
- },
21
- {
22
- "@->contentpath": "logicItem.includeModel.teaserImage",
23
- "@->value": {
24
- "@->jsoninclude": "teaser/teaser_images.inc.json",
25
- "@->contentpath": "teaser_25",
26
- "@->replaceToken": [
27
- {
28
- "@->token": "image",
29
- "@->value": "stream-thumbnail-102"
30
- }
31
- ]
32
- }
33
- }
34
- ]
35
- }
@@ -1,31 +0,0 @@
1
- {
2
- "@->jsoninclude": "teaser/teasers.inc.json",
3
- "@->contentpath": "teaser_link",
4
- "@->overrides": [
5
- {
6
- "@->contentpath": "logicItem.includeModel.teaserSize",
7
- "@->value": "25"
8
- },
9
- {
10
- "@->contentpath": "logicItem.includeModel.realTeaserSize",
11
- "@->value": "25"
12
- },
13
- {
14
- "@->contentpath": "logicItem.includeModel.isMobile1to1",
15
- "@->value": "true"
16
- },
17
- {
18
- "@->contentpath": "logicItem.includeModel.teaserImage",
19
- "@->value": {
20
- "@->jsoninclude": "teaser/teaser_images.inc.json",
21
- "@->contentpath": "teaser_25",
22
- "@->replaceToken": [
23
- {
24
- "@->token": "image",
25
- "@->value": "mercedes-suv-g-100"
26
- }
27
- ]
28
- }
29
- }
30
- ]
31
- }
@@ -1,35 +0,0 @@
1
- {
2
- "@->jsoninclude": "teaser/teasers.inc.json",
3
- "@->contentpath": "teaser_video_livestream",
4
- "@->overrides": [
5
- {
6
- "@->contentpath": "logicItem.includeModel.teaserSize",
7
- "@->value": "25"
8
- },
9
- {
10
- "@->contentpath": "logicItem.includeModel.realTeaserSize",
11
- "@->value": "25"
12
- },
13
- {
14
- "@->contentpath": "logicItem.includeModel.isMobile1to1",
15
- "@->value": "true"
16
- },
17
- {
18
- "@->contentpath": "logicItem.includeModel.shorttext",
19
- "@->value": ""
20
- },
21
- {
22
- "@->contentpath": "logicItem.includeModel.teaserImage",
23
- "@->value": {
24
- "@->jsoninclude": "teaser/teaser_images.inc.json",
25
- "@->contentpath": "teaser_25",
26
- "@->replaceToken": [
27
- {
28
- "@->token": "image",
29
- "@->value": "buchmesse-fahnen-102"
30
- }
31
- ]
32
- }
33
- }
34
- ]
35
- }
@@ -1,35 +0,0 @@
1
- {
2
- "@->jsoninclude": "teaser/teasers.inc.json",
3
- "@->contentpath": "teaser_podcast",
4
- "@->overrides": [
5
- {
6
- "@->contentpath": "logicItem.includeModel.teaserSize",
7
- "@->value": "25"
8
- },
9
- {
10
- "@->contentpath": "logicItem.includeModel.realTeaserSize",
11
- "@->value": "25"
12
- },
13
- {
14
- "@->contentpath": "logicItem.includeModel.isMobile1to1",
15
- "@->value": "true"
16
- },
17
- {
18
- "@->contentpath": "logicItem.includeModel.shorttext",
19
- "@->value": ""
20
- },
21
- {
22
- "@->contentpath": "logicItem.includeModel.teaserImage",
23
- "@->value": {
24
- "@->jsoninclude": "teaser/teaser_images.inc.json",
25
- "@->contentpath": "teaser_25",
26
- "@->replaceToken": [
27
- {
28
- "@->token": "image",
29
- "@->value": "hrinfo_genre_kulturlust-100"
30
- }
31
- ]
32
- }
33
- }
34
- ]
35
- }
@@ -1,35 +0,0 @@
1
- {
2
- "@->jsoninclude": "teaser/teasers.inc.json",
3
- "@->contentpath": "teaser_video",
4
- "@->overrides": [
5
- {
6
- "@->contentpath": "logicItem.includeModel.teaserSize",
7
- "@->value": "25"
8
- },
9
- {
10
- "@->contentpath": "logicItem.includeModel.realTeaserSize",
11
- "@->value": "25"
12
- },
13
- {
14
- "@->contentpath": "logicItem.includeModel.isMobile1to1",
15
- "@->value": "true"
16
- },
17
- {
18
- "@->contentpath": "logicItem.includeModel.shorttext",
19
- "@->value": ""
20
- },
21
- {
22
- "@->contentpath": "logicItem.includeModel.teaserImage",
23
- "@->value": {
24
- "@->jsoninclude": "teaser/teaser_images.inc.json",
25
- "@->contentpath": "teaser_25",
26
- "@->replaceToken": [
27
- {
28
- "@->token": "image",
29
- "@->value": "sonniger-herbst-100"
30
- }
31
- ]
32
- }
33
- }
34
- ]
35
- }
@@ -1,22 +0,0 @@
1
- {
2
- "@->jsoninclude": "teaser/teasers.inc.json",
3
- "@->contentpath": "teaser",
4
- "@->overrides": [
5
- {
6
- "@->contentpath": "logicItem.includeModel.teaserSize",
7
- "@->value": "33"
8
- },
9
- {
10
- "@->contentpath": "logicItem.includeModel.realTeaserSize",
11
- "@->value": "33"
12
- },
13
- {
14
- "@->contentpath": "logicItem.includeModel.geotag",
15
- "@->value": [
16
- {
17
- "title": "Poppenhausen (Wasserkuppe)"
18
- }
19
- ]
20
- }
21
- ]
22
- }
@@ -1,14 +0,0 @@
1
- {
2
- "@->jsoninclude": "teaser/teasers.inc.json",
3
- "@->contentpath": "teaser",
4
- "@->overrides": [
5
- {
6
- "@->contentpath": "logicItem.includeModel.teaserSize",
7
- "@->value": "33"
8
- },
9
- {
10
- "@->contentpath": "logicItem.includeModel.realTeaserSize",
11
- "@->value": "33"
12
- }
13
- ]
14
- }
@@ -1,14 +0,0 @@
1
- {
2
- "@->jsoninclude": "teaser/teasers.inc.json",
3
- "@->contentpath": "teaser_link",
4
- "@->overrides": [
5
- {
6
- "@->contentpath": "logicItem.includeModel.teaserSize",
7
- "@->value": "33"
8
- },
9
- {
10
- "@->contentpath": "logicItem.includeModel.realTeaserSize",
11
- "@->value": "33"
12
- }
13
- ]
14
- }
@@ -1,36 +0,0 @@
1
- {
2
- "@->jsoninclude": "teaser/teasers.inc.json",
3
- "@->contentpath": "teaserEvent",
4
- "@->overrides": [
5
- {
6
- "@->contentpath": "logicItem.includeModel.teaserSize",
7
- "@->value": "33"
8
- },
9
- {
10
- "@->contentpath": "logicItem.includeModel.realTeaserSize",
11
- "@->value": "33"
12
- },
13
- {
14
- "@->contentpath": "logicItem.includeModel.moreThenOneEvent",
15
- "@->value": "true"
16
- },
17
- {
18
- "@->contentpath": "logicItem.includeModel.moreThenTwoEvents",
19
- "@->value": "true"
20
- },
21
- {
22
- "@->contentpath": "logicItem.includeModel.lastInstant",
23
- "@->value": {
24
- "startDate": {
25
- "monthNameShort": "OKT",
26
- "weekdayNameShort": "So",
27
- "day": "16"
28
- }
29
- }
30
- },
31
- {
32
- "@->contentpath": "logicItem.includeModel.teaserType",
33
- "@->value": "event"
34
- }
35
- ]
36
- }