hr-design-system-handlebars 1.1.7 → 1.1.9

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 (109) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/dist/assets/brand/_default/conf/locatags.json +4 -0
  3. package/dist/assets/index.css +109 -110
  4. package/dist/views/components/base/loadSSI.hbs +1 -1
  5. package/dist/views/components/base/load_dynamic.hbs +9 -0
  6. package/dist/views/components/event/calendar/event_calendar_event_teaser.hbs +4 -6
  7. package/dist/views/components/event/event_tag.hbs +1 -1
  8. package/dist/views/components/event/event_tags.hbs +10 -10
  9. package/dist/views/components/event/event_ticket_button.hbs +1 -1
  10. package/dist/views/components/event/label_byline.ssi.hbs +9 -0
  11. package/dist/views/components/label/label.hbs +4 -13
  12. package/dist/views/components/label/label_byline.hbs +7 -4
  13. package/dist/views/components/label/label_group.hbs +1 -1
  14. package/dist/views/components/label/{label_test.hbs → label_old.hbs} +13 -4
  15. package/dist/views/components/multimedia/livestream/label_byline.ssi.hbs +19 -0
  16. package/dist/views/components/program/label_byline.ssi.hbs +9 -0
  17. package/dist/views/components/teaser/cluster/teaser_cluster_item.hbs +9 -10
  18. package/dist/views/components/teaser/components/teaser_body.hbs +21 -15
  19. package/dist/views/components/teaser/components/teaser_header.hbs +1 -1
  20. package/dist/views/components/teaser/components/teaser_heading.hbs +2 -2
  21. package/dist/views/components/teaser/components/teaser_subline.hbs +3 -0
  22. package/dist/views/components/teaser/components/teaser_title.hbs +1 -1
  23. package/dist/views/components/teaser/components/teaser_title_old.hbs +3 -0
  24. package/dist/views/components/teaser/stage/stage_text.hbs +36 -31
  25. package/dist/views/components/teaser/teaser_alternativ.hbs +1 -1
  26. package/dist/views/components/teaser/teaser_poster.hbs +17 -12
  27. package/dist/views/components/text/byline.hbs +3 -0
  28. package/package.json +1 -1
  29. package/src/assets/brand/_default/conf/locatags.json +4 -0
  30. package/src/assets/brand/hessenschau/conf/locatags.merged.json +4 -0
  31. package/src/assets/brand/hr/conf/locatags.merged.json +4 -0
  32. package/src/assets/brand/hr-bigband/conf/locatags.merged.json +4 -0
  33. package/src/assets/brand/hr-fernsehen/conf/locatags.merged.json +4 -0
  34. package/src/assets/brand/hr-inforadio/conf/locatags.merged.json +4 -0
  35. package/src/assets/brand/hr-rundfunkrat/conf/locatags.merged.json +4 -0
  36. package/src/assets/brand/hr-sinfonieorchester/conf/locatags.merged.json +4 -0
  37. package/src/assets/brand/hr-werbung/conf/locatags.merged.json +4 -0
  38. package/src/assets/brand/hr1/conf/locatags.merged.json +4 -0
  39. package/src/assets/brand/hr2/conf/locatags.merged.json +4 -0
  40. package/src/assets/brand/hr3/conf/locatags.merged.json +4 -0
  41. package/src/assets/brand/hr4/conf/locatags.merged.json +4 -0
  42. package/src/assets/brand/you-fm/conf/locatags.merged.json +4 -0
  43. package/src/assets/fixtures/teaser/stage_teaser_eventtag.json +2 -6
  44. package/src/assets/fixtures/teaser/stage_teaser_program.json +10 -2
  45. package/src/assets/fixtures/teaser/teaser_alternative_100_serif_single_event.json +4 -0
  46. package/src/assets/fixtures/teaser/teaser_alternative_100_serif_two_events.json +4 -0
  47. package/src/assets/fixtures/teaser/teaser_labels.inc.json +65 -4
  48. package/src/assets/fixtures/teaser/teaser_standard_33_serif_single_event_status.json +22 -0
  49. package/src/assets/fixtures/teaser/teaser_standard_50_serif_live.json +8 -0
  50. package/src/assets/fixtures/teaser/teasers.inc.json +8 -9
  51. package/src/assets/tailwind.css +95 -93
  52. package/src/stories/views/components/base/loadSSI.hbs +1 -1
  53. package/src/stories/views/components/base/load_dynamic.hbs +9 -0
  54. package/src/stories/views/components/event/calendar/event_calendar_event_teaser.hbs +4 -6
  55. package/src/stories/views/components/event/calendar/fixtures/event_calendar_event_teaser.json +1 -1
  56. package/src/stories/views/components/event/event_tag.hbs +1 -1
  57. package/src/stories/views/components/event/event_tags.hbs +10 -10
  58. package/src/stories/views/components/event/event_ticket_button.hbs +1 -1
  59. package/src/stories/views/components/event/label_byline.ssi.hbs +9 -0
  60. package/src/stories/views/components/label/label.hbs +4 -13
  61. package/src/stories/views/components/label/label_byline.hbs +7 -4
  62. package/src/stories/views/components/label/label_group.hbs +1 -1
  63. package/src/stories/views/components/label/{label_test.hbs → label_old.hbs} +13 -4
  64. package/src/stories/views/components/multimedia/livestream/label_byline.ssi.hbs +19 -0
  65. package/src/stories/views/components/program/label_byline.ssi.hbs +9 -0
  66. package/src/stories/views/components/teaser/cluster/teaser_cluster_item.hbs +9 -10
  67. package/src/stories/views/components/teaser/components/teaser_body.hbs +21 -15
  68. package/src/stories/views/components/teaser/components/teaser_header.hbs +1 -1
  69. package/src/stories/views/components/teaser/components/teaser_heading.hbs +2 -2
  70. package/src/stories/views/components/teaser/components/teaser_subline.hbs +3 -0
  71. package/src/stories/views/components/teaser/components/teaser_title.hbs +1 -1
  72. package/src/stories/views/components/teaser/components/teaser_title_old.hbs +3 -0
  73. package/src/stories/views/components/teaser/fixtures/stage_teaser_eventtag.json +1 -1
  74. package/src/stories/views/components/teaser/fixtures/stage_teaser_program.json +1 -1
  75. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_download.json +1 -1
  76. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_live.json +1 -1
  77. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_single_event.json +1 -1
  78. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif_two_events.json +1 -1
  79. package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif_download.json +1 -1
  80. package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif_live.json +1 -1
  81. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_live.json +1 -1
  82. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_program.json +1 -1
  83. package/src/stories/views/components/teaser/fixtures/teaser_event_calendar_100_serif.json +1 -1
  84. package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif_download.json +1 -1
  85. package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif_program.json +1 -1
  86. package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif_single_event.json +1 -1
  87. package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif_two_events.json +1 -1
  88. package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif_audio_livestream.json +1 -1
  89. package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif_live.json +1 -1
  90. package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif_podcast.json +1 -1
  91. package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif_multiple_events.json +1 -1
  92. package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif_single_event copy.json +1 -0
  93. package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif_single_event.json +1 -1
  94. package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif_single_event_status.json +1 -0
  95. package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif_two_events.json +1 -1
  96. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_audio_livestream.json +1 -1
  97. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_download.json +1 -1
  98. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_live.json +1 -1
  99. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_podcast.json +1 -1
  100. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_single_event.json +1 -1
  101. package/src/stories/views/components/teaser/fixtures/teaser_standard_66_serif_single_event.json +1 -1
  102. package/src/stories/views/components/teaser/stage/stage_text.hbs +36 -31
  103. package/src/stories/views/components/teaser/teaser_alternativ.hbs +1 -1
  104. package/src/stories/views/components/teaser/teaser_poster.hbs +17 -12
  105. package/src/stories/views/components/teaser/teaser_standard_event.stories.mdx +16 -8
  106. package/src/stories/views/components/text/byline.hbs +3 -0
  107. package/tailwind.config.js +4 -3
  108. package/dist/views/components/teaser/components/teaser_title_test.hbs +0 -3
  109. package/src/stories/views/components/teaser/components/teaser_title_test.hbs +0 -3
