hr-design-system-handlebars 1.102.5 → 1.103.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 (377) 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/index.css +12 -3
  5. package/dist/assets/js/components/dataPolicySettings/dataPolicySettingsDs.feature.js +47 -51
  6. package/dist/assets/js/components/externalService/externalServiceDs.feature.js +24 -6
  7. package/dist/assets/js/utils.js +73 -0
  8. package/dist/views/components/externalService/external_service.hbs +1 -1
  9. package/dist/views/components/externalService/external_service_with_datapolicy_check.hbs +1 -1
  10. package/dist/views/components/page/index/page_test_story.hbs +1 -1
  11. package/dist/views_static/components/externalService/external_service.hbs +1 -1
  12. package/dist/views_static/components/externalService/external_service_with_datapolicy_check.hbs +1 -1
  13. package/dist/views_static/components/page/index/page_test_story.hbs +1 -1
  14. package/package.json +2 -2
  15. package/src/assets/fixtures/banner/banner.json +7 -7
  16. package/src/assets/fixtures/button/button.json +142 -0
  17. package/src/assets/fixtures/button/link_button.json +153 -0
  18. package/src/assets/fixtures/label/label.json +65 -0
  19. package/src/assets/fixtures/mediaplayer/mediaplayer_button.json +40 -0
  20. package/src/assets/fixtures/mediaplayer/mediaplayer_snapshots.json +151 -0
  21. package/src/assets/fixtures/navigation/breadcrumb/breadcrumb.inc.json +8 -10
  22. package/src/assets/fixtures/navigation/breadcrumb/breadcrumb.json +113 -0
  23. package/src/assets/fixtures/page/metadatabox.inc.json +98 -0
  24. package/src/assets/fixtures/page/metadatabox.json +89 -16
  25. package/src/assets/fixtures/page/page.json +5 -4
  26. package/src/assets/fixtures/pagination/page_pagination.inc.json +157 -0
  27. package/src/assets/fixtures/pagination/page_pagination.json +251 -88
  28. package/src/assets/fixtures/site_header/site_header.inc.json +83 -0
  29. package/src/assets/fixtures/site_header/site_header.json +122 -0
  30. package/src/assets/fixtures/teaser/components/teaser_byline.json +35 -0
  31. package/src/assets/fixtures/teaser/components/teaser_headings.json +61 -0
  32. package/src/assets/fixtures/teaser/components/teaser_text.json +45 -0
  33. package/src/assets/fixtures/teaser/components/teaser_title.json +38 -0
  34. package/src/assets/fixtures/teaser/teaser_alternative.json +478 -0
  35. package/src/assets/fixtures/teaser/teaser_alternative_av.json +465 -0
  36. package/src/assets/fixtures/teaser/teaser_cluster.json +682 -0
  37. package/src/assets/fixtures/teaser/teaser_content_nav.json +532 -0
  38. package/src/assets/fixtures/teaser/teaser_event.json +284 -0
  39. package/src/assets/fixtures/teaser/teaser_indextext.json +180 -0
  40. package/src/assets/fixtures/teaser/teaser_podcast.json +75 -2
  41. package/src/assets/fixtures/teaser/teaser_poster.json +322 -0
  42. package/src/assets/fixtures/teaser/teaser_stage.json +145 -0
  43. package/src/assets/fixtures/teaser/teaser_standard.json +371 -0
  44. package/src/assets/fixtures/teaser/teaser_standard_av.json +285 -0
  45. package/src/assets/fixtures/teaser/teaser_ticker_alternative.json +156 -0
  46. package/src/assets/fixtures/teaser/teaser_ticker_standard.json +241 -0
  47. package/src/assets/fixtures/teaser/teaser_ticker_timeline.json +75 -28
  48. package/src/assets/js/utils.js +73 -0
  49. package/src/stories/basics/SnapshotStories.mdx +353 -0
  50. package/src/stories/views/components/button/button.mdx +3 -5
  51. package/src/stories/views/components/button/button.stories.js +71 -93
  52. package/src/stories/views/components/button/fixtures/button.json +1 -0
  53. package/src/stories/views/components/button/fixtures/link_button.json +1 -0
  54. package/src/stories/views/components/button/link_button.mdx +3 -5
  55. package/src/stories/views/components/button/link_button.stories.js +67 -97
  56. package/src/stories/views/components/dataPolicySettings/dataPolicySettingsDs.feature.js +47 -51
  57. package/src/stories/views/components/externalService/externalServiceDs.feature.js +24 -6
  58. package/src/stories/views/components/externalService/external_service.hbs +1 -1
  59. package/src/stories/views/components/externalService/external_service_with_datapolicy_check.hbs +1 -1
  60. package/src/stories/views/components/grid/grid.stories.js +3 -0
  61. package/src/stories/views/components/label/fixtures/label.json +1 -0
  62. package/src/stories/views/components/label/label.stories.js +31 -3
  63. package/src/stories/views/components/mediaplayer/fixtures/mediaplayer_button.json +1 -0
  64. package/src/stories/views/components/mediaplayer/fixtures/mediaplayer_snapshots.json +1 -0
  65. package/src/stories/views/components/mediaplayer/mediaplayer.stories.js +32 -12
  66. package/src/stories/views/components/mediaplayer/mediaplayer_button.stories.js +41 -34
  67. package/src/stories/views/components/navigation/breadcrumb/breadcrumb.stories.js +30 -29
  68. package/src/stories/views/components/navigation/breadcrumb/fixtures/breadcrumb.json +1 -0
  69. package/src/stories/views/components/page/components/metadatabox.stories.js +87 -23
  70. package/src/stories/views/components/page/fixtures/metadatabox.json +1 -1
  71. package/src/stories/views/components/page/index/page.data.js +10 -14
  72. package/src/stories/views/components/page/index/page.stories.js +3 -3
  73. package/src/stories/views/components/page/index/page_test_story.hbs +1 -1
  74. package/src/stories/views/components/pagination/fixtures/page_pagination.json +1 -1
  75. package/src/stories/views/components/pagination/page_pagination.data.js +2 -2
  76. package/src/stories/views/components/pagination/page_pagination.stories.js +45 -114
  77. package/src/stories/views/components/podcast/podcast_subscribe_button.stories.js +2 -2
  78. package/src/stories/views/components/site_header/fixtures/site_header.json +1 -0
  79. package/src/stories/views/components/site_header/header.stories.js +32 -17
  80. package/src/stories/views/components/teaser/cluster/teaser_cluster.stories.js +164 -44
  81. package/src/stories/views/components/teaser/components/fixtures/teaser_byline.json +1 -0
  82. package/src/stories/views/components/teaser/components/fixtures/teaser_headings.json +1 -0
  83. package/src/stories/views/components/teaser/components/fixtures/teaser_text.json +1 -0
  84. package/src/stories/views/components/teaser/components/fixtures/teaser_title.json +1 -0
  85. package/src/stories/views/components/teaser/components/teaser_byline.stories.js +32 -8
  86. package/src/stories/views/components/teaser/components/teaser_heading.stories.js +36 -38
  87. package/src/stories/views/components/teaser/components/teaser_text.stories.js +34 -23
  88. package/src/stories/views/components/teaser/components/teaser_title.stories.js +35 -23
  89. package/src/stories/views/components/teaser/content_nav/teaser_content_nav.stories.js +100 -33
  90. package/src/stories/views/components/teaser/fixtures/teaser_alternative.json +1 -0
  91. package/src/stories/views/components/teaser/fixtures/teaser_alternative_av.json +1 -0
  92. package/src/stories/views/components/teaser/fixtures/teaser_cluster.json +1 -0
  93. package/src/stories/views/components/teaser/fixtures/teaser_content_nav.json +1 -0
  94. package/src/stories/views/components/teaser/fixtures/teaser_event.json +1 -0
  95. package/src/stories/views/components/teaser/fixtures/teaser_indextext.json +1 -0
  96. package/src/stories/views/components/teaser/fixtures/teaser_podcast.json +1 -1
  97. package/src/stories/views/components/teaser/fixtures/teaser_poster.json +1 -0
  98. package/src/stories/views/components/teaser/fixtures/teaser_stage.json +1 -0
  99. package/src/stories/views/components/teaser/fixtures/teaser_standard.json +1 -0
  100. package/src/stories/views/components/teaser/fixtures/teaser_standard_av.json +1 -0
  101. package/src/stories/views/components/teaser/fixtures/teaser_ticker_alternative.json +1 -0
  102. package/src/stories/views/components/teaser/fixtures/teaser_ticker_standard.json +1 -0
  103. package/src/stories/views/components/teaser/fixtures/teaser_ticker_timeline.json +1 -1
  104. package/src/stories/views/components/teaser/podcast/podcast.stories.js +37 -25
  105. package/src/stories/views/components/teaser/teaser_alternativ.stories.js +124 -36
  106. package/src/stories/views/components/teaser/teaser_alternativ_av.stories.js +187 -36
  107. package/src/stories/views/components/teaser/teaser_indextext.stories.js +87 -18
  108. package/src/stories/views/components/teaser/teaser_poster.stories.js +87 -12
  109. package/src/stories/views/components/teaser/teaser_stage.stories.js +69 -12
  110. package/src/stories/views/components/teaser/teaser_standard.stories.js +182 -48
  111. package/src/stories/views/components/teaser/teaser_standard_av.stories.js +108 -31
  112. package/src/stories/views/components/teaser/teaser_standard_event.stories.js +122 -51
  113. package/src/stories/views/components/teaser/ticker/teaser_ticker_alternativ.stories.js +55 -11
  114. package/src/stories/views/components/teaser/ticker/teaser_ticker_standard.stories.js +77 -22
  115. package/src/stories/views/components/teaser/ticker/teaser_ticker_timeline.stories.js +35 -13
  116. package/tailwind.config.js +2 -1
  117. package/src/assets/fixtures/navigation/breadcrumb/breadcrumb_2_level.json +0 -15
  118. package/src/assets/fixtures/navigation/breadcrumb/breadcrumb_3_level.json +0 -19
  119. package/src/assets/fixtures/navigation/breadcrumb/breadcrumb_4_level.json +0 -23
  120. package/src/assets/fixtures/navigation/breadcrumb/breadcrumb_5_level.json +0 -27
  121. package/src/assets/fixtures/page/metadatabox_comments.json +0 -23
  122. package/src/assets/fixtures/page/metadatabox_more_authors.json +0 -43
  123. package/src/assets/fixtures/page/metadatabox_more_authors_comments.json +0 -47
  124. package/src/assets/fixtures/page/metadatabox_one_author.json +0 -34
  125. package/src/assets/fixtures/page/metadatabox_one_author_comments.json +0 -38
  126. package/src/assets/fixtures/page/metadatabox_one_author_without_picture.json +0 -24
  127. package/src/assets/fixtures/site_header/site_header_default.json +0 -26
  128. package/src/assets/fixtures/site_header/site_header_default_no_sticky.json +0 -9
  129. package/src/assets/fixtures/site_header/site_header_mit_submenu.json +0 -17
  130. package/src/assets/fixtures/site_header/site_header_mit_submenu_as_flyout.json +0 -17
  131. package/src/assets/fixtures/site_header/site_header_mit_submenu_as_flyout_no_sticky.json +0 -9
  132. package/src/assets/fixtures/site_header/site_header_mit_submenu_no_sticky.json +0 -9
  133. package/src/assets/fixtures/site_header/site_header_mit_top_topics.json +0 -20
  134. package/src/assets/fixtures/site_header/site_header_mit_top_topics_no_sticky.json +0 -9
  135. package/src/assets/fixtures/site_header/site_header_mit_warnung.json +0 -17
  136. package/src/assets/fixtures/site_header/site_header_mit_warnung_no_sticky.json +0 -9
  137. package/src/assets/fixtures/teaser/cluster_teaser_100.json +0 -21
  138. package/src/assets/fixtures/teaser/cluster_teaser_100_genre.json +0 -29
  139. package/src/assets/fixtures/teaser/cluster_teaser_100_image.json +0 -50
  140. package/src/assets/fixtures/teaser/cluster_teaser_33.json +0 -21
  141. package/src/assets/fixtures/teaser/cluster_teaser_33_genre.json +0 -42
  142. package/src/assets/fixtures/teaser/cluster_teaser_33_image.json +0 -69
  143. package/src/assets/fixtures/teaser/cluster_teaser_33_long_title.json +0 -29
  144. package/src/assets/fixtures/teaser/cluster_teaser_50.json +0 -21
  145. package/src/assets/fixtures/teaser/cluster_teaser_50_genre.json +0 -42
  146. package/src/assets/fixtures/teaser/cluster_teaser_50_image.json +0 -69
  147. package/src/assets/fixtures/teaser/cluster_teaser_Podcast_Channel.json +0 -67
  148. package/src/assets/fixtures/teaser/cluster_teaser_extern_100.json +0 -29
  149. package/src/assets/fixtures/teaser/cluster_teaser_extern_33.json +0 -29
  150. package/src/assets/fixtures/teaser/cluster_teaser_extern_50.json +0 -29
  151. package/src/assets/fixtures/teaser/cluster_teaser_ordered_100.json +0 -29
  152. package/src/assets/fixtures/teaser/cluster_teaser_ordered_33.json +0 -29
  153. package/src/assets/fixtures/teaser/cluster_teaser_ordered_50.json +0 -29
  154. package/src/assets/fixtures/teaser/stage_teaser.json +0 -4
  155. package/src/assets/fixtures/teaser/stage_teaser_eventtag.json +0 -48
  156. package/src/assets/fixtures/teaser/stage_teaser_program.json +0 -55
  157. package/src/assets/fixtures/teaser/stage_teaser_wide.json +0 -23
  158. package/src/assets/fixtures/teaser/teaser_alternative_100_serif.json +0 -39
  159. package/src/assets/fixtures/teaser/teaser_alternative_100_serif_audio.json +0 -39
  160. package/src/assets/fixtures/teaser/teaser_alternative_100_serif_download.json +0 -46
  161. package/src/assets/fixtures/teaser/teaser_alternative_100_serif_featured_content.json +0 -38
  162. package/src/assets/fixtures/teaser/teaser_alternative_100_serif_link.json +0 -39
  163. package/src/assets/fixtures/teaser/teaser_alternative_100_serif_live.json +0 -39
  164. package/src/assets/fixtures/teaser/teaser_alternative_100_serif_single_event.json +0 -39
  165. package/src/assets/fixtures/teaser/teaser_alternative_100_serif_two_events.json +0 -43
  166. package/src/assets/fixtures/teaser/teaser_alternative_100_serif_video.json +0 -39
  167. package/src/assets/fixtures/teaser/teaser_alternative_50_serif.json +0 -39
  168. package/src/assets/fixtures/teaser/teaser_alternative_50_serif_audio.json +0 -39
  169. package/src/assets/fixtures/teaser/teaser_alternative_50_serif_download.json +0 -46
  170. package/src/assets/fixtures/teaser/teaser_alternative_50_serif_link.json +0 -39
  171. package/src/assets/fixtures/teaser/teaser_alternative_50_serif_live.json +0 -39
  172. package/src/assets/fixtures/teaser/teaser_alternative_50_serif_video.json +0 -39
  173. package/src/assets/fixtures/teaser/teaser_alternative_hero_serif.json +0 -27
  174. package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_audio.json +0 -27
  175. package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_comments.json +0 -27
  176. package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_label.json +0 -38
  177. package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_link.json +0 -14
  178. package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_live.json +0 -14
  179. package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_program.json +0 -14
  180. package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_video.json +0 -14
  181. package/src/assets/fixtures/teaser/teaser_alternative_without_teaserimage_50_serif.json +0 -26
  182. package/src/assets/fixtures/teaser/teaser_comments_without_teaserinfo.json +0 -14
  183. package/src/assets/fixtures/teaser/teaser_content_nav_dropdown_100.json +0 -10
  184. package/src/assets/fixtures/teaser/teaser_content_nav_dropdown_autosuggest_100.json +0 -14
  185. package/src/assets/fixtures/teaser/teaser_content_nav_dropdown_subgroups.json +0 -215
  186. package/src/assets/fixtures/teaser/teaser_content_nav_flow_100.json +0 -14
  187. package/src/assets/fixtures/teaser/teaser_content_nav_flow_autosuggest.json +0 -18
  188. package/src/assets/fixtures/teaser/teaser_content_nav_list_100.json +0 -14
  189. package/src/assets/fixtures/teaser/teaser_content_nav_list_autosuggest.json +0 -18
  190. package/src/assets/fixtures/teaser/teaser_content_nav_mixed_100.json +0 -187
  191. package/src/assets/fixtures/teaser/teaser_content_nav_mixed_autosuggest.json +0 -14
  192. package/src/assets/fixtures/teaser/teaser_indextext_100_accented.json +0 -26
  193. package/src/assets/fixtures/teaser/teaser_indextext_100_boxed.json +0 -26
  194. package/src/assets/fixtures/teaser/teaser_indextext_100_highlighted.json +0 -26
  195. package/src/assets/fixtures/teaser/teaser_indextext_50_accented.json +0 -26
  196. package/src/assets/fixtures/teaser/teaser_poster_lg.json +0 -39
  197. package/src/assets/fixtures/teaser/teaser_poster_md.json +0 -39
  198. package/src/assets/fixtures/teaser/teaser_poster_md_label.json +0 -60
  199. package/src/assets/fixtures/teaser/teaser_poster_md_label_byline.json +0 -50
  200. package/src/assets/fixtures/teaser/teaser_standard_100_serif.json +0 -14
  201. package/src/assets/fixtures/teaser/teaser_standard_100_serif_download.json +0 -21
  202. package/src/assets/fixtures/teaser/teaser_standard_100_serif_link.json +0 -14
  203. package/src/assets/fixtures/teaser/teaser_standard_100_serif_program.json +0 -14
  204. package/src/assets/fixtures/teaser/teaser_standard_100_serif_single_event.json +0 -22
  205. package/src/assets/fixtures/teaser/teaser_standard_100_serif_two_events.json +0 -26
  206. package/src/assets/fixtures/teaser/teaser_standard_25_serif.json +0 -35
  207. package/src/assets/fixtures/teaser/teaser_standard_25_serif_audio.json +0 -35
  208. package/src/assets/fixtures/teaser/teaser_standard_25_serif_audio_livestream.json +0 -35
  209. package/src/assets/fixtures/teaser/teaser_standard_25_serif_link.json +0 -31
  210. package/src/assets/fixtures/teaser/teaser_standard_25_serif_live.json +0 -35
  211. package/src/assets/fixtures/teaser/teaser_standard_25_serif_podcast.json +0 -35
  212. package/src/assets/fixtures/teaser/teaser_standard_25_serif_video.json +0 -35
  213. package/src/assets/fixtures/teaser/teaser_standard_33_long_geotag.json +0 -22
  214. package/src/assets/fixtures/teaser/teaser_standard_33_serif.json +0 -14
  215. package/src/assets/fixtures/teaser/teaser_standard_33_serif_link.json +0 -14
  216. package/src/assets/fixtures/teaser/teaser_standard_33_serif_multiple_events.json +0 -36
  217. package/src/assets/fixtures/teaser/teaser_standard_33_serif_single_event.json +0 -18
  218. package/src/assets/fixtures/teaser/teaser_standard_33_serif_single_event_status.json +0 -22
  219. package/src/assets/fixtures/teaser/teaser_standard_33_serif_two_events.json +0 -22
  220. package/src/assets/fixtures/teaser/teaser_standard_50_serif.json +0 -14
  221. package/src/assets/fixtures/teaser/teaser_standard_50_serif_audio.json +0 -14
  222. package/src/assets/fixtures/teaser/teaser_standard_50_serif_audio_livestream.json +0 -14
  223. package/src/assets/fixtures/teaser/teaser_standard_50_serif_download.json +0 -21
  224. package/src/assets/fixtures/teaser/teaser_standard_50_serif_featured_content.json +0 -17
  225. package/src/assets/fixtures/teaser/teaser_standard_50_serif_link.json +0 -14
  226. package/src/assets/fixtures/teaser/teaser_standard_50_serif_link_two_click.json +0 -22
  227. package/src/assets/fixtures/teaser/teaser_standard_50_serif_live.json +0 -22
  228. package/src/assets/fixtures/teaser/teaser_standard_50_serif_podcast.json +0 -14
  229. package/src/assets/fixtures/teaser/teaser_standard_50_serif_single_event.json +0 -17
  230. package/src/assets/fixtures/teaser/teaser_standard_50_serif_video.json +0 -14
  231. package/src/assets/fixtures/teaser/teaser_standard_66_serif_single_event.json +0 -25
  232. package/src/assets/fixtures/teaser/teaser_standard_hero_serif.json +0 -4
  233. package/src/assets/fixtures/teaser/teaser_standard_hero_serif_comments.json +0 -4
  234. package/src/assets/fixtures/teaser/teaser_standard_hero_serif_label.json +0 -17
  235. package/src/assets/fixtures/teaser/teaser_standard_hero_serif_link.json +0 -4
  236. package/src/assets/fixtures/teaser/teaser_standard_without_teaserimage_25_serif.json +0 -22
  237. package/src/assets/fixtures/teaser/teaser_standard_without_teaserimage_50_serif.json +0 -14
  238. package/src/assets/fixtures/teaser/ticker_teaser_alternativ_100.json +0 -54
  239. package/src/assets/fixtures/teaser/ticker_teaser_alternativ_hero.json +0 -42
  240. package/src/assets/fixtures/teaser/ticker_teaser_alternativ_hero_audio.json +0 -42
  241. package/src/assets/fixtures/teaser/ticker_teaser_standard_100.json +0 -37
  242. package/src/assets/fixtures/teaser/ticker_teaser_standard_25.json +0 -50
  243. package/src/assets/fixtures/teaser/ticker_teaser_standard_33.json +0 -37
  244. package/src/assets/fixtures/teaser/ticker_teaser_standard_50.json +0 -37
  245. package/src/assets/fixtures/teaser/ticker_teaser_standard_hero.json +0 -25
  246. package/src/assets/fixtures/teaser/ticker_teaser_standard_hero_audio.json +0 -25
  247. package/src/stories/views/components/navigation/breadcrumb/fixtures/breadcrumb_2_level.json +0 -1
  248. package/src/stories/views/components/navigation/breadcrumb/fixtures/breadcrumb_3_level.json +0 -1
  249. package/src/stories/views/components/navigation/breadcrumb/fixtures/breadcrumb_4_level.json +0 -1
  250. package/src/stories/views/components/navigation/breadcrumb/fixtures/breadcrumb_5_level.json +0 -1
  251. package/src/stories/views/components/page/fixtures/metadatabox_comments.json +0 -1
  252. package/src/stories/views/components/page/fixtures/metadatabox_more_authors.json +0 -1
  253. package/src/stories/views/components/page/fixtures/metadatabox_more_authors_comments.json +0 -1
  254. package/src/stories/views/components/page/fixtures/metadatabox_one_author.json +0 -1
  255. package/src/stories/views/components/page/fixtures/metadatabox_one_author_comments.json +0 -1
  256. package/src/stories/views/components/page/fixtures/metadatabox_one_author_without_picture.json +0 -1
  257. package/src/stories/views/components/site_header/fixtures/site_header_default.json +0 -1
  258. package/src/stories/views/components/site_header/fixtures/site_header_default_no_sticky.json +0 -1
  259. package/src/stories/views/components/site_header/fixtures/site_header_mit_submenu.json +0 -1
  260. package/src/stories/views/components/site_header/fixtures/site_header_mit_submenu_asFlyout_no_sticky.json +0 -1
  261. package/src/stories/views/components/site_header/fixtures/site_header_mit_submenu_as_flyout.json +0 -1
  262. package/src/stories/views/components/site_header/fixtures/site_header_mit_submenu_as_flyout_no_sticky.json +0 -1
  263. package/src/stories/views/components/site_header/fixtures/site_header_mit_submenu_no_sticky.json +0 -1
  264. package/src/stories/views/components/site_header/fixtures/site_header_mit_top_topics.json +0 -1
  265. package/src/stories/views/components/site_header/fixtures/site_header_mit_top_topics_no_sticky.json +0 -1
  266. package/src/stories/views/components/site_header/fixtures/site_header_mit_warnung.json +0 -1
  267. package/src/stories/views/components/site_header/fixtures/site_header_mit_warnung_no_sticky.json +0 -1
  268. package/src/stories/views/components/teaser/fixtures/cluster_teaser_100.json +0 -1
  269. package/src/stories/views/components/teaser/fixtures/cluster_teaser_100_genre.json +0 -1
  270. package/src/stories/views/components/teaser/fixtures/cluster_teaser_100_image.json +0 -1
  271. package/src/stories/views/components/teaser/fixtures/cluster_teaser_33.json +0 -1
  272. package/src/stories/views/components/teaser/fixtures/cluster_teaser_33_genre.json +0 -1
  273. package/src/stories/views/components/teaser/fixtures/cluster_teaser_33_image.json +0 -1
  274. package/src/stories/views/components/teaser/fixtures/cluster_teaser_33_long_title.json +0 -1
  275. package/src/stories/views/components/teaser/fixtures/cluster_teaser_50.json +0 -1
  276. package/src/stories/views/components/teaser/fixtures/cluster_teaser_50_genre.json +0 -1
  277. package/src/stories/views/components/teaser/fixtures/cluster_teaser_50_image.json +0 -1
  278. package/src/stories/views/components/teaser/fixtures/cluster_teaser_Podcast_Channel.json +0 -1
  279. package/src/stories/views/components/teaser/fixtures/cluster_teaser_extern_100.json +0 -1
  280. package/src/stories/views/components/teaser/fixtures/cluster_teaser_extern_33.json +0 -1
  281. package/src/stories/views/components/teaser/fixtures/cluster_teaser_extern_50.json +0 -1
  282. package/src/stories/views/components/teaser/fixtures/cluster_teaser_ordered_100.json +0 -1
  283. package/src/stories/views/components/teaser/fixtures/cluster_teaser_ordered_33.json +0 -1
  284. package/src/stories/views/components/teaser/fixtures/cluster_teaser_ordered_50.json +0 -1
  285. package/src/stories/views/components/teaser/fixtures/stage_teaser.json +0 -1
  286. package/src/stories/views/components/teaser/fixtures/stage_teaser_eventtag.json +0 -1
  287. package/src/stories/views/components/teaser/fixtures/stage_teaser_program.json +0 -1
  288. package/src/stories/views/components/teaser/fixtures/stage_teaser_wide.json +0 -1
  289. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif.json +0 -1
  290. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_audio.json +0 -1
  291. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_download.json +0 -1
  292. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_featured_content.json +0 -1
  293. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_link.json +0 -1
  294. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_live.json +0 -1
  295. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_single_event.json +0 -1
  296. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_two_events.json +0 -1
  297. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_video.json +0 -1
  298. package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif.json +0 -1
  299. package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif_audio.json +0 -1
  300. package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif_download.json +0 -1
  301. package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif_link.json +0 -1
  302. package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif_live.json +0 -1
  303. package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif_video.json +0 -1
  304. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif.json +0 -1
  305. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_audio.json +0 -1
  306. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_comments.json +0 -1
  307. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_label.json +0 -1
  308. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_link.json +0 -1
  309. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_live.json +0 -1
  310. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_program.json +0 -1
  311. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_video.json +0 -1
  312. package/src/stories/views/components/teaser/fixtures/teaser_alternative_without_teaserimage_50_serif.json +0 -1
  313. package/src/stories/views/components/teaser/fixtures/teaser_comments_without_teaserinfo.json +0 -1
  314. package/src/stories/views/components/teaser/fixtures/teaser_content_nav_dropdown_100.json +0 -1
  315. package/src/stories/views/components/teaser/fixtures/teaser_content_nav_dropdown_autosuggest_100.json +0 -1
  316. package/src/stories/views/components/teaser/fixtures/teaser_content_nav_dropdown_subgroups.json +0 -1
  317. package/src/stories/views/components/teaser/fixtures/teaser_content_nav_flow_100.json +0 -1
  318. package/src/stories/views/components/teaser/fixtures/teaser_content_nav_flow_autosuggest.json +0 -1
  319. package/src/stories/views/components/teaser/fixtures/teaser_content_nav_list_100.json +0 -1
  320. package/src/stories/views/components/teaser/fixtures/teaser_content_nav_list_autosuggest.json +0 -1
  321. package/src/stories/views/components/teaser/fixtures/teaser_content_nav_mixed_100.json +0 -1
  322. package/src/stories/views/components/teaser/fixtures/teaser_content_nav_mixed_autosuggest.json +0 -1
  323. package/src/stories/views/components/teaser/fixtures/teaser_indextext_100_accented.json +0 -1
  324. package/src/stories/views/components/teaser/fixtures/teaser_indextext_100_boxed.json +0 -1
  325. package/src/stories/views/components/teaser/fixtures/teaser_indextext_100_highlighted.json +0 -1
  326. package/src/stories/views/components/teaser/fixtures/teaser_indextext_50_accented.json +0 -1
  327. package/src/stories/views/components/teaser/fixtures/teaser_poster_lg.json +0 -1
  328. package/src/stories/views/components/teaser/fixtures/teaser_poster_md.json +0 -1
  329. package/src/stories/views/components/teaser/fixtures/teaser_poster_md_label.json +0 -1
  330. package/src/stories/views/components/teaser/fixtures/teaser_poster_md_label_byline.json +0 -1
  331. package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif.json +0 -1
  332. package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif_download.json +0 -1
  333. package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif_link.json +0 -1
  334. package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif_program.json +0 -1
  335. package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif_single_event.json +0 -1
  336. package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif_two_events.json +0 -1
  337. package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif.json +0 -1
  338. package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif_audio.json +0 -1
  339. package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif_audio_livestream.json +0 -1
  340. package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif_link.json +0 -1
  341. package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif_live.json +0 -1
  342. package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif_podcast.json +0 -1
  343. package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif_video.json +0 -1
  344. package/src/stories/views/components/teaser/fixtures/teaser_standard_33_long_geotag.json +0 -1
  345. package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif.json +0 -1
  346. package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif_link.json +0 -1
  347. package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif_multiple_events.json +0 -1
  348. package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif_single_event.json +0 -1
  349. package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif_single_event_status.json +0 -1
  350. package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif_two_events.json +0 -1
  351. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif.json +0 -1
  352. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_audio.json +0 -1
  353. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_audio_livestream.json +0 -1
  354. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_download.json +0 -1
  355. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_featured_content.json +0 -1
  356. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_link.json +0 -1
  357. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_link_two_click.json +0 -1
  358. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_live.json +0 -1
  359. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_podcast.json +0 -1
  360. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_single_event.json +0 -1
  361. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_video.json +0 -1
  362. package/src/stories/views/components/teaser/fixtures/teaser_standard_66_serif_single_event.json +0 -1
  363. package/src/stories/views/components/teaser/fixtures/teaser_standard_hero_serif.json +0 -1
  364. package/src/stories/views/components/teaser/fixtures/teaser_standard_hero_serif_comments.json +0 -1
  365. package/src/stories/views/components/teaser/fixtures/teaser_standard_hero_serif_label.json +0 -1
  366. package/src/stories/views/components/teaser/fixtures/teaser_standard_hero_serif_link.json +0 -1
  367. package/src/stories/views/components/teaser/fixtures/teaser_standard_without_teaserimage_25_serif.json +0 -1
  368. package/src/stories/views/components/teaser/fixtures/teaser_standard_without_teaserimage_50_serif.json +0 -1
  369. package/src/stories/views/components/teaser/fixtures/ticker_teaser_alternativ_100.json +0 -1
  370. package/src/stories/views/components/teaser/fixtures/ticker_teaser_alternativ_hero.json +0 -1
  371. package/src/stories/views/components/teaser/fixtures/ticker_teaser_alternativ_hero_audio.json +0 -1
  372. package/src/stories/views/components/teaser/fixtures/ticker_teaser_standard_100.json +0 -1
  373. package/src/stories/views/components/teaser/fixtures/ticker_teaser_standard_25.json +0 -1
  374. package/src/stories/views/components/teaser/fixtures/ticker_teaser_standard_33.json +0 -1
  375. package/src/stories/views/components/teaser/fixtures/ticker_teaser_standard_50.json +0 -1
  376. package/src/stories/views/components/teaser/fixtures/ticker_teaser_standard_hero.json +0 -1
  377. package/src/stories/views/components/teaser/fixtures/ticker_teaser_standard_hero_audio.json +0 -1
