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.
- package/.storybook/main.js +3 -0
- package/.storybook/preview-head.html +3 -0
- package/CHANGELOG.md +24 -0
- package/dist/assets/icons/tagesschau/svgmap/pause.svg +4 -0
- package/dist/assets/icons/tagesschau/svgmap.min.svg +1 -1
- package/dist/assets/index.css +12 -3
- package/dist/assets/js/utils.js +73 -0
- package/dist/views/components/page/index/page_test_story.hbs +1 -1
- package/dist/views_static/components/page/index/page_test_story.hbs +1 -1
- package/package.json +2 -2
- package/src/assets/fixtures/banner/banner.json +7 -7
- package/src/assets/fixtures/button/button.json +142 -0
- package/src/assets/fixtures/button/link_button.json +153 -0
- package/src/assets/fixtures/label/label.json +65 -0
- package/src/assets/fixtures/mediaplayer/mediaplayer_button.json +40 -0
- package/src/assets/fixtures/mediaplayer/mediaplayer_snapshots.json +151 -0
- package/src/assets/fixtures/navigation/breadcrumb/breadcrumb.inc.json +8 -10
- package/src/assets/fixtures/navigation/breadcrumb/breadcrumb.json +113 -0
- package/src/assets/fixtures/page/metadatabox.inc.json +98 -0
- package/src/assets/fixtures/page/metadatabox.json +89 -16
- package/src/assets/fixtures/page/page.json +5 -4
- package/src/assets/fixtures/pagination/page_pagination.inc.json +157 -0
- package/src/assets/fixtures/pagination/page_pagination.json +251 -88
- package/src/assets/fixtures/site_header/site_header.inc.json +83 -0
- package/src/assets/fixtures/site_header/site_header.json +122 -0
- package/src/assets/fixtures/teaser/components/teaser_byline.json +35 -0
- package/src/assets/fixtures/teaser/components/teaser_headings.json +61 -0
- package/src/assets/fixtures/teaser/components/teaser_text.json +45 -0
- package/src/assets/fixtures/teaser/components/teaser_title.json +38 -0
- package/src/assets/fixtures/teaser/teaser_alternative.json +478 -0
- package/src/assets/fixtures/teaser/teaser_alternative_av.json +465 -0
- package/src/assets/fixtures/teaser/teaser_cluster.json +682 -0
- package/src/assets/fixtures/teaser/teaser_content_nav.json +532 -0
- package/src/assets/fixtures/teaser/teaser_event.json +284 -0
- package/src/assets/fixtures/teaser/teaser_indextext.json +180 -0
- package/src/assets/fixtures/teaser/teaser_podcast.json +75 -2
- package/src/assets/fixtures/teaser/teaser_poster.json +322 -0
- package/src/assets/fixtures/teaser/teaser_stage.json +145 -0
- package/src/assets/fixtures/teaser/teaser_standard.json +371 -0
- package/src/assets/fixtures/teaser/teaser_standard_av.json +285 -0
- package/src/assets/fixtures/teaser/teaser_ticker_alternative.json +156 -0
- package/src/assets/fixtures/teaser/teaser_ticker_standard.json +241 -0
- package/src/assets/fixtures/teaser/teaser_ticker_timeline.json +75 -28
- package/src/assets/icons/tagesschau/svgmap/pause.svg +4 -0
- package/src/assets/icons/tagesschau/svgmap.min.svg +1 -1
- package/src/assets/js/utils.js +73 -0
- package/src/stories/basics/SnapshotStories.mdx +353 -0
- package/src/stories/views/components/button/button.mdx +3 -5
- package/src/stories/views/components/button/button.stories.js +71 -93
- package/src/stories/views/components/button/fixtures/button.json +1 -0
- package/src/stories/views/components/button/fixtures/link_button.json +1 -0
- package/src/stories/views/components/button/link_button.mdx +3 -5
- package/src/stories/views/components/button/link_button.stories.js +67 -97
- package/src/stories/views/components/grid/grid.stories.js +3 -0
- package/src/stories/views/components/label/fixtures/label.json +1 -0
- package/src/stories/views/components/label/label.stories.js +31 -3
- package/src/stories/views/components/mediaplayer/fixtures/mediaplayer_button.json +1 -0
- package/src/stories/views/components/mediaplayer/fixtures/mediaplayer_snapshots.json +1 -0
- package/src/stories/views/components/mediaplayer/mediaplayer.stories.js +32 -12
- package/src/stories/views/components/mediaplayer/mediaplayer_button.stories.js +41 -34
- package/src/stories/views/components/navigation/breadcrumb/breadcrumb.stories.js +30 -29
- package/src/stories/views/components/navigation/breadcrumb/fixtures/breadcrumb.json +1 -0
- package/src/stories/views/components/page/components/metadatabox.stories.js +87 -23
- package/src/stories/views/components/page/fixtures/metadatabox.json +1 -1
- package/src/stories/views/components/page/index/page.data.js +10 -14
- package/src/stories/views/components/page/index/page.stories.js +3 -3
- package/src/stories/views/components/page/index/page_test_story.hbs +1 -1
- package/src/stories/views/components/pagination/fixtures/page_pagination.json +1 -1
- package/src/stories/views/components/pagination/page_pagination.data.js +2 -2
- package/src/stories/views/components/pagination/page_pagination.stories.js +45 -114
- package/src/stories/views/components/podcast/podcast_subscribe_button.stories.js +2 -2
- package/src/stories/views/components/site_header/fixtures/site_header.json +1 -0
- package/src/stories/views/components/site_header/header.stories.js +32 -17
- package/src/stories/views/components/teaser/cluster/teaser_cluster.stories.js +164 -44
- package/src/stories/views/components/teaser/components/fixtures/teaser_byline.json +1 -0
- package/src/stories/views/components/teaser/components/fixtures/teaser_headings.json +1 -0
- package/src/stories/views/components/teaser/components/fixtures/teaser_text.json +1 -0
- package/src/stories/views/components/teaser/components/fixtures/teaser_title.json +1 -0
- package/src/stories/views/components/teaser/components/teaser_byline.stories.js +32 -8
- package/src/stories/views/components/teaser/components/teaser_heading.stories.js +36 -38
- package/src/stories/views/components/teaser/components/teaser_text.stories.js +34 -23
- package/src/stories/views/components/teaser/components/teaser_title.stories.js +35 -23
- package/src/stories/views/components/teaser/content_nav/teaser_content_nav.stories.js +100 -33
- package/src/stories/views/components/teaser/fixtures/teaser_alternative.json +1 -0
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_av.json +1 -0
- package/src/stories/views/components/teaser/fixtures/teaser_cluster.json +1 -0
- package/src/stories/views/components/teaser/fixtures/teaser_content_nav.json +1 -0
- package/src/stories/views/components/teaser/fixtures/teaser_event.json +1 -0
- package/src/stories/views/components/teaser/fixtures/teaser_indextext.json +1 -0
- package/src/stories/views/components/teaser/fixtures/teaser_podcast.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_poster.json +1 -0
- package/src/stories/views/components/teaser/fixtures/teaser_stage.json +1 -0
- package/src/stories/views/components/teaser/fixtures/teaser_standard.json +1 -0
- package/src/stories/views/components/teaser/fixtures/teaser_standard_av.json +1 -0
- package/src/stories/views/components/teaser/fixtures/teaser_ticker_alternative.json +1 -0
- package/src/stories/views/components/teaser/fixtures/teaser_ticker_standard.json +1 -0
- package/src/stories/views/components/teaser/fixtures/teaser_ticker_timeline.json +1 -1
- package/src/stories/views/components/teaser/podcast/podcast.stories.js +37 -25
- package/src/stories/views/components/teaser/teaser_alternativ.stories.js +124 -36
- package/src/stories/views/components/teaser/teaser_alternativ_av.stories.js +187 -36
- package/src/stories/views/components/teaser/teaser_indextext.stories.js +87 -18
- package/src/stories/views/components/teaser/teaser_poster.stories.js +87 -12
- package/src/stories/views/components/teaser/teaser_stage.stories.js +69 -12
- package/src/stories/views/components/teaser/teaser_standard.stories.js +182 -48
- package/src/stories/views/components/teaser/teaser_standard_av.stories.js +108 -31
- package/src/stories/views/components/teaser/teaser_standard_event.stories.js +122 -51
- package/src/stories/views/components/teaser/ticker/teaser_ticker_alternativ.stories.js +55 -11
- package/src/stories/views/components/teaser/ticker/teaser_ticker_standard.stories.js +77 -22
- package/src/stories/views/components/teaser/ticker/teaser_ticker_timeline.stories.js +35 -13
- package/tailwind.config.js +2 -1
- package/src/assets/fixtures/navigation/breadcrumb/breadcrumb_2_level.json +0 -15
- package/src/assets/fixtures/navigation/breadcrumb/breadcrumb_3_level.json +0 -19
- package/src/assets/fixtures/navigation/breadcrumb/breadcrumb_4_level.json +0 -23
- package/src/assets/fixtures/navigation/breadcrumb/breadcrumb_5_level.json +0 -27
- package/src/assets/fixtures/page/metadatabox_comments.json +0 -23
- package/src/assets/fixtures/page/metadatabox_more_authors.json +0 -43
- package/src/assets/fixtures/page/metadatabox_more_authors_comments.json +0 -47
- package/src/assets/fixtures/page/metadatabox_one_author.json +0 -34
- package/src/assets/fixtures/page/metadatabox_one_author_comments.json +0 -38
- package/src/assets/fixtures/page/metadatabox_one_author_without_picture.json +0 -24
- package/src/assets/fixtures/site_header/site_header_default.json +0 -26
- package/src/assets/fixtures/site_header/site_header_default_no_sticky.json +0 -9
- package/src/assets/fixtures/site_header/site_header_mit_submenu.json +0 -17
- package/src/assets/fixtures/site_header/site_header_mit_submenu_as_flyout.json +0 -17
- package/src/assets/fixtures/site_header/site_header_mit_submenu_as_flyout_no_sticky.json +0 -9
- package/src/assets/fixtures/site_header/site_header_mit_submenu_no_sticky.json +0 -9
- package/src/assets/fixtures/site_header/site_header_mit_top_topics.json +0 -20
- package/src/assets/fixtures/site_header/site_header_mit_top_topics_no_sticky.json +0 -9
- package/src/assets/fixtures/site_header/site_header_mit_warnung.json +0 -17
- package/src/assets/fixtures/site_header/site_header_mit_warnung_no_sticky.json +0 -9
- package/src/assets/fixtures/teaser/cluster_teaser_100.json +0 -21
- package/src/assets/fixtures/teaser/cluster_teaser_100_genre.json +0 -29
- package/src/assets/fixtures/teaser/cluster_teaser_100_image.json +0 -50
- package/src/assets/fixtures/teaser/cluster_teaser_33.json +0 -21
- package/src/assets/fixtures/teaser/cluster_teaser_33_genre.json +0 -42
- package/src/assets/fixtures/teaser/cluster_teaser_33_image.json +0 -69
- package/src/assets/fixtures/teaser/cluster_teaser_33_long_title.json +0 -29
- package/src/assets/fixtures/teaser/cluster_teaser_50.json +0 -21
- package/src/assets/fixtures/teaser/cluster_teaser_50_genre.json +0 -42
- package/src/assets/fixtures/teaser/cluster_teaser_50_image.json +0 -69
- package/src/assets/fixtures/teaser/cluster_teaser_Podcast_Channel.json +0 -67
- package/src/assets/fixtures/teaser/cluster_teaser_extern_100.json +0 -29
- package/src/assets/fixtures/teaser/cluster_teaser_extern_33.json +0 -29
- package/src/assets/fixtures/teaser/cluster_teaser_extern_50.json +0 -29
- package/src/assets/fixtures/teaser/cluster_teaser_ordered_100.json +0 -29
- package/src/assets/fixtures/teaser/cluster_teaser_ordered_33.json +0 -29
- package/src/assets/fixtures/teaser/cluster_teaser_ordered_50.json +0 -29
- package/src/assets/fixtures/teaser/stage_teaser.json +0 -4
- package/src/assets/fixtures/teaser/stage_teaser_eventtag.json +0 -48
- package/src/assets/fixtures/teaser/stage_teaser_program.json +0 -55
- package/src/assets/fixtures/teaser/stage_teaser_wide.json +0 -23
- package/src/assets/fixtures/teaser/teaser_alternative_100_serif.json +0 -39
- package/src/assets/fixtures/teaser/teaser_alternative_100_serif_audio.json +0 -39
- package/src/assets/fixtures/teaser/teaser_alternative_100_serif_download.json +0 -46
- package/src/assets/fixtures/teaser/teaser_alternative_100_serif_featured_content.json +0 -38
- package/src/assets/fixtures/teaser/teaser_alternative_100_serif_link.json +0 -39
- package/src/assets/fixtures/teaser/teaser_alternative_100_serif_live.json +0 -39
- package/src/assets/fixtures/teaser/teaser_alternative_100_serif_single_event.json +0 -39
- package/src/assets/fixtures/teaser/teaser_alternative_100_serif_two_events.json +0 -43
- package/src/assets/fixtures/teaser/teaser_alternative_100_serif_video.json +0 -39
- package/src/assets/fixtures/teaser/teaser_alternative_50_serif.json +0 -39
- package/src/assets/fixtures/teaser/teaser_alternative_50_serif_audio.json +0 -39
- package/src/assets/fixtures/teaser/teaser_alternative_50_serif_download.json +0 -46
- package/src/assets/fixtures/teaser/teaser_alternative_50_serif_link.json +0 -39
- package/src/assets/fixtures/teaser/teaser_alternative_50_serif_live.json +0 -39
- package/src/assets/fixtures/teaser/teaser_alternative_50_serif_video.json +0 -39
- package/src/assets/fixtures/teaser/teaser_alternative_hero_serif.json +0 -27
- package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_audio.json +0 -27
- package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_comments.json +0 -27
- package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_label.json +0 -38
- package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_link.json +0 -14
- package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_live.json +0 -14
- package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_program.json +0 -14
- package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_video.json +0 -14
- package/src/assets/fixtures/teaser/teaser_alternative_without_teaserimage_50_serif.json +0 -26
- package/src/assets/fixtures/teaser/teaser_comments_without_teaserinfo.json +0 -14
- package/src/assets/fixtures/teaser/teaser_content_nav_dropdown_100.json +0 -10
- package/src/assets/fixtures/teaser/teaser_content_nav_dropdown_autosuggest_100.json +0 -14
- package/src/assets/fixtures/teaser/teaser_content_nav_dropdown_subgroups.json +0 -215
- package/src/assets/fixtures/teaser/teaser_content_nav_flow_100.json +0 -14
- package/src/assets/fixtures/teaser/teaser_content_nav_flow_autosuggest.json +0 -18
- package/src/assets/fixtures/teaser/teaser_content_nav_list_100.json +0 -14
- package/src/assets/fixtures/teaser/teaser_content_nav_list_autosuggest.json +0 -18
- package/src/assets/fixtures/teaser/teaser_content_nav_mixed_100.json +0 -187
- package/src/assets/fixtures/teaser/teaser_content_nav_mixed_autosuggest.json +0 -14
- package/src/assets/fixtures/teaser/teaser_indextext_100_accented.json +0 -26
- package/src/assets/fixtures/teaser/teaser_indextext_100_boxed.json +0 -26
- package/src/assets/fixtures/teaser/teaser_indextext_100_highlighted.json +0 -26
- package/src/assets/fixtures/teaser/teaser_indextext_50_accented.json +0 -26
- package/src/assets/fixtures/teaser/teaser_poster_lg.json +0 -39
- package/src/assets/fixtures/teaser/teaser_poster_md.json +0 -39
- package/src/assets/fixtures/teaser/teaser_poster_md_label.json +0 -60
- package/src/assets/fixtures/teaser/teaser_poster_md_label_byline.json +0 -50
- package/src/assets/fixtures/teaser/teaser_standard_100_serif.json +0 -14
- package/src/assets/fixtures/teaser/teaser_standard_100_serif_download.json +0 -21
- package/src/assets/fixtures/teaser/teaser_standard_100_serif_link.json +0 -14
- package/src/assets/fixtures/teaser/teaser_standard_100_serif_program.json +0 -14
- package/src/assets/fixtures/teaser/teaser_standard_100_serif_single_event.json +0 -22
- package/src/assets/fixtures/teaser/teaser_standard_100_serif_two_events.json +0 -26
- package/src/assets/fixtures/teaser/teaser_standard_25_serif.json +0 -35
- package/src/assets/fixtures/teaser/teaser_standard_25_serif_audio.json +0 -35
- package/src/assets/fixtures/teaser/teaser_standard_25_serif_audio_livestream.json +0 -35
- package/src/assets/fixtures/teaser/teaser_standard_25_serif_link.json +0 -31
- package/src/assets/fixtures/teaser/teaser_standard_25_serif_live.json +0 -35
- package/src/assets/fixtures/teaser/teaser_standard_25_serif_podcast.json +0 -35
- package/src/assets/fixtures/teaser/teaser_standard_25_serif_video.json +0 -35
- package/src/assets/fixtures/teaser/teaser_standard_33_long_geotag.json +0 -22
- package/src/assets/fixtures/teaser/teaser_standard_33_serif.json +0 -14
- package/src/assets/fixtures/teaser/teaser_standard_33_serif_link.json +0 -14
- package/src/assets/fixtures/teaser/teaser_standard_33_serif_multiple_events.json +0 -36
- package/src/assets/fixtures/teaser/teaser_standard_33_serif_single_event.json +0 -18
- package/src/assets/fixtures/teaser/teaser_standard_33_serif_single_event_status.json +0 -22
- package/src/assets/fixtures/teaser/teaser_standard_33_serif_two_events.json +0 -22
- package/src/assets/fixtures/teaser/teaser_standard_50_serif.json +0 -14
- package/src/assets/fixtures/teaser/teaser_standard_50_serif_audio.json +0 -14
- package/src/assets/fixtures/teaser/teaser_standard_50_serif_audio_livestream.json +0 -14
- package/src/assets/fixtures/teaser/teaser_standard_50_serif_download.json +0 -21
- package/src/assets/fixtures/teaser/teaser_standard_50_serif_featured_content.json +0 -17
- package/src/assets/fixtures/teaser/teaser_standard_50_serif_link.json +0 -14
- package/src/assets/fixtures/teaser/teaser_standard_50_serif_link_two_click.json +0 -22
- package/src/assets/fixtures/teaser/teaser_standard_50_serif_live.json +0 -22
- package/src/assets/fixtures/teaser/teaser_standard_50_serif_podcast.json +0 -14
- package/src/assets/fixtures/teaser/teaser_standard_50_serif_single_event.json +0 -17
- package/src/assets/fixtures/teaser/teaser_standard_50_serif_video.json +0 -14
- package/src/assets/fixtures/teaser/teaser_standard_66_serif_single_event.json +0 -25
- package/src/assets/fixtures/teaser/teaser_standard_hero_serif.json +0 -4
- package/src/assets/fixtures/teaser/teaser_standard_hero_serif_comments.json +0 -4
- package/src/assets/fixtures/teaser/teaser_standard_hero_serif_label.json +0 -17
- package/src/assets/fixtures/teaser/teaser_standard_hero_serif_link.json +0 -4
- package/src/assets/fixtures/teaser/teaser_standard_without_teaserimage_25_serif.json +0 -22
- package/src/assets/fixtures/teaser/teaser_standard_without_teaserimage_50_serif.json +0 -14
- package/src/assets/fixtures/teaser/ticker_teaser_alternativ_100.json +0 -54
- package/src/assets/fixtures/teaser/ticker_teaser_alternativ_hero.json +0 -42
- package/src/assets/fixtures/teaser/ticker_teaser_alternativ_hero_audio.json +0 -42
- package/src/assets/fixtures/teaser/ticker_teaser_standard_100.json +0 -37
- package/src/assets/fixtures/teaser/ticker_teaser_standard_25.json +0 -50
- package/src/assets/fixtures/teaser/ticker_teaser_standard_33.json +0 -37
- package/src/assets/fixtures/teaser/ticker_teaser_standard_50.json +0 -37
- package/src/assets/fixtures/teaser/ticker_teaser_standard_hero.json +0 -25
- package/src/assets/fixtures/teaser/ticker_teaser_standard_hero_audio.json +0 -25
- package/src/stories/views/components/navigation/breadcrumb/fixtures/breadcrumb_2_level.json +0 -1
- package/src/stories/views/components/navigation/breadcrumb/fixtures/breadcrumb_3_level.json +0 -1
- package/src/stories/views/components/navigation/breadcrumb/fixtures/breadcrumb_4_level.json +0 -1
- package/src/stories/views/components/navigation/breadcrumb/fixtures/breadcrumb_5_level.json +0 -1
- package/src/stories/views/components/page/fixtures/metadatabox_comments.json +0 -1
- package/src/stories/views/components/page/fixtures/metadatabox_more_authors.json +0 -1
- package/src/stories/views/components/page/fixtures/metadatabox_more_authors_comments.json +0 -1
- package/src/stories/views/components/page/fixtures/metadatabox_one_author.json +0 -1
- package/src/stories/views/components/page/fixtures/metadatabox_one_author_comments.json +0 -1
- package/src/stories/views/components/page/fixtures/metadatabox_one_author_without_picture.json +0 -1
- package/src/stories/views/components/site_header/fixtures/site_header_default.json +0 -1
- package/src/stories/views/components/site_header/fixtures/site_header_default_no_sticky.json +0 -1
- package/src/stories/views/components/site_header/fixtures/site_header_mit_submenu.json +0 -1
- package/src/stories/views/components/site_header/fixtures/site_header_mit_submenu_asFlyout_no_sticky.json +0 -1
- package/src/stories/views/components/site_header/fixtures/site_header_mit_submenu_as_flyout.json +0 -1
- package/src/stories/views/components/site_header/fixtures/site_header_mit_submenu_as_flyout_no_sticky.json +0 -1
- package/src/stories/views/components/site_header/fixtures/site_header_mit_submenu_no_sticky.json +0 -1
- package/src/stories/views/components/site_header/fixtures/site_header_mit_top_topics.json +0 -1
- package/src/stories/views/components/site_header/fixtures/site_header_mit_top_topics_no_sticky.json +0 -1
- package/src/stories/views/components/site_header/fixtures/site_header_mit_warnung.json +0 -1
- package/src/stories/views/components/site_header/fixtures/site_header_mit_warnung_no_sticky.json +0 -1
- package/src/stories/views/components/teaser/fixtures/cluster_teaser_100.json +0 -1
- package/src/stories/views/components/teaser/fixtures/cluster_teaser_100_genre.json +0 -1
- package/src/stories/views/components/teaser/fixtures/cluster_teaser_100_image.json +0 -1
- package/src/stories/views/components/teaser/fixtures/cluster_teaser_33.json +0 -1
- package/src/stories/views/components/teaser/fixtures/cluster_teaser_33_genre.json +0 -1
- package/src/stories/views/components/teaser/fixtures/cluster_teaser_33_image.json +0 -1
- package/src/stories/views/components/teaser/fixtures/cluster_teaser_33_long_title.json +0 -1
- package/src/stories/views/components/teaser/fixtures/cluster_teaser_50.json +0 -1
- package/src/stories/views/components/teaser/fixtures/cluster_teaser_50_genre.json +0 -1
- package/src/stories/views/components/teaser/fixtures/cluster_teaser_50_image.json +0 -1
- package/src/stories/views/components/teaser/fixtures/cluster_teaser_Podcast_Channel.json +0 -1
- package/src/stories/views/components/teaser/fixtures/cluster_teaser_extern_100.json +0 -1
- package/src/stories/views/components/teaser/fixtures/cluster_teaser_extern_33.json +0 -1
- package/src/stories/views/components/teaser/fixtures/cluster_teaser_extern_50.json +0 -1
- package/src/stories/views/components/teaser/fixtures/cluster_teaser_ordered_100.json +0 -1
- package/src/stories/views/components/teaser/fixtures/cluster_teaser_ordered_33.json +0 -1
- package/src/stories/views/components/teaser/fixtures/cluster_teaser_ordered_50.json +0 -1
- package/src/stories/views/components/teaser/fixtures/stage_teaser.json +0 -1
- package/src/stories/views/components/teaser/fixtures/stage_teaser_eventtag.json +0 -1
- package/src/stories/views/components/teaser/fixtures/stage_teaser_program.json +0 -1
- package/src/stories/views/components/teaser/fixtures/stage_teaser_wide.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_audio.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_download.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_featured_content.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_link.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_live.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_single_event.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_two_events.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_video.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif_audio.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif_download.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif_link.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif_live.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif_video.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_audio.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_comments.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_label.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_link.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_live.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_program.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_video.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_without_teaserimage_50_serif.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_comments_without_teaserinfo.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_content_nav_dropdown_100.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_content_nav_dropdown_autosuggest_100.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_content_nav_dropdown_subgroups.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_content_nav_flow_100.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_content_nav_flow_autosuggest.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_content_nav_list_100.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_content_nav_list_autosuggest.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_content_nav_mixed_100.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_content_nav_mixed_autosuggest.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_indextext_100_accented.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_indextext_100_boxed.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_indextext_100_highlighted.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_indextext_50_accented.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_poster_lg.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_poster_md.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_poster_md_label.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_poster_md_label_byline.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif_download.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif_link.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif_program.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif_single_event.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif_two_events.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif_audio.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif_audio_livestream.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif_link.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif_live.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif_podcast.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif_video.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_33_long_geotag.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif_link.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif_multiple_events.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif_single_event.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif_single_event_status.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif_two_events.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_audio.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_audio_livestream.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_download.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_featured_content.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_link.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_link_two_click.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_live.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_podcast.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_single_event.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_video.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_66_serif_single_event.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_hero_serif.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_hero_serif_comments.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_hero_serif_label.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_hero_serif_link.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_without_teaserimage_25_serif.json +0 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_without_teaserimage_50_serif.json +0 -1
- package/src/stories/views/components/teaser/fixtures/ticker_teaser_alternativ_100.json +0 -1
- package/src/stories/views/components/teaser/fixtures/ticker_teaser_alternativ_hero.json +0 -1
- package/src/stories/views/components/teaser/fixtures/ticker_teaser_alternativ_hero_audio.json +0 -1
- package/src/stories/views/components/teaser/fixtures/ticker_teaser_standard_100.json +0 -1
- package/src/stories/views/components/teaser/fixtures/ticker_teaser_standard_25.json +0 -1
- package/src/stories/views/components/teaser/fixtures/ticker_teaser_standard_33.json +0 -1
- package/src/stories/views/components/teaser/fixtures/ticker_teaser_standard_50.json +0 -1
- package/src/stories/views/components/teaser/fixtures/ticker_teaser_standard_hero.json +0 -1
- package/src/stories/views/components/teaser/fixtures/ticker_teaser_standard_hero_audio.json +0 -1
|
@@ -1,12 +1,29 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { getSnapshotsTemplate } from '/src/assets/js/utils.js'
|
|
2
|
+
import fixtures from 'components/teaser/components/fixtures/teaser_text.json'
|
|
2
3
|
|
|
3
|
-
const
|
|
4
|
-
|
|
4
|
+
const handlebars = require('hrHandlebars')
|
|
5
|
+
const hbsTemplates = []
|
|
6
|
+
hbsTemplates['default'] = handlebars.compile(`
|
|
7
|
+
{{> components/teaser/components/teaser_text }}
|
|
8
|
+
`)
|
|
9
|
+
const Template = (args) => {
|
|
10
|
+
return hbsTemplates['default']({ ...args })
|
|
5
11
|
}
|
|
6
12
|
|
|
13
|
+
const snapshotTemplate = (args) => {
|
|
14
|
+
return getSnapshotsTemplate({ hbsTemplates, args })
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
|
|
7
18
|
export default {
|
|
8
19
|
title: 'Komponenten/Teaser/Komponenten/Teasertext',
|
|
20
|
+
parameters: {
|
|
9
21
|
|
|
22
|
+
chromatic: {
|
|
23
|
+
diffThreshold: 0.3,
|
|
24
|
+
disableSnapshot: true
|
|
25
|
+
},
|
|
26
|
+
},
|
|
10
27
|
argTypes: {
|
|
11
28
|
_text: {
|
|
12
29
|
control: 'text',
|
|
@@ -33,42 +50,36 @@ export const TeasertextHero = {
|
|
|
33
50
|
render: Template.bind({}),
|
|
34
51
|
name: 'Teasertext Hero',
|
|
35
52
|
|
|
36
|
-
args:
|
|
37
|
-
_text: 'Woibbadinga i moan scho aa hallelujah sog i, luja, boarischer. Wiesn resch ja, wo samma denn etza, resch. Auffisteign a Hoiwe woaß, koa. Leonhardifahrt Weißwiaschd Baamwach hob liberalitas Bavariae ham hogg di hera.',
|
|
38
|
-
_size: 'hero',
|
|
39
|
-
_font: 'md:text-base md:leading-4 lg:leading-5',
|
|
40
|
-
},
|
|
53
|
+
args: fixtures["1_hero"].args,
|
|
41
54
|
}
|
|
42
55
|
|
|
43
56
|
export const Teasertext50 = {
|
|
44
57
|
render: Template.bind({}),
|
|
45
58
|
name: 'Teasertext 50',
|
|
46
59
|
|
|
47
|
-
args:
|
|
48
|
-
_text: 'Woibbadinga i moan scho aa hallelujah sog i, luja, boarischer. Wiesn resch ja, wo samma denn etza, resch. Auffisteign a Hoiwe woaß, koa. Leonhardifahrt Weißwiaschd Baamwach hob liberalitas Bavariae ham hogg di hera.',
|
|
49
|
-
_size: '50',
|
|
50
|
-
_font: 'md:text-base md:leading-4 lg:leading-5',
|
|
51
|
-
},
|
|
60
|
+
args: fixtures["2_50"].args,
|
|
52
61
|
}
|
|
53
62
|
|
|
54
63
|
export const Teasertext33 = {
|
|
55
64
|
render: Template.bind({}),
|
|
56
65
|
name: 'Teasertext 33',
|
|
57
66
|
|
|
58
|
-
args:
|
|
59
|
-
_text: 'Woibbadinga i moan scho aa hallelujah sog i, luja, boarischer. Wiesn resch ja, wo samma denn etza, resch. Auffisteign a Hoiwe woaß, koa. Leonhardifahrt Weißwiaschd Baamwach hob liberalitas Bavariae ham hogg di hera.',
|
|
60
|
-
_size: '33',
|
|
61
|
-
_font: 'md:text-base md:leading-4 lg:leading-5',
|
|
62
|
-
},
|
|
67
|
+
args: fixtures["3_33"].args,
|
|
63
68
|
}
|
|
64
69
|
|
|
65
70
|
export const Teasertext25 = {
|
|
66
71
|
render: Template.bind({}),
|
|
67
72
|
name: 'Teasertext 25',
|
|
68
73
|
|
|
69
|
-
args:
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
},
|
|
74
|
+
args: fixtures["4_25"].args,
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export const Snapshot = {
|
|
78
|
+
render: snapshotTemplate.bind({}),
|
|
79
|
+
name: 'Snapshot',
|
|
80
|
+
|
|
81
|
+
args: fixtures,
|
|
82
|
+
parameters: {
|
|
83
|
+
chromatic: { disableSnapshot: false },
|
|
84
|
+
}
|
|
74
85
|
}
|
|
@@ -1,14 +1,31 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { getSnapshotsTemplate } from '/src/assets/js/utils.js'
|
|
2
|
+
import fixtures from 'components/teaser/components/fixtures/teaser_title.json'
|
|
2
3
|
|
|
3
|
-
const
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
const handlebars = require('hrHandlebars')
|
|
5
|
+
const hbsTemplates = []
|
|
6
|
+
hbsTemplates['default'] = handlebars.compile(`
|
|
7
|
+
{{> components/teaser/components/teaser_title }}
|
|
8
|
+
`)
|
|
9
|
+
|
|
10
|
+
const Template = (args) => {
|
|
11
|
+
return hbsTemplates['default']({ ...args })
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const snapshotTemplate = (args) => {
|
|
15
|
+
return getSnapshotsTemplate({ hbsTemplates, args })
|
|
7
16
|
}
|
|
8
17
|
|
|
9
18
|
export default {
|
|
10
19
|
title: 'Komponenten/Teaser/Komponenten/Titel',
|
|
11
20
|
|
|
21
|
+
parameters: {
|
|
22
|
+
|
|
23
|
+
chromatic: {
|
|
24
|
+
diffThreshold: 0.3,
|
|
25
|
+
disableSnapshot: true
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
|
|
12
29
|
argTypes: {
|
|
13
30
|
_text: {
|
|
14
31
|
control: 'text',
|
|
@@ -52,34 +69,29 @@ export const TitelSerifHero = {
|
|
|
52
69
|
render: Template.bind({}),
|
|
53
70
|
name: 'Titel Serif - Hero',
|
|
54
71
|
|
|
55
|
-
args:
|
|
56
|
-
_text: 'Dies ist der Titel eines 100%-Teasers',
|
|
57
|
-
_size: 'hero',
|
|
58
|
-
_fontVariant: 'serif',
|
|
59
|
-
_teaserType: 'standard',
|
|
60
|
-
},
|
|
72
|
+
args: fixtures["1_hero"].args,
|
|
61
73
|
}
|
|
62
74
|
|
|
63
75
|
export const TitelSerifNormal = {
|
|
64
76
|
render: Template.bind({}),
|
|
65
77
|
name: 'Titel Serif - normal',
|
|
66
78
|
|
|
67
|
-
args:
|
|
68
|
-
_text: 'Dies ist der Titel eines 66%-, 50%- oder 33%-Teasers',
|
|
69
|
-
_size: '33',
|
|
70
|
-
_fontVariant: 'serif',
|
|
71
|
-
_teaserType: 'standard',
|
|
72
|
-
},
|
|
79
|
+
args: fixtures["2_normal"].args,
|
|
73
80
|
}
|
|
74
81
|
|
|
75
82
|
export const TitelSerifSmall = {
|
|
76
83
|
render: Template.bind({}),
|
|
77
84
|
name: 'Titel Serif - small',
|
|
78
85
|
|
|
79
|
-
args:
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
86
|
+
args: fixtures["3_small"].args,
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
export const Snapshot = {
|
|
90
|
+
render: snapshotTemplate.bind({}),
|
|
91
|
+
name: 'Snapshot',
|
|
92
|
+
|
|
93
|
+
args: fixtures,
|
|
94
|
+
parameters: {
|
|
95
|
+
chromatic: { disableSnapshot: false },
|
|
96
|
+
}
|
|
85
97
|
}
|
|
@@ -1,25 +1,18 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const Template = (args, { globals: { customConditionalToolbar } }) => {
|
|
18
|
-
// You can either use a function to create DOM elements or use a plain html string!
|
|
19
|
-
// return `<div>${label}</div>`;
|
|
20
|
-
let brand =
|
|
21
|
-
undefined !== customConditionalToolbar ? customConditionalToolbar['brands'] : 'hessenschau'
|
|
22
|
-
return teaser({ brand, ...args })
|
|
1
|
+
import { getSnapshotsTemplate } from '/src/assets/js/utils.js'
|
|
2
|
+
import fixtures from 'components/teaser/fixtures/teaser_content_nav.json'
|
|
3
|
+
|
|
4
|
+
const handlebars = require('hrHandlebars')
|
|
5
|
+
const hbsTemplates = []
|
|
6
|
+
hbsTemplates['default'] = handlebars.compile(`
|
|
7
|
+
{{> components/teaser/content_nav/teaser_content_nav }}
|
|
8
|
+
`)
|
|
9
|
+
|
|
10
|
+
const Template = (args) => {
|
|
11
|
+
return hbsTemplates['default']({ ...args })
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const snapshotTemplate = (args) => {
|
|
15
|
+
return getSnapshotsTemplate({ hbsTemplates, args })
|
|
23
16
|
}
|
|
24
17
|
|
|
25
18
|
export default {
|
|
@@ -30,6 +23,7 @@ export default {
|
|
|
30
23
|
|
|
31
24
|
chromatic: {
|
|
32
25
|
viewports: [360, 768, 1024],
|
|
26
|
+
disableSnapshot: true
|
|
33
27
|
},
|
|
34
28
|
},
|
|
35
29
|
|
|
@@ -74,9 +68,9 @@ export default {
|
|
|
74
68
|
|
|
75
69
|
decorators: [
|
|
76
70
|
(Story) => {
|
|
77
|
-
return `<div class="grid grid-page"
|
|
71
|
+
return `<div class="grid grid-page">
|
|
78
72
|
${Story()}
|
|
79
|
-
</div
|
|
73
|
+
</div>`
|
|
80
74
|
},
|
|
81
75
|
],
|
|
82
76
|
}
|
|
@@ -84,53 +78,126 @@ export default {
|
|
|
84
78
|
export const Liste = {
|
|
85
79
|
render: Template.bind({}),
|
|
86
80
|
name: 'Liste',
|
|
87
|
-
|
|
81
|
+
decorators: [
|
|
82
|
+
(Story) => {
|
|
83
|
+
return `<div class="grid grid-cols-12 py-6 col-full gap-x-6 gap-y-6 sm:px-9.5 sm:col-main">
|
|
84
|
+
${Story()}
|
|
85
|
+
</div>`
|
|
86
|
+
},
|
|
87
|
+
],
|
|
88
|
+
args: fixtures.group_100.list.args,
|
|
88
89
|
}
|
|
89
90
|
|
|
90
91
|
export const ListeMitFilter = {
|
|
91
92
|
render: Template.bind({}),
|
|
92
93
|
name: 'Liste mit Filter',
|
|
93
|
-
|
|
94
|
+
decorators: [
|
|
95
|
+
(Story) => {
|
|
96
|
+
return `<div class="grid grid-cols-12 py-6 col-full gap-x-6 gap-y-6 sm:px-9.5 sm:col-main">
|
|
97
|
+
${Story()}
|
|
98
|
+
</div>`
|
|
99
|
+
},
|
|
100
|
+
],
|
|
101
|
+
args: fixtures.group_100.list_autosuggest.args,
|
|
94
102
|
}
|
|
95
103
|
|
|
96
104
|
export const Fluss = {
|
|
97
105
|
render: Template.bind({}),
|
|
98
106
|
name: 'Fluss',
|
|
99
|
-
|
|
107
|
+
decorators: [
|
|
108
|
+
(Story) => {
|
|
109
|
+
return `<div class="grid grid-cols-12 py-6 col-full gap-x-6 gap-y-6 sm:px-9.5 sm:col-main">
|
|
110
|
+
${Story()}
|
|
111
|
+
</div>`
|
|
112
|
+
},
|
|
113
|
+
],
|
|
114
|
+
args: fixtures.group_100.flow.args,
|
|
100
115
|
}
|
|
101
116
|
|
|
102
117
|
export const FlussMitFilter = {
|
|
103
118
|
render: Template.bind({}),
|
|
104
119
|
name: 'Fluss mit Filter',
|
|
105
|
-
|
|
120
|
+
decorators: [
|
|
121
|
+
(Story) => {
|
|
122
|
+
return `<div class="grid grid-cols-12 py-6 col-full gap-x-6 gap-y-6 sm:px-9.5 sm:col-main">
|
|
123
|
+
${Story()}
|
|
124
|
+
</div>`
|
|
125
|
+
},
|
|
126
|
+
],
|
|
127
|
+
args: fixtures.group_100.flow_autosuggest.args,
|
|
106
128
|
}
|
|
107
129
|
|
|
108
130
|
export const Gemischt = {
|
|
109
131
|
render: Template.bind({}),
|
|
110
132
|
name: 'Gemischt',
|
|
111
|
-
|
|
133
|
+
decorators: [
|
|
134
|
+
(Story) => {
|
|
135
|
+
return `<div class="grid grid-cols-12 py-6 col-full gap-x-6 gap-y-6 sm:px-9.5 sm:col-main">
|
|
136
|
+
${Story()}
|
|
137
|
+
</div>`
|
|
138
|
+
},
|
|
139
|
+
],
|
|
140
|
+
args: fixtures.group_100.mixed.args,
|
|
112
141
|
}
|
|
113
142
|
|
|
114
143
|
export const GemischtMitFilter = {
|
|
115
144
|
render: Template.bind({}),
|
|
116
145
|
name: 'Gemischt mit Filter',
|
|
117
|
-
|
|
146
|
+
decorators: [
|
|
147
|
+
(Story) => {
|
|
148
|
+
return `<div class="grid grid-cols-12 py-6 col-full gap-x-6 gap-y-6 sm:px-9.5 sm:col-main">
|
|
149
|
+
${Story()}
|
|
150
|
+
</div>`
|
|
151
|
+
},
|
|
152
|
+
],
|
|
153
|
+
args: fixtures.group_100.mixed_autosuggest.args,
|
|
118
154
|
}
|
|
119
155
|
|
|
120
156
|
export const Dropdown = {
|
|
121
157
|
render: Template.bind({}),
|
|
122
158
|
name: 'Dropdown',
|
|
123
|
-
|
|
159
|
+
decorators: [
|
|
160
|
+
(Story) => {
|
|
161
|
+
return `<div class="grid grid-cols-12 py-6 col-full gap-x-6 gap-y-6 sm:px-9.5 sm:col-main">
|
|
162
|
+
${Story()}
|
|
163
|
+
</div>`
|
|
164
|
+
},
|
|
165
|
+
],
|
|
166
|
+
args: fixtures.group_100.dropdown.args,
|
|
124
167
|
}
|
|
125
168
|
|
|
126
169
|
export const DropdownMitFilter = {
|
|
127
170
|
render: Template.bind({}),
|
|
128
171
|
name: 'Dropdown mit Filter',
|
|
129
|
-
|
|
172
|
+
decorators: [
|
|
173
|
+
(Story) => {
|
|
174
|
+
return `<div class="grid grid-cols-12 py-6 col-full gap-x-6 gap-y-6 sm:px-9.5 sm:col-main">
|
|
175
|
+
${Story()}
|
|
176
|
+
</div>`
|
|
177
|
+
},
|
|
178
|
+
],
|
|
179
|
+
args: fixtures.group_100.dropdown_autosuggest.args
|
|
130
180
|
}
|
|
131
181
|
|
|
132
182
|
export const DropdownMitSubgruppen = {
|
|
133
183
|
render: Template.bind({}),
|
|
134
184
|
name: 'Dropdown mit Subgruppen',
|
|
135
|
-
|
|
185
|
+
decorators: [
|
|
186
|
+
(Story) => {
|
|
187
|
+
return `<div class="grid grid-cols-12 py-6 col-full gap-x-6 gap-y-6 sm:px-9.5 sm:col-main">
|
|
188
|
+
${Story()}
|
|
189
|
+
</div>`
|
|
190
|
+
},
|
|
191
|
+
],
|
|
192
|
+
args: fixtures.group_100.dropdown_with_subgroups.args
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
export const Snapshot = {
|
|
196
|
+
render: snapshotTemplate.bind({}),
|
|
197
|
+
name: 'Snapshot',
|
|
198
|
+
|
|
199
|
+
args: fixtures,
|
|
200
|
+
parameters: {
|
|
201
|
+
chromatic: { disableSnapshot: false },
|
|
202
|
+
}
|
|
136
203
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"config":{"template":"default","path":"args.logicItem.includeModel","layout":"grid","renderSnapshotsWrapper":false},"group_hero":{"hero":{"args":{"isSsi":true,"logicItem":{"includePath":"components/teaser/teaser_alternative","includeModel":{"byline":"Byline","title":"Abgeschobene Geschwister aus Syrien zurück in Wolfhagen","topline":"Überglücklich, aber ohne Mama","headingFontVariant":"serif","extendedTitle":"","teaserType":"alternative","teaserSize":"hero","realTeaserSize":"hero","isMobile1to1":false,"teaserDate":{"htmlDateTime":"2022-04-17T19:30+0200","htmlDate":"20.02.1983","date":"17.04.22","dateSeparatorTime":"17.04.22, 19:30"},"hasByline":true,"teaserInfo":{"showTeaserInfo":true,"showTeaserInfoSection":true,"showTeaserInfoChannel":false,"showTeaserInfoAll":false,"showTeaserInfoDate":false,"showTeaserInfoDateTime":true,"showTeaserInfoProgramRef":false},"teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"","imageJson":"Beispiel JSON","responsiveImage":{"asPicture":false,"asImage":true,"fallback":"images/rueckkehr-nach-abschiebung-102_v-16to9__medium.jpg","sources":[{"sizes":"(min-width: 1024px) 650px, (min-width: 768px) 620px, 100vw","srcset":"images/rueckkehr-nach-abschiebung-102_v-16to9__small.jpg 320w, images/rueckkehr-nach-abschiebung-102_v-16to9__medium.jpg 480w, images/rueckkehr-nach-abschiebung-102_v-16to9__medium__extended.jpg 640w, images/rueckkehr-nach-abschiebung-102_v-16to9.jpg 960w, images/rueckkehr-nach-abschiebung-102_v-16to9__retina.jpg 1920w"}]}},"displayTeaserBodyAsImageOverlay":false,"hasMediaButtons":false,"dontLazyload":true,"isStandardTeaser":true,"isHeroTeaser":true,"isMediaTeaser":false,"isGuide":false,"isProgram":false,"isEvent":false,"isTicker":false,"isAudio":false,"isAudioOnDemand":false,"isVideo":false,"isVideoOnDemand":false,"isPodcast":false,"isPodcastEpisode":false,"isExtOrBrandLink":false,"isAuthor":false,"copyright":"Copyright Text","audioAuthor":"Audio Author","hasStatus":false,"hasTeaserItem":true,"moreThenOneEvent":false,"moreThenTwoEvents":false,"firstInstant":{"startDate":{"monthNameShort":"APR","weekdayNameShort":"Do","day":"9"}},"lastInstant":{"startDate":{"monthNameShort":"APR","weekdayNameShort":"Fr","day":"10"}},"allowAVConsumption":false,"displayEpgInfos":false,"aspectRatio":"ar--teaserTop","hideGeotag":false,"hideEditableByline":true,"doTracking":true,"trackingForArdMediatheksLink":false,"showMediatheksLink":false,"showAirdate":false,"showProfileInfoAsByline":false,"obsolet_brandOfTeaser":"hessenschau","documentSection":"Gesellschaft","headlineTag":"h1","icon":"ortsmarke","imageVariant":"topteaser","shorttext":"Vor einem Jahr wurde die syrische Familie Kheder aus Wolfhagen abgeschoben. Die Gemeinde setzte alle Hebel in Bewegung, um Mutter, Tochter und Sohn zurückzuholen. Im Fall der Kinder hat das nun zu einem Happy End geführt. Doch ihre Mutter fehlt.","hideBylineAndShorttext":false,"sophoraId":"rueckkehr-nach-abschiebung-wolfhagen--100","profiles":"Von Alf Haubitz und Alice Merton","teaserLead":{"avDocument":"","image":""},"geotag":[{"title":"Wolfhagen"}],"link":{"url":"/teaser1","webviewUrl":"/teaser1#webview","isTargetBlank":false,"hasIcon":false,"iconName":"iconName","readMoreText":{"readMoreScreenreader":"Zum Artikel","readMore":"mehr","readMoreLong":"read More Long"}}}}}},"hero_with_external_link":{"args":{"isSsi":true,"logicItem":{"includePath":"components/teaser/teaser_alternative","includeModel":{"title":"Mercedes-Luxusautos in Millionenhöhe gestohlen","topline":"Spektakuläre Diebstähle in Südhessen","headingFontVariant":"serif","extendedTitle":"","teaserType":"alternative","teaserSize":"hero","realTeaserSize":"hero","isMobile1to1":false,"teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"Vorname Nachname","imageJson":"Beispiel JSON","responsiveImage":{"asPicture":false,"asImage":true,"fallback":"images/mercedes-suv-g-100_v-16to9__medium.jpg","sources":[{"sizes":"(min-width: 1024px) 960px, (min-width: 640px) calc(100vw - 4rem), 100vw","srcset":"images/mercedes-suv-g-100_v-16to9__small.jpg 320w, images/mercedes-suv-g-100_v-16to9__medium.jpg 480w, images/mercedes-suv-g-100_v-16to9__medium__extended.jpg 640w, images/mercedes-suv-g-100_v-16to9.jpg 960w, images/mercedes-suv-g-100_v-16to9__retina.jpg 1920w"}]}},"displayTeaserBodyAsImageOverlay":false,"hasMediaButtons":false,"dontLazyload":true,"isStandardTeaser":true,"isHeroTeaser":false,"isMediaTeaser":false,"isGuide":false,"isProgram":false,"isEvent":false,"isTicker":false,"isAudio":false,"isAudioOnDemand":false,"isVideo":false,"isVideoOnDemand":false,"isPodcast":false,"isPodcastEpisode":false,"isExtOrBrandLink":true,"isAuthor":false,"hasStatus":false,"hasTeaserItem":true,"allowAVConsumption":false,"displayEpgInfos":false,"aspectRatio":"ar--teaserTop","hideGeotag":false,"hideEditableByline":true,"doTracking":true,"trackingForArdMediatheksLink":false,"showMediatheksLink":false,"showAirdate":false,"showProfileInfoAsByline":false,"obsolet_brandOfTeaser":"hessenschau","documentSection":"Panorama","headlineTag":"h1","icon":"","imageVariant":"topteaser","shorttext":"Die besten Themen in der Tagesschau App","hideBylineAndShorttext":false,"sophoraId":"textlink-256446","profiles":"","teaserLead":{"avDocument":"","image":""},"link":{"url":"/teaser1","webviewUrl":"/teaser1#webview","isTargetBlank":true,"hasIcon":true,"iconName":"extern","readMoreText":{"readMoreScreenreader":"Zur Tagesschau Website","readMore":"Zur Tagesschau Website","readMoreLong":"Zur Tagesschau Website"},"isUserConsentNeeded":false}}}}},"hero_with_label":{"args":{"isSsi":true,"logicItem":{"includePath":"components/teaser/teaser_alternative","includeModel":{"byline":"Byline","title":"Abgeschobene Geschwister aus Syrien zurück in Wolfhagen","topline":"","headingFontVariant":"serif","extendedTitle":"","teaserType":"alternative","teaserSize":"hero","realTeaserSize":"hero","isMobile1to1":false,"teaserDate":{"htmlDateTime":"2022-04-17T19:30+0200","htmlDate":"20.02.1983","date":"17.04.22","dateSeparatorTime":"17.04.22, 19:30"},"hasByline":true,"teaserInfo":{"showTeaserInfo":true,"showTeaserInfoSection":true,"showTeaserInfoChannel":false,"showTeaserInfoAll":false,"showTeaserInfoDate":false,"showTeaserInfoDateTime":true,"showTeaserInfoProgramRef":false},"teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"","imageJson":"Beispiel JSON","responsiveImage":{"asPicture":false,"asImage":true,"fallback":"images/rueckkehr-nach-abschiebung-102_v-16to9__medium.jpg","sources":[{"sizes":"(min-width: 1024px) 650px, (min-width: 768px) 620px, 100vw","srcset":"images/rueckkehr-nach-abschiebung-102_v-16to9__small.jpg 320w, images/rueckkehr-nach-abschiebung-102_v-16to9__medium.jpg 480w, images/rueckkehr-nach-abschiebung-102_v-16to9__medium__extended.jpg 640w, images/rueckkehr-nach-abschiebung-102_v-16to9.jpg 960w, images/rueckkehr-nach-abschiebung-102_v-16to9__retina.jpg 1920w"}]}},"displayTeaserBodyAsImageOverlay":false,"hasMediaButtons":false,"dontLazyload":true,"isStandardTeaser":true,"isHeroTeaser":true,"isMediaTeaser":false,"isGuide":false,"isProgram":false,"isEvent":false,"isTicker":false,"isAudio":false,"isAudioOnDemand":false,"isVideo":false,"isVideoOnDemand":false,"isPodcast":false,"isPodcastEpisode":false,"isExtOrBrandLink":false,"isAuthor":false,"copyright":"Copyright Text","audioAuthor":"Audio Author","hasStatus":false,"hasTeaserItem":true,"moreThenOneEvent":false,"moreThenTwoEvents":false,"firstInstant":{"startDate":{"monthNameShort":"APR","weekdayNameShort":"Do","day":"9"}},"lastInstant":{"startDate":{"monthNameShort":"APR","weekdayNameShort":"Fr","day":"10"}},"allowAVConsumption":false,"displayEpgInfos":false,"aspectRatio":"ar--teaserTop","hideGeotag":false,"hideEditableByline":true,"doTracking":true,"trackingForArdMediatheksLink":false,"showMediatheksLink":false,"showAirdate":false,"showProfileInfoAsByline":false,"obsolet_brandOfTeaser":"hessenschau","documentSection":"Gesellschaft","headlineTag":"h1","icon":"ortsmarke","imageVariant":"topteaser","shorttext":"Vor einem Jahr wurde die syrische Familie Kheder aus Wolfhagen abgeschoben. Die Gemeinde setzte alle Hebel in Bewegung, um Mutter, Tochter und Sohn zurückzuholen. Im Fall der Kinder hat das nun zu einem Happy End geführt. Doch ihre Mutter fehlt.","hideBylineAndShorttext":false,"sophoraId":"rueckkehr-nach-abschiebung-wolfhagen--100","profiles":"Von Alf Haubitz und Alice Merton","teaserLead":{"avDocument":"","image":""},"geotag":[{"title":"Wolfhagen"}],"link":{"url":"/teaser1","webviewUrl":"/teaser1#webview","isTargetBlank":false,"hasIcon":false,"iconName":"iconName","readMoreText":{"readMoreScreenreader":"Zum Artikel","readMore":"mehr","readMoreLong":"read More Long"}},"label":{"type":"ticker","loca":"label_ticker","byline":{"bylineSsi":"BylineText aus ssi","bylineText":"BylineText"}}}}}},"hero_with_comments":{"args":{"isSsi":true,"logicItem":{"includePath":"components/teaser/teaser_alternative","includeModel":{"byline":"Byline","title":"Abgeschobene Geschwister aus Syrien zurück in Wolfhagen","topline":"Überglücklich, aber ohne Mama","headingFontVariant":"serif","extendedTitle":"","teaserType":"alternative","teaserSize":"hero","realTeaserSize":"hero","isMobile1to1":false,"teaserDate":{"htmlDateTime":"2022-04-17T19:30+0200","htmlDate":"20.02.1983","date":"17.04.22","dateSeparatorTime":"17.04.22, 19:30"},"hasByline":true,"teaserInfo":{"showTeaserInfo":true,"showTeaserInfoSection":true,"showTeaserInfoChannel":false,"showTeaserInfoAll":false,"showTeaserInfoDate":false,"showTeaserInfoDateTime":true,"showTeaserInfoProgramRef":false},"teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"","imageJson":"Beispiel JSON","responsiveImage":{"asPicture":false,"asImage":true,"fallback":"images/rueckkehr-nach-abschiebung-102_v-16to9__medium.jpg","sources":[{"sizes":"(min-width: 1024px) 650px, (min-width: 768px) 620px, 100vw","srcset":"images/rueckkehr-nach-abschiebung-102_v-16to9__small.jpg 320w, images/rueckkehr-nach-abschiebung-102_v-16to9__medium.jpg 480w, images/rueckkehr-nach-abschiebung-102_v-16to9__medium__extended.jpg 640w, images/rueckkehr-nach-abschiebung-102_v-16to9.jpg 960w, images/rueckkehr-nach-abschiebung-102_v-16to9__retina.jpg 1920w"}]}},"commentsSsi":{"commentNumber":"1","hasOneComment":true,"hasComments":true,"hasManyComments":false,"commentLink":{"link":{"url":"/teaser1-comments","webviewUrl":"/teaser1-comments#webview","isTargetBlank":false,"readMoreText":{"readMoreScreenreader":"Zu den Kommentaren des Artikels"}}}},"documentSection":"Gesellschaft","displayTeaserBodyAsImageOverlay":false,"hasMediaButtons":false,"dontLazyload":true,"isStandardTeaser":true,"isHeroTeaser":true,"isMediaTeaser":false,"isGuide":false,"isProgram":false,"isEvent":false,"isTicker":false,"isAudio":false,"isAudioOnDemand":false,"isVideo":false,"isVideoOnDemand":false,"isPodcastEpisode":false,"isExtOrBrandLink":false,"isAuthor":false,"copyright":"Copyright Text","audioAuthor":"Audio Author","hasStatus":false,"hasTeaserItem":true,"allowAVConsumption":false,"displayEpgInfos":false,"aspectRatio":"ar--teaserTop","hideGeotag":false,"hideEditableByline":true,"doTracking":true,"trackingForArdMediatheksLink":false,"showMediatheksLink":false,"showAirdate":false,"showProfileInfoAsByline":false,"obsolet_brandOfTeaser":"hessenschau","headlineTag":"h1","icon":"ortsmarke","imageVariant":"topteaser","shorttext":"Vor einem Jahr wurde die syrische Familie Kheder aus Wolfhagen abgeschoben. Die Gemeinde setzte alle Hebel in Bewegung, um Mutter, Tochter und Sohn zurückzuholen. Im Fall der Kinder hat das nun zu einem Happy End geführt. Doch ihre Mutter fehlt.","hideBylineAndShorttext":false,"sophoraId":"rueckkehr-nach-abschiebung-wolfhagen--100","profiles":"Von Alf Haubitz und Alice Merton","teaserLead":{"avDocument":"","image":""},"geotag":[{"title":"Wolfhagen"}],"link":{"url":"/teaser1","webviewUrl":"/teaser1#webview","isTargetBlank":false,"hasIcon":false,"iconName":"iconName","readMoreText":{"readMoreScreenreader":"Zum Artikel","readMore":"mehr","readMoreLong":"read More Long"}}}}}},"hero_with_program":{"args":{"isSsi":true,"logicItem":{"includePath":"components/teaser/teaser_alternative","includeModel":{"byline":"Do. 22.12.2022 22:30 Uhr","title":"Mittendrin - Frankfurt Flughafen (19)","topline":"","headingFontVariant":"serif","extendedTitle":"Einsatz für die Enteiser am Flughafen","teaserType":"alternative","teaserSize":"hero","realTeaserSize":"hero","isMobile1to1":false,"teaserDate":{"htmlDateTime":"2022-04-17T19:30+0200","htmlDate":"20.02.1983","date":"17.04.22","dateSeparatorTime":"17.04.22, 19:30"},"hasByline":true,"teaserInfo":{"showTeaserInfo":false,"showTeaserInfoSection":true,"showTeaserInfoChannel":false,"showTeaserInfoAll":false,"showTeaserInfoDate":false,"showTeaserInfoDateTime":true,"showTeaserInfoProgramRef":false},"teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"Vorname Nachname","imageJson":"Beispiel JSON","responsiveImage":{"asPicture":false,"asImage":true,"fallback":"images/jugendfeuerwehr-102_v-16to9__medium.jpg","sources":[{"sizes":"(min-width: 1024px) 960px, (min-width: 640px) calc(100vw - 4rem), 100vw","srcset":"images/jugendfeuerwehr-102_v-16to9__small.jpg 320w, images/jugendfeuerwehr-102_v-16to9__medium.jpg 480w, images/jugendfeuerwehr-102_v-16to9__medium__extended.jpg 640w, images/jugendfeuerwehr-102_v-16to9.jpg 960w, images/jugendfeuerwehr-102_v-16to9__retina.jpg 1920w"}]}},"displayTeaserBodyAsImageOverlay":false,"hasMediaButtons":true,"dontLazyload":true,"isStandardTeaser":true,"isHeroTeaser":true,"isMediaTeaser":true,"isGuide":false,"isProgram":true,"isEvent":false,"isTicker":false,"isAudio":false,"isAudioOnDemand":false,"isVideo":false,"isVideoOnDemand":false,"isPodcastEpisode":false,"isExtOrBrandLink":true,"isAuthor":false,"isFileDownload":false,"copyright":"Copyright Text","audioAuthor":"Audio Author","hasStatus":false,"hasTeaserItem":true,"allowAVConsumption":false,"displayEpgInfos":true,"aspectRatio":"ar--teaserTop","hideGeotag":false,"hideEditableByline":false,"doTracking":true,"trackingForArdMediatheksLink":true,"showMediatheksLink":true,"showAirdate":true,"showProfileInfoAsByline":false,"obsolet_brandOfTeaser":"hessenschau","documentSection":"Sendungen","headlineTag":"h1","icon":"ortsmarke","imageVariant":"topteaser","shorttext":"Flughafen Frankfurt, 5 Uhr morgens: Nebel und Temperaturen um null Grad. Eisschichten haben sich auf den Tragflächen der Flugzeuge gebildet. So dürfen die Maschinen nicht abheben. Ein Fall für die Enteiser an Deutschlands größtem Flughafen. Mit ihren gigantischen Spezialfahrzeugen fahren sie zu den Positionen am Gate","hideBylineAndShorttext":false,"sophoraId":"rueckkehr-nach-abschiebung-wolfhagen--100","profiles":"","teaserLead":{"avDocument":"","image":""},"link":{"url":"/teaser1","webviewUrl":"/teaser1#webview","isTargetBlank":true,"hasIcon":true,"iconName":"extern","readMoreText":{"readMoreScreenreader":"Zur ARD Mediathek","readMore":"Zur ARD Mediathek","readMoreLong":"Zur ARD Mediathek"}},"label":{"type":"program","loca":"label_program","byline":{"bylineSsi":"components/program/label_byline.ssi","context":{"broadcast":{"startDate":{"htmlDateTime":"2023-02-12T19:00+0100","dateWithTimeAndWeekday":"So. 12.02.23, 19:00"}}},"bylineText":"BylineText"}}}}}}},"group_100":{"100":{"args":{"isSsi":true,"logicItem":{"includePath":"components/teaser/teaser_alternative","includeModel":{"byline":"Byline","title":"Abgeschobene Geschwister aus Syrien zurück in Wolfhagen","topline":"Überglücklich, aber ohne Mama","headingFontVariant":"serif","extendedTitle":"","teaserType":"alternative","teaserSize":"100","realTeaserSize":"100","isMobile1to1":true,"teaserDate":{"htmlDateTime":"2022-04-17T19:30+0200","htmlDate":"20.02.1983","date":"17.04.22","dateSeparatorTime":"17.04.22, 19:30"},"hasByline":true,"teaserInfo":{"showTeaserInfo":true,"showTeaserInfoSection":true,"showTeaserInfoChannel":false,"showTeaserInfoAll":false,"showTeaserInfoDate":false,"showTeaserInfoDateTime":true,"showTeaserInfoProgramRef":false},"teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"","imageJson":"Beispiel JSON","responsiveImage":{"asPicture":true,"asImage":false,"fallback":"images/rueckkehr-nach-abschiebung-102_v-16to9__medium.jpg","sources":[{"media":"all and (max-width: 47.938em)","sizes":"40vw","srcset":"images/rueckkehr-nach-abschiebung-102_v-1to1__small.jpg 380w, images/rueckkehr-nach-abschiebung-102_v-1to1__medium.jpg 480w, images/rueckkehr-nach-abschiebung-102_v-1to1.jpg 720w, images/rueckkehr-nach-abschiebung-102_v-1to1__large.jpg 960w"},{"media":"all and (min-width: 48em) ","sizes":"33vw","srcset":"images/rueckkehr-nach-abschiebung-102_v-16to9__small.jpg 320w, images/rueckkehr-nach-abschiebung-102_v-16to9__medium.jpg 480w, images/rueckkehr-nach-abschiebung-102_v-16to9__medium__extended.jpg 640w, images/rueckkehr-nach-abschiebung-102_v-16to9.jpg 960w"}]}},"displayTeaserBodyAsImageOverlay":false,"hasMediaButtons":false,"dontLazyload":true,"isStandardTeaser":true,"isHeroTeaser":true,"isMediaTeaser":false,"isGuide":false,"isProgram":false,"isEvent":false,"isTicker":false,"isAudio":false,"isAudioOnDemand":false,"isVideo":false,"isVideoOnDemand":false,"isPodcast":false,"isPodcastEpisode":false,"isExtOrBrandLink":false,"isAuthor":false,"copyright":"Copyright Text","audioAuthor":"Audio Author","hasStatus":false,"hasTeaserItem":true,"moreThenOneEvent":false,"moreThenTwoEvents":false,"firstInstant":{"startDate":{"monthNameShort":"APR","weekdayNameShort":"Do","day":"9"}},"lastInstant":{"startDate":{"monthNameShort":"APR","weekdayNameShort":"Fr","day":"10"}},"allowAVConsumption":false,"displayEpgInfos":false,"aspectRatio":"ar--teaserTop","hideGeotag":false,"hideEditableByline":true,"doTracking":true,"trackingForArdMediatheksLink":false,"showMediatheksLink":false,"showAirdate":false,"showProfileInfoAsByline":false,"obsolet_brandOfTeaser":"hessenschau","documentSection":"Gesellschaft","headlineTag":"h1","icon":"ortsmarke","imageVariant":"topteaser","shorttext":"Vor einem Jahr wurde die syrische Familie Kheder aus Wolfhagen abgeschoben. Die Gemeinde setzte alle Hebel in Bewegung, um Mutter, Tochter und Sohn zurückzuholen. Im Fall der Kinder hat das nun zu einem Happy End geführt. Doch ihre Mutter fehlt.","hideBylineAndShorttext":false,"sophoraId":"rueckkehr-nach-abschiebung-wolfhagen--100","profiles":"Von Alf Haubitz und Alice Merton","teaserLead":{"avDocument":"","image":""},"geotag":[{"title":"Wolfhagen"}],"link":{"url":"/teaser1","webviewUrl":"/teaser1#webview","isTargetBlank":false,"hasIcon":false,"iconName":"iconName","readMoreText":{"readMoreScreenreader":"Zum Artikel","readMore":"mehr","readMoreLong":"read More Long"}}}}}},"100_with_external_link":{"args":{"isSsi":true,"logicItem":{"includePath":"components/teaser/teaser_alternative","includeModel":{"title":"Mercedes-Luxusautos in Millionenhöhe gestohlen","topline":"Spektakuläre Diebstähle in Südhessen","headingFontVariant":"serif","extendedTitle":"","teaserType":"alternative","teaserSize":"100","realTeaserSize":"100","isMobile1to1":"true","teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"","imageJson":"Beispiel JSON","responsiveImage":{"asPicture":true,"asImage":false,"fallback":"images/sonniger-herbst-100_v-16to9__medium.jpg","sources":[{"media":"all and (max-width: 47.938em)","sizes":"40vw","srcset":"images/sonniger-herbst-100_v-1to1__small.jpg 380w, images/sonniger-herbst-100_v-1to1__medium.jpg 480w, images/sonniger-herbst-100_v-1to1.jpg 720w, images/sonniger-herbst-100_v-1to1__large.jpg 960w"},{"media":"all and (min-width: 48em) ","sizes":"33vw","srcset":"images/sonniger-herbst-100_v-16to9__small.jpg 320w, images/sonniger-herbst-100_v-16to9__medium.jpg 480w, images/sonniger-herbst-100_v-16to9__medium__extended.jpg 640w, images/sonniger-herbst-100_v-16to9.jpg 960w"}]}},"displayTeaserBodyAsImageOverlay":false,"hasMediaButtons":false,"dontLazyload":true,"isStandardTeaser":true,"isHeroTeaser":false,"isMediaTeaser":false,"isGuide":false,"isProgram":false,"isEvent":false,"isTicker":false,"isAudio":false,"isAudioOnDemand":false,"isVideo":false,"isVideoOnDemand":false,"isPodcast":false,"isPodcastEpisode":false,"isExtOrBrandLink":true,"isAuthor":false,"hasStatus":false,"hasTeaserItem":true,"allowAVConsumption":false,"displayEpgInfos":false,"aspectRatio":"ar--teaserTop","hideGeotag":false,"hideEditableByline":true,"doTracking":true,"trackingForArdMediatheksLink":false,"showMediatheksLink":false,"showAirdate":false,"showProfileInfoAsByline":false,"obsolet_brandOfTeaser":"hessenschau","documentSection":"Panorama","headlineTag":"h1","icon":"","imageVariant":"topteaser","shorttext":"Die besten Themen in der Tagesschau App","hideBylineAndShorttext":false,"sophoraId":"textlink-256446","profiles":"","teaserLead":{"avDocument":"","image":""},"link":{"url":"/teaser1","webviewUrl":"/teaser1#webview","isTargetBlank":true,"hasIcon":true,"iconName":"extern","readMoreText":{"readMoreScreenreader":"Zur Tagesschau Website","readMore":"Zur Tagesschau Website","readMoreLong":"Zur Tagesschau Website"},"isUserConsentNeeded":false}}}}},"100_with_featured_content":{"config":{"path":"args"},"args":{"byline":"Byline","title":"Abgeschobene Geschwister aus Syrien zurück in Wolfhagen","topline":"Überglücklich, aber ohne Mama","headingFontVariant":"serif","extendedTitle":"","teaserType":"alternative","teaserSize":"100","realTeaserSize":"100","isMobile1to1":true,"teaserDate":{"htmlDateTime":"2022-04-17T19:30+0200","htmlDate":"20.02.1983","date":"17.04.22","dateSeparatorTime":"17.04.22, 19:30"},"hasByline":true,"teaserInfo":{"showTeaserInfo":true,"showTeaserInfoSection":true,"showTeaserInfoChannel":false,"showTeaserInfoAll":false,"showTeaserInfoDate":false,"showTeaserInfoDateTime":true,"showTeaserInfoProgramRef":false},"teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"","imageJson":"Beispiel JSON","responsiveImage":{"asPicture":true,"asImage":false,"fallback":"images/rueckkehr-nach-abschiebung-102_v-16to9__medium.jpg","sources":[{"media":"all and (max-width: 47.938em)","sizes":"40vw","srcset":"images/rueckkehr-nach-abschiebung-102_v-1to1__small.jpg 380w, images/rueckkehr-nach-abschiebung-102_v-1to1__medium.jpg 480w, images/rueckkehr-nach-abschiebung-102_v-1to1.jpg 720w, images/rueckkehr-nach-abschiebung-102_v-1to1__large.jpg 960w"},{"media":"all and (min-width: 48em) ","sizes":"33vw","srcset":"images/rueckkehr-nach-abschiebung-102_v-16to9__small.jpg 320w, images/rueckkehr-nach-abschiebung-102_v-16to9__medium.jpg 480w, images/rueckkehr-nach-abschiebung-102_v-16to9__medium__extended.jpg 640w, images/rueckkehr-nach-abschiebung-102_v-16to9.jpg 960w"}]}},"displayTeaserBodyAsImageOverlay":false,"hasMediaButtons":false,"dontLazyload":true,"isStandardTeaser":true,"isHeroTeaser":true,"isMediaTeaser":false,"isGuide":false,"isProgram":false,"isEvent":false,"isTicker":false,"isAudio":false,"isAudioOnDemand":false,"isVideo":false,"isVideoOnDemand":false,"isPodcast":false,"isPodcastEpisode":false,"isExtOrBrandLink":false,"isAuthor":false,"copyright":"Copyright Text","audioAuthor":"Audio Author","hasStatus":false,"hasTeaserItem":true,"moreThenOneEvent":false,"moreThenTwoEvents":false,"firstInstant":{"startDate":{"monthNameShort":"APR","weekdayNameShort":"Do","day":"9"}},"lastInstant":{"startDate":{"monthNameShort":"APR","weekdayNameShort":"Fr","day":"10"}},"allowAVConsumption":false,"displayEpgInfos":false,"aspectRatio":"ar--teaserTop","hideGeotag":false,"hideEditableByline":true,"doTracking":true,"trackingForArdMediatheksLink":false,"showMediatheksLink":false,"showAirdate":false,"showProfileInfoAsByline":false,"obsolet_brandOfTeaser":"hessenschau","documentSection":"Gesellschaft","headlineTag":"h1","icon":"ortsmarke","imageVariant":"topteaser","shorttext":"Vor einem Jahr wurde die syrische Familie Kheder aus Wolfhagen abgeschoben. Die Gemeinde setzte alle Hebel in Bewegung, um Mutter, Tochter und Sohn zurückzuholen. Im Fall der Kinder hat das nun zu einem Happy End geführt. Doch ihre Mutter fehlt.","hideBylineAndShorttext":false,"sophoraId":"rueckkehr-nach-abschiebung-wolfhagen--100","profiles":"Von Alf Haubitz und Alice Merton","teaserLead":{"avDocument":"","image":""},"geotag":[{"title":"Wolfhagen"}],"link":{"url":"/teaser1","webviewUrl":"/teaser1#webview","isTargetBlank":false,"hasIcon":false,"iconName":"iconName","readMoreText":{"readMoreScreenreader":"Zum Artikel","readMore":"mehr","readMoreLong":"read More Long"}},"showFeaturedContent":true,"featuredContentItems":[{"title":"Lindemann-Konzert in Kassel abgesagt","link":{"url":"/teaser1","webviewUrl":"/teaser1#webview","isTargetBlank":false,"hasIcon":false,"iconName":"iconName","readMoreText":{"readMoreScreenreader":"Zum Artikel","readMore":"mehr","readMoreLong":"read More Long"}}},{"title":"Ex-Kraftwerk-Mitglied vertont Stummfilm-Klassiker | Video","link":{"url":"/teaser2","webviewUrl":"/teaser2#webview","isTargetBlank":false,"hasIcon":false,"iconName":"iconName","readMoreText":{"readMoreScreenreader":"Zum Videp","readMore":"mehr","readMoreLong":"read More Long"}}},{"title":"Lilien-Trainingslager wieder in El Saler | Audio","link":{"url":"/teaser3","webviewUrl":"/teaser3#webview","isTargetBlank":false,"hasIcon":false,"iconName":"iconName","readMoreText":{"readMoreScreenreader":"Zum Audio","readMore":"mehr","readMoreLong":"read More Long"}}}]}},"100_with_download":{"config":{"useAsSnapshot":false},"args":{"isSsi":true,"logicItem":{"includePath":"components/teaser/teaser_alternative","includeModel":{"byline":"Byline","title":"Download","topline":"","headingFontVariant":"serif","extendedTitle":"","teaserType":"alternative","teaserSize":"100","realTeaserSize":"100","isMobile1to1":"true","teaserDate":{"htmlDateTime":"2022-04-17T19:30+0200","htmlDate":"20.02.1983","date":"17.04.22","dateSeparatorTime":"17.04.22, 19:30"},"hasByline":true,"teaserInfo":{"showTeaserInfo":true,"showTeaserInfoSection":true,"showTeaserInfoChannel":false,"showTeaserInfoAll":false,"showTeaserInfoDate":false,"showTeaserInfoDateTime":true,"showTeaserInfoProgramRef":false},"teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"","imageJson":"Beispiel JSON","responsiveImage":{"asPicture":true,"asImage":false,"fallback":"images/jugendfeuerwehr-102_v-16to9__medium.jpg","sources":[{"media":"all and (max-width: 47.938em)","sizes":"40vw","srcset":"images/jugendfeuerwehr-102_v-1to1__small.jpg 380w, images/jugendfeuerwehr-102_v-1to1__medium.jpg 480w, images/jugendfeuerwehr-102_v-1to1.jpg 720w, images/jugendfeuerwehr-102_v-1to1__large.jpg 960w"},{"media":"all and (min-width: 48em) ","sizes":"33vw","srcset":"images/jugendfeuerwehr-102_v-16to9__small.jpg 320w, images/jugendfeuerwehr-102_v-16to9__medium.jpg 480w, images/jugendfeuerwehr-102_v-16to9__medium__extended.jpg 640w, images/jugendfeuerwehr-102_v-16to9.jpg 960w"}]}},"displayTeaserBodyAsImageOverlay":false,"hasMediaButtons":false,"dontLazyload":true,"isStandardTeaser":true,"isHeroTeaser":true,"isMediaTeaser":false,"isGuide":false,"isProgram":false,"isEvent":false,"isTicker":false,"isAudio":false,"isAudioOnDemand":false,"isVideo":false,"isVideoOnDemand":false,"isPodcastEpisode":false,"isExtOrBrandLink":false,"isAuthor":false,"isFileDownload":true,"copyright":"Copyright Text","audioAuthor":"Audio Author","hasStatus":false,"hasTeaserItem":true,"allowAVConsumption":false,"displayEpgInfos":false,"aspectRatio":"ar--teaserTop","hideGeotag":false,"hideEditableByline":true,"doTracking":true,"trackingData":{"secondLevelId":"2","pageName":"download"},"trackingForArdMediatheksLink":false,"showMediatheksLink":false,"showAirdate":false,"showProfileInfoAsByline":false,"obsolet_brandOfTeaser":"hessenschau","documentSection":"","headlineTag":"h1","icon":"ortsmarke","imageVariant":"topteaser","shorttext":"","hideBylineAndShorttext":false,"sophoraId":"rueckkehr-nach-abschiebung-wolfhagen--100","profiles":"","teaserLead":{"avDocument":"","image":""},"geotag":[{"title":"Wolfhagen"}],"link":{"url":"/teaser1","webviewUrl":"/teaser1#webview","isTargetBlank":false,"hasIcon":false,"iconName":"iconName","readMoreText":{"readMoreScreenreader":"Zum Artikel","readMore":"mehr","readMoreLong":"read More Long"}},"label":{"type":"download","loca":"label_download","byline":{"bylineText":"ZIP - 3mb"}}}}}}},"group_50":{"50":{"args":{"isSsi":true,"logicItem":{"includePath":"components/teaser/teaser_alternative","includeModel":{"byline":"Byline","title":"Abgeschobene Geschwister aus Syrien zurück in Wolfhagen","topline":"Überglücklich, aber ohne Mama","headingFontVariant":"serif","extendedTitle":"","teaserType":"alternative","teaserSize":"50","realTeaserSize":"50","isMobile1to1":"true","teaserDate":{"htmlDateTime":"2022-04-17T19:30+0200","htmlDate":"20.02.1983","date":"17.04.22","dateSeparatorTime":"17.04.22, 19:30"},"hasByline":true,"teaserInfo":{"showTeaserInfo":true,"showTeaserInfoSection":true,"showTeaserInfoChannel":false,"showTeaserInfoAll":false,"showTeaserInfoDate":false,"showTeaserInfoDateTime":true,"showTeaserInfoProgramRef":false},"teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"","imageJson":"Beispiel JSON","responsiveImage":{"asPicture":true,"asImage":false,"fallback":"images/rueckkehr-nach-abschiebung-102_v-16to9__medium.jpg","sources":[{"media":"all and (max-width: 47.938em)","sizes":"300px","srcset":"images/rueckkehr-nach-abschiebung-102_v-1to1__small.jpg 380w, images/rueckkehr-nach-abschiebung-102_v-1to1__medium.jpg 480w, images/rueckkehr-nach-abschiebung-102_v-1to1.jpg 720w, images/rueckkehr-nach-abschiebung-102_v-1to1__large.jpg 960w"},{"media":"all and (min-width: 48em) ","sizes":"240px","srcset":"images/rueckkehr-nach-abschiebung-102_v-16to9__small.jpg 320w, images/rueckkehr-nach-abschiebung-102_v-16to9__medium.jpg 480w, images/rueckkehr-nach-abschiebung-102_v-16to9__medium__extended.jpg 640w, images/rueckkehr-nach-abschiebung-102_v-16to9.jpg 960w"}]}},"displayTeaserBodyAsImageOverlay":false,"hasMediaButtons":false,"dontLazyload":true,"isStandardTeaser":true,"isHeroTeaser":true,"isMediaTeaser":false,"isGuide":false,"isProgram":false,"isEvent":false,"isTicker":false,"isAudio":false,"isAudioOnDemand":false,"isVideo":false,"isVideoOnDemand":false,"isPodcast":false,"isPodcastEpisode":false,"isExtOrBrandLink":false,"isAuthor":false,"copyright":"Copyright Text","audioAuthor":"Audio Author","hasStatus":false,"hasTeaserItem":true,"moreThenOneEvent":false,"moreThenTwoEvents":false,"firstInstant":{"startDate":{"monthNameShort":"APR","weekdayNameShort":"Do","day":"9"}},"lastInstant":{"startDate":{"monthNameShort":"APR","weekdayNameShort":"Fr","day":"10"}},"allowAVConsumption":false,"displayEpgInfos":false,"aspectRatio":"ar--teaserTop","hideGeotag":false,"hideEditableByline":true,"doTracking":true,"trackingForArdMediatheksLink":false,"showMediatheksLink":false,"showAirdate":false,"showProfileInfoAsByline":false,"obsolet_brandOfTeaser":"hessenschau","documentSection":"Gesellschaft","headlineTag":"h1","icon":"ortsmarke","imageVariant":"topteaser","shorttext":"Vor einem Jahr wurde die syrische Familie Kheder aus Wolfhagen abgeschoben. Die Gemeinde setzte alle Hebel in Bewegung, um Mutter, Tochter und Sohn zurückzuholen. Im Fall der Kinder hat das nun zu einem Happy End geführt. Doch ihre Mutter fehlt.","hideBylineAndShorttext":false,"sophoraId":"rueckkehr-nach-abschiebung-wolfhagen--100","profiles":"Von Alf Haubitz und Alice Merton","teaserLead":{"avDocument":"","image":""},"geotag":[{"title":"Wolfhagen"}],"link":{"url":"/teaser1","webviewUrl":"/teaser1#webview","isTargetBlank":false,"hasIcon":false,"iconName":"iconName","readMoreText":{"readMoreScreenreader":"Zum Artikel","readMore":"mehr","readMoreLong":"read More Long"}}}}}},"50_with_external_link":{"args":{"isSsi":true,"logicItem":{"includePath":"components/teaser/teaser_alternative","includeModel":{"title":"Mercedes-Luxusautos in Millionenhöhe gestohlen","topline":"Spektakuläre Diebstähle in Südhessen","headingFontVariant":"serif","extendedTitle":"","teaserType":"alternative","teaserSize":"50","realTeaserSize":"50","isMobile1to1":"true","teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"","imageJson":"Beispiel JSON","responsiveImage":{"asPicture":true,"asImage":false,"fallback":"images/rueckkehr-nach-abschiebung-102_v-16to9__medium.jpg","sources":[{"media":"all and (max-width: 47.938em)","sizes":"300px","srcset":"images/rueckkehr-nach-abschiebung-102_v-1to1__small.jpg 380w, images/rueckkehr-nach-abschiebung-102_v-1to1__medium.jpg 480w, images/rueckkehr-nach-abschiebung-102_v-1to1.jpg 720w, images/rueckkehr-nach-abschiebung-102_v-1to1__large.jpg 960w"},{"media":"all and (min-width: 48em) ","sizes":"240px","srcset":"images/rueckkehr-nach-abschiebung-102_v-16to9__small.jpg 320w, images/rueckkehr-nach-abschiebung-102_v-16to9__medium.jpg 480w, images/rueckkehr-nach-abschiebung-102_v-16to9__medium__extended.jpg 640w, images/rueckkehr-nach-abschiebung-102_v-16to9.jpg 960w"}]}},"displayTeaserBodyAsImageOverlay":false,"hasMediaButtons":false,"dontLazyload":true,"isStandardTeaser":true,"isHeroTeaser":false,"isMediaTeaser":false,"isGuide":false,"isProgram":false,"isEvent":false,"isTicker":false,"isAudio":false,"isAudioOnDemand":false,"isVideo":false,"isVideoOnDemand":false,"isPodcast":false,"isPodcastEpisode":false,"isExtOrBrandLink":true,"isAuthor":false,"hasStatus":false,"hasTeaserItem":true,"allowAVConsumption":false,"displayEpgInfos":false,"aspectRatio":"ar--teaserTop","hideGeotag":false,"hideEditableByline":true,"doTracking":true,"trackingForArdMediatheksLink":false,"showMediatheksLink":false,"showAirdate":false,"showProfileInfoAsByline":false,"obsolet_brandOfTeaser":"hessenschau","documentSection":"Panorama","headlineTag":"h1","icon":"","imageVariant":"topteaser","shorttext":"Die besten Themen in der Tagesschau App","hideBylineAndShorttext":false,"sophoraId":"textlink-256446","profiles":"","teaserLead":{"avDocument":"","image":""},"link":{"url":"/teaser1","webviewUrl":"/teaser1#webview","isTargetBlank":true,"hasIcon":true,"iconName":"extern","readMoreText":{"readMoreScreenreader":"Zur Tagesschau Website","readMore":"Zur Tagesschau Website","readMoreLong":"Zur Tagesschau Website"},"isUserConsentNeeded":false}}}}},"50_without_teaserimage":{"args":{"isSsi":true,"logicItem":{"includePath":"components/teaser/teaser_alternative","includeModel":{"byline":"Byline","title":"Abgeschobene Geschwister aus Syrien zurück in Wolfhagen","topline":"Überglücklich, aber ohne Mama","headingFontVariant":"serif","extendedTitle":"","teaserType":"alternative","teaserSize":"50","realTeaserSize":"50","isMobile1to1":false,"teaserDate":{"htmlDateTime":"2022-04-17T19:30+0200","htmlDate":"20.02.1983","date":"17.04.22","dateSeparatorTime":"17.04.22, 19:30"},"hasByline":true,"teaserInfo":{"showTeaserInfo":true,"showTeaserInfoSection":true,"showTeaserInfoChannel":false,"showTeaserInfoAll":false,"showTeaserInfoDate":false,"showTeaserInfoDateTime":true,"showTeaserInfoProgramRef":false},"displayTeaserBodyAsImageOverlay":false,"hasMediaButtons":false,"dontLazyload":true,"isStandardTeaser":true,"isHeroTeaser":true,"isMediaTeaser":false,"isGuide":false,"isProgram":false,"isEvent":false,"isTicker":false,"isAudio":false,"isAudioOnDemand":false,"isVideo":false,"isVideoOnDemand":false,"isPodcast":false,"isPodcastEpisode":false,"isExtOrBrandLink":false,"isAuthor":false,"copyright":"Copyright Text","audioAuthor":"Audio Author","hasStatus":false,"hasTeaserItem":true,"moreThenOneEvent":false,"moreThenTwoEvents":false,"firstInstant":{"startDate":{"monthNameShort":"APR","weekdayNameShort":"Do","day":"9"}},"lastInstant":{"startDate":{"monthNameShort":"APR","weekdayNameShort":"Fr","day":"10"}},"allowAVConsumption":false,"displayEpgInfos":false,"aspectRatio":"ar--teaserTop","hideGeotag":false,"hideEditableByline":true,"doTracking":true,"trackingForArdMediatheksLink":false,"showMediatheksLink":false,"showAirdate":false,"showProfileInfoAsByline":false,"obsolet_brandOfTeaser":"hessenschau","documentSection":"Gesellschaft","headlineTag":"h1","icon":"ortsmarke","imageVariant":"topteaser","shorttext":"Vor einem Jahr wurde die syrische Familie Kheder aus Wolfhagen abgeschoben. Die Gemeinde setzte alle Hebel in Bewegung, um Mutter, Tochter und Sohn zurückzuholen. Im Fall der Kinder hat das nun zu einem Happy End geführt. Doch ihre Mutter fehlt.","hideBylineAndShorttext":false,"sophoraId":"rueckkehr-nach-abschiebung-wolfhagen--100","profiles":"Von Alf Haubitz und Alice Merton","teaserLead":{"avDocument":"","image":""},"geotag":[{"title":"Wolfhagen"}],"link":{"url":"/teaser1","webviewUrl":"/teaser1#webview","isTargetBlank":false,"hasIcon":false,"iconName":"iconName","readMoreText":{"readMoreScreenreader":"Zum Artikel","readMore":"mehr","readMoreLong":"read More Long"}}}}}},"50_with_download":{"args":{"isSsi":true,"logicItem":{"includePath":"components/teaser/teaser_alternative","includeModel":{"byline":"Byline","title":"Download","topline":"","headingFontVariant":"serif","extendedTitle":"","teaserType":"alternative","teaserSize":"50","realTeaserSize":"50","isMobile1to1":"true","teaserDate":{"htmlDateTime":"2022-04-17T19:30+0200","htmlDate":"20.02.1983","date":"17.04.22","dateSeparatorTime":"17.04.22, 19:30"},"hasByline":true,"teaserInfo":{"showTeaserInfo":true,"showTeaserInfoSection":true,"showTeaserInfoChannel":false,"showTeaserInfoAll":false,"showTeaserInfoDate":false,"showTeaserInfoDateTime":true,"showTeaserInfoProgramRef":false},"teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"","imageJson":"Beispiel JSON","responsiveImage":{"asPicture":true,"asImage":false,"fallback":"images/jugendfeuerwehr-102_v-16to9__medium.jpg","sources":[{"media":"all and (max-width: 47.938em)","sizes":"300px","srcset":"images/jugendfeuerwehr-102_v-1to1__small.jpg 380w, images/jugendfeuerwehr-102_v-1to1__medium.jpg 480w, images/jugendfeuerwehr-102_v-1to1.jpg 720w, images/jugendfeuerwehr-102_v-1to1__large.jpg 960w"},{"media":"all and (min-width: 48em) ","sizes":"240px","srcset":"images/jugendfeuerwehr-102_v-16to9__small.jpg 320w, images/jugendfeuerwehr-102_v-16to9__medium.jpg 480w, images/jugendfeuerwehr-102_v-16to9__medium__extended.jpg 640w, images/jugendfeuerwehr-102_v-16to9.jpg 960w"}]}},"displayTeaserBodyAsImageOverlay":false,"hasMediaButtons":false,"dontLazyload":true,"isStandardTeaser":true,"isHeroTeaser":true,"isMediaTeaser":false,"isGuide":false,"isProgram":false,"isEvent":false,"isTicker":false,"isAudio":false,"isAudioOnDemand":false,"isVideo":false,"isVideoOnDemand":false,"isPodcastEpisode":false,"isExtOrBrandLink":false,"isAuthor":false,"isFileDownload":true,"copyright":"Copyright Text","audioAuthor":"Audio Author","hasStatus":false,"hasTeaserItem":true,"allowAVConsumption":false,"displayEpgInfos":false,"aspectRatio":"ar--teaserTop","hideGeotag":false,"hideEditableByline":true,"doTracking":true,"trackingData":{"secondLevelId":"2","pageName":"download"},"trackingForArdMediatheksLink":false,"showMediatheksLink":false,"showAirdate":false,"showProfileInfoAsByline":false,"obsolet_brandOfTeaser":"hessenschau","documentSection":"","headlineTag":"h1","icon":"ortsmarke","imageVariant":"topteaser","shorttext":"","hideBylineAndShorttext":false,"sophoraId":"rueckkehr-nach-abschiebung-wolfhagen--100","profiles":"","teaserLead":{"avDocument":"","image":""},"geotag":[{"title":"Wolfhagen"}],"link":{"url":"/teaser1","webviewUrl":"/teaser1#webview","isTargetBlank":false,"hasIcon":false,"iconName":"iconName","readMoreText":{"readMoreScreenreader":"Zum Artikel","readMore":"mehr","readMoreLong":"read More Long"}},"label":{"type":"download","loca":"label_download","byline":{"bylineText":"ZIP - 3mb"}}}}}}}}
|