@@ -8,8 +8,8 @@
8
8
  /*! purgecss start ignore */
9
9
  :root,
10
10
  [data-theme='default'] {
11
- --color-primary: theme('colors.blue.congress');
12
- --color-secondary: #606060;
11
+ --color-primary-ds: theme('colors.blue.congress');
12
+ --color-secondary-ds: #606060;
13
13
  --color-highlight-1: theme('colors.blue.accented');
14
14
  --color-highlight-2: theme('colors.orange.spicyCarrot');
15
15
 
@@ -41,14 +41,14 @@
41
41
  --color-event-status: theme('colors.red.thunderbird');
42
42
  /* Eventkalender */
43
43
  --color-label-event-calendar-title: theme('colors.teal.deeperPool');
44
- --color-eventcalendar-primary: var(--color-primary);
44
+ --color-eventcalendar-primary: var(--color-primary-ds);
45
45
  --color-eventcalendar-secondary: theme('colors.grey.boulder');
46
46
  /* Subline */
47
47
  --color-subline: var(--color-topline);
48
48
  /* Link */
49
49
  --color-link: theme('colors.blue.deepCerulean');
50
50
  /* Stage */
51
- --color-stage-text-box: theme('colors.blue.deepCerulean');
51
+ --color-stage-text-box: 0 110 183;
52
52
  --color-stage-text: theme('colors.white.DEFAULT');
53
53
  --color-stage-primary: theme('colors.blue.deepCerulean');
54
54
  --color-stage-link: var('--color-link');
@@ -58,16 +58,18 @@
58
58
  --color-cluster-teaser-link: theme('colors.blue.science');
59
59
  --color-cluster-teaser-headline: theme('colors.blue.congress');
60
60
  /* Button */
61
- --color-button: var(--color-primary);
61
+ --color-button: var(--color-primary-ds);
62
62
  --color-button-inverted: theme('colors.white.DEFAULT');
63
63
  --color-button-hollow: theme('colors.blue.science');
64
64
  /* States */
65
- --color-focus-state: var(--color-primary);
65
+ --color-focus-state: var(--color-primary-ds);
66
66
  /* Content-Nav */
67
- --color-content-nav: var(--color-primary);
67
+ --color-content-nav: var(--color-primary-ds);
68
68
  /* Podcast-Player */
69
69
  --color-podcast: theme('colors.blue.science');
70
70
  --color-podcast-text: var(--color-link);
71
+ /* Byline */
72
+ --color-byline: theme('colors.grey.scorpion');
71
73
  /* Font */
72
74
  --font-title: theme('fontFamily.heading');
73
75
  --font-weight-title: theme('fontWeight.bold');
@@ -78,8 +80,8 @@
78
80
  }
79
81
 
