hr-design-system-handlebars 1.59.20 → 1.59.22
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 +24 -0
- package/dist/assets/index.css +3 -3
- package/dist/views/components/content/copytext/components/downloadbox/downloadbox.hbs +1 -1
- package/dist/views/components/content/copytext/copytext.hbs +117 -115
- package/dist/views/components/page/story/story_article.hbs +1 -1
- package/dist/views_static/components/content/copytext/components/downloadbox/downloadbox.hbs +1 -1
- package/dist/views_static/components/content/copytext/copytext.hbs +117 -115
- package/dist/views_static/components/page/story/story_article.hbs +1 -1
- package/package.json +1 -1
- package/src/stories/views/components/content/copytext/components/downloadbox/downloadbox.hbs +1 -1
- package/src/stories/views/components/content/copytext/copytext.hbs +117 -115
- package/src/stories/views/components/page/story/story_article.hbs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v1.59.22 (Tue Mar 05 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- change image-variant and pdf-download-ssi [#873](https://github.com/mumprod/hr-design-system-handlebars/pull/873) ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v1.59.21 (Tue Mar 05 2024)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- add div to copytext [#871](https://github.com/mumprod/hr-design-system-handlebars/pull/871) ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v1.59.20 (Mon Mar 04 2024)
|
|
2
26
|
|
|
3
27
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -3316,7 +3316,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3316
3316
|
border-bottom-color: var(--color-secondary-ds);
|
|
3317
3317
|
}
|
|
3318
3318
|
.counter-reset {
|
|
3319
|
-
counter-reset:
|
|
3319
|
+
counter-reset: cnt1709665038960;
|
|
3320
3320
|
}
|
|
3321
3321
|
.hyphens-auto {
|
|
3322
3322
|
-webkit-hyphens: auto;
|
|
@@ -3622,7 +3622,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3622
3622
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3623
3623
|
}
|
|
3624
3624
|
.-ordered {
|
|
3625
|
-
counter-increment:
|
|
3625
|
+
counter-increment: cnt1709665038960 1;
|
|
3626
3626
|
}
|
|
3627
3627
|
.-ordered::before {
|
|
3628
3628
|
position: absolute;
|
|
@@ -3638,7 +3638,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3638
3638
|
letter-spacing: .0125em;
|
|
3639
3639
|
--tw-text-opacity: 1;
|
|
3640
3640
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3641
|
-
content: counter(
|
|
3641
|
+
content: counter(cnt1709665038960);
|
|
3642
3642
|
}
|
|
3643
3643
|
/*! ****************************/
|
|
3644
3644
|
/*! DataPolicy stuff */
|
|
@@ -1,128 +1,130 @@
|
|
|
1
|
-
|
|
2
|
-
{{#
|
|
3
|
-
{{
|
|
4
|
-
|
|
1
|
+
<div>
|
|
2
|
+
{{#each this.copytextParagraph }}
|
|
3
|
+
{{#if this.isHeadline}}
|
|
4
|
+
{{> components/content/copytext/components/headline }}
|
|
5
|
+
{{/if}}
|
|
5
6
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
7
|
+
{{#unless this.isInfoBox}}
|
|
8
|
+
{{~#with this.paragraphBoxItem }}
|
|
9
|
+
{{~#if this.isImage}}
|
|
10
|
+
{{~> components/content/copytext/components/image/image}}
|
|
11
|
+
{{/if~}}
|
|
12
|
+
{{~#if this.isContentBox}}
|
|
13
|
+
{{~> components/content/copytext/components/contentbox/contentbox ~}}
|
|
14
|
+
{{/if~}}
|
|
15
|
+
{{~#if this.isAccordion}}
|
|
16
|
+
{{~> components/content/copytext/components/accordion/accordion ~}}
|
|
17
|
+
{{/if~}}
|
|
18
|
+
{{~#if this.isGallery}}
|
|
19
|
+
{{> components/content/copytext/components/gallery }}
|
|
20
|
+
{{/if~}}
|
|
21
|
+
{{~#if this.isFileDownload}}
|
|
22
|
+
{{> components/content/copytext/components/filedownload }}
|
|
23
|
+
{{/if~}}
|
|
24
|
+
{{~#if this.isMap}}
|
|
25
|
+
{{> components/content/copytext/components/map }}
|
|
26
|
+
{{/if~}}
|
|
27
|
+
{{~#if this.isWebForm}}
|
|
28
|
+
{{> components/content/copytext/components/webform }}
|
|
29
|
+
{{/if~}}
|
|
30
|
+
{{~#if this.isNewsletter}}
|
|
31
|
+
{{> components/content/copytext/components/newsletter }}
|
|
32
|
+
{{/if~}}
|
|
33
|
+
{{~#if this.isAudio}}
|
|
34
|
+
{{> components/content/copytext/components/audio }}
|
|
35
|
+
{{/if~}}
|
|
36
|
+
{{~#if this.isAudioEventLivestream}}
|
|
37
|
+
{{> components/content/copytext/components/audioeventlivestream }}
|
|
38
|
+
{{/if~}}
|
|
39
|
+
{{~#if this.isPodcastEpisode}}
|
|
40
|
+
{{> components/content/copytext/components/podcastepisode }}
|
|
41
|
+
{{/if~}}
|
|
42
|
+
{{~#if this.isVideo}}
|
|
43
|
+
{{> components/content/copytext/components/video }}
|
|
44
|
+
{{/if~}}
|
|
45
|
+
{{~#if this.isLivestream}}
|
|
46
|
+
{{> components/content/copytext/components/livestream }}
|
|
47
|
+
{{/if~}}
|
|
48
|
+
{{~#if this.isTweet}}
|
|
49
|
+
{{> components/content/copytext/components/tweet }}
|
|
50
|
+
{{~/if}}
|
|
51
|
+
{{~#if this.isRadioPlaylist}}
|
|
52
|
+
{{> components/content/copytext/components/radioplaylist }}
|
|
53
|
+
{{~/if}}
|
|
54
|
+
{{~#if this.isVoting}}
|
|
55
|
+
{{> components/content/copytext/components/voting }}
|
|
56
|
+
{{/if~}}
|
|
57
|
+
{{~#if this.isExternalService}}
|
|
58
|
+
{{> components/content/copytext/components/externalservice }}
|
|
59
|
+
{{/if~}}
|
|
60
|
+
{{~#if this.isContentNav}}
|
|
61
|
+
{{#with this.toModel.contentNavigationTeaser}}
|
|
62
|
+
{{~> components/teaser/content_nav/teaser_content_nav _isCopytext=true ~}}
|
|
63
|
+
{{/with}}
|
|
64
|
+
{{/if~}}
|
|
65
|
+
{{~/with}}
|
|
66
|
+
{{/unless}}
|
|
67
|
+
|
|
68
|
+
{{~#with this.paragraphTeaserItem }}
|
|
69
|
+
{{~#if this.isTopictag}}
|
|
70
|
+
{{#with this.toModel.baseTeaserDS}}
|
|
71
|
+
{{> components/content/copytext/components/posterteaser }}
|
|
72
|
+
{{/with}}
|
|
37
73
|
{{/if~}}
|
|
38
|
-
{{~#if this.
|
|
39
|
-
{{
|
|
74
|
+
{{~#if this.isTicker}}
|
|
75
|
+
{{#with this.toModel.baseTeaserDS}}
|
|
76
|
+
{{> components/content/copytext/components/posterteaser }}
|
|
77
|
+
{{/with}}
|
|
40
78
|
{{/if~}}
|
|
41
|
-
{{~#if this.
|
|
42
|
-
{{
|
|
79
|
+
{{~#if this.isLink}}
|
|
80
|
+
{{#with this.toModel.baseTeaserDS}}
|
|
81
|
+
{{> components/content/copytext/components/posterteaser }}
|
|
82
|
+
{{/with}}
|
|
43
83
|
{{/if~}}
|
|
44
|
-
{{~#if this.
|
|
45
|
-
{{
|
|
84
|
+
{{~#if this.isStructureNodeDocument}}
|
|
85
|
+
{{#with this.toModel.structureNodeTeaser}}
|
|
86
|
+
{{> components/content/copytext/components/posterteaser }}
|
|
87
|
+
{{/with}}
|
|
46
88
|
{{/if~}}
|
|
47
|
-
{{~#if this.
|
|
48
|
-
{{
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
{{> components/content/copytext/components/radioplaylist }}
|
|
52
|
-
{{~/if}}
|
|
53
|
-
{{~#if this.isVoting}}
|
|
54
|
-
{{> components/content/copytext/components/voting }}
|
|
89
|
+
{{~#if this.isStory}}
|
|
90
|
+
{{#with this.toModel.baseTeaserDS}}
|
|
91
|
+
{{> components/content/copytext/components/posterteaser }}
|
|
92
|
+
{{/with}}
|
|
55
93
|
{{/if~}}
|
|
56
|
-
{{~#if this.
|
|
57
|
-
{{
|
|
94
|
+
{{~#if this.isProgram}}
|
|
95
|
+
{{#with this.toModel.baseTeaserDS}}
|
|
96
|
+
{{> components/content/copytext/components/posterteaser }}
|
|
97
|
+
{{/with}}
|
|
58
98
|
{{/if~}}
|
|
59
|
-
{{~#if this.
|
|
60
|
-
{{#with this.toModel.
|
|
61
|
-
{{
|
|
99
|
+
{{~#if this.isEvent}}
|
|
100
|
+
{{#with this.toModel.eventTeaser}}
|
|
101
|
+
{{> components/content/copytext/components/posterteaser }}
|
|
62
102
|
{{/with}}
|
|
63
103
|
{{/if~}}
|
|
64
104
|
{{~/with}}
|
|
65
|
-
{{/unless}}
|
|
66
|
-
|
|
67
|
-
{{~#with this.paragraphTeaserItem }}
|
|
68
|
-
{{~#if this.isTopictag}}
|
|
69
|
-
{{#with this.toModel.baseTeaserDS}}
|
|
70
|
-
{{> components/content/copytext/components/posterteaser }}
|
|
71
|
-
{{/with}}
|
|
72
|
-
{{/if~}}
|
|
73
|
-
{{~#if this.isTicker}}
|
|
74
|
-
{{#with this.toModel.baseTeaserDS}}
|
|
75
|
-
{{> components/content/copytext/components/posterteaser }}
|
|
76
|
-
{{/with}}
|
|
77
|
-
{{/if~}}
|
|
78
|
-
{{~#if this.isLink}}
|
|
79
|
-
{{#with this.toModel.baseTeaserDS}}
|
|
80
|
-
{{> components/content/copytext/components/posterteaser }}
|
|
81
|
-
{{/with}}
|
|
82
|
-
{{/if~}}
|
|
83
|
-
{{~#if this.isStructureNodeDocument}}
|
|
84
|
-
{{#with this.toModel.structureNodeTeaser}}
|
|
85
|
-
{{> components/content/copytext/components/posterteaser }}
|
|
86
|
-
{{/with}}
|
|
87
|
-
{{/if~}}
|
|
88
|
-
{{~#if this.isStory}}
|
|
89
|
-
{{#with this.toModel.baseTeaserDS}}
|
|
90
|
-
{{> components/content/copytext/components/posterteaser }}
|
|
91
|
-
{{/with}}
|
|
92
|
-
{{/if~}}
|
|
93
|
-
{{~#if this.isProgram}}
|
|
94
|
-
{{#with this.toModel.baseTeaserDS}}
|
|
95
|
-
{{> components/content/copytext/components/posterteaser }}
|
|
96
|
-
{{/with}}
|
|
97
|
-
{{/if~}}
|
|
98
|
-
{{~#if this.isEvent}}
|
|
99
|
-
{{#with this.toModel.eventTeaser}}
|
|
100
|
-
{{> components/content/copytext/components/posterteaser }}
|
|
101
|
-
{{/with}}
|
|
102
|
-
{{/if~}}
|
|
103
|
-
{{~/with}}
|
|
104
105
|
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
106
|
+
{{#if this.isParagraph}}
|
|
107
|
+
{{> components/content/copytext/components/paragraph/paragraph }}
|
|
108
|
+
{{/if}}
|
|
108
109
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
110
|
+
{{#if this.isCite}}
|
|
111
|
+
{{> components/content/copytext/components/cite }}
|
|
112
|
+
{{/if}}
|
|
112
113
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
{{/each}}
|
|
114
|
+
{{#if this.isInfoBox}}
|
|
115
|
+
{{> components/content/copytext/components/infobox }}
|
|
116
|
+
{{/if}}
|
|
117
|
+
{{#if this.isAdditionalInfo}}
|
|
118
|
+
{{> components/content/copytext/components/additionalinfo }}
|
|
119
|
+
{{/if}}
|
|
120
|
+
{{#if this.isDownloadBox}}
|
|
121
|
+
{{> components/content/copytext/components/downloadbox/downloadbox }}
|
|
122
|
+
{{/if}}
|
|
123
|
+
{{#if this.isFAQ}}
|
|
124
|
+
{{> components/content/copytext/components/faq }}
|
|
125
|
+
{{/if}}
|
|
126
|
+
{{#if this.isJobposting}}
|
|
127
|
+
{{> components/content/copytext/components/jobposting }}
|
|
128
|
+
{{/if}}
|
|
129
|
+
{{/each}}
|
|
130
|
+
</div>
|
|
@@ -1,128 +1,130 @@
|
|
|
1
|
-
|
|
2
|
-
{{#
|
|
3
|
-
{{
|
|
4
|
-
|
|
1
|
+
<div>
|
|
2
|
+
{{#each this.copytextParagraph }}
|
|
3
|
+
{{#if this.isHeadline}}
|
|
4
|
+
{{> components/content/copytext/components/headline }}
|
|
5
|
+
{{/if}}
|
|
5
6
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
7
|
+
{{#unless this.isInfoBox}}
|
|
8
|
+
{{~#with this.paragraphBoxItem }}
|
|
9
|
+
{{~#if this.isImage}}
|
|
10
|
+
{{~> components/content/copytext/components/image/image}}
|
|
11
|
+
{{/if~}}
|
|
12
|
+
{{~#if this.isContentBox}}
|
|
13
|
+
{{~> components/content/copytext/components/contentbox/contentbox ~}}
|
|
14
|
+
{{/if~}}
|
|
15
|
+
{{~#if this.isAccordion}}
|
|
16
|
+
{{~> components/content/copytext/components/accordion/accordion ~}}
|
|
17
|
+
{{/if~}}
|
|
18
|
+
{{~#if this.isGallery}}
|
|
19
|
+
{{> components/content/copytext/components/gallery }}
|
|
20
|
+
{{/if~}}
|
|
21
|
+
{{~#if this.isFileDownload}}
|
|
22
|
+
{{> components/content/copytext/components/filedownload }}
|
|
23
|
+
{{/if~}}
|
|
24
|
+
{{~#if this.isMap}}
|
|
25
|
+
{{> components/content/copytext/components/map }}
|
|
26
|
+
{{/if~}}
|
|
27
|
+
{{~#if this.isWebForm}}
|
|
28
|
+
{{> components/content/copytext/components/webform }}
|
|
29
|
+
{{/if~}}
|
|
30
|
+
{{~#if this.isNewsletter}}
|
|
31
|
+
{{> components/content/copytext/components/newsletter }}
|
|
32
|
+
{{/if~}}
|
|
33
|
+
{{~#if this.isAudio}}
|
|
34
|
+
{{> components/content/copytext/components/audio }}
|
|
35
|
+
{{/if~}}
|
|
36
|
+
{{~#if this.isAudioEventLivestream}}
|
|
37
|
+
{{> components/content/copytext/components/audioeventlivestream }}
|
|
38
|
+
{{/if~}}
|
|
39
|
+
{{~#if this.isPodcastEpisode}}
|
|
40
|
+
{{> components/content/copytext/components/podcastepisode }}
|
|
41
|
+
{{/if~}}
|
|
42
|
+
{{~#if this.isVideo}}
|
|
43
|
+
{{> components/content/copytext/components/video }}
|
|
44
|
+
{{/if~}}
|
|
45
|
+
{{~#if this.isLivestream}}
|
|
46
|
+
{{> components/content/copytext/components/livestream }}
|
|
47
|
+
{{/if~}}
|
|
48
|
+
{{~#if this.isTweet}}
|
|
49
|
+
{{> components/content/copytext/components/tweet }}
|
|
50
|
+
{{~/if}}
|
|
51
|
+
{{~#if this.isRadioPlaylist}}
|
|
52
|
+
{{> components/content/copytext/components/radioplaylist }}
|
|
53
|
+
{{~/if}}
|
|
54
|
+
{{~#if this.isVoting}}
|
|
55
|
+
{{> components/content/copytext/components/voting }}
|
|
56
|
+
{{/if~}}
|
|
57
|
+
{{~#if this.isExternalService}}
|
|
58
|
+
{{> components/content/copytext/components/externalservice }}
|
|
59
|
+
{{/if~}}
|
|
60
|
+
{{~#if this.isContentNav}}
|
|
61
|
+
{{#with this.toModel.contentNavigationTeaser}}
|
|
62
|
+
{{~> components/teaser/content_nav/teaser_content_nav _isCopytext=true ~}}
|
|
63
|
+
{{/with}}
|
|
64
|
+
{{/if~}}
|
|
65
|
+
{{~/with}}
|
|
66
|
+
{{/unless}}
|
|
67
|
+
|
|
68
|
+
{{~#with this.paragraphTeaserItem }}
|
|
69
|
+
{{~#if this.isTopictag}}
|
|
70
|
+
{{#with this.toModel.baseTeaserDS}}
|
|
71
|
+
{{> components/content/copytext/components/posterteaser }}
|
|
72
|
+
{{/with}}
|
|
37
73
|
{{/if~}}
|
|
38
|
-
{{~#if this.
|
|
39
|
-
{{
|
|
74
|
+
{{~#if this.isTicker}}
|
|
75
|
+
{{#with this.toModel.baseTeaserDS}}
|
|
76
|
+
{{> components/content/copytext/components/posterteaser }}
|
|
77
|
+
{{/with}}
|
|
40
78
|
{{/if~}}
|
|
41
|
-
{{~#if this.
|
|
42
|
-
{{
|
|
79
|
+
{{~#if this.isLink}}
|
|
80
|
+
{{#with this.toModel.baseTeaserDS}}
|
|
81
|
+
{{> components/content/copytext/components/posterteaser }}
|
|
82
|
+
{{/with}}
|
|
43
83
|
{{/if~}}
|
|
44
|
-
{{~#if this.
|
|
45
|
-
{{
|
|
84
|
+
{{~#if this.isStructureNodeDocument}}
|
|
85
|
+
{{#with this.toModel.structureNodeTeaser}}
|
|
86
|
+
{{> components/content/copytext/components/posterteaser }}
|
|
87
|
+
{{/with}}
|
|
46
88
|
{{/if~}}
|
|
47
|
-
{{~#if this.
|
|
48
|
-
{{
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
{{> components/content/copytext/components/radioplaylist }}
|
|
52
|
-
{{~/if}}
|
|
53
|
-
{{~#if this.isVoting}}
|
|
54
|
-
{{> components/content/copytext/components/voting }}
|
|
89
|
+
{{~#if this.isStory}}
|
|
90
|
+
{{#with this.toModel.baseTeaserDS}}
|
|
91
|
+
{{> components/content/copytext/components/posterteaser }}
|
|
92
|
+
{{/with}}
|
|
55
93
|
{{/if~}}
|
|
56
|
-
{{~#if this.
|
|
57
|
-
{{
|
|
94
|
+
{{~#if this.isProgram}}
|
|
95
|
+
{{#with this.toModel.baseTeaserDS}}
|
|
96
|
+
{{> components/content/copytext/components/posterteaser }}
|
|
97
|
+
{{/with}}
|
|
58
98
|
{{/if~}}
|
|
59
|
-
{{~#if this.
|
|
60
|
-
{{#with this.toModel.
|
|
61
|
-
{{
|
|
99
|
+
{{~#if this.isEvent}}
|
|
100
|
+
{{#with this.toModel.eventTeaser}}
|
|
101
|
+
{{> components/content/copytext/components/posterteaser }}
|
|
62
102
|
{{/with}}
|
|
63
103
|
{{/if~}}
|
|
64
104
|
{{~/with}}
|
|
65
|
-
{{/unless}}
|
|
66
|
-
|
|
67
|
-
{{~#with this.paragraphTeaserItem }}
|
|
68
|
-
{{~#if this.isTopictag}}
|
|
69
|
-
{{#with this.toModel.baseTeaserDS}}
|
|
70
|
-
{{> components/content/copytext/components/posterteaser }}
|
|
71
|
-
{{/with}}
|
|
72
|
-
{{/if~}}
|
|
73
|
-
{{~#if this.isTicker}}
|
|
74
|
-
{{#with this.toModel.baseTeaserDS}}
|
|
75
|
-
{{> components/content/copytext/components/posterteaser }}
|
|
76
|
-
{{/with}}
|
|
77
|
-
{{/if~}}
|
|
78
|
-
{{~#if this.isLink}}
|
|
79
|
-
{{#with this.toModel.baseTeaserDS}}
|
|
80
|
-
{{> components/content/copytext/components/posterteaser }}
|
|
81
|
-
{{/with}}
|
|
82
|
-
{{/if~}}
|
|
83
|
-
{{~#if this.isStructureNodeDocument}}
|
|
84
|
-
{{#with this.toModel.structureNodeTeaser}}
|
|
85
|
-
{{> components/content/copytext/components/posterteaser }}
|
|
86
|
-
{{/with}}
|
|
87
|
-
{{/if~}}
|
|
88
|
-
{{~#if this.isStory}}
|
|
89
|
-
{{#with this.toModel.baseTeaserDS}}
|
|
90
|
-
{{> components/content/copytext/components/posterteaser }}
|
|
91
|
-
{{/with}}
|
|
92
|
-
{{/if~}}
|
|
93
|
-
{{~#if this.isProgram}}
|
|
94
|
-
{{#with this.toModel.baseTeaserDS}}
|
|
95
|
-
{{> components/content/copytext/components/posterteaser }}
|
|
96
|
-
{{/with}}
|
|
97
|
-
{{/if~}}
|
|
98
|
-
{{~#if this.isEvent}}
|
|
99
|
-
{{#with this.toModel.eventTeaser}}
|
|
100
|
-
{{> components/content/copytext/components/posterteaser }}
|
|
101
|
-
{{/with}}
|
|
102
|
-
{{/if~}}
|
|
103
|
-
{{~/with}}
|
|
104
105
|
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
106
|
+
{{#if this.isParagraph}}
|
|
107
|
+
{{> components/content/copytext/components/paragraph/paragraph }}
|
|
108
|
+
{{/if}}
|
|
108
109
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
110
|
+
{{#if this.isCite}}
|
|
111
|
+
{{> components/content/copytext/components/cite }}
|
|
112
|
+
{{/if}}
|
|
112
113
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
{{/each}}
|
|
114
|
+
{{#if this.isInfoBox}}
|
|
115
|
+
{{> components/content/copytext/components/infobox }}
|
|
116
|
+
{{/if}}
|
|
117
|
+
{{#if this.isAdditionalInfo}}
|
|
118
|
+
{{> components/content/copytext/components/additionalinfo }}
|
|
119
|
+
{{/if}}
|
|
120
|
+
{{#if this.isDownloadBox}}
|
|
121
|
+
{{> components/content/copytext/components/downloadbox/downloadbox }}
|
|
122
|
+
{{/if}}
|
|
123
|
+
{{#if this.isFAQ}}
|
|
124
|
+
{{> components/content/copytext/components/faq }}
|
|
125
|
+
{{/if}}
|
|
126
|
+
{{#if this.isJobposting}}
|
|
127
|
+
{{> components/content/copytext/components/jobposting }}
|
|
128
|
+
{{/if}}
|
|
129
|
+
{{/each}}
|
|
130
|
+
</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": "1.59.
|
|
9
|
+
"version": "1.59.22",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -1,128 +1,130 @@
|
|
|
1
|
-
|
|
2
|
-
{{#
|
|
3
|
-
{{
|
|
4
|
-
|
|
1
|
+
<div>
|
|
2
|
+
{{#each this.copytextParagraph }}
|
|
3
|
+
{{#if this.isHeadline}}
|
|
4
|
+
{{> components/content/copytext/components/headline }}
|
|
5
|
+
{{/if}}
|
|
5
6
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
7
|
+
{{#unless this.isInfoBox}}
|
|
8
|
+
{{~#with this.paragraphBoxItem }}
|
|
9
|
+
{{~#if this.isImage}}
|
|
10
|
+
{{~> components/content/copytext/components/image/image}}
|
|
11
|
+
{{/if~}}
|
|
12
|
+
{{~#if this.isContentBox}}
|
|
13
|
+
{{~> components/content/copytext/components/contentbox/contentbox ~}}
|
|
14
|
+
{{/if~}}
|
|
15
|
+
{{~#if this.isAccordion}}
|
|
16
|
+
{{~> components/content/copytext/components/accordion/accordion ~}}
|
|
17
|
+
{{/if~}}
|
|
18
|
+
{{~#if this.isGallery}}
|
|
19
|
+
{{> components/content/copytext/components/gallery }}
|
|
20
|
+
{{/if~}}
|
|
21
|
+
{{~#if this.isFileDownload}}
|
|
22
|
+
{{> components/content/copytext/components/filedownload }}
|
|
23
|
+
{{/if~}}
|
|
24
|
+
{{~#if this.isMap}}
|
|
25
|
+
{{> components/content/copytext/components/map }}
|
|
26
|
+
{{/if~}}
|
|
27
|
+
{{~#if this.isWebForm}}
|
|
28
|
+
{{> components/content/copytext/components/webform }}
|
|
29
|
+
{{/if~}}
|
|
30
|
+
{{~#if this.isNewsletter}}
|
|
31
|
+
{{> components/content/copytext/components/newsletter }}
|
|
32
|
+
{{/if~}}
|
|
33
|
+
{{~#if this.isAudio}}
|
|
34
|
+
{{> components/content/copytext/components/audio }}
|
|
35
|
+
{{/if~}}
|
|
36
|
+
{{~#if this.isAudioEventLivestream}}
|
|
37
|
+
{{> components/content/copytext/components/audioeventlivestream }}
|
|
38
|
+
{{/if~}}
|
|
39
|
+
{{~#if this.isPodcastEpisode}}
|
|
40
|
+
{{> components/content/copytext/components/podcastepisode }}
|
|
41
|
+
{{/if~}}
|
|
42
|
+
{{~#if this.isVideo}}
|
|
43
|
+
{{> components/content/copytext/components/video }}
|
|
44
|
+
{{/if~}}
|
|
45
|
+
{{~#if this.isLivestream}}
|
|
46
|
+
{{> components/content/copytext/components/livestream }}
|
|
47
|
+
{{/if~}}
|
|
48
|
+
{{~#if this.isTweet}}
|
|
49
|
+
{{> components/content/copytext/components/tweet }}
|
|
50
|
+
{{~/if}}
|
|
51
|
+
{{~#if this.isRadioPlaylist}}
|
|
52
|
+
{{> components/content/copytext/components/radioplaylist }}
|
|
53
|
+
{{~/if}}
|
|
54
|
+
{{~#if this.isVoting}}
|
|
55
|
+
{{> components/content/copytext/components/voting }}
|
|
56
|
+
{{/if~}}
|
|
57
|
+
{{~#if this.isExternalService}}
|
|
58
|
+
{{> components/content/copytext/components/externalservice }}
|
|
59
|
+
{{/if~}}
|
|
60
|
+
{{~#if this.isContentNav}}
|
|
61
|
+
{{#with this.toModel.contentNavigationTeaser}}
|
|
62
|
+
{{~> components/teaser/content_nav/teaser_content_nav _isCopytext=true ~}}
|
|
63
|
+
{{/with}}
|
|
64
|
+
{{/if~}}
|
|
65
|
+
{{~/with}}
|
|
66
|
+
{{/unless}}
|
|
67
|
+
|
|
68
|
+
{{~#with this.paragraphTeaserItem }}
|
|
69
|
+
{{~#if this.isTopictag}}
|
|
70
|
+
{{#with this.toModel.baseTeaserDS}}
|
|
71
|
+
{{> components/content/copytext/components/posterteaser }}
|
|
72
|
+
{{/with}}
|
|
37
73
|
{{/if~}}
|
|
38
|
-
{{~#if this.
|
|
39
|
-
{{
|
|
74
|
+
{{~#if this.isTicker}}
|
|
75
|
+
{{#with this.toModel.baseTeaserDS}}
|
|
76
|
+
{{> components/content/copytext/components/posterteaser }}
|
|
77
|
+
{{/with}}
|
|
40
78
|
{{/if~}}
|
|
41
|
-
{{~#if this.
|
|
42
|
-
{{
|
|
79
|
+
{{~#if this.isLink}}
|
|
80
|
+
{{#with this.toModel.baseTeaserDS}}
|
|
81
|
+
{{> components/content/copytext/components/posterteaser }}
|
|
82
|
+
{{/with}}
|
|
43
83
|
{{/if~}}
|
|
44
|
-
{{~#if this.
|
|
45
|
-
{{
|
|
84
|
+
{{~#if this.isStructureNodeDocument}}
|
|
85
|
+
{{#with this.toModel.structureNodeTeaser}}
|
|
86
|
+
{{> components/content/copytext/components/posterteaser }}
|
|
87
|
+
{{/with}}
|
|
46
88
|
{{/if~}}
|
|
47
|
-
{{~#if this.
|
|
48
|
-
{{
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
{{> components/content/copytext/components/radioplaylist }}
|
|
52
|
-
{{~/if}}
|
|
53
|
-
{{~#if this.isVoting}}
|
|
54
|
-
{{> components/content/copytext/components/voting }}
|
|
89
|
+
{{~#if this.isStory}}
|
|
90
|
+
{{#with this.toModel.baseTeaserDS}}
|
|
91
|
+
{{> components/content/copytext/components/posterteaser }}
|
|
92
|
+
{{/with}}
|
|
55
93
|
{{/if~}}
|
|
56
|
-
{{~#if this.
|
|
57
|
-
{{
|
|
94
|
+
{{~#if this.isProgram}}
|
|
95
|
+
{{#with this.toModel.baseTeaserDS}}
|
|
96
|
+
{{> components/content/copytext/components/posterteaser }}
|
|
97
|
+
{{/with}}
|
|
58
98
|
{{/if~}}
|
|
59
|
-
{{~#if this.
|
|
60
|
-
{{#with this.toModel.
|
|
61
|
-
{{
|
|
99
|
+
{{~#if this.isEvent}}
|
|
100
|
+
{{#with this.toModel.eventTeaser}}
|
|
101
|
+
{{> components/content/copytext/components/posterteaser }}
|
|
62
102
|
{{/with}}
|
|
63
103
|
{{/if~}}
|
|
64
104
|
{{~/with}}
|
|
65
|
-
{{/unless}}
|
|
66
|
-
|
|
67
|
-
{{~#with this.paragraphTeaserItem }}
|
|
68
|
-
{{~#if this.isTopictag}}
|
|
69
|
-
{{#with this.toModel.baseTeaserDS}}
|
|
70
|
-
{{> components/content/copytext/components/posterteaser }}
|
|
71
|
-
{{/with}}
|
|
72
|
-
{{/if~}}
|
|
73
|
-
{{~#if this.isTicker}}
|
|
74
|
-
{{#with this.toModel.baseTeaserDS}}
|
|
75
|
-
{{> components/content/copytext/components/posterteaser }}
|
|
76
|
-
{{/with}}
|
|
77
|
-
{{/if~}}
|
|
78
|
-
{{~#if this.isLink}}
|
|
79
|
-
{{#with this.toModel.baseTeaserDS}}
|
|
80
|
-
{{> components/content/copytext/components/posterteaser }}
|
|
81
|
-
{{/with}}
|
|
82
|
-
{{/if~}}
|
|
83
|
-
{{~#if this.isStructureNodeDocument}}
|
|
84
|
-
{{#with this.toModel.structureNodeTeaser}}
|
|
85
|
-
{{> components/content/copytext/components/posterteaser }}
|
|
86
|
-
{{/with}}
|
|
87
|
-
{{/if~}}
|
|
88
|
-
{{~#if this.isStory}}
|
|
89
|
-
{{#with this.toModel.baseTeaserDS}}
|
|
90
|
-
{{> components/content/copytext/components/posterteaser }}
|
|
91
|
-
{{/with}}
|
|
92
|
-
{{/if~}}
|
|
93
|
-
{{~#if this.isProgram}}
|
|
94
|
-
{{#with this.toModel.baseTeaserDS}}
|
|
95
|
-
{{> components/content/copytext/components/posterteaser }}
|
|
96
|
-
{{/with}}
|
|
97
|
-
{{/if~}}
|
|
98
|
-
{{~#if this.isEvent}}
|
|
99
|
-
{{#with this.toModel.eventTeaser}}
|
|
100
|
-
{{> components/content/copytext/components/posterteaser }}
|
|
101
|
-
{{/with}}
|
|
102
|
-
{{/if~}}
|
|
103
|
-
{{~/with}}
|
|
104
105
|
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
106
|
+
{{#if this.isParagraph}}
|
|
107
|
+
{{> components/content/copytext/components/paragraph/paragraph }}
|
|
108
|
+
{{/if}}
|
|
108
109
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
110
|
+
{{#if this.isCite}}
|
|
111
|
+
{{> components/content/copytext/components/cite }}
|
|
112
|
+
{{/if}}
|
|
112
113
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
{{/each}}
|
|
114
|
+
{{#if this.isInfoBox}}
|
|
115
|
+
{{> components/content/copytext/components/infobox }}
|
|
116
|
+
{{/if}}
|
|
117
|
+
{{#if this.isAdditionalInfo}}
|
|
118
|
+
{{> components/content/copytext/components/additionalinfo }}
|
|
119
|
+
{{/if}}
|
|
120
|
+
{{#if this.isDownloadBox}}
|
|
121
|
+
{{> components/content/copytext/components/downloadbox/downloadbox }}
|
|
122
|
+
{{/if}}
|
|
123
|
+
{{#if this.isFAQ}}
|
|
124
|
+
{{> components/content/copytext/components/faq }}
|
|
125
|
+
{{/if}}
|
|
126
|
+
{{#if this.isJobposting}}
|
|
127
|
+
{{> components/content/copytext/components/jobposting }}
|
|
128
|
+
{{/if}}
|
|
129
|
+
{{/each}}
|
|
130
|
+
</div>
|