hr-design-system-handlebars 1.35.15 → 1.36.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/dist/assets/brand/_default/conf/locatags.json +14 -0
  3. package/dist/assets/brand/you-fm/icons/logo/svgmap.min.svg +1 -1
  4. package/dist/assets/index.css +9 -3
  5. package/dist/views/components/article/components/podcast/podcast_player_episode.hbs +13 -0
  6. package/dist/views/components/article/components/podcast/podcast_player_playlist.hbs +0 -0
  7. package/dist/views/components/content/content_footer/content_footer.hbs +50 -0
  8. package/dist/views/components/pagination/pagination_current_page_invalid.hbs +1 -1
  9. package/dist/views/components/pagination/pagination_more_than_three_pages.hbs +7 -7
  10. package/dist/views/components/pagination/pagination_only_three_pages.hbs +3 -3
  11. package/dist/views/components/pagination/pagination_only_two_pages.hbs +2 -2
  12. package/dist/views/components/podcast/components/podcast_player_shorttext.hbs +9 -0
  13. package/dist/views/components/{teaser/podcast → podcast/components}/podcast_player_ui.hbs +5 -5
  14. package/{src/stories/views/components/teaser/podcast → dist/views/components/podcast/components}/podcast_subscribe_button.hbs +4 -4
  15. package/{src/stories/views/components/teaser → dist/views/components}/podcast/podcast_player.hbs +4 -14
  16. package/{src/stories/views/components/teaser → dist/views/components}/podcast/podcast_playlist_player.hbs +6 -6
  17. package/dist/views/components/teaser/podcast/podcast-playlist.hbs +1 -1
  18. package/dist/views/components/teaser/podcast/podcast.hbs +2 -1
  19. package/dist/views_static/components/article/components/podcast/podcast_player_episode.hbs +13 -0
  20. package/dist/views_static/components/article/components/podcast/podcast_player_playlist.hbs +0 -0
  21. package/dist/views_static/components/content/content_footer/content_footer.hbs +50 -0
  22. package/dist/views_static/components/pagination/pagination_current_page_invalid.hbs +1 -1
  23. package/dist/views_static/components/pagination/pagination_more_than_three_pages.hbs +7 -7
  24. package/dist/views_static/components/pagination/pagination_only_three_pages.hbs +3 -3
  25. package/dist/views_static/components/pagination/pagination_only_two_pages.hbs +2 -2
  26. package/dist/views_static/components/podcast/components/podcast_player_shorttext.hbs +9 -0
  27. package/dist/views_static/components/{teaser/podcast → podcast/components}/podcast_player_ui.hbs +5 -5
  28. package/dist/{views/components/teaser/podcast → views_static/components/podcast/components}/podcast_subscribe_button.hbs +4 -4
  29. package/dist/views_static/components/{teaser/podcast → podcast}/podcast_player.hbs +4 -14
  30. package/dist/{views/components/teaser → views_static/components}/podcast/podcast_playlist_player.hbs +6 -6
  31. package/dist/views_static/components/teaser/podcast/podcast-playlist.hbs +1 -1
  32. package/dist/views_static/components/teaser/podcast/podcast.hbs +2 -1
  33. package/package.json +1 -1
  34. package/src/assets/brand/_default/conf/locatags.json +14 -0
  35. package/src/assets/brand/hessenschau/conf/locatags.merged.json +14 -0
  36. package/src/assets/brand/hr/conf/locatags.merged.json +14 -0
  37. package/src/assets/brand/hr-bigband/conf/locatags.merged.json +14 -0
  38. package/src/assets/brand/hr-fernsehen/conf/locatags.merged.json +14 -0
  39. package/src/assets/brand/hr-inforadio/conf/locatags.merged.json +14 -0
  40. package/src/assets/brand/hr-rundfunkrat/conf/locatags.merged.json +14 -0
  41. package/src/assets/brand/hr-sinfonieorchester/conf/locatags.merged.json +14 -0
  42. package/src/assets/brand/hr-werbung/conf/locatags.merged.json +14 -0
  43. package/src/assets/brand/hr1/conf/locatags.merged.json +14 -0
  44. package/src/assets/brand/hr2/conf/locatags.merged.json +14 -0
  45. package/src/assets/brand/hr3/conf/locatags.merged.json +14 -0
  46. package/src/assets/brand/hr4/conf/locatags.merged.json +14 -0
  47. package/src/assets/brand/you-fm/conf/locatags.merged.json +14 -0
  48. package/src/assets/brand/you-fm/icons/logo/svgmap.min.svg +1 -1
  49. package/src/assets/fixtures/article/components/podcast/podcast_player_episode.json +373 -0
  50. package/src/assets/fixtures/teaser/teasers.inc.json +1 -1
  51. package/src/stories/views/components/article/components/podcast/fixtures/podcast_player_episode.json +1 -0
  52. package/src/stories/views/components/article/components/podcast/podcast_player_episode.hbs +13 -0
  53. package/src/stories/views/components/article/components/podcast/podcast_player_episode.mdx +21 -0
  54. package/src/stories/views/components/article/components/podcast/podcast_player_episode.stories.js +18 -0
  55. package/src/stories/views/components/article/components/podcast/podcast_player_playlist.hbs +0 -0
  56. package/src/stories/views/components/content/content_footer/content_footer.hbs +50 -0
  57. package/src/stories/views/components/page/fixtures/page.json +1 -1
  58. package/src/stories/views/components/pagination/pagination_current_page_invalid.hbs +1 -1
  59. package/src/stories/views/components/pagination/pagination_more_than_three_pages.hbs +7 -7
  60. package/src/stories/views/components/pagination/pagination_only_three_pages.hbs +3 -3
  61. package/src/stories/views/components/pagination/pagination_only_two_pages.hbs +2 -2
  62. package/src/stories/views/components/podcast/components/podcast_player_shorttext.hbs +9 -0
  63. package/src/stories/views/components/{teaser/podcast → podcast/components}/podcast_player_ui.hbs +5 -5
  64. package/{dist/views_static/components/teaser/podcast → src/stories/views/components/podcast/components}/podcast_subscribe_button.hbs +4 -4
  65. package/{dist/views/components/teaser → src/stories/views/components}/podcast/podcast_player.hbs +4 -14
  66. package/{dist/views_static/components/teaser → src/stories/views/components}/podcast/podcast_playlist_player.hbs +6 -6
  67. package/src/stories/views/components/{teaser/podcast → podcast}/podcast_subscribe_button.stories.js +2 -2
  68. package/src/stories/views/components/teaser/fixtures/teaser_podcast.json +1 -1
  69. package/src/stories/views/components/teaser/fixtures/teaser_podcast_50.json +1 -1
  70. package/src/stories/views/components/teaser/fixtures/teaser_podcast_playlist.json +1 -1
  71. package/src/stories/views/components/teaser/fixtures/teaser_podcast_playlist_50.json +1 -1
  72. package/src/stories/views/components/teaser/podcast/podcast-playlist.hbs +1 -1
  73. package/src/stories/views/components/teaser/podcast/podcast.hbs +2 -1
  74. package/src/stories/views/components/teaser/podcast/podcast.stories.js +4 -4
  75. /package/dist/views/components/{teaser/podcast → podcast/components}/podcast_downloadbutton.hbs +0 -0
  76. /package/dist/views/components/{teaser/podcast → podcast/components}/podcast_item_title.hbs +0 -0
  77. /package/dist/views/components/{teaser/podcast → podcast/components}/podcast_playbutton.hbs +0 -0
  78. /package/dist/views/components/{teaser/podcast → podcast/components}/podcast_playlist_shorttext.hbs +0 -0
  79. /package/dist/views/components/{teaser/podcast → podcast/components}/podcast_timedisplay.hbs +0 -0
  80. /package/dist/views/components/{teaser/podcast → podcast/components}/podcast_title.hbs +0 -0
  81. /package/dist/views_static/components/{teaser/podcast → podcast/components}/podcast_downloadbutton.hbs +0 -0
  82. /package/dist/views_static/components/{teaser/podcast → podcast/components}/podcast_item_title.hbs +0 -0
  83. /package/dist/views_static/components/{teaser/podcast → podcast/components}/podcast_playbutton.hbs +0 -0
  84. /package/dist/views_static/components/{teaser/podcast → podcast/components}/podcast_playlist_shorttext.hbs +0 -0
  85. /package/dist/views_static/components/{teaser/podcast → podcast/components}/podcast_timedisplay.hbs +0 -0
  86. /package/dist/views_static/components/{teaser/podcast → podcast/components}/podcast_title.hbs +0 -0
  87. /package/src/stories/views/components/{teaser/podcast → podcast/components}/podcast_downloadbutton.hbs +0 -0
  88. /package/src/stories/views/components/{teaser/podcast → podcast/components}/podcast_item_title.hbs +0 -0
  89. /package/src/stories/views/components/{teaser/podcast → podcast/components}/podcast_playbutton.hbs +0 -0
  90. /package/src/stories/views/components/{teaser/podcast → podcast/components}/podcast_playlist_shorttext.hbs +0 -0
  91. /package/src/stories/views/components/{teaser/podcast → podcast/components}/podcast_timedisplay.hbs +0 -0
  92. /package/src/stories/views/components/{teaser/podcast → podcast/components}/podcast_title.hbs +0 -0
  93. /package/src/stories/views/components/{teaser/podcast → podcast}/podcast_subscribe_button.mdx +0 -0