hr-design-system-handlebars 1.114.26 → 1.114.28

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 (26) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/dist/assets/index.css +3 -3
  3. package/dist/views/components/content/copytext/components/media/media_figure_voting.hbs +17 -0
  4. package/dist/views/components/forms/components/mediaChoice.hbs +18 -12
  5. package/dist/views/components/teaser/components/teaser_av_consumption.hbs +1 -1
  6. package/dist/views/components/voting/voting_media_player.hbs +6 -0
  7. package/dist/views_static/components/content/copytext/components/media/media_figure_voting.hbs +17 -0
  8. package/dist/views_static/components/forms/components/mediaChoice.hbs +18 -12
  9. package/dist/views_static/components/teaser/components/teaser_av_consumption.hbs +1 -1
  10. package/dist/views_static/components/voting/voting_media_player.hbs +6 -0
  11. package/package.json +1 -1
  12. package/src/assets/fixtures/voting/voting.json +32 -0
  13. package/src/assets/fixtures/voting/voting_media_audio_horizontal.json +253 -0
  14. package/src/assets/fixtures/voting/voting_media_audio_vertical.json +249 -0
  15. package/src/assets/fixtures/voting/voting_media_video_horizontal.json +201 -0
  16. package/src/assets/fixtures/voting/voting_media_video_vertical.json +197 -0
  17. package/src/stories/views/components/content/copytext/components/media/media_figure_voting.hbs +17 -0
  18. package/src/stories/views/components/forms/components/mediaChoice.hbs +18 -12
  19. package/src/stories/views/components/teaser/components/teaser_av_consumption.hbs +1 -1
  20. package/src/stories/views/components/voting/fixtures/voting.json +1 -1
  21. package/src/stories/views/components/voting/fixtures/voting_media_audio_horizontal.json +1 -0
  22. package/src/stories/views/components/voting/fixtures/voting_media_audio_vertical.json +1 -0
  23. package/src/stories/views/components/voting/fixtures/voting_media_video_horizontal.json +1 -0
  24. package/src/stories/views/components/voting/fixtures/voting_media_video_vertical.json +1 -0
  25. package/src/stories/views/components/voting/voting.stories.js +24 -0
  26. package/src/stories/views/components/voting/voting_media_player.hbs +6 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,28 @@
