hr-design-system-handlebars 1.52.11 → 1.52.13

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/.storybook/preview.js +40 -4
  2. package/CHANGELOG.md +24 -0
  3. package/dist/assets/index.css +15 -3
  4. package/package.json +5 -3
  5. package/src/assets/css/custom-components.css +5 -0
  6. package/src/assets/fixtures/content/copytext/copytext.json +37 -2
  7. package/src/assets/fixtures/content/copytext/copytext_additionalInfo.json +38 -2
  8. package/src/assets/fixtures/content/copytext/copytext_cite.json +38 -2
  9. package/src/assets/fixtures/content/copytext/copytext_faq.json +69 -2
  10. package/src/assets/fixtures/content/copytext/copytext_image.json +40 -2
  11. package/src/assets/fixtures/content/copytext/copytext_jobposting.json +49 -2
  12. package/src/assets/fixtures/content/copytext/copytext_paragraph.inc.json +12 -0
  13. package/src/assets/fixtures/content/copytext/copytext_podcastepisode.json +64 -2
  14. package/src/assets/fixtures/content/copytext/copytext_posterteaser.json +185 -2
  15. package/src/stories/ConsoleLog.mdx +38 -0
  16. package/src/stories/Fixtures.mdx +1 -1
  17. package/src/stories/conventions-and-datastructure.mdx +1 -1
  18. package/src/stories/views/components/content/copytext/copytext.mdx +1 -1
  19. package/src/stories/views/components/content/copytext/copytext.stories.js +6 -6
  20. package/src/stories/views/components/content/copytext/fixtures/copytext.json +1 -1
  21. package/src/stories/views/components/content/copytext/fixtures/copytext_additionalInfo.json +1 -1
  22. package/src/stories/views/components/content/copytext/fixtures/copytext_cite.json +1 -1
  23. package/src/stories/views/components/content/copytext/fixtures/copytext_faq.json +1 -1
  24. package/src/stories/views/components/content/copytext/fixtures/copytext_image.json +1 -1
  25. package/src/stories/views/components/content/copytext/fixtures/copytext_podcastepisode.json +1 -1
  26. package/src/stories/views/components/content/copytext/fixtures/copytext_posterteaser.json +1 -1
  27. package/src/assets/fixtures/content/copytext/copytext.inc.json +0 -831
@@ -1,6 +1,9 @@
1
1
  import '!style-loader!css-loader!postcss-loader!tailwind'
2
2
  import 'tailwind'
3
3
  import { withThemeByDataAttribute } from '@storybook/addon-styling'
4
+ import '@storybook/addon-console'
5
+ import { setConsoleOptions } from '@storybook/addon-console';
6
+ import { configureActions } from '@storybook/addon-actions';
4
7
 
5
8
  import hrDesignsystemDark from './HRDesignsystemDark'
6
9
  import hrDesignsystemLight from './HRDesignsystemLight'
@@ -11,6 +14,38 @@ import loadFeature from '../build/webpack/feature-loader/initializer/loader'
11
14
  import '../src/assets/js/alpine.js'
12
15
  import '../src/assets/tailwind.css'
13
16
 
