hr-design-system-handlebars 1.11.12 → 1.12.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 (118) hide show
  1. package/.storybook/main.js +9 -0
  2. package/.storybook/manager.js +18 -18
  3. package/.storybook/preview.js +9 -1
  4. package/CHANGELOG.md +25 -0
  5. package/README.md +13 -2
  6. package/build/handlebars/handlebars.js +1 -1
  7. package/build/scripts/build.js +1 -1
  8. package/config.js +1 -0
  9. package/dist/assets/index.css +225 -189
  10. package/dist/views/components/base/image/icon.hbs +1 -1
  11. package/dist/views/components/base/link.hbs +11 -1
  12. package/dist/views/components/base/link_open.hbs +12 -13
  13. package/dist/views/components/base/link_v2.hbs +14 -0
  14. package/dist/views/components/button/button.hbs +9 -24
  15. package/dist/views/components/button/components/button_icon.hbs +2 -1
  16. package/dist/views/components/button/components/button_label.hbs +1 -1
  17. package/dist/views/components/button/link_button.hbs +6 -0
  18. package/dist/views/components/button/utilities/button_base_classes.hbs +1 -0
  19. package/dist/views/components/button/utilities/button_dimension_classes.hbs +1 -0
  20. package/dist/views/components/button/utilities/button_on_image_classes.hbs +39 -0
  21. package/dist/views/components/button/utilities/button_variation_classes.hbs +14 -0
  22. package/dist/views/components/content_nav/content_nav_container.hbs +1 -1
  23. package/dist/views/components/content_nav/content_nav_item.hbs +1 -1
  24. package/dist/views/components/event/calendar/event_calendar_footer.hbs +1 -1
  25. package/dist/views/components/event/event_ticket_button.hbs +11 -9
  26. package/dist/views/components/grid/grid_group_highlight.hbs +1 -1
  27. package/dist/views/components/label/label_old.hbs +1 -1
  28. package/dist/views/components/mediaplayer/media_player.hbs +4 -22
  29. package/dist/views/components/mediaplayer/mediaplayer_button.hbs +9 -0
  30. package/dist/views/components/modal/modal.hbs +2 -2
  31. package/dist/views/components/site_header/brand_navigation/brand_navigation.hbs +1 -1
  32. package/dist/views/components/teaser/cluster/teaser_cluster.hbs +4 -1
  33. package/dist/views/components/teaser/cluster/teaser_cluster_byline.hbs +1 -1
  34. package/dist/views/components/teaser/cluster/teaser_cluster_item.hbs +1 -1
  35. package/dist/views/components/teaser/components/teaser_av_consumption_close_button.hbs +6 -20
  36. package/dist/views/components/teaser/components/teaser_byline.hbs +1 -1
  37. package/dist/views/components/teaser/components/teaser_image.hbs +7 -15
  38. package/dist/views/components/teaser/components/teaser_ticker_body.hbs +40 -0
  39. package/dist/views/components/teaser/podcast/podcast_subscribe_button.hbs +18 -15
  40. package/dist/views/components/teaser/podcast/podcast_title.hbs +2 -2
  41. package/dist/views/components/teaser/tabbox/group_tabbox.hbs +4 -1
  42. package/dist/views/components/teaser/tabbox/teaser_tabbox.hbs +10 -11
  43. package/dist/views/components/teaser/teaser_poster.hbs +5 -1
  44. package/dist/views/components/teaser/ticker/teaser_ticker.hbs +4 -4
  45. package/gulpfile.js +9 -0
  46. package/package.json +4 -2
  47. package/src/assets/css/custom-components.css +37 -38
  48. package/src/assets/css/custom-utilities.css +2 -2
  49. package/src/assets/fixtures/event/calendar/event_calendar_months.inc.json +5 -1
  50. package/src/assets/fixtures/teaser/teaser_ticker.inc.json +3 -3
  51. package/src/assets/fixtures/teaser/ticker_teaser_standard_100.json +5 -1
  52. package/src/assets/tailwind.css +54 -22
  53. package/src/stories/conventions-and-datastructure.mdx +217 -4
  54. package/src/stories/views/components/base/image/icon.hbs +1 -1
  55. package/src/stories/views/components/base/link.hbs +11 -1
  56. package/src/stories/views/components/base/link_open.hbs +12 -13
  57. package/src/stories/views/components/base/link_v2.hbs +14 -0
  58. package/src/stories/views/components/button/button.hbs +9 -24
  59. package/src/stories/views/components/button/button.mdx +186 -0
  60. package/src/stories/views/components/button/button.stories.js +508 -0
  61. package/src/stories/views/components/button/components/button_icon.hbs +2 -1
  62. package/src/stories/views/components/button/components/button_icon.mdx +25 -0
  63. package/src/stories/views/components/button/components/button_icon.stories.js +44 -0
  64. package/src/stories/views/components/button/components/button_label.hbs +1 -1
  65. package/src/stories/views/components/button/components/button_label.mdx +25 -0
  66. package/src/stories/views/components/button/components/button_label.stories.js +33 -0
  67. package/src/stories/views/components/button/link_button.hbs +6 -0
  68. package/src/stories/views/components/button/link_button.mdx +137 -0
  69. package/src/stories/views/components/button/link_button.stories.js +420 -0
  70. package/src/stories/views/components/button/utilities/button_base_classes.hbs +1 -0
  71. package/src/stories/views/components/button/utilities/button_dimension_classes.hbs +1 -0
  72. package/src/stories/views/components/button/utilities/button_on_image_classes.hbs +39 -0
  73. package/src/stories/views/components/button/utilities/button_variation_classes.hbs +14 -0
  74. package/src/stories/views/components/content_nav/content_nav_container.hbs +1 -1
  75. package/src/stories/views/components/content_nav/content_nav_item.hbs +1 -1
  76. package/src/stories/views/components/event/calendar/event_calendar_footer.hbs +1 -1
  77. package/src/stories/views/components/event/event_ticket_button.hbs +11 -9
  78. package/src/stories/views/components/grid/grid_group_highlight.hbs +1 -1
  79. package/src/stories/views/components/label/label_old.hbs +1 -1
  80. package/src/stories/views/components/mediaplayer/media_player.hbs +4 -22
  81. package/src/stories/views/components/mediaplayer/mediaplayer_button.hbs +9 -0
  82. package/src/stories/views/components/mediaplayer/mediaplayer_button.mdx +82 -0
  83. package/src/stories/views/components/mediaplayer/mediaplayer_button.stories.js +178 -0
  84. package/src/stories/views/components/modal/modal.hbs +2 -2
  85. package/src/stories/views/components/site_header/brand_navigation/brand_navigation.hbs +1 -1
  86. package/src/stories/views/components/teaser/cluster/teaser_cluster.hbs +4 -1
  87. package/src/stories/views/components/teaser/cluster/teaser_cluster_byline.hbs +1 -1
  88. package/src/stories/views/components/teaser/cluster/teaser_cluster_item.hbs +1 -1
  89. package/src/stories/views/components/teaser/components/teaser_av_consumption_close_button.hbs +6 -20
  90. package/src/stories/views/components/teaser/components/teaser_byline.hbs +1 -1
  91. package/src/stories/views/components/teaser/components/teaser_image.hbs +7 -15
  92. package/src/stories/views/components/teaser/components/teaser_ticker_body.hbs +40 -0
  93. package/src/stories/views/components/teaser/fixtures/teaser_event_calendar_100_serif.json +1 -1
  94. package/src/stories/views/components/teaser/fixtures/ticker_teaser_standard_100.json +1 -1
  95. package/src/stories/views/components/teaser/podcast/podcast_subscribe_button.hbs +18 -15
  96. package/src/stories/views/components/teaser/podcast/podcast_title.hbs +2 -2
  97. package/src/stories/views/components/teaser/tabbox/group_tabbox.hbs +4 -1
  98. package/src/stories/views/components/teaser/tabbox/teaser_tabbox.hbs +10 -11
  99. package/src/stories/views/components/teaser/teaser_poster.hbs +5 -1
  100. package/src/stories/views/components/teaser/ticker/teaser_ticker.hbs +4 -4
  101. package/src/stories/views/components/teaser/ticker/teaser_ticker.stories.js +1 -1
  102. package/tailwind.config.js +8 -1
  103. package/dist/views/components/button/button_pseudo.hbs +0 -8
  104. package/dist/views/components/button/button_pseudo.inc.hbs +0 -18
  105. package/dist/views/components/button/button_pseudo_v2.hbs +0 -12
  106. package/dist/views/components/button/button_round.hbs +0 -23
  107. package/dist/views/components/button/button_round_classes.hbs +0 -46
  108. package/dist/views/components/button/button_transparent.hbs +0 -17
  109. package/dist/views/components/button/button_v2.hbs +0 -7
  110. package/dist/views/components/button/components/button_pseudo_link.hbs +0 -3
  111. package/src/stories/views/components/button/button_pseudo.hbs +0 -8
  112. package/src/stories/views/components/button/button_pseudo.inc.hbs +0 -18
  113. package/src/stories/views/components/button/button_pseudo_v2.hbs +0 -12
  114. package/src/stories/views/components/button/button_round.hbs +0 -23
  115. package/src/stories/views/components/button/button_round_classes.hbs +0 -46
  116. package/src/stories/views/components/button/button_transparent.hbs +0 -17
  117. package/src/stories/views/components/button/button_v2.hbs +0 -7
  118. package/src/stories/views/components/button/components/button_pseudo_link.hbs +0 -3
