hr-design-system-handlebars 0.37.2 → 0.37.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +40 -0
- package/dist/assets/index.css +17 -17
- package/dist/views/components/Grid/Grid.hbs +9 -9
- package/dist/views/components/Header/NavigationFlyout/NavigationFlyout.hbs +1 -1
- package/package.json +1 -1
- package/src/assets/tailwind.css +21 -22
- package/src/stories/views/components/Grid/Grid.hbs +9 -9
- package/src/stories/views/components/Header/NavigationFlyout/NavigationFlyout.hbs +1 -1
- package/src/stories/views/components/Teaser/teaser.json +137 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,43 @@
|
|
|
1
|
+
# v0.37.5 (Thu Mar 24 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- DPE-1524 [#191](https://github.com/mumprod/hr-design-system-handlebars/pull/191) (zouhair1 [@szuelch](https://github.com/szuelch) [@selbaciri](https://github.com/selbaciri))
|
|
6
|
+
|
|
7
|
+
#### Authors: 3
|
|
8
|
+
|
|
9
|
+
- [@szuelch](https://github.com/szuelch)
|
|
10
|
+
- Saad El Baciri ([@selbaciri](https://github.com/selbaciri))
|
|
11
|
+
- selbaciri (zouhair1)
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
# v0.37.4 (Thu Mar 24 2022)
|
|
16
|
+
|
|
17
|
+
#### 🐛 Bug Fix
|
|
18
|
+
|
|
19
|
+
- rename class headline--barrier to headline--separator [#190](https://github.com/mumprod/hr-design-system-handlebars/pull/190) (zouhair1 [@szuelch](https://github.com/szuelch) [@selbaciri](https://github.com/selbaciri))
|
|
20
|
+
|
|
21
|
+
#### Authors: 3
|
|
22
|
+
|
|
23
|
+
- [@szuelch](https://github.com/szuelch)
|
|
24
|
+
- Saad El Baciri ([@selbaciri](https://github.com/selbaciri))
|
|
25
|
+
- selbaciri (zouhair1)
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
# v0.37.3 (Mon Mar 21 2022)
|
|
30
|
+
|
|
31
|
+
#### 🐛 Bug Fix
|
|
32
|
+
|
|
33
|
+
- DPE-1520: [#187](https://github.com/mumprod/hr-design-system-handlebars/pull/187) ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
34
|
+
|
|
35
|
+
#### Authors: 1
|
|
36
|
+
|
|
37
|
+
- Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
1
41
|
# v0.37.2 (Wed Mar 16 2022)
|
|
2
42
|
|
|
3
43
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -756,17 +756,17 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
756
756
|
}
|
|
757
757
|
|
|
758
758
|
.grid-page {
|
|
759
|
-
grid-template-columns:
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
759
|
+
grid-template-columns:
|
|
760
|
+
[full-start] minmax(1rem, 1fr)
|
|
761
|
+
[main-start] minmax(0, 64rem) [main-end]
|
|
762
|
+
minmax(1rem, 1fr) [full-end];
|
|
763
|
+
}
|
|
764
764
|
|
|
765
765
|
.col-full {
|
|
766
766
|
grid-column: full;
|
|
767
|
-
|
|
767
|
+
}
|
|
768
768
|
|
|
769
|
-
.headline--
|
|
769
|
+
.headline--barrier {
|
|
770
770
|
display: -webkit-box;
|
|
771
771
|
display: -ms-flexbox;
|
|
772
772
|
display: flex;
|
|
@@ -780,8 +780,8 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
780
780
|
text-align: center;
|
|
781
781
|
}
|
|
782
782
|
|
|
783
|
-
.headline--
|
|
784
|
-
.headline--
|
|
783
|
+
.headline--barrier:before,
|
|
784
|
+
.headline--barrier:after {
|
|
785
785
|
content: '';
|
|
786
786
|
border-top: 1px solid;
|
|
787
787
|
margin: 3px 20px 0 0;
|
|
@@ -790,7 +790,7 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
790
790
|
flex: 1 0 20px;
|
|
791
791
|
}
|
|
792
792
|
|
|
793
|
-
.headline--
|
|
793
|
+
.headline--barrier:after {
|
|
794
794
|
margin: 3px 0 0 20px;
|
|
795
795
|
}
|
|
796
796
|
|
|
@@ -2443,17 +2443,17 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
2443
2443
|
}
|
|
2444
2444
|
}
|
|
2445
2445
|
@media (min-width: 640px) {
|
|
2446
|
-
|
|
2447
|
-
|
|
2446
|
+
|
|
2447
|
+
.sm\:col-main {
|
|
2448
2448
|
grid-column: main;
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2449
|
+
}
|
|
2450
|
+
|
|
2451
|
+
.sm\:mx-0 {
|
|
2452
2452
|
margin-left: 0px;
|
|
2453
2453
|
margin-right: 0px;
|
|
2454
2454
|
}
|
|
2455
|
-
|
|
2456
|
-
|
|
2455
|
+
|
|
2456
|
+
.sm\:px-8 {
|
|
2457
2457
|
padding-left: 2rem;
|
|
2458
2458
|
padding-right: 2rem;
|
|
2459
2459
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div class="grid bg-gray-100 grid-page">
|
|
3
3
|
<div class="grid grid-cols-12 py-6 bg-green-300 sm:px-8 col-full sm:col-main gap-x-6 gap-y-6">
|
|
4
4
|
{{#>components/Grid/GridGroup size="100"}}
|
|
5
|
-
<h2 class="text-4xl headline--
|
|
5
|
+
<h2 class="text-4xl headline--barrier col-span-full">Gruppen 100%</h2>
|
|
6
6
|
{{#>components/Grid/GridItem size="12"}}
|
|
7
7
|
<a href="#">
|
|
8
8
|
<div class="flex items-center justify-center text-5xl text-white bg-gray-500 aspect-video">
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
{{/components/Grid/GridItem}}
|
|
13
13
|
{{/components/Grid/GridGroup}}
|
|
14
14
|
{{#>components/Grid/GridGroupFull }}
|
|
15
|
-
<h2 class="text-4xl headline--
|
|
15
|
+
<h2 class="text-4xl headline--barrier col-span-full">Gruppen 100% mit blauen Hintergrung bis Rand</h2>
|
|
16
16
|
{{#>components/Grid/GridItem size="6"}}
|
|
17
17
|
<div class="flex items-center justify-center text-5xl text-white bg-gray-500 aspect-video">
|
|
18
18
|
6/12 = 50%
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
|
|
28
28
|
{{#>components/Grid/GridGroup size="100"}}
|
|
29
29
|
|
|
30
|
-
<h2 class="text-4xl headline--
|
|
30
|
+
<h2 class="text-4xl headline--barrier col-span-full">Gruppen 100%</h2>
|
|
31
31
|
{{#>components/Grid/GridItem size="6"}}
|
|
32
32
|
<div class="flex items-center justify-center text-5xl text-white bg-gray-500 aspect-video">
|
|
33
33
|
6/12 = 50%
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
{{/components/Grid/GridItem}}
|
|
57
57
|
{{/components/Grid/GridGroup}}
|
|
58
58
|
{{#>components/Grid/GridGroupTabbed }}
|
|
59
|
-
<h2 class="text-4xl headline--
|
|
59
|
+
<h2 class="text-4xl headline--barrier col-span-full">Gruppen 100% Tabbed</h2>
|
|
60
60
|
{{#>components/Grid/GridItem size="3"}}
|
|
61
61
|
<div class="flex items-center justify-center text-4xl text-white bg-gray-500 aspect-video">
|
|
62
62
|
3/12 = 25%
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
|
|
84
84
|
{{/components/Grid/GridGroupTabbed}}
|
|
85
85
|
{{#>components/Grid/GridGroup}}
|
|
86
|
-
<h2 class="text-4xl headline--
|
|
86
|
+
<h2 class="text-4xl headline--barrier col-span-full">Gruppen 100%</h2>
|
|
87
87
|
{{#>components/Grid/GridItem size="4"}}
|
|
88
88
|
<div class="flex items-center justify-center text-5xl text-white bg-gray-500 aspect-video">
|
|
89
89
|
4/12 = 33%
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
{{/components/Grid/GridItem}}
|
|
102
102
|
{{/components/Grid/GridGroup}}
|
|
103
103
|
{{#>components/Grid/GridGroup size="50"}}
|
|
104
|
-
<h2 class="text-4xl headline--
|
|
104
|
+
<h2 class="text-4xl headline--barrier col-span-full">Gruppen 50%</h2>
|
|
105
105
|
{{#>components/Grid/GridItem size="12"}}
|
|
106
106
|
<div class="flex items-center justify-center text-5xl text-white bg-gray-500 aspect-video">
|
|
107
107
|
6/12 = 50%
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
{{/components/Grid/GridItem}}
|
|
115
115
|
{{/components/Grid/GridGroup}}
|
|
116
116
|
{{#>components/Grid/GridGroup size="50"}}
|
|
117
|
-
<h2 class="text-4xl headline--
|
|
117
|
+
<h2 class="text-4xl headline--barrier col-span-full">Gruppen 50%</h2>
|
|
118
118
|
{{#>components/Grid/GridItem size="6"}}
|
|
119
119
|
<div class="flex items-center justify-center text-5xl text-white bg-gray-500 aspect-video">
|
|
120
120
|
6/12 = 50%
|
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
{{/components/Grid/GridItem}}
|
|
128
128
|
{{/components/Grid/GridGroup}}
|
|
129
129
|
{{#>components/Grid/GridGroup size="66"}}
|
|
130
|
-
<h2 class="text-4xl headline--
|
|
130
|
+
<h2 class="text-4xl headline--barrier col-span-full">Gruppen 66%</h2>
|
|
131
131
|
{{#>components/Grid/GridItem size="12"}}
|
|
132
132
|
<div class="flex items-center justify-center text-5xl text-white bg-gray-500 aspect-video">
|
|
133
133
|
8/12 = 66%
|
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
{{/components/Grid/GridItem}}
|
|
141
141
|
{{/components/Grid/GridGroup}}
|
|
142
142
|
{{#>components/Grid/GridGroup size="33"}}
|
|
143
|
-
<h2 class="text-4xl headline--
|
|
143
|
+
<h2 class="text-4xl headline--barrier col-span-full">Gruppen 33%</h2>
|
|
144
144
|
{{#>components/Grid/GridItem size="12"}}
|
|
145
145
|
<div class="flex items-center justify-center text-5xl text-white bg-gray-500 aspect-video">
|
|
146
146
|
4/12 = 33%
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
{{#unless ../_isSectionNav}}
|
|
34
34
|
<div class="w-full">
|
|
35
35
|
<div class="flex pt-4 pb-2 pl-4 text-base font-bold bg-white lg:pl-0 md:pt-4 lg:pt-1 lg:pb-0 justify-left text-blue-congress ">
|
|
36
|
-
<a href="
|
|
36
|
+
<a href="{{resourceUrl ../this.url}}" class="-isHeaderLink lg:leading-10 link-focus-inset js-load" data-new-hr-click-tracking='{"settings": [{"type": "uxAction", "secondLevelId": "1", "clickLabel": "{{../_navigationType}}::{{../_parent}}::{{../this.flyoutStartLinkText}}-Link geklickt"}]}' >
|
|
37
37
|
{{../this.flyoutStartLinkText}}
|
|
38
38
|
</a>
|
|
39
39
|
</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.37.
|
|
9
|
+
"version": "0.37.5",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "start-storybook -p 6006 public",
|
package/src/assets/tailwind.css
CHANGED
|
@@ -362,46 +362,45 @@
|
|
|
362
362
|
font-stretch: condensed;
|
|
363
363
|
}
|
|
364
364
|
.grid-page {
|
|
365
|
-
grid-template-columns:
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
365
|
+
grid-template-columns:
|
|
366
|
+
[full-start] minmax(1rem, 1fr)
|
|
367
|
+
[main-start] minmax(0, 64rem) [main-end]
|
|
368
|
+
minmax(1rem, 1fr) [full-end];
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.col-main {
|
|
372
372
|
grid-column: main;
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.col-full {
|
|
376
376
|
grid-column: full;
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.sm\:col-main {
|
|
380
380
|
@media (min-width: 640px) {
|
|
381
|
-
|
|
381
|
+
grid-column: main;
|
|
382
382
|
}
|
|
383
|
-
|
|
384
|
-
.headline--
|
|
383
|
+
}
|
|
384
|
+
.headline--barrier {
|
|
385
385
|
display: flex;
|
|
386
386
|
width: 100%;
|
|
387
387
|
justify-content: center;
|
|
388
388
|
align-items: center;
|
|
389
389
|
text-align: center;
|
|
390
390
|
}
|
|
391
|
-
|
|
392
|
-
.headline--
|
|
393
|
-
.headline--
|
|
391
|
+
|
|
392
|
+
.headline--barrier:before,
|
|
393
|
+
.headline--barrier:after {
|
|
394
394
|
content: '';
|
|
395
395
|
border-top: 1px solid;
|
|
396
396
|
margin: 3px 20px 0 0;
|
|
397
397
|
flex: 1 0 20px;
|
|
398
398
|
}
|
|
399
|
-
|
|
400
|
-
.headline--
|
|
399
|
+
|
|
400
|
+
.headline--barrier:after {
|
|
401
401
|
margin: 3px 0 0 20px;
|
|
402
402
|
}
|
|
403
403
|
|
|
404
|
-
|
|
405
404
|
.-currentBrand {
|
|
406
405
|
@apply lg:before:absolute lg:before:w-0 lg:before:h-0 lg:before:border-t-0 lg:before:border-r-8 lg:before:border-r-transparent lg:before:border-l-8 lg:before:border-l-white lg:before:border-b-8 lg:before:border-blue-congress lg:before:mt-6;
|
|
407
406
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div class="grid bg-gray-100 grid-page">
|
|
3
3
|
<div class="grid grid-cols-12 py-6 bg-green-300 sm:px-8 col-full sm:col-main gap-x-6 gap-y-6">
|
|
4
4
|
{{#>components/Grid/GridGroup size="100"}}
|
|
5
|
-
<h2 class="text-4xl headline--
|
|
5
|
+
<h2 class="text-4xl headline--barrier col-span-full">Gruppen 100%</h2>
|
|
6
6
|
{{#>components/Grid/GridItem size="12"}}
|
|
7
7
|
<a href="#">
|
|
8
8
|
<div class="flex items-center justify-center text-5xl text-white bg-gray-500 aspect-video">
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
{{/components/Grid/GridItem}}
|
|
13
13
|
{{/components/Grid/GridGroup}}
|
|
14
14
|
{{#>components/Grid/GridGroupFull }}
|
|
15
|
-
<h2 class="text-4xl headline--
|
|
15
|
+
<h2 class="text-4xl headline--barrier col-span-full">Gruppen 100% mit blauen Hintergrung bis Rand</h2>
|
|
16
16
|
{{#>components/Grid/GridItem size="6"}}
|
|
17
17
|
<div class="flex items-center justify-center text-5xl text-white bg-gray-500 aspect-video">
|
|
18
18
|
6/12 = 50%
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
|
|
28
28
|
{{#>components/Grid/GridGroup size="100"}}
|
|
29
29
|
|
|
30
|
-
<h2 class="text-4xl headline--
|
|
30
|
+
<h2 class="text-4xl headline--barrier col-span-full">Gruppen 100%</h2>
|
|
31
31
|
{{#>components/Grid/GridItem size="6"}}
|
|
32
32
|
<div class="flex items-center justify-center text-5xl text-white bg-gray-500 aspect-video">
|
|
33
33
|
6/12 = 50%
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
{{/components/Grid/GridItem}}
|
|
57
57
|
{{/components/Grid/GridGroup}}
|
|
58
58
|
{{#>components/Grid/GridGroupTabbed }}
|
|
59
|
-
<h2 class="text-4xl headline--
|
|
59
|
+
<h2 class="text-4xl headline--barrier col-span-full">Gruppen 100% Tabbed</h2>
|
|
60
60
|
{{#>components/Grid/GridItem size="3"}}
|
|
61
61
|
<div class="flex items-center justify-center text-4xl text-white bg-gray-500 aspect-video">
|
|
62
62
|
3/12 = 25%
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
|
|
84
84
|
{{/components/Grid/GridGroupTabbed}}
|
|
85
85
|
{{#>components/Grid/GridGroup}}
|
|
86
|
-
<h2 class="text-4xl headline--
|
|
86
|
+
<h2 class="text-4xl headline--barrier col-span-full">Gruppen 100%</h2>
|
|
87
87
|
{{#>components/Grid/GridItem size="4"}}
|
|
88
88
|
<div class="flex items-center justify-center text-5xl text-white bg-gray-500 aspect-video">
|
|
89
89
|
4/12 = 33%
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
{{/components/Grid/GridItem}}
|
|
102
102
|
{{/components/Grid/GridGroup}}
|
|
103
103
|
{{#>components/Grid/GridGroup size="50"}}
|
|
104
|
-
<h2 class="text-4xl headline--
|
|
104
|
+
<h2 class="text-4xl headline--barrier col-span-full">Gruppen 50%</h2>
|
|
105
105
|
{{#>components/Grid/GridItem size="12"}}
|
|
106
106
|
<div class="flex items-center justify-center text-5xl text-white bg-gray-500 aspect-video">
|
|
107
107
|
6/12 = 50%
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
{{/components/Grid/GridItem}}
|
|
115
115
|
{{/components/Grid/GridGroup}}
|
|
116
116
|
{{#>components/Grid/GridGroup size="50"}}
|
|
117
|
-
<h2 class="text-4xl headline--
|
|
117
|
+
<h2 class="text-4xl headline--barrier col-span-full">Gruppen 50%</h2>
|
|
118
118
|
{{#>components/Grid/GridItem size="6"}}
|
|
119
119
|
<div class="flex items-center justify-center text-5xl text-white bg-gray-500 aspect-video">
|
|
120
120
|
6/12 = 50%
|
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
{{/components/Grid/GridItem}}
|
|
128
128
|
{{/components/Grid/GridGroup}}
|
|
129
129
|
{{#>components/Grid/GridGroup size="66"}}
|
|
130
|
-
<h2 class="text-4xl headline--
|
|
130
|
+
<h2 class="text-4xl headline--barrier col-span-full">Gruppen 66%</h2>
|
|
131
131
|
{{#>components/Grid/GridItem size="12"}}
|
|
132
132
|
<div class="flex items-center justify-center text-5xl text-white bg-gray-500 aspect-video">
|
|
133
133
|
8/12 = 66%
|
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
{{/components/Grid/GridItem}}
|
|
141
141
|
{{/components/Grid/GridGroup}}
|
|
142
142
|
{{#>components/Grid/GridGroup size="33"}}
|
|
143
|
-
<h2 class="text-4xl headline--
|
|
143
|
+
<h2 class="text-4xl headline--barrier col-span-full">Gruppen 33%</h2>
|
|
144
144
|
{{#>components/Grid/GridItem size="12"}}
|
|
145
145
|
<div class="flex items-center justify-center text-5xl text-white bg-gray-500 aspect-video">
|
|
146
146
|
4/12 = 33%
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
{{#unless ../_isSectionNav}}
|
|
34
34
|
<div class="w-full">
|
|
35
35
|
<div class="flex pt-4 pb-2 pl-4 text-base font-bold bg-white lg:pl-0 md:pt-4 lg:pt-1 lg:pb-0 justify-left text-blue-congress ">
|
|
36
|
-
<a href="
|
|
36
|
+
<a href="{{resourceUrl ../this.url}}" class="-isHeaderLink lg:leading-10 link-focus-inset js-load" data-new-hr-click-tracking='{"settings": [{"type": "uxAction", "secondLevelId": "1", "clickLabel": "{{../_navigationType}}::{{../_parent}}::{{../this.flyoutStartLinkText}}-Link geklickt"}]}' >
|
|
37
37
|
{{../this.flyoutStartLinkText}}
|
|
38
38
|
</a>
|
|
39
39
|
</div>
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
{
|
|
2
|
+
"logicItems": [
|
|
3
|
+
{
|
|
4
|
+
"teasersize": "100",
|
|
5
|
+
"hasGroupTitle": true,
|
|
6
|
+
"groupTitle": "Gruppe 100%",
|
|
7
|
+
"hasLink": "true",
|
|
8
|
+
"link": {
|
|
9
|
+
"url": "#gruppe1"
|
|
10
|
+
},
|
|
11
|
+
"logicItems": [
|
|
12
|
+
{
|
|
13
|
+
"logicitem": {
|
|
14
|
+
"includeModel": {
|
|
15
|
+
"cacheKey": {},
|
|
16
|
+
"byline": "Byline",
|
|
17
|
+
"title": "Title",
|
|
18
|
+
"extendedTitle": "extendedTitle",
|
|
19
|
+
"teasertype": "standard",
|
|
20
|
+
"teasersize": "100",
|
|
21
|
+
"teaserDate": {
|
|
22
|
+
"htmlDate": "20.02.1983",
|
|
23
|
+
"date": "20.02.1983",
|
|
24
|
+
"dateSeparatorTime": "20.02.1983"
|
|
25
|
+
},
|
|
26
|
+
"teaserInfo": {
|
|
27
|
+
"showTeaserInfo": true,
|
|
28
|
+
"showTeaserInfoSection": true,
|
|
29
|
+
"showTeaserInfoChannel": true,
|
|
30
|
+
"showTeaserInfoAll": true,
|
|
31
|
+
"showTeaserInfoDate": true,
|
|
32
|
+
"showTeaserInfoDateTime": true,
|
|
33
|
+
"showTeaserInfoProgramRef": true
|
|
34
|
+
},
|
|
35
|
+
"teaserImage": {
|
|
36
|
+
"copyrightWithLinks": ""
|
|
37
|
+
},
|
|
38
|
+
"duration": {
|
|
39
|
+
"inMinutes": "2:30"
|
|
40
|
+
},
|
|
41
|
+
"realTeasersize": "100",
|
|
42
|
+
"isStandardTeaser": true,
|
|
43
|
+
"isHeroTeaser": false,
|
|
44
|
+
"isColored": false,
|
|
45
|
+
"isMediaTeaser": false,
|
|
46
|
+
"isGuide": false,
|
|
47
|
+
"isProgram": false,
|
|
48
|
+
"isEvent": false,
|
|
49
|
+
"isTicker": false,
|
|
50
|
+
"isAudio": false,
|
|
51
|
+
"isVideo": false,
|
|
52
|
+
"isPodcastEpisode": false,
|
|
53
|
+
"isExtOrBrandLink": false,
|
|
54
|
+
"isAuthor": false,
|
|
55
|
+
"copyright": "Copyright Text",
|
|
56
|
+
"audioAuthor": "Audio Author",
|
|
57
|
+
"hasStatus": false,
|
|
58
|
+
"statusDescriptionForLabelShort": "???",
|
|
59
|
+
"hasTeaserItem": true,
|
|
60
|
+
"allowAVConsumption": false,
|
|
61
|
+
"displayEpgInfos": false,
|
|
62
|
+
"aspectRatio": "16x9",
|
|
63
|
+
"hideGeotag": false,
|
|
64
|
+
"hideEditableByline": true,
|
|
65
|
+
"doTracking": true,
|
|
66
|
+
"trackingForArdMediatheksLink": false,
|
|
67
|
+
"showMediatheksLink": false,
|
|
68
|
+
"showAirdate": false,
|
|
69
|
+
"showProfileInfoAsByline": false,
|
|
70
|
+
"obsolet_brandOfTeaser": "hessenschau",
|
|
71
|
+
"headingSize": "h1",
|
|
72
|
+
"icon": true,
|
|
73
|
+
"shorttext": "shorttext",
|
|
74
|
+
"sophoraId": "test-100",
|
|
75
|
+
"profiles": "Autoren",
|
|
76
|
+
"airdateDate": {
|
|
77
|
+
"htmlDate": "20.02.1983",
|
|
78
|
+
"date": "20.02.1983",
|
|
79
|
+
"dateSeparatorTime": "20.02.1983"
|
|
80
|
+
},
|
|
81
|
+
"airdateWithoutTime": {
|
|
82
|
+
"htmlDate": "20.02.1983",
|
|
83
|
+
"date": "20.02.1983",
|
|
84
|
+
"dateSeparatorTime": "20.02.1983"
|
|
85
|
+
},
|
|
86
|
+
"geotag": [
|
|
87
|
+
{
|
|
88
|
+
"title": "Frankfurt"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"title": "Offenbach"
|
|
92
|
+
}
|
|
93
|
+
],
|
|
94
|
+
"link": {
|
|
95
|
+
"url": "/teaser1",
|
|
96
|
+
"webviewUrl": "/teaser1#webview",
|
|
97
|
+
"isTargetBlank": false,
|
|
98
|
+
"hasIcon": false,
|
|
99
|
+
"iconName": "iconName",
|
|
100
|
+
"readMoreText": {
|
|
101
|
+
"readMoreScreenreader": "readMoreScreenreader",
|
|
102
|
+
"readMore": "read More",
|
|
103
|
+
"readMoreLong": "read More Long"
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
"content": {
|
|
107
|
+
"teaserImage": "",
|
|
108
|
+
"teasertype": "",
|
|
109
|
+
"imageVariant": "",
|
|
110
|
+
"isFileDownload": false,
|
|
111
|
+
"readMoreText": {
|
|
112
|
+
"readMoreScreenreader": "readMoreScreenreader",
|
|
113
|
+
"readMore": "read More"
|
|
114
|
+
},
|
|
115
|
+
"trackingData": {
|
|
116
|
+
"secondLevelId": "2",
|
|
117
|
+
"pageName": "hessenschau"
|
|
118
|
+
},
|
|
119
|
+
"label": {
|
|
120
|
+
"type": "Ticker",
|
|
121
|
+
"loca": "ticker",
|
|
122
|
+
"duration": {
|
|
123
|
+
"inMinutes": "2:30"
|
|
124
|
+
},
|
|
125
|
+
"byline": {
|
|
126
|
+
"bylineSsi": "ssi",
|
|
127
|
+
"bylineText": "BylineText"
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
]
|
|
135
|
+
}
|
|
136
|
+
]
|
|
137
|
+
}
|