17
+ import { CheckCSS } from 'checkcss';
18
+
19
+ configureActions({
20
+ clearOnStoryChange: true,
21
+ });
22
+
23
+ // Create CheckCSS instance
24
+ const checkcss = new CheckCSS();
25
+
26
+ checkcss.onClassnameDetected = function (classname, element) {
27
+ // Return `false` to disable checks for `classname`.
28
+ // For example, to ignore classnames starting with
29
+ // "license-" or "maintainer-"...
30
+ var storybookRoot = document.getElementById('storybook-root');
31
+ var prefixes = /^js-|^cy-|^sb-/.test(classname) ? false : true
32
+ return storybookRoot.contains(element) && prefixes
33
+ }
34
+ checkcss.onUndefinedClassname = function (classname) {
35
+ console.log(
36
+ `checkcss: No CSS rule for .${classname}`,
37
+ );
38
+ };
39
+
40
+ checkcss.scan().watch();
41
+
42
+ const panelInclude = setConsoleOptions({}).panelInclude;
43
+
44
+ setConsoleOptions({
45
+ panelInclude: [...panelInclude, /checkcss/],
46
+ });
47
+
48
+
14
49
  function loadDelayedImages() {
15
50
  setTimeout(function () {
16
51
  var t,
@@ -173,11 +208,12 @@ export const parameters = {
173
208
  [
174
209
  'Entwicklung',
175
210
  [
176
- 'Installation und Update von Dependencies im Entwicklungs Projekt',
177
- 'Installation der Design-System Komponenten im Delivery Projekt',
211
+ 'Installation und Update von Dependencies',
212
+ 'Design System im Delivery Projekt installieren',
213
+ 'Konventionen und Datenstrukturen',
214
+ 'Testdatenbereitstellung',
215
+ 'Konsolenausgaben'
178
216
  ],
179
- 'Konventionen und Datenstrukturen',
180
- 'Testdatenbereitstellung',
181
217
  '*',
182
218
  ],
183
219
  'Komponenten',
package/CHANGELOG.md CHANGED
@@ -1,3 +1,27 @@
1
+ # v1.52.13 (Wed Jan 24 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - refactoring of copytext-json [#815](https://github.com/mumprod/hr-design-system-handlebars/pull/815) ([@hanswurstsalat](https://github.com/hanswurstsalat))
6
+
7
+ #### Authors: 1
8
+
9
+ - Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
10
+
11
+ ---
12
+
13
+ # v1.52.12 (Wed Jan 24 2024)
14
+
15
+ #### 🐛 Bug Fix
16
+
17
+ - Add console to storybook [#811](https://github.com/mumprod/hr-design-system-handlebars/pull/811) ([@vascoeduardo](https://github.com/vascoeduardo))
18
+
19
+ #### Authors: 1
20
+
21
+ - Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
22
+
23
+ ---
24
+
1
25
  # v1.52.11 (Wed Jan 24 2024)
2
26
 
3
27
  #### 🐛 Bug Fix
@@ -1002,6 +1002,18 @@ article.indexText ul {
1002
1002
  list-style-type: disc;
1003
1003
  padding-left: 1rem;
1004
1004
  }
1005
+ /* -------------------------COPYTEXT ------------------------------- */
1006
+ a.link {
1007
+ color: #006eb7;
1008
+ color: var(--color-link);
1009
+ -webkit-text-decoration-line: underline;
1010
+ text-decoration-line: underline;
1011
+ text-decoration-thickness: 1px;
1012
+ }
1013
+ [class~='tw-dark'] a.link {
1014
+ color: #006eb7;
1015
+ color: var(--color-link-dark);
1016
+ }
1005
1017
  .sr-only {
1006
1018
  position: absolute;
1007
1019
  width: 1px;
@@ -3249,7 +3261,7 @@ article.indexText ul {
3249
3261
  border-bottom-color: var(--color-secondary-ds);
3250
3262
  }
3251
3263
  .counter-reset {
3252
- counter-reset: cnt1706086838048;
3264
+ counter-reset: cnt1706103702650;
3253
3265
  }
3254
3266
  .hyphens-auto {
3255
3267
  -webkit-hyphens: auto;
@@ -3551,7 +3563,7 @@ article.indexText ul {
3551
3563
  --tw-ring-color: rgba(255, 255, 255, 0.5);
3552
3564
  }
3553
3565
  .-ordered {
3554
- counter-increment: cnt1706086838048 1;
3566
+ counter-increment: cnt1706103702650 1;
3555
3567
  }
3556
3568
  .-ordered::before {
3557
3569
  position: absolute;
@@ -3567,7 +3579,7 @@ article.indexText ul {
3567
3579
  letter-spacing: .0125em;
3568
3580
  --tw-text-opacity: 1;
3569
3581
  color: rgba(0, 0, 0, var(--tw-text-opacity));
3570
- content: counter(cnt1706086838048);
3582
+ content: counter(cnt1706103702650);
3571
3583
  }
3572
3584
  /*! ****************************/
3573
3585
  /*! DataPolicy stuff */
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.52.11",
9
+ "version": "1.52.13",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -43,8 +43,9 @@
43
43
  "@babel/core": "^7.12.10",
44
44
  "@babel/preset-env": "^7.21.4",
45
45
  "@storybook/addon-a11y": "^7.2.1",
46
- "@storybook/addon-actions": "^7.2.1",
47
- "@storybook/addon-essentials": "^7.2.1",
46
+ "@storybook/addon-actions": "7.5.3",
47
+ "@storybook/addon-console": "^2.0.0",
48
+ "@storybook/addon-essentials": "7.5.3",
48
49
  "@storybook/addon-links": "^7.2.1",
49
50
  "@storybook/addon-styling": "^1.3.5",
50
51
  "@storybook/addons": "^7.2.1",
@@ -112,6 +113,7 @@
112
113
  "a11y-dialog": "^8.0.4",
113
114
  "alpinejs": "^3.8.1",
114
115
  "async-alpine": "^1.0.0",
116
+ "checkcss": "^2.0.9",
115
117
  "dialog-polyfill": "^0.5.6",
116
118
  "tailwindcss-counter": "^1.1.3"
117
119
  },
@@ -294,4 +294,9 @@
294
294
  /* -------------------------INDEXTEXT-TEASER ------------------------ */
295
295
  article.indexText ul {
296
296
  @apply pl-4 list-disc;
297
+ }
298
+
299
+ /* -------------------------COPYTEXT ------------------------------- */
300
+ a.link {
301
+ @apply underline decoration-1 text-link dark:text-link-dark;
297
302
  }
@@ -1,4 +1,39 @@
1
1
  {
2
- "@->jsoninclude": "content/copytext/copytext.inc.json",
3
- "@->contentpath": "copytext_1"
2
+ "copytextParagraph": [
3
+ {
4
+ "structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
5
+ "isHeadline": true,
6
+ "text": "Copytext"
7
+ },
8
+ {
9
+ "@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
10
+ },
11
+ {
12
+ "structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
13
+ "isParagraph": true,
14
+ "text": {
15
+ "split": [
16
+ {
17
+ "isUl": true,
18
+ "text": "<li>Lorem ipsum dolor sit amet</li><li>At vero eos et accusam et justo</li><li>Stet clita kasd gubergren</li>"
19
+ },
20
+ {
21
+ "isOl": true,
22
+ "text": "<li>Lorem ipsum dolor sit amet</li><li>At vero eos et accusam et justo</li><li>Stet clita kasd gubergren</li>"
23
+ }
24
+ ]
25
+ }
26
+ },
27
+ {
28
+ "@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
29
+ },
30
+ {
31
+ "structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
32
+ "isHeadline": true,
33
+ "text": "Zwischenüberschrift"
34
+ },
35
+ {
36
+ "@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
37
+ }
38
+ ]
4
39
  }
@@ -1,4 +1,40 @@
1
1
  {
2
- "@->jsoninclude": "content/copytext/copytext.inc.json",
3
- "@->contentpath": "copytext_additionalInfo"
2
+ "copytextParagraph": [
3
+ {
4
+ "structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
5
+ "isHeadline": true,
6
+ "text": "Copytext mit Zusatzinfo"
7
+ },
8
+ {
9
+ "@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
10
+ },
11
+ {
12
+ "@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
13
+ },
14
+ {
15
+ "structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
16
+ "isAdditionalInfo": true,
17
+ "text": {
18
+ "split": [
19
+ {
20
+ "isText": true,
21
+ "text": "Sendung: hr-fernsehen, hessenschau, 13.12.2022, 19.30 Uhr"
22
+ },
23
+ {
24
+ "isOl": true,
25
+ "text": "<li>eins</li><li>zwei</li><li>drei</li>"
26
+ },
27
+ {
28
+ "isUl": true,
29
+ "text": "<li>eins</li><li>zwei</li><li>drei</li>"
30
+ },
31
+ {
32
+ "isText": true,
33
+ "text": "Quelle: hessenschau.de/Jörn Perske"
34
+ }
35
+ ]
36
+ }
37
+ }
38
+
39
+ ]
4
40
  }
@@ -1,4 +1,40 @@
1
1
  {
2
- "@->jsoninclude": "content/copytext/copytext.inc.json",
3
- "@->contentpath": "copytext_cite"
2
+ "copytextParagraph": [
3
+ {
4
+ "structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
5
+ "isHeadline": true,
6
+ "text": "Copytext mit Zitat"
7
+ },
8
+ {
9
+ "@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
10
+ },
11
+ {
12
+ "structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
13
+ "isCite": true,
14
+ "text":"Wenn ich mein Leben noch einmal leben könnte, würde ich die gleichen Fehler machen. Aber ein bisschen früher damit ich mehr davon habe.",
15
+ "paragraphProperties": [
16
+ {
17
+ "showFullSize":true,
18
+ "citeAuthor":"Marlene Dietrich"
19
+ }
20
+ ]
21
+ },
22
+ {
23
+ "@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
24
+ },
25
+ {
26
+ "structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
27
+ "isCite": true,
28
+ "text":"Wenn ich mein Leben noch einmal leben könnte, würde ich die gleichen Fehler machen. Aber ein bisschen früher damit ich mehr davon habe.",
29
+ "paragraphProperties": [
30
+ {
31
+ "showFullSize":false,
32
+ "citeAuthor":"Marlene Dietrich"
33
+ }
34
+ ]
35
+ },
36
+ {
37
+ "@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
38
+ }
39
+ ]
4
40
  }
@@ -1,4 +1,71 @@
1
1
  {
2
- "@->jsoninclude": "content/copytext/copytext.inc.json",
3
- "@->contentpath": "copytext_faq"
2
+ "copytextParagraph": [
3
+ {
4
+ "structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
5
+ "isHeadline": true,
6
+ "text": "Copytext mit FAQs"
7
+ },
8
+ {
9
+ "@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
10
+ },
11
+ {
12
+ "structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
13
+ "isFAQ": true,
14
+ "text": "Wo brauche ich noch Corona-Test?",
15
+ "paragraphProperties": [
16
+ {
17
+ "faqAnswer": {
18
+ "split": [
19
+ {
20
+ "isText": true,
21
+ "text": "Es besteht keine Testpflicht mehr. Auch in Krankenhäusern, Alten- und Pflegeheimen sowie Sammelunterkünften muss sich seit dem 1. März niemand mehr testen lassen."
22
+ },
23
+ {
24
+ "isUl": true,
25
+ "text": "<li>Es besteht keine Testpflicht mehr</li><li>Auch in Krankenhäusern, Alten- und Pflegeheimen</li>"
26
+ },
27
+ {
28
+ "isOl": true,
29
+ "text": "<li>Es besteht keine Testpflicht mehr</li><li>Auch in Krankenhäusern, Alten- und Pflegeheimen</li>"
30
+ }
31
+ ]
32
+ }
33
+ }
34
+ ]
35
+ },
36
+ {
37
+ "structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
38
+ "isFAQ": true,
39
+ "text": "Gibt es noch Bürgertests?",
40
+ "paragraphProperties": [
41
+ {
42
+ "faqAnswer": {
43
+ "split": [
44
+ {
45
+ "isText": true,
46
+ "text": "Seit dem 1. März 2023 besteht keine Möglichkeit mehr zur kostenlosen Bürgertestung. Alle Testangebote sind kostenpflichtig."
47
+ }
48
+ ]
49
+ }
50
+ }
51
+ ]
52
+ },
53
+ {
54
+ "structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
55
+ "isFAQ": true,
56
+ "text": "Wo muss ich Maske tragen?",
57
+ "paragraphProperties": [
58
+ {
59
+ "faqAnswer": {
60
+ "split": [
61
+ {
62
+ "isText": true,
63
+ "text": "Ab dem 8. April 2023 ist die Maskenpflicht in Hessen in allen Bereichen aufgehoben."
64
+ }
65
+ ]
66
+ }
67
+ }
68
+ ]
69
+ }
70
+ ]
4
71
  }
@@ -1,4 +1,42 @@
1
1
  {
2
- "@->jsoninclude": "content/copytext/copytext.inc.json",
3
- "@->contentpath": "copytext_image"
2
+ "copytextParagraph": [
3
+ {
4
+ "structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
5
+ "isHeadline": true,
6
+ "text": "Copytext mit Image"
7
+ },
8
+ {
9
+ "@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
10
+ },
11
+ {
12
+ "paragraphBoxItem": {
13
+ "@->jsoninclude": "teaser/teaser_images.inc.json",
14
+ "@->contentpath": "copytext_image_100",
15
+ "@->replaceToken": [
16
+ {
17
+ "@->token": "image",
18
+ "@->value": "buchmesse-fahnen-102"
19
+ }
20
+ ]
21
+ }
22
+ },
23
+ {
24
+ "@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
25
+ },
26
+ {
27
+ "paragraphBoxItem": {
28
+ "@->jsoninclude": "teaser/teaser_images.inc.json",
29
+ "@->contentpath": "copytext_image_50",
30
+ "@->replaceToken": [
31
+ {
32
+ "@->token": "image",
33
+ "@->value": "buchmesse-fahnen-102"
34
+ }
35
+ ]
36
+ }
37
+ },
38
+ {
39
+ "@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
40
+ }
41
+ ]
4
42
  }
@@ -1,4 +1,51 @@
1
1
  {
2
- "@->jsoninclude": "content/copytext/copytext.inc.json",
3
- "@->contentpath": "copytext_jobposting"
2
+ "copytextParagraph": [
3
+ {
4
+ "structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
5
+ "isHeadline": true,
6
+ "text": "Copytext mit Jobposting"
7
+ },
8
+ {
9
+ "structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
10
+ "isParagraph": true,
11
+ "text": {
12
+ "split": [
13
+ {
14
+ "isText": true,
15
+ "text": "Digitale Produkte, Fernsehen, Radio– wir sind Hessens größtes Medienunternehmen. Als Mitglied der ARD sind wir stolz darauf, mit unseren vielfältigen und qualitativ hochwertigen Programmangeboten wesentlich zur Meinungs- und Medienvielfalt in Deutschland beizutragen. Zur Verstärkung unseres Teams suchen wir befristet für zunächst 3 Jahre eine*n innovative*n"
16
+ }
17
+ ]
18
+ }
19
+ },
20
+ {
21
+ "structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
22
+ "isHeadline": true,
23
+ "text": "Java-Entwickler*in"
24
+ },
25
+ {
26
+ "structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
27
+ "isJobposting": true,
28
+ "text": "Wo brauche ich noch Corona-Test?",
29
+ "paragraphProperties": [
30
+ {
31
+ "jobDescription": {
32
+ "split": [
33
+ {
34
+ "isText": true,
35
+ "text": "Du hast Spaß an neuen Technologien und bist ein*e Experte*in in der Java-Entwicklung? Du suchst spannende und vielfältige Projekte in einem dynamischen Medienumfeld? Dann vernetze gemeinsam mit uns die Mediensysteme der ARD."
36
+ },
37
+ {
38
+ "isUl": true,
39
+ "text": "<li>Du hast Spaß daran selbstorganisiert in einem agilen Umfeld und interdisziplinären Projektteams zu arbeiten.</li><li>Du bringst ein abgeschlossenes informatikorientiertes Studium bzw. eine vergleichbare Qualifikation mit und verfügst über Berufserfahrung im Bereich Softwareentwicklung.</li><li>Sehr gute Java-Kenntnisse, Kenntnisse in modernen Schnittstellentechnologien und Datenbanksystemen setzen wir voraus.</li>"
40
+ },
41
+ {
42
+ "isOl": true,
43
+ "text": "<li>Du implementierst als Full-Stack-Entwickler*in Features vertikal durch alle Softwareschichten.</li><li>Im Team entwickelst du die Applikation in enger Zusammenarbeit mit Anwender*innen fachlich weiter.</li>"
44
+ }
45
+ ]
46
+ }
47
+ }
48
+ ]
49
+ }
50
+ ]
4
51
  }
@@ -0,0 +1,12 @@
1
+ {
2
+ "structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
3
+ "isParagraph": true,
4
+ "text": {
5
+ "split": [
6
+ {
7
+ "isText": true,
8
+ "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod <strong>tempor invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata <i>sanctus est Lorem ipsum</i> dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut <a href='#' class='link'>labore et dolore</a> magna aliquyam erat, sed diam voluptua."
9
+ }
10
+ ]
11
+ }
12
+ }
@@ -1,4 +1,66 @@
1
1
  {
2
- "@->jsoninclude": "content/copytext/copytext.inc.json",
3
- "@->contentpath": "copytext_podcast_episode"
2
+ "copytextParagraph": [
3
+ {
4
+ "structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
5
+ "isHeadline": true,
6
+ "text": "Copytext mit Podcastepisode"
7
+ },
8
+ {
9
+ "@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
10
+ },
11
+ {
12
+ "structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
13
+ "isParagraph": true,
14
+ "paragraphBoxItem": {
15
+ "@->jsoninclude": "teaser/teasers.inc.json",
16
+ "@->contentpath": "teaser_podcast_episode.logicItem.includeModel",
17
+ "@->extends": {
18
+ "isPodcastEpisode": true,
19
+ "showFullSize": {
20
+ "isTrue": true
21
+ }
22
+ },
23
+ "@->overrides": [
24
+ {
25
+ "@->contentpath": "teaserSize",
26
+ "@->value": "100"
27
+ },
28
+ {
29
+ "@->contentpath": "realTeaserSize",
30
+ "@->value": "100"
31
+ }
32
+ ]
33
+ }
34
+ },
35
+ {
36
+ "@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
37
+ },
38
+ {
39
+ "structuredDataSsi": "<!--#include virtual='structuredDataSsiPath' -->",
40
+ "isParagraph": true,
41
+ "paragraphBoxItem": {
42
+ "@->jsoninclude": "teaser/teasers.inc.json",
43
+ "@->contentpath": "teaser_podcast_episode.logicItem.includeModel",
44
+ "@->extends": {
45
+ "isPodcastEpisode": true,
46
+ "showFullSize": {
47
+ "isTrue": false
48
+ }
49
+ },
50
+ "@->overrides": [
51
+ {
52
+ "@->contentpath": "teaserSize",
53
+ "@->value": "50"
54
+ },
55
+ {
56
+ "@->contentpath": "realTeaserSize",
57
+ "@->value": "50"
58
+ }
59
+ ]
60
+ }
61
+ },
62
+ {
63
+ "@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
64
+ }
65
+ ]
4
66
  }