80
82
  [data-theme='hessenschau'] {
81
- --color-primary: theme('colors.blue.congress');
82
- --color-secondary: #606060;
83
+ --color-primary-ds: theme('colors.blue.congress');
84
+ --color-secondary-ds: #606060;
83
85
  --color-highlight-1: theme('colors.blue.accented');
84
86
  --color-highlight-2: theme('colors.orange.spicyCarrot');
85
87
 
@@ -104,7 +106,7 @@
104
106
  /* Kurzmeldung */
105
107
  --color-label-kurzmeldung: theme('colors.blue.tarawera');
106
108
  /* Eventkalender */
107
- --color-eventcalendar-primary: var(--color-primary);
109
+ --color-eventcalendar-primary: var(--color-primary-ds);
108
110
  /* Dachzeile */
109
111
  --color-topline: #006dc1;
110
112
  /* Subline */
@@ -112,7 +114,7 @@
112
114
  /* Link */
113
115
  --color-link: theme('colors.blue.science');
114
116
  /*Stage */
115
- --color-stage-text-box: theme('colors.grey.armadillo');
117
+ --color-stage-text-box: 67 61 55;
116
118
  --color-stage-primary: theme('colors.blue.congress');
117
119
  --color-stage-text: theme('colors.white.DEFAULT');
118
120
  --color-stage-link: theme('colors.white.DEFAULT');
@@ -122,13 +124,13 @@
122
124
  --color-cluster-teaser-link: theme('colors.blue.science');
123
125
  --color-cluster-teaser-headline: theme('colors.blue.congress');
124
126
  /* Button */
125
- --color-button: var(--color-primary);
127
+ --color-button: var(--color-primary-ds);
126
128
  --color-button-inverted: theme('colors.white.DEFAULT');
127
129
  --color-button-hollow: theme('colors.blue.science');
128
130
  /* States */
129
- --color-focus-state: var(--color-primary);
131
+ --color-focus-state: var(--color-primary-ds);
130
132
  /* Content-Nav */
131
- --color-content-nav: var(--color-primary);
133
+ --color-content-nav: var(--color-primary-ds);
132
134
  /* Podcast-Player */
133
135
  --color-podcast: theme('colors.blue.science');
134
136
  --color-podcast-text: var(--color-link);
@@ -143,8 +145,8 @@
143
145
  }
144
146
 
145
147
  [data-theme='hr-fernsehen'] {
146
- --color-primary: theme('colors.purple.jazzberry');
147
- --color-secondary: #007179;
148
+ --color-primary-ds: theme('colors.purple.jazzberry');
149
+ --color-secondary-ds: #007179;
148
150
  --color-highlight-1: theme('colors.white.blackhaze');
149
151
  --color-highlight-2: theme('colors.orange.spicyCarrot');
150
152
 
@@ -165,7 +167,7 @@
165
167
  /* Kurzmeldung */
166
168
  --color-label-kurzmeldung: theme('colors.blue.tarawera');
167
169
  /* Eventkalender */
168
- --color-eventcalendar-primary: var(--color-primary);
170
+ --color-eventcalendar-primary: var(--color-primary-ds);
169
171
  /* Dachzeile */
170
172
  --color-topline: theme('colors.purple.jazzberry');
171
173
  /* Subline */
@@ -173,7 +175,7 @@
173
175
  /* Link */
174
176
  --color-link: theme('colors.purple.jazzberry');
175
177
  /* Stage */
176
- --color-stage-text-box: theme('colors.white.blackhaze');
178
+ --color-stage-text-box: 234 237 237;
177
179
  --color-stage-text: theme('colors.black.DEFAULT');
178
180
  --color-stage-primary: theme('colors.purple.pompadour');
179
181
  --color-stage-link: var(--color-link);
@@ -181,13 +183,13 @@
181
183
  --color-cluster-teaser-link: theme('colors.purple.jazzberry');
182
184
  --color-cluster-teaser-headline: theme('colors.purple.pompadour');
183
185
  /* Button */
184
- --color-button: var(--color-primary);
186
+ --color-button: var(--color-primary-ds);
185
187
  --color-button-inverted: theme('colors.white.DEFAULT');
186
188
  --color-button-hollow: theme('colors.purple.jazzberry');
187
189
  /* States */
188
- --color-focus-state: var(--color-primary);
190
+ --color-focus-state: var(--color-primary-ds);
189
191
  /* Content-Nav */
190
- --color-content-nav: var(--color-primary);
192
+ --color-content-nav: var(--color-primary-ds);
191
193
  /* Podcast-Player */
192
194
  --color-podcast: theme('colors.purple.jazzberry');
193
195
  --color-podcast-text: var(--color-link);
@@ -198,8 +200,8 @@
198
200
  }
199
201
 
200
202
  [data-theme='hr-inforadio'] {
201
- --color-primary: theme('colors.blue.jellyBean');
202
- --color-secondary: #007179;
203
+ --color-primary-ds: theme('colors.blue.jellyBean');
204
+ --color-secondary-ds: #007179;
203
205
  --color-highlight-1: theme('colors.blue.aqua');
204
206
  --color-highlight-2: theme('colors.orange.spicyCarrot');
205
207
 
@@ -220,7 +222,7 @@
220
222
  /* Kurzmeldung */
221
223
  --color-label-kurzmeldung: theme('colors.blue.tarawera');
222
224
  /* Eventkalender */
223
- --color-eventcalendar-primary: var(--color-primary);
225
+ --color-eventcalendar-primary: var(--color-primary-ds);
224
226
  /* Dachzeile */
225
227
  --color-topline: theme('colors.blue.jellyBean');
226
228
  /* Subline */
@@ -228,20 +230,20 @@
228
230
  /* Link */
229
231
  --color-link: theme('colors.blue.jellyBean');
230
232
  /* Stage */
231
- --color-stage-text-box: theme('colors.blue.astronautBlue');
233
+ --color-stage-text-box: 0 55 93;
232
234
  --color-stage-primary: theme('colors.blue.astronautBlue');
233
235
  --color-stage-link: theme('colors.white.DEFAULT');
234
236
  /* Cluster-Teaser */
235
- --color-cluster-teaser-link: var(--color-primary);
237
+ --color-cluster-teaser-link: var(--color-primary-ds);
236
238
  --color-cluster-teaser-headline: theme('colors.blue.astronautBlue');
237
239
  /* Button */
238
- --color-button: var(--color-primary);
240
+ --color-button: var(--color-primary-ds);
239
241
  --color-button-inverted: theme('colors.white.DEFAULT');
240
242
  --color-button-hollow: theme('colors.blue.jellyBean');
241
243
  /* States */
242
- --color-focus-state: var(--color-primary);
244
+ --color-focus-state: var(--color-primary-ds);
243
245
  /* Content-Nav */
244
- --color-content-nav: var(--color-primary);
246
+ --color-content-nav: var(--color-primary-ds);
245
247
  /* Podcast-Player */
246
248
  --color-podcast: theme('colors.blue.jellyBean');
247
249
  --color-podcast-text: var(--color-link);
@@ -252,8 +254,8 @@
252
254
  }
