hr-design-system-handlebars 0.49.10 → 0.49.11

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 (27) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/assets/index.css +61 -3
  3. package/dist/views/components/base/load_dynamic.hbs +3 -0
  4. package/dist/views/components/teaser/tabbox/group_tabbox.hbs +25 -16
  5. package/dist/views/components/teaser/tabbox/teaser_tabbox.hbs +14 -13
  6. package/package.json +1 -1
  7. package/src/assets/fixtures/teaser/teaser_alternative_100_serif.json +4 -0
  8. package/src/assets/fixtures/teaser/teaser_alternative_25_serif.json +4 -0
  9. package/src/assets/fixtures/teaser/teaser_alternative_33_serif.json +4 -0
  10. package/src/assets/fixtures/teaser/teaser_alternative_50_serif.json +4 -0
  11. package/src/assets/fixtures/teaser/teaser_alternative_hero_serif.json +4 -0
  12. package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_comments.json +4 -0
  13. package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_label.json +4 -0
  14. package/src/assets/fixtures/teaser/teaser_group_tabbox.inc.json +145 -17
  15. package/src/assets/fixtures/teaser/teaser_tabbox.json +11 -4
  16. package/src/stories/views/components/base/load_dynamic.hbs +3 -0
  17. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif.json +1 -1
  18. package/src/stories/views/components/teaser/fixtures/teaser_alternative_25_serif.json +1 -1
  19. package/src/stories/views/components/teaser/fixtures/teaser_alternative_33_serif.json +1 -1
  20. package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif.json +1 -1
  21. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif.json +1 -1
  22. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_comments.json +1 -1
  23. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_label.json +1 -1
  24. package/src/stories/views/components/teaser/fixtures/teaser_tabbox.json +1 -1
  25. package/src/stories/views/components/teaser/tabbox/group_tabbox.hbs +25 -16
  26. package/src/stories/views/components/teaser/tabbox/teaser_tabbox.hbs +14 -13
  27. package/src/stories/views/components/teaser/tabbox/teaser_tabbox.stories.mdx +8 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ # v0.49.11 (Tue Jul 12 2022)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - add tabbox-canvas + teaser + link [#269](https://github.com/mumprod/hr-design-system-handlebars/pull/269) ([@hanswurstsalat](https://github.com/hanswurstsalat))
6
+
7
+ #### Authors: 1
8
+
9
+ - Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
10
+
11
+ ---
12
+
1
13
  # v0.49.10 (Tue Jul 12 2022)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -658,6 +658,12 @@ video {
658
658
  .\!m-0 {
659
659
  margin: 0px !important;
660
660
  }