1
+ # v1.114.28 (Fri Nov 29 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Add voting with audio/video [#1178](https://github.com/mumprod/hr-design-system-handlebars/pull/1178) (saad.elbaciri@hr.de [@selbaciri](https://github.com/selbaciri))
6
+
7
+ #### Authors: 2
8
+
9
+ - Saad El Baciri ([@selbaciri](https://github.com/selbaciri))
10
+ - selbaciri (saad.elbaciri@hr.de)
11
+
12
+ ---
13
+
14
+ # v1.114.27 (Thu Nov 28 2024)
15
+
16
+ #### 🐛 Bug Fix
17
+
18
+ - Adding new Icon for audio event livestream [#1177](https://github.com/mumprod/hr-design-system-handlebars/pull/1177) ([@Paul-Atreidis](https://github.com/Paul-Atreidis))
19
+
20
+ #### Authors: 1
21
+
22
+ - [@Paul-Atreidis](https://github.com/Paul-Atreidis)
23
+
24
+ ---
25
+
1
26
  # v1.114.26 (Wed Nov 27 2024)
2
27
 
3
28
  #### 🐛 Bug Fix
@@ -3689,7 +3689,7 @@ article.indexTextDS .indexTextHighlighted .link {
3689
3689
  border-bottom-color: var(--color-secondary-ds);
3690
3690
  }
3691
3691
  .counter-reset {
3692
- counter-reset: cnt1732718087499;
3692
+ counter-reset: cnt1732893574429;
3693
3693
  }
3694
3694
  .placeholder-text-xs::-webkit-input-placeholder {
3695
3695
  font-size: 0.75rem;
@@ -4103,7 +4103,7 @@ article.indexTextDS .indexTextHighlighted .link {
4103
4103
  --tw-ring-color: rgba(255, 255, 255, 0.5);
4104
4104
  }
4105
4105
  .-ordered {
4106
- counter-increment: cnt1732718087499 1;
4106
+ counter-increment: cnt1732893574429 1;
4107
4107
  }
4108
4108
  .-ordered::before {
4109
4109
  position: absolute;
@@ -4121,7 +4121,7 @@ article.indexTextDS .indexTextHighlighted .link {
4121
4121
  --tw-text-opacity: 1;
4122
4122
  color: rgba(0, 0, 0, 1);
4123
4123
  color: rgba(0, 0, 0, var(--tw-text-opacity));
4124
- content: counter(cnt1732718087499);
4124
+ content: counter(cnt1732893574429);
4125
4125
  }
4126
4126
  /*! ****************************/
4127
4127
  /*! DataPolicy stuff */
@@ -0,0 +1,17 @@
1
+ <figure class="relative {{_addClass}}" x-data="{ avStart: false }">
2
+ {{~> components/base/a11y/hiddenText _locaTag=_a11yIntro-loca ~}}
3
+ {{#if this.isAudioOnDemand}}
4
+ {{#with this.toModel.audioElementForVideoView}}
5
+ {{~> components/mediaplayer/media_player this _playerLocation=../_playerLocation _playerSize=../_playerSize _uiTestHook="ui-test-audio-ondemand-player" _isUsedInTeaser=true _addClassImg=../_addClassImg ~}}
6
+ {{~> components/voting/voting_media_player ../this _isFullsize=../_isFullsize _playerId=this.ardPlayerConfig.playerId _css="flex items-center justify-center" _isLead=../_isLead _isUsedInCopytext=true _mediaButtonIcon="audio_button" _mediaButtonLabel="Audio" _aspectRatio="ar-16-9" _noDelay=../_isLead }}
7
+ {{/with}}
8
+ {{/if}}
9
+ {{#if this.isVideoOnDemand}}
10
+ {{#with this.toModel.videoElement}}
11
+ {{~> components/mediaplayer/media_player this _playerLocation=../_playerLocation _playerSize=../_playerSize _uiTestHook="ui-test-video-ondemand-player" _isUsedInTeaser=true _addClassImg=../_addClassImg ~}}
12
+ {{~> components/voting/voting_media_player ../this _isFullsize=../_isFullsize _playerId=this.ardPlayerConfig.playerId _css="flex items-center justify-center" _isLead=../_isLead _isUsedInCopytext=true _mediaButtonIcon="play_button" _mediaButtonLabel="Video" _aspectRatio="ar-16-9" _noDelay=../_isLead }}
13
+ {{/with}}
14
+ {{/if}}
15
+
16
+ {{~> components/base/a11y/hiddenText _locaTag=_a11yOutro-loca ~}}
17
+ </figure>
@@ -1,13 +1,19 @@
1
- <div onclick="event.preventDefault()">
2
- {{#with this.mediaItem}}
1
+ {{#with this.mediaItem}}
2
+ <div onclick="event.preventDefault()">
3
3
  {{~#if this.isImage}}
4
- {{> components/content/copytext/components/image/figure
5
- _type="story"
6
- _variant="copytext"
7
- _pictureAddClass="ar-16-9"
8
- _noDelay=true
9
- _voting-option="true"
10
- _isWebview=_isWebview}}
11
- {{/if~}}
12
- {{/with}}
13
- </div>
4
+ {{> components/content/copytext/components/image/figure
5
+ _type="story"
6
+ _variant="copytext"
7
+ _pictureAddClass="ar-16-9"
8
+ _noDelay=true
9
+ _voting-option="true"
10
+ _isWebview=_isWebview}}
11
+ {{/if}}
12
+ {{~#if this.isAudioOnDemand}}
13
+ {{> components/content/copytext/components/media/media_figure_voting _voting-option="true" _playerLocation="Copytext" _isFullsize=true _playerSize="100" _addClass="print:hidden" _a11yIntro-loca="story_audio_intro_sr" _a11yOutro-loca="story_audio_outro_sr" }}
14
+ {{/if}}
15
+ {{~#if this.isVideoOnDemand}}
16
+ {{> components/content/copytext/components/media/media_figure_voting _voting-option="true" _playerLocation="Copytext" _isFullsize=true _playerSize="100" _addClass="print:hidden" _a11yIntro-loca="story_video_intro_sr" _a11yOutro-loca="story_video_outro_sr" }}
17
+ {{/if}}
18
+ </div>
19
+ {{/with}}
@@ -29,7 +29,7 @@
29
29
  {{~#if this.isAudioEventLivestream ~}}
30
30
  {{#with this.toModel.audioLivestreamElementForVideoView}}
31
31
  {{~> components/mediaplayer/media_player _playerLocation="Teaser" _uiTestHook="ui-test-audio-livestream-player" _isUsedInTeaser=true _addClassImg=../../_addClassImg~}}
32
- {{~> components/teaser/components/teaser_media_player ../../this _playerId=this.ardPlayerConfig.playerId _mediaButtonIcon="play_button" _mediaButtonLabel="Live" _isLivestream=true _aspectRatio=../../_aspectRatio _addClassImg=../../_addClassImg _noDelay=../../this.dontLazyload}}
32
+ {{~> components/teaser/components/teaser_media_player ../../this _playerId=this.ardPlayerConfig.playerId _mediaButtonIcon="audio_button" _mediaButtonLabel="Live" _isLivestream=true _aspectRatio=../../_aspectRatio _addClassImg=../../_addClassImg _noDelay=../../this.dontLazyload}}
33
33
  {{#if ../../_isMobile1to1~}}
34
34
  {{> components/teaser/components/teaser_av_consumption_close_button _playerId=this.ardPlayerConfig.playerId }}
35
35
  {{~/if~}}
@@ -0,0 +1,6 @@
1
+ <div class="relative{{#if _css}} {{_css}}{{/if}} {{_aspectRatio}}" x-show="!avStart" >
2
+ {{~> components/base/image/responsive_image this.teaseritem _type=(if this.teaserType this.teaserType 'story') _variant=(if this.imageVariant this.imageVariant (if _isLead '100-top-sb' (if _isFullsize '100-copytext' 'copytext'))) _addClassImg=_addClassImg _noDelay=_noDelay ~}}
3
+ {{#with this}}
4
+ {{> components/mediaplayer/mediaplayer_button _css="" _playerId=_playerId _isLead=_isLead _isLivestream=_isLivestream _icon=_mediaButtonIcon _label=_mediaButtonLabel _teaserSize=this.teaserSize _teaserType="standard" _isMobile1to1=this.isMobile1to1}}
5
+ {{/with}}
6
+ </div>
@@ -0,0 +1,17 @@
1
+ <figure class="relative {{_addClass}}" x-data="{ avStart: false }">
2
+ {{~> components/base/a11y/hiddenText _locaTag=_a11yIntro-loca ~}}
3
+ {{#if this.isAudioOnDemand}}
4
+ {{#with this.toModel.audioElementForVideoView}}
5
+ {{~> components/mediaplayer/media_player this _playerLocation=../_playerLocation _playerSize=../_playerSize _uiTestHook="ui-test-audio-ondemand-player" _isUsedInTeaser=true _addClassImg=../_addClassImg ~}}
6
+ {{~> components/voting/voting_media_player ../this _isFullsize=../_isFullsize _playerId=this.ardPlayerConfig.playerId _css="flex items-center justify-center" _isLead=../_isLead _isUsedInCopytext=true _mediaButtonIcon="audio_button" _mediaButtonLabel="Audio" _aspectRatio="ar-16-9" _noDelay=../_isLead }}
7
+ {{/with}}
8
+ {{/if}}
9
+ {{#if this.isVideoOnDemand}}
10
+ {{#with this.toModel.videoElement}}
11
+ {{~> components/mediaplayer/media_player this _playerLocation=../_playerLocation _playerSize=../_playerSize _uiTestHook="ui-test-video-ondemand-player" _isUsedInTeaser=true _addClassImg=../_addClassImg ~}}
12
+ {{~> components/voting/voting_media_player ../this _isFullsize=../_isFullsize _playerId=this.ardPlayerConfig.playerId _css="flex items-center justify-center" _isLead=../_isLead _isUsedInCopytext=true _mediaButtonIcon="play_button" _mediaButtonLabel="Video" _aspectRatio="ar-16-9" _noDelay=../_isLead }}
13
+ {{/with}}
14
+ {{/if}}
15
+
16
+ {{~> components/base/a11y/hiddenText _locaTag=_a11yOutro-loca ~}}
17
+ </figure>
@@ -1,13 +1,19 @@
1
- <div onclick="event.preventDefault()">
2
- {{#with this.mediaItem}}
1
+ {{#with this.mediaItem}}
2
+ <div onclick="event.preventDefault()">
3
3
  {{~#if this.isImage}}
4
- {{> components/content/copytext/components/image/figure
5
- _type="story"
6
- _variant="copytext"
7
- _pictureAddClass="ar-16-9"
8
- _noDelay=true
9
- _voting-option="true"
10
- _isWebview=_isWebview}}
11
- {{/if~}}
12
- {{/with}}
13
- </div>
4
+ {{> components/content/copytext/components/image/figure
5
+ _type="story"
6
+ _variant="copytext"
7
+ _pictureAddClass="ar-16-9"
8
+ _noDelay=true
9
+ _voting-option="true"
10
+ _isWebview=_isWebview}}
11
+ {{/if}}
12
+ {{~#if this.isAudioOnDemand}}
13
+ {{> components/content/copytext/components/media/media_figure_voting _voting-option="true" _playerLocation="Copytext" _isFullsize=true _playerSize="100" _addClass="print:hidden" _a11yIntro-loca="story_audio_intro_sr" _a11yOutro-loca="story_audio_outro_sr" }}
14
+ {{/if}}
15
+ {{~#if this.isVideoOnDemand}}
16
+ {{> components/content/copytext/components/media/media_figure_voting _voting-option="true" _playerLocation="Copytext" _isFullsize=true _playerSize="100" _addClass="print:hidden" _a11yIntro-loca="story_video_intro_sr" _a11yOutro-loca="story_video_outro_sr" }}
17
+ {{/if}}
18
+ </div>
19
+ {{/with}}
@@ -29,7 +29,7 @@
29
29
  {{~#if this.isAudioEventLivestream ~}}
30
30
  {{#with this.toModel.audioLivestreamElementForVideoView}}
31
31
  {{~> components/mediaplayer/media_player _playerLocation="Teaser" _uiTestHook="ui-test-audio-livestream-player" _isUsedInTeaser=true _addClassImg=../../_addClassImg~}}
32
- {{~> components/teaser/components/teaser_media_player ../../this _playerId=this.ardPlayerConfig.playerId _mediaButtonIcon="play_button" _mediaButtonLabel="Live" _isLivestream=true _aspectRatio=../../_aspectRatio _addClassImg=../../_addClassImg _noDelay=../../this.dontLazyload}}
32
+ {{~> components/teaser/components/teaser_media_player ../../this _playerId=this.ardPlayerConfig.playerId _mediaButtonIcon="audio_button" _mediaButtonLabel="Live" _isLivestream=true _aspectRatio=../../_aspectRatio _addClassImg=../../_addClassImg _noDelay=../../this.dontLazyload}}
33
33
  {{#if ../../_isMobile1to1~}}
34
34
  {{> components/teaser/components/teaser_av_consumption_close_button _playerId=this.ardPlayerConfig.playerId }}
35
35
  {{~/if~}}
@@ -0,0 +1,6 @@
1
+ <div class="relative{{#if _css}} {{_css}}{{/if}} {{_aspectRatio}}" x-show="!avStart" >
2
+ {{~> components/base/image/responsive_image this.teaseritem _type=(if this.teaserType this.teaserType 'story') _variant=(if this.imageVariant this.imageVariant (if _isLead '100-top-sb' (if _isFullsize '100-copytext' 'copytext'))) _addClassImg=_addClassImg _noDelay=_noDelay ~}}
3
+ {{#with this}}
4
+ {{> components/mediaplayer/mediaplayer_button _css="" _playerId=_playerId _isLead=_isLead _isLivestream=_isLivestream _icon=_mediaButtonIcon _label=_mediaButtonLabel _teaserSize=this.teaserSize _teaserType="standard" _isMobile1to1=this.isMobile1to1}}
5
+ {{/with}}
6
+ </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.114.26",
9
+ "version": "1.114.28",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -53,6 +53,38 @@
53
53
  "@->jsoninclude": "voting/voting_media_image_horizontal.json"
54
54
  }
55
55
  },
56
+ "voting_media_audio_horizontal": {
57
+ "config": {
58
+ "useAsSnapshot": true
59
+ },
60
+ "args": {
61
+ "@->jsoninclude": "voting/voting_media_audio_horizontal.json"
62
+ }
63
+ },
64
+ "voting_media_audio_vertical": {
65
+ "config": {
66
+ "useAsSnapshot": true
67
+ },
68
+ "args": {
69
+ "@->jsoninclude": "voting/voting_media_audio_vertical.json"
70
+ }
71
+ },
72
+ "voting_media_video_vertical": {
73
+ "config": {
74
+ "useAsSnapshot": true
75
+ },
76
+ "args": {
77
+ "@->jsoninclude": "voting/voting_media_video_vertical.json"
78
+ }
79
+ },
80
+ "voting_media_video_horizontal": {
81
+ "config": {
82
+ "useAsSnapshot": true
83
+ },
84
+ "args": {
85
+ "@->jsoninclude": "voting/voting_media_video_horizontal.json"
86
+ }
87
+ },
56
88
  "voting_error": {
57
89
  "config": {
58
90
  "template": "error",
@@ -0,0 +1,253 @@
1
+ {
2
+ "@->jsoninclude": "voting/voting.inc.json",
3
+ "@->contentpath": "multivote-1",
4
+ "@->overrides": [
5
+ {
6
+ "@->contentpath":"form.isHorizontalLayout",
7
+ "@->value": true
8
+ },
9
+ {
10
+ "@->contentpath": "isMultipleChoice",
11
+ "@->value": true
12
+ },
13
+ {
14
+ "@->contentpath": "maxAnswerCount",
15
+ "@->value": 3
16
+ },
17
+ {
18
+ "@->contentpath":"isMultimediaVoting",
19
+ "@->value": true
20
+ },
21
+ {
22
+ "@->contentpath":"form.shorttext",
23
+ "@->value": ""
24
+ },
25
+ {
26
+ "@->contentpath":"title",
27
+ "@->value": "Welches Audio gefällt Ihnen am besten?"
28
+ },
29
+ {
30
+ "@->contentpath":"votingResult",
31
+ "@->value": [
32
+ {
33
+ "label": "Audio 1",
34
+ "count": "27",
35
+ "percentageCount": "4,1",
36
+ "roundedPercentageCount": "4.0"
37
+ },
38
+ {
39
+ "label": "Audio 2",
40
+ "count": "117",
41
+ "percentageCount": "17,6",
42
+ "roundedPercentageCount": "18.0"
43
+ },
44
+ {
45
+ "label": "Audio 3",
46
+ "count": "242",
47
+ "percentageCount": "36,3",
48
+ "roundedPercentageCount": "36.0"
49
+ },
50
+ {
51
+ "label": "Audio 4",
52
+ "count": "280",
53
+ "percentageCount": "42,0",
54
+ "roundedPercentageCount": "42.0",
55
+ "isWinner": true
56
+ }
57
+ ]
58
+ },
59
+ {
60
+ "@->contentpath":"form.fields",
61
+ "@->value": [
62
+ {
63
+ "type": {
64
+ "isGroup": false,
65
+ "isChoice": true,
66
+ "asString": "checkbox"
67
+ },
68
+ "name": "multivoting",
69
+ "isGrouped": true,
70
+ "isRequired": false,
71
+ "options": [
72
+ {
73
+ "value": "1",
74
+ "label": "Audio 1",
75
+ "title": "Voting-Answer 1",
76
+ "mediaItem": {
77
+ "isAudio": true,
78
+ "isAudioOnDemand": true,
79
+ "toModel": {
80
+ "audioElementForVideoView": {
81
+ "isPodcast": false,
82
+ "ardPlayerConfig": {
83
+ "@->jsoninclude": "audio/audios.inc.json",
84
+ "@->contentpath": "audio-1",
85
+ "@->overrides": [
86
+ {
87
+ "@->contentpath": "playerId",
88
+ "@->value": "1234"
89
+ }
90
+ ]
91
+ },
92
+ "ardPlayerJsonConfig": {
93
+ "@->jsoninclude": "audio/audios.inc.json",
94
+ "@->contentpath": "audio-1",
95
+ "@->overrides": [
96
+ {
97
+ "@->contentpath": "playerId",
98
+ "@->value": "1234"
99
+ }
100
+ ]
101
+ }
102
+ }
103
+ },
104
+ "teaseritem": {
105
+ "@->jsoninclude": "teaser/teaser_images.inc.json",
106
+ "@->contentpath": "copytext_image_50",
107
+ "@->replaceToken": [
108
+ {
109
+ "@->token": "image",
110
+ "@->value": "lehrerin-ukraine-104"
111
+ }
112
+ ]
113
+ }
114
+ }
115
+ },
116
+ {
117
+ "value": "2",
118
+ "label": "Audio 2",
119
+ "title": "Voting-Answer 2",
120
+ "mediaItem": {
121
+ "isAudio": true,
122
+ "isAudioOnDemand": true,
123
+ "toModel": {
124
+ "audioElementForVideoView": {
125
+ "isPodcast": false,
126
+ "ardPlayerConfig": {
127
+ "@->jsoninclude": "audio/audios.inc.json",
128
+ "@->contentpath": "audio-2",
129
+ "@->overrides": [
130
+ {
131
+ "@->contentpath": "playerId",
132
+ "@->value": "5678"
133
+ }
134
+ ]
135
+ },
136
+ "ardPlayerJsonConfig": {
137
+ "@->jsoninclude": "audio/audios.inc.json",
138
+ "@->contentpath": "audio-2",
139
+ "@->overrides": [
140
+ {
141
+ "@->contentpath": "playerId",
142
+ "@->value": "5678"
143
+ }
144
+ ]
145
+ }
146
+ }
147
+ },
148
+ "teaseritem": {
149
+ "@->jsoninclude": "teaser/teaser_images.inc.json",
150
+ "@->contentpath": "copytext_image_50",
151
+ "@->replaceToken": [
152
+ {
153
+ "@->token": "image",
154
+ "@->value": "buchmesse-fahnen-102"
155
+ }
156
+ ]
157
+ }
158
+ }
159
+ },
160
+ {
161
+ "value": "3",
162
+ "label": "Audio 3",
163
+ "title": "Voting-Answer 3",
164
+ "mediaItem": {
165
+ "isAudio": true,
166
+ "isAudioOnDemand": true,
167
+ "toModel": {
168
+ "audioElementForVideoView": {
169
+ "isPodcast": false,
170
+ "ardPlayerConfig": {
171
+ "@->jsoninclude": "audio/audios.inc.json",
172
+ "@->contentpath": "audio-1",
173
+ "@->overrides": [
174
+ {
175
+ "@->contentpath": "playerId",
176
+ "@->value": "9123"
177
+ }
178
+ ]
179
+ },
180
+ "ardPlayerJsonConfig": {
181
+ "@->jsoninclude": "audio/audios.inc.json",
182
+ "@->contentpath": "audio-1",
183
+ "@->overrides": [
184
+ {
185
+ "@->contentpath": "playerId",
186
+ "@->value": "9123"
187
+ }
188
+ ]
189
+ }
190
+ }
191
+ },
192
+ "teaseritem": {
193
+ "@->jsoninclude": "teaser/teaser_images.inc.json",
194
+ "@->contentpath": "copytext_image_50",
195
+ "@->replaceToken": [
196
+ {
197
+ "@->token": "image",
198
+ "@->value": "connichi-106"
199
+ }
200
+ ]
201
+ }
202
+ }
203
+ },
204
+ {
205
+ "value": "4",
206
+ "label": "Audio 4",
207
+ "title": "Voting-Answer 4",
208
+ "mediaItem": {
209
+ "isAudio": true,
210
+ "isAudioOnDemand": true,
211
+ "toModel": {
212
+ "audioElementForVideoView": {
213
+ "isPodcast": false,
214
+ "ardPlayerConfig": {
215
+ "@->jsoninclude": "audio/audios.inc.json",
216
+ "@->contentpath": "audio-1",
217
+ "@->overrides": [
218
+ {
219
+ "@->contentpath": "playerId",
220
+ "@->value": "1478"
221
+ }
222
+ ]
223
+ },
224
+ "ardPlayerJsonConfig": {
225
+ "@->jsoninclude": "audio/audios.inc.json",
226
+ "@->contentpath": "audio-1",
227
+ "@->overrides": [
228
+ {
229
+ "@->contentpath": "playerId",
230
+ "@->value": "1478"
231
+ }
232
+ ]
233
+ }
234
+ }
235
+ },
236
+ "teaseritem": {
237
+ "@->jsoninclude": "teaser/teaser_images.inc.json",
238
+ "@->contentpath": "copytext_image_50",
239
+ "@->replaceToken": [
240
+ {
241
+ "@->token": "image",
242
+ "@->value": "hasebe-kane-102"
243
+ }
244
+ ]
245
+ }
246
+ }
247
+ }
248
+ ]
249
+ }
250
+ ]
251
+ }
252
+ ]
253
+ }