253
255
 
254
256
  [data-theme='hr-rundfunkrat'] {
255
- --color-primary: theme('colors.grey.scorpion');
256
- --color-secondary: #007179;
257
+ --color-primary-ds: theme('colors.grey.scorpion');
258
+ --color-secondary-ds: #007179;
257
259
  --color-highlight-1: theme('colors.blue.linkWater');
258
260
  --color-highlight-2: theme('colors.orange.spicyCarrot');
259
261
 
@@ -284,7 +286,7 @@
284
286
  /* Link */
285
287
  --color-link: theme('colors.blue.deepCerulean');
286
288
  /* Stage */
287
- --color-stage-text-box: theme('colors.blue.deepCerulean');
289
+ --color-stage-text-box: 0 110 183;
288
290
  --color-stage-primary: theme('colors.blue.deepCerulean');
289
291
  --color-stage-link: theme('colors.white.DEFAULT');
290
292
  /* Cluster-Teaser */
@@ -308,8 +310,8 @@
308
310
  }
309
311
 
310
312
  [data-theme='hr-werbung'] {
311
- --color-primary: theme('colors.blue.deepCerulean');
312
- --color-secondary: #007179;
313
+ --color-primary-ds: theme('colors.blue.deepCerulean');
314
+ --color-secondary-ds: #007179;
313
315
  --color-highlight-1: theme('colors.blue.linkWater');
314
316
  --color-highlight-2: theme('colors.orange.spicyCarrot');
315
317
 
@@ -338,22 +340,22 @@
338
340
  /* Subline */
339
341
  --color-subline: var(--color-topline);
340
342
  /* Link */
341
- --color-link: var(--color-primary);
343
+ --color-link: var(--color-primary-ds);
342
344
  /* Stage */
343
- --color-stage-text-box: var(--color-primary);
344
- --color-stage-primary: var(--color-primary);
345
+ --color-stage-text-box: 0 110 183;
346
+ --color-stage-primary: var(--color-primary-ds);
345
347
  --color-stage-link: theme('colors.white.DEFAULT');
346
348
  /* Cluster-Teaser */
347
- --color-cluster-teaser-link: var(--color-primary);
349
+ --color-cluster-teaser-link: var(--color-primary-ds);
348
350
  --color-cluster-teaser-headline: theme('colors.blue.congress');
349
351
  /* Button */
350
- --color-button: var(--color-primary);
352
+ --color-button: var(--color-primary-ds);
351
353
  --color-button-inverted: theme('colors.white.DEFAULT');
352
- --color-button-hollow: var(--color-primary);
354
+ --color-button-hollow: var(--color-primary-ds);
353
355
  /* States */
354
- --color-focus-state: var(--color-primary);
356
+ --color-focus-state: var(--color-primary-ds);
355
357
  /* Content-Nav */
356
- --color-content-nav: var(--color-primary);
358
+ --color-content-nav: var(--color-primary-ds);
357
359
  /* Podcast-Player */
358
360
  --color-podcast: theme('colors.blue.deepCerulean');
359
361
  --color-podcast-text: var(--color-link);
@@ -364,8 +366,8 @@
364
366
  }
365
367
 
366
368
  [data-theme='hr-sinfonieorchester'] {
367
- --color-primary: theme('colors.red.burntUmber');
368
- --color-secondary: #007179;
369
+ --color-primary-ds: theme('colors.red.burntUmber');
370
+ --color-secondary-ds: #007179;
369
371
  --color-highlight-1: theme('colors.grey.alto');
370
372
  --color-highlight-2: theme('colors.orange.spicyCarrot');
371
373
 
@@ -386,7 +388,7 @@
386
388
  /* Kurzmeldung */
387
389
  --color-label-kurzmeldung: theme('colors.blue.tarawera');
388
390
  /* Eventkalender */
389
- --color-eventcalendar-primary: var(--color-primary);
391
+ --color-eventcalendar-primary: var(--color-primary-ds);
390
392
  /* Dachzeile */
391
393
  --color-topline: theme('colors.red.wellRead');
392
394
  /* Subline */
@@ -394,12 +396,12 @@
394
396
  /* Link */
395
397
  --color-link: theme('colors.red.wellRead');
396
398
  /* Stage */
397
- --color-stage-text-box: var(--color-primary);
398
- --color-stage-primary: var(--color-primary);
399
+ --color-stage-text-box: 141 39 37;
400
+ --color-stage-primary: var(--color-primary-ds);
399
401
  --color-stage-link: theme('colors.white.DEFAULT');
400
402
  /* Cluster-Teaser */
401
403
  --color-cluster-teaser-link: theme('colors.red.wellRead');
402
- --color-cluster-teaser-headline: var(--color-primary);
404
+ --color-cluster-teaser-headline: var(--color-primary-ds);
403
405
  /* Button */
404
406
  --color-button: theme('colors.red.wellRead');
405
407
  --color-button-inverted: theme('colors.white.DEFAULT');
@@ -418,8 +420,8 @@
418
420
  }
419
421
 