661
+ .m-1\.5 {
662
+ margin: 0.375rem;
663
+ }
664
+ .m-1 {
665
+ margin: 0.25rem;
666
+ }
661
667
  .mx-4 {
662
668
  margin-left: 1rem;
663
669
  margin-right: 1rem;
@@ -678,6 +684,22 @@ video {
678
684
  margin-left: 1px;
679
685
  margin-right: 1px;
680
686
  }
687
+ .mx-0 {
688
+ margin-left: 0px;
689
+ margin-right: 0px;
690
+ }
691
+ .mx-1\.5 {
692
+ margin-left: 0.375rem;
693
+ margin-right: 0.375rem;
694
+ }
695
+ .mx-1 {
696
+ margin-left: 0.25rem;
697
+ margin-right: 0.25rem;
698
+ }
699
+ .my-5 {
700
+ margin-top: 1.25rem;
701
+ margin-bottom: 1.25rem;
702
+ }
681
703
  .mt-6 {
682
704
  margin-top: 1.5rem;
683
705
  }
@@ -732,6 +754,9 @@ video {
732
754
  .mt-3 {
733
755
  margin-top: 0.75rem;
734
756
  }
757
+ .mb-7 {
758
+ margin-bottom: 1.75rem;
759
+ }
735
760
  .block {
736
761
  display: block;
737
762
  }
@@ -858,6 +883,9 @@ video {
858
883
  .w-5 {
859
884
  width: 1.25rem;
860
885
  }
886
+ .w-0 {
887
+ width: 0px;
888
+ }
861
889
  .max-w-full {
862
890
  max-width: 100%;
863
891
  }
@@ -1228,6 +1256,10 @@ video {
1228
1256
  --tw-bg-opacity: 1;
1229
1257
  background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
1230
1258
  }
1259
+ .bg-\[\#dce8f0\] {
1260
+ --tw-bg-opacity: 1;
1261
+ background-color: rgba(220, 232, 240, var(--tw-bg-opacity));
1262
+ }
1231
1263
  .bg-gradient-to-r {
1232
1264
  background-image: -webkit-gradient(linear, left top, right top, from(var(--tw-gradient-stops)));
1233
1265
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
@@ -1270,9 +1302,6 @@ video {
1270
1302
  .p-2 {
1271
1303
  padding: 0.5rem;
1272
1304
  }
1273
- .p-5 {
1274
- padding: 1.25rem;
1275
- }
1276
1305
  .py-2 {
1277
1306
  padding-top: 0.5rem;
1278
1307
  padding-bottom: 0.5rem;
@@ -1376,6 +1405,15 @@ video {
1376
1405
  .pr-4 {
1377
1406
  padding-right: 1rem;
1378
1407
  }
1408
+ .pb-7 {
1409
+ padding-bottom: 1.75rem;
1410
+ }
1411
+ .pt-7 {
1412
+ padding-top: 1.75rem;
1413
+ }
1414
+ .pt-6 {
1415
+ padding-top: 1.5rem;
1416
+ }
1379
1417
  .text-left {
1380
1418
  text-align: left;
1381
1419
  }
@@ -1717,6 +1755,9 @@ video {
1717
1755
  [main-start] minmax(0, 63rem) [main-end]
1718
1756
  minmax(1rem, 1fr) [full-end];
1719
1757
  }
1758
+ .col-main {
1759
+ grid-column: main;
1760
+ }
1720
1761
  .col-full {
1721
1762
  grid-column: full;
1722
1763
  }
@@ -2643,6 +2684,14 @@ video {
2643
2684
  border-radius: 0px;
2644
2685
  }
2645
2686
 
2687
+ .md\:rounded-tl-3xl {
2688
+ border-top-left-radius: 1.5rem;
2689
+ }
2690
+
2691
+ .md\:rounded-br-3xl {
2692
+ border-bottom-right-radius: 1.5rem;
2693
+ }
2694
+
2646
2695
  .md\:border-0 {
2647
2696
  border-width: 0px;
2648
2697
  }
@@ -2675,6 +2724,11 @@ video {
2675
2724
  padding-right: 1rem;
2676
2725
  }
2677
2726
 
2727
+ .md\:px-8 {
2728
+ padding-left: 2rem;
2729
+ padding-right: 2rem;
2730
+ }
2731
+
2678
2732
  .md\:pt-4 {
2679
2733
  padding-top: 1rem;
2680
2734
  }
@@ -2683,6 +2737,10 @@ video {
2683
2737
  padding-left: 0px;
2684
2738
  }
2685
2739
 
2740
+ .md\:pt-7 {
2741
+ padding-top: 1.75rem;
2742
+ }
2743
+
2686
2744
  .md\:text-base {
2687
2745
  font-size: 1rem;
2688
2746
  line-height: 1.375rem;
@@ -11,6 +11,9 @@
11
11
  {{#case "components/teaser/teaser_standard"}}
12
12
  {{> components/teaser/teaser_standard}}
13
13
  {{/case}}
14
+ {{#case "components/teaser/teaser_alternative"}}
15
+ {{> components/teaser/teaser_alternativ}}
16
+ {{/case}}
14
17
  {{#case "components/teaser/components/teaser_comments"}}
15
18
  {{> components/teaser/components/teaser_comments}}
16
19
  {{/case}}
@@ -1,16 +1,25 @@
1
- <div class="w-full">
2
- <br/>
3
- teaserSize: {{this.teaserSize}}<br/>
4
- isFirstTeaser: {{this.isFirstTeaser}}<br/>
5
- hasGroupTitle: {{this.hasGroupTitle}}<br/>
6
- teaserIndex: {{this.teaserIndex}}<br/>
7
- groupTitle: {{this.groupTitle}}<br/>
8
- link.url:{{this.link.url}}<br/>
9
- title: {{this.title}}<br/>
10
- <br/>
11
- <b>Teaser:</b><br/>
12
- {{~#each this.logicItems}}
13
- {{this.logicItem.includeModel.title}}<br/>
14
- {{/each~}}
15
- <br/><hr/>
16
- </div>
1
+ <section class="pb-7 {{#if this.isFirstTeaser}}-active{{/if}}">
2
+ {{~#if this.hasGroupTitle~}}
3
+ <h3 class="sr-only">
4
+ <a class="" href="#tgp{{this.teaserIndex}}">
5
+ <span class="">{{this.groupTitle}}</span>
6
+ <span class="">
7
+ {{> components/base/image/icon _icon="arrow-down" _iconmap="icons" _addClass="w-3 h-2 fill-current"}}
8
+ {{> components/base/image/icon _icon="arrow-up" _iconmap="icons" _addClass="w-3 h-2 fill-current"}}
9
+ </span>
10
+ </a>
11
+ </h3>
12
+ {{~/if~}}
13
+
14
+ <a class="w-0" name="tgp{{this.teaserIndex}}"></a>
15
+ <div class="grid content-start grid-cols-12 px-0 md:px-8 colspan-12 gap-x-6 gap-y-6">
16
+ {{~> components/teaser/teaser_logic/teaser_logic ~}}
17
+ </div>
18
+ {{~#if this.link~}}
19
+ <div class="flex justify-center">
20
+ <a class="text-base pt-7 font-heading text-toplineColor hover:underline" href="{{this.link.url}}">
21
+ {{!~loca "group_tabbed_more" this.title~}}weitere Meldungen aus {{this.title~}}
22
+ </a>
23
+ </div>
24
+ {{~/if~}}
25
+ </section>
@@ -1,15 +1,16 @@
1
- <div class="w-full p-5">
2
-
3
- <b><u>Tabbox-Data</u></b><br/><br/>
4
-
5
- wanda-Id: {{this.wandaPageId}}<br/><br/>
6
-
7
- Tabs:<br/>
8
- {{~#each this.tabbedGroup~}}
9
- {{this.title}}<br/>
10
- {{~/each~}}
11
- <br/>
12
- <b>Teasergruppen:</b><hr/>
1
+ <div class="grid grid-cols-12 pt-6 md:pt-7 bg-[#dce8f0] mx-0 md:rounded-tl-3xl md:rounded-br-3xl col-main gap-x-6 gap-y-6">
2
+ <section class="col-span-full" data-new-hr-group-tabbed='{"wandaPageId":"{{this.wandaPageId}}"}'>
3
+ <div class="flex flex-wrap justify-center mb-7 mx-1.5" role="tablist">
4
+ {{~#each this.tabbedGroup~}}
5
+ <button onclick="window.location.href='#tgp{{@index}}';"
6
+ type="button"
7
+ class="text-base font-heading py-1 px-2 m-1.5 {{#if @first}}bg-blue-congress text-white{{else}}bg-white text-blue-congress{{/if}}"
8
+ role="tab"
9
+ >
10
+ {{this.title}}
11
+ </button>
12
+ {{~/each~}}
13
+ </div>
13
14
  {{~> components/teaser/teaser_logic/teaser_logic ~}}
14
-
15
+ </section>
15
16
  </div>
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": "0.49.10",
9
+ "version": "0.49.11",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "start-storybook -p 6006 public",
@@ -2,6 +2,10 @@
2
2
  "@->jsoninclude": "teaser/teasers.inc.json",
3
3
  "@->contentpath": "teaser",
4
4
  "@->overrides": [
5
+ {
6
+ "@->contentpath": "logicItem.includePath",
7
+ "@->value": "components/teaser/teaser_alternative"
8
+ },
5
9
  {
6
10
  "@->contentpath": "logicItem.includeModel.teaserSize",
7
11
  "@->value": "100"
@@ -2,6 +2,10 @@
2
2
  "@->jsoninclude": "teaser/teasers.inc.json",
3
3
  "@->contentpath": "teaser",
4
4
  "@->overrides": [
5
+ {
6
+ "@->contentpath": "logicItem.includePath",
7
+ "@->value": "components/teaser/teaser_alternative"
8
+ },
5
9
  {
6
10
  "@->contentpath": "logicItem.includeModel.teaserSize",
7
11
  "@->value": "25"
@@ -2,6 +2,10 @@
2
2
  "@->jsoninclude": "teaser/teasers.inc.json",
3
3
  "@->contentpath": "teaser",
4
4
  "@->overrides": [
5
+ {
6
+ "@->contentpath": "logicItem.includePath",
7
+ "@->value": "components/teaser/teaser_alternative"
8
+ },
5
9
  {
6
10
  "@->contentpath": "logicItem.includeModel.teaserSize",
7
11
  "@->value": "33"
@@ -2,6 +2,10 @@
2
2
  "@->jsoninclude": "teaser/teasers.inc.json",
3
3
  "@->contentpath": "teaser",
4
4
  "@->overrides": [
5
+ {
6
+ "@->contentpath": "logicItem.includePath",
7
+ "@->value": "components/teaser/teaser_alternative"
8
+ },
5
9
  {
6
10
  "@->contentpath": "logicItem.includeModel.teaserSize",
7
11
  "@->value": "50"
@@ -2,6 +2,10 @@
2
2
  "@->jsoninclude": "teaser/teasers.inc.json",
3
3
  "@->contentpath": "teaser",
4
4
  "@->overrides": [
5
+ {
6
+ "@->contentpath": "logicItem.includePath",
7
+ "@->value": "components/teaser/teaser_alternative"
8
+ },
5
9
  {
6
10
  "@->contentpath": "logicItem.includeModel.teaserType",
7
11
  "@->value": "alternative-ds"
@@ -2,6 +2,10 @@
2
2
  "@->jsoninclude": "teaser/teasers.inc.json",
3
3
  "@->contentpath": "teaserWithComments",
4
4
  "@->overrides": [
5
+ {
6
+ "@->contentpath": "logicItem.includePath",
7
+ "@->value": "components/teaser/teaser_alternative"
8
+ },
5
9
  {
6
10
  "@->contentpath": "logicItem.includeModel.teaserType",
7
11
  "@->value": "alternative-ds"
@@ -2,6 +2,10 @@
2
2
  "@->jsoninclude": "teaser/teasers.inc.json",
3
3
  "@->contentpath": "teaser",
4
4
  "@->overrides": [
5
+ {
6
+ "@->contentpath": "logicItem.includePath",
7
+ "@->value": "components/teaser/teaser_alternative"
8
+ },
5
9
  {
6
10
  "@->contentpath": "logicItem.includeModel.teaserType",
7
11
  "@->value": "alternative-ds"
@@ -2,24 +2,92 @@
2
2
  "tabbox_teasergroup_1": {
3
3
  "includePath": "components/teaser/tabbox/group_tabbox",
4
4
  "includeModel": {
5
- "title": "Teasergruppe 1",
5
+ "title": "Nordhessen",
6
6
  "link": {
7
7
  "url": "#linkurl_teasergruppe_1"
8
8
  },
9
9
  "hasGroupTitle": true,
10
- "groupTitle": "Teasergruppe 1",
10
+ "groupTitle": "Nordhessen",
11
11
  "teaserSize": "100",
12
12
  "isFirstTeaser": true,
13
13
  "teaserIndex": 0,
14
14
  "logicItems": [
15
15
  {
16
- "@->jsoninclude": "teaser/teaser_standard_33_serif.json"
16
+ "@->jsoninclude": "teaser/teaser_standard_33_serif.json",
17
+ "@->overrides": [
18
+ {
19
+ "@->contentpath": "logicItem.includeModel.shorttext",
20
+ "@->value": ""
21
+ },
22
+ {
23
+ "@->contentpath": "logicItem.includeModel.teaserInfo.showTeaserInfo",
24
+ "@->value": false
25
+ },
26
+ {
27
+ "@->contentpath": "logicItem.includeModel.profiles",
28
+ "@->value": ""
29
+ }
30
+ ]
17
31
  },
18
32
  {
19
- "@->jsoninclude": "teaser/teaser_standard_33_serif.json"
33
+ "@->jsoninclude": "teaser/teaser_standard_33_serif.json",
34
+ "@->overrides": [
35
+ {
36
+ "@->contentpath": "logicItem.includeModel.teaserImage",
37
+ "@->value": {
38
+ "@->jsoninclude": "teaser/teaser_images.inc.json",
39
+ "@->contentpath": "standard_1"
40
+ }
41
+ },
42
+ {
43
+ "@->contentpath": "logicItem.includeModel.title",
44
+ "@->value": "Zur Abwechslung mal ein anderer Titel"
45
+ },
46
+ {
47
+ "@->contentpath": "logicItem.includeModel.shorttext",
48
+ "@->value": ""
49
+ },
50
+ {
51
+ "@->contentpath": "logicItem.includeModel.teaserInfo.showTeaserInfo",
52
+ "@->value": false
53
+ },
54
+ {
55
+ "@->contentpath": "logicItem.includeModel.profiles",
56
+ "@->value": ""
57
+ }
58
+ ]
20
59
  },
21
60
  {
22
- "@->jsoninclude": "teaser/teaser_standard_33_serif.json"
61
+ "@->jsoninclude": "teaser/teaser_standard_33_serif.json",
62
+ "@->overrides": [
63
+ {
64
+ "@->contentpath": "logicItem.includeModel.teaserImage",
65
+ "@->value": {
66
+ "@->jsoninclude": "teaser/teaser_images.inc.json",
67
+ "@->contentpath": "standard_3"
68
+ }
69
+ },
70
+ {
71
+ "@->contentpath": "logicItem.includeModel.title",
72
+ "@->value": "Banane!!!"
73
+ },
74
+ {
75
+ "@->contentpath": "logicItem.includeModel.topline",
76
+ "@->value": "Und mal ne längere Topline - damit man sieht, dass das scheiße aussieht"
77
+ },
78
+ {
79
+ "@->contentpath": "logicItem.includeModel.shorttext",
80
+ "@->value": ""
81
+ },
82
+ {
83
+ "@->contentpath": "logicItem.includeModel.teaserInfo.showTeaserInfo",
84
+ "@->value": false
85
+ },
86
+ {
87
+ "@->contentpath": "logicItem.includeModel.profiles",
88
+ "@->value": ""
89
+ }
90
+ ]
23
91
  }
24
92
  ]
25
93
  }
@@ -27,24 +95,27 @@
27
95
  "tabbox_teasergroup_2": {
28
96
  "includePath": "components/teaser/tabbox/group_tabbox",
29
97
  "includeModel": {
30
- "title": "Teasergruppe 2",
98
+ "title": "Mittelhessen",
31
99
  "link": {
32
100
  "url": "#linkurl_teasergruppe_2"
33
101
  },
34
102
  "hasGroupTitle": true,
35
- "groupTitle": "Teasergruppe 2",
103
+ "groupTitle": "Mittelhessen",
36
104
  "teaserSize": "100",
37
105
  "isFirstTeaser": false,
38
106
  "teaserIndex": 1,
39
107
  "logicItems": [
40
108
  {
41
- "@->jsoninclude": "teaser/teaser_standard_33_serif.json"
109
+ "@->jsoninclude": "teaser/teaser_standard_25_serif.json"
42
110
  },
43
111
  {
44
- "@->jsoninclude": "teaser/teaser_standard_33_serif.json"
112
+ "@->jsoninclude": "teaser/teaser_standard_25_serif.json"
45
113
  },
46
114
  {
47
- "@->jsoninclude": "teaser/teaser_standard_33_serif.json"
115
+ "@->jsoninclude": "teaser/teaser_standard_25_serif.json"
116
+ },
117
+ {
118
+ "@->jsoninclude": "teaser/teaser_standard_25_serif.json"
48
119
  }
49
120
  ]
50
121
  }
@@ -52,15 +123,72 @@
52
123
  "tabbox_teasergroup_3": {
53
124
  "includePath": "components/teaser/tabbox/group_tabbox",
54
125
  "includeModel": {
55
- "title": "Teasergruppe 3",
126
+ "title": "Osthessen",
56
127
  "link": {
57
128
  "url": "#linkurl_teasergruppe_3"
58
129
  },
59
130
  "hasGroupTitle": true,
60
- "groupTitle": "Teasergruppe 3",
131
+ "groupTitle": "Osthessen",
61
132
  "teaserSize": "100",
62
133
  "isFirstTeaser": false,
63
134
  "teaserIndex": 2,
135
+ "logicItems": [
136
+ {
137
+ "@->jsoninclude": "teaser/teaser_alternative_50_serif.json",
138
+ "@->overrides": [
139
+ {
140
+ "@->contentpath": "logicItem.includeModel.shorttext",
141
+ "@->value": ""
142
+ },
143
+ {
144
+ "@->contentpath": "logicItem.includeModel.teaserInfo.showTeaserInfo",
145
+ "@->value": false
146
+ },
147
+ {
148
+ "@->contentpath": "logicItem.includeModel.profiles",
149
+ "@->value": ""
150
+ }
151
+ ]
152
+ },
153
+ {
154
+ "@->jsoninclude": "teaser/teaser_alternative_50_serif.json",
155
+ "@->overrides": [
156
+ {
157
+ "@->contentpath": "logicItem.includeModel.teaserImage",
158
+ "@->value": {
159
+ "@->jsoninclude": "teaser/teaser_images.inc.json",
160
+ "@->contentpath": "standard_4"
161
+ }
162
+ },
163
+ {
164
+ "@->contentpath": "logicItem.includeModel.shorttext",
165
+ "@->value": ""
166
+ },
167
+ {
168
+ "@->contentpath": "logicItem.includeModel.teaserInfo.showTeaserInfo",
169
+ "@->value": false
170
+ },
171
+ {
172
+ "@->contentpath": "logicItem.includeModel.profiles",
173
+ "@->value": ""
174
+ }
175
+ ]
176
+ }
177
+ ]
178
+ }
179
+ },
180
+ "tabbox_teasergroup_4": {
181
+ "includePath": "components/teaser/tabbox/group_tabbox",
182
+ "includeModel": {
183
+ "title": "Rhein-Main",
184
+ "link": {
185
+ "url": "#linkurl_teasergruppe_4"
186
+ },
187
+ "hasGroupTitle": true,
188
+ "groupTitle": "Rhein-Main",
189
+ "teaserSize": "100",
190
+ "isFirstTeaser": false,
191
+ "teaserIndex": 3,
64
192
  "logicItems": [
65
193
  {
66
194
  "@->jsoninclude": "teaser/teaser_standard_33_serif.json"
@@ -74,18 +202,18 @@
74
202
  ]
75
203
  }
76
204
  },
77
- "tabbox_teasergroup_4": {
205
+ "tabbox_teasergroup_5": {
78
206
  "includePath": "components/teaser/tabbox/group_tabbox",
79
207
  "includeModel": {
80
- "title": "Teasergruppe 4",
208
+ "title": "Südhessen",
81
209
  "link": {
82
- "url": "#linkurl_teasergruppe_4"
210
+ "url": "#linkurl_teasergruppe_5"
83
211
  },
84
212
  "hasGroupTitle": true,
85
- "groupTitle": "Teasergruppe 4",
213
+ "groupTitle": "Südhessen",
86
214
  "teaserSize": "100",
87
215
  "isFirstTeaser": false,
88
- "teaserIndex": 3,
216
+ "teaserIndex": 4,
89
217
  "logicItems": [
90
218
  {
91
219
  "@->jsoninclude": "teaser/teaser_standard_33_serif.json"
@@ -2,16 +2,19 @@
2
2
  "wandaPageId" : "2109595548",
3
3
  "tabbedGroup": [
4
4
  {
5
- "title": "Teasergruppe 1"
5
+ "title": "Nordhessen"
6
6
  },
7
7
  {
8
- "title": "Teasergruppe 2"
8
+ "title": "Mittelhessen"
9
9
  },
10
10
  {
11
- "title": "Teasergruppe 3"
11
+ "title": "Osthessen"
12
12
  },
13
13
  {
14
- "title": "Teasergruppe 4"
14
+ "title": "Rhein-Main"
15
+ },
16
+ {
17
+ "title": "Südhessen"
15
18
  }
16
19
  ],
17
20
  "logicItems": [
@@ -30,6 +33,10 @@
30
33
  {
31
34
  "@->jsoninclude": "teaser/teaser_group_tabbox.inc.json",
32
35
  "@->contentpath": "tabbox_teasergroup_4"
36
+ },
37
+ {
38
+ "@->jsoninclude": "teaser/teaser_group_tabbox.inc.json",
39
+ "@->contentpath": "tabbox_teasergroup_5"
33
40
  }
34
41
  ]
35
42
  }
@@ -11,6 +11,9 @@
11
11
  {{#case "components/teaser/teaser_standard"}}
12
12
  {{> components/teaser/teaser_standard}}
13
13
  {{/case}}
14
+ {{#case "components/teaser/teaser_alternative"}}
15
+ {{> components/teaser/teaser_alternativ}}
16
+ {{/case}}
14
17
  {{#case "components/teaser/components/teaser_comments"}}
15
18
  {{> components/teaser/components/teaser_comments}}
16
19
  {{/case}}
@@ -1 +1 @@
1
- {"isSsi":true,"logicItem":{"includePath":"components/teaser/teaser_standard","includeModel":{"byline":"Byline","title":"Abgeschobene Geschwister aus Syrien zurück in Wolfhagen","topline":"Überglücklich, aber ohne Mama","headingFontVariant":"serif","extendedTitle":"","teaserType":"alternative-ds","teaserSize":"100","teaserDate":{"htmlDateTime":"2022-04-17T19:30+0200","htmlDate":"20.02.1983","date":"17.04.22","dateSeparatorTime":"17.04.22, 19:30"},"teaserInfo":{"showTeaserInfo":true,"showTeaserInfoSection":true,"showTeaserInfoChannel":true,"showTeaserInfoAll":true,"showTeaserInfoDate":false,"showTeaserInfoDateTime":true,"showTeaserInfoProgramRef":true},"teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"","responsiveImage":{"asPicture":false,"asImage":true,"fallback":"https://picsum.photos/id/188/480/270","sources":[{"sizes":"(min-width: 1010px) 960px, 100vw","srcset":"https://picsum.photos/id/188/320/180 320w, https://picsum.photos/id/188/480/270 480w, https://picsum.photos/id/188/640/360 640w, https://picsum.photos/id/188/960/540 960w, https://picsum.photos/id/188/1920/1080 1920w"}]}},"hasMediaButtons":false,"dontLazyload":true,"isStandardTeaser":true,"isHeroTeaser":true,"isMediaTeaser":false,"isGuide":false,"isProgram":false,"isEvent":false,"isTicker":false,"isAudio":false,"isVideo":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","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.","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"},"content":{"headlineTag":"h1","headingFontVariant":"serif","imageVariant":"topteaser","isFileDownload":false,"teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"","responsiveImage":{"asPicture":false,"asImage":true,"fallback":"https://picsum.photos/id/188/480/270","sources":[{"sizes":"(min-width: 1010px) 960px, 100vw","srcset":"https://picsum.photos/id/188/320/180 320w, https://picsum.photos/id/188/480/270 480w, https://picsum.photos/id/188/640/360 640w, https://picsum.photos/id/188/960/540 960w, https://picsum.photos/id/188/1920/1080 1920w"}]}},"teaserSize":"hero","teaserType":"standard-ds","title":"Abgeschobene Geschwister aus Syrien zurück in Wolfhagen","topline":"Überglücklich, aber ohne Mama","trackingData":{"secondLevelId":"2","pageName":"hessenschau"}}}}}}
1
+ {"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-ds","teaserSize":"100","teaserDate":{"htmlDateTime":"2022-04-17T19:30+0200","htmlDate":"20.02.1983","date":"17.04.22","dateSeparatorTime":"17.04.22, 19:30"},"teaserInfo":{"showTeaserInfo":true,"showTeaserInfoSection":true,"showTeaserInfoChannel":true,"showTeaserInfoAll":true,"showTeaserInfoDate":false,"showTeaserInfoDateTime":true,"showTeaserInfoProgramRef":true},"teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"","responsiveImage":{"asPicture":false,"asImage":true,"fallback":"https://picsum.photos/id/188/480/270","sources":[{"sizes":"(min-width: 1010px) 960px, 100vw","srcset":"https://picsum.photos/id/188/320/180 320w, https://picsum.photos/id/188/480/270 480w, https://picsum.photos/id/188/640/360 640w, https://picsum.photos/id/188/960/540 960w, https://picsum.photos/id/188/1920/1080 1920w"}]}},"hasMediaButtons":false,"dontLazyload":true,"isStandardTeaser":true,"isHeroTeaser":true,"isMediaTeaser":false,"isGuide":false,"isProgram":false,"isEvent":false,"isTicker":false,"isAudio":false,"isVideo":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","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.","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"},"content":{"headlineTag":"h1","headingFontVariant":"serif","imageVariant":"topteaser","isFileDownload":false,"teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"","responsiveImage":{"asPicture":false,"asImage":true,"fallback":"https://picsum.photos/id/188/480/270","sources":[{"sizes":"(min-width: 1010px) 960px, 100vw","srcset":"https://picsum.photos/id/188/320/180 320w, https://picsum.photos/id/188/480/270 480w, https://picsum.photos/id/188/640/360 640w, https://picsum.photos/id/188/960/540 960w, https://picsum.photos/id/188/1920/1080 1920w"}]}},"teaserSize":"hero","teaserType":"standard-ds","title":"Abgeschobene Geschwister aus Syrien zurück in Wolfhagen","topline":"Überglücklich, aber ohne Mama","trackingData":{"secondLevelId":"2","pageName":"hessenschau"}}}}}}