@@ -1,19 +1,92 @@
1
1
  {
2
- "_showDate": true,
3
- "hasMoreThanOneAuthor": false,
4
- "hasDwellTime": true,
5
- "documentModificationDate": {
6
- "isModificationDate": false,
7
- "isPublicationDate": true,
8
- "htmlDateTime": "2024-02-15T19:30+0200",
9
- "date": "15.02.24",
10
- "time": "19:30"
2
+ "config": {
3
+ "template": "default"
11
4
  },
12
- "socialSharing": {
13
- "twitterLink": "/twitterLink-url",
14
- "facebookLink": "/facebookLink-url",
15
- "whatsappLink": "/whatsappLink-url",
16
- "mailtoLink": "/mailtoLink-url",
17
- "copyToClipboardLink": "/copyToClipboard-url"
5
+ "metadatabox": {
6
+ "config": {
7
+ "css": "w-[724px] mx-auto"
8
+ },
9
+ "args": {
10
+ "@->jsoninclude": "page/metadatabox.inc.json",
11
+ "@->contentpath": "default"
12
+ }
13
+ },
14
+ "metadatabox_with_comments": {
15
+ "config": {
16
+ "css": "w-[724px] mx-auto"
17
+ },
18
+ "args": {
19
+ "@->jsoninclude": "page/metadatabox.inc.json",
20
+ "@->contentpath": "default",
21
+ "@->extends": {
22
+ "userComments": {
23
+ "HasOneComment": false,
24
+ "quantity": "117"
25
+ }
26
+ }
27
+ }
28
+ },
29
+ "metadatabox_with_one_author": {
30
+ "config": {
31
+ "css": "w-[724px] mx-auto"
32
+ },
33
+ "args": {
34
+ "@->jsoninclude": "page/metadatabox.inc.json",
35
+ "@->contentpath": "with_author"
36
+ }
37
+ },
38
+ "metadatabox_with_one_author_and_comments": {
39
+ "config": {
40
+ "css": "w-[724px] mx-auto"
41
+ },
42
+ "args": {
43
+ "@->jsoninclude": "page/metadatabox.inc.json",
44
+ "@->contentpath": "with_author",
45
+ "@->extends": {
46
+ "userComments": {
47
+ "HasOneComment": false,
48
+ "quantity": "117"
49
+ }
50
+ }
51
+ }
52
+ },
53
+ "metadatabox_with_one_author_and_without_picture": {
54
+ "config": {
55
+ "css": "w-[724px] mx-auto"
56
+ },
57
+ "args": {
58
+ "@->jsoninclude": "page/metadatabox.inc.json",
59
+ "@->contentpath": "with_author",
60
+ "@->overrides": [
61
+ {
62
+ "@->contentpath": "authorImage",
63
+ "@->value": {}
64
+ }
65
+ ]
66
+ }
67
+ },
68
+ "metadatabox_with_more_authors": {
69
+ "config": {
70
+ "css": "w-[724px] mx-auto"
71
+ },
72
+ "args": {
73
+ "@->jsoninclude": "page/metadatabox.inc.json",
74
+ "@->contentpath": "with_more_authors"
75
+ }
76
+ },
77
+ "metadatabox_with_more_authors_and_comments": {
78
+ "config": {
79
+ "css": "w-[724px] mx-auto"
80
+ },
81
+ "args": {
82
+ "@->jsoninclude": "page/metadatabox.inc.json",
83
+ "@->contentpath": "with_more_authors",
84
+ "@->extends": {
85
+ "userComments": {
86
+ "HasOneComment": false,
87
+ "quantity": "117"
88
+ }
89
+ }
90
+ }
18
91
  }
19
- }
92
+ }
@@ -1,8 +1,9 @@
1
1
  {
2
- "teaser_standard_50_audio":{
3
- "@->jsoninclude": "teaser/teaser_standard_50_serif_audio.json"
2
+ "teaser_standard_50_audio": {
3
+ "@->jsoninclude": "teaser/teaser_standard_av.json",
4
+ "@->contentpath": "group_50.audio_ondemand.args"
4
5
  },
5
- "teaser_podcast_50":{
6
+ "teaser_podcast_50": {
6
7
  "@->jsoninclude": "teaser/teaser_podcast_50.json"
7
8
  }
8
- }
9
+ }
@@ -0,0 +1,157 @@
1
+ {
2
+ "default": {
3
+ "hasOpenSubNavigation": false,
4
+ "_useSticky": true,
5
+ "brandNavigationItems": {
6
+ "@->jsoninclude": "/site_header/brandNavigation.inc.json"
7
+ },
8
+ "serviceNavigationSSILinks": {
9
+ "@->jsoninclude": "/site_header/serviceNavigation.inc.json"
10
+ },
11
+ "sectionNavigationSSILinks": {
12
+ "@->jsoninclude": "/site_header/sectionNavigation.inc.json"
13
+ },
14
+ "contentNav": {
15
+ "@->jsoninclude": "/teaser/teasers.inc.json",
16
+ "@->contentpath": "teaserContentNav.contentNav",
17
+ "@->overrides": [
18
+ {
19
+ "@->contentpath": "isDropdown",
20
+ "@->value": true
21
+ }
22
+ ]
23
+ },
24
+ "moreThanOnePage": true,
25
+ "onlyThreePages": false,
26
+ "onlyTwoPages": false,
27
+ "firstPage": true,
28
+ "secondPage": false,
29
+ "notLastButOnePage": false,
30
+ "notLastPage": false,
31
+ "firstPageItemLink": {
32
+ "url": "firstPage"
33
+ },
34
+ "nextItemLink": {
35
+ "url": "nextItem"
36
+ },
37
+ "previousItemLink": {
38
+ "url": "previousItem"
39
+ },
40
+ "lastPageItemLink": {
41
+ "url": "lastPage"
42
+ },
43
+ "lastButOnePageItemLink": {
44
+ "url": "LastButOnePage"
45
+ },
46
+ "totalPages": 4,
47
+ "currentPage": 2,
48
+ "currentPageIndex": 0,
49
+ "currentPageValid": true,
50
+ "pageEntries": [
51
+ {
52
+ "teaser_alternativ_100_serif": {
53
+ "@->jsoninclude": "teaser/teaser_alternative.json",
54
+ "@->contentpath": "group_100.100.args"
55
+ },
56
+ "teaser_alternativ_100_serif_audio": {
57
+ "@->jsoninclude": "teaser/teaser_alternative_av.json",
58
+ "@->contentpath": "group_100.audio_ondemand.args"
59
+ },
60
+ "teaser_alternativ_100_serif_download": {
61
+ "@->jsoninclude": "teaser/teaser_alternative.json",
62
+ "@->contentpath": "group_100.100_with_download.args"
63
+ },
64
+ "teaser_alternativ_100_serif_link": {
65
+ "@->jsoninclude": "teaser/teaser_alternative.json",
66
+ "@->contentpath": "group_100.100_with_external_link.args"
67
+ },
68
+ "teaser_alternativ_100_serif_live": {
69
+ "@->jsoninclude": "teaser/teaser_alternative_av.json",
70
+ "@->contentpath": "group_100.video_livestream.args"
71
+ },
72
+ "teaser_alternativ_100_serif_video": {
73
+ "@->jsoninclude": "teaser/teaser_alternative_av.json",
74
+ "@->contentpath": "group_100.video_ondemand.args"
75
+ }
76
+ },
77
+ {
78
+ "teaser_alternativ_100_serif_download": {
79
+ "@->jsoninclude": "teaser/teaser_alternative.json",
80
+ "@->contentpath": "group_100.100_with_download.args"
81
+ },
82
+ "teaser_alternativ_100_serif_download": {
83
+ "@->jsoninclude": "teaser/teaser_alternative.json",
84
+ "@->contentpath": "group_100.100_with_download.args"
85
+ },
86
+ "teaser_alternativ_100_serif_download": {
87
+ "@->jsoninclude": "teaser/teaser_alternative.json",
88
+ "@->contentpath": "group_100.100_with_download.args"
89
+ },
90
+ "teaser_alternativ_100_serif_download": {
91
+ "@->jsoninclude": "teaser/teaser_alternative.json",
92
+ "@->contentpath": "group_100.100_with_download.args"
93
+ },
94
+ "teaser_alternativ_100_serif_download": {
95
+ "@->jsoninclude": "teaser/teaser_alternative.json",
96
+ "@->contentpath": "group_100.100_with_download.args"
97
+ },
98
+ "teaser_alternativ_100_serif_download": {
99
+ "@->jsoninclude": "teaser/teaser_alternative.json",
100
+ "@->contentpath": "group_100.100_with_download.args"
101
+ }
102
+ },
103
+ {
104
+ "teaser_alternativ_100_serif_audio": {
105
+ "@->jsoninclude": "teaser/teaser_alternative_av.json",
106
+ "@->contentpath": "group_100.audio_ondemand.args"
107
+ },
108
+ "teaser_alternativ_100_serif_audio": {
109
+ "@->jsoninclude": "teaser/teaser_alternative_av.json",
110
+ "@->contentpath": "group_100.audio_ondemand.args"
111
+ },
112
+ "teaser_alternativ_100_serif_audio": {
113
+ "@->jsoninclude": "teaser/teaser_alternative_av.json",
114
+ "@->contentpath": "group_100.audio_ondemand.args"
115
+ },
116
+ "teaser_alternativ_100_serif_audio": {
117
+ "@->jsoninclude": "teaser/teaser_alternative_av.json",
118
+ "@->contentpath": "group_100.audio_ondemand.args"
119
+ },
120
+ "teaser_alternativ_100_serif_audio": {
121
+ "@->jsoninclude": "teaser/teaser_alternative_av.json",
122
+ "@->contentpath": "group_100.audio_ondemand.args"
123
+ },
124
+ "teaser_alternativ_100_serif_audio": {
125
+ "@->jsoninclude": "teaser/teaser_alternative_av.json",
126
+ "@->contentpath": "group_100.audio_ondemand.args"
127
+ }
128
+ },
129
+ {
130
+ "teaser_alternativ_100_serif_video": {
131
+ "@->jsoninclude": "teaser/teaser_alternative_av.json",
132
+ "@->contentpath": "group_100.video_ondemand.args"
133
+ },
134
+ "teaser_alternativ_100_serif_video": {
135
+ "@->jsoninclude": "teaser/teaser_alternative_av.json",
136
+ "@->contentpath": "group_100.video_ondemand.args"
137
+ },
138
+ "teaser_alternativ_100_serif_video": {
139
+ "@->jsoninclude": "teaser/teaser_alternative_av.json",
140
+ "@->contentpath": "group_100.video_ondemand.args"
141
+ },
142
+ "teaser_alternativ_100_serif_video": {
143
+ "@->jsoninclude": "teaser/teaser_alternative_av.json",
144
+ "@->contentpath": "group_100.video_ondemand.args"
145
+ },
146
+ "teaser_alternativ_100_serif_video": {
147
+ "@->jsoninclude": "teaser/teaser_alternative_av.json",
148
+ "@->contentpath": "group_100.video_ondemand.args"
149
+ },
150
+ "teaser_alternativ_100_serif_video": {
151
+ "@->jsoninclude": "teaser/teaser_alternative_av.json",
152
+ "@->contentpath": "group_100.video_ondemand.args"
153
+ }
154
+ }
155
+ ]
156
+ }
157
+ }
@@ -1,111 +1,274 @@
1
- {
2
- "moreThanOnePage": true,
3
- "onlyThreePages": false,
4
- "onlyTwoPages": false,
5
- "firstPage": true,
6
- "secondPage": false,
7
- "notLastButOnePage": false,
8
- "notLastPage": false,
9
- "firstPageItemLink" : {
10
- "url": "firstPage"
1
+ {
2
+ "config": {
3
+ "template": "default"
11
4
  },
12
- "nextItemLink" : {
13
- "url": "nextItem"
5
+ "four_pages_first": {
6
+ "config": {
7
+ "useAsSnapshot": false
8
+ },
9
+ "args": {
10
+ "@->jsoninclude": "pagination/page_pagination.inc.json",
11
+ "@->contentpath": "default"
12
+ }
14
13
  },
15
- "previousItemLink" : {
16
- "url": "previousItem"
14
+ "more_than_three_first": {
15
+ "args": {
16
+ "@->jsoninclude": "pagination/page_pagination.inc.json",
17
+ "@->contentpath": "default",
18
+ "@->overrides": [
19
+ {
20
+ "@->contentpath": "currentPageValid",
21
+ "@->value": true
22
+ },
23
+ {
24
+ "@->contentpath": "onlyThreePages",
25
+ "@->value": false
26
+ },
27
+ {
28
+ "@->contentpath": "onlyTwoPages",
29
+ "@->value": false
30
+ },
31
+ {
32
+ "@->contentpath": "secondPage",
33
+ "@->value": false
34
+ },
35
+ {
36
+ "@->contentpath": "firstPage",
37
+ "@->value": true
38
+ },
39
+ {
40
+ "@->contentpath": "notLastButOnePage",
41
+ "@->value": false
42
+ },
43
+ {
44
+ "@->contentpath": "notLastPage",
45
+ "@->value": false
46
+ },
47
+ {
48
+ "@->contentpath": "totalPages",
49
+ "@->value": 999
50
+ }
51
+ ]
52
+ }
17
53
  },
18
- "lastPageItemLink" : {
19
- "url": "lastPage"
54
+ "more_than_three_second": {
55
+ "args": {
56
+ "@->jsoninclude": "pagination/page_pagination.inc.json",
57
+ "@->contentpath": "default",
58
+ "@->overrides": [
59
+ {
60
+ "@->contentpath": "onlyThreePages",
61
+ "@->value": false
62
+ },
63
+ {
64
+ "@->contentpath": "onlyTwoPages",
65
+ "@->value": false
66
+ },
67
+ {
68
+ "@->contentpath": "secondPage",
69
+ "@->value": true
70
+ },
71
+ {
72
+ "@->contentpath": "firstPage",
73
+ "@->value": false
74
+ },
75
+ {
76
+ "@->contentpath": "notLastButOnePage",
77
+ "@->value": false
78
+ },
79
+ {
80
+ "@->contentpath": "notLastPage",
81
+ "@->value": false
82
+ },
83
+ {
84
+ "@->contentpath": "totalPages",
85
+ "@->value": 999
86
+ }
87
+ ]
88
+ }
20
89
  },
21
- "lastButOnePageItemLink" : {
22
- "url": "LastButOnePage"
90
+ "more_than_three_but_not_last": {
91
+ "args": {
92
+ "@->jsoninclude": "pagination/page_pagination.inc.json",
93
+ "@->contentpath": "default",
94
+ "@->overrides": [
95
+ {
96
+ "@->contentpath": "onlyThreePages",
97
+ "@->value": false
98
+ },
99
+ {
100
+ "@->contentpath": "onlyTwoPages",
101
+ "@->value": false
102
+ },
103
+ {
104
+ "@->contentpath": "secondPage",
105
+ "@->value": false
106
+ },
107
+ {
108
+ "@->contentpath": "firstPage",
109
+ "@->value": false
110
+ },
111
+ {
112
+ "@->contentpath": "notLastButOnePage",
113
+ "@->value": false
114
+ },
115
+ {
116
+ "@->contentpath": "notLastPage",
117
+ "@->value": true
118
+ },
119
+ {
120
+ "@->contentpath": "totalPages",
121
+ "@->value": 999
122
+ },
123
+ {
124
+ "@->contentpath": "currentPage",
125
+ "@->value": 998
126
+ }
127
+ ]
128
+ }
23
129
  },
24
- "totalPages": 4,
25
- "currentPage": 2,
26
- "currentPageIndex": 0,
27
- "currentPageValid": true,
28
- "pageEntries":[
29
- {
30
- "teaser_alternativ_100_serif":{
31
- "@->jsoninclude": "teaser/teaser_alternative_100_serif.json"
32
- },
33
- "teaser_alternativ_100_serif_audio":{
34
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_audio.json"
35
- },
36
- "teaser_alternativ_100_serif_download":{
37
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_download.json"
38
- },
39
- "teaser_alternativ_100_serif_link":{
40
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_link.json"
41
- },
42
- "teaser_alternativ_100_serif_live":{
43
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_live.json"
44
- },
45
- "teaser_alternativ_100_serif_video":{
46
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_video.json"
130
+ "more_than_three_one_but_not_last": {
131
+ "args": {
132
+ "@->jsoninclude": "pagination/page_pagination.inc.json",
133
+ "@->contentpath": "default",
134
+ "@->overrides": [
135
+ {
136
+ "@->contentpath": "onlyThreePages",
137
+ "@->value": false
138
+ },
139
+ {
140
+ "@->contentpath": "onlyTwoPages",
141
+ "@->value": false
142
+ },
143
+ {
144
+ "@->contentpath": "secondPage",
145
+ "@->value": false
146
+ },
147
+ {
148
+ "@->contentpath": "firstPage",
149
+ "@->value": false
150
+ },
151
+ {
152
+ "@->contentpath": "notLastButOnePage",
153
+ "@->value": true
154
+ },
155
+ {
156
+ "@->contentpath": "notLastPage",
157
+ "@->value": true
158
+ },
159
+ {
160
+ "@->contentpath": "totalPages",
161
+ "@->value": 999
162
+ },
163
+ {
164
+ "@->contentpath": "currentPage",
165
+ "@->value": 555
47
166
  }
48
- },
49
- {
50
- "teaser_alternativ_100_serif_download":{
51
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_download.json"
52
- },
53
- "teaser_alternativ_100_serif_download":{
54
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_download.json"
167
+ ]
168
+ }
169
+ },
170
+ "more_than_three_last": {
171
+ "args": {
172
+ "@->jsoninclude": "pagination/page_pagination.inc.json",
173
+ "@->contentpath": "default",
174
+ "@->overrides": [
175
+ {
176
+ "@->contentpath": "onlyThreePages",
177
+ "@->value": false
178
+ },
179
+ {
180
+ "@->contentpath": "onlyTwoPages",
181
+ "@->value": false
55
182
  },
56
- "teaser_alternativ_100_serif_download":{
57
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_download.json"
183
+ {
184
+ "@->contentpath": "secondPage",
185
+ "@->value": false
58
186
  },
59
- "teaser_alternativ_100_serif_download":{
60
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_download.json"
187
+ {
188
+ "@->contentpath": "firstPage",
189
+ "@->value": false
61
190
  },
62
- "teaser_alternativ_100_serif_download":{
63
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_download.json"
191
+ {
192
+ "@->contentpath": "notLastButOnePage",
193
+ "@->value": true
64
194
  },
65
- "teaser_alternativ_100_serif_download":{
66
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_download.json"
195
+ {
196
+ "@->contentpath": "notLastPage",
197
+ "@->value": false
198
+ },
199
+ {
200
+ "@->contentpath": "totalPages",
201
+ "@->value": 999
202
+ },
203
+ {
204
+ "@->contentpath": "currentPage",
205
+ "@->value": 999
67
206
  }
68
- },
69
- {
70
- "teaser_alternativ_100_serif_audio":{
71
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_audio.json"
207
+ ]
208
+ }
209
+ },
210
+ "only_two": {
211
+ "args": {
212
+ "@->jsoninclude": "pagination/page_pagination.inc.json",
213
+ "@->contentpath": "default",
214
+ "@->overrides": [
215
+ {
216
+ "@->contentpath": "onlyThreePages",
217
+ "@->value": false
72
218
  },
73
- "teaser_alternativ_100_serif_audio":{
74
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_audio.json"
219
+ {
220
+ "@->contentpath": "onlyTwoPages",
221
+ "@->value": true
75
222
  },
76
- "teaser_alternativ_100_serif_audio":{
77
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_audio.json"
223
+ {
224
+ "@->contentpath": "secondPage",
225
+ "@->value": false
78
226
  },
79
- "teaser_alternativ_100_serif_audio":{
80
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_audio.json"
227
+ {
228
+ "@->contentpath": "firstPage",
229
+ "@->value": true
81
230
  },
82
- "teaser_alternativ_100_serif_audio":{
83
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_audio.json"
231
+ {
232
+ "@->contentpath": "notLastButOnePage",
233
+ "@->value": false
84
234
  },
85
- "teaser_alternativ_100_serif_audio":{
86
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_audio.json"
235
+ {
236
+ "@->contentpath": "notLastPage",
237
+ "@->value": false
87
238
  }
88
- },
89
- {
90
- "teaser_alternativ_100_serif_video":{
91
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_video.json"
239
+ ]
240
+ }
241
+ },
242
+ "only_three": {
243
+ "args": {
244
+ "@->jsoninclude": "pagination/page_pagination.inc.json",
245
+ "@->contentpath": "default",
246
+ "@->overrides": [
247
+ {
248
+ "@->contentpath": "onlyThreePages",
249
+ "@->value": true
92
250
  },
93
- "teaser_alternativ_100_serif_video":{
94
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_video.json"
251
+ {
252
+ "@->contentpath": "onlyTwoPages",
253
+ "@->value": false
95
254
  },
96
- "teaser_alternativ_100_serif_video":{
97
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_video.json"
255
+ {
256
+ "@->contentpath": "secondPage",
257
+ "@->value": false
98
258
  },
99
- "teaser_alternativ_100_serif_video":{
100
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_video.json"
259
+ {
260
+ "@->contentpath": "firstPage",
261
+ "@->value": false
101
262
  },
102
- "teaser_alternativ_100_serif_video":{
103
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_video.json"
263
+ {
264
+ "@->contentpath": "notLastButOnePage",
265
+ "@->value": false
104
266
  },
105
- "teaser_alternativ_100_serif_video":{
106
- "@->jsoninclude": "teaser/teaser_alternative_100_serif_video.json"
267
+ {
268
+ "@->contentpath": "notLastPage",
269
+ "@->value": false
107
270
  }
108
- }
109
-
110
- ]
111
- }
271
+ ]
272
+ }
273
+ }
274
+ }