420
422
  [data-theme='hr-bigband'] {
421
- --color-primary: theme('colors.blue.blueStone');
422
- --color-secondary: #007179;
423
+ --color-primary-ds: theme('colors.blue.blueStone');
424
+ --color-secondary-ds: #007179;
423
425
  --color-highlight-1: theme('colors.blue.blackSqueeze');
424
426
  --color-highlight-2: theme('colors.orange.spicyCarrot');
425
427
 
@@ -440,7 +442,7 @@
440
442
  /* Kurzmeldung */
441
443
  --color-label-kurzmeldung: theme('colors.blue.tarawera');
442
444
  /* Eventkalender */
443
- --color-eventcalendar-primary: var(--color-primary);
445
+ --color-eventcalendar-primary: var(--color-primary-ds);
444
446
  /* Dachzeile */
445
447
  --color-topline: theme('colors.blue.teal');
446
448
  /* Subline */
@@ -448,12 +450,12 @@
448
450
  /* Link */
449
451
  --color-link: theme('colors.blue.teal');
450
452
  /* Stage */
451
- --color-stage-text-box: theme('colors.grey.armadillo');
453
+ --color-stage-text-box: 67 61 55;
452
454
  --color-stage-primary: theme('colors.blue.blueStone');
453
455
  --color-stage-link: theme('colors.white.DEFAULT');
454
456
  /* Cluster-Teaser */
455
457
  --color-cluster-teaser-link: theme('colors.blue.teal');
456
- --color-cluster-teaser-headline: var(--color-primary);
458
+ --color-cluster-teaser-headline: var(--color-primary-ds);
457
459
  /* Button */
458
460
  --color-button: theme('colors.blue.teal');
459
461
  --color-button-inverted: theme('colors.white.DEFAULT');
@@ -472,8 +474,8 @@
472
474
  }
473
475
 
474
476
  [data-theme='hr'] {
475
- --color-primary: theme('colors.blue.deepCerulean');
476
- --color-secondary: #007179;
477
+ --color-primary-ds: theme('colors.blue.deepCerulean');
478
+ --color-secondary-ds: #007179;
477
479
  --color-highlight-1: theme('colors.blue.linkWater');
478
480
  --color-highlight-2: theme('colors.orange.spicyCarrot');
479
481
 
@@ -492,34 +494,34 @@
492
494
  /* Event */
493
495
  --color-label-event: theme('colors.black.DEFAULT');
494
496
  /* Pressemitteilungen */
495
- --color-label-pm: var(--color-primary);
497
+ --color-label-pm: var(--color-primary-ds);
496
498
  /* Kurzmeldung */
497
499
  --color-label-kurzmeldung: theme('colors.blue.tarawera');
498
500
  /* Eventkalender */
499
- --color-eventcalendar-primary: var(--color-primary);
501
+ --color-eventcalendar-primary: var(--color-primary-ds);
500
502
  /* Dachzeile */
501
- --color-topline: var(--color-primary);
503
+ --color-topline: var(--color-primary-ds);
502
504
  /* Subline */
503
505
  --color-subline: var(--color-topline);
504
506
  /* Link */
505
- --color-link: var(--color-primary);
507
+ --color-link: var(--color-primary-ds);
506
508
  /* Stage */
507
- --color-stage-text-box: var(--color-primary);
508
- --color-stage-primary: var(--color-primary);
509
+ --color-stage-text-box: 0 110 183;
510
+ --color-stage-primary: var(--color-primary-ds);
509
511
  --color-stage-link: theme('colors.white.DEFAULT');
510
512
  /* Cluster-Teaser */
511
- --color-cluster-teaser-link: var(--color-primary);
513
+ --color-cluster-teaser-link: var(--color-primary-ds);
512
514
  --color-cluster-teaser-headline: theme('colors.blue.astronautBlue');
513
515
  /* Button */
514
- --color-button: var(--color-primary);
516
+ --color-button: var(--color-primary-ds);
515
517
  --color-button-inverted: theme('colors.white.DEFAULT');
516
- --color-button-hollow: var(--color-primary);
518
+ --color-button-hollow: var(--color-primary-ds);
517
519
  /* States */
518
- --color-focus-state: var(--color-primary);
520
+ --color-focus-state: var(--color-primary-ds);
519
521
  /* Content-Nav */
520
- --color-content-nav: var(--color-primary);
522
+ --color-content-nav: var(--color-primary-ds);
521
523
  /* Podcast-Player */
522
- --color-podcast: var(--color-primary);
524
+ --color-podcast: var(--color-primary-ds);
523
525
  --color-podcast-text: var(--color-link);
524
526
  --color-podcast-highlight: theme('colors.orange.chelseaGem');
525
527
  /* Font */
@@ -528,8 +530,8 @@
528
530
  }
529
531
 
530
532
  [data-theme='hr1'] {
531
- --color-primary: theme('colors.yellow.corn');
532
- --color-secondary: #007179;
533
+ --color-primary-ds: theme('colors.yellow.corn');
534
+ --color-secondary-ds: #007179;
533
535
  --color-highlight-1: theme('colors.white.floral');
534
536
  --color-highlight-2: theme('colors.orange.spicyCarrot');
535
537
 
@@ -560,7 +562,7 @@
560
562
  /* Link */
561
563
  --color-link: theme('colors.yellow.olive');
562
564
  /* Stage */
563
- --color-stage-text-box: theme('colors.grey.armadillo');
565
+ --color-stage-text-box: 67 61 55;
564
566
  --color-stage-primary: theme('colors.yellow.corn');
565
567
  --color-stage-link: theme('colors.white.DEFAULT');
566
568
  /* Cluster-Teaser */
@@ -584,8 +586,8 @@
584
586
  }
585
587
 