@@ -22,6 +22,10 @@
22
22
  {{/components/teaser/components/teaser_headline}}
23
23
  {{/components/teaser/components/teaser_header}}
24
24
  {{/decorator}}
25
- {{~> components/button/button_pseudo _type="hollow-white" _withLink=true _isLinkAriaHidden=true _linkCss="ds-cta absolute flex w-full h-full items-end justify-center" _buttonCss=(inline-switch this.realTeaserSize '["33","50"]' '["z-20 mb-7","z-20 mb-7 md:mb-16"]') _buttonText=this.link.readMoreText.readMoreLong ~}}
25
+ <span class="absolute flex w-full h-full items-end justify-center ds-cta">
26
+ {{#> components/button/link_button _size="lg" _css=(inline-switch this.realTeaserSize '["33","50"]' '["z-20 mb-7","z-20 mb-7 md:mb-16"]') _variant="secondary" _isAriaHidden=true _onBackground=true}}
27
+ {{> components/button/components/button_label _css="" _label=this.link.readMoreText.readMoreLong}}
28
+ {{/components/button/link_button}}
29
+ </span>
26
30
  </div>
27
31
  </article>
@@ -1,4 +1,4 @@
1
- <article class="items-start relative col-span-12 flex {{if this.displayTeaserBodyAsImageOverlay '' 'gap-y-3'}} gap-x-4
1
+ <article class="bg-blue-congress rounded-tl-hr rounded-br-hr items-start relative col-span-12 flex {{if this.displayTeaserBodyAsImageOverlay '' 'gap-y-3'}} gap-x-4
2
2
  {{~inline-switch this.teaserSize '["25","33","50"]' '[" md:col-span-3"," md:col-span-4"," md:col-span-6",""]'}}
3
3
  {{~#if this.isMobile1to1}} js-is1to1 px-5 sm:px-0 md:flex-col{{else}} flex-col{{/if~}}
4
4
  "
@@ -18,12 +18,12 @@
18
18
  <div class="flex flex-col items-center justify-center p-4 border-r border-gray-400 border-dashed basis-1/12">
19
19
  {{> components/event/instant_dates}}
20
20
  </div>
21
- {{> components/teaser/components/teaser_body _outerCssClasses=(if this.isMobile1to1 'basis-11/12 py-4 sm:px-4 basis-3/5 w-3/5 md:basis-full md:w-full' 'basis-11/12 py-4 sm:px-4')}}
21
+ {{> components/teaser/components/teaser_ticker_body _outerCssClasses=(if this.isMobile1to1 'basis-11/12 py-4 sm:px-4 basis-3/5 w-3/5 md:basis-full md:w-full' 'basis-11/12 py-4 sm:px-4')}}
22
22
  {{/decorator}}
23
23
  {{else}}
24
- {{> components/teaser/components/teaser_body _outerCssClasses=(if this.isMobile1to1 'basis-3/5 w-3/5 md:basis-full md:w-full')}}
24
+ {{> components/teaser/components/teaser_ticker_body _outerCssClasses=(if this.isMobile1to1 'basis-3/5 w-3/5 md:basis-full md:w-full')}}
25
25
  {{/if}}
26
26
  {{else}}
27
- {{> components/teaser/components/teaser_body _outerCssClasses="basis-full"}}
27
+ {{> components/teaser/components/teaser_ticker_body _outerCssClasses="basis-full"}}
28
28
  {{/if}}
29
29
  </article>
package/gulpfile.js CHANGED
@@ -1,5 +1,6 @@
1
1
  const { src, dest, series, parallel, watch } = require('gulp')
2
2
  const debug = require('gulp-debug')
3
+ const replace = require('gulp-replace')
3
4
  const fs = require('fs')
4
5
  const mergeStream = require('merge-stream')
5
6
  const glob = require('glob')
@@ -316,10 +317,17 @@ function watchFiles() {
316
317
 
317
318
  async function convertPartialsToJs() {
318
319
  src(`${options.paths.assets.views}/**/*.hbs`)
320
+ .pipe(replace(/(_[0-9a-zA-Z_]+)-adjust_context/g, '$1'))
319
321
  .pipe(htmlToJs({ concat: 'handlebar-partials.js' }))
320
322
  .pipe(dest(options.paths.dist.handlebarPartials))
321
323
  }
322
324
 
325
+ async function preparePartialsForDelivery() {
326
+ src(`${options.paths.assets.components}/**/*.hbs`)
327
+ .pipe(replace(/(_[0-9a-zA-Z_]+)-adjust_context/g, '../../$1'))
328
+ .pipe(dest(options.paths.dist.dist_components))
329
+ }
330
+
323
331
  function createModernizr() {
324
332
  return src(`${options.paths.assets.views}/**/*.js`)
325
333
  .pipe(modernizr(require('./build/modernizr/config.json')))
@@ -371,3 +379,4 @@ exports.parseJson = series(parseJson, watchForChanges)
371
379
  exports.createModernizrConfig = series(createModernizr, addCustomModernizrTests)
372
380
  exports.mergeLocatags = mergeLocatags
373
381
  exports.convertPartialsToJs = convertPartialsToJs
382
+ exports.preparePartialsForDelivery = preparePartialsForDelivery
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "license": "MIT",
7
7
  "main": "dist/index.js",
8
8
  "repository": "https://github.com/szuelch/hr-design-system-handlebars",
9
- "version": "1.11.12",
9
+ "version": "1.12.1",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -15,7 +15,7 @@
15
15
  "build-storybook-docs": "storybook build --docs",
16
16
  "build-storybook-docs-with-tailwind": "npm run build:tailwind && npm run build-storybook-docs",
17
17
  "build:tailwind": "postcss src/assets/tailwind.css -o dist/assets/index.css",
18
- "build": "npm run clean && npm run build:tailwind && node ./build/scripts/build.js",
18
+ "build": "yarn clean && yarn build:tailwind && node ./build/scripts/build.js && yarn preparePartialsForDelivery",
19
19
  "chromatic": "npx chromatic --project-token 84f1628f224a",
20
20
  "clean": "rimraf dist",
21
21
  "release": "npx auto shipit --base-branch=main",
@@ -23,6 +23,7 @@
23
23
  "optimize-svgs": "gulp optimizeSvgs",
24
24
  "parseJson": "gulp parseJson",
25
25
  "partialsToJs": "gulp convertPartialsToJs",
26
+ "preparePartialsForDelivery": "gulp preparePartialsForDelivery",
26
27
  "create-modernizr-config": "gulp createModernizrConfig",
27
28
  "merge-locatags": "gulp mergeLocatags"
28
29
  },
@@ -71,6 +72,7 @@
71
72
  "gulp-merge-json": "^2.1.2",
72
73
  "gulp-modernizr": "^4.0.3",
73
74
  "gulp-rename": "^2.0.0",
75
+ "gulp-replace": "^1.1.4",
74
76
  "gulp-svgmin": "^4.0.1",
75
77
  "gulp-svgstore": "^8.0.0",
76
78
  "handlebars": "^4.7.6",
@@ -42,12 +42,12 @@
42
42
  .headline-barrier:before,
43
43
  .headline-barrier:after {
44
44
  border-bottom: 1px solid;
45
- content: '';
46
- @apply pt-3.5 md:pt-5
45
+ content: '';
46
+ @apply pt-3.5 md:pt-5;
47
47
  }
48
48
  .justifyLine.headline-barrier:before,
49
49
  .justifyLine.headline-barrier:after {
50
- @apply pt-3.5
50
+ @apply pt-3.5;
51
51
  }
52
52
 
53
53
  /* PODCAST SEEK SLIDER*/
@@ -77,12 +77,11 @@
77
77
  /* CONTENT NAV ACCENTED GROUP MIXED*/
78
78
 
79
79
  .group-accented .autoSuggest .mixed-input {
80
- border-color: transparent!important;
80
+ border-color: transparent !important;
81
81
  height: 32px;
82
82
  border-bottom: none;
83
83
  }
84
84
 
85
-
86
85
  .ds-focus {
87
86
  @apply z-20;
88
87
  @apply focus:shadow-teaser-focus focus:shadow-focus-state focus:outline-none;
@@ -111,27 +110,23 @@
111
110
  }
112
111
 
113
112
  .ds-link {
114
- @apply block focus:shadow-teaser-focus focus:shadow-focus-state focus:outline-none;
113
+ @apply focus:shadow-teaser-focus focus:shadow-focus-state focus:outline-none;
115
114
  }
116
-
115
+
117
116
  .ds-link:focus:not(:focus-visible) {
118
117
  @apply shadow-none;
119
118
  }
120
119
 
121
- .ds-link-clusterTeaser {
122
- @apply block text-grey-scorpion focus:shadow-teaser-focus focus:shadow-focus-state focus:outline-none;
123
- }
124
-
125
- .ds-link-clusterTeaser:focus:not(:focus-visible) {
126
- @apply shadow-none;
120
+ .ds-link.ds-teaser-focus {
121
+ @apply focus:shadow-none;
127
122
  }
128
123
 
129
- .ds-link-inset {
130
- @apply block focus:ring-inset focus:ring-4 focus:outline-none focus:ring-focus-state ;
124
+ .ds-link-inset {
125
+ @apply focus:ring-inset focus:ring-4 focus:outline-none focus:ring-focus-state;
131
126
  }
132
127
 
133
128
  .ds-link-inset:focus:not(:focus-visible) {
134
- @apply ring-0;
129
+ @apply ring-0;
135
130
  }
136
131
 
137
132
  .ds-teaser-focus {
@@ -139,23 +134,23 @@
139
134
  }
140
135
 
141
136
  .ds-teaser-focus:focus::before,
142
- .ds-teaser-focus:focus + .ds-cta span {
137
+ .ds-teaser-focus:focus + .ds-cta > * {
143
138
  @apply shadow-teaser-focus;
144
139
  @apply shadow-focus-state;
145
140
  }
146
141
 
147
- .ds-teaser-focus:focus + .ds-cta span {
142
+ .ds-teaser-focus:focus + .ds-cta > * {
148
143
  @apply bg-button-inverted;
149
144
  @apply text-button-hollow;
150
145
  @apply border-none;
151
146
  }
152
147
 
153
148
  .ds-teaser-focus:focus:not(:focus-visible)::before,
154
- .ds-teaser-focus:focus:not(:focus-visible) + .ds-cta span {
149
+ .ds-teaser-focus:focus:not(:focus-visible) + .ds-cta > * {
155
150
  @apply shadow-none;
156
151
  }
157
152
 
158
- .ds-teaser-focus:focus:not(:focus-visible) + .ds-cta span {
153
+ .ds-teaser-focus:focus:not(:focus-visible) + .ds-cta > * {
159
154
  @apply bg-transparent;
160
155
  @apply text-button-inverted;
161
156
  @apply border-solid;
@@ -164,10 +159,10 @@
164
159
  .ds-teaser-focus:focus {
165
160
  @apply outline-none;
166
161
  }
167
- /* ----------------Content NAV------------------ */
168
- /* ---------------- NAV ITEMS ------------------ */
162
+ /* ----------------Content NAV------------------ */
163
+ /* ---------------- NAV ITEMS ------------------ */
169
164
  .content-nav-item {
170
- @apply h-10;
165
+ @apply h-10;
171
166
  @apply text-base;
172
167
  @apply font-copy;
173
168
  @apply list-none;
@@ -180,7 +175,7 @@
180
175
  @apply hover:text-white;
181
176
  @apply hover:underline;
182
177
  }
183
- /* ----------------LIST - NAV ITEMS ------------------ */
178
+ /* ----------------LIST - NAV ITEMS ------------------ */
184
179
  .content-nav-item.content-nav-item-list {
185
180
  @apply w-full;
186
181
  @apply border;
@@ -191,13 +186,13 @@
191
186
  @apply w-full;
192
187
  @apply md:w-fit;
193
188
  }
194
- /* ----------------FLOW - NAV ITEMS ------------------ */
189
+ /* ----------------FLOW - NAV ITEMS ------------------ */
195
190
  .content-nav-item.content-nav-item-flow {
196
191
  @apply w-fit;
197
192
  @apply border;
198
193
  @apply hover:no-underline;
199
194
  }
200
- /* ----------------MIXED - NAV ITEMS ------------------ */
195
+ /* ----------------MIXED - NAV ITEMS ------------------ */
201
196
  .teaser-size-100 .content-nav-item.content-nav-item-mixed,
202
197
  .teaser-size-66 .content-nav-item.content-nav-item-mixed {
203
198
  @apply md:w-fit;
@@ -210,7 +205,6 @@
210
205
  @apply md:hover:text-white;
211
206
  @apply md:hover:!bg-content-nav;
212
207
  @apply md:hover:!fill-white;
213
-
214
208
  }
215
209
  .content-nav-item.content-nav-item-mixed {
216
210
  @apply w-full;
@@ -226,7 +220,7 @@
226
220
  @apply hover:!bg-white;
227
221
  @apply hover:!fill-content-nav;
228
222
  }
229
- /* ----------------DROPDOWN - NAV ITEMS ------------------ */
223
+ /* ----------------DROPDOWN - NAV ITEMS ------------------ */
230
224
  .content-nav-item.content-nav-item-dropdown {
231
225
  @apply w-full;
232
226
  @apply border-gray-400;
@@ -236,21 +230,20 @@
236
230
  @apply hover:text-content-nav;
237
231
  @apply hover:!bg-white;
238
232
  @apply hover:!fill-content-nav;
239
-
240
233
  }
241
- /* ---------------- NAV DROPDOWN - DROPDOWN ------------------ */
242
- .content-nav-dropdown_dropdown.-isDropdown {
234
+ /* ---------------- NAV DROPDOWN - DROPDOWN ------------------ */
235
+ .content-nav-dropdown_dropdown.-isDropdown {
243
236
  @apply flex;
244
237
  }
245
- .content-nav-dropdown_dropdown.-isMixed {
238
+ .content-nav-dropdown_dropdown.-isMixed {
246
239
  @apply flex;
247
240
  }
248
241
  .teaser-size-100 .content-nav-dropdown_dropdown.-isMixed,
249
- .teaser-size-66 .content-nav-dropdown_dropdown.-isMixed {
242
+ .teaser-size-66 .content-nav-dropdown_dropdown.-isMixed {
250
243
  @apply flex;
251
244
  @apply md:hidden;
252
245
  }
253
- /* ---------------- NAV DROPDOWN - CONTENT ------------------ */
246
+ /* ---------------- NAV DROPDOWN - CONTENT ------------------ */
254
247
  .content-nav-dropdown_content.-isOpen {
255
248
  @apply z-9999;
256
249
  @apply shadow-lg;
@@ -260,12 +253,12 @@
260
253
  @apply z-10;
261
254
  @apply hidden;
262
255
  }
263
- /* ---------------- NAV DROPDOWN - CONTENT - MIXED------------------ */
264
- .content-nav-dropdown_content.-isMixed {
256
+ /* ---------------- NAV DROPDOWN - CONTENT - MIXED------------------ */
257
+ .content-nav-dropdown_content.-isMixed {
265
258
  @apply hidden;
266
259
  }
267
260
  .teaser-size-100 .content-nav-dropdown_content.-isMixed,
268
- .teaser-size-66 .content-nav-dropdown_content.-isMixed {
261
+ .teaser-size-66 .content-nav-dropdown_content.-isMixed {
269
262
  @apply md:block;
270
263
  }
271
264
  .content-nav-dropdown_content.-isMixed.-isOpen {
@@ -281,4 +274,10 @@
281
274
  @apply hidden;
282
275
  @apply md:block;
283
276
  }
284
- }
277
+ }
278
+
279
+ /* ---------------------------- BUTTON ------------------------------ */
280
+ .ds-button-label + .ds-button-icon,
281
+ .ds-button-icon + .ds-button-label {
282
+ @apply ml-2;
283
+ }
@@ -118,10 +118,10 @@
118
118
  }
119
119
 
120
120
  .link-focus-inset {
121
- @apply focus-visible:outline-none focus-visible:ring focus-visible:ring-inset focus-visible:ring-grey-scorpion/50;
121
+ @apply focus-visible:outline-none focus-visible:ring focus-visible:ring-inset focus-visible:ring-gray-scorpion/50;
122
122
  }
123
123
  .link-focus {
124
- @apply focus-visible:outline-none focus-visible:ring focus-visible:ring-grey-scorpion/50;
124
+ @apply focus-visible:outline-none focus-visible:ring focus-visible:ring-gray-scorpion/50;
125
125
  }
126
126
  .link-focus-inset-white {
127
127
  @apply focus-visible:outline-none focus-visible:ring focus-visible:ring-inset focus-visible:ring-white/50;
@@ -389,7 +389,11 @@
389
389
  "url": "https://hr.de",
390
390
  "isTargetBlank": true,
391
391
  "webviewUrl": "",
392
- "readMoreText": ""
392
+ "readMoreText": "",
393
+ "cmsDocument": {
394
+ "title": "Tickets Finale Landeswettbewerb Jugend jazzt",
395
+ "sophoraId": "finale_landeswettbewerb_jugend_jazzt_100"
396
+ }
393
397
  }
394
398
  },
395
399
  "concertInfo": {
@@ -19,7 +19,7 @@
19
19
  "date": "17.04.22",
20
20
  "dateSeparatorTime": "17.04.22, 19:30"
21
21
  },
22
- "hasByline": false,
22
+ "hasByline": true,
23
23
  "teaserInfo": {
24
24
  "showTeaserInfo": false,
25
25
  "showTeaserInfoSection": true,
@@ -84,7 +84,7 @@
84
84
  "trackingForArdMediatheksLink": false,
85
85
  "showMediatheksLink": false,
86
86
  "showAirdate": false,
87
- "showProfileInfoAsByline": false,
87
+ "showProfileInfoAsByline": true,
88
88
  "obsolet_brandOfTeaser": "hessenschau",
89
89
  "documentSection": "Gesellschaft",
90
90
  "headlineTag": "h1",
@@ -93,7 +93,7 @@
93
93
  "shorttext": "Hier bekommen Sie immer die neuesten Nachrichten über Eintracht Frankfurt.",
94
94
  "hideBylineAndShorttext": false,
95
95
  "sophoraId": "rueckkehr-nach-abschiebung-wolfhagen--100",
96
- "profiles": "",
96
+ "profiles": "Von Karsten Hufer",
97
97
  "teaserLead": {
98
98
  "avDocument": "",
99
99
  "image": ""
@@ -10,7 +10,11 @@
10
10
  "@->contentpath": "logicItem.includeModel.realTeaserSize",
11
11
  "@->value": "100"
12
12
  },
13
- {
13
+ {
14
+ "@->contentpath": "logicItem.includeModel.shorttext",
15
+ "@->value": ""
16
+ },
17
+ {
14
18
  "@->contentpath": "logicItem.includeModel.topline",
15
19
  "@->value": ""
16
20
  },