586
588
  [data-theme='hr2'] {
587
- --color-primary: theme('colors.orange.clementine');
588
- --color-secondary: #007179;
589
+ --color-primary-ds: theme('colors.orange.clementine');
590
+ --color-secondary-ds: #007179;
589
591
  --color-highlight-1: theme('colors.grey.alto');
590
592
  --color-highlight-2: theme('colors.orange.spicyCarrot');
591
593
 
@@ -614,8 +616,8 @@
614
616
  /* Link */
615
617
  --color-link: theme('colors.red.paprika');
616
618
  /* Stage */
617
- --color-stage-text-box: theme('colors.white.DEFAULT');
618
- --color-stage-primary: var(--color-primary);
619
+ --color-stage-text-box: 255 255 255;
620
+ --color-stage-primary: var(--color-primary-ds);
619
621
  --color-stage-text: theme('colors.black.DEFAULT');
620
622
  --color-stage-link: var(--color-link);
621
623
  /* Cluster-Teaser */
@@ -639,8 +641,8 @@
639
641
  }
640
642
 
641
643
  [data-theme='hr3'] {
642
- --color-primary: theme('colors.red.monza');
643
- --color-secondary: #007179;
644
+ --color-primary-ds: theme('colors.red.monza');
645
+ --color-secondary-ds: #007179;
644
646
  --color-highlight-1: theme('colors.grey.mercury');
645
647
  --color-highlight-2: theme('colors.orange.spicyCarrot');
646
648
 
@@ -663,31 +665,31 @@
663
665
  /* Event */
664
666
  --color-event-status: theme('colors.green.pineGreen');
665
667
  /* Eventkalender */
666
- --color-eventcalendar-primary: var(--color-primary);
668
+ --color-eventcalendar-primary: var(--color-primary-ds);
667
669
  /* Dachzeile */
668
- --color-topline: var(--color-primary);
670
+ --color-topline: var(--color-primary-ds);
669
671
  /* Subline */
670
672
  --color-subline: var(--color-topline);
671
673
  /* Link */
672
- --color-link: var(--color-primary);
674
+ --color-link: var(--color-primary-ds);
673
675
  /* Stage */
674
- --color-stage-text-box: theme('colors.white.DEFAULT');
675
- --color-stage-primary: var(--color-primary);
676
- --color-stage-text: var(--color-primary);
676
+ --color-stage-text-box: 255 255 255;
677
+ --color-stage-primary: var(--color-primary-ds);
678
+ --color-stage-text: var(--color-primary-ds);
677
679
  --color-stage-link: var(--color-link);
678
680
  /* Cluster-Teaser */
679
- --color-cluster-teaser-link: var(--color-primary);
681
+ --color-cluster-teaser-link: var(--color-primary-ds);
680
682
  --color-cluster-teaser-headline: theme('colors.black.DEFAULT');
681
683
  /* Button */
682
684
  --color-button: theme('colors.red.scarlett');
683
685
  --color-button-inverted: theme('colors.white.DEFAULT');
684
686
  --color-button-hollow: theme('colors.red.scarlett');
685
687
  /* States */
686
- --color-focus-state: var(--color-primary);
688
+ --color-focus-state: var(--color-primary-ds);
687
689
  /* Content-Nav */
688
690
  --color-content-nav: theme('colors.red.scarlett');
689
691
  /* Podcast-Player */
690
- --color-podcast: var(--color-primary);
692
+ --color-podcast: var(--color-primary-ds);
691
693
  --color-podcast-text: var(--color-link);
692
694
  --color-podcast-highlight: theme('colors.green.pineGreen');
693
695
  /* Font */
@@ -696,8 +698,8 @@
696
698
  }
697
699
 
698
700
  [data-theme='hr4'] {
699
- --color-primary: theme('colors.green.genoa');
700
- --color-secondary: #007179;
701
+ --color-primary-ds: theme('colors.green.genoa');
702
+ --color-secondary-ds: #007179;
701
703
  --color-highlight-1: theme('colors.white.azureish');
702
704
  --color-highlight-2: theme('colors.orange.spicyCarrot');
703
705
 
@@ -720,7 +722,7 @@
720
722
  /* Event */
721
723
  --color-event-status: theme('colors.red.alizarinCrimson');
722
724
  /* Eventkalender */
723
- --color-eventcalendar-primary: var(--color-primary);
725
+ --color-eventcalendar-primary: var(--color-primary-ds);
724
726
  /* Dachzeile */
725
727
  --color-topline: theme('colors.green.eden');
726
728
  /* Subline */
@@ -728,7 +730,7 @@
728
730
  /* Link */
729
731
  --color-link: theme('colors.green.eden');
730
732
  /* Stage */
731
- --color-stage-text-box: theme('colors.white.DEFAULT');
733
+ --color-stage-text-box: 255 255 255;
732
734
  --color-stage-primary: theme('colors.green.genoa');
733
735
  --color-stage-text: theme('colors.black.DEFAULT');
734
736
  --color-stage-link: theme('colors.black.DEFAULT');
@@ -742,7 +744,7 @@
742
744
  /* States */
743
745
  --color-focus-state: var(--color-link);
744
746
  /* Content-Nav */
745
- --color-content-nav: var(--color-primary);
747
+ --color-content-nav: var(--color-primary-ds);
746
748
  /* Podcast-Player */
747
749
  --color-podcast: theme('colors.green.eden');
748
750
  --color-podcast-text: var(--color-link);
@@ -755,8 +757,8 @@
755
757
  }
756
758
 
757
759
  [data-theme='you-fm'] {
758
- --color-primary: #c20016;
759
- --color-secondary: #007179;
760
+ --color-primary-ds: #c20016;
761
+ --color-secondary-ds: #007179;
760
762
  --color-highlight-1: theme('colors.grey.platinum');
761
763
  --color-highlight-2: theme('colors.orange.spicyCarrot');
762
764
 
@@ -785,7 +787,7 @@
785
787
  /* Link */
786
788
  --color-link: theme('colors.blue.sea');
787
789
  /* Stage */
788
- --color-stage-text-box: theme('colors.white.DEFAULT');
790
+ --color-stage-text-box: 255 255 255;
789
791
  --color-stage-primary: theme('colors.yellow.goldenSand');
790
792
  --color-stage-text: theme('colors.black.DEFAULT');
791
793
  --color-stage-link: theme('colors.black.DEFAULT');
@@ -1,5 +1,5 @@
1
1
  {{#if (isStorybook)}}
2
- {{> components/base/load_dynamic _templatePath=_templatePath}}
2
+ {{> components/base/load_dynamic _context=_context _templatePath=_templatePath}}
3
3
  {{else}}
4
4
  {{{this}}}
5
5
  {{/if}}
@@ -29,4 +29,13 @@
29
29
  {{#case "components/event/stage_location.ssi"}}
30
30
  {{> components/event/stage_location.ssi}}
31
31
  {{/case}}
32
+ {{#case "components/event/label_byline.ssi"}}
33
+ {{> components/event/label_byline.ssi _context}}
34
+ {{/case}}
35
+ {{#case "components/program/label_byline.ssi"}}
36
+ {{> components/program/label_byline.ssi _context}}
37
+ {{/case}}
38
+ {{#case "components/multimedia/livestream/label_byline.ssi"}}
39
+ {{> components/multimedia/livestream/label_byline.ssi _context}}
40
+ {{/case}}
32
41
  {{/switch}}
@@ -13,12 +13,11 @@
13
13
  <div class="flex flex-col items-start basis-10/12 w-10/12">
14
14
  <div class="absolute top-0 left-0 w-full sm:static">
15
15
  <div class="ar-4-3 sm:ar-auto">
16
- <header class="absolute bottom-0 left-0 p-4 w-full sm:pt-3 sm:pb-2 bg-white opacity-80 sm:static sm:bg-transparent">
16
+ {{#> components/teaser/components/teaser_header _css="absolute bottom-0 left-0 p-4 w-full sm:pt-3 sm:pb-2 bg-white opacity-80 sm:static sm:bg-transparent"}}
17
17
  {{#decorator 'components/base/link' _css="ds-teaser-focus hover:text-toplineColor" }}
18
- {{#> components/teaser/components/teaser_header}}
19
18
  {{#with this.label}}
20
19
  {{#> components/label/label_group}}
21
- {{> components/label/label_test _type=this.type _text=(loca this.loca) _css="mr-2"}}
20
+ {{> components/label/label _type=this.type _text=(loca this.loca) _css="mr-2"}}
22
21
  {{#if ../this.hasStatus}}
23
22
  {{> components/event/event_status _status=(loca ../this.statusDescriptionForLabelShort)}}
24
23
  {{/if}}
@@ -28,12 +27,11 @@
28
27
  {{#if this.topline}}
29
28
  {{> components/teaser/components/teaser_topline _text=this.topline}}
30
29
  {{/if}}
31
- {{> components/teaser/components/teaser_title_test _text=this.title _css="text-2xl"}}
30
+ {{> components/teaser/components/teaser_title _text=this.title _css="text-2xl"}}
32
31
  {{> components/event/event_tags this.eventtags}}
33
32
  {{/components/teaser/components/teaser_headline}}
34
- {{/components/teaser/components/teaser_header}}
35
33
  {{/decorator}}
36
- </header>
34
+ {{/components/teaser/components/teaser_header}}
37
35
  </div>
38
36
  </div>
39
37
  {{> components/event/event_details this}}
@@ -1 +1 @@
1
- {"isDateInstant":false,"startDate":{"htmlDate":"2023-01-09","day":9,"weekdayNameShort":"Mon","monthNameShort":"Jan"},"startTime":{"time":"18:00"},"image":{"alttext":"Lorem ipsum","copyrightWithLinks":"","responsiveImage":{"asPicture":true,"asImage":false,"fallback":"images/emmanuel-tjeknavorian-108_v-16to9.jpg","sources":[{"media":"all and (min-width: 1024px)","sizes":"25rem","srcset":"images/emmanuel-tjeknavorian-108_v-16to9__small.jpg 320w, images/emmanuel-tjeknavorian-108_v-16to9__medium.jpg 480w, images/emmanuel-tjeknavorian-108_v-16to9__medium__extended.jpg 640w, images/emmanuel-tjeknavorian-108_v-16to9.jpg 960w, images/emmanuel-tjeknavorian-108_v-16to9__retina.jpg 1920w"},{"media":"all and (max-width: 1023px)","sizes":"(min-width: 640px) 25rem, 100vw","srcset":"images/emmanuel-tjeknavorian-108_v-4to3__small.jpg 320w, images/emmanuel-tjeknavorian-108_v-4to3__medium.jpg 480w, images/emmanuel-tjeknavorian-108_v-4to3.jpg 650w, images/emmanuel-tjeknavorian-108_v-4to3__retina.jpg 1300w"}]}},"link":{"url":"/event_100","webviewUrl":"/event_100#webview","isTargetBlank":false,"hasIcon":false,"iconName":"iconName","readMoreText":{"readMoreScreenreader":"Zum Event","readMore":"mehr","readMoreLong":"read More Long"}},"label":{"type":"event","loca":"label_concert","byline":{"bylineSsi":"14.10.22, 20:00 Uhr","bylineText":"BylineText"}},"title":"Finale: Landeswettbewerb Jugend jazzt Hessen für Big Bands","eventtags":{"series":{"title":"Hessen lacht"},"project":{"title":"HR Bigband sucht den Superjazzer"}},"venue":{"addressCity":"Frankfurt","title":"Festhalle"},"isSoldOut":false,"hasStatus":true,"statusDescriptionForLabelShort":"event_status_cancelled","concertInfo":{"artists":{"artistsAndGroups":[{"artist":{"name":"Peter Maffay","groupName":"hr bigband","role":"Sänger"},"artistGroup":"hr bigband"}],"isEmpty":false,"description":"Tolle Künstler"},"compositions":{"isEmpty":false,"description":"Komposition-Description","compositions":[{"composerAndComposition":true,"composer":"Udo Lindenberg","name":"Horizont"}]},"concertInfoHead":{"title":"Das Fest","description":"Ein tolles Festival erwartet Sie","isEmpty":false},"isEmpty":false}}
1
+ {"isDateInstant":false,"startDate":{"htmlDate":"2023-01-09","day":9,"weekdayNameShort":"Mon","monthNameShort":"Jan"},"startTime":{"time":"18:00"},"image":{"alttext":"Lorem ipsum","copyrightWithLinks":"","responsiveImage":{"asPicture":true,"asImage":false,"fallback":"images/emmanuel-tjeknavorian-108_v-16to9.jpg","sources":[{"media":"all and (min-width: 1024px)","sizes":"25rem","srcset":"images/emmanuel-tjeknavorian-108_v-16to9__small.jpg 320w, images/emmanuel-tjeknavorian-108_v-16to9__medium.jpg 480w, images/emmanuel-tjeknavorian-108_v-16to9__medium__extended.jpg 640w, images/emmanuel-tjeknavorian-108_v-16to9.jpg 960w, images/emmanuel-tjeknavorian-108_v-16to9__retina.jpg 1920w"},{"media":"all and (max-width: 1023px)","sizes":"(min-width: 640px) 25rem, 100vw","srcset":"images/emmanuel-tjeknavorian-108_v-4to3__small.jpg 320w, images/emmanuel-tjeknavorian-108_v-4to3__medium.jpg 480w, images/emmanuel-tjeknavorian-108_v-4to3.jpg 650w, images/emmanuel-tjeknavorian-108_v-4to3__retina.jpg 1300w"}]}},"link":{"url":"/event_100","webviewUrl":"/event_100#webview","isTargetBlank":false,"hasIcon":false,"iconName":"iconName","readMoreText":{"readMoreScreenreader":"Zum Event","readMore":"mehr","readMoreLong":"read More Long"}},"label":{"type":"event","loca":"label_concert","byline":{"bylineSsi":"components/event/label_byline.ssi","context":{"firstInstant":{"hasStatus":false,"statusDescriptionForLabelShort":"event_status_cancelled","startDateTime":{"date":"14.10.22","time":"20:00"}},"moreThenOneEvent":false,"countEvents":1},"bylineText":"BylineText"}},"title":"Finale: Landeswettbewerb Jugend jazzt Hessen für Big Bands","eventtags":{"series":{"title":"Hessen lacht"},"project":{"title":"HR Bigband sucht den Superjazzer"}},"venue":{"addressCity":"Frankfurt","title":"Festhalle"},"isSoldOut":false,"hasStatus":true,"statusDescriptionForLabelShort":"event_status_cancelled","concertInfo":{"artists":{"artistsAndGroups":[{"artist":{"name":"Peter Maffay","groupName":"hr bigband","role":"Sänger"},"artistGroup":"hr bigband"}],"isEmpty":false,"description":"Tolle Künstler"},"compositions":{"isEmpty":false,"description":"Komposition-Description","compositions":[{"composerAndComposition":true,"composer":"Udo Lindenberg","name":"Horizont"}]},"concertInfoHead":{"title":"Das Fest","description":"Ein tolles Festival erwartet Sie","isEmpty":false},"isEmpty":false}}
@@ -1,3 +1,3 @@
1
1
  <span
2
- class='block text-subline font-normal font-heading text-base sm:text-xl mt-0.5'
2
+ class="block text-subline font-normal font-heading text-base sm:text-xl mt-0.5{{#if _css}} {{_css}}{{/if}}"
3
3
  >{{_title}}</span>
@@ -1,11 +1,11 @@
1
- {{#with this}}
2
- {{#with this.series}}
3
- {{> components/event/event_tag _title=this.title}}
4
- {{/with}}
5
- {{#with this.project}}
6
- {{> components/event/event_tag _title=this.title}}
7
- {{/with}}
8
- {{#with this.externalProject}}
9
- {{> components/event/event_tag _title=this}}
10
- {{/with}}
1
+
2
+ {{#with this.series}}
3
+ {{> components/event/event_tag _css=../_css _title=this.title}}
11
4
  {{/with}}
5
+ {{#with this.project}}
6
+ {{> components/event/event_tag _css=../_css _title=this.title}}
7
+ {{/with}}
8
+ {{#with this.externalProject}}
9
+ {{> components/event/event_tag _css=../_css _title=this}}
10
+ {{/with}}
11
+
@@ -5,7 +5,7 @@
5
5
  {{/components/button/button_v2}}
6
6
  {{#> components/modal/modal _trigger=(getRandom)}}
7
7
  {{#> components/teaser/components/teaser_headline}}
8
- {{> components/teaser/components/teaser_title_test _text=(loca 'ticket_modal_headline') _css="text-2xl"}}
8
+ {{> components/teaser/components/teaser_title _text=(loca 'ticket_modal_headline') _css="text-2xl"}}
9
9
  {{/components/teaser/components/teaser_headline}}
10
10
  <p class="text-base font-copy mt-2">{{loca "ticket_modal_text"}}</p>
11
11
 
@@ -0,0 +1,9 @@
1
+ {{#with this.firstInstant}}
2
+ {{#if this.hasStatus}}
3
+ {{> components/event/event_status _css="ml-2" _status=(loca this.statusDescriptionForLabelShort)}}
4
+ {{else}}
5
+ {{#> components/text/byline _css="ml-2"}}
6
+ {{this.startDateTime.date}}, {{this.startDateTime.time}} Uhr
7
+ {{/components/text/byline}}
8
+ {{/if}}
9
+ {{/with}}